sql
stringlengths
6
1.05M
BEGIN TRAN; -- update the version UPDATE sec_schema_version SET version_value='61' WHERE version_key='schema_patch'; CREATE TABLE sec_cdsi_family ( id bigint NOT NULL, name varchar(255) NOT NULL UNIQUE, PRIMARY KEY (id) ); CREATE TABLE sec_credit_default_swap_index ( id bigint NOT NULL, security_id bigint NOT NULL, version varchar(255) NOT NULL, series varchar(255) NOT NULL, family_id bigint NOT NULL, currency_id bigint NOT NULL, PRIMARY KEY (id), CONSTRAINT sec_credit_index2sec FOREIGN KEY (security_id) REFERENCES sec_security (id), CONSTRAINT sec_credit_index2family FOREIGN KEY (family_id) REFERENCES sec_cdsi_family (id), CONSTRAINT sec_credit_index2currency FOREIGN KEY (currency_id) REFERENCES sec_currency (id) ); CREATE TABLE sec_tenor ( id bigint NOT NULL, name varchar(255) NOT NULL UNIQUE, PRIMARY KEY (id) ); CREATE TABLE sec_cdsi_tenor ( cdsi_id bigint NOT NULL, tenor_id bigint NOT NULL, PRIMARY KEY (cdsi_id, tenor_id), CONSTRAINT sec_fk_sec_cdsi_tenor2cdsi FOREIGN KEY (cdsi_id) REFERENCES sec_credit_default_swap_index (id), CONSTRAINT sec_fk_sec_cdsi_tenor2tenor FOREIGN KEY (tenor_id) REFERENCES sec_tenor (id) ); CREATE TABLE sec_cdsi_component ( cdsi_id bigint NOT NULL, obligor_scheme varchar(255) NOT NULL, obligor_identifier varchar(255) NOT NULL, name varchar(255) NOT NULL, weight double precision NOT NULL, bond_scheme varchar(255), bond_identifier varchar(255), PRIMARY KEY (cdsi_id, obligor_scheme, obligor_identifier), CONSTRAINT sec_fk_cdsicomponent2cdsi FOREIGN KEY (cdsi_id) REFERENCES sec_credit_default_swap_index (id) ); COMMIT;
<gh_stars>10-100 Alter table "report_schedule" ADD COLUMN IF NOT EXISTS "report_schedule_name" Varchar; Alter table "report_template" DROP COLUMN IF EXISTS "report_typ_id"; DROP FUNCTION IF EXISTS get_report_typ_list(REFCURSOR); Alter table "report_template" drop CONSTRAINT if exists report_template_report_typ_id_fkey; drop index if exists "IX_Relationship201"; -- on "report_template" ("report_typ_id"); DROP table if exists "stm_report_typ";
select display_name, id, subnet_id, lifecycle_state, freeform_tags, is_private from oci.oci_core_network_load_balancer where id = '{{ output.resource_id.value }}';
<gh_stars>0 -- @Description Ensures that a select before a vacuum operation is ok -- DELETE FROM ao WHERE a < 128; 1: BEGIN; 1: SELECT COUNT(*) FROM ao; 1: SELECT * FROM locktest WHERE coalesce = 'ao'; 2&: VACUUM ao; 1: COMMIT; 2<: 1: SELECT COUNT(*) FROM ao; 3: INSERT INTO ao VALUES (0);
<filename>DB/pract.sql -- phpMyAdmin SQL Dump -- version 4.8.5 -- https://www.phpmyadmin.net/ -- -- Хост: 127.0.0.1:3306 -- Время создания: Дек 24 2020 г., 15:19 -- Версия сервера: 10.3.13-MariaDB -- Версия PHP: 7.2.10 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- База данных: `pract` -- -- -------------------------------------------------------- -- -- Структура таблицы `adress` -- CREATE TABLE `adress` ( `id` int(11) NOT NULL, `id_sity` int(11) NOT NULL, `id_countr` int(11) NOT NULL, `id_obl` int(11) NOT NULL, `id_ray` int(11) NOT NULL, `id_street` int(11) NOT NULL, `id_house` int(11) NOT NULL, `id_kv` int(11) NOT NULL, `id_block` int(11) NOT NULL, `id_korp` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Структура таблицы `bans` -- CREATE TABLE `bans` ( `id` int(11) NOT NULL, `id_temi` int(11) NOT NULL, `id_user` int(11) NOT NULL, `id_staty` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Структура таблицы `block` -- CREATE TABLE `block` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Структура таблицы `com` -- CREATE TABLE `com` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `id_user` int(11) NOT NULL, `id_temi` int(11) NOT NULL, `text` text NOT NULL, `date` datetime(6) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Структура таблицы `countr` -- CREATE TABLE `countr` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Структура таблицы `house` -- CREATE TABLE `house` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Структура таблицы `korp` -- CREATE TABLE `korp` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Структура таблицы `kv` -- CREATE TABLE `kv` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Структура таблицы `obl` -- CREATE TABLE `obl` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Структура таблицы `previl` -- CREATE TABLE `previl` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Структура таблицы `profile` -- CREATE TABLE `profile` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `mname` varchar(255) NOT NULL, `user_id` int(11) NOT NULL, `id_previl` int(11) NOT NULL, `id_adress` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Структура таблицы `ray` -- CREATE TABLE `ray` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Структура таблицы `sity` -- CREATE TABLE `sity` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Структура таблицы `stati` -- CREATE TABLE `stati` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Дамп данных таблицы `stati` -- INSERT INTO `stati` (`id`, `name`) VALUES (1, 'adm'); -- -------------------------------------------------------- -- -- Структура таблицы `staty` -- CREATE TABLE `staty` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Структура таблицы `street` -- CREATE TABLE `street` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Структура таблицы `temi` -- CREATE TABLE `temi` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `id_sozd` int(11) NOT NULL, `id_stati` int(11) NOT NULL, `text` text NOT NULL, `data` datetime(6) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Дамп данных таблицы `temi` -- INSERT INTO `temi` (`id`, `name`, `id_sozd`, `id_stati`, `text`, `data`) VALUES (1, 'Kryt', 1, 1, 'Hello world', '2020-12-24 00:00:00.000000'); -- -------------------------------------------------------- -- -- Структура таблицы `user` -- CREATE TABLE `user` ( `id` int(11) NOT NULL, `username` varchar(255) NOT NULL, `password` varchar(20) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Дамп данных таблицы `user` -- INSERT INTO `user` (`id`, `username`, `password`) VALUES (1, 'Hi', '<PASSWORD>'); -- -- Индексы сохранённых таблиц -- -- -- Индексы таблицы `adress` -- ALTER TABLE `adress` ADD PRIMARY KEY (`id`), ADD KEY `id_sity` (`id_sity`,`id_countr`,`id_obl`,`id_ray`,`id_street`,`id_house`,`id_kv`,`id_block`,`id_korp`), ADD KEY `id_countr` (`id_countr`), ADD KEY `id_block` (`id_block`), ADD KEY `id_obl` (`id_obl`), ADD KEY `id_kv` (`id_kv`), ADD KEY `id_house` (`id_house`), ADD KEY `id_ray` (`id_ray`), ADD KEY `id_korp` (`id_korp`), ADD KEY `id_street` (`id_street`); -- -- Индексы таблицы `bans` -- ALTER TABLE `bans` ADD PRIMARY KEY (`id`), ADD KEY `id_temi` (`id_temi`,`id_user`,`id_staty`), ADD KEY `id_staty` (`id_staty`), ADD KEY `id_user` (`id_user`); -- -- Индексы таблицы `block` -- ALTER TABLE `block` ADD PRIMARY KEY (`id`); -- -- Индексы таблицы `com` -- ALTER TABLE `com` ADD PRIMARY KEY (`id`), ADD KEY `id_user` (`id_user`,`id_temi`), ADD KEY `id_temi` (`id_temi`); -- -- Индексы таблицы `countr` -- ALTER TABLE `countr` ADD PRIMARY KEY (`id`); -- -- Индексы таблицы `house` -- ALTER TABLE `house` ADD PRIMARY KEY (`id`); -- -- Индексы таблицы `korp` -- ALTER TABLE `korp` ADD PRIMARY KEY (`id`); -- -- Индексы таблицы `kv` -- ALTER TABLE `kv` ADD PRIMARY KEY (`id`); -- -- Индексы таблицы `obl` -- ALTER TABLE `obl` ADD PRIMARY KEY (`id`); -- -- Индексы таблицы `previl` -- ALTER TABLE `previl` ADD PRIMARY KEY (`id`); -- -- Индексы таблицы `profile` -- ALTER TABLE `profile` ADD PRIMARY KEY (`id`), ADD KEY `user_id` (`user_id`,`id_previl`,`id_adress`), ADD KEY `id_previl` (`id_previl`), ADD KEY `id_adress` (`id_adress`); -- -- Индексы таблицы `ray` -- ALTER TABLE `ray` ADD PRIMARY KEY (`id`); -- -- Индексы таблицы `sity` -- ALTER TABLE `sity` ADD PRIMARY KEY (`id`); -- -- Индексы таблицы `stati` -- ALTER TABLE `stati` ADD PRIMARY KEY (`id`); -- -- Индексы таблицы `staty` -- ALTER TABLE `staty` ADD PRIMARY KEY (`id`); -- -- Индексы таблицы `street` -- ALTER TABLE `street` ADD PRIMARY KEY (`id`); -- -- Индексы таблицы `temi` -- ALTER TABLE `temi` ADD PRIMARY KEY (`id`), ADD KEY `id_sozd` (`id_sozd`,`id_stati`), ADD KEY `id_stati` (`id_stati`); -- -- Индексы таблицы `user` -- ALTER TABLE `user` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT для сохранённых таблиц -- -- -- AUTO_INCREMENT для таблицы `adress` -- ALTER TABLE `adress` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT для таблицы `bans` -- ALTER TABLE `bans` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT для таблицы `block` -- ALTER TABLE `block` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT для таблицы `com` -- ALTER TABLE `com` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT для таблицы `countr` -- ALTER TABLE `countr` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT для таблицы `house` -- ALTER TABLE `house` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT для таблицы `korp` -- ALTER TABLE `korp` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT для таблицы `kv` -- ALTER TABLE `kv` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT для таблицы `obl` -- ALTER TABLE `obl` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT для таблицы `previl` -- ALTER TABLE `previl` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT для таблицы `profile` -- ALTER TABLE `profile` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT для таблицы `ray` -- ALTER TABLE `ray` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT для таблицы `sity` -- ALTER TABLE `sity` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT для таблицы `stati` -- ALTER TABLE `stati` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT для таблицы `staty` -- ALTER TABLE `staty` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT для таблицы `street` -- ALTER TABLE `street` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT для таблицы `temi` -- ALTER TABLE `temi` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT для таблицы `user` -- ALTER TABLE `user` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- Ограничения внешнего ключа сохраненных таблиц -- -- -- Ограничения внешнего ключа таблицы `adress` -- ALTER TABLE `adress` ADD CONSTRAINT `adress_ibfk_1` FOREIGN KEY (`id_countr`) REFERENCES `countr` (`id`), ADD CONSTRAINT `adress_ibfk_2` FOREIGN KEY (`id_block`) REFERENCES `block` (`id`), ADD CONSTRAINT `adress_ibfk_3` FOREIGN KEY (`id_obl`) REFERENCES `obl` (`id`), ADD CONSTRAINT `adress_ibfk_4` FOREIGN KEY (`id_kv`) REFERENCES `kv` (`id`), ADD CONSTRAINT `adress_ibfk_5` FOREIGN KEY (`id_house`) REFERENCES `house` (`id`), ADD CONSTRAINT `adress_ibfk_6` FOREIGN KEY (`id_sity`) REFERENCES `sity` (`id`), ADD CONSTRAINT `adress_ibfk_7` FOREIGN KEY (`id_ray`) REFERENCES `ray` (`id`), ADD CONSTRAINT `adress_ibfk_8` FOREIGN KEY (`id_korp`) REFERENCES `korp` (`id`), ADD CONSTRAINT `adress_ibfk_9` FOREIGN KEY (`id_street`) REFERENCES `street` (`id`); -- -- Ограничения внешнего ключа таблицы `bans` -- ALTER TABLE `bans` ADD CONSTRAINT `bans_ibfk_1` FOREIGN KEY (`id_staty`) REFERENCES `staty` (`id`), ADD CONSTRAINT `bans_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `user` (`id`), ADD CONSTRAINT `bans_ibfk_3` FOREIGN KEY (`id_temi`) REFERENCES `temi` (`id`); -- -- Ограничения внешнего ключа таблицы `com` -- ALTER TABLE `com` ADD CONSTRAINT `com_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `user` (`id`), ADD CONSTRAINT `com_ibfk_2` FOREIGN KEY (`id_temi`) REFERENCES `temi` (`id`); -- -- Ограничения внешнего ключа таблицы `profile` -- ALTER TABLE `profile` ADD CONSTRAINT `profile_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`), ADD CONSTRAINT `profile_ibfk_2` FOREIGN KEY (`id_previl`) REFERENCES `previl` (`id`), ADD CONSTRAINT `profile_ibfk_3` FOREIGN KEY (`id_adress`) REFERENCES `adress` (`id`); -- -- Ограничения внешнего ключа таблицы `temi` -- ALTER TABLE `temi` ADD CONSTRAINT `temi_ibfk_1` FOREIGN KEY (`id_sozd`) REFERENCES `user` (`id`), ADD CONSTRAINT `temi_ibfk_2` FOREIGN KEY (`id_stati`) REFERENCES `stati` (`id`); COMMIT; /*!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 */;
SELECT somefunc(c) FROM inventory_item c; SELECT somefunc(c.*) FROM inventory_item c; SELECT c.somefunc FROM inventory_item c;
<reponame>RomanMaks/modimio-pickpoint -- MySQL dump 10.13 Distrib 5.7.29, for Linux (x86_64) -- -- Host: 127.0.0.1 Database: modimio -- ------------------------------------------------------ -- Server version 5.7.29-0ubuntu0.18.04.1 /*!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 `migration` -- DROP TABLE IF EXISTS `migration`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `migration` ( `version` varchar(180) NOT NULL, `apply_time` int(11) DEFAULT NULL, PRIMARY KEY (`version`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `migration` -- LOCK TABLES `migration` WRITE; /*!40000 ALTER TABLE `migration` DISABLE KEYS */; INSERT INTO `migration` VALUES ('m000000_000000_base',1584074726),('m200313_042556_create_pick_point_registry_table',1584258896),('m200314_104059_create_pick_point_registry_item_table',1584258896),('m200314_105946_create_pick_point_registry_item_log_table',1584187661),('m200314_142524_create_sessions_table',1584507601); /*!40000 ALTER TABLE `migration` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `order` -- DROP TABLE IF EXISTS `order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `order` ( `id` int(11) NOT NULL AUTO_INCREMENT, `alt_number` varchar(255) NOT NULL, `total_price` int(11) DEFAULT NULL, `delivery_price` int(11) DEFAULT NULL, `catalog_pay_id` int(11) DEFAULT NULL, `pickup_point_id` int(11) DEFAULT NULL, `user_name` varchar(255) DEFAULT NULL, `user_patronymic` varchar(255) DEFAULT NULL, `user_surname` varchar(255) DEFAULT NULL, `user_phone` varchar(255) DEFAULT NULL, `user_email` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `alt_number` (`alt_number`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `order` -- LOCK TABLES `order` WRITE; /*!40000 ALTER TABLE `order` DISABLE KEYS */; INSERT INTO `order` VALUES (1,'1242412',1000,150,1,1,'Иван','Иванович','Иванов','70000000000','<EMAIL>'),(2,'4574575',2000,250,3,2,'Петров','Петр','Петрович','70000000001','<EMAIL>'),(3,'5474748',1500,350,1,3,'Смирнова','Ольга','Сергеевна','70000000002','<EMAIL>'); /*!40000 ALTER TABLE `order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `order_box` -- DROP TABLE IF EXISTS `order_box`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `order_box` ( `id` int(11) NOT NULL AUTO_INCREMENT, `order_id` int(11) NOT NULL, `length` decimal(3,1) NOT NULL, `width` decimal(3,1) NOT NULL, `height` decimal(3,1) NOT NULL, `weight` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=14692 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `order_box` -- LOCK TABLES `order_box` WRITE; /*!40000 ALTER TABLE `order_box` DISABLE KEYS */; INSERT INTO `order_box` VALUES (1,1,11.0,11.0,11.0,1111),(2,2,11.0,11.0,11.0,11),(3,3,11.0,11.0,11.0,1111),(4,1628,11.0,11.0,11.0,1111),(5,1628,11.0,11.0,11.0,1111),(6,1628,11.0,11.0,11.0,1111),(7,1628,11.0,11.0,11.0,1111),(8,1628,11.0,11.0,11.0,1111),(9,1628,11.0,11.0,11.0,1111),(10,1628,11.0,11.0,11.0,1111),(11,1628,11.0,11.0,11.0,1111),(12,1628,11.0,11.0,11.0,1111),(13,1628,11.0,11.0,11.0,111),(15,1628,11.0,11.0,11.0,111),(16,1628,11.0,11.0,11.0,111),(17,1628,11.0,11.0,11.0,111),(18,1628,11.0,11.0,11.0,111),(19,1628,11.0,11.0,11.0,11),(20,1628,11.0,11.0,11.0,111),(21,1628,11.0,11.0,11.0,111),(23,1879,11.0,11.0,11.0,111),(24,1874,11.0,11.0,11.0,111),(25,1855,11.0,11.0,11.0,111),(26,1856,11.0,11.0,11.0,111),(27,1564,11.0,11.0,11.0,111),(28,1587,11.0,11.0,11.0,111),(29,1517,11.0,11.0,11.0,111),(30,1599,11.0,11.0,11.0,111),(32,1802,11.0,11.0,11.0,1417),(33,1920,0.0,0.0,0.0,1065),(35,1961,0.0,0.0,0.0,1105),(36,2350,0.0,0.0,0.0,705),(37,2354,0.0,0.0,0.0,705),(38,2357,0.0,0.0,0.0,695),(39,2144,0.0,0.0,0.0,1425),(40,2150,0.0,0.0,0.0,1460),(41,1942,0.0,0.0,0.0,1035),(42,1916,0.0,0.0,0.0,705),(43,1507,0.0,0.0,0.0,1445),(44,2249,0.0,0.0,0.0,1040),(45,2248,0.0,0.0,0.0,1045),(46,2244,0.0,0.0,0.0,1075),(47,2253,0.0,0.0,0.0,735),(48,1947,0.0,0.0,0.0,0),(49,1960,0.0,0.0,0.0,0),(50,2968,46.0,30.0,16.0,1555),(51,3067,0.0,0.0,0.0,770),(52,2764,0.0,0.0,0.0,765),(53,2452,30.0,24.0,14.0,77),(54,1929,46.0,30.0,16.0,1145),(55,2850,46.0,30.0,16.0,1180),(56,2868,46.0,30.0,16.0,1155),(57,2870,46.0,30.0,16.0,1525),(58,2882,46.0,30.0,16.0,1525),(59,2877,46.0,30.0,16.0,1525),(60,2878,30.0,24.0,14.0,770),(61,2880,30.0,24.0,14.0,765),(62,2555,30.0,24.0,14.0,770),(63,2548,30.0,24.0,14.0,770),(64,2543,30.0,24.0,14.0,765),(65,2965,30.0,24.0,14.0,765),(66,2966,0.0,0.0,0.0,0),(67,1185,0.0,0.0,0.0,3450),(68,789,0.0,0.0,0.0,1055),(69,3164,0.0,0.0,0.0,1055),(70,3142,0.0,0.0,0.0,670),(71,3136,0.0,0.0,0.0,672),(72,3134,0.0,0.0,0.0,670),(73,3133,0.0,0.0,0.0,680),(74,3122,0.0,0.0,0.0,672),(75,3120,0.0,0.0,0.0,684),(76,3147,0.0,0.0,0.0,715),(77,3125,0.0,0.0,0.0,676),(78,3175,0.0,0.0,0.0,1095),(79,3179,0.0,0.0,0.0,1410),(80,1514,0.0,0.0,0.0,1430),(81,2855,0.0,0.0,0.0,695),(82,3196,0.0,0.0,0.0,680),(83,981,0.0,0.0,0.0,1085),(84,3100,0.0,0.0,0.0,920),(85,3084,0.0,0.0,0.0,915),(86,3075,0.0,0.0,0.0,915),(87,3110,0.0,0.0,0.0,913),(88,3102,0.0,0.0,0.0,910),(89,3079,0.0,0.0,0.0,910),(90,3115,0.0,0.0,0.0,925),(91,3128,0.0,0.0,0.0,930),(92,3176,0.0,0.0,0.0,940),(93,1615,0.0,0.0,0.0,930),(94,1931,0.0,0.0,0.0,920),(95,3104,0.0,0.0,0.0,900),(96,3108,0.0,0.0,0.0,920),(97,3124,0.0,0.0,0.0,900),(98,3126,0.0,0.0,0.0,900),(99,2865,0.0,0.0,0.0,900),(100,2148,0.0,0.0,0.0,900),(101,1935,0.0,0.0,0.0,575),(102,1938,0.0,0.0,0.0,555),(103,1944,0.0,0.0,0.0,540),(104,2351,0.0,0.0,0.0,570),(105,3069,0.0,0.0,0.0,570),(106,2545,0.0,0.0,0.0,555),(107,3146,0.0,0.0,0.0,930),(108,3148,0.0,0.0,0.0,910),(109,2242,0.0,0.0,0.0,905),(110,2746,0.0,0.0,0.0,905),(111,3152,0.0,0.0,0.0,930),(112,3150,0.0,0.0,0.0,900),(113,3114,0.0,0.0,0.0,940),(114,3127,0.0,0.0,0.0,926),(115,3228,0.0,0.0,0.0,909),(116,3187,0.0,0.0,0.0,920),(117,3153,0.0,0.0,0.0,920),(118,3267,0.0,0.0,0.0,530),(119,3268,0.0,0.0,0.0,530),(120,3265,0.0,0.0,0.0,530),(121,3072,0.0,0.0,0.0,950),(122,2757,0.0,0.0,0.0,540),(123,3256,0.0,0.0,0.0,713),(124,3273,0.0,0.0,0.0,540),(125,3274,0.0,0.0,0.0,530),(126,3137,0.0,0.0,0.0,905),(127,3132,0.0,0.0,0.0,907),(128,3270,0.0,0.0,0.0,524),(129,3224,0.0,0.0,0.0,1460),(130,3091,0.0,0.0,0.0,905),(131,3089,0.0,0.0,0.0,907),(132,3092,0.0,0.0,0.0,910),(133,3098,0.0,0.0,0.0,905),(134,3218,0.0,0.0,0.0,700),(135,2257,0.0,0.0,0.0,550),(136,3229,0.0,0.0,0.0,690),(137,3253,0.0,0.0,0.0,700),(138,3220,0.0,0.0,0.0,905),(139,3225,0.0,0.0,0.0,560),(140,3088,0.0,0.0,0.0,905),(141,3276,0.0,0.0,0.0,905),(143,2970,0.0,0.0,0.0,520),(144,1954,0.0,0.0,0.0,525),(145,3130,0.0,0.0,0.0,910),(146,2640,0.0,0.0,0.0,1655),(147,3119,0.0,0.0,0.0,900),(148,3121,0.0,0.0,0.0,925),(149,3123,0.0,0.0,0.0,910),(150,3140,0.0,0.0,0.0,910),(151,3163,0.0,0.0,0.0,936),(152,3138,0.0,0.0,0.0,910),(153,3118,0.0,0.0,0.0,930),(154,3213,0.0,0.0,0.0,734),(155,3131,0.0,0.0,0.0,908),(156,3099,0.0,0.0,0.0,915),(157,3209,0.0,0.0,0.0,915),(158,3074,0.0,0.0,0.0,912),(159,1925,0.0,0.0,0.0,570),(160,3097,0.0,0.0,0.0,0),(161,3078,0.0,0.0,0.0,0),(162,3135,0.0,0.0,0.0,0),(163,2251,0.0,0.0,0.0,0),(164,1949,0.0,0.0,0.0,0),(165,3251,0.0,0.0,0.0,0),(166,3280,0.0,0.0,0.0,0),(167,1023,0.0,0.0,0.0,0),(168,3202,0.0,0.0,0.0,0),(169,2644,0.0,0.0,0.0,0),(170,3139,0.0,0.0,0.0,0),(171,3285,0.0,0.0,0.0,740),(172,3299,0.0,0.0,0.0,705),(173,3296,0.0,0.0,0.0,0),(174,3293,0.0,0.0,0.0,0),(175,3327,21.0,31.0,11.0,999),(176,3328,21.0,31.0,11.0,999),(177,3329,21.0,31.0,11.0,999),(178,3330,21.0,31.0,11.0,999),(179,3331,21.0,31.0,11.0,999),(180,3332,21.0,31.0,11.0,999),(181,3333,21.0,31.0,11.0,999),(182,3334,21.0,31.0,11.0,999),(183,3335,21.0,31.0,11.0,999),(184,3336,21.0,31.0,11.0,999),(185,3214,0.0,0.0,0.0,2222),(186,3337,0.0,0.0,0.0,0),(199,3319,0.0,0.0,0.0,1500),(200,3109,0.0,0.0,0.0,900),(201,3313,0.0,0.0,0.0,700),(202,3261,0.0,0.0,0.0,520),(203,3264,0.0,0.0,0.0,535),(204,3339,0.0,0.0,0.0,520),(205,3342,0.0,0.0,0.0,2230),(206,3106,0.0,0.0,0.0,1060),(207,3086,0.0,0.0,0.0,900),(208,3151,0.0,0.0,0.0,1070),(209,3077,0.0,0.0,0.0,911),(211,3363,0.0,0.0,0.0,2),(212,3361,0.0,0.0,0.0,900),(213,3479,0.0,0.0,0.0,625),(214,3474,0.0,0.0,0.0,1085),(215,3351,0.0,0.0,0.0,905),(216,3356,0.0,0.0,0.0,896),(217,3354,0.0,0.0,0.0,670),(218,3357,0.0,0.0,0.0,520),(219,3345,0.0,0.0,0.0,670),(220,3365,0.0,0.0,0.0,520),(221,258,0.0,0.0,0.0,900),(222,3490,0.0,0.0,0.0,550),(223,3496,0.0,0.0,0.0,546),(224,3537,0.0,0.0,0.0,1035),(225,3539,0.0,0.0,0.0,615),(226,3177,0.0,0.0,0.0,620),(227,3371,0.0,0.0,0.0,0),(228,3548,0.0,0.0,0.0,556),(229,3546,0.0,0.0,0.0,905),(230,3547,0.0,0.0,0.0,0),(231,3532,0.0,0.0,0.0,0),(232,3519,0.0,0.0,0.0,610),(233,3634,50.0,18.0,19.0,1330),(234,3558,0.0,0.0,0.0,640),(235,3625,0.0,0.0,0.0,1015),(236,3567,0.0,0.0,0.0,760),(237,3578,0.0,0.0,0.0,635),(238,3556,0.0,0.0,0.0,1025),(239,3622,0.0,0.0,0.0,615),(240,3594,0.0,0.0,0.0,1020),(241,3555,0.0,0.0,0.0,610),(242,3630,0.0,0.0,0.0,760),(243,3624,0.0,0.0,0.0,1020),(244,3616,0.0,0.0,0.0,610),(245,3564,0.0,0.0,0.0,760),(246,3571,0.0,0.0,0.0,985),(247,3633,0.0,0.0,0.0,990),(248,1106,0.0,0.0,0.0,1565),(249,3586,0.0,0.0,0.0,820),(250,1311,0.0,0.0,0.0,790),(251,3652,0.0,0.0,0.0,790),(252,3495,0.0,0.0,0.0,790),(253,3623,0.0,0.0,0.0,0),(254,3559,0.0,0.0,0.0,0),(255,3617,0.0,0.0,0.0,0),(256,3581,0.0,0.0,0.0,0),(257,3525,0.0,0.0,0.0,865),(258,2446,0.0,0.0,0.0,1002),(259,3094,0.0,0.0,0.0,1025),(260,3149,0.0,0.0,0.0,1020),(261,3674,0.0,0.0,0.0,600),(262,3679,0.0,0.0,0.0,900),(263,3675,0.0,0.0,0.0,930),(264,3703,0.0,0.0,0.0,1015),(265,2853,0.0,0.0,0.0,670),(266,3696,0.0,0.0,0.0,900),(267,3714,0.0,0.0,0.0,0),(268,3683,0.0,0.0,0.0,0),(269,3199,0.0,0.0,0.0,0),(270,3719,0.0,0.0,0.0,670),(271,3732,0.0,0.0,0.0,535),(272,3734,0.0,0.0,0.0,0),(273,3738,0.0,0.0,0.0,0),(274,3434,0.0,0.0,0.0,945),(275,3437,0.0,0.0,0.0,940),(276,3431,0.0,0.0,0.0,945),(277,3399,0.0,0.0,0.0,950),(278,3387,0.0,0.0,0.0,950),(279,3385,0.0,0.0,0.0,945),(280,3383,0.0,0.0,0.0,940),(281,3435,0.0,0.0,0.0,945),(282,3432,0.0,0.0,0.0,940),(283,3751,0.0,0.0,0.0,630),(284,3422,0.0,0.0,0.0,1060),(285,3412,0.0,0.0,0.0,1025),(286,3429,0.0,0.0,0.0,1060),(287,3430,0.0,0.0,0.0,1060),(288,3436,0.0,0.0,0.0,1035),(289,3378,0.0,0.0,0.0,1040),(290,3373,0.0,0.0,0.0,1090),(291,3433,0.0,0.0,0.0,1040),(292,3424,0.0,0.0,0.0,1030),(293,3421,0.0,0.0,0.0,1035),(294,3423,0.0,0.0,0.0,1040),(295,3416,0.0,0.0,0.0,1040),(296,3413,0.0,0.0,0.0,1045),(297,3418,0.0,0.0,0.0,1035),(298,3419,0.0,0.0,0.0,1040),(299,3406,0.0,0.0,0.0,1030),(300,3478,0.0,0.0,0.0,810),(301,3206,0.0,0.0,0.0,790),(302,3379,0.0,0.0,0.0,1035),(303,3409,0.0,0.0,0.0,1065),(304,3407,0.0,0.0,0.0,1070),(305,3404,0.0,0.0,0.0,1035),(306,3689,0.0,0.0,0.0,1040),(307,3377,0.0,0.0,0.0,1035),(308,3568,0.0,0.0,0.0,810),(309,3538,0.0,0.0,0.0,805),(310,3561,0.0,0.0,0.0,800),(311,3411,0.0,0.0,0.0,1035),(312,3726,0.0,0.0,0.0,800),(313,3380,0.0,0.0,0.0,1070),(315,3392,0.0,0.0,0.0,1060),(316,3394,0.0,0.0,0.0,1070),(317,3742,0.0,0.0,0.0,0),(318,3745,0.0,0.0,0.0,0),(319,3441,0.0,0.0,0.0,960),(320,3458,0.0,0.0,0.0,950),(321,3444,0.0,0.0,0.0,960),(322,3760,0.0,0.0,0.0,1130),(323,3369,0.0,0.0,0.0,945),(324,3442,0.0,0.0,0.0,945),(325,3438,0.0,0.0,0.0,945),(326,3445,0.0,0.0,0.0,945),(327,3607,0.0,0.0,0.0,1015),(328,3448,0.0,0.0,0.0,1025),(329,3446,0.0,0.0,0.0,1015),(330,3453,0.0,0.0,0.0,1015),(331,3452,0.0,0.0,0.0,1035),(332,3439,0.0,0.0,0.0,960),(333,3758,0.0,0.0,0.0,785),(334,3443,0.0,0.0,0.0,960),(335,3447,0.0,0.0,0.0,945),(336,3456,0.0,0.0,0.0,945),(337,3449,0.0,0.0,0.0,945),(338,3454,0.0,0.0,0.0,945),(339,3462,0.0,0.0,0.0,945),(340,3463,0.0,0.0,0.0,945),(341,3464,0.0,0.0,0.0,945),(342,3465,0.0,0.0,0.0,945),(343,3467,0.0,0.0,0.0,945),(344,3466,0.0,0.0,0.0,945),(345,3468,0.0,0.0,0.0,950),(346,3470,0.0,0.0,0.0,950),(347,3472,0.0,0.0,0.0,950),(348,3609,0.0,0.0,0.0,720),(349,3554,0.0,0.0,0.0,720),(350,3699,0.0,0.0,0.0,705),(351,3632,0.0,0.0,0.0,720),(352,3457,0.0,0.0,0.0,960),(353,3475,0.0,0.0,0.0,705),(354,3450,0.0,0.0,0.0,953),(355,3451,0.0,0.0,0.0,960),(356,3459,0.0,0.0,0.0,960),(357,3460,0.0,0.0,0.0,950),(358,3461,0.0,0.0,0.0,960),(359,3471,0.0,0.0,0.0,960),(360,3580,0.0,0.0,0.0,754),(361,3657,0.0,0.0,0.0,922),(362,3083,0.0,0.0,0.0,955),(363,3778,0.0,0.0,0.0,1715),(364,3820,0.0,0.0,0.0,820),(365,3786,0.0,0.0,0.0,825),(366,3813,0.0,0.0,0.0,1065),(367,3821,0.0,0.0,0.0,810),(368,3374,0.0,0.0,0.0,1035),(369,3780,0.0,0.0,0.0,815),(370,3725,0.0,0.0,0.0,1040),(371,3720,0.0,0.0,0.0,1040),(372,3779,0.0,0.0,0.0,610),(373,3792,0.0,0.0,0.0,990),(374,3765,0.0,0.0,0.0,1035),(375,3642,0.0,0.0,0.0,790),(376,3800,0.0,0.0,0.0,760),(377,3529,0.0,0.0,0.0,810),(378,3526,0.0,0.0,0.0,800),(379,3781,0.0,0.0,0.0,995),(380,3521,0.0,0.0,0.0,815),(381,1743,0.0,0.0,0.0,1210),(382,1611,0.0,0.0,0.0,1205),(383,1271,0.0,0.0,0.0,1195),(384,1152,0.0,0.0,0.0,1190),(385,3326,0.0,0.0,0.0,1205),(386,2247,0.0,0.0,0.0,1170),(387,3234,0.0,0.0,0.0,1170),(388,1773,0.0,0.0,0.0,1225),(389,3279,0.0,0.0,0.0,1030),(390,1716,0.0,0.0,0.0,1185),(391,3315,0.0,0.0,0.0,810),(392,2974,0.0,0.0,0.0,800),(393,3787,0.0,0.0,0.0,775),(394,3541,0.0,0.0,0.0,775),(395,3557,0.0,0.0,0.0,800),(396,2451,0.0,0.0,0.0,810),(397,2050,0.0,0.0,0.0,765),(398,3512,0.0,0.0,0.0,770),(399,1899,0.0,0.0,0.0,795),(401,2048,0.0,0.0,0.0,765),(402,3254,0.0,0.0,0.0,770),(403,2149,0.0,0.0,0.0,800),(404,3283,0.0,0.0,0.0,1185),(405,3062,0.0,0.0,0.0,1185),(406,3166,0.0,0.0,0.0,1200),(407,1834,0.0,0.0,0.0,1200),(408,1762,0.0,0.0,0.0,1210),(409,1735,0.0,0.0,0.0,1165),(410,3370,0.0,0.0,0.0,1195),(411,1245,0.0,0.0,0.0,1175),(412,3487,0.0,0.0,0.0,1205),(413,3629,0.0,0.0,0.0,1195),(414,1391,0.0,0.0,0.0,1205),(415,1651,0.0,0.0,0.0,1200),(416,3830,0.0,0.0,0.0,815),(417,3831,0.0,0.0,0.0,820),(418,3826,0.0,0.0,0.0,820),(419,3825,0.0,0.0,0.0,795),(420,3828,0.0,0.0,0.0,775),(421,3824,0.0,0.0,0.0,820),(422,3829,0.0,0.0,0.0,820),(423,3823,0.0,0.0,0.0,820),(424,3697,0.0,0.0,0.0,0),(425,3621,0.0,0.0,0.0,0),(426,3533,0.0,0.0,0.0,0),(427,3504,0.0,0.0,0.0,0),(428,3473,0.0,0.0,0.0,0),(429,3469,0.0,0.0,0.0,0),(430,3808,0.0,0.0,0.0,0),(431,1881,0.0,0.0,0.0,750),(432,1865,0.0,0.0,0.0,720),(433,1127,0.0,0.0,0.0,740),(434,1278,0.0,0.0,0.0,740),(435,1800,0.0,0.0,0.0,750),(436,1823,0.0,0.0,0.0,726),(437,3497,0.0,0.0,0.0,1125),(438,1267,0.0,0.0,0.0,730),(439,3353,0.0,0.0,0.0,740),(440,1464,0.0,0.0,0.0,707),(441,3834,0.0,0.0,0.0,0),(442,3835,0.0,0.0,0.0,0),(443,3810,0.0,0.0,0.0,0),(444,3275,0.0,0.0,0.0,0),(445,1470,0.0,0.0,0.0,0),(446,1146,0.0,0.0,0.0,0),(447,1343,0.0,0.0,0.0,0),(448,1630,0.0,0.0,0.0,1930),(449,1347,0.0,0.0,0.0,840),(450,1356,0.0,0.0,0.0,810),(451,1438,0.0,0.0,0.0,835),(452,1466,0.0,0.0,0.0,835),(453,3886,0.0,0.0,0.0,1190),(454,3889,0.0,0.0,0.0,790),(455,3608,0.0,0.0,0.0,1215),(456,3226,0.0,0.0,0.0,705),(457,3680,0.0,0.0,0.0,693),(458,3524,0.0,0.0,0.0,724),(459,3577,0.0,0.0,0.0,702),(460,3068,0.0,0.0,0.0,2117),(461,1889,0.0,0.0,0.0,705),(462,2767,0.0,0.0,0.0,703),(463,1833,0.0,0.0,0.0,724),(464,3848,0.0,0.0,0.0,739),(465,3493,0.0,0.0,0.0,3060),(466,1962,0.0,0.0,0.0,720),(467,1933,0.0,0.0,0.0,720),(468,2358,0.0,0.0,0.0,730),(469,3178,0.0,0.0,0.0,715),(470,3842,0.0,0.0,0.0,715),(471,3854,0.0,0.0,0.0,676),(472,3871,0.0,0.0,0.0,1690),(473,3301,0.0,0.0,0.0,1500),(474,3851,0.0,0.0,0.0,926),(475,3347,0.0,0.0,0.0,1495),(476,3859,0.0,0.0,0.0,1110),(477,3582,0.0,0.0,0.0,705),(478,1308,0.0,0.0,0.0,715),(479,3868,0.0,0.0,0.0,705),(480,3861,0.0,0.0,0.0,900),(481,3707,0.0,0.0,0.0,705),(482,299,0.0,0.0,0.0,1110),(483,4017,0.0,0.0,0.0,945),(484,3914,0.0,0.0,0.0,915),(485,3890,0.0,0.0,0.0,2215),(486,3899,0.0,0.0,0.0,1345),(487,3194,0.0,0.0,0.0,1970),(488,3896,0.0,0.0,0.0,1680),(489,3887,0.0,0.0,0.0,1690),(490,4005,0.0,0.0,0.0,950),(491,4015,0.0,0.0,0.0,720),(492,4016,0.0,0.0,0.0,720),(493,4007,0.0,0.0,0.0,720),(494,4011,0.0,0.0,0.0,720),(495,3907,0.0,0.0,0.0,1955),(496,3911,0.0,0.0,0.0,2966),(497,3664,0.0,0.0,0.0,1045),(498,4026,0.0,0.0,0.0,2445),(499,3796,0.0,0.0,0.0,3455),(500,4050,0.0,0.0,0.0,675),(501,3550,0.0,0.0,0.0,1220),(502,3905,0.0,0.0,0.0,1170),(503,4032,0.0,0.0,0.0,1150),(504,3427,0.0,0.0,0.0,1030),(505,4033,0.0,0.0,0.0,810),(506,3309,0.0,0.0,0.0,1555),(507,4047,0.0,0.0,0.0,810),(508,3627,0.0,0.0,0.0,810),(509,3878,0.0,0.0,0.0,0),(510,2760,0.0,0.0,0.0,0),(511,3910,0.0,0.0,0.0,0),(512,4001,0.0,0.0,0.0,0),(513,4058,0.0,0.0,0.0,815),(514,4056,0.0,0.0,0.0,1890),(515,4062,0.0,0.0,0.0,0),(516,1263,0.0,0.0,0.0,1200),(517,4138,0.0,0.0,0.0,1450),(518,4113,0.0,0.0,0.0,1105),(519,4039,0.0,0.0,0.0,1065),(520,4106,0.0,0.0,0.0,0),(521,4129,0.0,0.0,0.0,0),(522,4069,0.0,0.0,0.0,0),(523,4068,0.0,0.0,0.0,0),(524,4094,0.0,0.0,0.0,1070),(525,4092,0.0,0.0,0.0,723),(526,4070,0.0,0.0,0.0,1240),(527,4100,0.0,0.0,0.0,725),(528,4127,0.0,0.0,0.0,1119),(529,4073,0.0,0.0,0.0,677),(530,4080,0.0,0.0,0.0,680),(531,4091,0.0,0.0,0.0,1262),(532,4125,0.0,0.0,0.0,1310),(533,4111,0.0,0.0,0.0,1730),(534,4130,0.0,0.0,0.0,1315),(535,4084,0.0,0.0,0.0,1104),(536,4166,0.0,0.0,0.0,750),(537,3852,0.0,0.0,0.0,740),(538,2155,0.0,0.0,0.0,2705),(539,4199,0.0,0.0,0.0,722),(540,4198,0.0,0.0,0.0,720),(541,4221,0.0,0.0,0.0,710),(542,4233,0.0,0.0,0.0,690),(543,4230,0.0,0.0,0.0,1100),(544,3947,0.0,0.0,0.0,680),(545,4250,0.0,0.0,0.0,722),(546,4095,0.0,0.0,0.0,1055),(547,3977,0.0,0.0,0.0,1105),(548,3979,0.0,0.0,0.0,677),(549,3992,0.0,0.0,0.0,678),(550,3984,0.0,0.0,0.0,1104),(551,3998,0.0,0.0,0.0,1100),(552,3987,0.0,0.0,0.0,1100),(553,3985,0.0,0.0,0.0,1100),(554,3989,0.0,0.0,0.0,1100),(555,3988,0.0,0.0,0.0,1100),(556,3995,0.0,0.0,0.0,1100),(557,3997,0.0,0.0,0.0,1100),(558,3993,0.0,0.0,0.0,680),(559,3980,0.0,0.0,0.0,1100),(560,3986,0.0,0.0,0.0,1100),(561,3983,0.0,0.0,0.0,1100),(562,3974,0.0,0.0,0.0,1100),(563,3975,0.0,0.0,0.0,1100),(564,3976,0.0,0.0,0.0,1100),(565,3973,0.0,0.0,0.0,1100),(566,3915,0.0,0.0,0.0,680),(567,3970,0.0,0.0,0.0,1100),(568,3857,0.0,0.0,0.0,1100),(569,3969,0.0,0.0,0.0,1100),(570,3972,0.0,0.0,0.0,1100),(571,3971,0.0,0.0,0.0,680),(572,3935,0.0,0.0,0.0,675),(573,4010,0.0,0.0,0.0,680),(574,3939,0.0,0.0,0.0,1105),(575,3938,0.0,0.0,0.0,1107),(576,3946,0.0,0.0,0.0,1107),(577,3954,0.0,0.0,0.0,1105),(578,3959,0.0,0.0,0.0,1105),(579,3956,0.0,0.0,0.0,1105),(580,3955,0.0,0.0,0.0,1105),(581,3963,0.0,0.0,0.0,1105),(582,3944,0.0,0.0,0.0,1107),(583,3894,0.0,0.0,0.0,1081),(584,4243,0.0,0.0,0.0,1105),(585,3961,0.0,0.0,0.0,1105),(586,3958,0.0,0.0,0.0,1103),(587,4078,0.0,0.0,0.0,680),(588,4021,0.0,0.0,0.0,1100),(589,4020,0.0,0.0,0.0,680),(590,4141,0.0,0.0,0.0,680),(591,4193,0.0,0.0,0.0,680),(592,4000,0.0,0.0,0.0,670),(593,4238,0.0,0.0,0.0,680),(594,4197,0.0,0.0,0.0,1100),(595,3999,0.0,0.0,0.0,1100),(596,3926,0.0,0.0,0.0,1100),(597,3920,0.0,0.0,0.0,1100),(598,3923,0.0,0.0,0.0,1110),(599,3934,0.0,0.0,0.0,1106),(600,3933,0.0,0.0,0.0,1107),(601,3941,0.0,0.0,0.0,1107),(602,3924,0.0,0.0,0.0,1105),(603,3931,0.0,0.0,0.0,1106),(604,3937,0.0,0.0,0.0,1107),(605,3927,0.0,0.0,0.0,1105),(606,3917,0.0,0.0,0.0,1100),(607,3925,0.0,0.0,0.0,1100),(608,3922,0.0,0.0,0.0,1100),(609,3921,0.0,0.0,0.0,1100),(610,3928,0.0,0.0,0.0,1100),(611,3982,0.0,0.0,0.0,680),(612,4242,0.0,0.0,0.0,2077),(613,4262,0.0,0.0,0.0,697),(614,3480,0.0,0.0,0.0,1935),(615,4247,0.0,0.0,0.0,710),(616,1577,0.0,0.0,0.0,2010),(617,4156,0.0,0.0,0.0,1335),(618,4325,0.0,0.0,0.0,760),(619,4297,0.0,0.0,0.0,815),(620,4305,0.0,0.0,0.0,815),(621,4293,0.0,0.0,0.0,780),(622,4269,0.0,0.0,0.0,810),(623,4306,0.0,0.0,0.0,1150),(624,1379,0.0,0.0,0.0,1470),(625,4286,0.0,0.0,0.0,1090),(626,1456,0.0,0.0,0.0,1787),(627,4288,0.0,0.0,0.0,1100),(628,4339,0.0,0.0,0.0,700),(629,4317,0.0,0.0,0.0,3320),(630,1832,0.0,0.0,0.0,1625),(631,4169,0.0,0.0,0.0,640),(632,4370,0.0,0.0,0.0,790),(633,3670,0.0,0.0,0.0,1030),(634,3382,0.0,0.0,0.0,1060),(635,4089,0.0,0.0,0.0,645),(636,4076,0.0,0.0,0.0,675),(637,4118,0.0,0.0,0.0,1065),(638,4083,0.0,0.0,0.0,640),(639,1004,0.0,0.0,0.0,711),(640,3849,0.0,0.0,0.0,534),(642,3390,0.0,0.0,0.0,970),(643,4364,0.0,0.0,0.0,713),(644,3968,0.0,0.0,0.0,1118),(645,3929,0.0,0.0,0.0,1114),(646,4186,0.0,0.0,0.0,1360),(647,3598,0.0,0.0,0.0,970),(648,3575,0.0,0.0,0.0,1814),(649,4025,0.0,0.0,0.0,520),(650,3869,0.0,0.0,0.0,520),(651,4064,0.0,0.0,0.0,956),(665,4055,0.0,0.0,0.0,530),(666,4365,0.0,0.0,0.0,1247),(667,4389,0.0,0.0,0.0,2209),(668,4396,0.0,0.0,0.0,1102),(669,4385,0.0,0.0,0.0,1070),(670,4395,0.0,0.0,0.0,1060),(671,4507,0.0,0.0,0.0,727),(672,4394,0.0,0.0,0.0,1670),(673,4332,0.0,0.0,0.0,678),(674,4276,0.0,0.0,0.0,850),(675,4560,0.0,0.0,0.0,1940),(676,4552,0.0,0.0,0.0,2000),(677,4514,0.0,0.0,0.0,1074),(678,4563,0.0,0.0,0.0,680),(679,4562,0.0,0.0,0.0,680),(680,4540,0.0,0.0,0.0,1500),(681,4573,0.0,0.0,0.0,2645),(682,4570,0.0,0.0,0.0,1195),(683,4542,0.0,0.0,0.0,950),(684,3653,0.0,0.0,0.0,1450),(685,3768,0.0,0.0,0.0,1025),(686,3672,0.0,0.0,0.0,1015),(687,4549,0.0,0.0,0.0,1550),(688,4196,0.0,0.0,0.0,1050),(689,3666,0.0,0.0,0.0,1050),(690,3658,0.0,0.0,0.0,1048),(691,4171,0.0,0.0,0.0,1020),(692,4566,0.0,0.0,0.0,1020),(693,4304,0.0,0.0,0.0,990),(694,4253,0.0,0.0,0.0,1018),(695,4601,0.0,0.0,0.0,1700),(696,3897,0.0,0.0,0.0,990),(697,4053,0.0,0.0,0.0,1020),(698,4160,0.0,0.0,0.0,990),(699,4612,0.0,0.0,0.0,1770),(700,4583,0.0,0.0,0.0,720),(701,4614,0.0,0.0,0.0,1020),(702,4608,0.0,0.0,0.0,1030),(703,4638,0.0,0.0,0.0,1020),(704,4636,0.0,0.0,0.0,1020),(705,4201,0.0,0.0,0.0,1380),(706,4645,0.0,0.0,0.0,1100),(707,4628,0.0,0.0,0.0,1104),(708,4632,0.0,0.0,0.0,676),(709,4524,0.0,0.0,0.0,685),(710,4600,0.0,0.0,0.0,1404),(711,4648,0.0,0.0,0.0,1836),(712,3740,0.0,0.0,0.0,1455),(713,3676,0.0,0.0,0.0,1460),(714,3903,0.0,0.0,0.0,1460),(715,3702,0.0,0.0,0.0,1455),(716,4580,0.0,0.0,0.0,710),(717,4117,0.0,0.0,0.0,1425),(718,3794,0.0,0.0,0.0,1809),(719,4655,0.0,0.0,0.0,1290),(720,4666,0.0,0.0,0.0,1695),(721,4681,0.0,0.0,0.0,2310),(722,4685,0.0,0.0,0.0,1140),(723,4303,0.0,0.0,0.0,1380),(724,4251,0.0,0.0,0.0,640),(725,4291,0.0,0.0,0.0,1005),(726,4181,0.0,0.0,0.0,615),(727,4674,0.0,0.0,0.0,1535),(728,4709,0.0,0.0,0.0,785),(729,4698,0.0,0.0,0.0,1135),(730,4690,0.0,0.0,0.0,1900),(731,4696,0.0,0.0,0.0,1140),(732,4716,0.0,0.0,0.0,810),(733,4703,0.0,0.0,0.0,717),(734,4713,0.0,0.0,0.0,1377),(735,4405,0.0,0.0,0.0,1155),(736,4406,0.0,0.0,0.0,1150),(737,4408,0.0,0.0,0.0,1160),(738,4407,0.0,0.0,0.0,1150),(739,4417,0.0,0.0,0.0,1150),(740,4414,0.0,0.0,0.0,1150),(741,4412,0.0,0.0,0.0,1150),(742,4413,0.0,0.0,0.0,1115),(743,4421,0.0,0.0,0.0,1095),(744,4427,0.0,0.0,0.0,1095),(745,4424,0.0,0.0,0.0,1095),(746,4428,0.0,0.0,0.0,1095),(747,4433,0.0,0.0,0.0,1095),(748,4660,0.0,0.0,0.0,1095),(749,4402,0.0,0.0,0.0,1100),(750,4420,0.0,0.0,0.0,1095),(751,4669,0.0,0.0,0.0,1097),(752,4401,0.0,0.0,0.0,1095),(753,4627,0.0,0.0,0.0,1095),(754,4441,0.0,0.0,0.0,1195),(755,4436,0.0,0.0,0.0,1195),(756,4539,0.0,0.0,0.0,815),(757,3918,0.0,0.0,0.0,1205),(758,4464,0.0,0.0,0.0,1185),(759,4462,0.0,0.0,0.0,1185),(760,4448,0.0,0.0,0.0,1185),(761,4459,0.0,0.0,0.0,1150),(762,4460,0.0,0.0,0.0,1145),(763,4463,0.0,0.0,0.0,1150),(764,4541,0.0,0.0,0.0,1145),(765,4465,0.0,0.0,0.0,1150),(766,4457,0.0,0.0,0.0,1145),(767,4538,0.0,0.0,0.0,770),(768,4426,0.0,0.0,0.0,1100),(769,4727,0.0,0.0,0.0,2145),(770,4418,0.0,0.0,0.0,1100),(771,4429,0.0,0.0,0.0,1100),(772,4432,0.0,0.0,0.0,1100),(773,4452,0.0,0.0,0.0,1100),(774,4451,0.0,0.0,0.0,1100),(775,4439,0.0,0.0,0.0,1100),(776,4443,0.0,0.0,0.0,1100),(777,4453,0.0,0.0,0.0,1090),(778,4445,0.0,0.0,0.0,1100),(779,4486,0.0,0.0,0.0,1100),(780,4490,0.0,0.0,0.0,1090),(781,4487,0.0,0.0,0.0,1100),(782,4491,0.0,0.0,0.0,1100),(783,4496,0.0,0.0,0.0,1100),(784,4497,0.0,0.0,0.0,1100),(785,4488,0.0,0.0,0.0,1160),(786,4492,0.0,0.0,0.0,1195),(787,4495,0.0,0.0,0.0,1155),(788,4493,0.0,0.0,0.0,1160),(789,4494,0.0,0.0,0.0,1195),(790,4485,0.0,0.0,0.0,1185),(791,4482,0.0,0.0,0.0,1175),(792,4474,0.0,0.0,0.0,1170),(793,4475,0.0,0.0,0.0,1190),(794,4477,0.0,0.0,0.0,1175),(795,4478,0.0,0.0,0.0,1170),(796,4476,0.0,0.0,0.0,1185),(797,4479,0.0,0.0,0.0,1155),(798,4468,0.0,0.0,0.0,1160),(799,4467,0.0,0.0,0.0,1155),(800,4397,0.0,0.0,0.0,810),(801,4473,0.0,0.0,0.0,1190),(802,4489,0.0,0.0,0.0,1100),(803,4480,0.0,0.0,0.0,1100),(804,4725,60.0,47.0,30.0,3395),(805,4438,0.0,0.0,0.0,3185),(806,4745,0.0,0.0,0.0,1185),(807,4756,0.0,0.0,0.0,1580),(808,4483,0.0,0.0,0.0,1100),(809,4481,0.0,0.0,0.0,1100),(810,4484,0.0,0.0,0.0,1100),(811,4469,0.0,0.0,0.0,1100),(812,4471,0.0,0.0,0.0,1095),(813,4472,0.0,0.0,0.0,1095),(814,4470,0.0,0.0,0.0,1100),(815,4591,0.0,0.0,0.0,715),(816,4522,0.0,0.0,0.0,715),(817,4513,0.0,0.0,0.0,715),(818,4527,0.0,0.0,0.0,715),(819,4779,0.0,0.0,0.0,2070),(820,4454,0.0,0.0,0.0,710),(821,4521,0.0,0.0,0.0,715),(822,4509,0.0,0.0,0.0,715),(823,3812,0.0,0.0,0.0,2200),(824,4677,0.0,0.0,0.0,1950),(825,4824,0.0,0.0,0.0,1400),(826,4832,0.0,0.0,0.0,1024),(827,4554,0.0,0.0,0.0,1107),(828,4766,0.0,0.0,0.0,1015),(829,4777,0.0,0.0,0.0,1330),(830,4576,0.0,0.0,0.0,1310),(831,4543,0.0,0.0,0.0,1100),(832,4781,0.0,0.0,0.0,1951),(833,4343,0.0,0.0,0.0,1560),(834,4316,0.0,0.0,0.0,953),(835,4109,0.0,0.0,0.0,545),(836,4499,0.0,0.0,0.0,1115),(837,4786,0.0,0.0,0.0,1125),(838,4763,0.0,0.0,0.0,1125),(839,4776,0.0,0.0,0.0,710),(840,4502,0.0,0.0,0.0,1113),(841,4500,0.0,0.0,0.0,1115),(842,4503,0.0,0.0,0.0,1115),(843,4504,0.0,0.0,0.0,1115),(844,4505,0.0,0.0,0.0,1115),(845,4684,0.0,0.0,0.0,1115),(846,4561,0.0,0.0,0.0,725),(847,4534,0.0,0.0,0.0,725),(848,4559,0.0,0.0,0.0,722),(849,4523,0.0,0.0,0.0,726),(850,4617,0.0,0.0,0.0,715),(851,4623,0.0,0.0,0.0,715),(852,4862,0.0,0.0,0.0,785),(853,4817,0.0,0.0,0.0,785),(854,4801,0.0,0.0,0.0,790),(855,4755,0.0,0.0,0.0,790),(856,4800,0.0,0.0,0.0,785),(857,4864,0.0,0.0,0.0,1200),(858,4809,0.0,0.0,0.0,790),(859,4855,0.0,0.0,0.0,795),(860,4863,0.0,0.0,0.0,800),(861,4859,0.0,0.0,0.0,790),(862,4857,0.0,0.0,0.0,820),(863,4861,0.0,0.0,0.0,780),(864,4858,0.0,0.0,0.0,775),(865,4701,0.0,0.0,0.0,780),(866,4757,0.0,0.0,0.0,785),(867,4860,0.0,0.0,0.0,815),(868,4739,0.0,0.0,0.0,780),(869,4856,0.0,0.0,0.0,805),(870,4788,0.0,0.0,0.0,3565),(871,4784,0.0,0.0,0.0,800),(872,4437,0.0,0.0,0.0,1165),(873,4813,0.0,0.0,0.0,1205),(874,4814,0.0,0.0,0.0,790),(875,4865,0.0,0.0,0.0,790),(876,4812,0.0,0.0,0.0,3080),(877,4750,0.0,0.0,0.0,1320),(878,4795,60.0,46.0,30.0,3116),(879,4889,0.0,0.0,0.0,720),(880,4885,0.0,0.0,0.0,1020),(881,4876,0.0,0.0,0.0,750),(882,4919,0.0,0.0,0.0,111),(883,4334,0.0,0.0,0.0,540),(884,4900,0.0,0.0,0.0,3230),(885,4826,0.0,0.0,0.0,1115),(886,4715,0.0,0.0,0.0,1040),(887,4899,0.0,0.0,0.0,724),(888,4797,0.0,0.0,0.0,1100),(889,4430,0.0,0.0,0.0,1100),(890,4923,0.0,0.0,0.0,1454),(891,4821,0.0,0.0,0.0,530),(892,4927,11.0,11.0,11.0,1111),(893,5042,0.0,0.0,0.0,1030),(894,4937,0.0,0.0,0.0,1160),(895,4912,0.0,0.0,0.0,2965),(896,5062,0.0,0.0,0.0,1830),(897,4936,0.0,0.0,0.0,700),(898,4981,0.0,0.0,0.0,1110),(899,5044,0.0,0.0,0.0,720),(900,4940,0.0,0.0,0.0,700),(901,5032,0.0,0.0,0.0,720),(902,5038,0.0,0.0,0.0,1130),(903,5119,0.0,0.0,0.0,1170),(904,5088,0.0,0.0,0.0,830),(905,5090,0.0,0.0,0.0,1215),(906,5058,0.0,0.0,0.0,950),(907,4354,0.0,0.0,0.0,720),(908,5083,0.0,0.0,0.0,720),(909,5128,0.0,0.0,0.0,720),(910,5087,0.0,0.0,0.0,1130),(911,5072,0.0,0.0,0.0,720),(912,5097,0.0,0.0,0.0,720),(913,5080,0.0,0.0,0.0,720),(914,5099,0.0,0.0,0.0,720),(915,4581,0.0,0.0,0.0,1855),(916,5030,0.0,0.0,0.0,1525),(917,5060,0.0,0.0,0.0,2760),(918,4850,0.0,0.0,0.0,1605),(919,4930,0.0,0.0,0.0,2200),(920,5075,0.0,0.0,0.0,2575),(921,5015,0.0,0.0,0.0,810),(922,4985,0.0,0.0,0.0,775),(923,4970,0.0,0.0,0.0,800),(924,5068,0.0,0.0,0.0,1195),(925,5050,0.0,0.0,0.0,3110),(926,5086,0.0,0.0,0.0,3085),(927,5093,0.0,0.0,0.0,1220),(928,5138,0.0,0.0,0.0,815),(929,5156,0.0,0.0,0.0,720),(930,5154,0.0,0.0,0.0,1110),(931,5144,0.0,0.0,0.0,1820),(932,5142,0.0,0.0,0.0,1180),(933,5143,0.0,0.0,0.0,1145),(934,5148,0.0,0.0,0.0,1170),(935,5167,0.0,0.0,0.0,1630),(936,5189,0.0,0.0,0.0,810),(937,5169,0.0,0.0,0.0,790),(938,5186,0.0,0.0,0.0,835),(939,5170,0.0,0.0,0.0,1150),(940,4944,0.0,0.0,0.0,1160),(941,4953,0.0,0.0,0.0,1150),(942,4952,0.0,0.0,0.0,1160),(943,4951,0.0,0.0,0.0,1150),(944,4974,0.0,0.0,0.0,1150),(945,5216,0.0,0.0,0.0,1145),(946,4987,0.0,0.0,0.0,1130),(947,5236,0.0,0.0,0.0,1160),(948,4982,0.0,0.0,0.0,1076),(949,4980,0.0,0.0,0.0,1064),(950,4979,0.0,0.0,0.0,1074),(951,5017,0.0,0.0,0.0,666),(952,4957,0.0,0.0,0.0,1072),(953,4975,0.0,0.0,0.0,1070),(954,4960,0.0,0.0,0.0,1075),(955,4976,0.0,0.0,0.0,1102),(956,4963,0.0,0.0,0.0,1078),(957,4966,0.0,0.0,0.0,1102),(958,5003,0.0,0.0,0.0,1072),(959,5061,0.0,0.0,0.0,2516),(960,5265,0.0,0.0,0.0,682),(961,5266,0.0,0.0,0.0,666),(962,5052,0.0,0.0,0.0,665),(963,5022,0.0,0.0,0.0,686),(964,5264,0.0,0.0,0.0,666),(965,5282,0.0,0.0,0.0,750),(966,5006,0.0,0.0,0.0,1070),(967,5007,0.0,0.0,0.0,1066),(968,5033,0.0,0.0,0.0,1072),(969,5009,0.0,0.0,0.0,1070),(970,5011,0.0,0.0,0.0,1072),(971,5002,0.0,0.0,0.0,1070),(972,5001,0.0,0.0,0.0,1072),(973,5008,0.0,0.0,0.0,1070),(974,5012,0.0,0.0,0.0,1072),(975,4990,0.0,0.0,0.0,1070),(976,4950,0.0,0.0,0.0,1078),(977,4948,0.0,0.0,0.0,1072),(978,4691,0.0,0.0,0.0,1074),(979,4988,0.0,0.0,0.0,1076),(980,5005,0.0,0.0,0.0,1074),(981,4989,0.0,0.0,0.0,1072),(982,4993,0.0,0.0,0.0,1076),(983,4992,0.0,0.0,0.0,1070),(984,4994,0.0,0.0,0.0,1076),(985,4996,0.0,0.0,0.0,1076),(986,4995,0.0,0.0,0.0,1072),(987,4997,0.0,0.0,0.0,1076),(988,5073,0.0,0.0,0.0,1070),(989,4656,0.0,0.0,0.0,1740),(990,4796,0.0,0.0,0.0,1020),(991,4947,0.0,0.0,0.0,1160),(992,4946,0.0,0.0,0.0,1160),(993,4143,0.0,0.0,0.0,3046),(994,4730,0.0,0.0,0.0,1800),(995,5136,0.0,0.0,0.0,1474),(996,5149,0.0,0.0,0.0,2636),(997,4764,0.0,0.0,0.0,1126),(998,5257,0.0,0.0,0.0,670),(999,5260,0.0,0.0,0.0,670),(1000,5181,0.0,0.0,0.0,660),(1001,4984,0.0,0.0,0.0,1076),(1002,5129,0.0,0.0,0.0,1074),(1003,5215,0.0,0.0,0.0,664),(1004,4983,0.0,0.0,0.0,1080),(1005,5268,0.0,0.0,0.0,670),(1006,5158,0.0,0.0,0.0,670),(1007,5269,0.0,0.0,0.0,670),(1008,5267,0.0,0.0,0.0,670),(1009,5118,0.0,0.0,0.0,670),(1010,4969,0.0,0.0,0.0,1078),(1011,5194,0.0,0.0,0.0,670),(1012,5286,0.0,0.0,0.0,668),(1013,5271,0.0,0.0,0.0,1076),(1014,4740,0.0,0.0,0.0,528),(1015,5145,0.0,0.0,0.0,672),(1016,4971,0.0,0.0,0.0,1078),(1017,5147,0.0,0.0,0.0,670),(1018,5289,0.0,0.0,0.0,704),(1019,5290,0.0,0.0,0.0,1100),(1020,5261,0.0,0.0,0.0,1090),(1021,5004,0.0,0.0,0.0,1190),(1022,4999,0.0,0.0,0.0,1160),(1023,5074,0.0,0.0,0.0,970),(1024,5059,0.0,0.0,0.0,735),(1025,5100,0.0,0.0,0.0,745),(1026,5263,0.0,0.0,0.0,740),(1027,4908,0.0,0.0,0.0,640),(1028,4657,0.0,0.0,0.0,645),(1029,5245,0.0,0.0,0.0,1430),(1030,5237,0.0,0.0,0.0,1455),(1031,5203,0.0,0.0,0.0,1160),(1032,5262,0.0,0.0,0.0,745),(1033,5250,0.0,0.0,0.0,820),(1034,5204,0.0,0.0,0.0,1180),(1035,5238,0.0,0.0,0.0,800),(1036,5242,0.0,0.0,0.0,845),(1037,5246,0.0,0.0,0.0,780),(1038,4694,0.0,0.0,0.0,1355),(1039,5306,0.0,0.0,0.0,3205),(1040,5112,0.0,0.0,0.0,1875),(1041,5325,0.0,0.0,0.0,1040),(1042,4585,0.0,0.0,0.0,825),(1043,5322,0.0,0.0,0.0,1185),(1044,5318,0.0,0.0,0.0,825),(1045,5304,0.0,0.0,0.0,820),(1046,5312,0.0,0.0,0.0,820),(1047,5302,0.0,0.0,0.0,1080),(1048,5301,0.0,0.0,0.0,765),(1049,5298,0.0,0.0,0.0,830),(1050,5253,0.0,0.0,0.0,775),(1051,4998,0.0,0.0,0.0,1120),(1052,5248,0.0,0.0,0.0,810),(1053,5309,0.0,0.0,0.0,2425),(1054,4743,0.0,0.0,0.0,3215),(1055,5335,0.0,0.0,0.0,730),(1056,5324,0.0,0.0,0.0,730),(1057,4210,0.0,0.0,0.0,1675),(1058,5447,0.0,0.0,0.0,760),(1059,5338,0.0,0.0,0.0,745),(1060,5343,0.0,0.0,0.0,740),(1061,5344,0.0,0.0,0.0,785),(1062,5452,0.0,0.0,0.0,745),(1063,5449,0.0,0.0,0.0,805),(1064,5461,0.0,0.0,0.0,1232),(1065,5468,0.0,0.0,0.0,880),(1066,5476,0.0,0.0,0.0,880),(1067,5482,0.0,0.0,0.0,665),(1068,5296,0.0,0.0,0.0,752),(1069,5609,0.0,0.0,0.0,1185),(1070,5592,0.0,0.0,0.0,1180),(1071,5591,0.0,0.0,0.0,1030),(1072,5608,0.0,0.0,0.0,1025),(1073,5597,0.0,0.0,0.0,1025),(1074,5598,0.0,0.0,0.0,1175),(1075,5553,0.0,0.0,0.0,1870),(1076,5547,0.0,0.0,0.0,1210),(1077,5548,0.0,0.0,0.0,1215),(1078,5581,0.0,0.0,0.0,785),(1079,5575,0.0,0.0,0.0,760),(1080,5578,0.0,0.0,0.0,750),(1081,5480,0.0,0.0,0.0,745),(1082,5563,0.0,0.0,0.0,780),(1083,5559,0.0,0.0,0.0,850),(1084,5549,0.0,0.0,0.0,975),(1085,5529,0.0,0.0,0.0,1010),(1086,5618,0.0,0.0,0.0,662),(1087,5612,0.0,0.0,0.0,662),(1088,5615,0.0,0.0,0.0,666),(1089,4114,0.0,0.0,0.0,1900),(1090,5633,0.0,0.0,0.0,3045),(1091,5642,0.0,0.0,0.0,1200),(1092,5636,0.0,0.0,0.0,710),(1093,5234,0.0,0.0,0.0,1190),(1094,5637,0.0,0.0,0.0,1180),(1095,5630,0.0,0.0,0.0,720),(1096,5572,0.0,0.0,0.0,660),(1097,5481,0.0,0.0,0.0,1755),(1098,5514,0.0,0.0,0.0,1320),(1099,5511,0.0,0.0,0.0,1315),(1100,5520,0.0,0.0,0.0,1325),(1101,5498,0.0,0.0,0.0,1320),(1102,5351,0.0,0.0,0.0,1320),(1103,5370,0.0,0.0,0.0,1320),(1104,5400,0.0,0.0,0.0,1320),(1105,5653,0.0,0.0,0.0,730),(1106,5660,0.0,0.0,0.0,1126),(1107,5402,0.0,0.0,0.0,1272),(1108,5371,0.0,0.0,0.0,1284),(1109,5345,0.0,0.0,0.0,1280),(1110,5383,0.0,0.0,0.0,1292),(1111,5394,0.0,0.0,0.0,1278),(1112,5391,0.0,0.0,0.0,1282),(1113,5501,0.0,0.0,0.0,1282),(1114,5522,0.0,0.0,0.0,1282),(1115,5497,0.0,0.0,0.0,1282),(1116,5510,0.0,0.0,0.0,1282),(1117,5505,0.0,0.0,0.0,1282),(1118,5513,0.0,0.0,0.0,1282),(1119,5638,0.0,0.0,0.0,930),(1120,5496,0.0,0.0,0.0,1355),(1121,5358,0.0,0.0,0.0,1315),(1122,5354,0.0,0.0,0.0,1320),(1123,5347,0.0,0.0,0.0,1320),(1124,5346,0.0,0.0,0.0,1320),(1125,5471,0.0,0.0,0.0,1055),(1126,5362,0.0,0.0,0.0,1280),(1127,5557,0.0,0.0,0.0,970),(1128,5355,0.0,0.0,0.0,1280),(1129,5353,0.0,0.0,0.0,1282),(1130,5356,0.0,0.0,0.0,1280),(1131,5359,0.0,0.0,0.0,1286),(1132,5364,0.0,0.0,0.0,1276),(1133,5366,0.0,0.0,0.0,1276),(1134,5367,0.0,0.0,0.0,1284),(1135,5368,0.0,0.0,0.0,1288),(1136,5372,0.0,0.0,0.0,1276),(1137,5375,0.0,0.0,0.0,1278),(1138,5376,0.0,0.0,0.0,1278),(1139,5378,0.0,0.0,0.0,1276),(1140,5387,0.0,0.0,0.0,1280),(1141,5389,0.0,0.0,0.0,1274),(1142,5393,0.0,0.0,0.0,1280),(1143,5398,0.0,0.0,0.0,1280),(1144,5404,0.0,0.0,0.0,1280),(1145,5403,0.0,0.0,0.0,1280),(1146,5593,0.0,0.0,0.0,1280),(1147,5610,0.0,0.0,0.0,1302),(1148,5643,0.0,0.0,0.0,686),(1149,5485,0.0,0.0,0.0,1045),(1150,5484,0.0,0.0,0.0,1050),(1151,5465,0.0,0.0,0.0,1050),(1152,5479,0.0,0.0,0.0,1045),(1153,5674,0.0,0.0,0.0,3870),(1154,5473,0.0,0.0,0.0,1914),(1155,5680,0.0,0.0,0.0,1448),(1156,5495,0.0,0.0,0.0,1272),(1157,5493,0.0,0.0,0.0,1274),(1158,5494,0.0,0.0,0.0,1274),(1159,5502,0.0,0.0,0.0,1274),(1160,5499,0.0,0.0,0.0,1306),(1161,5504,0.0,0.0,0.0,1262),(1162,5503,0.0,0.0,0.0,1266),(1163,5509,0.0,0.0,0.0,1278),(1164,5518,0.0,0.0,0.0,1274),(1165,5519,0.0,0.0,0.0,1264),(1166,5523,0.0,0.0,0.0,1274),(1167,5525,0.0,0.0,0.0,1274),(1168,5544,0.0,0.0,0.0,1274),(1169,5506,0.0,0.0,0.0,1264),(1170,5507,0.0,0.0,0.0,1268),(1171,5508,0.0,0.0,0.0,2593),(1172,5512,0.0,0.0,0.0,1280),(1173,5515,0.0,0.0,0.0,1270),(1174,5516,0.0,0.0,0.0,1270),(1175,5521,0.0,0.0,0.0,1270),(1176,5524,0.0,0.0,0.0,1268),(1177,5644,0.0,0.0,0.0,960),(1178,5555,0.0,0.0,0.0,966),(1179,5569,0.0,0.0,0.0,966),(1180,5622,0.0,0.0,0.0,968),(1181,5676,0.0,0.0,0.0,966),(1182,5688,0.0,0.0,0.0,962),(1183,5741,46.0,29.0,16.0,1890),(1184,5740,46.0,29.0,16.0,1890),(1185,5739,46.0,29.0,16.0,1890),(1186,5738,46.0,29.0,16.0,1890),(1187,5490,0.0,0.0,0.0,1276),(1188,5487,0.0,0.0,0.0,1274),(1189,5491,0.0,0.0,0.0,1284),(1190,5703,0.0,0.0,0.0,874),(1191,5713,0.0,0.0,0.0,1070),(1192,5489,0.0,0.0,0.0,1274),(1193,5488,0.0,0.0,0.0,1274),(1194,5486,0.0,0.0,0.0,1278),(1195,5721,0.0,0.0,0.0,970),(1196,5695,0.0,0.0,0.0,1800),(1197,5699,0.0,0.0,0.0,750),(1198,5729,0.0,0.0,0.0,962),(1199,5677,0.0,0.0,0.0,964),(1200,5706,0.0,0.0,0.0,962),(1201,5705,0.0,0.0,0.0,966),(1202,5365,0.0,0.0,0.0,1270),(1203,5714,0.0,0.0,0.0,1280),(1204,5694,0.0,0.0,0.0,1270),(1205,5733,0.0,0.0,0.0,950),(1206,5732,0.0,0.0,0.0,960),(1207,5492,0.0,0.0,0.0,1272),(1208,5401,0.0,0.0,0.0,1284),(1209,5397,0.0,0.0,0.0,1270),(1210,5770,0.0,0.0,0.0,978),(1211,5776,0.0,0.0,0.0,978),(1212,5773,0.0,0.0,0.0,968),(1213,5778,0.0,0.0,0.0,974),(1214,5777,0.0,0.0,0.0,968),(1215,5772,0.0,0.0,0.0,972),(1216,5774,0.0,0.0,0.0,972),(1217,5771,0.0,0.0,0.0,972),(1218,5767,0.0,0.0,0.0,992),(1219,5757,0.0,0.0,0.0,1110),(1220,5765,0.0,0.0,0.0,1026),(1221,5775,0.0,0.0,0.0,974),(1222,5794,0.0,0.0,0.0,732),(1223,5361,0.0,0.0,0.0,1280),(1224,5820,39.0,29.0,17.0,1116),(1225,5806,0.0,0.0,0.0,1712),(1226,5808,0.0,0.0,0.0,1430),(1227,5825,0.0,0.0,0.0,975),(1228,5799,0.0,0.0,0.0,965),(1229,5827,0.0,0.0,0.0,570),(1230,5828,30.0,26.0,15.0,1278),(1231,5843,30.0,25.0,15.0,1272),(1232,5822,0.0,0.0,0.0,988),(1233,5836,0.0,0.0,0.0,958),(1234,5918,30.0,24.0,14.0,1308),(1235,5861,0.0,0.0,0.0,1072),(1236,5935,30.0,25.0,15.0,948),(1237,5850,30.0,25.0,15.0,946),(1238,5957,30.0,25.0,15.0,954),(1239,5830,30.0,25.0,15.0,950),(1240,5968,30.0,25.0,15.0,732),(1241,5970,30.0,25.0,15.0,700),(1242,5939,0.0,0.0,0.0,1102),(1243,5929,0.0,0.0,0.0,970),(1244,5936,0.0,0.0,0.0,956),(1245,5976,0.0,0.0,0.0,954),(1246,5388,0.0,0.0,0.0,1274),(1247,5990,0.0,0.0,0.0,1280),(1248,6009,0.0,0.0,0.0,692),(1249,5999,0.0,0.0,0.0,954),(1250,5997,0.0,0.0,0.0,954),(1251,5986,0.0,0.0,0.0,954),(1252,5989,0.0,0.0,0.0,874),(1253,4658,0.0,0.0,0.0,1020),(1254,5848,0.0,0.0,0.0,665),(1255,6013,0.0,0.0,0.0,730),(1256,6026,30.0,25.0,15.0,945),(1257,5947,46.0,30.0,16.0,1874),(1258,6004,0.0,0.0,0.0,1040),(1259,6029,0.0,0.0,0.0,1350),(1260,6028,0.0,0.0,0.0,1950),(1261,6040,0.0,0.0,0.0,1958),(1262,6052,30.0,25.0,15.0,1020),(1263,6035,30.0,25.0,15.0,930),(1264,6050,0.0,0.0,0.0,1410),(1265,6051,0.0,0.0,0.0,1335),(1266,5382,0.0,0.0,0.0,1370),(1267,6104,46.0,30.0,16.0,1536),(1268,6078,30.0,25.0,15.0,950),(1269,6085,0.0,0.0,0.0,1468),(1270,6070,0.0,0.0,0.0,676),(1271,6101,0.0,0.0,0.0,1270),(1272,6073,0.0,0.0,0.0,1848),(1273,6116,56.0,29.0,17.0,1444),(1274,5882,0.0,0.0,0.0,1326),(1275,5873,0.0,0.0,0.0,1326),(1276,5870,0.0,0.0,0.0,1330),(1277,5865,0.0,0.0,0.0,1332),(1278,5863,0.0,0.0,0.0,1324),(1279,5856,0.0,0.0,0.0,1326),(1280,5904,0.0,0.0,0.0,1334),(1281,5903,0.0,0.0,0.0,1330),(1282,5901,0.0,0.0,0.0,1315),(1283,5900,0.0,0.0,0.0,1320),(1284,5890,0.0,0.0,0.0,1322),(1285,5886,0.0,0.0,0.0,1322),(1286,5884,0.0,0.0,0.0,1320),(1287,5871,0.0,0.0,0.0,1326),(1288,5867,0.0,0.0,0.0,1324),(1289,5866,0.0,0.0,0.0,1324),(1290,5862,0.0,0.0,0.0,1326),(1291,5860,0.0,0.0,0.0,1322),(1292,5905,0.0,0.0,0.0,1316),(1293,5902,0.0,0.0,0.0,1318),(1294,5898,0.0,0.0,0.0,1314),(1295,5897,0.0,0.0,0.0,1318),(1296,5878,0.0,0.0,0.0,1385),(1297,5877,0.0,0.0,0.0,1390),(1298,5876,0.0,0.0,0.0,1380),(1299,5874,0.0,0.0,0.0,1385),(1300,5896,0.0,0.0,0.0,1380),(1301,5895,0.0,0.0,0.0,1385),(1302,5748,0.0,0.0,0.0,1385),(1303,5907,0.0,0.0,0.0,1380),(1304,5908,0.0,0.0,0.0,1385),(1305,5909,0.0,0.0,0.0,1385),(1306,5911,0.0,0.0,0.0,1395),(1307,5953,0.0,0.0,0.0,765),(1308,5833,0.0,0.0,0.0,765),(1309,5928,0.0,0.0,0.0,770),(1310,6037,0.0,0.0,0.0,1844),(1311,5924,0.0,0.0,0.0,770),(1312,6113,0.0,0.0,0.0,765),(1313,6112,0.0,0.0,0.0,765),(1314,6111,0.0,0.0,0.0,765),(1315,6049,0.0,0.0,0.0,765),(1316,5975,0.0,0.0,0.0,765),(1317,5350,30.0,25.0,15.0,1056),(1318,6017,0.0,0.0,0.0,1506),(1319,5915,0.0,0.0,0.0,1320),(1320,5914,0.0,0.0,0.0,1322),(1321,5913,0.0,0.0,0.0,1320),(1322,6031,0.0,0.0,0.0,1320),(1323,5930,0.0,0.0,0.0,1320),(1324,5916,0.0,0.0,0.0,1315),(1325,5284,0.0,0.0,0.0,2550),(1326,6122,46.0,30.0,16.0,1290),(1327,6127,30.0,25.0,15.0,952),(1328,6140,30.0,25.0,15.0,715),(1329,5950,30.0,25.0,15.0,735),(1330,6076,30.0,25.0,15.0,735),(1331,6137,39.0,29.0,17.0,1560),(1332,5854,30.0,25.0,15.0,715),(1333,5906,30.0,25.0,15.0,1335),(1334,5812,30.0,25.0,15.0,1330),(1335,5910,30.0,25.0,15.0,1352),(1336,5917,30.0,25.0,15.0,1344),(1337,5894,30.0,25.0,15.0,1346),(1338,5881,30.0,25.0,15.0,1342),(1339,5893,33.0,26.0,17.0,1436),(1340,6071,33.0,26.0,17.0,790),(1341,6074,33.0,26.0,17.0,790),(1342,6128,46.0,30.0,16.0,2012),(1343,6152,0.0,0.0,0.0,1355),(1344,6145,0.0,0.0,0.0,1370),(1345,6143,0.0,0.0,0.0,840),(1346,6146,0.0,0.0,0.0,785),(1347,6147,0.0,0.0,0.0,825),(1348,6150,0.0,0.0,0.0,825),(1349,6142,0.0,0.0,0.0,825),(1350,6149,0.0,0.0,0.0,815),(1351,6151,0.0,0.0,0.0,825),(1352,6148,0.0,0.0,0.0,820),(1353,6157,30.0,25.0,15.0,930),(1354,6155,46.0,30.0,16.0,1682),(1355,6235,30.0,25.0,15.0,1330),(1356,6234,0.0,0.0,0.0,1130),(1357,6144,0.0,0.0,0.0,714),(1358,6160,0.0,0.0,0.0,1508),(1359,6159,0.0,0.0,0.0,736),(1360,6239,30.0,25.0,15.0,1335),(1361,6251,0.0,0.0,0.0,830),(1362,5912,30.0,25.0,15.0,1325),(1363,6238,30.0,24.0,14.0,930),(1364,6230,0.0,0.0,0.0,825),(1365,6293,46.0,29.0,22.0,2556),(1366,6320,46.0,30.0,16.0,1860),(1367,5940,56.0,29.0,17.0,1922),(1368,3763,43.0,41.0,28.0,3795),(1369,6334,56.0,29.0,17.0,2252),(1370,6311,46.0,30.0,16.0,1866),(1371,5599,0.0,0.0,0.0,1272),(1372,6337,0.0,0.0,0.0,3375),(1373,6315,0.0,0.0,0.0,980),(1374,6300,0.0,0.0,0.0,1360),(1375,6333,0.0,0.0,0.0,706),(1376,6336,0.0,0.0,0.0,1290),(1377,6120,0.0,0.0,0.0,946),(1378,6345,0.0,0.0,0.0,764),(1379,6349,0.0,0.0,0.0,986),(1380,6130,0.0,0.0,0.0,1296),(1381,5960,0.0,0.0,0.0,1390),(1382,6328,0.0,0.0,0.0,990),(1383,6343,0.0,0.0,0.0,1410),(1384,5035,0.0,0.0,0.0,785),(1385,6307,0.0,0.0,0.0,1145),(1386,6314,0.0,0.0,0.0,1122),(1387,6312,0.0,0.0,0.0,1314),(1388,6364,0.0,0.0,0.0,625),(1389,6356,0.0,0.0,0.0,1605),(1390,6359,39.0,29.0,17.0,1516),(1391,6373,30.0,25.0,15.0,696),(1392,4958,0.0,0.0,0.0,2645),(1393,6376,0.0,0.0,0.0,1250),(1394,6368,0.0,0.0,0.0,1050),(1395,6366,0.0,0.0,0.0,635),(1396,6381,0.0,0.0,0.0,1030),(1397,6396,46.0,30.0,16.0,1402),(1398,6387,46.0,29.0,22.0,2004),(1399,6384,30.0,24.0,14.0,920),(1400,6398,30.0,25.0,15.0,738),(1401,6402,46.0,30.0,16.0,1495),(1402,6400,30.0,24.0,14.0,516),(1403,6390,0.0,0.0,0.0,1320),(1404,6391,0.0,0.0,0.0,702),(1405,6434,56.0,29.0,17.0,2020),(1406,6422,30.0,25.0,15.0,680),(1407,6410,30.0,25.0,15.0,734),(1408,6352,30.0,25.0,15.0,682),(1409,6419,30.0,25.0,15.0,700),(1410,6267,30.0,25.0,15.0,1082),(1411,6201,30.0,25.0,15.0,1080),(1412,6200,30.0,25.0,15.0,1082),(1413,6195,30.0,25.0,15.0,1080),(1414,6194,30.0,25.0,15.0,1082),(1415,6193,30.0,25.0,15.0,1042),(1416,6208,30.0,25.0,15.0,1090),(1417,6207,30.0,25.0,15.0,1088),(1418,6206,30.0,25.0,15.0,1094),(1419,6204,30.0,25.0,15.0,1084),(1420,6260,30.0,25.0,15.0,1086),(1421,6259,30.0,25.0,15.0,1094),(1422,6268,30.0,25.0,15.0,1088),(1423,6196,30.0,25.0,15.0,1080),(1424,6197,30.0,25.0,15.0,1082),(1425,6198,30.0,25.0,15.0,1076),(1426,6199,30.0,25.0,15.0,1080),(1427,6183,30.0,25.0,15.0,1086),(1428,6184,30.0,25.0,15.0,1082),(1429,6186,30.0,25.0,15.0,1080),(1430,6190,30.0,25.0,15.0,1084),(1431,6192,30.0,25.0,15.0,1076),(1432,6177,30.0,25.0,15.0,1084),(1433,6178,30.0,25.0,15.0,1082),(1434,6179,30.0,25.0,15.0,1074),(1435,6408,30.0,25.0,15.0,702),(1436,6166,30.0,25.0,15.0,1082),(1437,6167,30.0,25.0,15.0,1080),(1438,6254,0.0,0.0,0.0,1155),(1439,6431,0.0,0.0,0.0,795),(1440,6242,0.0,0.0,0.0,800),(1441,6232,0.0,0.0,0.0,790),(1442,6219,0.0,0.0,0.0,1088),(1443,6361,0.0,0.0,0.0,800),(1444,6332,0.0,0.0,0.0,800),(1445,6248,0.0,0.0,0.0,800),(1446,6162,0.0,0.0,0.0,755),(1447,6417,0.0,0.0,0.0,1320),(1448,6414,0.0,0.0,0.0,1340),(1449,6335,0.0,0.0,0.0,2910),(1450,6231,0.0,0.0,0.0,800),(1451,6427,0.0,0.0,0.0,1150),(1452,6210,0.0,0.0,0.0,1092),(1453,6214,0.0,0.0,0.0,1092),(1454,6215,0.0,0.0,0.0,1082),(1455,6218,0.0,0.0,0.0,1084),(1456,6261,0.0,0.0,0.0,1080),(1457,6262,0.0,0.0,0.0,1080),(1458,6263,0.0,0.0,0.0,1080),(1459,6203,0.0,0.0,0.0,1080),(1460,6170,0.0,0.0,0.0,1080),(1461,6171,0.0,0.0,0.0,1080),(1462,6172,0.0,0.0,0.0,1082),(1463,6173,0.0,0.0,0.0,1080),(1464,6181,0.0,0.0,0.0,1072),(1465,6182,0.0,0.0,0.0,1084),(1466,6174,0.0,0.0,0.0,1080),(1467,6175,0.0,0.0,0.0,1086),(1468,6325,0.0,0.0,0.0,1165),(1469,6265,0.0,0.0,0.0,1086),(1470,6264,0.0,0.0,0.0,1088),(1471,6272,0.0,0.0,0.0,1090),(1472,6273,0.0,0.0,0.0,1092),(1473,6270,0.0,0.0,0.0,1090),(1474,6271,0.0,0.0,0.0,1098),(1475,6278,0.0,0.0,0.0,1092),(1476,6269,0.0,0.0,0.0,1092),(1477,6281,0.0,0.0,0.0,1088),(1478,6288,0.0,0.0,0.0,1092),(1479,6291,0.0,0.0,0.0,1090),(1480,6326,0.0,0.0,0.0,1160),(1481,6385,0.0,0.0,0.0,1160),(1482,6274,0.0,0.0,0.0,1086),(1483,6277,0.0,0.0,0.0,1094),(1484,6276,0.0,0.0,0.0,1086),(1485,6266,0.0,0.0,0.0,1086),(1486,6284,0.0,0.0,0.0,1084),(1487,6283,0.0,0.0,0.0,1090),(1488,6282,0.0,0.0,0.0,1086),(1489,6275,0.0,0.0,0.0,1090),(1490,6253,0.0,0.0,0.0,1094),(1491,6287,0.0,0.0,0.0,1096),(1492,6286,0.0,0.0,0.0,1088),(1493,6285,0.0,0.0,0.0,1090),(1494,6290,0.0,0.0,0.0,1096),(1495,6222,0.0,0.0,0.0,1165),(1496,6223,0.0,0.0,0.0,1165),(1497,6257,0.0,0.0,0.0,1160),(1498,6224,0.0,0.0,0.0,1165),(1499,6225,0.0,0.0,0.0,1160),(1500,6289,0.0,0.0,0.0,1165),(1501,6279,0.0,0.0,0.0,1120),(1502,6256,0.0,0.0,0.0,1155),(1503,6255,0.0,0.0,0.0,1155),(1504,6426,46.0,30.0,16.0,1720),(1505,6236,46.0,30.0,16.0,862),(1506,6441,30.0,25.0,15.0,1104),(1507,6424,30.0,25.0,15.0,884),(1508,1131,30.0,25.0,15.0,1075),(1509,6294,30.0,24.0,14.0,680),(1510,6468,30.0,24.0,14.0,950),(1511,6446,30.0,24.0,14.0,715),(1512,6452,0.0,0.0,0.0,1116),(1513,6449,0.0,0.0,0.0,1458),(1514,6495,0.0,0.0,0.0,684),(1515,6488,0.0,0.0,0.0,720),(1516,6461,0.0,0.0,0.0,682),(1517,6479,0.0,0.0,0.0,1056),(1518,6458,0.0,0.0,0.0,680),(1519,6462,0.0,0.0,0.0,678),(1520,6490,0.0,0.0,0.0,680),(1521,6457,0.0,0.0,0.0,755),(1522,6430,0.0,0.0,0.0,755),(1523,6459,0.0,0.0,0.0,790),(1524,6463,0.0,0.0,0.0,770),(1525,6460,0.0,0.0,0.0,770),(1526,6466,0.0,0.0,0.0,790),(1527,6464,0.0,0.0,0.0,755),(1528,6442,0.0,0.0,0.0,1160),(1529,6465,0.0,0.0,0.0,760),(1530,6448,0.0,0.0,0.0,1075),(1531,6489,0.0,0.0,0.0,706),(1532,6482,0.0,0.0,0.0,682),(1533,6483,0.0,0.0,0.0,1080),(1534,6480,30.0,25.0,15.0,1280),(1535,6565,30.0,25.0,15.0,675),(1536,6014,30.0,25.0,15.0,676),(1537,6310,46.0,30.0,16.0,1832),(1538,6503,0.0,0.0,0.0,1420),(1539,6494,0.0,0.0,0.0,1180),(1540,6553,0.0,0.0,0.0,830),(1541,6563,0.0,0.0,0.0,1140),(1542,6571,0.0,0.0,0.0,1045),(1543,6562,0.0,0.0,0.0,795),(1544,6587,0.0,0.0,0.0,875),(1545,6546,0.0,0.0,0.0,1200),(1546,6576,0.0,0.0,0.0,815),(1547,6413,56.0,29.0,17.0,2220),(1548,6487,0.0,0.0,0.0,516),(1549,6558,34.0,26.0,1.0,136),(1550,6606,46.0,29.0,22.0,2430),(1551,6504,0.0,0.0,0.0,680),(1552,6493,0.0,0.0,0.0,1080),(1553,6589,0.0,0.0,0.0,3550),(1554,6642,34.0,24.0,14.0,728),(1555,6627,46.0,30.0,16.0,1180),(1556,6620,0.0,0.0,0.0,758),(1557,6630,0.0,0.0,0.0,1358),(1558,6617,0.0,0.0,0.0,594),(1559,6322,0.0,0.0,0.0,730),(1560,6644,0.0,0.0,0.0,732),(1561,6621,0.0,0.0,0.0,726),(1562,6577,0.0,0.0,0.0,1832),(1563,6350,0.0,0.0,0.0,1702),(1564,6513,0.0,0.0,0.0,958),(1565,6512,0.0,0.0,0.0,952),(1566,6499,0.0,0.0,0.0,954),(1567,6501,0.0,0.0,0.0,958),(1568,6496,0.0,0.0,0.0,954),(1569,6475,0.0,0.0,0.0,962),(1570,6476,0.0,0.0,0.0,948),(1571,6502,0.0,0.0,0.0,948),(1572,6505,0.0,0.0,0.0,952),(1573,6506,0.0,0.0,0.0,980),(1574,6631,0.0,0.0,0.0,604),(1575,6641,0.0,0.0,0.0,606),(1576,6510,0.0,0.0,0.0,932),(1577,6511,0.0,0.0,0.0,1005),(1578,6514,0.0,0.0,0.0,1005),(1579,6516,0.0,0.0,0.0,1010),(1580,6518,0.0,0.0,0.0,1010),(1581,6519,0.0,0.0,0.0,1015),(1582,6520,0.0,0.0,0.0,1000),(1583,6529,0.0,0.0,0.0,995),(1584,6539,0.0,0.0,0.0,995),(1585,6541,0.0,0.0,0.0,1000),(1586,6530,0.0,0.0,0.0,995),(1587,6531,0.0,0.0,0.0,985),(1588,6532,0.0,0.0,0.0,985),(1589,6533,0.0,0.0,0.0,970),(1590,6593,0.0,0.0,0.0,605),(1591,5678,0.0,0.0,0.0,274),(1592,6538,0.0,0.0,0.0,975),(1593,6537,0.0,0.0,0.0,1688),(1594,6540,0.0,0.0,0.0,974),(1595,6534,0.0,0.0,0.0,976),(1596,6474,0.0,0.0,0.0,1128),(1597,6163,0.0,0.0,0.0,636),(1598,6486,0.0,0.0,0.0,610),(1599,6478,0.0,0.0,0.0,980),(1600,6521,0.0,0.0,0.0,984),(1601,6522,0.0,0.0,0.0,980),(1602,6525,0.0,0.0,0.0,978),(1603,6526,0.0,0.0,0.0,978),(1604,6527,0.0,0.0,0.0,976),(1605,6528,0.0,0.0,0.0,976),(1606,6491,0.0,0.0,0.0,608),(1607,6535,0.0,0.0,0.0,975),(1608,6676,30.0,25.0,15.0,730),(1609,6578,30.0,25.0,15.0,556),(1610,6674,30.0,25.0,15.0,540),(1611,6517,30.0,24.0,14.0,942),(1612,6497,30.0,24.0,14.0,952),(1613,6524,30.0,24.0,14.0,946),(1614,6536,30.0,24.0,14.0,956),(1615,6523,30.0,24.0,14.0,952),(1616,6477,30.0,24.0,14.0,948),(1617,5951,30.0,24.0,14.0,604),(1618,6658,69.0,45.0,21.0,5466),(1619,6690,34.0,24.0,14.0,540),(1620,6509,0.0,0.0,0.0,1025),(1621,6670,0.0,0.0,0.0,745),(1622,6508,0.0,0.0,0.0,1020),(1623,6622,0.0,0.0,0.0,1020),(1624,6692,0.0,0.0,0.0,685),(1625,6688,0.0,0.0,0.0,655),(1626,6689,0.0,0.0,0.0,650),(1627,6659,0.0,0.0,0.0,800),(1628,6706,30.0,25.0,15.0,700),(1629,6710,46.0,30.0,16.0,1706),(1630,6611,0.0,0.0,0.0,1696),(1631,6700,0.0,0.0,0.0,896),(1632,6453,0.0,0.0,0.0,1618),(1633,6713,0.0,0.0,0.0,1164),(1634,6717,0.0,0.0,0.0,1024),(1635,6741,46.0,30.0,16.0,1014),(1636,6738,0.0,0.0,0.0,1908),(1637,6720,0.0,0.0,0.0,2264),(1638,6739,0.0,0.0,0.0,425),(1639,6732,0.0,0.0,0.0,660),(1640,6734,0.0,0.0,0.0,660),(1641,6727,0.0,0.0,0.0,670),(1642,6500,0.0,0.0,0.0,995),(1643,6735,0.0,0.0,0.0,660),(1644,6730,0.0,0.0,0.0,660),(1645,6736,0.0,0.0,0.0,655),(1646,6733,0.0,0.0,0.0,665),(1647,6731,0.0,0.0,0.0,660),(1648,6729,0.0,0.0,0.0,660),(1649,6816,30.0,25.0,15.0,1085),(1650,6811,46.0,30.0,16.0,1762),(1651,6809,30.0,25.0,15.0,1165),(1652,6746,30.0,25.0,15.0,782),(1653,6902,34.0,26.0,1.0,142),(1654,6858,46.0,30.0,16.0,1140),(1655,6042,0.0,0.0,0.0,1428),(1656,6891,0.0,0.0,0.0,2276),(1657,6924,0.0,0.0,0.0,888),(1658,6804,0.0,0.0,0.0,2720),(1659,6878,0.0,0.0,0.0,1145),(1660,6556,0.0,0.0,0.0,1030),(1661,6745,0.0,0.0,0.0,1030),(1662,6867,0.0,0.0,0.0,1030),(1663,6888,0.0,0.0,0.0,785),(1664,6861,0.0,0.0,0.0,505),(1665,6751,0.0,0.0,0.0,580),(1666,6754,0.0,0.0,0.0,1190),(1667,6932,46.0,30.0,16.0,1796),(1668,6939,30.0,25.0,15.0,640),(1669,6949,0.0,0.0,0.0,560),(1670,6950,0.0,0.0,0.0,956),(1671,6959,0.0,0.0,0.0,710),(1672,6970,0.0,0.0,0.0,925),(1673,6955,33.0,26.0,17.0,1670),(1674,6981,30.0,25.0,15.0,1096),(1675,6979,30.0,25.0,15.0,584),(1676,6594,40.0,30.0,16.0,1428),(1677,6957,30.0,25.0,15.0,308),(1678,7015,30.0,25.0,15.0,678),(1679,7013,39.0,29.0,17.0,974),(1680,5018,30.0,25.0,15.0,562),(1681,6711,30.0,25.0,15.0,712),(1682,6987,30.0,25.0,15.0,584),(1683,7045,30.0,25.0,15.0,706),(1684,6990,0.0,0.0,0.0,610),(1685,7006,0.0,0.0,0.0,750),(1686,7020,0.0,0.0,0.0,610),(1687,7026,0.0,0.0,0.0,995),(1688,7030,0.0,0.0,0.0,1970),(1689,7036,30.0,24.0,14.0,544),(1690,7039,30.0,24.0,14.0,398),(1691,7096,30.0,25.0,15.0,535),(1692,7093,30.0,24.0,14.0,666),(1693,7034,30.0,25.0,15.0,730),(1694,7097,36.0,16.0,17.0,875),(1695,6901,39.0,29.0,17.0,1570),(1696,7081,46.0,29.0,22.0,2554),(1697,6810,0.0,0.0,0.0,815),(1698,6929,0.0,0.0,0.0,825),(1699,7019,0.0,0.0,0.0,815),(1700,7048,0.0,0.0,0.0,820),(1701,6807,0.0,0.0,0.0,820),(1702,6815,0.0,0.0,0.0,820),(1703,6903,0.0,0.0,0.0,815),(1704,7105,0.0,0.0,0.0,825),(1705,7106,0.0,0.0,0.0,825),(1706,7109,0.0,0.0,0.0,815),(1707,6801,0.0,0.0,0.0,855),(1708,6911,30.0,24.0,14.0,815),(1709,6768,0.0,0.0,0.0,984),(1710,6908,0.0,0.0,0.0,984),(1711,6780,0.0,0.0,0.0,980),(1712,6782,0.0,0.0,0.0,985),(1713,6784,0.0,0.0,0.0,992),(1714,6783,0.0,0.0,0.0,990),(1715,6785,0.0,0.0,0.0,1000),(1716,6790,0.0,0.0,0.0,990),(1717,6789,0.0,0.0,0.0,984),(1718,6788,0.0,0.0,0.0,1000),(1719,6787,0.0,0.0,0.0,992),(1720,6786,0.0,0.0,0.0,984),(1721,6825,0.0,0.0,0.0,986),(1722,6821,0.0,0.0,0.0,975),(1723,6822,0.0,0.0,0.0,994),(1724,6823,0.0,0.0,0.0,986),(1725,6824,0.0,0.0,0.0,980),(1726,6910,0.0,0.0,0.0,986),(1727,6836,0.0,0.0,0.0,988),(1728,6835,0.0,0.0,0.0,986),(1729,6834,0.0,0.0,0.0,1022),(1730,6833,0.0,0.0,0.0,986),(1731,6826,0.0,0.0,0.0,986),(1732,6827,0.0,0.0,0.0,982),(1733,6828,0.0,0.0,0.0,986),(1734,6843,0.0,0.0,0.0,992),(1735,6854,0.0,0.0,0.0,992),(1736,6796,0.0,0.0,0.0,984),(1737,6798,0.0,0.0,0.0,988),(1738,6772,0.0,0.0,0.0,990),(1739,6771,0.0,0.0,0.0,980),(1740,6769,0.0,0.0,0.0,984),(1741,6770,0.0,0.0,0.0,980),(1742,6794,0.0,0.0,0.0,970),(1743,6793,0.0,0.0,0.0,980),(1744,6792,0.0,0.0,0.0,975),(1745,6759,0.0,0.0,0.0,980),(1746,6791,0.0,0.0,0.0,1015),(1747,6761,0.0,0.0,0.0,984),(1748,6795,0.0,0.0,0.0,982),(1749,6763,0.0,0.0,0.0,1005),(1750,6758,0.0,0.0,0.0,982),(1751,6762,0.0,0.0,0.0,986),(1752,6764,0.0,0.0,0.0,982),(1753,6765,0.0,0.0,0.0,980),(1754,6766,0.0,0.0,0.0,1000),(1755,6767,0.0,0.0,0.0,1010),(1756,6760,0.0,0.0,0.0,988),(1757,6757,0.0,0.0,0.0,992),(1758,6773,0.0,0.0,0.0,980),(1759,6774,0.0,0.0,0.0,992),(1760,6775,0.0,0.0,0.0,990),(1761,6777,0.0,0.0,0.0,980),(1762,6778,0.0,0.0,0.0,990),(1763,6779,0.0,0.0,0.0,984),(1764,6852,0.0,0.0,0.0,988),(1765,6851,0.0,0.0,0.0,990),(1766,6850,0.0,0.0,0.0,984),(1767,6849,0.0,0.0,0.0,976),(1768,6847,0.0,0.0,0.0,982),(1769,6848,0.0,0.0,0.0,982),(1770,6845,0.0,0.0,0.0,986),(1771,6846,0.0,0.0,0.0,988),(1772,6819,0.0,0.0,0.0,986),(1773,6820,0.0,0.0,0.0,980),(1774,6839,0.0,0.0,0.0,988),(1775,6838,0.0,0.0,0.0,984),(1776,6832,0.0,0.0,0.0,986),(1777,6831,0.0,0.0,0.0,984),(1778,6830,0.0,0.0,0.0,980),(1779,6829,0.0,0.0,0.0,984),(1780,6837,0.0,0.0,0.0,986),(1781,6840,0.0,0.0,0.0,988),(1782,6841,0.0,0.0,0.0,986),(1783,6842,0.0,0.0,0.0,978),(1784,6853,0.0,0.0,0.0,990),(1785,6797,0.0,0.0,0.0,984),(1786,6799,0.0,0.0,0.0,990),(1787,6800,0.0,0.0,0.0,1140),(1788,7002,0.0,0.0,0.0,640),(1789,7066,0.0,0.0,0.0,726),(1790,7063,0.0,0.0,0.0,1202),(1791,7049,46.0,29.0,22.0,2306),(1792,6844,30.0,25.0,15.0,986),(1793,6575,30.0,25.0,15.0,736),(1794,7129,30.0,25.0,15.0,710),(1795,6803,30.0,25.0,15.0,760),(1796,7113,30.0,25.0,15.0,740),(1797,7111,0.0,0.0,0.0,484),(1798,7126,0.0,0.0,0.0,568),(1799,7122,46.0,29.0,22.0,1976),(1800,7140,30.0,25.0,15.0,976),(1801,7141,0.0,0.0,0.0,1255),(1802,7153,46.0,29.0,22.0,2094),(1803,7156,0.0,0.0,0.0,745),(1804,7157,0.0,0.0,0.0,745),(1805,7160,0.0,0.0,0.0,742),(1806,7161,0.0,0.0,0.0,748),(1807,7159,0.0,0.0,0.0,746),(1808,7162,0.0,0.0,0.0,765),(1809,7150,0.0,0.0,0.0,745),(1810,7158,0.0,0.0,0.0,1180),(1811,7155,0.0,0.0,0.0,744),(1812,7154,0.0,0.0,0.0,782),(1813,7170,0.0,0.0,0.0,746),(1814,7142,46.0,29.0,22.0,2314),(1815,4670,46.0,29.0,22.0,2102),(1816,7104,33.0,25.0,11.0,372),(1817,7144,46.0,29.0,22.0,1956),(1818,7183,34.0,24.0,14.0,728),(1819,7198,30.0,25.0,15.0,962),(1820,6776,30.0,24.0,14.0,968),(1821,7199,0.0,0.0,0.0,1782),(1822,6965,0.0,0.0,0.0,422),(1823,7208,34.0,26.0,1.0,218),(1824,7213,30.0,25.0,15.0,738),(1825,7209,0.0,0.0,0.0,1116),(1826,7258,0.0,0.0,0.0,970),(1827,7268,0.0,0.0,0.0,1034),(1828,7270,30.0,25.0,15.0,740),(1829,7275,30.0,25.0,15.0,736),(1830,7314,46.0,29.0,22.0,1874),(1831,7323,30.0,25.0,15.0,960),(1832,7295,39.0,29.0,17.0,1445),(1833,7293,46.0,29.0,22.0,1994),(1834,7298,30.0,25.0,15.0,1116),(1835,7220,30.0,25.0,15.0,916),(1836,7285,30.0,25.0,15.0,708),(1837,7328,39.0,29.0,17.0,1428),(1838,7306,33.0,25.0,11.0,554),(1839,7350,30.0,25.0,15.0,1152),(1840,7343,60.0,46.0,31.0,6780),(1841,7340,30.0,24.0,14.0,638),(1842,7354,0.0,0.0,0.0,926),(1843,7364,30.0,25.0,15.0,1104),(1844,7369,0.0,0.0,0.0,955),(1845,7362,30.0,25.0,15.0,3905),(1846,7375,30.0,25.0,15.0,352),(1847,7025,0.0,0.0,0.0,700),(1848,6699,30.0,25.0,15.0,610),(1849,7334,33.0,26.0,17.0,1504),(1850,7383,69.0,45.0,21.0,3270),(1851,7382,0.0,0.0,0.0,704),(1852,7402,0.0,0.0,0.0,2236),(1853,7392,0.0,0.0,0.0,744),(1854,7418,56.0,29.0,17.0,1835),(1855,7423,0.0,0.0,0.0,840),(1856,7414,0.0,0.0,0.0,845),(1857,6663,0.0,0.0,0.0,940),(1858,7152,0.0,0.0,0.0,940),(1859,7135,0.0,0.0,0.0,960),(1860,7312,0.0,0.0,0.0,940),(1861,7319,0.0,0.0,0.0,945),(1862,7366,0.0,0.0,0.0,960),(1863,7377,0.0,0.0,0.0,955),(1864,7389,0.0,0.0,0.0,960),(1865,6755,0.0,0.0,0.0,955),(1866,7169,0.0,0.0,0.0,955),(1867,7168,0.0,0.0,0.0,950),(1868,6660,0.0,0.0,0.0,950),(1869,6953,0.0,0.0,0.0,960),(1870,6941,0.0,0.0,0.0,950),(1871,6967,0.0,0.0,0.0,960),(1872,6685,0.0,0.0,0.0,950),(1873,6559,0.0,0.0,0.0,945),(1874,6569,0.0,0.0,0.0,950),(1875,6582,0.0,0.0,0.0,960),(1876,6584,0.0,0.0,0.0,980),(1877,6580,0.0,0.0,0.0,995),(1878,6898,0.0,0.0,0.0,890),(1879,6921,0.0,0.0,0.0,865),(1880,6948,0.0,0.0,0.0,862),(1881,6963,0.0,0.0,0.0,896),(1882,6974,0.0,0.0,0.0,894),(1883,7024,0.0,0.0,0.0,906),(1884,7117,0.0,0.0,0.0,896),(1885,7164,0.0,0.0,0.0,900),(1886,7184,0.0,0.0,0.0,880),(1887,7235,30.0,25.0,15.0,1134),(1888,7349,30.0,25.0,15.0,1142),(1889,7191,30.0,25.0,15.0,1140),(1890,7242,30.0,25.0,15.0,1130),(1891,7266,30.0,25.0,15.0,702),(1892,7244,30.0,25.0,15.0,1140),(1893,7250,30.0,25.0,15.0,1162),(1894,7455,34.0,26.0,1.0,146),(1895,6581,0.0,0.0,0.0,950),(1896,6596,0.0,0.0,0.0,950),(1897,6605,0.0,0.0,0.0,960),(1898,6613,0.0,0.0,0.0,960),(1899,6992,0.0,0.0,0.0,965),(1900,6618,0.0,0.0,0.0,960),(1901,6624,0.0,0.0,0.0,955),(1902,6813,0.0,0.0,0.0,965),(1903,6856,0.0,0.0,0.0,960),(1904,6866,0.0,0.0,0.0,955),(1905,6875,0.0,0.0,0.0,955),(1906,6905,0.0,0.0,0.0,955),(1907,7132,0.0,0.0,0.0,965),(1908,7119,0.0,0.0,0.0,965),(1909,7085,0.0,0.0,0.0,950),(1910,6585,0.0,0.0,0.0,960),(1911,7016,0.0,0.0,0.0,945),(1912,7059,0.0,0.0,0.0,950),(1913,7046,0.0,0.0,0.0,960),(1914,7012,0.0,0.0,0.0,970),(1915,7224,0.0,0.0,0.0,1138),(1916,7251,0.0,0.0,0.0,1136),(1917,7253,0.0,0.0,0.0,1138),(1918,7434,0.0,0.0,0.0,1138),(1919,7236,0.0,0.0,0.0,1140),(1920,7241,0.0,0.0,0.0,1164),(1921,7223,0.0,0.0,0.0,1140),(1922,7222,0.0,0.0,0.0,1140),(1923,7252,0.0,0.0,0.0,1136),(1924,7255,0.0,0.0,0.0,1136),(1925,7192,0.0,0.0,0.0,1140),(1926,7237,0.0,0.0,0.0,1140),(1927,7238,0.0,0.0,0.0,1134),(1928,7239,0.0,0.0,0.0,1136),(1929,7240,0.0,0.0,0.0,1140),(1930,6647,0.0,0.0,0.0,910),(1931,7247,0.0,0.0,0.0,1140),(1932,7248,0.0,0.0,0.0,1132),(1933,7249,0.0,0.0,0.0,1136),(1934,7233,0.0,0.0,0.0,1136),(1935,7256,0.0,0.0,0.0,1142),(1936,7163,0.0,0.0,0.0,1154),(1937,7230,0.0,0.0,0.0,1144),(1938,7229,0.0,0.0,0.0,1140),(1939,7228,0.0,0.0,0.0,1140),(1940,7226,0.0,0.0,0.0,1145),(1941,7407,0.0,0.0,0.0,1144),(1942,7232,0.0,0.0,0.0,1142),(1943,7231,0.0,0.0,0.0,1148),(1944,7246,0.0,0.0,0.0,1146),(1945,6740,0.0,0.0,0.0,910),(1946,6639,0.0,0.0,0.0,922),(1947,6646,0.0,0.0,0.0,890),(1948,6668,0.0,0.0,0.0,905),(1949,6588,0.0,0.0,0.0,896),(1950,6590,0.0,0.0,0.0,880),(1951,6665,0.0,0.0,0.0,910),(1952,6871,0.0,0.0,0.0,856),(1953,6725,0.0,0.0,0.0,900),(1954,7515,46.0,30.0,16.0,1644),(1955,7443,0.0,0.0,0.0,912),(1956,6925,0.0,0.0,0.0,902),(1957,6916,0.0,0.0,0.0,870),(1958,7262,0.0,0.0,0.0,890),(1959,6549,0.0,0.0,0.0,894),(1960,7492,0.0,0.0,0.0,556),(1961,6753,0.0,0.0,0.0,980),(1962,7342,0.0,0.0,0.0,935),(1963,7368,0.0,0.0,0.0,940),(1964,7380,0.0,0.0,0.0,936),(1965,7427,0.0,0.0,0.0,926),(1966,6984,0.0,0.0,0.0,930),(1967,6983,0.0,0.0,0.0,918),(1968,6940,0.0,0.0,0.0,916),(1969,7426,0.0,0.0,0.0,960),(1970,7425,0.0,0.0,0.0,956),(1971,7442,0.0,0.0,0.0,930),(1972,7269,0.0,0.0,0.0,988),(1973,6972,0.0,0.0,0.0,950),(1974,7360,0.0,0.0,0.0,960),(1975,7011,0.0,0.0,0.0,962),(1976,7467,0.0,0.0,0.0,522),(1977,7487,0.0,0.0,0.0,524),(1978,7489,0.0,0.0,0.0,1706),(1979,7490,0.0,0.0,0.0,1954),(1980,7254,0.0,0.0,0.0,1194),(1981,7441,0.0,0.0,0.0,682),(1982,7438,0.0,0.0,0.0,1142),(1983,7488,0.0,0.0,0.0,982),(1984,7303,0.0,0.0,0.0,715),(1985,7283,0.0,0.0,0.0,705),(1986,6473,0.0,0.0,0.0,706),(1987,7483,0.0,0.0,0.0,900),(1988,7211,0.0,0.0,0.0,704),(1989,7493,0.0,0.0,0.0,710),(1990,7308,0.0,0.0,0.0,705),(1991,7185,0.0,0.0,0.0,1140),(1992,7219,0.0,0.0,0.0,1124),(1993,7217,0.0,0.0,0.0,1130),(1994,7245,0.0,0.0,0.0,1166),(1995,6938,0.0,0.0,0.0,914),(1996,6977,0.0,0.0,0.0,902),(1997,6969,0.0,0.0,0.0,904),(1998,6946,0.0,0.0,0.0,904),(1999,7202,0.0,0.0,0.0,904),(2000,6906,0.0,0.0,0.0,912),(2001,7137,0.0,0.0,0.0,858),(2002,7103,0.0,0.0,0.0,908),(2003,7358,0.0,0.0,0.0,908),(2004,7051,0.0,0.0,0.0,914),(2005,7278,0.0,0.0,0.0,914),(2006,7047,0.0,0.0,0.0,926),(2007,7181,0.0,0.0,0.0,906),(2008,7084,0.0,0.0,0.0,916),(2009,7060,0.0,0.0,0.0,906),(2010,7221,0.0,0.0,0.0,1134),(2011,7218,0.0,0.0,0.0,1134),(2012,7216,0.0,0.0,0.0,1140),(2013,7188,0.0,0.0,0.0,1130),(2014,7243,0.0,0.0,0.0,1144),(2015,7491,0.0,0.0,0.0,536),(2016,7446,0.0,0.0,0.0,5445),(2017,7564,0.0,0.0,0.0,1150),(2018,7562,0.0,0.0,0.0,706),(2019,7566,0.0,0.0,0.0,704),(2020,7567,0.0,0.0,0.0,706),(2021,7563,0.0,0.0,0.0,704),(2022,7558,0.0,0.0,0.0,706),(2023,7559,0.0,0.0,0.0,700),(2024,7565,0.0,0.0,0.0,705),(2025,7561,0.0,0.0,0.0,832),(2026,7560,0.0,0.0,0.0,700),(2027,7554,36.0,16.5,17.0,718),(2028,7540,0.0,0.0,0.0,1515),(2029,7523,0.0,0.0,0.0,1180),(2030,7539,0.0,0.0,0.0,706),(2031,7225,0.0,0.0,0.0,1144),(2032,7534,0.0,0.0,0.0,444),(2033,6360,0.0,0.0,0.0,1085),(2034,7479,30.0,25.0,15.0,768),(2035,7542,30.0,25.0,15.0,966),(2036,7535,46.0,29.0,22.0,2656),(2037,7588,46.0,29.0,22.0,2266),(2038,7579,0.0,0.0,0.0,5265),(2039,7582,0.0,0.0,0.0,810),(2040,7585,0.0,0.0,0.0,475),(2041,7575,0.0,0.0,0.0,475),(2042,7584,0.0,0.0,0.0,840),(2043,7587,0.0,0.0,0.0,2630),(2044,7642,33.0,25.0,11.0,678),(2045,7663,30.0,24.0,14.0,1222),(2046,7665,1.0,1.0,1.0,890),(2047,7656,1.0,1.0,1.0,830),(2048,7655,1.0,1.0,1.0,1070),(2049,7653,1.0,1.0,1.0,505),(2050,7741,30.0,25.0,15.0,545),(2051,7737,30.0,25.0,15.0,700),(2052,7738,1.0,1.0,1.0,2122),(2053,7746,1.0,1.0,1.0,360),(2054,7112,30.0,25.0,15.0,890),(2055,7041,30.0,25.0,15.0,902),(2056,7475,30.0,24.0,14.0,766),(2057,7498,30.0,25.0,15.0,802),(2058,7519,33.0,25.0,11.0,810),(2059,6681,33.0,25.0,11.0,940),(2060,7299,30.0,24.0,14.0,970),(2061,7671,30.0,24.0,14.0,860),(2062,7771,1.0,1.0,1.0,382),(2063,7073,1.0,1.0,1.0,910),(2064,7058,1.0,1.0,1.0,882),(2065,6896,1.0,1.0,1.0,960),(2066,6863,1.0,1.0,1.0,906),(2067,7773,1.0,1.0,1.0,1115),(2068,7765,1.0,1.0,1.0,2010),(2069,7408,1.0,1.0,1.0,926),(2070,7573,1.0,1.0,1.0,914),(2071,7148,1.0,1.0,1.0,876),(2072,6632,1.0,1.0,1.0,816),(2073,7130,1.0,1.0,1.0,910),(2074,7115,1.0,1.0,1.0,906),(2075,7035,1.0,1.0,1.0,894),(2076,7531,1.0,1.0,1.0,888),(2077,7528,1.0,1.0,1.0,1128),(2078,7461,1.0,1.0,1.0,890),(2079,7511,1.0,1.0,1.0,932),(2080,7512,1.0,1.0,1.0,1045),(2081,7288,1.0,1.0,1.0,906),(2082,7309,1.0,1.0,1.0,908),(2083,7353,1.0,1.0,1.0,935),(2084,7412,1.0,1.0,1.0,918),(2085,7419,1.0,1.0,1.0,926),(2086,7576,1.0,1.0,1.0,888),(2087,7430,1.0,1.0,1.0,930),(2088,7433,1.0,1.0,1.0,940),(2089,7437,1.0,1.0,1.0,936),(2090,7344,1.0,1.0,1.0,884),(2091,7495,1.0,1.0,1.0,904),(2092,7507,1.0,1.0,1.0,924),(2093,7640,1.0,1.0,1.0,870),(2094,7592,1.0,1.0,1.0,384),(2095,7766,1.0,1.0,1.0,910),(2096,7718,1.0,1.0,1.0,640),(2097,7661,1.0,1.0,1.0,880),(2098,7760,1.0,1.0,1.0,850),(2099,7758,1.0,1.0,1.0,860),(2100,7742,1.0,1.0,1.0,884),(2101,7739,1.0,1.0,1.0,894),(2102,7731,1.0,1.0,1.0,890),(2103,7072,1.0,1.0,1.0,880),(2104,7053,1.0,1.0,1.0,902),(2105,6883,1.0,1.0,1.0,876),(2106,6737,1.0,1.0,1.0,858),(2107,7521,1.0,1.0,1.0,882),(2108,7520,1.0,1.0,1.0,878),(2109,7500,1.0,1.0,1.0,856),(2110,7496,1.0,1.0,1.0,866),(2111,7505,1.0,1.0,1.0,876),(2112,7527,1.0,1.0,1.0,772),(2113,7578,1.0,1.0,1.0,980),(2114,7571,1.0,1.0,1.0,870),(2115,7557,1.0,1.0,1.0,862),(2116,7555,1.0,1.0,1.0,880),(2117,7468,1.0,1.0,1.0,862),(2118,7273,1.0,1.0,1.0,902),(2119,7329,1.0,1.0,1.0,710),(2120,7456,1.0,1.0,1.0,882),(2121,7458,1.0,1.0,1.0,862),(2122,7537,1.0,1.0,1.0,878),(2123,7465,1.0,1.0,1.0,862),(2124,7341,1.0,1.0,1.0,852),(2125,7289,1.0,1.0,1.0,900),(2126,7464,1.0,1.0,1.0,850),(2127,7167,1.0,1.0,1.0,884),(2128,7502,1.0,1.0,1.0,860),(2129,7508,1.0,1.0,1.0,970),(2130,7472,1.0,1.0,1.0,1246),(2131,7645,1.0,1.0,1.0,860),(2132,7744,1.0,1.0,1.0,428),(2133,7750,1.0,1.0,1.0,856),(2134,7756,1.0,1.0,1.0,856),(2135,7667,1.0,1.0,1.0,854),(2136,7823,0.0,0.0,0.0,1055),(2137,7819,0.0,0.0,0.0,855),(2138,7814,0.0,0.0,0.0,560),(2139,7797,0.0,0.0,0.0,815),(2140,7801,0.0,0.0,0.0,895),(2141,7769,0.0,0.0,0.0,1005),(2142,7785,0.0,0.0,0.0,845),(2143,6870,0.0,0.0,0.0,795),(2144,6392,0.0,0.0,0.0,895),(2145,7802,0.0,0.0,0.0,970),(2146,7796,30.0,25.0,15.0,674),(2147,7825,30.0,25.0,15.0,856),(2148,7594,0.0,0.0,0.0,1175),(2149,7595,0.0,0.0,0.0,1175),(2150,7596,0.0,0.0,0.0,1180),(2151,7597,0.0,0.0,0.0,1175),(2152,7598,0.0,0.0,0.0,1170),(2153,7599,0.0,0.0,0.0,1205),(2154,7600,0.0,0.0,0.0,1170),(2155,7601,0.0,0.0,0.0,1180),(2156,7602,0.0,0.0,0.0,1170),(2157,7604,0.0,0.0,0.0,1210),(2158,7606,0.0,0.0,0.0,1175),(2159,7607,0.0,0.0,0.0,1175),(2160,7608,0.0,0.0,0.0,1170),(2161,7609,0.0,0.0,0.0,1175),(2162,7610,0.0,0.0,0.0,1185),(2163,7611,0.0,0.0,0.0,1180),(2164,7614,0.0,0.0,0.0,1175),(2165,7615,0.0,0.0,0.0,1170),(2166,7616,0.0,0.0,0.0,1180),(2167,7617,0.0,0.0,0.0,1175),(2168,7100,0.0,0.0,0.0,1835),(2169,7647,0.0,0.0,0.0,1815),(2170,7829,0.0,0.0,0.0,1190),(2171,7593,0.0,0.0,0.0,1215),(2172,7805,0.0,0.0,0.0,1215),(2173,7768,0.0,0.0,0.0,1210),(2174,7717,30.0,24.0,14.0,815),(2175,7831,0.0,0.0,0.0,815),(2176,7304,0.0,0.0,0.0,780),(2177,7748,0.0,0.0,0.0,815),(2178,7799,0.0,0.0,0.0,820),(2179,7800,0.0,0.0,0.0,815),(2180,7747,0.0,0.0,0.0,820),(2181,7735,0.0,0.0,0.0,820),(2182,7713,0.0,0.0,0.0,815),(2183,7708,0.0,0.0,0.0,815),(2184,7650,0.0,0.0,0.0,810),(2185,7666,0.0,0.0,0.0,810),(2186,7755,0.0,0.0,0.0,815),(2187,7754,0.0,0.0,0.0,810),(2188,7699,0.0,0.0,0.0,1160),(2189,7697,0.0,0.0,0.0,1165),(2190,7696,0.0,0.0,0.0,1175),(2191,7705,0.0,0.0,0.0,1175),(2192,7704,0.0,0.0,0.0,1175),(2193,7703,0.0,0.0,0.0,1175),(2194,7702,0.0,0.0,0.0,1180),(2195,7701,0.0,0.0,0.0,1170),(2196,7707,0.0,0.0,0.0,1175),(2197,7706,0.0,0.0,0.0,1175),(2198,7863,46.0,30.0,16.0,1918),(2199,7850,46.0,30.0,16.0,1580),(2200,4345,30.0,25.0,15.0,708),(2201,7867,30.0,25.0,15.0,1024),(2202,7622,0.0,0.0,0.0,1170),(2203,7623,0.0,0.0,0.0,1175),(2204,7625,0.0,0.0,0.0,1170),(2205,7626,0.0,0.0,0.0,1175),(2206,7627,0.0,0.0,0.0,1180),(2207,7628,0.0,0.0,0.0,1180),(2208,7629,0.0,0.0,0.0,1170),(2209,7630,0.0,0.0,0.0,1185),(2210,7631,0.0,0.0,0.0,1170),(2211,7621,0.0,0.0,0.0,1180),(2212,7680,0.0,0.0,0.0,1205),(2213,7686,0.0,0.0,0.0,1180),(2214,7685,0.0,0.0,0.0,1175),(2215,7684,0.0,0.0,0.0,1180),(2216,7683,0.0,0.0,0.0,1175),(2217,7682,0.0,0.0,0.0,1175),(2218,7632,0.0,0.0,0.0,1175),(2219,7681,0.0,0.0,0.0,1175),(2220,7636,0.0,0.0,0.0,1175),(2221,7635,0.0,0.0,0.0,1180),(2222,7634,0.0,0.0,0.0,1180),(2223,7633,0.0,0.0,0.0,1175),(2224,7637,0.0,0.0,0.0,1180),(2225,7672,0.0,0.0,0.0,1180),(2226,7675,0.0,0.0,0.0,1180),(2227,7674,0.0,0.0,0.0,1180),(2228,7619,0.0,0.0,0.0,1185),(2229,7620,0.0,0.0,0.0,1180),(2230,7855,0.0,0.0,0.0,772),(2231,7838,0.0,0.0,0.0,494),(2232,7832,0.0,0.0,0.0,918),(2233,7431,0.0,0.0,0.0,678),(2234,7504,0.0,0.0,0.0,720),(2235,7470,0.0,0.0,0.0,680),(2236,7836,0.0,0.0,0.0,878),(2237,7524,0.0,0.0,0.0,722),(2238,7759,0.0,0.0,0.0,718),(2239,7517,0.0,0.0,0.0,654),(2240,7848,0.0,0.0,0.0,2330),(2241,7860,0.0,0.0,0.0,2060),(2242,7379,0.0,0.0,0.0,950),(2243,7844,0.0,0.0,0.0,870),(2244,7691,0.0,0.0,0.0,1185),(2245,7690,0.0,0.0,0.0,1180),(2246,7689,0.0,0.0,0.0,1190),(2247,7688,0.0,0.0,0.0,1180),(2248,7687,0.0,0.0,0.0,1185),(2249,7695,0.0,0.0,0.0,1175),(2250,7694,0.0,0.0,0.0,1180),(2251,7693,0.0,0.0,0.0,1175),(2252,7692,0.0,0.0,0.0,1180),(2253,7700,0.0,0.0,0.0,1180),(2254,7673,0.0,0.0,0.0,1180),(2255,7679,0.0,0.0,0.0,1215),(2256,7678,0.0,0.0,0.0,1190),(2257,7677,0.0,0.0,0.0,1230),(2258,8129,33.0,26.0,17.0,1520),(2259,8115,46.0,30.0,16.0,1446),(2260,8094,46.0,30.0,16.0,1752),(2261,8099,30.0,24.0,14.0,732),(2262,8127,33.0,25.0,11.0,694),(2263,7775,46.0,30.0,16.0,1760),(2264,7712,30.0,25.0,15.0,740),(2265,7651,30.0,25.0,15.0,750),(2266,7866,30.0,25.0,15.0,726),(2267,7698,30.0,25.0,15.0,1122),(2268,7807,30.0,25.0,15.0,1124),(2269,7761,30.0,25.0,15.0,1116),(2270,7102,30.0,25.0,15.0,754),(2271,8125,0.0,0.0,0.0,1830),(2272,7355,0.0,0.0,0.0,1200),(2273,8130,0.0,0.0,0.0,1205),(2274,8123,0.0,0.0,0.0,675),(2275,8087,0.0,0.0,0.0,965),(2276,8112,0.0,0.0,0.0,985),(2277,8083,0.0,0.0,0.0,965),(2278,8110,0.0,0.0,0.0,720),(2279,8118,0.0,0.0,0.0,970),(2280,8050,0.0,0.0,0.0,565),(2281,8128,0.0,0.0,0.0,825),(2282,8124,0.0,0.0,0.0,825),(2283,8122,0.0,0.0,0.0,825),(2284,8046,0.0,0.0,0.0,1190),(2285,7995,0.0,0.0,0.0,1185),(2286,7976,0.0,0.0,0.0,1235),(2287,8081,0.0,0.0,0.0,830),(2288,8093,0.0,0.0,0.0,840),(2289,8116,0.0,0.0,0.0,1190),(2290,7416,0.0,0.0,0.0,1035),(2291,7581,0.0,0.0,0.0,1190),(2292,8096,0.0,0.0,0.0,815),(2293,8085,0.0,0.0,0.0,1225),(2294,8090,0.0,0.0,0.0,820),(2295,8095,0.0,0.0,0.0,815),(2296,8100,0.0,0.0,0.0,825),(2297,4775,30.0,25.0,15.0,815),(2298,8107,33.0,26.0,11.0,1040),(2299,8133,30.0,25.0,15.0,1316),(2300,8148,30.0,25.0,15.0,880),(2301,8151,30.0,25.0,15.0,1070),(2302,8114,30.0,25.0,15.0,708),(2303,8154,30.0,25.0,15.0,722),(2304,8149,30.0,25.0,15.0,906),(2305,8228,0.0,0.0,0.0,810),(2306,8231,0.0,0.0,0.0,825),(2307,8232,0.0,0.0,0.0,825),(2308,8227,0.0,0.0,0.0,825),(2309,8202,0.0,0.0,0.0,820),(2310,8230,0.0,0.0,0.0,820),(2311,8192,0.0,0.0,0.0,825),(2312,8229,0.0,0.0,0.0,830),(2313,8159,0.0,0.0,0.0,1120),(2314,8163,0.0,0.0,0.0,552),(2315,7749,0.0,0.0,0.0,1990),(2316,8147,0.0,0.0,0.0,1190),(2317,8143,0.0,0.0,0.0,935),(2318,8237,0.0,0.0,0.0,1175),(2319,8261,46.0,30.0,16.0,1886),(2320,8257,30.0,25.0,15.0,1142),(2321,8244,60.0,47.0,33.0,6495),(2322,8236,0.0,0.0,0.0,1152),(2323,8153,30.0,25.0,15.0,924),(2324,8250,30.0,25.0,15.0,730),(2325,8248,30.0,25.0,15.0,730),(2326,8241,30.0,24.0,14.0,790),(2327,8333,30.0,24.0,6.0,366),(2328,8334,39.0,29.0,17.0,1744),(2329,8330,30.0,25.0,15.0,856),(2330,8336,30.0,25.0,15.0,1126),(2331,8284,30.0,25.0,15.0,1126),(2332,8275,30.0,25.0,15.0,1060),(2333,8271,39.0,29.0,17.0,1688),(2334,8274,30.0,25.0,15.0,758),(2335,8368,46.0,29.0,22.0,1800),(2336,8370,30.0,25.0,15.0,746),(2337,8260,39.0,29.0,17.0,1012),(2338,8406,30.0,24.0,6.0,570),(2339,8350,33.0,25.0,15.0,650),(2340,8407,30.0,25.0,15.0,724),(2341,8408,30.0,24.0,6.0,862),(2342,8347,30.0,24.0,6.0,704),(2343,8254,0.0,0.0,0.0,1126),(2344,8345,0.0,0.0,0.0,1362),(2345,8374,0.0,0.0,0.0,1124),(2346,8371,0.0,0.0,0.0,970),(2347,8372,0.0,0.0,0.0,1150),(2348,8343,0.0,0.0,0.0,1368),(2349,8383,0.0,0.0,0.0,1756),(2350,8346,0.0,0.0,0.0,2686),(2351,8409,0.0,0.0,0.0,780),(2352,8349,0.0,0.0,0.0,946),(2353,8360,0.0,0.0,0.0,950),(2354,8375,0.0,0.0,0.0,2660),(2355,8410,0.0,0.0,0.0,908),(2356,8359,0.0,0.0,0.0,924),(2357,8366,0.0,0.0,0.0,862),(2358,8355,0.0,0.0,0.0,828),(2359,8364,0.0,0.0,0.0,948),(2360,8365,0.0,0.0,0.0,900),(2361,6673,0.0,0.0,0.0,2652),(2362,8415,0.0,0.0,0.0,1368),(2363,5926,0.0,0.0,0.0,1160),(2364,8417,0.0,0.0,0.0,280),(2365,8428,0.0,0.0,0.0,1175),(2366,8431,0.0,0.0,0.0,835),(2367,8430,0.0,0.0,0.0,810),(2368,8424,0.0,0.0,0.0,1065),(2369,6570,30.0,25.0,15.0,1250),(2370,8078,30.0,24.0,6.0,590),(2371,8052,30.0,24.0,6.0,590),(2372,8451,30.0,24.0,6.0,310),(2373,8453,30.0,25.0,15.0,718),(2374,8439,30.0,25.0,15.0,1364),(2375,8456,46.0,30.0,16.0,1726),(2376,8447,33.0,25.0,11.0,996),(2377,8463,30.0,25.0,15.0,1070),(2378,8434,0.0,0.0,0.0,2515),(2379,8135,0.0,0.0,0.0,605),(2380,8443,0.0,0.0,0.0,810),(2381,8449,0.0,0.0,0.0,810),(2382,8075,0.0,0.0,0.0,578),(2383,8070,0.0,0.0,0.0,584),(2384,8069,0.0,0.0,0.0,584),(2385,8077,0.0,0.0,0.0,588),(2386,8010,0.0,0.0,0.0,560),(2387,8061,0.0,0.0,0.0,572),(2388,8060,0.0,0.0,0.0,576),(2389,8065,0.0,0.0,0.0,578),(2390,8048,0.0,0.0,0.0,572),(2391,8071,0.0,0.0,0.0,584),(2392,8072,0.0,0.0,0.0,576),(2393,8076,0.0,0.0,0.0,570),(2394,8067,0.0,0.0,0.0,576),(2395,8051,0.0,0.0,0.0,580),(2396,8049,0.0,0.0,0.0,570),(2397,8058,0.0,0.0,0.0,574),(2398,7985,0.0,0.0,0.0,570),(2399,7987,0.0,0.0,0.0,586),(2400,7990,0.0,0.0,0.0,574),(2401,7993,0.0,0.0,0.0,592),(2402,7709,0.0,0.0,0.0,586),(2403,7984,0.0,0.0,0.0,544),(2404,7982,0.0,0.0,0.0,552),(2405,7981,0.0,0.0,0.0,544),(2406,7980,0.0,0.0,0.0,534),(2407,8074,0.0,0.0,0.0,532),(2408,8467,0.0,0.0,0.0,888),(2409,8059,0.0,0.0,0.0,540),(2410,8062,0.0,0.0,0.0,536),(2411,8063,0.0,0.0,0.0,558),(2412,8064,0.0,0.0,0.0,532),(2413,8066,0.0,0.0,0.0,538),(2414,8068,0.0,0.0,0.0,542),(2415,8047,0.0,0.0,0.0,548),(2416,8053,0.0,0.0,0.0,542),(2417,8054,0.0,0.0,0.0,564),(2418,8056,0.0,0.0,0.0,570),(2419,8057,0.0,0.0,0.0,572),(2420,7986,0.0,0.0,0.0,544),(2421,7989,0.0,0.0,0.0,542),(2422,7991,0.0,0.0,0.0,540),(2423,7994,0.0,0.0,0.0,550),(2424,7977,0.0,0.0,0.0,544),(2425,8042,0.0,0.0,0.0,550),(2426,8043,0.0,0.0,0.0,538),(2427,8044,0.0,0.0,0.0,544),(2428,8045,0.0,0.0,0.0,536),(2429,8120,0.0,0.0,0.0,550),(2430,7979,0.0,0.0,0.0,550),(2431,8361,0.0,0.0,0.0,536),(2432,8392,0.0,0.0,0.0,352),(2433,8399,0.0,0.0,0.0,352),(2434,8055,0.0,0.0,0.0,576),(2435,7997,0.0,0.0,0.0,578),(2436,8146,0.0,0.0,0.0,542),(2437,8026,0.0,0.0,0.0,560),(2438,8442,0.0,0.0,0.0,2440),(2439,8444,0.0,0.0,0.0,770),(2440,8006,0.0,0.0,0.0,552),(2441,8005,0.0,0.0,0.0,532),(2442,7998,0.0,0.0,0.0,548),(2443,8000,0.0,0.0,0.0,550),(2444,8012,0.0,0.0,0.0,558),(2445,8014,0.0,0.0,0.0,546),(2446,8017,0.0,0.0,0.0,558),(2447,8021,0.0,0.0,0.0,552),(2448,8024,0.0,0.0,0.0,550),(2449,8037,0.0,0.0,0.0,542),(2450,8034,0.0,0.0,0.0,550),(2451,8030,0.0,0.0,0.0,544),(2452,8028,0.0,0.0,0.0,578),(2453,8002,0.0,0.0,0.0,568),(2454,7996,0.0,0.0,0.0,578),(2455,8121,0.0,0.0,0.0,572),(2456,8079,0.0,0.0,0.0,594),(2457,8009,0.0,0.0,0.0,578),(2458,8011,0.0,0.0,0.0,586),(2459,8004,0.0,0.0,0.0,582),(2460,8003,0.0,0.0,0.0,572),(2461,8027,0.0,0.0,0.0,588),(2462,8001,0.0,0.0,0.0,590),(2463,8013,0.0,0.0,0.0,584),(2464,8015,0.0,0.0,0.0,574),(2465,8019,0.0,0.0,0.0,588),(2466,8020,0.0,0.0,0.0,576),(2467,8041,0.0,0.0,0.0,576),(2468,8040,0.0,0.0,0.0,576),(2469,8036,0.0,0.0,0.0,584),(2470,7780,0.0,0.0,0.0,576),(2471,8035,0.0,0.0,0.0,580),(2472,8032,0.0,0.0,0.0,574),(2473,8073,0.0,0.0,0.0,592),(2474,8475,0.0,0.0,0.0,2000),(2475,7772,33.0,25.0,15.0,1130),(2476,8479,30.0,25.0,15.0,980),(2477,8474,0.0,0.0,0.0,1054),(2478,8483,39.0,29.0,17.0,952),(2479,8472,0.0,0.0,0.0,880),(2480,8470,0.0,0.0,0.0,692),(2481,8486,33.0,25.0,11.0,1196),(2482,7858,33.0,25.0,11.0,636),(2483,8239,0.0,0.0,0.0,800),(2484,8502,0.0,0.0,0.0,1590),(2485,8507,0.0,0.0,0.0,450),(2486,8509,0.0,0.0,0.0,1080),(2487,8497,0.0,0.0,0.0,1045),(2488,8499,0.0,0.0,0.0,755),(2489,8259,30.0,25.0,15.0,790),(2490,8280,30.0,25.0,15.0,1210),(2491,8304,30.0,25.0,15.0,1220),(2492,8308,30.0,25.0,15.0,1215),(2493,8500,30.0,25.0,15.0,1096),(2494,8303,30.0,25.0,15.0,1215),(2495,8512,30.0,24.0,6.0,452),(2496,8307,0.0,0.0,0.0,1270),(2497,8306,0.0,0.0,0.0,1265),(2498,8305,0.0,0.0,0.0,1270),(2499,8302,0.0,0.0,0.0,1265),(2500,8301,0.0,0.0,0.0,1265),(2501,8300,0.0,0.0,0.0,1265),(2502,8317,0.0,0.0,0.0,1255),(2503,8316,30.0,25.0,15.0,1260),(2504,8315,0.0,0.0,0.0,1300),(2505,8322,0.0,0.0,0.0,1295),(2506,8314,0.0,0.0,0.0,1290),(2507,8321,0.0,0.0,0.0,1265),(2508,8299,0.0,0.0,0.0,1255),(2509,8298,0.0,0.0,0.0,1260),(2510,8296,0.0,0.0,0.0,1250),(2511,8288,0.0,0.0,0.0,1265),(2512,8289,0.0,0.0,0.0,1265),(2513,8290,0.0,0.0,0.0,1280),(2514,8291,0.0,0.0,0.0,1275),(2515,8292,0.0,0.0,0.0,1270),(2516,8293,0.0,0.0,0.0,1260),(2517,8294,0.0,0.0,0.0,1295),(2518,8295,0.0,0.0,0.0,1265),(2519,8286,0.0,0.0,0.0,1270),(2520,8285,0.0,0.0,0.0,1275),(2521,8283,0.0,0.0,0.0,1265),(2522,8287,0.0,0.0,0.0,1236),(2523,8282,0.0,0.0,0.0,1242),(2524,8281,0.0,0.0,0.0,1236),(2525,8279,0.0,0.0,0.0,1246),(2526,8278,0.0,0.0,0.0,1230),(2527,8277,0.0,0.0,0.0,1240),(2528,8318,0.0,0.0,0.0,1232),(2529,8313,0.0,0.0,0.0,1240),(2530,8312,0.0,0.0,0.0,1240),(2531,8323,0.0,0.0,0.0,1215),(2532,8341,0.0,0.0,0.0,1215),(2533,8427,0.0,0.0,0.0,1206),(2534,8320,0.0,0.0,0.0,1230),(2535,8319,0.0,0.0,0.0,1220),(2536,8311,0.0,0.0,0.0,1212),(2537,8310,0.0,0.0,0.0,1216),(2538,8309,0.0,0.0,0.0,1215),(2539,7186,0.0,0.0,0.0,1830),(2540,8189,0.0,0.0,0.0,600),(2541,8187,0.0,0.0,0.0,590),(2542,8207,0.0,0.0,0.0,574),(2543,8208,0.0,0.0,0.0,564),(2544,8193,0.0,0.0,0.0,564),(2545,8174,0.0,0.0,0.0,564),(2546,8170,0.0,0.0,0.0,570),(2547,8168,0.0,0.0,0.0,560),(2548,8167,0.0,0.0,0.0,566),(2549,8164,0.0,0.0,0.0,562),(2550,8205,0.0,0.0,0.0,570),(2551,8206,0.0,0.0,0.0,576),(2552,8204,0.0,0.0,0.0,574),(2553,8201,0.0,0.0,0.0,574),(2554,8200,0.0,0.0,0.0,560),(2555,8199,0.0,0.0,0.0,572),(2556,8198,0.0,0.0,0.0,580),(2557,8197,0.0,0.0,0.0,574),(2558,8196,0.0,0.0,0.0,570),(2559,8195,0.0,0.0,0.0,614),(2560,8176,0.0,0.0,0.0,576),(2561,8175,0.0,0.0,0.0,566),(2562,8219,0.0,0.0,0.0,580),(2563,8213,0.0,0.0,0.0,570),(2564,8190,0.0,0.0,0.0,586),(2565,8226,0.0,0.0,0.0,576),(2566,8225,0.0,0.0,0.0,572),(2567,8224,0.0,0.0,0.0,580),(2568,8223,0.0,0.0,0.0,566),(2569,8221,0.0,0.0,0.0,550),(2570,8220,0.0,0.0,0.0,570),(2571,8185,0.0,0.0,0.0,595),(2572,8194,0.0,0.0,0.0,600),(2573,8209,0.0,0.0,0.0,600),(2574,8210,0.0,0.0,0.0,605),(2575,8211,0.0,0.0,0.0,595),(2576,8212,0.0,0.0,0.0,600),(2577,8214,0.0,0.0,0.0,595),(2578,8215,0.0,0.0,0.0,600),(2579,8218,0.0,0.0,0.0,600),(2580,8496,0.0,0.0,0.0,815),(2581,8256,0.0,0.0,0.0,880),(2582,8380,0.0,0.0,0.0,826),(2583,8373,0.0,0.0,0.0,865),(2584,8498,0.0,0.0,0.0,840),(2585,8553,0.0,0.0,0.0,1330),(2586,1674,0.0,0.0,0.0,915),(2587,8539,0.0,0.0,0.0,960),(2588,8536,0.0,0.0,0.0,950),(2589,8464,0.0,0.0,0.0,1270),(2590,8540,0.0,0.0,0.0,915),(2591,8552,0.0,0.0,0.0,885),(2592,8183,0.0,0.0,0.0,600),(2593,8182,0.0,0.0,0.0,595),(2594,8191,0.0,0.0,0.0,605),(2595,8179,0.0,0.0,0.0,590),(2596,8217,0.0,0.0,0.0,695),(2597,8181,0.0,0.0,0.0,610),(2598,8476,0.0,0.0,0.0,1160),(2599,8184,0.0,0.0,0.0,595),(2600,8178,0.0,0.0,0.0,625),(2601,8551,0.0,0.0,0.0,880),(2602,8532,33.0,25.0,11.0,904),(2603,8538,33.0,25.0,11.0,812),(2604,8516,30.0,25.0,15.0,890),(2605,8521,30.0,25.0,15.0,718),(2606,8542,30.0,24.0,14.0,708),(2607,8255,30.0,24.0,6.0,565),(2608,8376,30.0,24.0,6.0,600),(2609,8510,33.0,25.0,11.0,844),(2610,8264,30.0,24.0,6.0,670),(2611,8556,0.0,0.0,0.0,1265),(2612,8543,0.0,0.0,0.0,1630),(2613,8337,0.0,0.0,0.0,1185),(2614,8554,0.0,0.0,0.0,605),(2615,8531,0.0,0.0,0.0,950),(2616,8581,33.0,25.0,11.0,690),(2617,8580,33.0,25.0,11.0,1080),(2618,8582,33.0,25.0,11.0,840),(2619,8560,46.0,29.0,22.0,2154),(2620,8546,0.0,0.0,0.0,440),(2621,8558,0.0,0.0,0.0,1330),(2622,8557,0.0,0.0,0.0,1575),(2623,7572,0.0,0.0,0.0,1360),(2624,8559,33.0,25.0,11.0,900),(2625,8570,33.0,25.0,11.0,900),(2626,8585,30.0,25.0,15.0,702),(2627,8576,0.0,0.0,0.0,1260),(2628,8583,0.0,0.0,0.0,1270),(2629,8568,0.0,0.0,0.0,810),(2630,8565,0.0,0.0,0.0,810),(2631,8591,0.0,0.0,0.0,945),(2632,8595,0.0,0.0,0.0,935),(2633,8601,0.0,0.0,0.0,940),(2634,8574,0.0,0.0,0.0,345),(2635,8506,0.0,0.0,0.0,425),(2636,8587,0.0,0.0,0.0,1045),(2637,8573,0.0,0.0,0.0,950),(2638,8575,0.0,0.0,0.0,940),(2639,8563,0.0,0.0,0.0,950),(2640,8602,0.0,0.0,0.0,940),(2641,8609,0.0,0.0,0.0,890),(2642,8615,0.0,0.0,0.0,880),(2643,8613,0.0,0.0,0.0,885),(2644,8614,0.0,0.0,0.0,890),(2645,8607,0.0,0.0,0.0,885),(2646,8604,0.0,0.0,0.0,975),(2647,8608,0.0,0.0,0.0,920),(2648,8611,0.0,0.0,0.0,880),(2649,8612,0.0,0.0,0.0,885),(2650,8610,0.0,0.0,0.0,1275),(2651,8616,46.0,30.0,16.0,1072),(2652,8594,30.0,25.0,15.0,945),(2653,8619,30.0,24.0,14.0,1150),(2654,8620,0.0,0.0,0.0,665),(2655,8624,0.0,0.0,0.0,955),(2656,8627,0.0,0.0,0.0,960),(2657,8622,0.0,0.0,0.0,955),(2658,8628,0.0,0.0,0.0,420),(2659,8623,0.0,0.0,0.0,950),(2660,6684,46.0,29.0,22.0,2845),(2661,8669,0.0,0.0,0.0,1190),(2662,8665,0.0,0.0,0.0,620),(2663,8630,0.0,0.0,0.0,615),(2664,18359,0.0,0.0,0.0,805),(2665,28681,0.0,0.0,0.0,615),(2666,58684,0.0,0.0,0.0,945),(2667,268238,39.0,29.0,17.0,4966),(2668,338219,0.0,0.0,0.0,916),(2669,338206,0.0,0.0,0.0,914),(2670,338235,0.0,0.0,0.0,1214),(2671,338336,0.0,0.0,0.0,960),(2672,338337,0.0,0.0,0.0,400),(2673,338209,0.0,0.0,0.0,785),(2674,337345,0.0,0.0,0.0,936),(2675,337242,0.0,0.0,0.0,1204),(2676,8606,0.0,0.0,0.0,624),(2677,338247,0.0,0.0,0.0,634),(2678,338215,30.0,24.0,6.0,316),(2679,338217,46.0,30.0,16.0,1854),(2680,338212,30.0,25.0,15.0,1182),(2681,337343,30.0,25.0,15.0,820),(2682,338213,30.0,25.0,15.0,690),(2683,338221,30.0,25.0,15.0,726),(2684,338236,33.0,25.0,11.0,988),(2685,338340,33.0,25.0,11.0,1202),(2686,338226,0.0,0.0,0.0,915),(2687,338470,0.0,0.0,0.0,918),(2688,338344,0.0,0.0,0.0,930),(2689,8338,0.0,0.0,0.0,978),(2690,268239,0.0,0.0,0.0,615),(2691,338338,0.0,0.0,0.0,1720),(2692,338342,0.0,0.0,0.0,2630),(2693,338491,0.0,0.0,0.0,400),(2694,338490,0.0,0.0,0.0,430),(2695,8401,0.0,0.0,0.0,780),(2696,8397,0.0,0.0,0.0,790),(2697,8394,0.0,0.0,0.0,784),(2698,8528,0.0,0.0,0.0,782),(2699,8332,0.0,0.0,0.0,778),(2700,8388,0.0,0.0,0.0,780),(2701,8389,0.0,0.0,0.0,784),(2702,8390,0.0,0.0,0.0,776),(2703,8446,0.0,0.0,0.0,786),(2704,8393,0.0,0.0,0.0,796),(2705,8404,0.0,0.0,0.0,796),(2706,338334,0.0,0.0,0.0,604),(2707,338306,0.0,0.0,0.0,608),(2708,338230,0.0,0.0,0.0,974),(2709,8384,0.0,0.0,0.0,792),(2710,8387,0.0,0.0,0.0,780),(2711,8385,0.0,0.0,0.0,778),(2712,8402,0.0,0.0,0.0,782),(2713,8396,0.0,0.0,0.0,780),(2714,8395,0.0,0.0,0.0,778),(2715,8400,0.0,0.0,0.0,778),(2716,8405,0.0,0.0,0.0,792),(2717,8403,0.0,0.0,0.0,780),(2718,8398,0.0,0.0,0.0,788),(2719,8432,0.0,0.0,0.0,778),(2720,338339,33.0,25.0,11.0,650),(2721,338497,0.0,0.0,0.0,820),(2722,338499,0.0,0.0,0.0,890),(2723,338513,0.0,0.0,0.0,892),(2724,8646,0.0,0.0,0.0,1275),(2725,8644,0.0,0.0,0.0,1278),(2726,8643,0.0,0.0,0.0,1270),(2727,8640,0.0,0.0,0.0,1298),(2728,8645,0.0,0.0,0.0,1270),(2729,8642,0.0,0.0,0.0,1270),(2730,8662,0.0,0.0,0.0,1275),(2731,8637,0.0,0.0,0.0,1275),(2732,8658,0.0,0.0,0.0,1280),(2733,8660,0.0,0.0,0.0,1265),(2734,8635,0.0,0.0,0.0,1280),(2735,8636,0.0,0.0,0.0,1275),(2736,8651,0.0,0.0,0.0,1265),(2737,8663,0.0,0.0,0.0,1235),(2738,8652,0.0,0.0,0.0,1240),(2739,8659,0.0,0.0,0.0,1270),(2740,8656,0.0,0.0,0.0,1245),(2741,8655,0.0,0.0,0.0,1235),(2742,8661,0.0,0.0,0.0,1286),(2743,8657,0.0,0.0,0.0,1265),(2744,338547,0.0,0.0,0.0,930),(2745,339038,30.0,24.0,6.0,586),(2746,338552,30.0,25.0,15.0,726),(2747,28679,46.0,30.0,16.0,1805),(2748,338498,30.0,25.0,15.0,1232),(2749,268196,30.0,25.0,15.0,740),(2750,268201,30.0,25.0,15.0,742),(2751,338550,33.0,25.0,11.0,904),(2752,338225,30.0,25.0,15.0,1232),(2753,338478,30.0,25.0,15.0,1154),(2754,268237,30.0,25.0,15.0,1152),(2755,268242,30.0,25.0,15.0,1154),(2756,8104,30.0,25.0,15.0,1108),(2757,338542,30.0,25.0,15.0,1240),(2758,8648,0.0,0.0,0.0,1282),(2759,8650,0.0,0.0,0.0,1265),(2760,8647,0.0,0.0,0.0,1256),(2761,8641,0.0,0.0,0.0,1270),(2762,8638,0.0,0.0,0.0,1265),(2763,268230,0.0,0.0,0.0,1236),(2764,268232,0.0,0.0,0.0,1250),(2765,268235,0.0,0.0,0.0,1226),(2766,268234,0.0,0.0,0.0,1152),(2767,268222,0.0,0.0,0.0,1236),(2768,268228,30.0,25.0,15.0,1232),(2769,268227,0.0,0.0,0.0,1235),(2770,268220,0.0,0.0,0.0,1242),(2771,268215,0.0,0.0,0.0,1228),(2772,268224,0.0,0.0,0.0,1232),(2773,268226,0.0,0.0,0.0,1244),(2774,268225,0.0,0.0,0.0,1234),(2775,8639,0.0,0.0,0.0,1270),(2776,8649,0.0,0.0,0.0,1265),(2777,8633,0.0,0.0,0.0,1270),(2778,338218,0.0,0.0,0.0,780),(2779,339026,0.0,0.0,0.0,780),(2780,8634,0.0,0.0,0.0,1230),(2781,8631,0.0,0.0,0.0,1265),(2782,8632,0.0,0.0,0.0,1240),(2783,339036,0.0,0.0,0.0,780),(2784,268233,0.0,0.0,0.0,1234),(2785,268236,0.0,0.0,0.0,1240),(2786,8653,0.0,0.0,0.0,1240),(2787,339051,0.0,0.0,0.0,1776),(2788,8654,0.0,0.0,0.0,1245),(2789,8466,0.0,0.0,0.0,1195),(2790,268231,0.0,0.0,0.0,1270),(2791,8629,0.0,0.0,0.0,810),(2792,8673,0.0,0.0,0.0,1190),(2793,8518,0.0,0.0,0.0,780),(2794,8674,0.0,0.0,0.0,775),(2795,268218,0.0,0.0,0.0,1262),(2796,268205,0.0,0.0,0.0,1292),(2797,268208,0.0,0.0,0.0,1304),(2798,268207,0.0,0.0,0.0,1292),(2799,268217,0.0,0.0,0.0,1296),(2800,8668,0.0,0.0,0.0,1292),(2801,268219,0.0,0.0,0.0,1282),(2802,8672,0.0,0.0,0.0,1292),(2803,268223,0.0,0.0,0.0,1292),(2804,268206,0.0,0.0,0.0,1282),(2805,8667,0.0,0.0,0.0,1282),(2806,268204,0.0,0.0,0.0,1282),(2807,268229,0.0,0.0,0.0,1288),(2808,268214,0.0,0.0,0.0,1288),(2809,268210,0.0,0.0,0.0,1286),(2810,268211,0.0,0.0,0.0,1292),(2811,8664,0.0,0.0,0.0,1284),(2812,8671,0.0,0.0,0.0,1266),(2813,268212,0.0,0.0,0.0,1282),(2814,268216,0.0,0.0,0.0,1282),(2815,8666,0.0,0.0,0.0,1274),(2816,268209,0.0,0.0,0.0,1280),(2817,268213,0.0,0.0,0.0,1292),(2818,339061,53.0,31.0,50.0,7240),(2819,339077,33.0,25.0,11.0,940),(2820,339067,46.0,30.0,16.0,1806),(2821,339025,30.0,24.0,6.0,574),(2822,339086,30.0,24.0,6.0,314),(2823,339083,0.0,0.0,0.0,755),(2824,8548,0.0,0.0,0.0,780),(2825,339035,0.0,0.0,0.0,1115),(2826,8584,0.0,0.0,0.0,780),(2827,8547,0.0,0.0,0.0,780),(2828,8550,0.0,0.0,0.0,785),(2829,8549,0.0,0.0,0.0,790),(2830,8487,0.0,0.0,0.0,780),(2831,338534,0.0,0.0,0.0,790),(2832,8545,0.0,0.0,0.0,775),(2833,339045,0.0,0.0,0.0,785),(2834,339079,0.0,0.0,0.0,1265),(2835,339082,0.0,0.0,0.0,920),(2836,339052,0.0,0.0,0.0,320),(2837,8555,0.0,0.0,0.0,1290),(2838,339080,0.0,0.0,0.0,585),(2839,339081,0.0,0.0,0.0,1250),(2840,339074,0.0,0.0,0.0,640),(2841,339030,0.0,0.0,0.0,820),(2842,339059,0.0,0.0,0.0,795),(2843,339210,46.0,29.0,22.0,2472),(2844,339099,30.0,24.0,6.0,425),(2845,8626,33.0,25.0,11.0,782),(2846,339154,30.0,24.0,6.0,352),(2847,339139,33.0,25.0,11.0,1170),(2848,268203,33.0,25.0,11.0,990),(2849,339108,46.0,29.0,22.0,2580),(2850,339121,30.0,25.0,15.0,1165),(2851,339140,30.0,25.0,15.0,1240),(2852,339141,30.0,25.0,15.0,1200),(2853,339207,30.0,25.0,15.0,746),(2854,339091,30.0,25.0,15.0,774),(2855,339142,30.0,25.0,15.0,1112),(2856,339107,0.0,0.0,0.0,385),(2857,339150,0.0,0.0,0.0,490),(2858,339188,0.0,0.0,0.0,585),(2859,339125,0.0,0.0,0.0,580),(2860,339144,0.0,0.0,0.0,920),(2861,339161,0.0,0.0,0.0,585),(2862,339153,0.0,0.0,0.0,1190),(2863,339208,0.0,0.0,0.0,740),(2864,339131,0.0,0.0,0.0,770),(2865,8508,0.0,0.0,0.0,765),(2866,338211,0.0,0.0,0.0,1155),(2867,339209,0.0,0.0,0.0,1830),(2868,339217,33.0,25.0,11.0,900),(2869,339240,33.0,25.0,11.0,835),(2870,339231,33.0,25.0,11.0,1015),(2871,339214,0.0,0.0,0.0,920),(2872,8222,0.0,0.0,0.0,595),(2873,339216,33.0,25.0,11.0,830),(2874,339248,0.0,0.0,0.0,784),(2875,339192,0.0,0.0,0.0,584),(2876,339247,0.0,0.0,0.0,926),(2877,339246,0.0,0.0,0.0,578),(2878,339242,0.0,0.0,0.0,318),(2879,339294,0.0,0.0,0.0,912),(2880,339268,30.0,25.0,15.0,940),(2881,339258,33.0,25.0,11.0,876),(2882,339101,0.0,0.0,0.0,3815),(2883,339281,0.0,0.0,0.0,676),(2884,339283,0.0,0.0,0.0,794),(2885,339290,0.0,0.0,0.0,800),(2886,339288,0.0,0.0,0.0,784),(2887,339289,0.0,0.0,0.0,788),(2888,339286,0.0,0.0,0.0,778),(2889,339287,0.0,0.0,0.0,782),(2890,339291,0.0,0.0,0.0,780),(2891,339284,0.0,0.0,0.0,770),(2892,339285,0.0,0.0,0.0,782),(2893,339292,0.0,0.0,0.0,400),(2894,339115,46.0,30.0,16.0,1826),(2895,339352,46.0,29.0,22.0,2305),(2896,339338,46.0,30.0,16.0,1650),(2897,338277,0.0,0.0,0.0,785),(2898,338278,0.0,0.0,0.0,785),(2899,338279,0.0,0.0,0.0,790),(2900,338274,0.0,0.0,0.0,790),(2901,338276,0.0,0.0,0.0,785),(2902,338251,0.0,0.0,0.0,790),(2903,338252,0.0,0.0,0.0,790),(2904,338253,0.0,0.0,0.0,790),(2905,338254,0.0,0.0,0.0,790),(2906,339071,0.0,0.0,0.0,790),(2907,338294,0.0,0.0,0.0,790),(2908,338248,0.0,0.0,0.0,790),(2909,338249,0.0,0.0,0.0,800),(2910,338272,0.0,0.0,0.0,785),(2911,338271,0.0,0.0,0.0,780),(2912,338275,0.0,0.0,0.0,775),(2913,339370,0.0,0.0,0.0,780),(2914,338270,0.0,0.0,0.0,780),(2915,338268,0.0,0.0,0.0,780),(2916,338286,0.0,0.0,0.0,790),(2917,338285,0.0,0.0,0.0,785),(2918,338288,0.0,0.0,0.0,785),(2919,338283,0.0,0.0,0.0,785),(2920,338284,0.0,0.0,0.0,795),(2921,338291,0.0,0.0,0.0,775),(2922,338290,0.0,0.0,0.0,780),(2923,338293,0.0,0.0,0.0,780),(2924,338292,0.0,0.0,0.0,780),(2925,338280,0.0,0.0,0.0,790),(2926,338282,0.0,0.0,0.0,785),(2927,339250,0.0,0.0,0.0,2320),(2928,339323,0.0,0.0,0.0,1312),(2929,339330,0.0,0.0,0.0,1280),(2930,339304,0.0,0.0,0.0,1225),(2931,339326,0.0,0.0,0.0,1300),(2932,339362,0.0,0.0,0.0,1030),(2933,339341,0.0,0.0,0.0,1365),(2934,339344,0.0,0.0,0.0,1260),(2935,339334,0.0,0.0,0.0,775),(2936,339369,0.0,0.0,0.0,588),(2937,339472,0.0,0.0,0.0,584),(2938,339473,0.0,0.0,0.0,580),(2939,339474,0.0,0.0,0.0,590),(2940,339493,0.0,0.0,0.0,936),(2941,339510,0.0,0.0,0.0,596),(2942,339475,0.0,0.0,0.0,582),(2943,339511,0.0,0.0,0.0,586),(2944,339469,0.0,0.0,0.0,950),(2945,339368,0.0,0.0,0.0,592),(2946,338208,0.0,0.0,0.0,860),(2947,339339,0.0,0.0,0.0,1070),(2948,339479,0.0,0.0,0.0,2506),(2949,339392,0.0,0.0,0.0,1234),(2950,339378,0.0,0.0,0.0,1265),(2951,339484,0.0,0.0,0.0,1006),(2952,339526,0.0,0.0,0.0,416),(2953,339521,0.0,0.0,0.0,416),(2954,339512,0.0,0.0,0.0,788),(2955,339537,0.0,0.0,0.0,1582),(2956,339440,0.0,0.0,0.0,1240),(2957,339365,0.0,0.0,0.0,2338),(2958,339540,0.0,0.0,0.0,782),(2959,339544,46.0,29.0,22.0,3436),(2960,339459,30.0,25.0,15.0,796),(2961,339431,30.0,25.0,15.0,1012),(2962,339541,33.0,25.0,11.0,686),(2963,339426,30.0,25.0,15.0,1168),(2964,339529,30.0,25.0,15.0,1192),(2965,339444,30.0,25.0,15.0,1136),(2966,339533,30.0,25.0,15.0,750),(2967,339499,30.0,25.0,15.0,754),(2968,339439,0.0,0.0,0.0,2695),(2969,339588,0.0,0.0,0.0,960),(2970,339589,0.0,0.0,0.0,1185),(2971,339585,0.0,0.0,0.0,580),(2972,339592,30.0,25.0,15.0,754),(2973,338287,0.0,0.0,0.0,815),(2974,339584,0.0,0.0,0.0,585),(2975,339576,0.0,0.0,0.0,1046),(2976,338317,0.0,0.0,0.0,790),(2977,339565,0.0,0.0,0.0,760),(2978,339534,0.0,0.0,0.0,1164),(2979,338301,0.0,0.0,0.0,790),(2980,338300,0.0,0.0,0.0,785),(2981,339552,0.0,0.0,0.0,586),(2982,338308,0.0,0.0,0.0,795),(2983,338309,0.0,0.0,0.0,780),(2984,338298,33.0,25.0,11.0,776),(2985,339238,33.0,25.0,11.0,690),(2986,338325,33.0,25.0,11.0,776),(2987,338273,33.0,25.0,11.0,796),(2988,338305,0.0,0.0,0.0,800),(2989,338307,0.0,0.0,0.0,785),(2990,338315,0.0,0.0,0.0,786),(2991,338314,0.0,0.0,0.0,786),(2992,338311,0.0,0.0,0.0,790),(2993,338313,0.0,0.0,0.0,780),(2994,338303,0.0,0.0,0.0,788),(2995,337344,0.0,0.0,0.0,780),(2996,338332,0.0,0.0,0.0,785),(2997,338333,0.0,0.0,0.0,790),(2998,338322,0.0,0.0,0.0,785),(2999,338326,0.0,0.0,0.0,780),(3000,338295,0.0,0.0,0.0,765),(3001,338328,0.0,0.0,0.0,780),(3002,338297,0.0,0.0,0.0,770),(3003,338296,0.0,0.0,0.0,790),(3004,338329,0.0,0.0,0.0,785),(3005,338330,0.0,0.0,0.0,780),(3006,338331,0.0,0.0,0.0,780),(3007,338335,0.0,0.0,0.0,780),(3008,338321,0.0,0.0,0.0,790),(3009,338320,0.0,0.0,0.0,780),(3010,338319,0.0,0.0,0.0,790),(3011,338318,0.0,0.0,0.0,790),(3012,338327,0.0,0.0,0.0,780),(3013,338323,0.0,0.0,0.0,780),(3014,338304,0.0,0.0,0.0,784),(3015,338302,0.0,0.0,0.0,786),(3016,338260,0.0,0.0,0.0,790),(3017,338259,0.0,0.0,0.0,784),(3018,338258,0.0,0.0,0.0,786),(3019,338257,0.0,0.0,0.0,786),(3020,338256,0.0,0.0,0.0,790),(3021,338241,0.0,0.0,0.0,782),(3022,338243,0.0,0.0,0.0,784),(3023,338244,0.0,0.0,0.0,786),(3024,338245,0.0,0.0,0.0,786),(3025,338246,0.0,0.0,0.0,780),(3026,338261,0.0,0.0,0.0,782),(3027,338310,0.0,0.0,0.0,780),(3028,338312,0.0,0.0,0.0,786),(3029,338262,0.0,0.0,0.0,786),(3030,338265,0.0,0.0,0.0,786),(3031,338267,0.0,0.0,0.0,790),(3032,338237,0.0,0.0,0.0,780),(3033,338238,0.0,0.0,0.0,790),(3034,338239,0.0,0.0,0.0,790),(3035,338240,0.0,0.0,0.0,790),(3036,338316,0.0,0.0,0.0,790),(3037,339553,0.0,0.0,0.0,1080),(3038,339555,0.0,0.0,0.0,400),(3039,339554,0.0,0.0,0.0,405),(3040,339606,30.0,24.0,14.0,810),(3041,339611,30.0,24.0,14.0,1130),(3042,339605,0.0,0.0,0.0,430),(3043,339620,0.0,0.0,0.0,430),(3044,339632,0.0,0.0,0.0,330),(3045,339627,30.0,25.0,15.0,754),(3046,339625,0.0,0.0,0.0,786),(3047,339586,39.0,29.0,17.0,1175),(3048,339699,0.0,0.0,0.0,935),(3049,339700,0.0,0.0,0.0,975),(3050,339656,0.0,0.0,0.0,965),(3051,339649,0.0,0.0,0.0,620),(3052,339661,0.0,0.0,0.0,965),(3053,339684,0.0,0.0,0.0,588),(3054,339690,0.0,0.0,0.0,586),(3055,339717,0.0,0.0,0.0,592),(3056,339713,0.0,0.0,0.0,930),(3057,339682,0.0,0.0,0.0,596),(3058,339686,0.0,0.0,0.0,774),(3059,339715,0.0,0.0,0.0,600),(3060,339722,0.0,0.0,0.0,960),(3061,339716,0.0,0.0,0.0,592),(3062,339734,0.0,0.0,0.0,590),(3063,339730,0.0,0.0,0.0,972),(3064,339735,0.0,0.0,0.0,592),(3065,339732,33.0,25.0,11.0,1022),(3066,339705,30.0,24.0,6.0,394),(3067,6643,30.0,24.0,6.0,700),(3068,339680,0.0,0.0,0.0,1240),(3069,339737,0.0,0.0,0.0,930),(3070,339630,0.0,0.0,0.0,1190),(3071,339738,0.0,0.0,0.0,925),(3072,339664,30.0,25.0,15.0,756),(3073,339452,30.0,25.0,15.0,756),(3074,339416,30.0,25.0,15.0,1170),(3075,339376,30.0,25.0,15.0,1162),(3076,339567,30.0,25.0,15.0,756),(3077,339549,30.0,25.0,15.0,760),(3078,339393,30.0,25.0,15.0,1164),(3079,339410,30.0,25.0,15.0,1150),(3080,339415,30.0,25.0,15.0,1156),(3081,339639,30.0,25.0,15.0,825),(3082,339391,0.0,0.0,0.0,1160),(3083,339384,0.0,0.0,0.0,1166),(3084,339383,0.0,0.0,0.0,1160),(3085,339381,0.0,0.0,0.0,1162),(3086,339379,0.0,0.0,0.0,1134),(3087,339382,0.0,0.0,0.0,1166),(3088,339380,0.0,0.0,0.0,1132),(3089,8419,0.0,0.0,0.0,1864),(3090,339377,0.0,0.0,0.0,1125),(3091,339374,0.0,0.0,0.0,1158),(3092,339375,0.0,0.0,0.0,1136),(3093,339460,0.0,0.0,0.0,730),(3094,339454,0.0,0.0,0.0,768),(3095,339411,0.0,0.0,0.0,1140),(3096,339409,0.0,0.0,0.0,1170),(3097,339408,0.0,0.0,0.0,1170),(3098,339404,0.0,0.0,0.0,1140),(3099,339406,0.0,0.0,0.0,1142),(3100,339405,0.0,0.0,0.0,1140),(3101,339407,0.0,0.0,0.0,1138),(3102,339398,0.0,0.0,0.0,1134),(3103,339386,0.0,0.0,0.0,1170),(3104,339385,0.0,0.0,0.0,1168),(3105,339417,0.0,0.0,0.0,1170),(3106,339399,0.0,0.0,0.0,1166),(3107,339403,0.0,0.0,0.0,1164),(3108,339414,0.0,0.0,0.0,1166),(3109,339394,0.0,0.0,0.0,1160),(3110,339397,0.0,0.0,0.0,1162),(3111,339396,0.0,0.0,0.0,1162),(3112,339395,0.0,0.0,0.0,1160),(3113,339400,0.0,0.0,0.0,1160),(3114,339401,0.0,0.0,0.0,1140),(3115,339402,0.0,0.0,0.0,1160),(3116,339413,0.0,0.0,0.0,1162),(3117,339412,0.0,0.0,0.0,1162),(3118,339389,0.0,0.0,0.0,1200),(3119,339388,0.0,0.0,0.0,1205),(3120,339387,0.0,0.0,0.0,1205),(3121,339372,0.0,0.0,0.0,1205),(3122,339371,0.0,0.0,0.0,1170),(3123,339366,0.0,0.0,0.0,1205),(3124,339346,0.0,0.0,0.0,1205),(3125,339583,0.0,0.0,0.0,1160),(3126,339548,0.0,0.0,0.0,780),(3127,339418,0.0,0.0,0.0,785),(3128,339689,0.0,0.0,0.0,2755),(3129,339778,0.0,0.0,0.0,1280),(3130,339801,0.0,0.0,0.0,554),(3131,339794,0.0,0.0,0.0,596),(3132,339769,30.0,25.0,15.0,776),(3133,339789,0.0,0.0,0.0,942),(3134,339763,0.0,0.0,0.0,382),(3135,339784,0.0,0.0,0.0,932),(3136,339811,30.0,25.0,15.0,770),(3137,339810,30.0,25.0,15.0,784),(3138,339706,0.0,0.0,0.0,810),(3139,339164,0.0,0.0,0.0,795),(3140,339165,0.0,0.0,0.0,785),(3141,339166,0.0,0.0,0.0,775),(3142,339167,0.0,0.0,0.0,780),(3143,339169,0.0,0.0,0.0,785),(3144,339171,0.0,0.0,0.0,775),(3145,339174,0.0,0.0,0.0,775),(3146,339173,0.0,0.0,0.0,780),(3147,339172,0.0,0.0,0.0,785),(3148,339175,0.0,0.0,0.0,780),(3149,339351,0.0,0.0,0.0,770),(3150,339199,0.0,0.0,0.0,780),(3151,339198,0.0,0.0,0.0,770),(3152,339197,0.0,0.0,0.0,785),(3153,339196,0.0,0.0,0.0,790),(3154,339194,0.0,0.0,0.0,790),(3155,339193,0.0,0.0,0.0,785),(3156,339190,0.0,0.0,0.0,790),(3157,339191,0.0,0.0,0.0,785),(3158,339183,0.0,0.0,0.0,800),(3159,339182,0.0,0.0,0.0,785),(3160,339181,0.0,0.0,0.0,795),(3161,339179,0.0,0.0,0.0,800),(3162,339178,0.0,0.0,0.0,790),(3163,339176,0.0,0.0,0.0,785),(3164,339189,0.0,0.0,0.0,790),(3165,339187,0.0,0.0,0.0,790),(3166,339186,0.0,0.0,0.0,785),(3167,339185,0.0,0.0,0.0,780),(3168,339184,0.0,0.0,0.0,785),(3169,339206,0.0,0.0,0.0,756),(3170,339205,0.0,0.0,0.0,780),(3171,339204,0.0,0.0,0.0,782),(3172,339203,0.0,0.0,0.0,788),(3173,339202,0.0,0.0,0.0,798),(3174,339201,0.0,0.0,0.0,784),(3175,339200,0.0,0.0,0.0,770),(3176,339177,0.0,0.0,0.0,780),(3177,339813,0.0,0.0,0.0,922),(3178,339170,0.0,0.0,0.0,818),(3179,339159,0.0,0.0,0.0,786),(3180,339168,0.0,0.0,0.0,798),(3181,339633,0.0,0.0,0.0,778),(3182,339163,0.0,0.0,0.0,780),(3183,339162,0.0,0.0,0.0,792),(3184,339160,0.0,0.0,0.0,800),(3185,339158,0.0,0.0,0.0,784),(3186,339157,0.0,0.0,0.0,782),(3187,339799,0.0,0.0,0.0,422),(3188,339683,0.0,0.0,0.0,792),(3189,339668,0.0,0.0,0.0,1836),(3190,339786,0.0,0.0,0.0,940),(3191,339802,0.0,0.0,0.0,734),(3192,339803,0.0,0.0,0.0,776),(3193,339667,0.0,0.0,0.0,744),(3194,339180,0.0,0.0,0.0,840),(3195,339739,0.0,0.0,0.0,3165),(3196,339673,0.0,0.0,0.0,805),(3197,338269,0.0,0.0,0.0,850),(3198,339685,0.0,0.0,0.0,790),(3199,339485,0.0,0.0,0.0,1065),(3200,339823,0.0,0.0,0.0,800),(3201,339824,0.0,0.0,0.0,955),(3202,339849,0.0,0.0,0.0,390),(3203,339845,0.0,0.0,0.0,570),(3204,339844,0.0,0.0,0.0,560),(3205,339843,0.0,0.0,0.0,570),(3206,339848,0.0,0.0,0.0,554),(3207,339852,0.0,0.0,0.0,570),(3208,339853,0.0,0.0,0.0,586),(3209,339865,0.0,0.0,0.0,750),(3210,339873,30.0,25.0,15.0,756),(3211,339857,0.0,0.0,0.0,1142),(3212,339859,0.0,0.0,0.0,732),(3213,339850,0.0,0.0,0.0,722),(3214,339851,0.0,0.0,0.0,726),(3215,339854,0.0,0.0,0.0,726),(3216,339855,0.0,0.0,0.0,750),(3217,339856,0.0,0.0,0.0,756),(3218,339858,0.0,0.0,0.0,730),(3219,339847,0.0,0.0,0.0,1120),(3220,339821,0.0,0.0,0.0,990),(3221,339878,30.0,24.0,6.0,330),(3222,339846,0.0,0.0,0.0,750),(3223,339877,0.0,0.0,0.0,756),(3224,339795,0.0,0.0,0.0,1134),(3225,339903,0.0,0.0,0.0,1305),(3226,339907,0.0,0.0,0.0,955),(3227,339882,0.0,0.0,0.0,425),(3228,339880,0.0,0.0,0.0,825),(3229,339892,33.0,25.0,11.0,806),(3230,339902,33.0,25.0,11.0,1340),(3231,339887,0.0,0.0,0.0,1000),(3232,339909,0.0,0.0,0.0,800),(3233,341509,0.0,0.0,0.0,940),(3234,341521,0.0,0.0,0.0,1182),(3235,7388,0.0,0.0,0.0,1716),(3236,339918,30.0,24.0,14.0,750),(3237,341527,0.0,0.0,0.0,1134),(3238,341529,0.0,0.0,0.0,554),(3239,341561,0.0,0.0,0.0,556),(3240,341705,0.0,0.0,0.0,1486),(3241,339669,0.0,0.0,0.0,790),(3242,341712,0.0,0.0,0.0,1190),(3243,341769,30.0,24.0,6.0,318),(3244,341789,30.0,24.0,6.0,286),(3245,339527,30.0,25.0,15.0,1140),(3246,339347,30.0,25.0,15.0,720),(3247,341909,46.0,30.0,16.0,1700),(3248,341740,30.0,24.0,6.0,386),(3249,339421,33.0,25.0,11.0,740),(3250,341792,30.0,25.0,15.0,750),(3251,339814,46.0,30.0,16.0,2030),(3252,341869,0.0,0.0,0.0,570),(3253,341860,0.0,0.0,0.0,555),(3254,341750,0.0,0.0,0.0,560),(3255,341761,0.0,0.0,0.0,345),(3256,341766,0.0,0.0,0.0,560),(3257,341760,0.0,0.0,0.0,975),(3258,341901,0.0,0.0,0.0,935),(3259,341924,0.0,0.0,0.0,930),(3260,341764,0.0,0.0,0.0,895),(3261,339498,0.0,0.0,0.0,555),(3262,339500,0.0,0.0,0.0,560),(3263,339501,0.0,0.0,0.0,570),(3264,339502,0.0,0.0,0.0,560),(3265,339503,0.0,0.0,0.0,560),(3266,339504,0.0,0.0,0.0,565),(3267,339505,0.0,0.0,0.0,570),(3268,339506,0.0,0.0,0.0,555),(3269,339507,0.0,0.0,0.0,560),(3270,339508,0.0,0.0,0.0,555),(3271,341859,0.0,0.0,0.0,385),(3272,341882,0.0,0.0,0.0,385),(3273,339535,0.0,0.0,0.0,560),(3274,339573,0.0,0.0,0.0,625),(3275,339436,0.0,0.0,0.0,570),(3276,339612,0.0,0.0,0.0,575),(3277,339564,0.0,0.0,0.0,575),(3278,339523,0.0,0.0,0.0,565),(3279,339524,0.0,0.0,0.0,580),(3280,339525,0.0,0.0,0.0,570),(3281,339518,0.0,0.0,0.0,575),(3282,339519,0.0,0.0,0.0,565),(3283,339520,0.0,0.0,0.0,565),(3284,339522,0.0,0.0,0.0,570),(3285,339514,0.0,0.0,0.0,580),(3286,339509,0.0,0.0,0.0,575),(3287,339517,0.0,0.0,0.0,585),(3288,339513,0.0,0.0,0.0,575),(3289,339516,0.0,0.0,0.0,570),(3290,341923,30.0,24.0,6.0,1082),(3291,339515,0.0,0.0,0.0,575),(3292,341790,0.0,0.0,0.0,670),(3293,341870,0.0,0.0,0.0,775),(3294,341933,0.0,0.0,0.0,605),(3295,341911,0.0,0.0,0.0,580),(3296,341934,0.0,0.0,0.0,1120),(3297,341938,0.0,0.0,0.0,455),(3298,341751,0.0,0.0,0.0,1165),(3299,6868,0.0,0.0,0.0,1240),(3300,341803,0.0,0.0,0.0,1340),(3301,341932,0.0,0.0,0.0,560),(3302,341910,30.0,25.0,15.0,1126),(3303,341918,30.0,25.0,15.0,752),(3304,341944,30.0,24.0,6.0,382),(3305,341948,0.0,0.0,0.0,780),(3306,341946,0.0,0.0,0.0,800),(3307,341959,30.0,24.0,6.0,888),(3308,339881,30.0,24.0,6.0,580),(3309,341981,30.0,25.0,15.0,786),(3310,339610,0.0,0.0,0.0,2188),(3311,341897,0.0,0.0,0.0,1162),(3312,341898,0.0,0.0,0.0,1730),(3313,341968,30.0,25.0,15.0,720),(3314,342030,33.0,25.0,11.0,904),(3315,342017,30.0,24.0,14.0,708),(3316,341971,0.0,0.0,0.0,566),(3317,341972,0.0,0.0,0.0,554),(3318,341953,0.0,0.0,0.0,780),(3319,341954,0.0,0.0,0.0,830),(3320,341963,0.0,0.0,0.0,1132),(3321,341973,0.0,0.0,0.0,756),(3322,341819,0.0,0.0,0.0,554),(3323,341804,0.0,0.0,0.0,570),(3324,342055,0.0,0.0,0.0,940),(3325,342053,0.0,0.0,0.0,1970),(3326,342072,46.0,30.0,16.0,1950),(3327,342076,39.0,29.0,17.0,1070),(3328,342114,46.0,30.0,16.0,2060),(3329,342112,30.0,24.0,14.0,1150),(3330,342155,46.0,30.0,16.0,1490),(3331,342144,30.0,24.0,14.0,730),(3332,342104,30.0,24.0,14.0,740),(3333,342106,30.0,24.0,6.0,554),(3334,342172,46.0,30.0,16.0,1894),(3335,342109,30.0,24.0,6.0,715),(3336,341585,30.0,24.0,14.0,1150),(3337,341917,30.0,24.0,14.0,1152),(3338,341600,30.0,24.0,14.0,760),(3339,342137,46.0,30.0,14.0,1132),(3340,342089,48.0,47.0,27.0,5025),(3341,342059,46.0,30.0,29.0,2842),(3342,7146,30.0,24.0,14.0,1122),(3343,342184,33.0,25.0,11.0,480),(3344,342162,33.0,25.0,11.0,1360),(3345,341940,33.0,25.0,11.0,850),(3346,342148,33.0,25.0,11.0,1095),(3347,341587,0.0,0.0,0.0,1180),(3348,341588,0.0,0.0,0.0,1180),(3349,341589,0.0,0.0,0.0,1185),(3350,341590,0.0,0.0,0.0,1185),(3351,341591,0.0,0.0,0.0,1180),(3352,341595,0.0,0.0,0.0,1190),(3353,341586,0.0,0.0,0.0,1195),(3354,341575,0.0,0.0,0.0,1190),(3355,342066,0.0,0.0,0.0,1190),(3356,341582,0.0,0.0,0.0,1195),(3357,341583,0.0,0.0,0.0,1185),(3358,341584,0.0,0.0,0.0,1190),(3359,341594,0.0,0.0,0.0,1190),(3360,341578,0.0,0.0,0.0,1190),(3361,341579,0.0,0.0,0.0,1190),(3362,341580,0.0,0.0,0.0,1190),(3363,341581,0.0,0.0,0.0,1200),(3364,341746,0.0,0.0,0.0,1185),(3365,341571,0.0,0.0,0.0,1195),(3366,341573,0.0,0.0,0.0,1195),(3367,341574,0.0,0.0,0.0,1210),(3368,341576,0.0,0.0,0.0,1195),(3369,341625,0.0,0.0,0.0,1200),(3370,341597,0.0,0.0,0.0,1195),(3371,341599,0.0,0.0,0.0,1190),(3372,341598,0.0,0.0,0.0,1190),(3373,342101,30.0,25.0,15.0,1160),(3374,342199,33.0,25.0,11.0,856),(3375,341539,0.0,0.0,0.0,1164),(3376,341536,0.0,0.0,0.0,1164),(3377,341537,0.0,0.0,0.0,1156),(3378,341570,0.0,0.0,0.0,1154),(3379,341569,0.0,0.0,0.0,1162),(3380,341538,0.0,0.0,0.0,1186),(3381,341593,0.0,0.0,0.0,1166),(3382,341592,0.0,0.0,0.0,1164),(3383,341566,0.0,0.0,0.0,1168),(3384,341564,0.0,0.0,0.0,1166),(3385,341562,0.0,0.0,0.0,1152),(3386,341596,0.0,0.0,0.0,1164),(3387,341568,0.0,0.0,0.0,1160),(3388,341567,0.0,0.0,0.0,1154),(3389,341565,0.0,0.0,0.0,1152),(3390,342177,30.0,24.0,6.0,572),(3391,341559,0.0,0.0,0.0,1166),(3392,341560,0.0,0.0,0.0,1164),(3393,342020,0.0,0.0,0.0,1166),(3394,341524,0.0,0.0,0.0,1166),(3395,341525,0.0,0.0,0.0,1170),(3396,341526,0.0,0.0,0.0,1164),(3397,341531,0.0,0.0,0.0,1168),(3398,341532,0.0,0.0,0.0,1170),(3399,341533,0.0,0.0,0.0,1166),(3400,341534,0.0,0.0,0.0,1166),(3401,341535,0.0,0.0,0.0,1164),(3402,341550,0.0,0.0,0.0,1162),(3403,341552,0.0,0.0,0.0,1166),(3404,341551,0.0,0.0,0.0,1164),(3405,341558,0.0,0.0,0.0,1164),(3406,341557,0.0,0.0,0.0,1160),(3407,341556,0.0,0.0,0.0,1168),(3408,341555,0.0,0.0,0.0,1162),(3409,341554,0.0,0.0,0.0,1166),(3410,341553,0.0,0.0,0.0,1164),(3411,341541,0.0,0.0,0.0,1166),(3412,341545,0.0,0.0,0.0,1160),(3413,341540,0.0,0.0,0.0,1184),(3414,341563,0.0,0.0,0.0,1168),(3415,341530,0.0,0.0,0.0,1184),(3416,341542,0.0,0.0,0.0,1160),(3417,341543,0.0,0.0,0.0,1156),(3418,341546,0.0,0.0,0.0,1162),(3419,341548,0.0,0.0,0.0,1166),(3420,341549,0.0,0.0,0.0,1160),(3421,341572,0.0,0.0,0.0,1178),(3422,342315,0.0,0.0,0.0,810),(3423,342316,0.0,0.0,0.0,780),(3424,342313,0.0,0.0,0.0,820),(3425,342310,0.0,0.0,0.0,812),(3426,342309,0.0,0.0,0.0,810),(3427,342308,0.0,0.0,0.0,420),(3428,339807,0.0,0.0,0.0,600),(3429,339806,0.0,0.0,0.0,605),(3430,339805,0.0,0.0,0.0,605),(3431,339804,0.0,0.0,0.0,600),(3432,339797,0.0,0.0,0.0,605),(3433,339808,0.0,0.0,0.0,605),(3434,341508,0.0,0.0,0.0,610),(3435,339798,0.0,0.0,0.0,610),(3436,339687,0.0,0.0,0.0,610),(3437,341893,0.0,0.0,0.0,615),(3438,339793,0.0,0.0,0.0,615),(3439,342178,0.0,0.0,0.0,810),(3440,342141,0.0,0.0,0.0,935),(3441,342039,0.0,0.0,0.0,370),(3442,342132,0.0,0.0,0.0,945),(3443,339270,0.0,0.0,0.0,615),(3444,342289,0.0,0.0,0.0,605),(3445,342140,0.0,0.0,0.0,475),(3446,342143,0.0,0.0,0.0,910),(3447,342068,0.0,0.0,0.0,595),(3448,342063,0.0,0.0,0.0,815),(3449,342297,0.0,0.0,0.0,925),(3450,342292,0.0,0.0,0.0,935),(3451,342067,0.0,0.0,0.0,805),(3452,342084,0.0,0.0,0.0,620),(3453,342139,0.0,0.0,0.0,810),(3454,342175,0.0,0.0,0.0,810),(3455,342179,0.0,0.0,0.0,810),(3456,342015,0.0,0.0,0.0,930),(3457,342094,0.0,0.0,0.0,780),(3458,339796,0.0,0.0,0.0,625),(3459,339660,0.0,0.0,0.0,1025),(3460,342207,0.0,0.0,0.0,395),(3461,342065,0.0,0.0,0.0,405),(3462,342275,0.0,0.0,0.0,405),(3463,342254,0.0,0.0,0.0,425),(3464,342245,0.0,0.0,0.0,780),(3465,342226,0.0,0.0,0.0,1145),(3466,342176,0.0,0.0,0.0,585),(3467,342283,0.0,0.0,0.0,820),(3468,341975,30.0,24.0,6.0,415),(3469,342279,0.0,0.0,0.0,395),(3470,341707,0.0,0.0,0.0,3680),(3471,342119,0.0,0.0,0.0,2360),(3472,342019,0.0,0.0,0.0,1800),(3473,342154,0.0,0.0,0.0,1734),(3474,342233,0.0,0.0,0.0,1086),(3475,342023,0.0,0.0,0.0,1000),(3476,342271,0.0,0.0,0.0,810),(3477,342277,0.0,0.0,0.0,800),(3478,342204,0.0,0.0,0.0,794),(3479,342270,0.0,0.0,0.0,776),(3480,342145,0.0,0.0,0.0,760),(3481,342152,0.0,0.0,0.0,788),(3482,8465,0.0,0.0,0.0,730),(3483,342134,0.0,0.0,0.0,756),(3484,342314,0.0,0.0,0.0,780),(3485,342311,0.0,0.0,0.0,788),(3486,342064,0.0,0.0,0.0,1172),(3487,339787,0.0,0.0,0.0,1062),(3488,342319,60.0,47.0,33.0,9125),(3489,342312,0.0,0.0,0.0,780),(3490,342216,0.0,0.0,0.0,830),(3491,342329,30.0,25.0,15.0,1124),(3492,342366,46.0,30.0,16.0,1880),(3493,341922,33.0,25.0,11.0,476),(3494,342339,33.0,25.0,11.0,1276),(3495,342325,30.0,24.0,6.0,462),(3496,341808,0.0,0.0,0.0,570),(3497,341809,0.0,0.0,0.0,570),(3498,341810,0.0,0.0,0.0,570),(3499,341811,0.0,0.0,0.0,568),(3500,341812,0.0,0.0,0.0,566),(3501,342153,0.0,0.0,0.0,756),(3502,341836,0.0,0.0,0.0,580),(3503,341806,0.0,0.0,0.0,602),(3504,342093,0.0,0.0,0.0,582),(3505,341802,0.0,0.0,0.0,576),(3506,341796,30.0,24.0,6.0,574),(3507,341890,30.0,24.0,6.0,564),(3508,341871,30.0,24.0,6.0,570),(3509,341794,0.0,0.0,0.0,584),(3510,341793,0.0,0.0,0.0,564),(3511,341852,0.0,0.0,0.0,570),(3512,341961,0.0,0.0,0.0,576),(3513,342227,0.0,0.0,0.0,580),(3514,341818,0.0,0.0,0.0,576),(3515,342194,0.0,0.0,0.0,580),(3516,341795,0.0,0.0,0.0,570),(3517,341815,0.0,0.0,0.0,572),(3518,341816,0.0,0.0,0.0,574),(3519,341817,0.0,0.0,0.0,574),(3520,341814,0.0,0.0,0.0,590),(3521,341800,0.0,0.0,0.0,574),(3522,341801,0.0,0.0,0.0,584),(3523,341799,0.0,0.0,0.0,570),(3524,341807,0.0,0.0,0.0,576),(3525,341847,0.0,0.0,0.0,614),(3526,341848,0.0,0.0,0.0,610),(3527,341849,0.0,0.0,0.0,610),(3528,341850,0.0,0.0,0.0,618),(3529,341851,0.0,0.0,0.0,612),(3530,341883,0.0,0.0,0.0,618),(3531,341868,0.0,0.0,0.0,610),(3532,341884,0.0,0.0,0.0,595),(3533,341878,0.0,0.0,0.0,602),(3534,341864,0.0,0.0,0.0,596),(3535,341855,0.0,0.0,0.0,598),(3536,341879,0.0,0.0,0.0,608),(3537,341875,0.0,0.0,0.0,616),(3538,341887,0.0,0.0,0.0,604),(3539,341891,0.0,0.0,0.0,624),(3540,341853,0.0,0.0,0.0,604),(3541,341885,0.0,0.0,0.0,622),(3542,341881,0.0,0.0,0.0,608),(3543,341820,0.0,0.0,0.0,622),(3544,341865,0.0,0.0,0.0,608),(3545,341936,0.0,0.0,0.0,606),(3546,341858,0.0,0.0,0.0,608),(3547,341863,0.0,0.0,0.0,578),(3548,341888,0.0,0.0,0.0,574),(3549,341873,0.0,0.0,0.0,576),(3550,341880,0.0,0.0,0.0,572),(3551,341886,0.0,0.0,0.0,588),(3552,341867,0.0,0.0,0.0,582),(3553,341862,0.0,0.0,0.0,578),(3554,341826,0.0,0.0,0.0,576),(3555,341827,0.0,0.0,0.0,580),(3556,341828,0.0,0.0,0.0,580),(3557,341829,0.0,0.0,0.0,584),(3558,341830,0.0,0.0,0.0,568),(3559,341831,0.0,0.0,0.0,570),(3560,341832,0.0,0.0,0.0,560),(3561,341833,0.0,0.0,0.0,572),(3562,341834,0.0,0.0,0.0,576),(3563,341892,0.0,0.0,0.0,574),(3564,341876,0.0,0.0,0.0,572),(3565,341857,0.0,0.0,0.0,580),(3566,342341,0.0,0.0,0.0,2118),(3567,341856,0.0,0.0,0.0,608),(3568,341889,0.0,0.0,0.0,604),(3569,341872,0.0,0.0,0.0,618),(3570,341874,0.0,0.0,0.0,604),(3571,341861,0.0,0.0,0.0,606),(3572,341854,0.0,0.0,0.0,604),(3573,341877,0.0,0.0,0.0,602),(3574,341840,0.0,0.0,0.0,594),(3575,341839,0.0,0.0,0.0,610),(3576,341838,0.0,0.0,0.0,598),(3577,341837,0.0,0.0,0.0,600),(3578,341843,0.0,0.0,0.0,598),(3579,341844,0.0,0.0,0.0,604),(3580,341845,0.0,0.0,0.0,612),(3581,341846,0.0,0.0,0.0,606),(3582,341798,0.0,0.0,0.0,598),(3583,341797,0.0,0.0,0.0,610),(3584,341825,0.0,0.0,0.0,598),(3585,341824,0.0,0.0,0.0,604),(3586,341822,0.0,0.0,0.0,596),(3587,341821,0.0,0.0,0.0,604),(3588,341835,0.0,0.0,0.0,598),(3589,341841,0.0,0.0,0.0,602),(3590,341842,0.0,0.0,0.0,604),(3591,342376,0.0,0.0,0.0,982),(3592,342411,0.0,0.0,0.0,596),(3593,342423,0.0,0.0,0.0,1174),(3594,342406,0.0,0.0,0.0,790),(3595,342393,30.0,25.0,15.0,1092),(3596,342377,30.0,25.0,15.0,1168),(3597,342450,30.0,25.0,15.0,1154),(3598,342456,0.0,0.0,0.0,1615),(3599,342431,0.0,0.0,0.0,1136),(3600,342403,0.0,0.0,0.0,1168),(3601,342419,0.0,0.0,0.0,1144),(3602,342307,0.0,0.0,0.0,804),(3603,342209,0.0,0.0,0.0,778),(3604,342479,40.0,30.0,16.0,1480),(3605,342467,30.0,25.0,15.0,752),(3606,342484,30.0,25.0,15.0,722),(3607,342520,46.0,30.0,16.0,2230),(3608,342509,49.0,39.0,29.0,5280),(3609,343860,0.0,0.0,0.0,1210),(3610,342571,0.0,0.0,0.0,815),(3611,343861,0.0,0.0,0.0,390),(3612,342584,30.0,25.0,15.0,730),(3613,342580,30.0,25.0,15.0,762),(3614,342569,46.0,30.0,16.0,1854),(3615,342541,0.0,0.0,0.0,776),(3616,342500,0.0,0.0,0.0,772),(3617,342502,0.0,0.0,0.0,770),(3618,342550,0.0,0.0,0.0,596),(3619,342546,0.0,0.0,0.0,455),(3620,342559,0.0,0.0,0.0,830),(3621,342564,0.0,0.0,0.0,975),(3622,342562,0.0,0.0,0.0,770),(3623,342495,0.0,0.0,0.0,425),(3624,342465,0.0,0.0,0.0,1205),(3625,342548,0.0,0.0,0.0,455),(3626,342470,0.0,0.0,0.0,1290),(3627,342494,0.0,0.0,0.0,1300),(3628,342503,0.0,0.0,0.0,810),(3629,343894,30.0,24.0,6.0,388),(3630,343911,33.0,25.0,11.0,1762),(3631,344217,30.0,24.0,6.0,354),(3632,344255,46.0,30.0,16.0,2034),(3633,344193,0.0,0.0,0.0,904),(3634,342501,0.0,0.0,0.0,550),(3635,343904,0.0,0.0,0.0,1242),(3636,344207,33.0,25.0,11.0,960),(3637,343869,30.0,24.0,6.0,560),(3638,343973,30.0,25.0,15.0,760),(3639,343977,30.0,25.0,15.0,756),(3640,344280,46.0,30.0,16.0,2168),(3641,344381,30.0,25.0,15.0,1140),(3642,344520,30.0,25.0,15.0,1154),(3643,344508,30.0,25.0,15.0,750),(3644,344516,30.0,25.0,15.0,780),(3645,344527,46.0,30.0,16.0,2540),(3646,342430,30.0,25.0,15.0,1194),(3647,342522,30.0,25.0,15.0,776),(3648,342568,30.0,25.0,15.0,805),(3649,343870,30.0,25.0,15.0,760),(3650,342440,30.0,25.0,15.0,1216),(3651,342418,30.0,25.0,15.0,1220),(3652,342443,30.0,25.0,15.0,1218),(3653,344547,39.0,29.0,17.0,1070),(3654,342453,0.0,0.0,0.0,1166),(3655,342478,0.0,0.0,0.0,790),(3656,342330,0.0,0.0,0.0,810),(3657,342458,0.0,0.0,0.0,782),(3658,342401,0.0,0.0,0.0,790),(3659,342379,0.0,0.0,0.0,784),(3660,342352,0.0,0.0,0.0,788),(3661,342428,0.0,0.0,0.0,1540),(3662,342436,0.0,0.0,0.0,1226),(3663,342437,0.0,0.0,0.0,1222),(3664,342438,0.0,0.0,0.0,1226),(3665,342439,0.0,0.0,0.0,1222),(3666,342441,0.0,0.0,0.0,1222),(3667,342442,0.0,0.0,0.0,1228),(3668,342444,0.0,0.0,0.0,1224),(3669,342447,0.0,0.0,0.0,1222),(3670,342445,0.0,0.0,0.0,1222),(3671,342446,0.0,0.0,0.0,1220),(3672,342350,0.0,0.0,0.0,1226),(3673,342349,0.0,0.0,0.0,1228),(3674,342426,0.0,0.0,0.0,1215),(3675,342427,0.0,0.0,0.0,1226),(3676,342429,0.0,0.0,0.0,1228),(3677,342432,0.0,0.0,0.0,1220),(3678,342433,0.0,0.0,0.0,1224),(3679,342434,0.0,0.0,0.0,1220),(3680,342435,0.0,0.0,0.0,1228),(3681,342348,0.0,0.0,0.0,1228),(3682,344213,0.0,0.0,0.0,1224),(3683,342422,0.0,0.0,0.0,1220),(3684,342421,0.0,0.0,0.0,1216),(3685,342412,0.0,0.0,0.0,1222),(3686,342414,0.0,0.0,0.0,1224),(3687,342416,0.0,0.0,0.0,1218),(3688,342415,0.0,0.0,0.0,1224),(3689,342417,0.0,0.0,0.0,1222),(3690,342420,0.0,0.0,0.0,1226),(3691,342342,0.0,0.0,0.0,1216),(3692,342343,0.0,0.0,0.0,1216),(3693,343847,0.0,0.0,0.0,1220),(3694,342405,0.0,0.0,0.0,1220),(3695,342346,0.0,0.0,0.0,1220),(3696,342345,0.0,0.0,0.0,1212),(3697,342344,0.0,0.0,0.0,1210),(3698,342410,0.0,0.0,0.0,1232),(3699,342409,0.0,0.0,0.0,1222),(3700,342408,0.0,0.0,0.0,1216),(3701,342407,0.0,0.0,0.0,1222),(3702,344568,0.0,0.0,0.0,1794),(3703,342265,0.0,0.0,0.0,602),(3704,342260,0.0,0.0,0.0,610),(3705,342261,0.0,0.0,0.0,606),(3706,342263,0.0,0.0,0.0,604),(3707,342256,0.0,0.0,0.0,608),(3708,342257,0.0,0.0,0.0,606),(3709,342258,0.0,0.0,0.0,600),(3710,342252,0.0,0.0,0.0,602),(3711,342253,0.0,0.0,0.0,608),(3712,342255,0.0,0.0,0.0,602),(3713,342248,0.0,0.0,0.0,606),(3714,342249,0.0,0.0,0.0,606),(3715,342250,0.0,0.0,0.0,602),(3716,342251,0.0,0.0,0.0,606),(3717,342244,0.0,0.0,0.0,614),(3718,342246,0.0,0.0,0.0,608),(3719,342241,0.0,0.0,0.0,608),(3720,342242,0.0,0.0,0.0,610),(3721,342243,0.0,0.0,0.0,604),(3722,342222,0.0,0.0,0.0,608),(3723,342229,0.0,0.0,0.0,608),(3724,344431,0.0,0.0,0.0,794),(3725,344275,0.0,0.0,0.0,710),(3726,344215,0.0,0.0,0.0,762),(3727,344214,0.0,0.0,0.0,778),(3728,344216,0.0,0.0,0.0,400),(3729,344470,0.0,0.0,0.0,576),(3730,344277,0.0,0.0,0.0,550),(3731,344211,0.0,0.0,0.0,1460),(3732,344482,0.0,0.0,0.0,1030),(3733,342237,0.0,0.0,0.0,574),(3734,342240,0.0,0.0,0.0,604),(3735,342231,0.0,0.0,0.0,572),(3736,342230,0.0,0.0,0.0,580),(3737,342236,0.0,0.0,0.0,604),(3738,342235,0.0,0.0,0.0,596),(3739,342234,0.0,0.0,0.0,596),(3740,342220,0.0,0.0,0.0,574),(3741,342223,0.0,0.0,0.0,582),(3742,342232,0.0,0.0,0.0,606),(3743,342218,0.0,0.0,0.0,606),(3744,342214,0.0,0.0,0.0,598),(3745,342213,0.0,0.0,0.0,604),(3746,342212,0.0,0.0,0.0,600),(3747,342211,0.0,0.0,0.0,608),(3748,342267,0.0,0.0,0.0,606),(3749,342268,0.0,0.0,0.0,608),(3750,342264,0.0,0.0,0.0,600),(3751,344678,33.0,25.0,11.0,1030),(3752,344598,30.0,24.0,6.0,490),(3753,344780,30.0,24.0,6.0,384),(3754,344897,46.0,30.0,16.0,1810),(3755,344920,30.0,25.0,15.0,1180),(3756,345016,30.0,25.0,15.0,1162),(3757,8459,30.0,25.0,15.0,774),(3758,345061,35.0,25.0,11.0,674),(3759,344866,0.0,0.0,0.0,394),(3760,344872,0.0,0.0,0.0,386),(3761,345034,0.0,0.0,0.0,580),(3762,345036,0.0,0.0,0.0,794),(3763,344960,0.0,0.0,0.0,784),(3764,344861,0.0,0.0,0.0,790),(3765,344764,0.0,0.0,0.0,1350),(3766,344741,0.0,0.0,0.0,800),(3767,344881,0.0,0.0,0.0,674),(3768,345035,0.0,0.0,0.0,1212),(3769,344674,0.0,0.0,0.0,576),(3770,344875,0.0,0.0,0.0,850),(3771,344560,0.0,0.0,0.0,625),(3772,344618,0.0,0.0,0.0,1185),(3773,344711,0.0,0.0,0.0,1925),(3774,344634,0.0,0.0,0.0,2270),(3775,344499,0.0,0.0,0.0,1875),(3776,345332,0.0,0.0,0.0,640),(3777,345331,0.0,0.0,0.0,780),(3778,342347,0.0,0.0,0.0,2505),(3779,345327,0.0,0.0,0.0,830),(3780,345330,0.0,0.0,0.0,465),(3781,345419,0.0,0.0,0.0,425),(3782,345324,0.0,0.0,0.0,785),(3783,345328,0.0,0.0,0.0,835),(3784,344743,0.0,0.0,0.0,815),(3785,342215,0.0,0.0,0.0,615),(3786,342224,0.0,0.0,0.0,605),(3787,342262,0.0,0.0,0.0,610),(3788,342259,0.0,0.0,0.0,620),(3789,342238,0.0,0.0,0.0,620),(3790,342228,0.0,0.0,0.0,615),(3791,342269,0.0,0.0,0.0,620),(3792,342266,0.0,0.0,0.0,620),(3793,342217,0.0,0.0,0.0,615),(3794,342239,0.0,0.0,0.0,620),(3795,342247,0.0,0.0,0.0,625),(3796,342221,0.0,0.0,0.0,620),(3797,345335,0.0,0.0,0.0,830),(3798,345336,0.0,0.0,0.0,835),(3799,344767,0.0,0.0,0.0,785),(3800,344724,0.0,0.0,0.0,800),(3801,344867,0.0,0.0,0.0,845),(3802,345333,0.0,0.0,0.0,1240),(3803,345412,0.0,0.0,0.0,1680),(3804,345334,0.0,0.0,0.0,835),(3805,345325,0.0,0.0,0.0,785),(3806,345329,0.0,0.0,0.0,785),(3807,345598,30.0,25.0,15.0,594),(3808,345444,30.0,25.0,15.0,596),(3809,344934,30.0,25.0,15.0,596),(3810,345586,0.0,0.0,0.0,660),(3811,345560,0.0,0.0,0.0,660),(3812,345413,0.0,0.0,0.0,660),(3813,345314,0.0,0.0,0.0,660),(3814,345125,0.0,0.0,0.0,660),(3815,345618,0.0,0.0,0.0,665),(3816,345665,0.0,0.0,0.0,665),(3817,345029,0.0,0.0,0.0,905),(3818,344944,0.0,0.0,0.0,660),(3819,345049,0.0,0.0,0.0,690),(3820,345477,30.0,25.0,15.0,596),(3821,345464,30.0,25.0,15.0,596),(3822,345132,30.0,25.0,15.0,596),(3823,345587,30.0,25.0,15.0,596),(3824,345631,0.0,0.0,0.0,385),(3825,345337,0.0,0.0,0.0,830),(3826,345632,0.0,0.0,0.0,615),(3827,345585,0.0,0.0,0.0,795),(3828,345326,0.0,0.0,0.0,835),(3829,341791,30.0,25.0,15.0,1022),(3830,345401,30.0,24.0,14.0,618),(3831,345761,33.0,25.0,11.0,696),(3832,345788,39.0,29.0,17.0,1030),(3833,344371,30.0,25.0,15.0,1210),(3834,345842,30.0,25.0,15.0,1186),(3835,344731,0.0,0.0,0.0,2936),(3836,345678,0.0,0.0,0.0,3294),(3837,344854,0.0,0.0,0.0,764),(3838,345619,0.0,0.0,0.0,1215),(3839,345453,0.0,0.0,0.0,800),(3840,346024,30.0,25.0,15.0,1116),(3841,346042,33.0,25.0,11.0,944),(3842,342525,0.0,0.0,0.0,585),(3843,342524,0.0,0.0,0.0,590),(3844,342526,0.0,0.0,0.0,585),(3845,342527,0.0,0.0,0.0,575),(3846,342535,0.0,0.0,0.0,585),(3847,342552,0.0,0.0,0.0,590),(3848,342582,0.0,0.0,0.0,580),(3849,342533,0.0,0.0,0.0,590),(3850,342532,0.0,0.0,0.0,580),(3851,344693,0.0,0.0,0.0,585),(3852,342544,0.0,0.0,0.0,556),(3853,342528,0.0,0.0,0.0,566),(3854,342549,0.0,0.0,0.0,570),(3855,342547,0.0,0.0,0.0,560),(3856,342545,0.0,0.0,0.0,560),(3857,342537,0.0,0.0,0.0,556),(3858,342542,0.0,0.0,0.0,580),(3859,342534,0.0,0.0,0.0,560),(3860,342554,0.0,0.0,0.0,570),(3861,342555,0.0,0.0,0.0,560),(3862,342556,0.0,0.0,0.0,560),(3863,342557,0.0,0.0,0.0,550),(3864,342539,0.0,0.0,0.0,550),(3865,342540,0.0,0.0,0.0,560),(3866,342538,0.0,0.0,0.0,580),(3867,342530,0.0,0.0,0.0,560),(3868,342529,0.0,0.0,0.0,546),(3869,342553,0.0,0.0,0.0,585),(3870,342551,0.0,0.0,0.0,580),(3871,342543,0.0,0.0,0.0,580),(3872,345834,0.0,0.0,0.0,980),(3873,345852,0.0,0.0,0.0,580),(3874,346691,30.0,25.0,15.0,935),(3875,346690,30.0,25.0,15.0,600),(3876,346685,30.0,25.0,15.0,600),(3877,346258,46.0,29.0,22.0,2454),(3878,346271,30.0,25.0,15.0,772),(3879,346205,33.0,25.0,11.0,950),(3880,346328,30.0,25.0,15.0,600),(3881,346154,30.0,25.0,15.0,600),(3882,346045,30.0,25.0,15.0,872),(3883,342577,47.5,41.5,20.5,4242),(3884,346252,46.0,29.0,22.0,2560),(3885,346232,0.0,0.0,0.0,665),(3886,346333,0.0,0.0,0.0,660),(3887,346305,0.0,0.0,0.0,815),(3888,346562,0.0,0.0,0.0,940),(3889,346009,30.0,25.0,15.0,635),(3890,346168,0.0,0.0,0.0,400),(3891,346421,0.0,0.0,0.0,360),(3892,346174,0.0,0.0,0.0,785),(3893,346619,0.0,0.0,0.0,425),(3894,346628,0.0,0.0,0.0,785),(3895,345983,0.0,0.0,0.0,810),(3896,346284,0.0,0.0,0.0,830),(3897,346264,0.0,0.0,0.0,985),(3898,345940,0.0,0.0,0.0,965),(3899,346651,0.0,0.0,0.0,405),(3900,345945,0.0,0.0,0.0,815),(3901,346538,0.0,0.0,0.0,970),(3902,346214,0.0,0.0,0.0,970),(3903,346307,0.0,0.0,0.0,780),(3904,346059,0.0,0.0,0.0,770),(3905,346289,0.0,0.0,0.0,1265),(3906,346227,0.0,0.0,0.0,665),(3907,346369,0.0,0.0,0.0,790),(3908,346051,0.0,0.0,0.0,785),(3909,346687,0.0,0.0,0.0,790),(3910,346901,30.0,25.0,15.0,1488),(3911,346850,30.0,25.0,15.0,1166),(3912,346766,30.0,25.0,15.0,1190),(3913,346891,30.0,25.0,15.0,600),(3914,346879,30.0,25.0,15.0,600),(3915,346654,30.0,25.0,15.0,776),(3916,347248,30.0,25.0,15.0,1054),(3917,347020,30.0,25.0,15.0,1164),(3918,347045,33.0,25.0,11.0,854),(3919,347076,33.0,25.0,11.0,940),(3920,347234,33.0,25.0,11.0,570),(3921,347087,30.0,25.0,15.0,746),(3922,347002,46.0,30.0,16.0,1782),(3923,345307,30.0,25.0,15.0,596),(3924,347072,30.0,25.0,15.0,600),(3925,347253,30.0,25.0,15.0,1062),(3926,347017,30.0,25.0,15.0,1194),(3927,347034,30.0,25.0,15.0,774),(3928,347181,30.0,25.0,15.0,624),(3929,347238,30.0,25.0,15.0,600),(3930,346902,0.0,0.0,0.0,665),(3931,346759,0.0,0.0,0.0,665),(3932,346810,0.0,0.0,0.0,660),(3933,346733,0.0,0.0,0.0,660),(3934,346789,0.0,0.0,0.0,665),(3935,346720,0.0,0.0,0.0,1050),(3936,346905,0.0,0.0,0.0,810),(3937,346550,0.0,0.0,0.0,605),(3938,347307,33.0,25.0,11.0,936),(3939,346974,0.0,0.0,0.0,2525),(3940,346622,0.0,0.0,0.0,400),(3941,347060,0.0,0.0,0.0,660),(3942,347025,0.0,0.0,0.0,660),(3943,347055,0.0,0.0,0.0,665),(3944,347108,0.0,0.0,0.0,655),(3945,347085,0.0,0.0,0.0,810),(3946,347251,0.0,0.0,0.0,905),(3947,346983,30.0,25.0,15.0,786),(3948,346380,30.0,25.0,15.0,786),(3949,345145,30.0,25.0,15.0,784),(3950,346027,30.0,25.0,15.0,784),(3951,346411,30.0,25.0,15.0,784),(3952,345811,30.0,25.0,15.0,784),(3953,8676,39.0,29.0,17.0,1585),(3954,345506,30.0,24.0,14.0,575),(3955,345776,30.0,24.0,14.0,575),(3956,345654,30.0,24.0,14.0,850),(3957,347459,46.0,30.0,16.0,1470),(3958,346278,30.0,24.0,14.0,1245),(3959,345755,30.0,24.0,14.0,1240),(3960,345992,30.0,24.0,14.0,1235),(3961,346095,30.0,24.0,14.0,790),(3962,344951,30.0,24.0,14.0,815),(3963,346693,30.0,24.0,14.0,580),(3964,347363,30.0,24.0,14.0,625),(3965,343863,30.0,24.0,14.0,1735),(3966,345630,30.0,24.0,14.0,1645),(3967,344852,30.0,24.0,14.0,2020),(3968,347596,30.0,25.0,15.0,784),(3969,347455,30.0,25.0,15.0,784),(3970,347046,30.0,25.0,15.0,784),(3971,347259,30.0,25.0,15.0,782),(3972,347438,30.0,24.0,14.0,710),(3973,5198,30.0,24.0,14.0,660),(3974,347279,30.0,24.0,14.0,775),(3975,347621,30.0,24.0,14.0,625),(3976,344561,0.0,0.0,0.0,605),(3977,344676,0.0,0.0,0.0,605),(3978,344430,0.0,0.0,0.0,600),(3979,344742,0.0,0.0,0.0,590),(3980,344745,0.0,0.0,0.0,600),(3981,346308,0.0,0.0,0.0,590),(3982,345033,0.0,0.0,0.0,600),(3983,345604,0.0,0.0,0.0,610),(3984,344856,0.0,0.0,0.0,600),(3985,344859,0.0,0.0,0.0,600),(3986,344675,0.0,0.0,0.0,605),(3987,342480,0.0,0.0,0.0,600),(3988,344858,0.0,0.0,0.0,600),(3989,345973,0.0,0.0,0.0,1220),(3990,345961,0.0,0.0,0.0,1210),(3991,345957,0.0,0.0,0.0,1210),(3992,345967,0.0,0.0,0.0,1210),(3993,345951,0.0,0.0,0.0,1210),(3994,345972,0.0,0.0,0.0,1210),(3995,345962,0.0,0.0,0.0,1210),(3996,345965,0.0,0.0,0.0,1210),(3997,345969,0.0,0.0,0.0,1210),(3998,345970,0.0,0.0,0.0,1210),(3999,345956,0.0,0.0,0.0,1210),(4000,345954,0.0,0.0,0.0,1210),(4001,345952,0.0,0.0,0.0,1212),(4002,345949,0.0,0.0,0.0,1212),(4003,345946,0.0,0.0,0.0,1210),(4004,345607,0.0,0.0,0.0,1210),(4005,345605,0.0,0.0,0.0,1210),(4006,345971,0.0,0.0,0.0,1225),(4007,345964,0.0,0.0,0.0,1205),(4008,346383,0.0,0.0,0.0,1225),(4009,342576,0.0,0.0,0.0,1220),(4010,345959,0.0,0.0,0.0,1220),(4011,345960,0.0,0.0,0.0,1225),(4012,345966,0.0,0.0,0.0,1225),(4013,345968,0.0,0.0,0.0,1220),(4014,345955,0.0,0.0,0.0,1225),(4015,345953,0.0,0.0,0.0,1225),(4016,345950,0.0,0.0,0.0,1220),(4017,345948,0.0,0.0,0.0,1220),(4018,345947,0.0,0.0,0.0,1225),(4019,345606,0.0,0.0,0.0,1220),(4020,345974,0.0,0.0,0.0,1220),(4021,346913,0.0,0.0,0.0,815),(4022,345459,0.0,0.0,0.0,792),(4023,345052,0.0,0.0,0.0,825),(4024,346749,0.0,0.0,0.0,792),(4025,346854,0.0,0.0,0.0,792),(4026,345069,0.0,0.0,0.0,792),(4027,346618,0.0,0.0,0.0,794),(4028,347603,0.0,0.0,0.0,790),(4029,346247,0.0,0.0,0.0,792),(4030,347545,0.0,0.0,0.0,840),(4031,347591,0.0,0.0,0.0,820),(4032,345485,0.0,0.0,0.0,820),(4033,347110,0.0,0.0,0.0,845),(4034,347568,0.0,0.0,0.0,855),(4035,347601,0.0,0.0,0.0,840),(4036,347551,0.0,0.0,0.0,840),(4037,345609,0.0,0.0,0.0,1245),(4038,345982,0.0,0.0,0.0,1240),(4039,345977,0.0,0.0,0.0,1235),(4040,345978,0.0,0.0,0.0,1235),(4041,345979,0.0,0.0,0.0,1245),(4042,345976,0.0,0.0,0.0,1235),(4043,345975,0.0,0.0,0.0,1240),(4044,345991,0.0,0.0,0.0,1240),(4045,345995,0.0,0.0,0.0,1240),(4046,345994,0.0,0.0,0.0,1240),(4047,345988,0.0,0.0,0.0,1240),(4048,345989,0.0,0.0,0.0,1240),(4049,345987,0.0,0.0,0.0,1245),(4050,345986,0.0,0.0,0.0,1235),(4051,345984,0.0,0.0,0.0,1240),(4052,345985,0.0,0.0,0.0,1235),(4053,345980,0.0,0.0,0.0,1245),(4054,345981,0.0,0.0,0.0,1235),(4055,345998,0.0,0.0,0.0,1240),(4056,345990,0.0,0.0,0.0,1235),(4057,345999,0.0,0.0,0.0,1235),(4058,346007,0.0,0.0,0.0,1230),(4059,345993,0.0,0.0,0.0,1200),(4060,346000,0.0,0.0,0.0,1195),(4061,346001,0.0,0.0,0.0,1235),(4062,346004,0.0,0.0,0.0,1230),(4063,346003,0.0,0.0,0.0,1265),(4064,346002,0.0,0.0,0.0,1230),(4065,346005,0.0,0.0,0.0,1235),(4066,346006,0.0,0.0,0.0,1235),(4067,345996,0.0,0.0,0.0,1235),(4068,345997,0.0,0.0,0.0,1265),(4069,345614,0.0,0.0,0.0,1234),(4070,345613,0.0,0.0,0.0,1242),(4071,345610,0.0,0.0,0.0,1236),(4072,346802,0.0,0.0,0.0,818),(4073,345475,0.0,0.0,0.0,816),(4074,347097,0.0,0.0,0.0,818),(4075,344987,0.0,0.0,0.0,816),(4076,346912,0.0,0.0,0.0,820),(4077,346517,0.0,0.0,0.0,820),(4078,345822,0.0,0.0,0.0,820),(4079,347099,0.0,0.0,0.0,820),(4080,346413,0.0,0.0,0.0,820),(4081,345679,0.0,0.0,0.0,820),(4082,345841,0.0,0.0,0.0,820),(4083,345939,0.0,0.0,0.0,820),(4084,346090,0.0,0.0,0.0,820),(4085,345785,0.0,0.0,0.0,820),(4086,345801,0.0,0.0,0.0,820),(4087,345798,0.0,0.0,0.0,820),(4088,345857,0.0,0.0,0.0,820),(4089,346050,0.0,0.0,0.0,820),(4090,346145,0.0,0.0,0.0,820),(4091,346189,0.0,0.0,0.0,820),(4092,347664,0.0,0.0,0.0,820),(4093,347646,0.0,0.0,0.0,820),(4094,347631,0.0,0.0,0.0,820),(4095,345511,0.0,0.0,0.0,790),(4096,346860,0.0,0.0,0.0,790),(4097,347246,0.0,0.0,0.0,790),(4098,346962,0.0,0.0,0.0,790),(4099,345522,0.0,0.0,0.0,790),(4100,346772,0.0,0.0,0.0,790),(4101,345025,0.0,0.0,0.0,790),(4102,345697,0.0,0.0,0.0,790),(4103,346888,0.0,0.0,0.0,790),(4104,346422,0.0,0.0,0.0,790),(4105,346708,0.0,0.0,0.0,790),(4106,346293,0.0,0.0,0.0,788),(4107,346341,0.0,0.0,0.0,520),(4108,345712,0.0,0.0,0.0,790),(4109,346515,0.0,0.0,0.0,790),(4110,346511,0.0,0.0,0.0,790),(4111,346309,0.0,0.0,0.0,790),(4112,346299,0.0,0.0,0.0,790),(4113,346286,0.0,0.0,0.0,790),(4114,346253,0.0,0.0,0.0,790),(4115,346243,0.0,0.0,0.0,790),(4116,346193,0.0,0.0,0.0,790),(4117,345670,0.0,0.0,0.0,790),(4118,345643,0.0,0.0,0.0,790),(4119,345623,0.0,0.0,0.0,790),(4120,345576,0.0,0.0,0.0,790),(4121,345568,0.0,0.0,0.0,790),(4122,345483,0.0,0.0,0.0,790),(4123,345472,0.0,0.0,0.0,790),(4124,347658,0.0,0.0,0.0,820),(4125,347635,0.0,0.0,0.0,820),(4126,345770,0.0,0.0,0.0,820),(4127,346254,0.0,0.0,0.0,820),(4128,347052,0.0,0.0,0.0,820),(4129,346734,0.0,0.0,0.0,820),(4130,345363,0.0,0.0,0.0,820),(4131,346657,0.0,0.0,0.0,820),(4132,346992,0.0,0.0,0.0,820),(4133,346729,0.0,0.0,0.0,820),(4134,346060,0.0,0.0,0.0,820),(4135,346763,0.0,0.0,0.0,820),(4136,347051,0.0,0.0,0.0,820),(4137,347240,0.0,0.0,0.0,820),(4138,346022,0.0,0.0,0.0,820),(4139,346073,0.0,0.0,0.0,820),(4140,346770,0.0,0.0,0.0,820),(4141,345525,0.0,0.0,0.0,820),(4142,347054,0.0,0.0,0.0,820),(4143,347074,0.0,0.0,0.0,820),(4144,347497,0.0,0.0,0.0,820),(4145,345456,0.0,0.0,0.0,820),(4146,347342,0.0,0.0,0.0,820),(4147,345574,0.0,0.0,0.0,820),(4148,345671,0.0,0.0,0.0,820),(4149,347075,0.0,0.0,0.0,820),(4150,347473,0.0,0.0,0.0,820),(4151,345524,0.0,0.0,0.0,820),(4152,346946,0.0,0.0,0.0,790),(4153,345695,0.0,0.0,0.0,790),(4154,347222,0.0,0.0,0.0,790),(4155,346674,0.0,0.0,0.0,790),(4156,347702,0.0,0.0,0.0,790),(4157,346712,0.0,0.0,0.0,790),(4158,346758,0.0,0.0,0.0,790),(4159,346870,0.0,0.0,0.0,790),(4160,345490,0.0,0.0,0.0,820),(4161,346989,0.0,0.0,0.0,820),(4162,347199,0.0,0.0,0.0,820),(4163,346841,0.0,0.0,0.0,820),(4164,346799,0.0,0.0,0.0,820),(4165,347589,0.0,0.0,0.0,820),(4166,347565,0.0,0.0,0.0,820),(4167,347117,0.0,0.0,0.0,820),(4168,347578,0.0,0.0,0.0,820),(4169,346821,0.0,0.0,0.0,820),(4170,346510,0.0,0.0,0.0,820),(4171,347294,0.0,0.0,0.0,790),(4172,347281,0.0,0.0,0.0,790),(4173,347278,0.0,0.0,0.0,790),(4174,347275,0.0,0.0,0.0,790),(4175,347271,0.0,0.0,0.0,790),(4176,347263,0.0,0.0,0.0,790),(4177,346228,0.0,0.0,0.0,790),(4178,346894,0.0,0.0,0.0,790),(4179,346038,0.0,0.0,0.0,790),(4180,347102,0.0,0.0,0.0,790),(4181,346303,0.0,0.0,0.0,790),(4182,347299,0.0,0.0,0.0,790),(4183,347015,0.0,0.0,0.0,790),(4184,345405,0.0,0.0,0.0,790),(4185,347317,0.0,0.0,0.0,790),(4186,347316,0.0,0.0,0.0,790),(4187,347430,0.0,0.0,0.0,820),(4188,346661,0.0,0.0,0.0,820),(4189,346916,0.0,0.0,0.0,820),(4190,346658,0.0,0.0,0.0,820),(4191,346400,0.0,0.0,0.0,820),(4192,347423,0.0,0.0,0.0,820),(4193,346398,0.0,0.0,0.0,820),(4194,346903,0.0,0.0,0.0,820),(4195,346395,0.0,0.0,0.0,820),(4196,347542,0.0,0.0,0.0,820),(4197,346925,0.0,0.0,0.0,820),(4198,347192,0.0,0.0,0.0,820),(4199,345114,0.0,0.0,0.0,820),(4200,347082,0.0,0.0,0.0,820),(4201,346423,0.0,0.0,0.0,820),(4202,347049,0.0,0.0,0.0,820),(4203,345291,0.0,0.0,0.0,820),(4204,345853,0.0,0.0,0.0,820),(4205,346815,0.0,0.0,0.0,820),(4206,347730,0.0,0.0,0.0,820),(4207,347684,0.0,0.0,0.0,820),(4208,347756,0.0,0.0,0.0,820),(4209,347697,0.0,0.0,0.0,820),(4210,347537,0.0,0.0,0.0,820),(4211,346151,0.0,0.0,0.0,820),(4212,346416,0.0,0.0,0.0,820),(4213,346809,0.0,0.0,0.0,820),(4214,347179,0.0,0.0,0.0,820),(4215,346191,0.0,0.0,0.0,820),(4216,345423,0.0,0.0,0.0,820),(4217,345602,0.0,0.0,0.0,820),(4218,346115,0.0,0.0,0.0,820),(4219,346883,0.0,0.0,0.0,820),(4220,346889,0.0,0.0,0.0,820),(4221,346895,0.0,0.0,0.0,820),(4222,346386,0.0,0.0,0.0,820),(4223,347412,0.0,0.0,0.0,820),(4224,346049,0.0,0.0,0.0,820),(4225,346187,0.0,0.0,0.0,820),(4226,346765,0.0,0.0,0.0,820),(4227,346878,0.0,0.0,0.0,820),(4228,347525,0.0,0.0,0.0,790),(4229,347507,0.0,0.0,0.0,790),(4230,347465,0.0,0.0,0.0,790),(4231,347462,0.0,0.0,0.0,790),(4232,347448,0.0,0.0,0.0,790),(4233,347439,0.0,0.0,0.0,790),(4234,347436,0.0,0.0,0.0,790),(4235,347435,0.0,0.0,0.0,790),(4236,347386,0.0,0.0,0.0,790),(4237,347381,0.0,0.0,0.0,790),(4238,347377,0.0,0.0,0.0,790),(4239,347345,0.0,0.0,0.0,790),(4240,347645,0.0,0.0,0.0,790),(4241,347338,0.0,0.0,0.0,790),(4242,347331,0.0,0.0,0.0,790),(4243,347328,0.0,0.0,0.0,790),(4244,346688,0.0,0.0,0.0,820),(4245,347521,0.0,0.0,0.0,544),(4246,347458,0.0,0.0,0.0,544),(4247,345378,0.0,0.0,0.0,544),(4248,346897,0.0,0.0,0.0,544),(4249,345848,0.0,0.0,0.0,544),(4250,345765,0.0,0.0,0.0,544),(4251,347531,0.0,0.0,0.0,630),(4252,347437,0.0,0.0,0.0,630),(4253,347334,0.0,0.0,0.0,630),(4254,346102,0.0,0.0,0.0,820),(4255,345303,0.0,0.0,0.0,820),(4256,345076,0.0,0.0,0.0,820),(4257,346250,0.0,0.0,0.0,820),(4258,346954,0.0,0.0,0.0,820),(4259,345275,0.0,0.0,0.0,820),(4260,345310,0.0,0.0,0.0,820),(4261,345157,0.0,0.0,0.0,820),(4262,346663,0.0,0.0,0.0,820),(4263,347346,0.0,0.0,0.0,820),(4264,346768,0.0,0.0,0.0,820),(4265,347013,0.0,0.0,0.0,820),(4266,346300,0.0,0.0,0.0,820),(4267,346827,0.0,0.0,0.0,820),(4268,345621,0.0,0.0,0.0,790),(4269,345014,0.0,0.0,0.0,790),(4270,345015,0.0,0.0,0.0,790),(4271,345042,0.0,0.0,0.0,790),(4272,345048,0.0,0.0,0.0,790),(4273,345110,0.0,0.0,0.0,790),(4274,345503,0.0,0.0,0.0,820),(4275,346920,0.0,0.0,0.0,820),(4276,345121,0.0,0.0,0.0,790),(4277,345124,0.0,0.0,0.0,790),(4278,345129,0.0,0.0,0.0,790),(4279,345135,0.0,0.0,0.0,790),(4280,345152,0.0,0.0,0.0,790),(4281,347084,0.0,0.0,0.0,820),(4282,347023,0.0,0.0,0.0,820),(4283,346981,0.0,0.0,0.0,820),(4284,346843,0.0,0.0,0.0,820),(4285,346829,0.0,0.0,0.0,820),(4286,346782,0.0,0.0,0.0,820),(4287,346777,0.0,0.0,0.0,820),(4288,346709,0.0,0.0,0.0,820),(4289,344976,0.0,0.0,0.0,820),(4290,345339,0.0,0.0,0.0,820),(4291,345406,0.0,0.0,0.0,820),(4292,345040,0.0,0.0,0.0,820),(4293,346784,0.0,0.0,0.0,820),(4294,345067,0.0,0.0,0.0,820),(4295,345312,0.0,0.0,0.0,820),(4296,345355,0.0,0.0,0.0,820),(4297,347078,0.0,0.0,0.0,820),(4298,346351,0.0,0.0,0.0,820),(4299,345508,0.0,0.0,0.0,820),(4300,346346,0.0,0.0,0.0,820),(4301,347189,0.0,0.0,0.0,816),(4302,345487,0.0,0.0,0.0,814),(4303,346756,0.0,0.0,0.0,818),(4304,345527,0.0,0.0,0.0,816),(4305,346221,0.0,0.0,0.0,818),(4306,347704,0.0,0.0,0.0,820),(4307,347708,0.0,0.0,0.0,820),(4308,347713,0.0,0.0,0.0,820),(4309,347740,0.0,0.0,0.0,820),(4310,347216,0.0,0.0,0.0,820),(4311,346700,0.0,0.0,0.0,820),(4312,347482,0.0,0.0,0.0,820),(4313,346265,0.0,0.0,0.0,820),(4314,346754,0.0,0.0,0.0,820),(4315,345588,0.0,0.0,0.0,820),(4316,346730,0.0,0.0,0.0,820),(4317,347053,0.0,0.0,0.0,820),(4318,339042,0.0,0.0,0.0,724),(4319,347773,0.0,0.0,0.0,1146),(4320,346169,0.0,0.0,0.0,1346),(4321,347714,0.0,0.0,0.0,2492),(4322,347468,0.0,0.0,0.0,1894),(4323,345316,0.0,0.0,0.0,2930),(4324,347389,0.0,0.0,0.0,580),(4325,344744,0.0,0.0,0.0,388),(4326,342425,0.0,0.0,0.0,584),(4327,344868,0.0,0.0,0.0,560),(4328,344862,0.0,0.0,0.0,560),(4329,344871,0.0,0.0,0.0,564),(4330,344870,0.0,0.0,0.0,556),(4331,347743,0.0,0.0,0.0,774),(4332,346407,0.0,0.0,0.0,800),(4333,346149,0.0,0.0,0.0,768),(4334,344874,0.0,0.0,0.0,584),(4335,346270,0.0,0.0,0.0,584),(4336,344860,0.0,0.0,0.0,580),(4337,346750,0.0,0.0,0.0,790),(4338,346061,0.0,0.0,0.0,790),(4339,347200,0.0,0.0,0.0,790),(4340,346549,0.0,0.0,0.0,790),(4341,347480,0.0,0.0,0.0,790),(4342,346163,0.0,0.0,0.0,790),(4343,346324,0.0,0.0,0.0,790),(4344,344876,0.0,0.0,0.0,596),(4345,344877,0.0,0.0,0.0,582),(4346,344855,0.0,0.0,0.0,590),(4347,344863,0.0,0.0,0.0,580),(4348,344865,0.0,0.0,0.0,580),(4349,344202,0.0,0.0,0.0,770),(4350,347300,0.0,0.0,0.0,938),(4351,347775,0.0,0.0,0.0,924),(4352,346235,0.0,0.0,0.0,820),(4353,347220,0.0,0.0,0.0,820),(4354,347321,0.0,0.0,0.0,820),(4355,347485,0.0,0.0,0.0,820),(4356,347696,0.0,0.0,0.0,820),(4357,347069,0.0,0.0,0.0,790),(4358,347204,0.0,0.0,0.0,790),(4359,346105,0.0,0.0,0.0,790),(4360,346418,0.0,0.0,0.0,790),(4361,345688,0.0,0.0,0.0,790),(4362,345806,0.0,0.0,0.0,790),(4363,345778,0.0,0.0,0.0,790),(4364,347314,0.0,0.0,0.0,790),(4365,346543,0.0,0.0,0.0,790),(4366,345958,0.0,0.0,0.0,1242),(4367,346079,0.0,0.0,0.0,1210),(4368,347193,0.0,0.0,0.0,922),(4369,346662,0.0,0.0,0.0,770),(4370,346224,0.0,0.0,0.0,820),(4371,346717,0.0,0.0,0.0,820),(4372,346541,0.0,0.0,0.0,820),(4373,346037,0.0,0.0,0.0,820),(4374,346938,0.0,0.0,0.0,820),(4375,346968,0.0,0.0,0.0,820),(4376,345436,0.0,0.0,0.0,820),(4377,346748,0.0,0.0,0.0,820),(4378,345658,0.0,0.0,0.0,820),(4379,347563,0.0,0.0,0.0,820),(4380,346248,0.0,0.0,0.0,820),(4381,347009,0.0,0.0,0.0,790),(4382,347077,0.0,0.0,0.0,790),(4383,346961,0.0,0.0,0.0,790),(4384,346329,0.0,0.0,0.0,790),(4385,347352,0.0,0.0,0.0,790),(4386,346229,0.0,0.0,0.0,790),(4387,347751,0.0,0.0,0.0,790),(4388,346984,0.0,0.0,0.0,790),(4389,346741,0.0,0.0,0.0,790),(4390,346857,0.0,0.0,0.0,790),(4391,347445,0.0,0.0,0.0,790),(4392,347041,0.0,0.0,0.0,790),(4393,346711,0.0,0.0,0.0,790),(4394,347027,0.0,0.0,0.0,790),(4395,347567,0.0,0.0,0.0,790),(4396,347744,30.0,25.0,15.0,788),(4397,347735,30.0,25.0,15.0,600),(4398,347723,39.0,29.0,17.0,1470),(4399,345120,0.0,0.0,0.0,790),(4400,346152,0.0,0.0,0.0,820),(4401,347716,0.0,0.0,0.0,820),(4402,347266,0.0,0.0,0.0,820),(4403,347227,0.0,0.0,0.0,820),(4404,346680,0.0,0.0,0.0,820),(4405,347617,0.0,0.0,0.0,820),(4406,346791,0.0,0.0,0.0,820),(4407,347530,0.0,0.0,0.0,820),(4408,345713,0.0,0.0,0.0,820),(4409,346950,0.0,0.0,0.0,820),(4410,347486,0.0,0.0,0.0,820),(4411,347487,0.0,0.0,0.0,820),(4412,346268,0.0,0.0,0.0,820),(4413,347233,0.0,0.0,0.0,820),(4414,346996,0.0,0.0,0.0,820),(4415,347755,0.0,0.0,0.0,820),(4416,347722,0.0,0.0,0.0,820),(4417,346723,0.0,0.0,0.0,820),(4418,347739,0.0,0.0,0.0,820),(4419,346735,0.0,0.0,0.0,820),(4420,346781,0.0,0.0,0.0,820),(4421,347747,30.0,25.0,15.0,956),(4422,347641,33.0,25.0,11.0,1144),(4423,347998,30.0,24.0,14.0,640),(4424,348000,30.0,24.0,14.0,660),(4425,348047,30.0,24.0,14.0,640),(4426,348168,30.0,24.0,14.0,640),(4427,348252,30.0,24.0,14.0,645),(4428,348155,30.0,24.0,14.0,640),(4429,348116,30.0,24.0,14.0,640),(4430,348341,30.0,25.0,15.0,596),(4431,348615,30.0,25.0,15.0,600),(4432,348663,30.0,25.0,15.0,600),(4433,348301,30.0,25.0,15.0,782),(4434,347984,30.0,25.0,15.0,996),(4435,347937,30.0,24.0,14.0,640),(4436,348054,30.0,24.0,14.0,640),(4437,348637,30.0,24.0,14.0,640),(4438,347865,30.0,24.0,14.0,910),(4439,347841,30.0,24.0,14.0,805),(4440,347915,33.0,25.0,11.0,730),(4441,347901,33.0,25.0,11.0,745),(4442,348124,46.0,29.0,22.0,2900),(4443,348194,39.0,29.0,17.0,1850),(4444,348005,30.0,24.0,14.0,640),(4445,348267,30.0,24.0,14.0,665),(4446,348122,30.0,24.0,14.0,640),(4447,347890,30.0,24.0,14.0,640),(4448,348307,30.0,24.0,14.0,670),(4449,348622,30.0,24.0,6.0,770),(4450,347866,0.0,0.0,0.0,790),(4451,347859,0.0,0.0,0.0,790),(4452,347852,0.0,0.0,0.0,790),(4453,347846,0.0,0.0,0.0,790),(4454,347842,0.0,0.0,0.0,794),(4455,347823,0.0,0.0,0.0,790),(4456,347999,0.0,0.0,0.0,790),(4457,347962,0.0,0.0,0.0,790),(4458,347959,0.0,0.0,0.0,790),(4459,347920,0.0,0.0,0.0,790),(4460,347835,0.0,0.0,0.0,790),(4461,347811,0.0,0.0,0.0,794),(4462,348026,0.0,0.0,0.0,790),(4463,347792,0.0,0.0,0.0,790),(4464,347774,0.0,0.0,0.0,790),(4465,348373,0.0,0.0,0.0,790),(4466,348014,0.0,0.0,0.0,790),(4467,348140,0.0,0.0,0.0,790),(4468,348131,0.0,0.0,0.0,790),(4469,348107,0.0,0.0,0.0,790),(4470,348087,0.0,0.0,0.0,790),(4471,348086,0.0,0.0,0.0,790),(4472,348029,0.0,0.0,0.0,790),(4473,348157,0.0,0.0,0.0,790),(4474,348153,0.0,0.0,0.0,790),(4475,348148,0.0,0.0,0.0,790),(4476,348246,0.0,0.0,0.0,790),(4477,348243,0.0,0.0,0.0,790),(4478,348241,0.0,0.0,0.0,790),(4479,348232,0.0,0.0,0.0,790),(4480,348169,0.0,0.0,0.0,790),(4481,348158,0.0,0.0,0.0,790),(4482,348350,0.0,0.0,0.0,790),(4483,348333,0.0,0.0,0.0,790),(4484,348291,0.0,0.0,0.0,790),(4485,348271,0.0,0.0,0.0,790),(4486,348871,30.0,25.0,15.0,1220),(4487,339273,30.0,24.0,6.0,744),(4488,348202,30.0,25.0,15.0,606),(4489,348273,30.0,25.0,15.0,774),(4490,348272,30.0,25.0,15.0,790),(4491,348600,30.0,25.0,15.0,784),(4492,349049,30.0,25.0,15.0,782),(4493,347939,30.0,25.0,15.0,786),(4494,348541,30.0,25.0,15.0,784),(4495,346835,0.0,0.0,0.0,2354),(4496,348170,0.0,0.0,0.0,915),(4497,348254,0.0,0.0,0.0,915),(4498,346572,0.0,0.0,0.0,772),(4499,346589,0.0,0.0,0.0,822),(4500,348295,0.0,0.0,0.0,570),(4501,348327,0.0,0.0,0.0,576),(4502,348662,0.0,0.0,0.0,950),(4503,348009,0.0,0.0,0.0,744),(4504,348165,0.0,0.0,0.0,368),(4505,346172,0.0,0.0,0.0,1888),(4506,348364,0.0,0.0,0.0,824),(4507,347560,0.0,0.0,0.0,778),(4508,349079,0.0,0.0,0.0,604),(4509,348988,30.0,25.0,15.0,514),(4510,348961,30.0,25.0,15.0,514),(4511,349064,30.0,25.0,15.0,606),(4512,349038,30.0,25.0,15.0,604),(4513,348405,30.0,25.0,15.0,516),(4514,349035,30.0,25.0,15.0,1152),(4515,348355,0.0,0.0,0.0,610),(4516,348340,0.0,0.0,0.0,640),(4517,348311,0.0,0.0,0.0,640),(4518,348250,0.0,0.0,0.0,640),(4519,348230,0.0,0.0,0.0,640),(4520,348083,0.0,0.0,0.0,635),(4521,347933,0.0,0.0,0.0,635),(4522,347678,0.0,0.0,0.0,635),(4523,347899,0.0,0.0,0.0,635),(4524,347956,0.0,0.0,0.0,675),(4525,348346,0.0,0.0,0.0,1025),(4526,348159,0.0,0.0,0.0,1150),(4527,347789,0.0,0.0,0.0,1240),(4528,347805,0.0,0.0,0.0,1235),(4529,346982,30.0,25.0,15.0,790),(4530,349228,30.0,25.0,15.0,790),(4531,349142,30.0,25.0,15.0,794),(4532,349199,30.0,25.0,15.0,610),(4533,349114,30.0,25.0,15.0,556),(4534,349194,30.0,25.0,15.0,646),(4535,349186,30.0,25.0,15.0,644),(4536,341984,30.0,25.0,15.0,1040),(4537,345154,0.0,0.0,0.0,820),(4538,347236,0.0,0.0,0.0,820),(4539,345615,0.0,0.0,0.0,1240),(4540,348213,0.0,0.0,0.0,516),(4541,348755,0.0,0.0,0.0,418),(4542,348751,0.0,0.0,0.0,398),(4543,348717,0.0,0.0,0.0,422),(4544,348725,0.0,0.0,0.0,730),(4545,348738,0.0,0.0,0.0,312),(4546,348750,0.0,0.0,0.0,728),(4547,348749,0.0,0.0,0.0,544),(4548,348752,0.0,0.0,0.0,416),(4549,348776,0.0,0.0,0.0,600),(4550,348783,0.0,0.0,0.0,590),(4551,349020,0.0,0.0,0.0,596),(4552,349146,0.0,0.0,0.0,934),(4553,349094,0.0,0.0,0.0,890),(4554,348905,0.0,0.0,0.0,1018),(4555,348753,0.0,0.0,0.0,608),(4556,348754,0.0,0.0,0.0,574),(4557,348765,0.0,0.0,0.0,734),(4558,349017,0.0,0.0,0.0,608),(4559,349216,0.0,0.0,0.0,766),(4560,349215,0.0,0.0,0.0,392),(4561,348713,0.0,0.0,0.0,604),(4562,348772,0.0,0.0,0.0,386),(4563,349120,0.0,0.0,0.0,816),(4564,349106,0.0,0.0,0.0,816),(4565,349069,0.0,0.0,0.0,816),(4566,348558,0.0,0.0,0.0,816),(4567,348554,0.0,0.0,0.0,816),(4568,348526,0.0,0.0,0.0,816),(4569,348441,0.0,0.0,0.0,820),(4570,348368,0.0,0.0,0.0,820),(4571,348367,0.0,0.0,0.0,820),(4572,348351,0.0,0.0,0.0,820),(4573,348342,0.0,0.0,0.0,820),(4574,348313,0.0,0.0,0.0,820),(4575,349093,0.0,0.0,0.0,820),(4576,349083,0.0,0.0,0.0,820),(4577,348983,0.0,0.0,0.0,820),(4578,348980,0.0,0.0,0.0,820),(4579,348966,0.0,0.0,0.0,820),(4580,348964,0.0,0.0,0.0,820),(4581,348975,0.0,0.0,0.0,820),(4582,349101,0.0,0.0,0.0,820),(4583,349100,0.0,0.0,0.0,820),(4584,348958,0.0,0.0,0.0,820),(4585,348940,0.0,0.0,0.0,820),(4586,348911,0.0,0.0,0.0,820),(4587,348908,0.0,0.0,0.0,820),(4588,348883,0.0,0.0,0.0,820),(4589,348892,0.0,0.0,0.0,820),(4590,348881,0.0,0.0,0.0,820),(4591,348876,0.0,0.0,0.0,820),(4592,348813,0.0,0.0,0.0,820),(4593,348802,0.0,0.0,0.0,820),(4594,349016,0.0,0.0,0.0,820),(4595,349056,0.0,0.0,0.0,820),(4596,349068,0.0,0.0,0.0,820),(4597,349088,0.0,0.0,0.0,820),(4598,348325,0.0,0.0,0.0,820),(4599,348990,0.0,0.0,0.0,820),(4600,348668,0.0,0.0,0.0,820),(4601,348678,0.0,0.0,0.0,820),(4602,348794,0.0,0.0,0.0,820),(4603,348810,0.0,0.0,0.0,820),(4604,348830,0.0,0.0,0.0,820),(4605,348834,0.0,0.0,0.0,820),(4606,348836,0.0,0.0,0.0,820),(4607,348835,0.0,0.0,0.0,820),(4608,348851,0.0,0.0,0.0,820),(4609,348986,0.0,0.0,0.0,820),(4610,348861,0.0,0.0,0.0,820),(4611,348994,0.0,0.0,0.0,820),(4612,349004,0.0,0.0,0.0,820),(4613,349009,0.0,0.0,0.0,820),(4614,349039,0.0,0.0,0.0,820),(4615,349044,0.0,0.0,0.0,820),(4616,349054,0.0,0.0,0.0,820),(4617,349057,0.0,0.0,0.0,820),(4618,348632,0.0,0.0,0.0,820),(4619,347764,0.0,0.0,0.0,820),(4620,348652,0.0,0.0,0.0,820),(4621,348649,0.0,0.0,0.0,820),(4622,348630,0.0,0.0,0.0,820),(4623,348601,0.0,0.0,0.0,820),(4624,348578,0.0,0.0,0.0,820),(4625,348659,0.0,0.0,0.0,820),(4626,349105,0.0,0.0,0.0,820),(4627,348795,0.0,0.0,0.0,820),(4628,348716,0.0,0.0,0.0,800),(4629,348675,0.0,0.0,0.0,810),(4630,348625,0.0,0.0,0.0,810),(4631,348154,0.0,0.0,0.0,810),(4632,348584,0.0,0.0,0.0,810),(4633,348596,0.0,0.0,0.0,810),(4634,348102,0.0,0.0,0.0,810),(4635,348098,0.0,0.0,0.0,810),(4636,348080,0.0,0.0,0.0,810),(4637,348060,0.0,0.0,0.0,810),(4638,348053,0.0,0.0,0.0,810),(4639,348045,0.0,0.0,0.0,910),(4640,348017,0.0,0.0,0.0,810),(4641,347983,0.0,0.0,0.0,810),(4642,347978,0.0,0.0,0.0,810),(4643,347971,0.0,0.0,0.0,810),(4644,348569,0.0,0.0,0.0,820),(4645,347967,0.0,0.0,0.0,820),(4646,348141,0.0,0.0,0.0,820),(4647,348245,0.0,0.0,0.0,820),(4648,348203,0.0,0.0,0.0,820),(4649,348278,0.0,0.0,0.0,820),(4650,348257,0.0,0.0,0.0,820),(4651,348249,0.0,0.0,0.0,820),(4652,348292,0.0,0.0,0.0,820),(4653,348288,0.0,0.0,0.0,820),(4654,348565,0.0,0.0,0.0,820),(4655,348312,0.0,0.0,0.0,820),(4656,348969,0.0,0.0,0.0,820),(4657,348967,0.0,0.0,0.0,820),(4658,348220,0.0,0.0,0.0,820),(4659,347938,0.0,0.0,0.0,820),(4660,347963,0.0,0.0,0.0,820),(4661,347948,0.0,0.0,0.0,820),(4662,347945,0.0,0.0,0.0,820),(4663,348929,0.0,0.0,0.0,820),(4664,348667,0.0,0.0,0.0,820),(4665,348421,0.0,0.0,0.0,815),(4666,348533,0.0,0.0,0.0,810),(4667,348548,0.0,0.0,0.0,815),(4668,348567,0.0,0.0,0.0,815),(4669,348580,0.0,0.0,0.0,815),(4670,349170,0.0,0.0,0.0,630),(4671,349169,0.0,0.0,0.0,630),(4672,349165,0.0,0.0,0.0,635),(4673,349157,0.0,0.0,0.0,630),(4674,349147,0.0,0.0,0.0,635),(4675,348946,0.0,0.0,0.0,630),(4676,349078,0.0,0.0,0.0,630),(4677,349073,0.0,0.0,0.0,630),(4678,348130,0.0,0.0,0.0,630),(4679,348963,0.0,0.0,0.0,630),(4680,348907,0.0,0.0,0.0,630),(4681,348891,0.0,0.0,0.0,660),(4682,348856,0.0,0.0,0.0,670),(4683,348623,0.0,0.0,0.0,675),(4684,348894,0.0,0.0,0.0,685),(4685,347864,0.0,0.0,0.0,790),(4686,349197,0.0,0.0,0.0,790),(4687,349196,0.0,0.0,0.0,790),(4688,349155,0.0,0.0,0.0,790),(4689,349126,0.0,0.0,0.0,790),(4690,349188,0.0,0.0,0.0,790),(4691,349208,0.0,0.0,0.0,790),(4692,349203,0.0,0.0,0.0,790),(4693,349200,0.0,0.0,0.0,790),(4694,349183,0.0,0.0,0.0,790),(4695,349225,0.0,0.0,0.0,790),(4696,349224,0.0,0.0,0.0,790),(4697,349230,0.0,0.0,0.0,790),(4698,349226,0.0,0.0,0.0,790),(4699,349232,0.0,0.0,0.0,790),(4700,347922,0.0,0.0,0.0,790),(4701,347921,0.0,0.0,0.0,790),(4702,347917,0.0,0.0,0.0,790),(4703,347881,0.0,0.0,0.0,790),(4704,349135,0.0,0.0,0.0,790),(4705,349130,0.0,0.0,0.0,790),(4706,349123,0.0,0.0,0.0,790),(4707,349121,0.0,0.0,0.0,790),(4708,349113,0.0,0.0,0.0,790),(4709,349168,0.0,0.0,0.0,790),(4710,349179,0.0,0.0,0.0,790),(4711,349160,0.0,0.0,0.0,790),(4712,349158,0.0,0.0,0.0,790),(4713,349149,0.0,0.0,0.0,790),(4714,349143,0.0,0.0,0.0,790),(4715,348399,0.0,0.0,0.0,790),(4716,347393,0.0,0.0,0.0,790),(4717,348360,0.0,0.0,0.0,790),(4718,348403,0.0,0.0,0.0,790),(4719,348440,0.0,0.0,0.0,790),(4720,347295,39.0,29.0,17.0,1092),(4721,349314,30.0,25.0,15.0,782),(4722,349290,30.0,25.0,15.0,510),(4723,349238,30.0,25.0,15.0,600),(4724,349258,30.0,25.0,15.0,740),(4725,349271,30.0,25.0,15.0,600),(4726,349227,0.0,0.0,0.0,930),(4727,349291,0.0,0.0,0.0,910),(4728,348904,0.0,0.0,0.0,970),(4729,348715,0.0,0.0,0.0,570),(4730,348708,0.0,0.0,0.0,1000),(4731,347653,0.0,0.0,0.0,1860),(4732,348714,0.0,0.0,0.0,580),(4733,349354,0.0,0.0,0.0,610),(4734,349362,0.0,0.0,0.0,605),(4735,349296,0.0,0.0,0.0,790),(4736,349431,33.0,26.0,17.0,1500),(4737,349377,30.0,24.0,26.0,486),(4738,346638,30.0,24.0,6.0,560),(4739,346633,30.0,26.0,6.0,566),(4740,346558,30.0,24.0,6.0,560),(4741,348628,30.0,24.0,6.0,464),(4742,349385,30.0,25.0,15.0,652),(4743,349578,30.0,25.0,15.0,788),(4744,349541,30.0,25.0,15.0,600),(4745,349330,0.0,0.0,0.0,788),(4746,349273,0.0,0.0,0.0,788),(4747,349256,0.0,0.0,0.0,630),(4748,349257,0.0,0.0,0.0,790),(4749,348429,0.0,0.0,0.0,786),(4750,349264,0.0,0.0,0.0,606),(4751,349276,0.0,0.0,0.0,610),(4752,349310,0.0,0.0,0.0,520),(4753,348910,0.0,0.0,0.0,520),(4754,348430,0.0,0.0,0.0,788),(4755,346585,0.0,0.0,0.0,550),(4756,346586,0.0,0.0,0.0,550),(4757,348970,0.0,0.0,0.0,550),(4758,346647,0.0,0.0,0.0,550),(4759,346646,0.0,0.0,0.0,550),(4760,346645,0.0,0.0,0.0,550),(4761,346650,0.0,0.0,0.0,550),(4762,346649,0.0,0.0,0.0,550),(4763,346653,0.0,0.0,0.0,550),(4764,346652,0.0,0.0,0.0,550),(4765,346547,0.0,0.0,0.0,550),(4766,349366,0.0,0.0,0.0,550),(4767,346584,0.0,0.0,0.0,550),(4768,346566,0.0,0.0,0.0,550),(4769,346567,0.0,0.0,0.0,550),(4770,346568,0.0,0.0,0.0,550),(4771,346569,0.0,0.0,0.0,550),(4772,346571,0.0,0.0,0.0,550),(4773,346573,0.0,0.0,0.0,550),(4774,346574,0.0,0.0,0.0,550),(4775,346575,0.0,0.0,0.0,550),(4776,346576,0.0,0.0,0.0,550),(4777,346582,0.0,0.0,0.0,550),(4778,346552,0.0,0.0,0.0,550),(4779,346554,0.0,0.0,0.0,550),(4780,346555,0.0,0.0,0.0,550),(4781,346556,0.0,0.0,0.0,550),(4782,346557,0.0,0.0,0.0,550),(4783,346560,0.0,0.0,0.0,550),(4784,346559,0.0,0.0,0.0,550),(4785,346561,0.0,0.0,0.0,550),(4786,346563,0.0,0.0,0.0,550),(4787,346565,0.0,0.0,0.0,550),(4788,346637,0.0,0.0,0.0,550),(4789,346641,0.0,0.0,0.0,550),(4790,346639,0.0,0.0,0.0,550),(4791,346634,0.0,0.0,0.0,550),(4792,346636,0.0,0.0,0.0,550),(4793,346635,0.0,0.0,0.0,550),(4794,346583,0.0,0.0,0.0,550),(4795,346631,0.0,0.0,0.0,550),(4796,346632,0.0,0.0,0.0,550),(4797,346629,0.0,0.0,0.0,550),(4798,346548,0.0,0.0,0.0,550),(4799,346593,0.0,0.0,0.0,550),(4800,346592,0.0,0.0,0.0,550),(4801,346591,0.0,0.0,0.0,550),(4802,346588,0.0,0.0,0.0,550),(4803,346587,0.0,0.0,0.0,550),(4804,346648,0.0,0.0,0.0,550),(4805,346642,0.0,0.0,0.0,550),(4806,346644,0.0,0.0,0.0,550),(4807,346643,0.0,0.0,0.0,550),(4808,346640,0.0,0.0,0.0,550),(4809,346626,0.0,0.0,0.0,550),(4810,346625,0.0,0.0,0.0,550),(4811,346604,0.0,0.0,0.0,550),(4812,346602,0.0,0.0,0.0,550),(4813,346601,0.0,0.0,0.0,550),(4814,346600,0.0,0.0,0.0,550),(4815,346599,0.0,0.0,0.0,550),(4816,346597,0.0,0.0,0.0,550),(4817,346596,0.0,0.0,0.0,550),(4818,346594,0.0,0.0,0.0,550),(4819,346620,0.0,0.0,0.0,550),(4820,346623,0.0,0.0,0.0,550),(4821,346624,0.0,0.0,0.0,550),(4822,346627,0.0,0.0,0.0,550),(4823,346605,0.0,0.0,0.0,550),(4824,346630,0.0,0.0,0.0,550),(4825,346606,0.0,0.0,0.0,550),(4826,346607,0.0,0.0,0.0,550),(4827,346610,0.0,0.0,0.0,550),(4828,346609,0.0,0.0,0.0,550),(4829,346611,0.0,0.0,0.0,550),(4830,346612,0.0,0.0,0.0,550),(4831,346613,0.0,0.0,0.0,550),(4832,346614,0.0,0.0,0.0,550),(4833,346616,0.0,0.0,0.0,550),(4834,346617,0.0,0.0,0.0,550),(4835,347425,0.0,0.0,0.0,550),(4836,349019,0.0,0.0,0.0,550),(4837,346621,0.0,0.0,0.0,550),(4838,349365,0.0,0.0,0.0,790),(4839,348931,0.0,0.0,0.0,800),(4840,348937,0.0,0.0,0.0,800),(4841,348209,0.0,0.0,0.0,800),(4842,348237,0.0,0.0,0.0,800),(4843,348225,0.0,0.0,0.0,800),(4844,348415,0.0,0.0,0.0,800),(4845,348414,0.0,0.0,0.0,800),(4846,349358,0.0,0.0,0.0,800),(4847,349352,0.0,0.0,0.0,800),(4848,349337,0.0,0.0,0.0,800),(4849,349333,0.0,0.0,0.0,800),(4850,349327,0.0,0.0,0.0,800),(4851,349315,0.0,0.0,0.0,800),(4852,349303,0.0,0.0,0.0,800),(4853,349267,0.0,0.0,0.0,800),(4854,349237,0.0,0.0,0.0,800),(4855,349357,0.0,0.0,0.0,800),(4856,349349,0.0,0.0,0.0,800),(4857,349342,0.0,0.0,0.0,800),(4858,349335,0.0,0.0,0.0,800),(4859,349323,0.0,0.0,0.0,800),(4860,348293,0.0,0.0,0.0,918),(4861,348551,0.0,0.0,0.0,815),(4862,348920,0.0,0.0,0.0,1245),(4863,349241,0.0,0.0,0.0,1245),(4864,349205,0.0,0.0,0.0,770),(4865,348227,0.0,0.0,0.0,1020),(4866,349067,0.0,0.0,0.0,890),(4867,349250,0.0,0.0,0.0,820),(4868,348777,0.0,0.0,0.0,835),(4869,348882,0.0,0.0,0.0,1240),(4870,349284,0.0,0.0,0.0,1240),(4871,348787,0.0,0.0,0.0,835),(4872,349217,0.0,0.0,0.0,835),(4873,349214,0.0,0.0,0.0,835),(4874,349220,0.0,0.0,0.0,830),(4875,349218,0.0,0.0,0.0,835),(4876,348729,0.0,0.0,0.0,1240),(4877,348740,0.0,0.0,0.0,1250),(4878,349219,0.0,0.0,0.0,835),(4879,349221,0.0,0.0,0.0,845),(4880,349319,0.0,0.0,0.0,850),(4881,349270,0.0,0.0,0.0,845),(4882,349266,0.0,0.0,0.0,860),(4883,345612,0.0,0.0,0.0,580),(4884,349582,39.0,29.0,17.0,1440),(4885,349787,30.0,24.0,14.0,850),(4886,349668,30.0,24.0,14.0,810),(4887,350013,30.0,24.0,14.0,660),(4888,349863,30.0,24.0,14.0,665),(4889,349904,30.0,24.0,14.0,660),(4890,349774,30.0,24.0,14.0,665),(4891,349856,30.0,24.0,14.0,660),(4892,349819,30.0,24.0,14.0,670),(4893,349754,30.0,24.0,14.0,850),(4894,349632,30.0,24.0,14.0,665),(4895,349972,30.0,24.0,14.0,850),(4896,350006,30.0,24.0,14.0,645),(4897,349667,30.0,24.0,14.0,840),(4898,349877,30.0,25.0,15.0,694),(4899,350004,30.0,24.0,6.0,284),(4900,350010,30.0,24.0,6.0,292),(4901,349994,33.0,25.0,11.0,1996),(4902,349062,33.0,25.0,11.0,2090),(4903,347298,40.0,28.0,22.0,1130),(4904,349954,30.0,25.0,15.0,1174),(4905,349870,30.0,25.0,15.0,746),(4906,349934,30.0,25.0,15.0,770),(4907,349830,30.0,25.0,15.0,750),(4908,349778,30.0,25.0,15.0,515),(4909,349388,0.0,0.0,0.0,480),(4910,346608,0.0,0.0,0.0,600),(4911,349675,0.0,0.0,0.0,560),(4912,349018,0.0,0.0,0.0,580),(4913,349836,0.0,0.0,0.0,560),(4914,349913,0.0,0.0,0.0,570),(4915,349914,0.0,0.0,0.0,570),(4916,349975,0.0,0.0,0.0,560),(4917,350107,30.0,25.0,15.0,515),(4918,350061,33.0,25.0,11.0,700),(4919,350137,33.0,25.0,11.0,1440),(4920,349828,0.0,0.0,0.0,400),(4921,349915,0.0,0.0,0.0,520),(4922,349695,0.0,0.0,0.0,740),(4923,349810,0.0,0.0,0.0,900),(4924,349826,0.0,0.0,0.0,770),(4925,349894,0.0,0.0,0.0,890),(4926,349827,0.0,0.0,0.0,750),(4927,349794,0.0,0.0,0.0,740),(4928,349696,0.0,0.0,0.0,770),(4929,348335,0.0,0.0,0.0,800),(4930,350016,0.0,0.0,0.0,800),(4931,349997,0.0,0.0,0.0,800),(4932,349981,0.0,0.0,0.0,800),(4933,349947,0.0,0.0,0.0,800),(4934,349942,0.0,0.0,0.0,800),(4935,349921,0.0,0.0,0.0,800),(4936,349897,0.0,0.0,0.0,800),(4937,349889,0.0,0.0,0.0,800),(4938,349756,0.0,0.0,0.0,800),(4939,349858,0.0,0.0,0.0,800),(4940,349841,0.0,0.0,0.0,800),(4941,349829,0.0,0.0,0.0,800),(4942,349792,0.0,0.0,0.0,800),(4943,349784,0.0,0.0,0.0,800),(4944,349772,0.0,0.0,0.0,800),(4945,349766,0.0,0.0,0.0,800),(4946,349692,0.0,0.0,0.0,800),(4947,349666,0.0,0.0,0.0,800),(4948,350012,0.0,0.0,0.0,800),(4949,350011,0.0,0.0,0.0,800),(4950,349976,0.0,0.0,0.0,800),(4951,349948,0.0,0.0,0.0,800),(4952,349939,0.0,0.0,0.0,800),(4953,349938,0.0,0.0,0.0,800),(4954,349920,0.0,0.0,0.0,800),(4955,349884,0.0,0.0,0.0,800),(4956,349875,0.0,0.0,0.0,800),(4957,349868,0.0,0.0,0.0,800),(4958,349837,0.0,0.0,0.0,800),(4959,349820,0.0,0.0,0.0,800),(4960,349798,0.0,0.0,0.0,800),(4961,349762,0.0,0.0,0.0,800),(4962,349742,0.0,0.0,0.0,800),(4963,349748,0.0,0.0,0.0,800),(4964,349751,0.0,0.0,0.0,800),(4965,349657,0.0,0.0,0.0,800),(4966,349372,0.0,0.0,0.0,800),(4967,349664,0.0,0.0,0.0,800),(4968,349655,0.0,0.0,0.0,800),(4969,349635,0.0,0.0,0.0,800),(4970,349556,0.0,0.0,0.0,800),(4971,349378,0.0,0.0,0.0,800),(4972,349376,0.0,0.0,0.0,800),(4973,349424,0.0,0.0,0.0,800),(4974,349432,0.0,0.0,0.0,800),(4975,349480,0.0,0.0,0.0,800),(4976,349548,0.0,0.0,0.0,800),(4977,349564,0.0,0.0,0.0,800),(4978,349601,0.0,0.0,0.0,800),(4979,349605,0.0,0.0,0.0,800),(4980,349607,0.0,0.0,0.0,800),(4981,349647,0.0,0.0,0.0,800),(4982,349623,0.0,0.0,0.0,800),(4983,349555,0.0,0.0,0.0,800),(4984,349626,0.0,0.0,0.0,800),(4985,349473,0.0,0.0,0.0,600),(4986,349831,0.0,0.0,0.0,600),(4987,348944,0.0,0.0,0.0,600),(4988,349991,0.0,0.0,0.0,600),(4989,349651,0.0,0.0,0.0,545),(4990,349592,0.0,0.0,0.0,545),(4991,348943,0.0,0.0,0.0,2760),(4992,349908,0.0,0.0,0.0,2635),(4993,343969,0.0,0.0,0.0,920),(4994,349613,0.0,0.0,0.0,1210),(4995,349711,0.0,0.0,0.0,1240),(4996,349703,0.0,0.0,0.0,1240),(4997,349213,0.0,0.0,0.0,835),(4998,349737,0.0,0.0,0.0,1235),(4999,349681,0.0,0.0,0.0,1245),(5000,350162,0.0,0.0,0.0,445),(5001,350232,0.0,0.0,0.0,425),(5002,350167,0.0,0.0,0.0,635),(5003,350169,0.0,0.0,0.0,460),(5004,350159,0.0,0.0,0.0,455),(5005,350051,0.0,0.0,0.0,360),(5006,350116,0.0,0.0,0.0,955),(5007,350093,0.0,0.0,0.0,975),(5008,350220,0.0,0.0,0.0,1280),(5009,350144,0.0,0.0,0.0,1265),(5010,350255,30.0,24.0,6.0,288),(5011,350194,33.0,26.0,17.0,3022),(5012,350233,30.0,25.0,15.0,712),(5013,349671,0.0,0.0,0.0,758),(5014,348709,0.0,0.0,0.0,576),(5015,349734,33.0,25.0,11.0,2090),(5016,8108,30.0,24.0,6.0,378),(5017,347891,30.0,25.0,15.0,550),(5018,349793,30.0,25.0,15.0,512),(5019,350296,30.0,25.0,15.0,800),(5020,350301,46.0,30.0,16.0,2312),(5021,348912,0.0,0.0,0.0,820),(5022,350091,0.0,0.0,0.0,825),(5023,349236,0.0,0.0,0.0,825),(5024,350131,0.0,0.0,0.0,825),(5025,350079,0.0,0.0,0.0,825),(5026,350065,0.0,0.0,0.0,820),(5027,350053,0.0,0.0,0.0,820),(5028,350015,0.0,0.0,0.0,820),(5029,349851,0.0,0.0,0.0,670),(5030,349812,0.0,0.0,0.0,635),(5031,349838,0.0,0.0,0.0,820),(5032,350087,0.0,0.0,0.0,640),(5033,350058,0.0,0.0,0.0,820),(5034,350046,0.0,0.0,0.0,820),(5035,350123,0.0,0.0,0.0,825),(5036,350120,0.0,0.0,0.0,815),(5037,350085,0.0,0.0,0.0,820),(5038,347897,0.0,0.0,0.0,820),(5039,350171,0.0,0.0,0.0,610),(5040,347628,0.0,0.0,0.0,820),(5041,348182,0.0,0.0,0.0,820),(5042,349970,0.0,0.0,0.0,775),(5043,348661,0.0,0.0,0.0,820),(5044,350132,0.0,0.0,0.0,815),(5045,349014,0.0,0.0,0.0,790),(5046,6637,0.0,0.0,0.0,960),(5047,349717,30.0,25.0,15.0,1000),(5048,349719,30.0,25.0,15.0,1000),(5049,349690,30.0,25.0,15.0,996),(5050,349710,30.0,25.0,15.0,1000),(5051,349697,30.0,25.0,15.0,1000),(5052,349371,30.0,25.0,15.0,588),(5053,350378,0.0,0.0,0.0,795),(5054,350269,0.0,0.0,0.0,790),(5055,350377,0.0,0.0,0.0,785),(5056,350376,0.0,0.0,0.0,790),(5057,350366,0.0,0.0,0.0,790),(5058,350363,0.0,0.0,0.0,790),(5059,350354,0.0,0.0,0.0,790),(5060,350349,0.0,0.0,0.0,785),(5061,350348,0.0,0.0,0.0,780),(5062,350286,0.0,0.0,0.0,790),(5063,350267,0.0,0.0,0.0,795),(5064,350231,0.0,0.0,0.0,790),(5065,350219,0.0,0.0,0.0,780),(5066,350216,0.0,0.0,0.0,795),(5067,350447,30.0,25.0,15.0,792),(5068,350435,30.0,25.0,15.0,792),(5069,350412,30.0,25.0,15.0,600),(5070,350353,39.0,29.0,17.0,1350),(5071,350400,30.0,25.0,15.0,790),(5072,350191,30.0,25.0,15.0,792),(5073,350202,30.0,25.0,15.0,576),(5074,350321,30.0,25.0,15.0,794),(5075,350306,30.0,25.0,15.0,572),(5076,350383,30.0,25.0,15.0,574),(5077,350333,30.0,25.0,15.0,794),(5078,342025,39.0,29.0,17.0,2152),(5079,350259,30.0,25.0,15.0,794),(5080,350215,0.0,0.0,0.0,825),(5081,350398,0.0,0.0,0.0,785),(5082,350395,0.0,0.0,0.0,785),(5083,350392,0.0,0.0,0.0,790),(5084,350415,0.0,0.0,0.0,1010),(5085,350408,30.0,24.0,6.0,375),(5086,350470,30.0,24.0,14.0,760),(5087,350445,30.0,25.0,15.0,515),(5088,350465,30.0,25.0,15.0,515),(5089,350515,30.0,25.0,15.0,790),(5090,350518,30.0,25.0,15.0,572),(5091,350510,30.0,25.0,15.0,515),(5092,350433,30.0,25.0,15.0,512),(5093,350361,0.0,0.0,0.0,795),(5094,350360,0.0,0.0,0.0,795),(5095,350307,0.0,0.0,0.0,790),(5096,350287,0.0,0.0,0.0,790),(5097,350271,0.0,0.0,0.0,790),(5098,350247,0.0,0.0,0.0,790),(5099,350256,0.0,0.0,0.0,790),(5100,348686,0.0,0.0,0.0,820),(5101,350251,0.0,0.0,0.0,790),(5102,350390,0.0,0.0,0.0,790),(5103,350413,0.0,0.0,0.0,790),(5104,350422,0.0,0.0,0.0,790),(5105,350426,0.0,0.0,0.0,790),(5106,350429,0.0,0.0,0.0,790),(5107,350458,0.0,0.0,0.0,790),(5108,350471,0.0,0.0,0.0,790),(5109,350425,0.0,0.0,0.0,790),(5110,350446,0.0,0.0,0.0,790),(5111,350456,0.0,0.0,0.0,790),(5112,350461,0.0,0.0,0.0,790),(5113,350242,0.0,0.0,0.0,790),(5114,350229,0.0,0.0,0.0,790),(5115,350197,0.0,0.0,0.0,790),(5116,350183,0.0,0.0,0.0,790),(5117,350385,0.0,0.0,0.0,795),(5118,350373,0.0,0.0,0.0,790),(5119,349679,0.0,0.0,0.0,1070),(5120,349716,0.0,0.0,0.0,1070),(5121,349718,0.0,0.0,0.0,1070),(5122,349720,0.0,0.0,0.0,1070),(5123,349721,0.0,0.0,0.0,1070),(5124,349722,0.0,0.0,0.0,1070),(5125,349723,0.0,0.0,0.0,1070),(5126,349724,0.0,0.0,0.0,1070),(5127,349725,0.0,0.0,0.0,1070),(5128,349726,0.0,0.0,0.0,1065),(5129,349672,0.0,0.0,0.0,1070),(5130,349708,0.0,0.0,0.0,1010),(5131,349709,0.0,0.0,0.0,1010),(5132,349712,0.0,0.0,0.0,1010),(5133,349713,0.0,0.0,0.0,1006),(5134,349714,0.0,0.0,0.0,1010),(5135,349715,0.0,0.0,0.0,1006),(5136,349849,0.0,0.0,0.0,570),(5137,349956,0.0,0.0,0.0,570),(5138,349673,0.0,0.0,0.0,1075),(5139,349676,0.0,0.0,0.0,1070),(5140,349677,0.0,0.0,0.0,1070),(5141,349678,0.0,0.0,0.0,1070),(5142,349680,0.0,0.0,0.0,1070),(5143,349682,0.0,0.0,0.0,1070),(5144,349683,0.0,0.0,0.0,1070),(5145,349684,0.0,0.0,0.0,1065),(5146,349685,0.0,0.0,0.0,1070),(5147,349686,0.0,0.0,0.0,1060),(5148,349687,0.0,0.0,0.0,1060),(5149,349688,0.0,0.0,0.0,1060),(5150,349689,0.0,0.0,0.0,1065),(5151,349691,0.0,0.0,0.0,1060),(5152,349800,0.0,0.0,0.0,1065),(5153,350261,0.0,0.0,0.0,1075),(5154,349698,0.0,0.0,0.0,1070),(5155,349699,0.0,0.0,0.0,1075),(5156,349700,0.0,0.0,0.0,1070),(5157,349701,0.0,0.0,0.0,1070),(5158,349702,0.0,0.0,0.0,1075),(5159,349704,0.0,0.0,0.0,1070),(5160,349705,0.0,0.0,0.0,1030),(5161,349707,0.0,0.0,0.0,1065),(5162,350714,30.0,24.0,6.0,300),(5163,350606,30.0,25.0,15.0,510),(5164,350659,30.0,25.0,15.0,510),(5165,349242,30.0,25.0,15.0,510),(5166,350635,30.0,25.0,15.0,1110),(5167,350539,30.0,25.0,15.0,510),(5168,350704,30.0,25.0,15.0,512),(5169,350841,30.0,25.0,15.0,510),(5170,350766,30.0,25.0,15.0,596),(5171,348785,0.0,0.0,0.0,550),(5172,348771,0.0,0.0,0.0,550),(5173,348770,0.0,0.0,0.0,550),(5174,348703,0.0,0.0,0.0,550),(5175,348720,0.0,0.0,0.0,550),(5176,348724,0.0,0.0,0.0,550),(5177,348741,0.0,0.0,0.0,550),(5178,350770,0.0,0.0,0.0,550),(5179,350746,0.0,0.0,0.0,800),(5180,350000,0.0,0.0,0.0,800),(5181,350781,0.0,0.0,0.0,800),(5182,350779,0.0,0.0,0.0,800),(5183,350778,0.0,0.0,0.0,800),(5184,350560,0.0,0.0,0.0,800),(5185,350550,0.0,0.0,0.0,800),(5186,350460,0.0,0.0,0.0,800),(5187,350451,0.0,0.0,0.0,800),(5188,350688,0.0,0.0,0.0,800),(5189,350871,0.0,0.0,0.0,800),(5190,350667,0.0,0.0,0.0,800),(5191,350665,0.0,0.0,0.0,800),(5192,350662,0.0,0.0,0.0,800),(5193,350661,0.0,0.0,0.0,800),(5194,350652,0.0,0.0,0.0,800),(5195,350651,0.0,0.0,0.0,800),(5196,350614,0.0,0.0,0.0,800),(5197,350569,0.0,0.0,0.0,800),(5198,350555,0.0,0.0,0.0,800),(5199,350516,0.0,0.0,0.0,800),(5200,350512,0.0,0.0,0.0,800),(5201,350814,0.0,0.0,0.0,800),(5202,350813,0.0,0.0,0.0,800),(5203,350809,0.0,0.0,0.0,800),(5204,350791,0.0,0.0,0.0,800),(5205,350870,0.0,0.0,0.0,800),(5206,350869,0.0,0.0,0.0,800),(5207,350842,0.0,0.0,0.0,800),(5208,350838,0.0,0.0,0.0,800),(5209,350818,0.0,0.0,0.0,800),(5210,350713,0.0,0.0,0.0,800),(5211,350697,0.0,0.0,0.0,800),(5212,350684,0.0,0.0,0.0,800),(5213,350677,0.0,0.0,0.0,550),(5214,350649,0.0,0.0,0.0,550),(5215,350663,0.0,0.0,0.0,550),(5216,350622,0.0,0.0,0.0,550),(5217,350584,0.0,0.0,0.0,800),(5218,350804,0.0,0.0,0.0,800),(5219,350786,0.0,0.0,0.0,550),(5220,350783,0.0,0.0,0.0,800),(5221,350508,0.0,0.0,0.0,530),(5222,350695,0.0,0.0,0.0,530),(5223,350482,0.0,0.0,0.0,530),(5224,350486,0.0,0.0,0.0,530),(5225,350717,0.0,0.0,0.0,530),(5226,350293,0.0,0.0,0.0,550),(5227,349706,0.0,0.0,0.0,1035),(5228,348756,0.0,0.0,0.0,550),(5229,348733,0.0,0.0,0.0,550),(5230,348734,0.0,0.0,0.0,550),(5231,348739,0.0,0.0,0.0,550),(5232,348757,0.0,0.0,0.0,550),(5233,348758,0.0,0.0,0.0,550),(5234,348759,0.0,0.0,0.0,550),(5235,348760,0.0,0.0,0.0,550),(5236,350308,0.0,0.0,0.0,780),(5237,348761,0.0,0.0,0.0,550),(5238,348762,0.0,0.0,0.0,550),(5239,348764,0.0,0.0,0.0,550),(5240,348766,0.0,0.0,0.0,550),(5241,348767,0.0,0.0,0.0,550),(5242,348768,0.0,0.0,0.0,550),(5243,348769,0.0,0.0,0.0,550),(5244,348773,0.0,0.0,0.0,550),(5245,348774,0.0,0.0,0.0,550),(5246,348775,0.0,0.0,0.0,550),(5247,348778,0.0,0.0,0.0,550),(5248,348779,0.0,0.0,0.0,550),(5249,348780,0.0,0.0,0.0,550),(5250,348781,0.0,0.0,0.0,550),(5251,348782,0.0,0.0,0.0,550),(5252,348784,0.0,0.0,0.0,550),(5253,348786,0.0,0.0,0.0,550),(5254,349231,0.0,0.0,0.0,550),(5255,349251,0.0,0.0,0.0,550),(5256,349937,0.0,0.0,0.0,550),(5257,348746,0.0,0.0,0.0,550),(5258,348744,0.0,0.0,0.0,550),(5259,348743,0.0,0.0,0.0,550),(5260,348742,0.0,0.0,0.0,550),(5261,348737,0.0,0.0,0.0,550),(5262,348735,0.0,0.0,0.0,550),(5263,348732,0.0,0.0,0.0,550),(5264,348730,0.0,0.0,0.0,550),(5265,348723,0.0,0.0,0.0,550),(5266,348722,0.0,0.0,0.0,550),(5267,348721,0.0,0.0,0.0,550),(5268,348719,0.0,0.0,0.0,550),(5269,348718,0.0,0.0,0.0,550),(5270,348711,0.0,0.0,0.0,550),(5271,348710,0.0,0.0,0.0,550),(5272,348706,0.0,0.0,0.0,550),(5273,348704,0.0,0.0,0.0,550),(5274,347883,0.0,0.0,0.0,550),(5275,348763,0.0,0.0,0.0,550),(5276,350956,30.0,24.0,6.0,294),(5277,350922,30.0,25.0,15.0,510),(5278,351022,30.0,25.0,15.0,536),(5279,351030,30.0,25.0,15.0,512),(5280,351009,30.0,25.0,11.0,1364),(5281,350806,33.0,25.0,11.0,1356),(5282,350750,0.0,0.0,0.0,770),(5283,349694,0.0,0.0,0.0,1070),(5284,350317,0.0,0.0,0.0,1172),(5285,350690,0.0,0.0,0.0,960),(5286,350564,0.0,0.0,0.0,1170),(5287,351132,0.0,0.0,0.0,1786),(5288,350852,0.0,0.0,0.0,835),(5289,351048,0.0,0.0,0.0,770),(5290,351158,0.0,0.0,0.0,1060),(5291,351016,0.0,0.0,0.0,1275),(5292,350902,0.0,0.0,0.0,1225),(5293,351157,0.0,0.0,0.0,635),(5294,351161,0.0,0.0,0.0,630),(5295,350687,0.0,0.0,0.0,630),(5296,350896,0.0,0.0,0.0,615),(5297,350795,0.0,0.0,0.0,805),(5298,351162,0.0,0.0,0.0,650),(5299,351167,0.0,0.0,0.0,630),(5300,350490,0.0,0.0,0.0,745),(5301,351165,0.0,0.0,0.0,630),(5302,351166,0.0,0.0,0.0,635),(5303,347444,30.0,24.0,14.0,770),(5304,345352,0.0,0.0,0.0,708),(5305,350825,30.0,25.0,15.0,706),(5306,349063,30.0,25.0,15.0,706),(5307,350673,30.0,25.0,15.0,706),(5308,346055,30.0,25.0,15.0,706),(5309,346704,30.0,24.0,14.0,585),(5310,346694,30.0,24.0,14.0,585),(5311,346684,30.0,24.0,14.0,590),(5312,349728,30.0,24.0,14.0,775),(5313,351069,30.0,24.0,6.0,415),(5314,346359,30.0,24.0,14.0,5555),(5315,347569,30.0,24.0,14.0,985),(5316,351104,46.0,29.0,22.0,2330),(5317,351172,30.0,24.0,14.0,550),(5318,350371,0.0,0.0,0.0,810),(5319,351055,0.0,0.0,0.0,920),(5320,350888,0.0,0.0,0.0,410),(5321,350889,0.0,0.0,0.0,620),(5322,350890,0.0,0.0,0.0,415),(5323,350891,0.0,0.0,0.0,415),(5324,350885,0.0,0.0,0.0,415),(5325,350386,0.0,0.0,0.0,860),(5326,350294,0.0,0.0,0.0,925),(5327,350263,0.0,0.0,0.0,605),(5328,350262,0.0,0.0,0.0,600),(5329,351190,0.0,0.0,0.0,930),(5330,351182,0.0,0.0,0.0,930),(5331,350868,0.0,0.0,0.0,935),(5332,350877,0.0,0.0,0.0,795),(5333,350878,0.0,0.0,0.0,795),(5334,350830,0.0,0.0,0.0,940),(5335,350759,0.0,0.0,0.0,795),(5336,350867,0.0,0.0,0.0,940),(5337,350648,0.0,0.0,0.0,945),(5338,350683,0.0,0.0,0.0,950),(5339,350630,0.0,0.0,0.0,795),(5340,350626,0.0,0.0,0.0,935),(5341,350725,0.0,0.0,0.0,935),(5342,350629,0.0,0.0,0.0,815),(5343,351039,0.0,0.0,0.0,575),(5344,351155,0.0,0.0,0.0,595),(5345,351154,0.0,0.0,0.0,595),(5346,351164,0.0,0.0,0.0,410),(5347,351160,0.0,0.0,0.0,410),(5348,351163,0.0,0.0,0.0,590),(5349,350628,0.0,0.0,0.0,590),(5350,350880,0.0,0.0,0.0,605),(5351,350881,0.0,0.0,0.0,605),(5352,350916,0.0,0.0,0.0,610),(5353,350260,0.0,0.0,0.0,610),(5354,342122,0.0,0.0,0.0,615),(5355,350760,0.0,0.0,0.0,595),(5356,350761,0.0,0.0,0.0,595),(5357,351159,0.0,0.0,0.0,605),(5358,346595,0.0,0.0,0.0,585),(5359,351041,0.0,0.0,0.0,605),(5360,351045,0.0,0.0,0.0,325),(5361,351081,0.0,0.0,0.0,945),(5362,351253,30.0,25.0,15.0,524),(5363,351017,30.0,25.0,15.0,760),(5364,351248,30.0,25.0,15.0,512),(5365,351278,30.0,25.0,15.0,512),(5366,351226,30.0,25.0,15.0,510),(5367,351220,30.0,25.0,15.0,510),(5368,349032,30.0,24.0,6.0,620),(5369,351257,30.0,24.0,6.0,376),(5370,351225,33.0,25.0,11.0,984),(5371,351340,30.0,25.0,15.0,1400),(5372,350502,0.0,0.0,0.0,1355),(5373,350848,0.0,0.0,0.0,1050),(5374,350538,0.0,0.0,0.0,1060),(5375,351173,0.0,0.0,0.0,725),(5376,351366,33.0,25.0,11.0,1144),(5377,350946,0.0,0.0,0.0,514),(5378,351156,0.0,0.0,0.0,570),(5379,350934,0.0,0.0,0.0,514),(5380,348918,0.0,0.0,0.0,936),(5381,350707,0.0,0.0,0.0,1524),(5382,350967,0.0,0.0,0.0,524),(5383,348947,0.0,0.0,0.0,524),(5384,350295,0.0,0.0,0.0,524),(5385,351210,0.0,0.0,0.0,524),(5386,345463,0.0,0.0,0.0,524),(5388,348801,0.0,0.0,0.0,524),(5389,347665,0.0,0.0,0.0,524),(5390,351171,0.0,0.0,0.0,722),(5391,350499,0.0,0.0,0.0,524),(5392,347619,0.0,0.0,0.0,524),(5393,351369,0.0,0.0,0.0,290),(5394,351352,0.0,0.0,0.0,750),(5395,351275,0.0,0.0,0.0,950),(5396,351296,0.0,0.0,0.0,742),(5397,351298,0.0,0.0,0.0,584),(5398,349587,0.0,0.0,0.0,730),(5399,349172,0.0,0.0,0.0,730),(5400,349059,0.0,0.0,0.0,730),(5401,349969,0.0,0.0,0.0,730),(5402,349790,0.0,0.0,0.0,730),(5403,349608,0.0,0.0,0.0,730),(5404,349524,0.0,0.0,0.0,730),(5405,349519,0.0,0.0,0.0,730),(5406,349443,0.0,0.0,0.0,730),(5407,349389,0.0,0.0,0.0,730),(5408,349263,0.0,0.0,0.0,730),(5409,349292,0.0,0.0,0.0,730),(5410,349286,0.0,0.0,0.0,730),(5411,349229,0.0,0.0,0.0,730),(5412,350066,0.0,0.0,0.0,730),(5413,350114,0.0,0.0,0.0,730),(5414,350190,0.0,0.0,0.0,730),(5415,350279,0.0,0.0,0.0,730),(5416,350430,0.0,0.0,0.0,730),(5417,350380,0.0,0.0,0.0,730),(5418,350719,0.0,0.0,0.0,730),(5419,350787,0.0,0.0,0.0,730),(5420,350855,0.0,0.0,0.0,730),(5421,350937,0.0,0.0,0.0,730),(5422,350948,0.0,0.0,0.0,730),(5423,350979,0.0,0.0,0.0,730),(5424,347867,0.0,0.0,0.0,730),(5425,346209,0.0,0.0,0.0,730),(5426,345701,0.0,0.0,0.0,730),(5427,350911,0.0,0.0,0.0,730),(5428,351237,0.0,0.0,0.0,730),(5429,347661,0.0,0.0,0.0,730),(5430,347597,0.0,0.0,0.0,730),(5431,347562,0.0,0.0,0.0,730),(5432,347330,0.0,0.0,0.0,730),(5433,347305,0.0,0.0,0.0,730),(5434,347254,0.0,0.0,0.0,730),(5435,347016,0.0,0.0,0.0,730),(5436,346976,0.0,0.0,0.0,730),(5437,346732,0.0,0.0,0.0,730),(5438,346239,0.0,0.0,0.0,730),(5439,347787,0.0,0.0,0.0,730),(5440,348275,0.0,0.0,0.0,730),(5441,348349,0.0,0.0,0.0,730),(5442,348618,0.0,0.0,0.0,730),(5443,348843,0.0,0.0,0.0,730),(5444,349023,0.0,0.0,0.0,730),(5445,349129,0.0,0.0,0.0,730),(5446,349030,0.0,0.0,0.0,730),(5447,349024,0.0,0.0,0.0,730),(5448,349141,0.0,0.0,0.0,730),(5449,349392,0.0,0.0,0.0,730),(5450,349313,0.0,0.0,0.0,730),(5451,349152,0.0,0.0,0.0,730),(5452,353343,0.0,0.0,0.0,936),(5453,353366,0.0,0.0,0.0,766),(5454,353408,0.0,0.0,0.0,582),(5455,353402,0.0,0.0,0.0,384),(5456,353401,0.0,0.0,0.0,386),(5457,353372,0.0,0.0,0.0,570),(5458,350576,0.0,0.0,0.0,788),(5459,350835,0.0,0.0,0.0,784),(5460,350905,0.0,0.0,0.0,514),(5461,351090,0.0,0.0,0.0,510),(5462,350637,0.0,0.0,0.0,624),(5463,350727,46.0,29.0,17.0,2206),(5464,353336,30.0,25.0,15.0,532),(5465,348977,0.0,0.0,0.0,725),(5466,353759,39.0,29.0,17.0,1220),(5467,353991,30.0,25.0,15.0,740),(5468,353970,30.0,25.0,15.0,516),(5469,353776,30.0,25.0,15.0,514),(5470,354013,30.0,25.0,15.0,515),(5471,351354,0.0,0.0,0.0,990),(5472,353273,0.0,0.0,0.0,2860),(5473,352154,0.0,0.0,0.0,2280),(5474,353448,0.0,0.0,0.0,575),(5475,353371,0.0,0.0,0.0,730),(5476,6342,0.0,0.0,0.0,605),(5477,353798,30.0,24.0,14.0,320),(5478,353829,30.0,24.0,14.0,1310),(5479,353565,30.0,24.0,14.0,580),(5480,354042,30.0,24.0,14.0,780),(5481,353746,30.0,24.0,14.0,765),(5482,353577,30.0,24.0,14.0,1035),(5483,353927,0.0,0.0,0.0,590),(5484,353626,0.0,0.0,0.0,580),(5485,353625,0.0,0.0,0.0,390),(5486,353734,0.0,0.0,0.0,575),(5487,353943,0.0,0.0,0.0,575),(5488,353591,0.0,0.0,0.0,890),(5489,353567,0.0,0.0,0.0,890),(5490,353504,0.0,0.0,0.0,560),(5491,353627,0.0,0.0,0.0,360),(5492,353951,0.0,0.0,0.0,390),(5493,353939,0.0,0.0,0.0,390),(5494,350165,0.0,0.0,0.0,576),(5495,350164,0.0,0.0,0.0,580),(5496,350163,0.0,0.0,0.0,580),(5497,350158,0.0,0.0,0.0,580),(5498,351338,0.0,0.0,0.0,580),(5499,350149,0.0,0.0,0.0,570),(5500,350150,0.0,0.0,0.0,580),(5501,350151,0.0,0.0,0.0,580),(5502,350152,0.0,0.0,0.0,580),(5503,350153,0.0,0.0,0.0,580),(5504,350154,0.0,0.0,0.0,580),(5505,350155,0.0,0.0,0.0,580),(5506,350157,0.0,0.0,0.0,580),(5507,350156,0.0,0.0,0.0,580),(5508,350148,0.0,0.0,0.0,580),(5509,350147,0.0,0.0,0.0,580),(5510,350146,0.0,0.0,0.0,580),(5511,350145,0.0,0.0,0.0,580),(5512,350143,0.0,0.0,0.0,580),(5513,350142,0.0,0.0,0.0,580),(5514,350178,0.0,0.0,0.0,580),(5515,350177,0.0,0.0,0.0,580),(5516,350175,0.0,0.0,0.0,580),(5517,350176,0.0,0.0,0.0,560),(5518,350174,0.0,0.0,0.0,580),(5519,350172,0.0,0.0,0.0,580),(5520,350170,0.0,0.0,0.0,580),(5521,350166,0.0,0.0,0.0,580),(5522,350173,0.0,0.0,0.0,580),(5523,350168,0.0,0.0,0.0,580),(5524,353988,0.0,0.0,0.0,730),(5525,353515,0.0,0.0,0.0,730),(5526,353497,0.0,0.0,0.0,730),(5527,353752,0.0,0.0,0.0,730),(5528,353780,0.0,0.0,0.0,730),(5529,353705,0.0,0.0,0.0,730),(5530,353279,0.0,0.0,0.0,730),(5531,349669,0.0,0.0,0.0,730),(5532,349859,0.0,0.0,0.0,730),(5533,349749,0.0,0.0,0.0,730),(5534,349952,0.0,0.0,0.0,730),(5535,349872,0.0,0.0,0.0,730),(5536,350117,0.0,0.0,0.0,730),(5537,350203,0.0,0.0,0.0,730),(5538,350389,0.0,0.0,0.0,730),(5539,350493,0.0,0.0,0.0,730),(5540,350498,0.0,0.0,0.0,730),(5541,350986,0.0,0.0,0.0,730),(5542,346199,0.0,0.0,0.0,730),(5543,346408,0.0,0.0,0.0,730),(5544,346726,0.0,0.0,0.0,730),(5545,346779,0.0,0.0,0.0,730),(5546,346797,0.0,0.0,0.0,730),(5547,346985,0.0,0.0,0.0,730),(5548,347104,0.0,0.0,0.0,730),(5549,347318,0.0,0.0,0.0,730),(5550,347450,0.0,0.0,0.0,730),(5551,347729,0.0,0.0,0.0,730),(5552,347965,0.0,0.0,0.0,730),(5553,348276,0.0,0.0,0.0,730),(5554,348561,0.0,0.0,0.0,730),(5555,348902,0.0,0.0,0.0,730),(5556,348914,0.0,0.0,0.0,730),(5557,348971,0.0,0.0,0.0,730),(5558,349029,0.0,0.0,0.0,730),(5559,349095,0.0,0.0,0.0,730),(5560,353614,0.0,0.0,0.0,530),(5561,348960,0.0,0.0,0.0,530),(5562,353823,0.0,0.0,0.0,530),(5563,353806,0.0,0.0,0.0,530),(5564,353767,0.0,0.0,0.0,530),(5565,353605,0.0,0.0,0.0,530),(5566,353818,0.0,0.0,0.0,530),(5567,351029,0.0,0.0,0.0,530),(5568,353824,0.0,0.0,0.0,530),(5569,354101,46.0,29.0,17.0,2400),(5570,350180,30.0,25.0,15.0,1000),(5571,354226,30.0,24.0,6.0,294),(5572,354243,30.0,24.0,6.0,570),(5573,354068,30.0,25.0,15.0,742),(5574,354071,30.0,25.0,15.0,530),(5575,353972,30.0,24.0,14.0,540),(5576,348290,30.0,24.0,14.0,590),(5577,353716,30.0,24.0,14.0,585),(5578,353673,30.0,24.0,14.0,590),(5579,353963,33.0,25.0,11.0,760),(5580,350161,30.0,24.0,6.0,574),(5581,354575,30.0,25.0,15.0,800),(5582,351268,30.0,25.0,15.0,540),(5583,354499,30.0,25.0,15.0,516),(5584,353572,0.0,0.0,0.0,1650),(5585,353695,0.0,0.0,0.0,1998),(5586,353770,0.0,0.0,0.0,1010),(5587,353792,0.0,0.0,0.0,1134),(5588,353516,0.0,0.0,0.0,584),(5589,350188,0.0,0.0,0.0,636),(5590,353463,0.0,0.0,0.0,1020),(5591,354673,30.0,25.0,15.0,53),(5592,354570,30.0,25.0,15.0,512),(5593,353480,0.0,0.0,0.0,952),(5594,353361,30.0,25.0,15.0,680),(5595,353413,30.0,25.0,15.0,916),(5596,353289,30.0,25.0,15.0,922),(5597,354788,30.0,25.0,15.0,676),(5598,354727,56.0,29.0,17.0,1462),(5599,354315,46.0,29.0,17.0,2464),(5600,354747,30.0,25.0,15.0,714),(5601,353708,30.0,25.0,15.0,874),(5602,351362,30.0,25.0,15.0,682),(5603,351320,30.0,25.0,15.0,680),(5604,350411,46.0,29.0,16.0,1560),(5605,353375,0.0,0.0,0.0,940),(5606,353377,0.0,0.0,0.0,940),(5607,353376,0.0,0.0,0.0,940),(5608,353378,0.0,0.0,0.0,940),(5609,353379,0.0,0.0,0.0,940),(5610,353380,0.0,0.0,0.0,940),(5611,353381,0.0,0.0,0.0,940),(5612,353382,0.0,0.0,0.0,940),(5613,353383,0.0,0.0,0.0,940),(5614,353384,0.0,0.0,0.0,940),(5615,353385,0.0,0.0,0.0,940),(5616,353386,0.0,0.0,0.0,940),(5617,353387,0.0,0.0,0.0,940),(5618,353388,0.0,0.0,0.0,940),(5619,353389,0.0,0.0,0.0,940),(5620,353394,0.0,0.0,0.0,940),(5621,353390,0.0,0.0,0.0,940),(5622,353391,0.0,0.0,0.0,940),(5623,354100,0.0,0.0,0.0,700),(5624,353962,0.0,0.0,0.0,700),(5625,354180,0.0,0.0,0.0,700),(5626,351073,0.0,0.0,0.0,700),(5627,351363,0.0,0.0,0.0,700),(5628,351351,0.0,0.0,0.0,700),(5629,351342,0.0,0.0,0.0,700),(5630,354753,0.0,0.0,0.0,700),(5631,353392,0.0,0.0,0.0,940),(5632,353393,0.0,0.0,0.0,940),(5633,354370,0.0,0.0,0.0,550),(5634,354074,0.0,0.0,0.0,550),(5635,354128,0.0,0.0,0.0,550),(5636,354399,0.0,0.0,0.0,550),(5637,354600,0.0,0.0,0.0,550),(5638,354491,0.0,0.0,0.0,735),(5639,354490,0.0,0.0,0.0,735),(5640,354573,0.0,0.0,0.0,735),(5641,354686,0.0,0.0,0.0,740),(5642,354682,0.0,0.0,0.0,740),(5643,354684,0.0,0.0,0.0,740),(5644,347682,0.0,0.0,0.0,890),(5645,354362,0.0,0.0,0.0,570),(5646,351367,0.0,0.0,0.0,570),(5647,350901,0.0,0.0,0.0,550),(5648,350879,0.0,0.0,0.0,550),(5649,350882,0.0,0.0,0.0,550),(5650,350897,0.0,0.0,0.0,550),(5651,350898,0.0,0.0,0.0,550),(5652,350899,0.0,0.0,0.0,550),(5653,350893,0.0,0.0,0.0,550),(5654,350895,0.0,0.0,0.0,550),(5655,350886,0.0,0.0,0.0,550),(5656,350892,0.0,0.0,0.0,550),(5657,350884,0.0,0.0,0.0,550),(5658,350883,0.0,0.0,0.0,550),(5659,354725,0.0,0.0,0.0,1995),(5660,344924,0.0,0.0,0.0,850),(5661,353877,0.0,0.0,0.0,555),(5662,351038,0.0,0.0,0.0,770),(5663,354772,0.0,0.0,0.0,890),(5664,353769,0.0,0.0,0.0,950),(5665,354158,0.0,0.0,0.0,760),(5666,354777,0.0,0.0,0.0,1130),(5667,354129,0.0,0.0,0.0,740),(5668,353340,0.0,0.0,0.0,1090),(5669,354374,0.0,0.0,0.0,890),(5670,354341,0.0,0.0,0.0,890),(5671,345439,0.0,0.0,0.0,815),(5672,349980,0.0,0.0,0.0,840),(5673,354802,30.0,25.0,15.0,715),(5674,354812,30.0,25.0,15.0,526),(5675,354878,30.0,25.0,15.0,526),(5676,354877,30.0,25.0,15.0,680),(5677,355667,30.0,25.0,15.0,684),(5678,355650,30.0,25.0,15.0,684),(5679,353341,0.0,0.0,0.0,840),(5680,351201,0.0,0.0,0.0,820),(5681,353283,0.0,0.0,0.0,870),(5682,353472,0.0,0.0,0.0,870),(5683,353742,0.0,0.0,0.0,815),(5684,351223,0.0,0.0,0.0,790),(5685,354771,0.0,0.0,0.0,1025),(5686,354820,0.0,0.0,0.0,800),(5687,350397,0.0,0.0,0.0,805),(5688,355620,0.0,0.0,0.0,750),(5689,353432,0.0,0.0,0.0,940),(5690,351305,0.0,0.0,0.0,940),(5691,351304,0.0,0.0,0.0,950),(5692,351303,0.0,0.0,0.0,955),(5693,351297,0.0,0.0,0.0,960),(5694,354495,0.0,0.0,0.0,625),(5695,355619,0.0,0.0,0.0,940),(5696,354211,0.0,0.0,0.0,910),(5697,353861,0.0,0.0,0.0,600),(5698,354876,0.0,0.0,0.0,425),(5699,353875,0.0,0.0,0.0,595),(5700,353876,0.0,0.0,0.0,600),(5701,354494,0.0,0.0,0.0,815),(5702,354493,0.0,0.0,0.0,755),(5703,353611,0.0,0.0,0.0,1915),(5704,355654,0.0,0.0,0.0,770),(5705,354299,0.0,0.0,0.0,1090),(5706,354818,0.0,0.0,0.0,1534),(5707,354846,0.0,0.0,0.0,712),(5708,354807,0.0,0.0,0.0,712),(5709,354879,0.0,0.0,0.0,712),(5710,354868,0.0,0.0,0.0,712),(5711,354869,0.0,0.0,0.0,716),(5712,354435,0.0,0.0,0.0,1456),(5713,354305,0.0,0.0,0.0,2770),(5714,354319,0.0,0.0,0.0,1630),(5715,354244,0.0,0.0,0.0,2062),(5716,351040,0.0,0.0,0.0,1000),(5717,354845,0.0,0.0,0.0,515),(5718,354852,0.0,0.0,0.0,550),(5719,354916,0.0,0.0,0.0,570),(5720,355635,0.0,0.0,0.0,550),(5721,347649,0.0,0.0,0.0,524),(5722,353421,0.0,0.0,0.0,930),(5723,353422,0.0,0.0,0.0,930),(5724,353423,0.0,0.0,0.0,930),(5725,353424,0.0,0.0,0.0,930),(5726,353425,0.0,0.0,0.0,930),(5727,353426,0.0,0.0,0.0,930),(5728,353427,0.0,0.0,0.0,930),(5729,353406,0.0,0.0,0.0,930),(5730,353407,0.0,0.0,0.0,930),(5731,353409,0.0,0.0,0.0,930),(5732,353410,0.0,0.0,0.0,930),(5733,353412,0.0,0.0,0.0,930),(5734,353414,0.0,0.0,0.0,930),(5735,353415,0.0,0.0,0.0,930),(5736,353416,0.0,0.0,0.0,930),(5737,353428,0.0,0.0,0.0,930),(5738,353429,0.0,0.0,0.0,930),(5739,351335,0.0,0.0,0.0,930),(5740,353430,0.0,0.0,0.0,930),(5741,351318,0.0,0.0,0.0,930),(5742,351317,0.0,0.0,0.0,930),(5743,351316,0.0,0.0,0.0,930),(5744,351315,0.0,0.0,0.0,930),(5745,351314,0.0,0.0,0.0,930),(5746,353417,0.0,0.0,0.0,930),(5747,353405,0.0,0.0,0.0,930),(5748,353403,0.0,0.0,0.0,930),(5749,353395,0.0,0.0,0.0,930),(5750,353404,0.0,0.0,0.0,930),(5751,353396,0.0,0.0,0.0,930),(5752,353397,0.0,0.0,0.0,930),(5753,353398,0.0,0.0,0.0,930),(5754,353399,0.0,0.0,0.0,930),(5755,353400,0.0,0.0,0.0,930),(5756,353483,0.0,0.0,0.0,930),(5757,351308,0.0,0.0,0.0,930),(5758,351309,0.0,0.0,0.0,930),(5759,351311,0.0,0.0,0.0,930),(5760,353276,0.0,0.0,0.0,930),(5761,351313,0.0,0.0,0.0,930),(5762,353373,0.0,0.0,0.0,930),(5763,353374,0.0,0.0,0.0,930),(5764,353431,0.0,0.0,0.0,930),(5765,351306,0.0,0.0,0.0,930),(5766,353418,0.0,0.0,0.0,930),(5767,353419,0.0,0.0,0.0,930),(5768,353420,0.0,0.0,0.0,930),(5769,353699,30.0,24.0,14.0,620),(5770,356373,0.0,0.0,0.0,1010),(5771,350965,30.0,25.0,15.0,600),(5772,354620,30.0,25.0,15.0,522),(5773,355999,30.0,25.0,15.0,520),(5774,355707,30.0,25.0,15.0,874),(5775,356134,30.0,25.0,15.0,546),(5776,355988,30.0,25.0,15.0,720),(5777,356008,30.0,25.0,15.0,522),(5778,355963,30.0,25.0,15.0,712),(5779,356000,30.0,25.0,15.0,1148),(5780,346394,30.0,25.0,15.0,674),(5781,355968,33.0,25.0,11.0,920),(5782,355684,33.0,25.0,11.0,1000),(5783,351183,30.0,25.0,15.0,506),(5784,356025,46.0,30.0,16.0,1854),(5785,351321,0.0,0.0,0.0,770),(5786,351002,0.0,0.0,0.0,770),(5787,351063,0.0,0.0,0.0,770),(5788,350997,0.0,0.0,0.0,770),(5789,350994,0.0,0.0,0.0,770),(5790,350947,0.0,0.0,0.0,770),(5791,350955,0.0,0.0,0.0,770),(5792,350963,0.0,0.0,0.0,770),(5793,353578,0.0,0.0,0.0,770),(5794,351293,0.0,0.0,0.0,770),(5795,351088,0.0,0.0,0.0,770),(5796,351139,0.0,0.0,0.0,770),(5797,351200,0.0,0.0,0.0,770),(5798,351212,0.0,0.0,0.0,770),(5799,351276,0.0,0.0,0.0,770),(5800,354304,0.0,0.0,0.0,555),(5801,353814,0.0,0.0,0.0,590),(5802,350414,0.0,0.0,0.0,770),(5803,351087,0.0,0.0,0.0,770),(5804,350966,0.0,0.0,0.0,770),(5805,350983,0.0,0.0,0.0,770),(5806,354949,0.0,0.0,0.0,765),(5807,354951,0.0,0.0,0.0,765),(5808,354952,0.0,0.0,0.0,770),(5809,354953,0.0,0.0,0.0,770),(5810,354954,0.0,0.0,0.0,770),(5811,354955,0.0,0.0,0.0,770),(5812,354956,0.0,0.0,0.0,770),(5813,354957,0.0,0.0,0.0,770),(5814,354958,0.0,0.0,0.0,770),(5815,354959,0.0,0.0,0.0,770),(5816,354960,0.0,0.0,0.0,770),(5817,354961,0.0,0.0,0.0,770),(5818,354962,0.0,0.0,0.0,770),(5819,355071,0.0,0.0,0.0,770),(5820,355611,0.0,0.0,0.0,770),(5821,355612,0.0,0.0,0.0,770),(5822,355080,0.0,0.0,0.0,770),(5823,355079,0.0,0.0,0.0,770),(5824,355421,0.0,0.0,0.0,770),(5825,355067,0.0,0.0,0.0,770),(5826,355068,0.0,0.0,0.0,770),(5827,355069,0.0,0.0,0.0,770),(5828,355070,0.0,0.0,0.0,770),(5829,355073,0.0,0.0,0.0,770),(5830,355074,0.0,0.0,0.0,770),(5831,355075,0.0,0.0,0.0,770),(5832,354942,0.0,0.0,0.0,770),(5833,354945,0.0,0.0,0.0,770),(5834,354944,0.0,0.0,0.0,770),(5835,354947,0.0,0.0,0.0,770),(5836,354948,0.0,0.0,0.0,770),(5837,355076,0.0,0.0,0.0,770),(5838,355077,0.0,0.0,0.0,770),(5839,355078,0.0,0.0,0.0,770),(5840,355065,0.0,0.0,0.0,770),(5841,355063,0.0,0.0,0.0,770),(5842,355062,0.0,0.0,0.0,770),(5843,355061,0.0,0.0,0.0,770),(5844,355060,0.0,0.0,0.0,770),(5845,355058,0.0,0.0,0.0,770),(5846,355056,0.0,0.0,0.0,770),(5847,355055,0.0,0.0,0.0,770),(5848,355054,0.0,0.0,0.0,770),(5849,355053,0.0,0.0,0.0,770),(5850,355052,0.0,0.0,0.0,770),(5851,355050,0.0,0.0,0.0,770),(5852,355049,0.0,0.0,0.0,770),(5853,355048,0.0,0.0,0.0,770),(5854,355047,0.0,0.0,0.0,770),(5855,355046,0.0,0.0,0.0,770),(5856,355045,0.0,0.0,0.0,770),(5857,355044,0.0,0.0,0.0,770),(5858,355042,0.0,0.0,0.0,770),(5859,355041,0.0,0.0,0.0,770),(5860,355040,0.0,0.0,0.0,770),(5861,355039,0.0,0.0,0.0,770),(5862,355037,0.0,0.0,0.0,770),(5863,355028,0.0,0.0,0.0,770),(5864,355579,0.0,0.0,0.0,770),(5865,355066,0.0,0.0,0.0,770),(5866,355026,0.0,0.0,0.0,770),(5867,355027,0.0,0.0,0.0,770),(5868,345651,0.0,0.0,0.0,770),(5869,354896,0.0,0.0,0.0,770),(5870,354899,0.0,0.0,0.0,770),(5871,354895,0.0,0.0,0.0,770),(5872,354894,0.0,0.0,0.0,770),(5873,354893,0.0,0.0,0.0,770),(5874,354891,0.0,0.0,0.0,770),(5875,354890,0.0,0.0,0.0,770),(5876,354888,0.0,0.0,0.0,770),(5877,354887,0.0,0.0,0.0,770),(5878,354912,0.0,0.0,0.0,770),(5879,354911,0.0,0.0,0.0,770),(5880,354910,0.0,0.0,0.0,770),(5881,345389,0.0,0.0,0.0,770),(5882,351194,0.0,0.0,0.0,770),(5883,351116,0.0,0.0,0.0,770),(5884,350671,0.0,0.0,0.0,770),(5885,351108,0.0,0.0,0.0,770),(5886,350546,0.0,0.0,0.0,770),(5887,350351,0.0,0.0,0.0,770),(5888,355605,0.0,0.0,0.0,770),(5889,350234,0.0,0.0,0.0,770),(5890,350228,0.0,0.0,0.0,770),(5891,350115,0.0,0.0,0.0,770),(5892,354886,0.0,0.0,0.0,770),(5893,354885,0.0,0.0,0.0,770),(5894,354535,0.0,0.0,0.0,770),(5895,354510,0.0,0.0,0.0,770),(5896,353797,0.0,0.0,0.0,770),(5897,353281,0.0,0.0,0.0,770),(5898,351349,0.0,0.0,0.0,770),(5899,354905,0.0,0.0,0.0,775),(5900,354906,0.0,0.0,0.0,775),(5901,354908,0.0,0.0,0.0,775),(5902,354900,0.0,0.0,0.0,775),(5903,351234,0.0,0.0,0.0,775),(5904,351245,0.0,0.0,0.0,775),(5905,351250,0.0,0.0,0.0,775),(5906,356465,0.0,0.0,0.0,775),(5907,356471,0.0,0.0,0.0,775),(5908,355201,0.0,0.0,0.0,770),(5909,355059,0.0,0.0,0.0,775),(5910,354968,0.0,0.0,0.0,775),(5911,356505,0.0,0.0,0.0,775),(5912,346669,0.0,0.0,0.0,780),(5913,346698,0.0,0.0,0.0,780),(5914,347559,0.0,0.0,0.0,780),(5915,347806,0.0,0.0,0.0,780),(5916,348274,0.0,0.0,0.0,780),(5917,349050,0.0,0.0,0.0,780),(5918,349606,0.0,0.0,0.0,780),(5919,349922,0.0,0.0,0.0,780),(5920,349929,0.0,0.0,0.0,780),(5921,355033,0.0,0.0,0.0,780),(5922,355034,0.0,0.0,0.0,780),(5923,355036,0.0,0.0,0.0,780),(5924,355032,0.0,0.0,0.0,780),(5925,355031,0.0,0.0,0.0,780),(5926,355030,0.0,0.0,0.0,780),(5927,355029,0.0,0.0,0.0,780),(5928,354940,0.0,0.0,0.0,780),(5929,354939,0.0,0.0,0.0,780),(5930,354936,0.0,0.0,0.0,780),(5931,354935,0.0,0.0,0.0,780),(5932,354934,0.0,0.0,0.0,780),(5933,356368,0.0,0.0,0.0,780),(5934,355025,0.0,0.0,0.0,780),(5935,356130,0.0,0.0,0.0,780),(5936,356063,0.0,0.0,0.0,780),(5937,355480,0.0,0.0,0.0,780),(5938,355481,0.0,0.0,0.0,780),(5939,355482,0.0,0.0,0.0,780),(5940,355483,0.0,0.0,0.0,780),(5941,355484,0.0,0.0,0.0,780),(5942,355485,0.0,0.0,0.0,780),(5943,355486,0.0,0.0,0.0,780),(5944,355487,0.0,0.0,0.0,780),(5945,355488,0.0,0.0,0.0,780),(5946,355489,0.0,0.0,0.0,780),(5947,355490,0.0,0.0,0.0,780),(5948,355491,0.0,0.0,0.0,780),(5949,355492,0.0,0.0,0.0,780),(5950,355493,0.0,0.0,0.0,780),(5951,355495,0.0,0.0,0.0,780),(5952,355496,0.0,0.0,0.0,780),(5953,355497,0.0,0.0,0.0,780),(5954,355498,0.0,0.0,0.0,780),(5955,355499,0.0,0.0,0.0,780),(5956,355500,0.0,0.0,0.0,780),(5957,353793,0.0,0.0,0.0,816),(5958,353707,0.0,0.0,0.0,816),(5959,353642,0.0,0.0,0.0,816),(5960,353621,0.0,0.0,0.0,816),(5961,353581,0.0,0.0,0.0,816),(5962,353547,0.0,0.0,0.0,816),(5963,353442,0.0,0.0,0.0,816),(5964,353275,0.0,0.0,0.0,816),(5965,353274,0.0,0.0,0.0,816),(5966,354937,0.0,0.0,0.0,780),(5967,355038,0.0,0.0,0.0,770),(5968,354163,30.0,24.0,14.0,780),(5969,354632,46.0,29.0,16.0,1144),(5970,345131,30.0,24.0,14.0,752),(5971,356525,30.0,24.0,14.0,540),(5972,350315,30.0,24.0,14.0,544),(5973,356120,30.0,24.0,14.0,542),(5974,356075,30.0,24.0,14.0,544),(5975,354572,30.0,25.0,15.0,750),(5976,354213,30.0,24.0,14.0,754),(5977,356510,33.0,25.0,15.0,1270),(5978,356116,30.0,24.0,14.0,692),(5979,356536,46.0,29.0,16.0,1372),(5980,356508,30.0,24.0,6.0,550),(5981,356533,30.0,24.0,14.0,544),(5982,354482,30.0,25.0,15.0,750),(5983,354387,30.0,25.0,15.0,750),(5984,351198,30.0,25.0,15.0,750),(5985,355585,30.0,25.0,15.0,750),(5986,355539,30.0,25.0,15.0,750),(5987,355527,30.0,25.0,15.0,750),(5988,355520,30.0,25.0,15.0,750),(5989,355429,30.0,25.0,15.0,750),(5990,355290,30.0,25.0,15.0,750),(5991,355256,30.0,25.0,15.0,750),(5992,355211,30.0,25.0,15.0,750),(5993,355366,30.0,25.0,15.0,750),(5994,355405,30.0,25.0,15.0,750),(5995,355091,30.0,25.0,15.0,750),(5996,355012,30.0,25.0,15.0,750),(5997,355597,30.0,25.0,15.0,750),(5998,355363,30.0,24.0,14.0,740),(5999,355368,30.0,24.0,14.0,740),(6000,355380,30.0,24.0,15.0,750),(6001,355387,30.0,24.0,14.0,740),(6002,355300,30.0,24.0,14.0,745),(6003,355324,30.0,24.0,14.0,745),(6004,355327,30.0,24.0,14.0,745),(6005,355337,30.0,24.0,14.0,745),(6006,355435,30.0,24.0,14.0,750),(6007,350369,39.0,29.0,17.0,1366),(6008,356559,33.0,25.0,11.0,2400),(6009,356560,46.0,29.0,22.0,2032),(6010,350128,30.0,25.0,15.0,750),(6011,346934,30.0,25.0,15.0,750),(6012,351133,30.0,25.0,15.0,550),(6013,355692,30.0,25.0,15.0,550),(6014,353719,30.0,25.0,15.0,550),(6015,351279,30.0,25.0,15.0,552),(6016,346695,30.0,25.0,15.0,550),(6017,356383,30.0,25.0,15.0,550),(6018,345777,30.0,25.0,15.0,550),(6019,346279,39.0,29.0,17.0,1394),(6020,351068,30.0,25.0,15.0,790),(6021,350914,39.0,29.0,17.0,1400),(6022,345757,33.0,26.0,17.0,1060),(6023,346052,33.0,26.0,17.0,1060),(6024,348186,30.0,25.0,15.0,822),(6025,350469,30.0,25.0,15.0,572),(6026,347504,30.0,25.0,15.0,804),(6027,348417,30.0,25.0,15.0,766),(6028,353676,33.0,26.0,17.0,1056),(6029,350613,30.0,25.0,15.0,800),(6030,355351,46.0,29.0,16.0,1416),(6031,355586,0.0,0.0,0.0,750),(6032,355583,0.0,0.0,0.0,780),(6033,355584,0.0,0.0,0.0,780),(6034,355587,0.0,0.0,0.0,780),(6035,354995,0.0,0.0,0.0,780),(6036,354996,0.0,0.0,0.0,780),(6037,354997,0.0,0.0,0.0,780),(6038,354999,0.0,0.0,0.0,780),(6039,355001,0.0,0.0,0.0,780),(6040,355002,0.0,0.0,0.0,780),(6041,355003,0.0,0.0,0.0,780),(6042,355004,0.0,0.0,0.0,780),(6043,354985,0.0,0.0,0.0,780),(6044,354986,0.0,0.0,0.0,780),(6045,354987,0.0,0.0,0.0,780),(6046,354988,0.0,0.0,0.0,780),(6047,354989,0.0,0.0,0.0,780),(6048,354990,0.0,0.0,0.0,780),(6049,354991,0.0,0.0,0.0,780),(6050,354992,0.0,0.0,0.0,780),(6051,354993,0.0,0.0,0.0,780),(6052,354972,0.0,0.0,0.0,780),(6053,354973,0.0,0.0,0.0,780),(6054,354974,0.0,0.0,0.0,780),(6055,354975,0.0,0.0,0.0,780),(6056,354976,0.0,0.0,0.0,780),(6057,354977,0.0,0.0,0.0,780),(6058,354978,0.0,0.0,0.0,780),(6059,354981,0.0,0.0,0.0,780),(6060,354983,0.0,0.0,0.0,780),(6061,354984,0.0,0.0,0.0,780),(6062,354925,0.0,0.0,0.0,780),(6063,354926,0.0,0.0,0.0,780),(6064,354931,0.0,0.0,0.0,780),(6065,354932,0.0,0.0,0.0,780),(6066,355538,0.0,0.0,0.0,780),(6067,355540,0.0,0.0,0.0,780),(6068,355541,0.0,0.0,0.0,780),(6069,354967,0.0,0.0,0.0,780),(6070,354969,0.0,0.0,0.0,780),(6071,354971,0.0,0.0,0.0,780),(6072,355016,0.0,0.0,0.0,770),(6073,355015,0.0,0.0,0.0,770),(6074,355014,0.0,0.0,0.0,770),(6075,355011,0.0,0.0,0.0,770),(6076,355008,0.0,0.0,0.0,770),(6077,355009,0.0,0.0,0.0,770),(6078,355007,0.0,0.0,0.0,770),(6079,355006,0.0,0.0,0.0,770),(6080,354897,0.0,0.0,0.0,770),(6081,354966,0.0,0.0,0.0,770),(6082,354965,0.0,0.0,0.0,770),(6083,354964,0.0,0.0,0.0,770),(6084,355023,0.0,0.0,0.0,770),(6085,355022,0.0,0.0,0.0,770),(6086,355021,0.0,0.0,0.0,770),(6087,355020,0.0,0.0,0.0,770),(6088,355019,0.0,0.0,0.0,770),(6089,355018,0.0,0.0,0.0,770),(6090,355552,0.0,0.0,0.0,770),(6091,355551,0.0,0.0,0.0,770),(6092,355550,0.0,0.0,0.0,770),(6093,355549,0.0,0.0,0.0,770),(6094,355548,0.0,0.0,0.0,770),(6095,355547,0.0,0.0,0.0,770),(6096,355545,0.0,0.0,0.0,770),(6097,355543,0.0,0.0,0.0,770),(6098,355546,0.0,0.0,0.0,770),(6099,355542,0.0,0.0,0.0,770),(6100,355564,0.0,0.0,0.0,770),(6101,355563,0.0,0.0,0.0,770),(6102,355562,0.0,0.0,0.0,770),(6103,355560,0.0,0.0,0.0,770),(6104,355559,0.0,0.0,0.0,770),(6105,355558,0.0,0.0,0.0,770),(6106,355556,0.0,0.0,0.0,770),(6107,355555,0.0,0.0,0.0,770),(6108,355554,0.0,0.0,0.0,770),(6109,355553,0.0,0.0,0.0,770),(6110,355574,0.0,0.0,0.0,770),(6111,355573,0.0,0.0,0.0,770),(6112,355572,0.0,0.0,0.0,770),(6113,355571,0.0,0.0,0.0,770),(6114,355570,0.0,0.0,0.0,770),(6115,355569,0.0,0.0,0.0,770),(6116,355568,0.0,0.0,0.0,770),(6117,355567,0.0,0.0,0.0,770),(6118,355566,0.0,0.0,0.0,770),(6119,355565,0.0,0.0,0.0,770),(6120,355588,0.0,0.0,0.0,770),(6121,355576,0.0,0.0,0.0,770),(6122,355575,0.0,0.0,0.0,770),(6123,355599,0.0,0.0,0.0,770),(6124,355598,0.0,0.0,0.0,770),(6125,355596,0.0,0.0,0.0,770),(6126,355595,0.0,0.0,0.0,770),(6127,355582,0.0,0.0,0.0,770),(6128,355581,0.0,0.0,0.0,770),(6129,355578,0.0,0.0,0.0,770),(6130,355577,0.0,0.0,0.0,770),(6131,355594,0.0,0.0,0.0,770),(6132,355593,0.0,0.0,0.0,770),(6133,355592,0.0,0.0,0.0,770),(6134,355591,0.0,0.0,0.0,770),(6135,355590,0.0,0.0,0.0,770),(6136,355589,0.0,0.0,0.0,770),(6137,355609,0.0,0.0,0.0,770),(6138,355610,0.0,0.0,0.0,770),(6139,355608,0.0,0.0,0.0,770),(6140,355607,0.0,0.0,0.0,770),(6141,355606,0.0,0.0,0.0,770),(6142,355604,0.0,0.0,0.0,770),(6143,355603,0.0,0.0,0.0,770),(6144,355602,0.0,0.0,0.0,770),(6145,355601,0.0,0.0,0.0,770),(6146,355600,0.0,0.0,0.0,770),(6147,351178,0.0,0.0,0.0,770),(6148,351175,0.0,0.0,0.0,770),(6149,350824,0.0,0.0,0.0,770),(6150,350730,0.0,0.0,0.0,770),(6151,350644,0.0,0.0,0.0,770),(6152,350620,0.0,0.0,0.0,770),(6153,350559,0.0,0.0,0.0,770),(6154,350537,0.0,0.0,0.0,770),(6155,350444,0.0,0.0,0.0,770),(6156,349322,0.0,0.0,0.0,770),(6157,355209,0.0,0.0,0.0,770),(6158,355208,0.0,0.0,0.0,770),(6159,355207,0.0,0.0,0.0,770),(6160,354120,0.0,0.0,0.0,770),(6161,354064,0.0,0.0,0.0,770),(6162,353710,0.0,0.0,0.0,770),(6163,353570,0.0,0.0,0.0,770),(6164,353323,0.0,0.0,0.0,770),(6165,351283,0.0,0.0,0.0,770),(6166,355013,0.0,0.0,0.0,770),(6167,351252,0.0,0.0,0.0,770),(6168,355017,0.0,0.0,0.0,770),(6169,354994,0.0,0.0,0.0,780),(6170,355005,0.0,0.0,0.0,780),(6171,354998,0.0,0.0,0.0,780),(6172,356684,30.0,24.0,6.0,290),(6173,350669,33.0,25.0,11.0,652),(6174,356645,33.0,25.0,11.0,1312),(6175,356718,30.0,25.0,15.0,530),(6176,350984,30.0,25.0,15.0,530),(6177,356896,30.0,25.0,15.0,510),(6178,356662,30.0,25.0,15.0,682),(6179,356910,30.0,25.0,15.0,684),(6180,356841,30.0,25.0,15.0,742),(6181,356679,30.0,25.0,15.0,512),(6182,356668,30.0,25.0,15.0,530),(6183,353826,30.0,25.0,15.0,730),(6184,356443,30.0,25.0,15.0,556),(6185,356675,30.0,25.0,15.0,515),(6186,350419,30.0,25.0,15.0,530),(6187,356610,30.0,25.0,15.0,530),(6188,356657,46.0,29.0,16.0,1096),(6189,355263,0.0,0.0,0.0,770),(6190,355283,0.0,0.0,0.0,770),(6191,355282,0.0,0.0,0.0,770),(6192,355281,0.0,0.0,0.0,770),(6193,355280,0.0,0.0,0.0,770),(6194,355279,0.0,0.0,0.0,770),(6195,355278,0.0,0.0,0.0,770),(6196,355277,0.0,0.0,0.0,770),(6197,355276,0.0,0.0,0.0,770),(6198,355275,0.0,0.0,0.0,770),(6199,355274,0.0,0.0,0.0,770),(6200,355294,0.0,0.0,0.0,770),(6201,355293,0.0,0.0,0.0,770),(6202,355292,0.0,0.0,0.0,770),(6203,355291,0.0,0.0,0.0,770),(6204,355289,0.0,0.0,0.0,770),(6205,355288,0.0,0.0,0.0,770),(6206,355287,0.0,0.0,0.0,770),(6207,355254,0.0,0.0,0.0,770),(6208,355255,0.0,0.0,0.0,770),(6209,355252,0.0,0.0,0.0,770),(6210,355253,0.0,0.0,0.0,770),(6211,355273,0.0,0.0,0.0,770),(6212,355272,0.0,0.0,0.0,770),(6213,355271,0.0,0.0,0.0,770),(6214,355270,0.0,0.0,0.0,770),(6215,355268,0.0,0.0,0.0,770),(6216,355267,0.0,0.0,0.0,770),(6217,355266,0.0,0.0,0.0,770),(6218,355265,0.0,0.0,0.0,770),(6219,355264,0.0,0.0,0.0,770),(6220,355286,0.0,0.0,0.0,770),(6221,355285,0.0,0.0,0.0,770),(6222,355284,0.0,0.0,0.0,770),(6223,355305,0.0,0.0,0.0,770),(6224,355306,0.0,0.0,0.0,770),(6225,355303,0.0,0.0,0.0,770),(6226,355302,0.0,0.0,0.0,770),(6227,355301,0.0,0.0,0.0,770),(6228,355299,0.0,0.0,0.0,770),(6229,355298,0.0,0.0,0.0,770),(6230,355297,0.0,0.0,0.0,770),(6231,355296,0.0,0.0,0.0,770),(6232,355116,0.0,0.0,0.0,770),(6233,355089,0.0,0.0,0.0,770),(6234,355035,0.0,0.0,0.0,770),(6235,354930,0.0,0.0,0.0,770),(6236,354898,0.0,0.0,0.0,770),(6237,354904,0.0,0.0,0.0,770),(6238,354903,0.0,0.0,0.0,770),(6239,354902,0.0,0.0,0.0,770),(6240,354901,0.0,0.0,0.0,770),(6241,354924,0.0,0.0,0.0,770),(6242,354923,0.0,0.0,0.0,770),(6243,354922,0.0,0.0,0.0,770),(6244,354921,0.0,0.0,0.0,770),(6245,354920,0.0,0.0,0.0,770),(6246,354919,0.0,0.0,0.0,770),(6247,354918,0.0,0.0,0.0,770),(6248,354917,0.0,0.0,0.0,770),(6249,354914,0.0,0.0,0.0,770),(6250,354913,0.0,0.0,0.0,770),(6251,347876,0.0,0.0,0.0,770),(6252,355220,0.0,0.0,0.0,770),(6253,355219,0.0,0.0,0.0,770),(6254,355218,0.0,0.0,0.0,770),(6255,355217,0.0,0.0,0.0,770),(6256,355216,0.0,0.0,0.0,770),(6257,355215,0.0,0.0,0.0,770),(6258,355214,0.0,0.0,0.0,770),(6259,355213,0.0,0.0,0.0,770),(6260,355212,0.0,0.0,0.0,770),(6261,355210,0.0,0.0,0.0,770),(6262,355230,0.0,0.0,0.0,770),(6263,355229,0.0,0.0,0.0,770),(6264,355228,0.0,0.0,0.0,770),(6265,355227,0.0,0.0,0.0,770),(6266,355226,0.0,0.0,0.0,770),(6267,355225,0.0,0.0,0.0,770),(6268,355224,0.0,0.0,0.0,770),(6269,355223,0.0,0.0,0.0,770),(6270,355222,0.0,0.0,0.0,770),(6271,355221,0.0,0.0,0.0,770),(6272,355241,0.0,0.0,0.0,770),(6273,355240,0.0,0.0,0.0,770),(6274,355239,0.0,0.0,0.0,770),(6275,355238,0.0,0.0,0.0,770),(6276,355237,0.0,0.0,0.0,770),(6277,355236,0.0,0.0,0.0,770),(6278,355328,0.0,0.0,0.0,770),(6279,355326,0.0,0.0,0.0,770),(6280,355325,0.0,0.0,0.0,770),(6281,355322,0.0,0.0,0.0,770),(6282,355295,0.0,0.0,0.0,770),(6283,355340,0.0,0.0,0.0,770),(6284,355163,0.0,0.0,0.0,770),(6285,355311,0.0,0.0,0.0,770),(6286,355314,0.0,0.0,0.0,770),(6287,355171,0.0,0.0,0.0,770),(6288,355148,0.0,0.0,0.0,770),(6289,355154,0.0,0.0,0.0,770),(6290,355156,0.0,0.0,0.0,770),(6291,355336,0.0,0.0,0.0,770),(6292,355149,0.0,0.0,0.0,770),(6293,355339,0.0,0.0,0.0,770),(6294,355338,0.0,0.0,0.0,770),(6295,355155,0.0,0.0,0.0,770),(6296,355151,0.0,0.0,0.0,770),(6297,355235,0.0,0.0,0.0,770),(6298,355234,0.0,0.0,0.0,770),(6299,355232,0.0,0.0,0.0,770),(6300,355251,0.0,0.0,0.0,770),(6301,355250,0.0,0.0,0.0,770),(6302,355249,0.0,0.0,0.0,770),(6303,355248,0.0,0.0,0.0,770),(6304,355247,0.0,0.0,0.0,770),(6305,355246,0.0,0.0,0.0,770),(6306,355244,0.0,0.0,0.0,770),(6307,355243,0.0,0.0,0.0,770),(6308,355242,0.0,0.0,0.0,770),(6309,355262,0.0,0.0,0.0,770),(6310,355261,0.0,0.0,0.0,770),(6311,355260,0.0,0.0,0.0,770),(6312,355259,0.0,0.0,0.0,770),(6313,355233,0.0,0.0,0.0,770),(6314,355258,0.0,0.0,0.0,770),(6315,355257,0.0,0.0,0.0,770),(6316,355245,0.0,0.0,0.0,770),(6317,355096,0.0,0.0,0.0,770),(6318,355095,0.0,0.0,0.0,770),(6319,355120,0.0,0.0,0.0,770),(6320,355119,0.0,0.0,0.0,770),(6321,355118,0.0,0.0,0.0,770),(6322,355117,0.0,0.0,0.0,770),(6323,355115,0.0,0.0,0.0,770),(6324,355114,0.0,0.0,0.0,770),(6325,355113,0.0,0.0,0.0,770),(6326,355110,0.0,0.0,0.0,770),(6327,355109,0.0,0.0,0.0,770),(6328,355108,0.0,0.0,0.0,770),(6329,355133,0.0,0.0,0.0,770),(6330,355131,0.0,0.0,0.0,770),(6331,355130,0.0,0.0,0.0,770),(6332,355129,0.0,0.0,0.0,770),(6333,355127,0.0,0.0,0.0,770),(6334,355126,0.0,0.0,0.0,770),(6335,355125,0.0,0.0,0.0,770),(6336,355124,0.0,0.0,0.0,770),(6337,355121,0.0,0.0,0.0,770),(6338,355146,0.0,0.0,0.0,770),(6339,355144,0.0,0.0,0.0,770),(6340,355335,0.0,0.0,0.0,770),(6341,355334,0.0,0.0,0.0,770),(6342,355333,0.0,0.0,0.0,770),(6343,355331,0.0,0.0,0.0,770),(6344,355330,0.0,0.0,0.0,770),(6345,355329,0.0,0.0,0.0,770),(6346,355082,0.0,0.0,0.0,770),(6347,355350,0.0,0.0,0.0,770),(6348,355349,0.0,0.0,0.0,770),(6349,355348,0.0,0.0,0.0,770),(6350,355347,0.0,0.0,0.0,770),(6351,355346,0.0,0.0,0.0,770),(6352,355345,0.0,0.0,0.0,770),(6353,355344,0.0,0.0,0.0,770),(6354,355343,0.0,0.0,0.0,770),(6355,355342,0.0,0.0,0.0,770),(6356,355092,0.0,0.0,0.0,770),(6357,355093,0.0,0.0,0.0,770),(6358,355090,0.0,0.0,0.0,770),(6359,355088,0.0,0.0,0.0,770),(6360,355094,0.0,0.0,0.0,770),(6361,355087,0.0,0.0,0.0,770),(6362,355086,0.0,0.0,0.0,770),(6363,355085,0.0,0.0,0.0,770),(6364,355083,0.0,0.0,0.0,770),(6365,355084,0.0,0.0,0.0,770),(6366,355107,0.0,0.0,0.0,770),(6367,355106,0.0,0.0,0.0,770),(6368,355104,0.0,0.0,0.0,770),(6369,355103,0.0,0.0,0.0,770),(6370,355102,0.0,0.0,0.0,770),(6371,355101,0.0,0.0,0.0,770),(6372,355097,0.0,0.0,0.0,770),(6373,355204,0.0,0.0,0.0,770),(6374,355203,0.0,0.0,0.0,770),(6375,355202,0.0,0.0,0.0,770),(6376,355200,0.0,0.0,0.0,770),(6377,355199,0.0,0.0,0.0,770),(6378,355197,0.0,0.0,0.0,770),(6379,355364,0.0,0.0,0.0,770),(6380,355361,0.0,0.0,0.0,770),(6381,355362,0.0,0.0,0.0,770),(6382,355360,0.0,0.0,0.0,770),(6383,355359,0.0,0.0,0.0,770),(6384,355357,0.0,0.0,0.0,770),(6385,355358,0.0,0.0,0.0,770),(6386,355356,0.0,0.0,0.0,770),(6387,355098,0.0,0.0,0.0,770),(6388,356553,0.0,0.0,0.0,412),(6389,356312,0.0,0.0,0.0,406),(6390,356055,0.0,0.0,0.0,580),(6391,355905,0.0,0.0,0.0,416),(6392,356292,0.0,0.0,0.0,584),(6393,356281,0.0,0.0,0.0,408),(6394,356280,0.0,0.0,0.0,580),(6395,356278,0.0,0.0,0.0,580),(6396,356520,0.0,0.0,0.0,578),(6397,356374,0.0,0.0,0.0,582),(6398,356340,0.0,0.0,0.0,396),(6399,356314,0.0,0.0,0.0,412),(6400,356322,0.0,0.0,0.0,588),(6401,356323,0.0,0.0,0.0,594),(6402,356980,33.0,25.0,11.0,1020),(6403,357244,30.0,24.0,14.0,930),(6404,357233,30.0,24.0,14.0,694),(6405,357230,30.0,24.0,14.0,690),(6406,356664,30.0,24.0,14.0,545),(6407,7664,30.0,24.0,14.0,822),(6408,357281,30.0,25.0,15.0,906),(6409,356678,46.0,29.0,22.0,2930),(6410,355307,0.0,0.0,0.0,770),(6411,355170,0.0,0.0,0.0,770),(6412,355158,0.0,0.0,0.0,770),(6413,355312,0.0,0.0,0.0,770),(6414,355315,0.0,0.0,0.0,770),(6415,355313,0.0,0.0,0.0,770),(6416,355147,0.0,0.0,0.0,770),(6417,355123,0.0,0.0,0.0,770),(6418,355310,0.0,0.0,0.0,770),(6419,355308,0.0,0.0,0.0,770),(6420,355161,0.0,0.0,0.0,770),(6421,355316,0.0,0.0,0.0,770),(6422,355165,0.0,0.0,0.0,770),(6423,355164,0.0,0.0,0.0,770),(6424,355167,0.0,0.0,0.0,770),(6425,355320,0.0,0.0,0.0,770),(6426,355309,0.0,0.0,0.0,770),(6427,355321,0.0,0.0,0.0,770),(6428,355169,0.0,0.0,0.0,770),(6429,355323,0.0,0.0,0.0,770),(6430,355317,0.0,0.0,0.0,770),(6431,355318,0.0,0.0,0.0,770),(6432,355319,0.0,0.0,0.0,770),(6433,355162,0.0,0.0,0.0,770),(6434,355157,0.0,0.0,0.0,770),(6435,355141,0.0,0.0,0.0,770),(6436,351353,33.0,25.0,11.0,1624),(6437,355139,0.0,0.0,0.0,770),(6438,355138,0.0,0.0,0.0,770),(6439,355137,0.0,0.0,0.0,770),(6440,355136,0.0,0.0,0.0,770),(6441,355135,0.0,0.0,0.0,770),(6442,355159,0.0,0.0,0.0,770),(6443,355355,0.0,0.0,0.0,770),(6444,355354,0.0,0.0,0.0,770),(6445,356717,0.0,0.0,0.0,770),(6446,356713,0.0,0.0,0.0,770),(6447,355153,0.0,0.0,0.0,770),(6448,355134,0.0,0.0,0.0,770),(6449,355391,0.0,0.0,0.0,770),(6450,355392,0.0,0.0,0.0,770),(6451,355393,0.0,0.0,0.0,770),(6452,355394,0.0,0.0,0.0,770),(6453,355395,0.0,0.0,0.0,770),(6454,355396,0.0,0.0,0.0,770),(6455,355397,0.0,0.0,0.0,770),(6456,355398,0.0,0.0,0.0,770),(6457,355399,0.0,0.0,0.0,770),(6458,355378,0.0,0.0,0.0,770),(6459,355379,0.0,0.0,0.0,770),(6460,355381,0.0,0.0,0.0,770),(6461,355382,0.0,0.0,0.0,770),(6462,355383,0.0,0.0,0.0,770),(6463,355384,0.0,0.0,0.0,770),(6464,355385,0.0,0.0,0.0,770),(6465,355389,0.0,0.0,0.0,770),(6466,355386,0.0,0.0,0.0,770),(6467,355388,0.0,0.0,0.0,770),(6468,355365,0.0,0.0,0.0,770),(6469,355367,0.0,0.0,0.0,770),(6470,355369,0.0,0.0,0.0,770),(6471,355370,0.0,0.0,0.0,770),(6472,355371,0.0,0.0,0.0,770),(6473,355372,0.0,0.0,0.0,770),(6474,355374,0.0,0.0,0.0,770),(6475,355375,0.0,0.0,0.0,770),(6476,355376,0.0,0.0,0.0,770),(6477,355377,0.0,0.0,0.0,770),(6478,346118,0.0,0.0,0.0,770),(6479,355142,0.0,0.0,0.0,770),(6480,355143,0.0,0.0,0.0,770),(6481,346321,0.0,0.0,0.0,770),(6482,355418,0.0,0.0,0.0,770),(6483,355417,0.0,0.0,0.0,770),(6484,355416,0.0,0.0,0.0,770),(6485,355186,0.0,0.0,0.0,770),(6486,355353,0.0,0.0,0.0,770),(6487,355190,0.0,0.0,0.0,770),(6488,355189,0.0,0.0,0.0,770),(6489,355188,0.0,0.0,0.0,770),(6490,357166,0.0,0.0,0.0,770),(6491,355181,0.0,0.0,0.0,770),(6492,355180,0.0,0.0,0.0,770),(6493,355179,0.0,0.0,0.0,770),(6494,355175,0.0,0.0,0.0,770),(6495,355174,0.0,0.0,0.0,770),(6496,355172,0.0,0.0,0.0,770),(6497,355196,0.0,0.0,0.0,770),(6498,355195,0.0,0.0,0.0,770),(6499,355194,0.0,0.0,0.0,770),(6500,354979,0.0,0.0,0.0,770),(6501,355191,0.0,0.0,0.0,770),(6502,355176,0.0,0.0,0.0,770),(6503,355198,0.0,0.0,0.0,770),(6504,356911,0.0,0.0,0.0,770),(6505,355043,0.0,0.0,0.0,770),(6506,355099,0.0,0.0,0.0,770),(6507,354892,0.0,0.0,0.0,770),(6508,354927,0.0,0.0,0.0,770),(6509,356919,0.0,0.0,0.0,770),(6510,357114,0.0,0.0,0.0,770),(6511,356988,0.0,0.0,0.0,770),(6512,355352,0.0,0.0,0.0,770),(6513,355414,0.0,0.0,0.0,770),(6514,355508,0.0,0.0,0.0,770),(6515,355509,0.0,0.0,0.0,770),(6516,355505,0.0,0.0,0.0,770),(6517,355401,0.0,0.0,0.0,770),(6518,355400,0.0,0.0,0.0,770),(6519,355504,0.0,0.0,0.0,770),(6520,355503,0.0,0.0,0.0,770),(6521,355502,0.0,0.0,0.0,770),(6522,355506,0.0,0.0,0.0,770),(6523,355507,0.0,0.0,0.0,770),(6524,355510,0.0,0.0,0.0,770),(6525,355511,0.0,0.0,0.0,770),(6526,355512,0.0,0.0,0.0,770),(6527,355514,0.0,0.0,0.0,770),(6528,355515,0.0,0.0,0.0,770),(6529,355411,0.0,0.0,0.0,770),(6530,355412,0.0,0.0,0.0,770),(6531,355413,0.0,0.0,0.0,770),(6532,355185,0.0,0.0,0.0,770),(6533,355184,0.0,0.0,0.0,770),(6534,355182,0.0,0.0,0.0,770),(6535,355178,0.0,0.0,0.0,770),(6536,355160,0.0,0.0,0.0,770),(6537,355193,0.0,0.0,0.0,770),(6538,355858,0.0,0.0,0.0,770),(6539,355882,0.0,0.0,0.0,770),(6540,355415,0.0,0.0,0.0,770),(6541,355501,0.0,0.0,0.0,770),(6542,355192,0.0,0.0,0.0,770),(6543,357224,30.0,24.0,14.0,586),(6544,354670,30.0,24.0,14.0,616),(6545,6015,46.0,29.0,16.0,2110),(6546,357325,30.0,24.0,14.0,530),(6547,357343,30.0,25.0,15.0,515),(6548,357355,30.0,25.0,15.0,510),(6549,357406,30.0,25.0,15.0,670),(6550,350788,30.0,24.0,14.0,780),(6551,356587,30.0,24.0,14.0,605),(6552,350563,30.0,24.0,14.0,800),(6553,350610,30.0,24.0,14.0,820),(6554,349966,30.0,24.0,14.0,800),(6555,350856,30.0,24.0,14.0,600),(6556,350762,30.0,24.0,14.0,790),(6557,354483,46.0,29.0,16.0,1410),(6558,350995,30.0,24.0,14.0,623),(6559,353278,30.0,24.0,14.0,615),(6560,353671,30.0,24.0,14.0,620),(6561,354238,30.0,24.0,14.0,620),(6562,351241,30.0,24.0,14.0,615),(6563,351274,30.0,24.0,14.0,620),(6564,354209,30.0,24.0,14.0,620),(6565,356129,30.0,24.0,14.0,620),(6566,349989,30.0,24.0,14.0,605),(6567,350542,30.0,24.0,14.0,615),(6568,356036,30.0,24.0,14.0,620),(6569,354375,30.0,24.0,14.0,620),(6570,350664,30.0,24.0,14.0,590),(6571,357490,30.0,24.0,14.0,720),(6572,350768,30.0,24.0,14.0,620),(6573,357295,30.0,24.0,14.0,1090),(6574,354471,30.0,24.0,14.0,880),(6575,350638,30.0,24.0,14.0,615),(6576,353667,30.0,24.0,14.0,830),(6577,354726,30.0,24.0,14.0,790),(6578,354700,30.0,24.0,14.0,790),(6579,351033,30.0,24.0,14.0,840),(6580,357246,30.0,24.0,14.0,615),(6581,354198,30.0,24.0,14.0,615),(6582,351184,30.0,24.0,14.0,620),(6583,354751,30.0,24.0,14.0,620),(6584,356651,30.0,24.0,14.0,615),(6585,353904,0.0,0.0,0.0,540),(6586,353905,0.0,0.0,0.0,540),(6587,353923,0.0,0.0,0.0,725),(6588,353922,0.0,0.0,0.0,540),(6589,353920,0.0,0.0,0.0,540),(6590,353916,0.0,0.0,0.0,540),(6591,353917,0.0,0.0,0.0,540),(6592,353910,0.0,0.0,0.0,540),(6593,353911,0.0,0.0,0.0,540),(6594,353912,0.0,0.0,0.0,540),(6595,353914,0.0,0.0,0.0,540),(6596,353913,0.0,0.0,0.0,540),(6597,353915,0.0,0.0,0.0,540),(6598,353906,0.0,0.0,0.0,540),(6599,353907,0.0,0.0,0.0,540),(6600,353908,0.0,0.0,0.0,540),(6601,353895,0.0,0.0,0.0,572),(6602,353896,0.0,0.0,0.0,578),(6603,353897,0.0,0.0,0.0,582),(6604,353898,0.0,0.0,0.0,582),(6605,353899,0.0,0.0,0.0,582),(6606,353889,0.0,0.0,0.0,582),(6607,353890,0.0,0.0,0.0,582),(6608,353891,0.0,0.0,0.0,582),(6609,353892,0.0,0.0,0.0,582),(6610,353893,0.0,0.0,0.0,582),(6611,353909,0.0,0.0,0.0,540),(6612,353882,0.0,0.0,0.0,540),(6613,353883,0.0,0.0,0.0,540),(6614,353884,0.0,0.0,0.0,540),(6615,353886,0.0,0.0,0.0,540),(6616,353887,0.0,0.0,0.0,540),(6617,353888,0.0,0.0,0.0,540),(6618,357365,0.0,0.0,0.0,540),(6619,357410,0.0,0.0,0.0,540),(6620,353949,0.0,0.0,0.0,540),(6621,353950,0.0,0.0,0.0,540),(6622,356543,0.0,0.0,0.0,540),(6623,353863,0.0,0.0,0.0,540),(6624,353864,0.0,0.0,0.0,540),(6625,353865,0.0,0.0,0.0,540),(6626,353879,0.0,0.0,0.0,540),(6627,353878,0.0,0.0,0.0,540),(6628,353874,0.0,0.0,0.0,540),(6629,353873,0.0,0.0,0.0,540),(6630,353872,0.0,0.0,0.0,540),(6631,353871,0.0,0.0,0.0,540),(6632,353870,0.0,0.0,0.0,540),(6633,353867,0.0,0.0,0.0,540),(6634,353866,0.0,0.0,0.0,540),(6635,353881,0.0,0.0,0.0,540),(6636,353880,0.0,0.0,0.0,540),(6637,356549,0.0,0.0,0.0,540),(6638,353926,0.0,0.0,0.0,540),(6639,353900,0.0,0.0,0.0,540),(6640,353940,0.0,0.0,0.0,540),(6641,353942,0.0,0.0,0.0,540),(6642,353938,0.0,0.0,0.0,540),(6643,353937,0.0,0.0,0.0,540),(6644,353936,0.0,0.0,0.0,540),(6645,353935,0.0,0.0,0.0,540),(6646,353953,0.0,0.0,0.0,540),(6647,353934,0.0,0.0,0.0,540),(6648,355516,0.0,0.0,0.0,770),(6649,355537,0.0,0.0,0.0,770),(6650,355132,0.0,0.0,0.0,770),(6651,355536,0.0,0.0,0.0,770),(6652,355535,0.0,0.0,0.0,770),(6653,355534,0.0,0.0,0.0,770),(6654,355533,0.0,0.0,0.0,770),(6655,355532,0.0,0.0,0.0,770),(6656,357872,30.0,24.0,14.0,825),(6657,357624,30.0,24.0,14.0,590),(6658,357825,30.0,24.0,14.0,590),(6659,357573,30.0,24.0,14.0,586),(6660,357934,30.0,24.0,14.0,590),(6661,357709,30.0,24.0,14.0,620),(6662,357762,30.0,24.0,14.0,572),(6663,357750,30.0,24.0,14.0,715),(6664,357789,30.0,24.0,14.0,786),(6665,357873,30.0,24.0,14.0,584),(6666,357854,30.0,24.0,14.0,588),(6667,357930,30.0,24.0,14.0,800),(6668,355531,0.0,0.0,0.0,770),(6669,355530,0.0,0.0,0.0,770),(6670,355528,0.0,0.0,0.0,770),(6671,355426,0.0,0.0,0.0,770),(6672,355425,0.0,0.0,0.0,770),(6673,355424,0.0,0.0,0.0,770),(6674,355423,0.0,0.0,0.0,770),(6675,355422,0.0,0.0,0.0,770),(6676,355420,0.0,0.0,0.0,770),(6677,355419,0.0,0.0,0.0,770),(6678,355439,0.0,0.0,0.0,770),(6679,355438,0.0,0.0,0.0,770),(6680,355437,0.0,0.0,0.0,770),(6681,355436,0.0,0.0,0.0,770),(6682,355434,0.0,0.0,0.0,770),(6683,355433,0.0,0.0,0.0,770),(6684,355432,0.0,0.0,0.0,770),(6685,355431,0.0,0.0,0.0,770),(6686,355428,0.0,0.0,0.0,770),(6687,355427,0.0,0.0,0.0,770),(6688,355449,0.0,0.0,0.0,770),(6689,355448,0.0,0.0,0.0,770),(6690,355447,0.0,0.0,0.0,770),(6691,355446,0.0,0.0,0.0,770),(6692,355445,0.0,0.0,0.0,770),(6693,355444,0.0,0.0,0.0,770),(6694,355443,0.0,0.0,0.0,770),(6695,355442,0.0,0.0,0.0,770),(6696,355441,0.0,0.0,0.0,770),(6697,355440,0.0,0.0,0.0,770),(6698,355459,0.0,0.0,0.0,770),(6699,355458,0.0,0.0,0.0,770),(6700,355457,0.0,0.0,0.0,770),(6701,355456,0.0,0.0,0.0,770),(6702,355455,0.0,0.0,0.0,770),(6703,355454,0.0,0.0,0.0,770),(6704,355453,0.0,0.0,0.0,770),(6705,355452,0.0,0.0,0.0,770),(6706,355451,0.0,0.0,0.0,770),(6707,355450,0.0,0.0,0.0,770),(6708,355469,0.0,0.0,0.0,770),(6709,355468,0.0,0.0,0.0,770),(6710,355467,0.0,0.0,0.0,770),(6711,355466,0.0,0.0,0.0,770),(6712,355465,0.0,0.0,0.0,770),(6713,355464,0.0,0.0,0.0,770),(6714,355463,0.0,0.0,0.0,770),(6715,355462,0.0,0.0,0.0,770),(6716,355461,0.0,0.0,0.0,770),(6717,355460,0.0,0.0,0.0,770),(6718,355479,0.0,0.0,0.0,770),(6719,355478,0.0,0.0,0.0,770),(6720,355477,0.0,0.0,0.0,770),(6721,355476,0.0,0.0,0.0,770),(6722,355475,0.0,0.0,0.0,770),(6723,355474,0.0,0.0,0.0,770),(6724,355473,0.0,0.0,0.0,770),(6725,355472,0.0,0.0,0.0,770),(6726,355471,0.0,0.0,0.0,770),(6727,355470,0.0,0.0,0.0,770),(6728,356534,0.0,0.0,0.0,776),(6729,356397,0.0,0.0,0.0,1488),(6730,357227,0.0,0.0,0.0,1012),(6731,357235,0.0,0.0,0.0,1034),(6732,356052,0.0,0.0,0.0,1038),(6733,357427,0.0,0.0,0.0,1040),(6734,357409,0.0,0.0,0.0,1022),(6735,357430,0.0,0.0,0.0,976),(6736,356975,0.0,0.0,0.0,604),(6737,356857,0.0,0.0,0.0,602),(6738,356859,0.0,0.0,0.0,406),(6739,356862,0.0,0.0,0.0,420),(6740,356548,0.0,0.0,0.0,610),(6741,356861,0.0,0.0,0.0,412),(6742,356310,0.0,0.0,0.0,586),(6743,356324,0.0,0.0,0.0,590),(6744,356325,0.0,0.0,0.0,414),(6745,356269,0.0,0.0,0.0,598),(6746,355906,0.0,0.0,0.0,600),(6747,356152,0.0,0.0,0.0,594),(6748,356054,0.0,0.0,0.0,590),(6749,356056,0.0,0.0,0.0,594),(6750,356282,0.0,0.0,0.0,602),(6751,357500,0.0,0.0,0.0,586),(6752,356550,0.0,0.0,0.0,584),(6753,357425,0.0,0.0,0.0,408),(6754,357426,0.0,0.0,0.0,414),(6755,357411,0.0,0.0,0.0,626),(6756,356853,0.0,0.0,0.0,780),(6757,356880,0.0,0.0,0.0,916),(6758,356159,0.0,0.0,0.0,930),(6759,355867,0.0,0.0,0.0,918),(6760,355919,0.0,0.0,0.0,948),(6761,355920,0.0,0.0,0.0,936),(6762,356313,0.0,0.0,0.0,770),(6763,356270,0.0,0.0,0.0,772),(6764,356363,0.0,0.0,0.0,772),(6765,357492,0.0,0.0,0.0,924),(6766,357379,0.0,0.0,0.0,924),(6767,354683,0.0,0.0,0.0,620),(6768,354870,0.0,0.0,0.0,620),(6769,356854,0.0,0.0,0.0,620),(6770,350654,0.0,0.0,0.0,620),(6771,357143,0.0,0.0,0.0,620),(6772,354536,0.0,0.0,0.0,620),(6773,354808,0.0,0.0,0.0,622),(6774,350185,0.0,0.0,0.0,896),(6775,356128,0.0,0.0,0.0,620),(6776,357257,0.0,0.0,0.0,904),(6777,357382,0.0,0.0,0.0,570),(6778,356648,0.0,0.0,0.0,528),(6779,355815,0.0,0.0,0.0,750),(6780,356095,0.0,0.0,0.0,750),(6781,356839,0.0,0.0,0.0,750),(6782,356720,0.0,0.0,0.0,750),(6783,355873,0.0,0.0,0.0,750),(6784,356830,0.0,0.0,0.0,752),(6785,356680,0.0,0.0,0.0,750),(6786,355932,0.0,0.0,0.0,750),(6787,350527,0.0,0.0,0.0,620),(6788,350505,0.0,0.0,0.0,620),(6789,350402,0.0,0.0,0.0,620),(6790,350277,0.0,0.0,0.0,620),(6791,350241,0.0,0.0,0.0,620),(6792,350205,0.0,0.0,0.0,620),(6793,350200,0.0,0.0,0.0,620),(6794,350854,0.0,0.0,0.0,620),(6795,350826,0.0,0.0,0.0,620),(6796,357330,0.0,0.0,0.0,620),(6797,353435,0.0,0.0,0.0,620),(6798,351344,0.0,0.0,0.0,620),(6799,351215,0.0,0.0,0.0,620),(6800,351120,0.0,0.0,0.0,620),(6801,350951,0.0,0.0,0.0,620),(6802,356909,0.0,0.0,0.0,725),(6803,356696,0.0,0.0,0.0,725),(6804,356858,0.0,0.0,0.0,725),(6805,355942,0.0,0.0,0.0,725),(6806,356867,0.0,0.0,0.0,725),(6807,356863,0.0,0.0,0.0,725),(6808,356864,0.0,0.0,0.0,725),(6809,356865,0.0,0.0,0.0,725),(6810,356866,0.0,0.0,0.0,725),(6811,356860,0.0,0.0,0.0,725),(6812,356672,0.0,0.0,0.0,725),(6813,357312,0.0,0.0,0.0,725),(6814,357341,0.0,0.0,0.0,725),(6815,351072,0.0,0.0,0.0,600),(6816,349791,0.0,0.0,0.0,600),(6817,354847,0.0,0.0,0.0,600),(6818,354427,0.0,0.0,0.0,600),(6819,353537,0.0,0.0,0.0,600),(6820,349909,0.0,0.0,0.0,1710),(6821,350933,0.0,0.0,0.0,1480),(6822,349072,0.0,0.0,0.0,1490),(6823,346836,0.0,0.0,0.0,1475),(6824,350265,0.0,0.0,0.0,1750),(6825,348697,0.0,0.0,0.0,1200),(6826,353659,0.0,0.0,0.0,765),(6827,350785,0.0,0.0,0.0,790),(6828,353983,0.0,0.0,0.0,785),(6829,356673,0.0,0.0,0.0,800),(6830,355832,0.0,0.0,0.0,935),(6831,356953,0.0,0.0,0.0,730),(6832,351189,0.0,0.0,0.0,795),(6833,354889,0.0,0.0,0.0,1300),(6834,357478,0.0,0.0,0.0,1320),(6835,355907,0.0,0.0,0.0,560),(6836,356963,0.0,0.0,0.0,560),(6837,356933,0.0,0.0,0.0,560),(6838,356449,0.0,0.0,0.0,560),(6839,356583,0.0,0.0,0.0,560),(6840,356419,0.0,0.0,0.0,560),(6841,356481,0.0,0.0,0.0,560),(6842,356378,0.0,0.0,0.0,560),(6843,356669,0.0,0.0,0.0,560),(6844,356681,0.0,0.0,0.0,560),(6845,356700,0.0,0.0,0.0,555),(6846,356882,0.0,0.0,0.0,555),(6847,357231,0.0,0.0,0.0,555),(6848,355404,0.0,0.0,0.0,770),(6849,355390,0.0,0.0,0.0,770),(6850,355410,0.0,0.0,0.0,770),(6851,355409,0.0,0.0,0.0,770),(6852,355408,0.0,0.0,0.0,770),(6853,355407,0.0,0.0,0.0,770),(6854,355406,0.0,0.0,0.0,770),(6855,355403,0.0,0.0,0.0,770),(6856,355402,0.0,0.0,0.0,770),(6857,355526,0.0,0.0,0.0,770),(6858,355525,0.0,0.0,0.0,770),(6859,355524,0.0,0.0,0.0,770),(6860,357452,0.0,0.0,0.0,770),(6862,355523,0.0,0.0,0.0,770),(6863,355521,0.0,0.0,0.0,770),(6864,355519,0.0,0.0,0.0,770),(6865,355518,0.0,0.0,0.0,770),(6866,355517,0.0,0.0,0.0,770),(6867,353919,0.0,0.0,0.0,540),(6868,353869,0.0,0.0,0.0,540),(6869,353941,0.0,0.0,0.0,540),(6870,355522,0.0,0.0,0.0,770),(6871,355888,0.0,0.0,0.0,560),(6872,356114,0.0,0.0,0.0,0),(6873,358179,46.0,29.0,22.0,2140),(6874,358054,39.0,29.0,17.0,1490),(6875,357633,30.0,20.0,14.0,766),(6876,358122,30.0,24.0,14.0,736),(6877,358142,30.0,24.0,14.0,580),(6878,351077,30.0,24.0,14.0,774),(6879,357720,30.0,24.0,6.0,570),(6880,357688,33.0,25.0,11.0,810),(6881,357824,30.0,24.0,14.0,588),(6882,357752,30.0,24.0,14.0,566),(6883,348852,30.0,24.0,14.0,586),(6884,357746,30.0,24.0,14.0,570),(6885,354521,30.0,24.0,14.0,770),(6886,351269,39.0,29.0,17.0,1416),(6887,353956,30.0,24.0,6.0,554),(6888,353945,30.0,24.0,6.0,550),(6889,353944,30.0,24.0,6.0,550),(6890,351295,30.0,24.0,14.0,800),(6891,354532,30.0,24.0,14.0,520),(6892,357334,30.0,24.0,14.0,525),(6893,353924,30.0,24.0,6.0,552),(6894,351179,30.0,24.0,6.0,826),(6895,356590,39.0,29.0,17.0,1390),(6896,358297,39.0,29.0,17.0,1040),(6897,358240,30.0,24.0,14.0,774),(6898,358262,30.0,24.0,6.0,382),(6899,358278,30.0,24.0,14.0,736),(6900,355915,30.0,24.0,14.0,580),(6901,358328,30.0,25.0,15.0,510),(6902,358509,30.0,24.0,14.0,592),(6903,350054,30.0,24.0,14.0,810),(6904,350050,30.0,24.0,14.0,800),(6905,350528,30.0,24.0,14.0,800),(6906,350064,30.0,24.0,14.0,800),(6907,358547,34.0,24.0,14.0,806),(6908,349662,30.0,24.0,14.0,592),(6909,357466,39.0,29.0,17.0,1384),(6910,358323,30.0,24.0,14.0,522),(6911,358507,30.0,24.0,14.0,820),(6912,351339,0.0,0.0,0.0,780),(6913,351334,0.0,0.0,0.0,780),(6914,353813,0.0,0.0,0.0,780),(6915,353743,0.0,0.0,0.0,780),(6916,356038,0.0,0.0,0.0,780),(6917,354343,0.0,0.0,0.0,780),(6918,350985,0.0,0.0,0.0,780),(6919,350964,0.0,0.0,0.0,780),(6920,350953,30.0,24.0,14.0,780),(6921,350927,0.0,0.0,0.0,780),(6922,350928,0.0,0.0,0.0,780),(6923,350924,0.0,0.0,0.0,780),(6924,353357,0.0,0.0,0.0,780),(6925,353358,0.0,0.0,0.0,780),(6926,353337,0.0,0.0,0.0,780),(6927,353335,0.0,0.0,0.0,780),(6928,351147,0.0,0.0,0.0,780),(6929,351100,0.0,0.0,0.0,780),(6930,351021,0.0,0.0,0.0,780),(6931,350991,0.0,0.0,0.0,780),(6932,350998,0.0,0.0,0.0,780),(6933,350993,0.0,0.0,0.0,780),(6934,353539,0.0,0.0,0.0,780),(6935,354229,0.0,0.0,0.0,780),(6936,350976,0.0,0.0,0.0,780),(6937,350980,0.0,0.0,0.0,780),(6938,351290,0.0,0.0,0.0,780),(6939,351284,0.0,0.0,0.0,780),(6940,351230,0.0,0.0,0.0,780),(6941,351181,0.0,0.0,0.0,780),(6942,358501,0.0,0.0,0.0,780),(6943,354261,0.0,0.0,0.0,780),(6944,356715,0.0,0.0,0.0,780),(6945,358108,0.0,0.0,0.0,780),(6946,351205,0.0,0.0,0.0,780),(6947,358382,0.0,0.0,0.0,575),(6948,358331,0.0,0.0,0.0,290),(6949,357700,0.0,0.0,0.0,575),(6950,357775,0.0,0.0,0.0,570),(6951,357844,0.0,0.0,0.0,550),(6952,357978,0.0,0.0,0.0,565),(6953,357699,0.0,0.0,0.0,565),(6954,357845,0.0,0.0,0.0,550),(6955,357701,0.0,0.0,0.0,380),(6956,357910,0.0,0.0,0.0,350),(6957,356427,0.0,0.0,0.0,380),(6958,357652,0.0,0.0,0.0,640),(6959,356581,0.0,0.0,0.0,545),(6960,357999,0.0,0.0,0.0,360),(6961,358004,0.0,0.0,0.0,360),(6962,353933,0.0,0.0,0.0,540),(6963,353932,0.0,0.0,0.0,540),(6964,353952,0.0,0.0,0.0,540),(6965,353954,0.0,0.0,0.0,540),(6966,353955,0.0,0.0,0.0,540),(6967,353957,0.0,0.0,0.0,540),(6968,353958,0.0,0.0,0.0,540),(6969,353928,0.0,0.0,0.0,540),(6970,353929,0.0,0.0,0.0,540),(6971,353930,0.0,0.0,0.0,540),(6972,353931,0.0,0.0,0.0,540),(6973,353862,0.0,0.0,0.0,540),(6974,353946,0.0,0.0,0.0,540),(6975,353947,0.0,0.0,0.0,540),(6976,353948,0.0,0.0,0.0,540),(6977,353902,0.0,0.0,0.0,540),(6978,353903,0.0,0.0,0.0,540),(6979,357602,0.0,0.0,0.0,540),(6980,358644,30.0,24.0,14.0,588),(6981,358632,30.0,24.0,14.0,588),(6982,358550,30.0,24.0,14.0,540),(6983,358636,30.0,24.0,14.0,590),(6984,358676,30.0,24.0,14.0,946),(6985,358214,30.0,24.0,14.0,1060),(6986,357629,30.0,24.0,14.0,970),(6987,357443,30.0,24.0,14.0,952),(6988,357433,30.0,24.0,14.0,952),(6989,357424,30.0,24.0,14.0,950),(6990,357714,30.0,24.0,14.0,696),(6991,357170,30.0,24.0,14.0,944),(6992,357447,30.0,24.0,14.0,944),(6993,357753,30.0,24.0,14.0,1116),(6994,357812,30.0,24.0,14.0,1144),(6995,358669,30.0,24.0,14.0,590),(6996,358661,30.0,24.0,14.0,762),(6997,358718,30.0,24.0,14.0,730),(6998,350326,30.0,24.0,14.0,582),(6999,356315,0.0,0.0,0.0,1680),(7000,353434,0.0,0.0,0.0,825),(7001,353365,0.0,0.0,0.0,825),(7002,353360,0.0,0.0,0.0,825),(7003,353530,0.0,0.0,0.0,825),(7004,353562,0.0,0.0,0.0,825),(7005,352109,0.0,0.0,0.0,825),(7006,351359,0.0,0.0,0.0,825),(7007,351358,0.0,0.0,0.0,825),(7008,351357,0.0,0.0,0.0,825),(7009,354137,0.0,0.0,0.0,825),(7010,354078,0.0,0.0,0.0,825),(7011,353857,0.0,0.0,0.0,825),(7012,354054,0.0,0.0,0.0,825),(7013,353835,0.0,0.0,0.0,825),(7014,353732,0.0,0.0,0.0,825),(7015,353725,0.0,0.0,0.0,825),(7016,353709,0.0,0.0,0.0,825),(7017,353496,0.0,0.0,0.0,825),(7018,353571,0.0,0.0,0.0,825),(7019,353592,0.0,0.0,0.0,825),(7020,353677,0.0,0.0,0.0,825),(7021,353901,0.0,0.0,0.0,825),(7022,356142,0.0,0.0,0.0,684),(7023,355946,0.0,0.0,0.0,934),(7024,357719,0.0,0.0,0.0,956),(7025,357834,0.0,0.0,0.0,936),(7026,353964,0.0,0.0,0.0,825),(7027,353973,0.0,0.0,0.0,825),(7028,353998,0.0,0.0,0.0,825),(7029,354018,0.0,0.0,0.0,825),(7030,351322,0.0,0.0,0.0,825),(7031,351019,0.0,0.0,0.0,825),(7032,354022,0.0,0.0,0.0,825),(7033,354048,0.0,0.0,0.0,825),(7034,354271,0.0,0.0,0.0,825),(7035,353441,0.0,0.0,0.0,825),(7036,354326,0.0,0.0,0.0,865),(7037,358582,0.0,0.0,0.0,1180),(7038,357741,0.0,0.0,0.0,726),(7039,358198,0.0,0.0,0.0,1168),(7040,358380,0.0,0.0,0.0,936),(7041,358677,0.0,0.0,0.0,594),(7042,358070,0.0,0.0,0.0,572),(7043,357705,0.0,0.0,0.0,1190),(7044,358548,0.0,0.0,0.0,1152),(7045,358708,0.0,0.0,0.0,1102),(7046,342383,0.0,0.0,0.0,1662),(7047,358690,0.0,0.0,0.0,966),(7048,358969,30.0,24.0,14.0,620),(7049,358028,30.0,24.0,14.0,526),(7050,358046,0.0,0.0,0.0,964),(7051,357393,0.0,0.0,0.0,628),(7052,357874,0.0,0.0,0.0,624),(7053,357936,0.0,0.0,0.0,624),(7054,357436,0.0,0.0,0.0,980),(7055,357435,0.0,0.0,0.0,980),(7056,357434,0.0,0.0,0.0,980),(7057,357432,0.0,0.0,0.0,980),(7058,357431,0.0,0.0,0.0,980),(7059,357413,0.0,0.0,0.0,980),(7060,357159,0.0,0.0,0.0,980),(7061,357416,0.0,0.0,0.0,980),(7062,357429,0.0,0.0,0.0,980),(7063,357449,0.0,0.0,0.0,980),(7064,357438,0.0,0.0,0.0,980),(7065,357417,0.0,0.0,0.0,980),(7066,357418,0.0,0.0,0.0,980),(7067,357419,0.0,0.0,0.0,980),(7068,357420,0.0,0.0,0.0,980),(7069,357421,0.0,0.0,0.0,980),(7070,357422,0.0,0.0,0.0,980),(7071,357423,0.0,0.0,0.0,980),(7072,357428,0.0,0.0,0.0,980),(7073,357415,0.0,0.0,0.0,980),(7074,357158,0.0,0.0,0.0,980),(7075,357160,0.0,0.0,0.0,980),(7076,357163,0.0,0.0,0.0,980),(7077,357164,0.0,0.0,0.0,980),(7078,357165,0.0,0.0,0.0,980),(7079,357167,0.0,0.0,0.0,980),(7080,357169,0.0,0.0,0.0,980),(7081,357171,0.0,0.0,0.0,980),(7082,357172,0.0,0.0,0.0,980),(7083,357173,0.0,0.0,0.0,980),(7084,357439,0.0,0.0,0.0,980),(7085,357440,0.0,0.0,0.0,980),(7086,357441,0.0,0.0,0.0,980),(7087,357442,0.0,0.0,0.0,980),(7088,357444,0.0,0.0,0.0,980),(7089,357445,0.0,0.0,0.0,980),(7090,357446,0.0,0.0,0.0,980),(7091,357448,0.0,0.0,0.0,975),(7092,357174,0.0,0.0,0.0,975),(7093,351370,0.0,0.0,0.0,2934),(7094,357302,0.0,0.0,0.0,518),(7095,356987,0.0,0.0,0.0,520),(7096,357328,0.0,0.0,0.0,516),(7097,358107,0.0,0.0,0.0,1378),(7098,357820,0.0,0.0,0.0,516),(7099,357681,0.0,0.0,0.0,950),(7100,357900,0.0,0.0,0.0,684),(7101,357865,0.0,0.0,0.0,710),(7102,357585,0.0,0.0,0.0,688),(7103,358561,0.0,0.0,0.0,688),(7104,357903,0.0,0.0,0.0,782),(7105,358653,0.0,0.0,0.0,784),(7106,358663,0.0,0.0,0.0,784),(7107,358074,0.0,0.0,0.0,780),(7108,358310,0.0,0.0,0.0,530),(7109,358364,0.0,0.0,0.0,546),(7110,357356,0.0,0.0,0.0,574),(7111,358645,0.0,0.0,0.0,546),(7112,358903,0.0,0.0,0.0,544),(7113,357743,0.0,0.0,0.0,558),(7114,358118,0.0,0.0,0.0,530),(7115,358702,0.0,0.0,0.0,616),(7116,357798,0.0,0.0,0.0,552),(7117,358261,0.0,0.0,0.0,622),(7118,357793,0.0,0.0,0.0,622),(7119,357614,0.0,0.0,0.0,620),(7120,358209,0.0,0.0,0.0,620),(7121,358161,0.0,0.0,0.0,622),(7122,357715,0.0,0.0,0.0,622),(7123,357618,0.0,0.0,0.0,650),(7124,358369,0.0,0.0,0.0,824),(7125,353607,0.0,0.0,0.0,826),(7126,358845,30.0,24.0,14.0,810),(7127,358796,30.0,24.0,14.0,814),(7128,357243,30.0,24.0,14.0,822),(7129,358985,30.0,24.0,14.0,684),(7130,359096,30.0,24.0,14.0,936),(7131,358311,30.0,24.0,14.0,788),(7132,359133,30.0,24.0,14.0,752),(7133,359099,30.0,24.0,14.0,640),(7134,358996,33.0,26.0,17.0,2314),(7135,359239,30.0,24.0,14.0,880),(7136,359012,30.0,24.0,14.0,800),(7137,359156,30.0,24.0,14.0,784),(7138,359029,30.0,24.0,14.0,790),(7139,358852,30.0,24.0,14.0,808),(7140,358923,30.0,24.0,14.0,702),(7141,358785,30.0,24.0,14.0,814),(7142,358847,30.0,24.0,14.0,822),(7143,358549,30.0,24.0,6.0,980),(7144,359164,30.0,24.0,14.0,536),(7145,359222,30.0,24.0,14.0,550),(7146,359359,46.0,29.0,22.0,1922),(7147,359371,30.0,24.0,14.0,612),(7148,350547,30.0,24.0,14.0,564),(7149,359228,30.0,24.0,14.0,720),(7150,359307,30.0,24.0,14.0,1168),(7151,357515,30.0,24.0,6.0,728),(7152,349053,46.0,29.0,22.0,1968),(7153,359082,30.0,24.0,6.0,262),(7154,359207,30.0,24.0,14.0,1072),(7155,359363,30.0,24.0,14.0,802),(7156,359349,46.0,29.0,22.0,1928),(7157,359216,30.0,24.0,14.0,548),(7158,359343,30.0,24.0,14.0,864),(7159,359175,30.0,25.0,15.0,805),(7160,359192,30.0,25.0,15.0,796),(7161,357662,30.0,25.0,15.0,680),(7162,359003,30.0,25.0,15.0,752),(7163,359031,33.0,25.0,11.0,895),(7164,358160,0.0,0.0,0.0,750),(7165,358057,0.0,0.0,0.0,750),(7166,357643,0.0,0.0,0.0,750),(7167,357354,0.0,0.0,0.0,750),(7168,357138,0.0,0.0,0.0,750),(7169,357142,0.0,0.0,0.0,750),(7170,351240,0.0,0.0,0.0,750),(7171,357353,0.0,0.0,0.0,750),(7172,358660,0.0,0.0,0.0,750),(7173,357232,0.0,0.0,0.0,750),(7174,357236,0.0,0.0,0.0,750),(7175,357256,0.0,0.0,0.0,750),(7176,357395,0.0,0.0,0.0,750),(7177,357617,0.0,0.0,0.0,750),(7178,357814,0.0,0.0,0.0,750),(7179,358065,0.0,0.0,0.0,750),(7180,358144,0.0,0.0,0.0,745),(7181,358613,0.0,0.0,0.0,750),(7182,358902,0.0,0.0,0.0,1245),(7183,355893,0.0,0.0,0.0,1245),(7184,358936,0.0,0.0,0.0,815),(7185,357273,0.0,0.0,0.0,1240),(7186,356441,0.0,0.0,0.0,1245),(7187,356890,0.0,0.0,0.0,1240),(7188,358239,0.0,0.0,0.0,1225),(7189,358994,0.0,0.0,0.0,615),(7190,359002,0.0,0.0,0.0,805),(7191,357342,0.0,0.0,0.0,1815),(7192,359367,0.0,0.0,0.0,600),(7193,359380,0.0,0.0,0.0,675),(7194,359384,0.0,0.0,0.0,1135),(7195,359046,0.0,0.0,0.0,580),(7196,359042,0.0,0.0,0.0,575),(7197,359152,0.0,0.0,0.0,610),(7198,359172,0.0,0.0,0.0,800),(7199,359122,0.0,0.0,0.0,805),(7200,359141,0.0,0.0,0.0,805),(7201,359142,0.0,0.0,0.0,800),(7202,359171,0.0,0.0,0.0,800),(7203,359150,0.0,0.0,0.0,800),(7204,359017,0.0,0.0,0.0,800),(7205,354515,0.0,0.0,0.0,800),(7206,359496,33.0,25.0,11.0,1082),(7207,357917,0.0,0.0,0.0,3100),(7208,357197,46.0,29.0,22.0,2635),(7209,359345,30.0,25.0,15.0,904),(7210,359404,30.0,24.0,14.0,606),(7211,359424,30.0,24.0,14.0,804),(7212,359514,30.0,24.0,14.0,534),(7213,359391,30.0,24.0,14.0,934),(7214,359474,30.0,24.0,14.0,588),(7215,354554,0.0,0.0,0.0,1388),(7216,356049,0.0,0.0,0.0,1422),(7217,357437,0.0,0.0,0.0,938),(7218,357507,0.0,0.0,0.0,812),(7219,356868,0.0,0.0,0.0,900),(7220,359622,0.0,0.0,0.0,560),(7221,354403,0.0,0.0,0.0,1540),(7222,358589,0.0,0.0,0.0,1465),(7223,356636,0.0,0.0,0.0,1430),(7224,359581,0.0,0.0,0.0,820),(7225,359482,0.0,0.0,0.0,825),(7226,359407,0.0,0.0,0.0,630),(7227,359403,0.0,0.0,0.0,1235),(7228,359429,0.0,0.0,0.0,670),(7229,359538,0.0,0.0,0.0,745),(7230,359536,0.0,0.0,0.0,410),(7231,358379,0.0,0.0,0.0,785),(7232,359535,0.0,0.0,0.0,580),(7233,354593,0.0,0.0,0.0,950),(7234,359393,0.0,0.0,0.0,868),(7235,356309,0.0,0.0,0.0,955),(7236,350297,0.0,0.0,0.0,1545),(7237,357589,0.0,0.0,0.0,935),(7238,358381,0.0,0.0,0.0,580),(7239,358199,0.0,0.0,0.0,590),(7240,358383,0.0,0.0,0.0,580),(7241,357843,0.0,0.0,0.0,585),(7242,357887,0.0,0.0,0.0,1025),(7243,359036,0.0,0.0,0.0,410),(7244,359037,0.0,0.0,0.0,600),(7245,358128,0.0,0.0,0.0,935),(7246,359160,0.0,0.0,0.0,780),(7247,359035,0.0,0.0,0.0,590),(7248,359219,0.0,0.0,0.0,390),(7249,359329,0.0,0.0,0.0,605),(7250,359116,0.0,0.0,0.0,485),(7251,359159,0.0,0.0,0.0,605),(7252,359033,0.0,0.0,0.0,630),(7253,358520,0.0,0.0,0.0,896),(7254,357702,0.0,0.0,0.0,572),(7255,358918,0.0,0.0,0.0,758),(7256,358082,0.0,0.0,0.0,1310),(7257,357792,0.0,0.0,0.0,926),(7258,359161,0.0,0.0,0.0,590),(7259,357221,0.0,0.0,0.0,1350),(7260,357161,0.0,0.0,0.0,992),(7261,356272,0.0,0.0,0.0,1012),(7262,359117,0.0,0.0,0.0,728),(7263,359597,0.0,0.0,0.0,1778),(7264,358200,0.0,0.0,0.0,605),(7265,359694,30.0,24.0,14.0,714),(7266,350958,30.0,24.0,14.0,1172),(7267,359947,30.0,24.0,14.0,586),(7268,359604,30.0,24.0,14.0,878),(7269,359727,30.0,24.0,14.0,734),(7270,359638,30.0,24.0,14.0,538),(7271,359657,30.0,24.0,14.0,496),(7272,359633,30.0,24.0,14.0,694),(7273,359732,30.0,24.0,14.0,560),(7274,359625,30.0,24.0,14.0,582),(7275,357745,0.0,0.0,0.0,1828),(7276,359951,0.0,0.0,0.0,1590),(7277,356096,0.0,0.0,0.0,640),(7278,359609,30.0,24.0,14.0,588),(7279,359965,30.0,24.0,14.0,564),(7280,359975,0.0,0.0,0.0,554),(7281,350453,39.0,29.0,17.0,1198),(7282,354363,30.0,24.0,14.0,580),(7283,358991,30.0,24.0,14.0,615),(7284,357311,30.0,24.0,14.0,612),(7285,359655,0.0,0.0,0.0,640),(7286,358762,0.0,0.0,0.0,830),(7287,359695,0.0,0.0,0.0,605),(7288,356488,0.0,0.0,0.0,595),(7289,356883,0.0,0.0,0.0,625),(7290,359682,0.0,0.0,0.0,630),(7291,359644,0.0,0.0,0.0,580),(7292,359926,0.0,0.0,0.0,650),(7293,359935,0.0,0.0,0.0,650),(7294,359932,0.0,0.0,0.0,650),(7295,359934,0.0,0.0,0.0,650),(7296,359936,0.0,0.0,0.0,655),(7297,359925,0.0,0.0,0.0,650),(7298,359921,0.0,0.0,0.0,650),(7299,359933,0.0,0.0,0.0,970),(7300,359533,0.0,0.0,0.0,970),(7301,359652,0.0,0.0,0.0,950),(7302,359654,0.0,0.0,0.0,1240),(7303,359918,0.0,0.0,0.0,715),(7304,359619,39.0,29.0,17.0,2086),(7305,356345,0.0,0.0,0.0,590),(7306,357385,0.0,0.0,0.0,590),(7307,356291,0.0,0.0,0.0,590),(7308,356287,0.0,0.0,0.0,590),(7309,356311,0.0,0.0,0.0,585),(7310,356317,0.0,0.0,0.0,585),(7311,356318,0.0,0.0,0.0,590),(7312,356321,0.0,0.0,0.0,590),(7313,356326,0.0,0.0,0.0,585),(7314,356329,0.0,0.0,0.0,590),(7315,356344,0.0,0.0,0.0,580),(7316,356332,0.0,0.0,0.0,585),(7317,356327,0.0,0.0,0.0,585),(7318,356328,0.0,0.0,0.0,585),(7319,356330,0.0,0.0,0.0,585),(7320,356331,0.0,0.0,0.0,600),(7321,359312,0.0,0.0,0.0,400),(7322,359313,0.0,0.0,0.0,585),(7323,358992,0.0,0.0,0.0,480),(7324,359333,0.0,0.0,0.0,415),(7325,359332,0.0,0.0,0.0,600),(7326,359317,0.0,0.0,0.0,580),(7327,359672,0.0,0.0,0.0,485),(7328,359927,0.0,0.0,0.0,405),(7329,359362,0.0,0.0,0.0,800),(7330,359191,0.0,0.0,0.0,614),(7331,359920,0.0,0.0,0.0,574),(7332,359931,0.0,0.0,0.0,524),(7333,359922,0.0,0.0,0.0,560),(7334,359928,0.0,0.0,0.0,610),(7335,359930,0.0,0.0,0.0,658),(7336,359923,0.0,0.0,0.0,585),(7337,359326,0.0,0.0,0.0,645),(7338,359360,0.0,0.0,0.0,790),(7339,359617,0.0,0.0,0.0,785),(7340,359340,0.0,0.0,0.0,650),(7341,357735,0.0,0.0,0.0,645),(7342,359327,0.0,0.0,0.0,650),(7343,359477,0.0,0.0,0.0,785),(7344,359422,0.0,0.0,0.0,790),(7345,359406,0.0,0.0,0.0,785),(7346,359571,0.0,0.0,0.0,790),(7347,353860,0.0,0.0,0.0,580),(7348,356343,0.0,0.0,0.0,550),(7349,356342,0.0,0.0,0.0,550),(7350,356341,0.0,0.0,0.0,550),(7351,356339,0.0,0.0,0.0,550),(7352,356338,0.0,0.0,0.0,550),(7353,356337,0.0,0.0,0.0,550),(7354,356336,0.0,0.0,0.0,550),(7355,356335,0.0,0.0,0.0,550),(7356,356334,0.0,0.0,0.0,550),(7357,356333,0.0,0.0,0.0,550),(7358,356319,0.0,0.0,0.0,550),(7359,356316,0.0,0.0,0.0,550),(7360,356299,0.0,0.0,0.0,550),(7361,356320,0.0,0.0,0.0,550),(7362,356275,0.0,0.0,0.0,550),(7363,356273,0.0,0.0,0.0,550),(7364,356277,0.0,0.0,0.0,550),(7365,356276,0.0,0.0,0.0,550),(7366,356304,0.0,0.0,0.0,550),(7367,356300,0.0,0.0,0.0,550),(7368,356298,0.0,0.0,0.0,550),(7369,356297,0.0,0.0,0.0,550),(7370,359534,0.0,0.0,0.0,550),(7371,356302,0.0,0.0,0.0,550),(7372,356305,0.0,0.0,0.0,550),(7373,356293,0.0,0.0,0.0,550),(7374,356301,0.0,0.0,0.0,550),(7375,356306,0.0,0.0,0.0,550),(7376,356303,0.0,0.0,0.0,550),(7377,356308,0.0,0.0,0.0,550),(7378,356283,0.0,0.0,0.0,550),(7379,356284,0.0,0.0,0.0,550),(7380,356285,0.0,0.0,0.0,550),(7381,356288,0.0,0.0,0.0,550),(7382,356289,0.0,0.0,0.0,550),(7383,356290,0.0,0.0,0.0,550),(7384,356296,0.0,0.0,0.0,550),(7385,356295,0.0,0.0,0.0,550),(7386,356294,0.0,0.0,0.0,550),(7387,358893,0.0,0.0,0.0,835),(7388,358892,0.0,0.0,0.0,835),(7389,358890,0.0,0.0,0.0,835),(7390,358888,0.0,0.0,0.0,835),(7391,358887,0.0,0.0,0.0,835),(7392,358889,0.0,0.0,0.0,835),(7393,358886,0.0,0.0,0.0,835),(7394,358885,0.0,0.0,0.0,835),(7395,358884,0.0,0.0,0.0,835),(7396,358794,0.0,0.0,0.0,835),(7397,358792,0.0,0.0,0.0,835),(7398,358791,0.0,0.0,0.0,835),(7399,358790,0.0,0.0,0.0,835),(7400,358789,0.0,0.0,0.0,835),(7401,358788,0.0,0.0,0.0,835),(7402,358786,0.0,0.0,0.0,835),(7403,358784,0.0,0.0,0.0,835),(7404,358783,0.0,0.0,0.0,835),(7405,358782,0.0,0.0,0.0,835),(7406,358781,0.0,0.0,0.0,835),(7407,358780,0.0,0.0,0.0,835),(7408,358779,0.0,0.0,0.0,835),(7409,355561,0.0,0.0,0.0,805),(7410,358822,0.0,0.0,0.0,830),(7411,358821,0.0,0.0,0.0,830),(7412,358820,0.0,0.0,0.0,830),(7413,358818,0.0,0.0,0.0,830),(7414,358817,0.0,0.0,0.0,830),(7415,358815,0.0,0.0,0.0,830),(7416,358813,0.0,0.0,0.0,830),(7417,358812,0.0,0.0,0.0,830),(7418,358811,0.0,0.0,0.0,830),(7419,358810,0.0,0.0,0.0,830),(7420,358808,0.0,0.0,0.0,830),(7421,358809,0.0,0.0,0.0,830),(7422,358807,0.0,0.0,0.0,830),(7423,358806,0.0,0.0,0.0,830),(7424,358805,0.0,0.0,0.0,830),(7425,358804,0.0,0.0,0.0,830),(7426,358802,0.0,0.0,0.0,830),(7427,358797,0.0,0.0,0.0,830),(7428,358800,0.0,0.0,0.0,830),(7429,358795,0.0,0.0,0.0,830),(7430,358787,0.0,0.0,0.0,830),(7431,358769,0.0,0.0,0.0,830),(7432,353995,0.0,0.0,0.0,830),(7433,353765,0.0,0.0,0.0,830),(7434,353476,0.0,0.0,0.0,830),(7435,347580,0.0,0.0,0.0,830),(7436,353461,0.0,0.0,0.0,830),(7437,351207,0.0,0.0,0.0,830),(7438,349326,0.0,0.0,0.0,830),(7439,348299,0.0,0.0,0.0,830),(7440,347611,0.0,0.0,0.0,830),(7441,360336,0.0,0.0,0.0,604),(7442,360367,30.0,24.0,14.0,500),(7443,360130,39.0,29.0,17.0,1354),(7444,360348,30.0,24.0,14.0,580),(7445,360142,33.0,25.0,11.0,634),(7446,357004,30.0,24.0,14.0,770),(7447,360125,30.0,24.0,14.0,870),(7448,360106,33.0,25.0,11.0,362),(7449,360059,30.0,24.0,14.0,574),(7450,360185,30.0,24.0,14.0,608),(7451,360166,30.0,24.0,14.0,588),(7452,360153,33.0,25.0,11.0,284),(7453,359242,30.0,24.0,14.0,690),(7454,360224,30.0,24.0,14.0,528),(7455,349043,30.0,24.0,14.0,940),(7456,360133,30.0,24.0,14.0,602),(7457,359585,30.0,24.0,14.0,530),(7458,360141,33.0,25.0,11.0,288),(7459,359361,0.0,0.0,0.0,620),(7460,359319,0.0,0.0,0.0,605),(7461,359330,0.0,0.0,0.0,425),(7462,359318,0.0,0.0,0.0,605),(7463,359530,0.0,0.0,0.0,610),(7464,359532,0.0,0.0,0.0,595),(7465,359531,0.0,0.0,0.0,610),(7466,359919,0.0,0.0,0.0,600),(7467,359162,0.0,0.0,0.0,620),(7468,360006,0.0,0.0,0.0,970),(7469,360293,0.0,0.0,0.0,605),(7470,360303,0.0,0.0,0.0,420),(7471,360309,0.0,0.0,0.0,580),(7472,360251,0.0,0.0,0.0,610),(7473,360248,0.0,0.0,0.0,780),(7474,360231,0.0,0.0,0.0,605),(7475,360108,0.0,0.0,0.0,605),(7476,356083,0.0,0.0,0.0,815),(7477,354029,0.0,0.0,0.0,815),(7478,355962,0.0,0.0,0.0,815),(7479,356375,0.0,0.0,0.0,815),(7480,358823,0.0,0.0,0.0,815),(7481,358824,0.0,0.0,0.0,815),(7482,358825,0.0,0.0,0.0,820),(7483,358826,0.0,0.0,0.0,820),(7484,358827,0.0,0.0,0.0,815),(7485,355961,0.0,0.0,0.0,815),(7486,358655,0.0,0.0,0.0,815),(7487,358723,0.0,0.0,0.0,815),(7488,355943,0.0,0.0,0.0,815),(7489,358828,0.0,0.0,0.0,815),(7490,358830,0.0,0.0,0.0,815),(7491,358831,0.0,0.0,0.0,815),(7492,358877,0.0,0.0,0.0,815),(7493,358876,0.0,0.0,0.0,815),(7494,358875,0.0,0.0,0.0,815),(7495,358873,0.0,0.0,0.0,815),(7496,358874,0.0,0.0,0.0,820),(7497,347360,0.0,0.0,0.0,820),(7498,346356,0.0,0.0,0.0,820),(7499,358816,0.0,0.0,0.0,820),(7500,358814,0.0,0.0,0.0,814),(7501,359374,0.0,0.0,0.0,820),(7502,358861,0.0,0.0,0.0,820),(7503,359508,0.0,0.0,0.0,610),(7504,358866,0.0,0.0,0.0,820),(7505,360057,0.0,0.0,0.0,610),(7506,358865,0.0,0.0,0.0,820),(7507,360127,0.0,0.0,0.0,792),(7508,358863,0.0,0.0,0.0,822),(7509,358862,0.0,0.0,0.0,822),(7510,360110,0.0,0.0,0.0,564),(7511,358838,0.0,0.0,0.0,840),(7512,360226,0.0,0.0,0.0,610),(7513,356307,0.0,0.0,0.0,600),(7514,355613,0.0,0.0,0.0,806),(7515,358839,0.0,0.0,0.0,840),(7516,358840,0.0,0.0,0.0,840),(7517,358843,0.0,0.0,0.0,840),(7518,358061,0.0,0.0,0.0,638),(7519,358841,0.0,0.0,0.0,840),(7520,356674,0.0,0.0,0.0,638),(7521,360210,30.0,24.0,14.0,734),(7522,360014,0.0,0.0,0.0,636),(7523,360299,30.0,24.0,14.0,984),(7524,355304,0.0,0.0,0.0,804),(7525,360135,30.0,24.0,14.0,740),(7526,355057,0.0,0.0,0.0,804),(7527,355205,0.0,0.0,0.0,804),(7528,354787,30.0,24.0,14.0,736),(7529,356348,0.0,0.0,0.0,1294),(7530,359985,0.0,0.0,0.0,1246),(7531,338224,0.0,0.0,0.0,1850),(7532,358864,0.0,0.0,0.0,1160),(7533,358832,0.0,0.0,0.0,820),(7534,357911,0.0,0.0,0.0,820),(7535,360116,39.0,29.0,17.0,1796),(7536,358860,0.0,0.0,0.0,820),(7537,358859,0.0,0.0,0.0,820),(7538,358842,0.0,0.0,0.0,840),(7539,358844,0.0,0.0,0.0,840),(7540,358858,0.0,0.0,0.0,820),(7541,358846,0.0,0.0,0.0,840),(7542,358867,0.0,0.0,0.0,840),(7543,358857,0.0,0.0,0.0,820),(7544,358868,0.0,0.0,0.0,840),(7545,358869,0.0,0.0,0.0,840),(7546,358856,0.0,0.0,0.0,820),(7547,358870,0.0,0.0,0.0,840),(7548,358855,0.0,0.0,0.0,820),(7549,358871,0.0,0.0,0.0,840),(7550,358872,0.0,0.0,0.0,840),(7551,358854,0.0,0.0,0.0,820),(7552,358882,0.0,0.0,0.0,840),(7553,358883,0.0,0.0,0.0,840),(7554,358853,0.0,0.0,0.0,820),(7555,358881,0.0,0.0,0.0,840),(7556,358880,0.0,0.0,0.0,840),(7557,358879,0.0,0.0,0.0,840),(7558,358878,0.0,0.0,0.0,840),(7559,360184,0.0,0.0,0.0,794),(7560,357833,0.0,0.0,0.0,820),(7561,357756,0.0,0.0,0.0,820),(7562,358849,0.0,0.0,0.0,820),(7563,358850,0.0,0.0,0.0,820),(7564,358851,0.0,0.0,0.0,820),(7565,358770,0.0,0.0,0.0,830),(7566,357986,0.0,0.0,0.0,570),(7567,357984,0.0,0.0,0.0,570),(7568,357982,0.0,0.0,0.0,570),(7569,358007,0.0,0.0,0.0,570),(7570,358006,0.0,0.0,0.0,570),(7571,358005,0.0,0.0,0.0,570),(7572,358003,0.0,0.0,0.0,570),(7573,358002,0.0,0.0,0.0,570),(7574,357991,0.0,0.0,0.0,570),(7575,357992,0.0,0.0,0.0,570),(7576,357993,0.0,0.0,0.0,570),(7577,357994,0.0,0.0,0.0,570),(7578,357995,0.0,0.0,0.0,570),(7579,357996,0.0,0.0,0.0,570),(7580,357997,0.0,0.0,0.0,570),(7581,357998,0.0,0.0,0.0,570),(7582,358000,0.0,0.0,0.0,570),(7583,358001,0.0,0.0,0.0,570),(7584,358031,0.0,0.0,0.0,568),(7585,357987,0.0,0.0,0.0,576),(7586,357990,0.0,0.0,0.0,570),(7587,357989,0.0,0.0,0.0,570),(7588,357985,0.0,0.0,0.0,570),(7589,358033,0.0,0.0,0.0,570),(7590,358035,0.0,0.0,0.0,530),(7591,358034,0.0,0.0,0.0,530),(7592,358778,0.0,0.0,0.0,830),(7593,358776,0.0,0.0,0.0,830),(7594,358775,0.0,0.0,0.0,830),(7595,358774,0.0,0.0,0.0,830),(7596,358772,0.0,0.0,0.0,830),(7597,358771,0.0,0.0,0.0,830),(7598,358768,0.0,0.0,0.0,830),(7599,358767,0.0,0.0,0.0,830),(7600,359113,0.0,0.0,0.0,830),(7601,358833,0.0,0.0,0.0,830),(7602,358834,0.0,0.0,0.0,830),(7603,358835,0.0,0.0,0.0,830),(7604,358836,0.0,0.0,0.0,830),(7605,358837,0.0,0.0,0.0,830),(7606,358766,0.0,0.0,0.0,830),(7607,358765,0.0,0.0,0.0,830),(7608,358764,0.0,0.0,0.0,830),(7609,358059,0.0,0.0,0.0,830),(7610,360794,30.0,24.0,14.0,605),(7611,360625,30.0,24.0,14.0,795),(7612,360569,30.0,24.0,14.0,790),(7613,360549,30.0,24.0,14.0,795),(7614,360528,30.0,24.0,14.0,1160),(7615,360560,30.0,24.0,14.0,556),(7616,360476,30.0,24.0,14.0,512),(7617,360358,30.0,24.0,14.0,630),(7618,360189,30.0,24.0,14.0,810),(7619,360360,30.0,24.0,6.0,320),(7620,360431,30.0,24.0,14.0,800),(7621,360584,30.0,24.0,14.0,755),(7622,360556,30.0,24.0,14.0,905),(7623,360627,33.0,25.0,11.0,698),(7624,360469,30.0,24.0,10.0,790),(7625,360668,30.0,24.0,10.0,760),(7626,360310,0.0,0.0,0.0,994),(7627,360308,0.0,0.0,0.0,994),(7628,360306,0.0,0.0,0.0,994),(7629,360307,0.0,0.0,0.0,994),(7630,360305,0.0,0.0,0.0,994),(7631,360304,0.0,0.0,0.0,994),(7632,360302,0.0,0.0,0.0,994),(7633,360301,0.0,0.0,0.0,994),(7634,360300,0.0,0.0,0.0,994),(7635,360298,0.0,0.0,0.0,994),(7636,360297,0.0,0.0,0.0,994),(7637,360296,0.0,0.0,0.0,994),(7638,360295,0.0,0.0,0.0,994),(7639,360294,0.0,0.0,0.0,994),(7640,360319,0.0,0.0,0.0,994),(7641,360318,0.0,0.0,0.0,994),(7642,360316,0.0,0.0,0.0,994),(7643,360317,0.0,0.0,0.0,994),(7644,360315,0.0,0.0,0.0,994),(7645,360314,0.0,0.0,0.0,994),(7646,360312,0.0,0.0,0.0,994),(7647,360313,0.0,0.0,0.0,994),(7648,360311,0.0,0.0,0.0,994),(7649,360327,0.0,0.0,0.0,994),(7650,360325,0.0,0.0,0.0,994),(7651,360324,0.0,0.0,0.0,994),(7652,360322,0.0,0.0,0.0,994),(7653,360321,0.0,0.0,0.0,994),(7654,360320,0.0,0.0,0.0,994),(7655,360323,0.0,0.0,0.0,994),(7656,360598,0.0,0.0,0.0,994),(7657,360450,30.0,24.0,14.0,1088),(7658,360499,30.0,24.0,14.0,946),(7659,346014,30.0,24.0,14.0,940),(7660,360460,30.0,24.0,14.0,1068),(7661,360489,30.0,24.0,14.0,944),(7662,359379,30.0,24.0,6.0,354),(7663,360386,0.0,0.0,0.0,570),(7664,360478,0.0,0.0,0.0,590),(7665,359034,0.0,0.0,0.0,820),(7666,360419,0.0,0.0,0.0,610),(7667,360470,0.0,0.0,0.0,770),(7668,360611,0.0,0.0,0.0,770),(7669,360658,0.0,0.0,0.0,770),(7670,360457,0.0,0.0,0.0,770),(7671,360557,0.0,0.0,0.0,770),(7672,360418,0.0,0.0,0.0,750),(7673,360373,0.0,0.0,0.0,710),(7674,360764,0.0,0.0,0.0,710),(7675,360705,0.0,0.0,0.0,950),(7676,360493,0.0,0.0,0.0,950),(7677,360511,0.0,0.0,0.0,600),(7678,360385,0.0,0.0,0.0,600),(7679,360139,0.0,0.0,0.0,975),(7680,360275,0.0,0.0,0.0,995),(7681,360265,0.0,0.0,0.0,995),(7682,360128,0.0,0.0,0.0,810),(7683,356057,0.0,0.0,0.0,810),(7684,360234,0.0,0.0,0.0,760),(7685,360176,0.0,0.0,0.0,760),(7686,360430,0.0,0.0,0.0,760),(7687,360123,0.0,0.0,0.0,760),(7688,360575,0.0,0.0,0.0,760),(7689,360666,0.0,0.0,0.0,760),(7690,360220,0.0,0.0,0.0,760),(7691,360263,0.0,0.0,0.0,995),(7692,360262,0.0,0.0,0.0,995),(7693,360257,0.0,0.0,0.0,995),(7694,360274,0.0,0.0,0.0,995),(7695,360261,0.0,0.0,0.0,995),(7696,360260,0.0,0.0,0.0,995),(7697,360258,0.0,0.0,0.0,995),(7698,360256,0.0,0.0,0.0,995),(7699,360255,0.0,0.0,0.0,995),(7700,360276,0.0,0.0,0.0,995),(7701,360273,0.0,0.0,0.0,995),(7702,360267,0.0,0.0,0.0,995),(7703,360269,0.0,0.0,0.0,995),(7704,360266,0.0,0.0,0.0,995),(7705,360252,0.0,0.0,0.0,995),(7706,360249,0.0,0.0,0.0,995),(7707,360253,0.0,0.0,0.0,995),(7708,360254,0.0,0.0,0.0,995),(7709,360264,0.0,0.0,0.0,995),(7710,360282,0.0,0.0,0.0,995),(7711,360279,0.0,0.0,0.0,995),(7712,360278,0.0,0.0,0.0,995),(7713,360277,0.0,0.0,0.0,995),(7714,360328,0.0,0.0,0.0,995),(7715,360326,0.0,0.0,0.0,995),(7716,360292,0.0,0.0,0.0,995),(7717,360291,0.0,0.0,0.0,995),(7718,360289,0.0,0.0,0.0,995),(7719,360288,0.0,0.0,0.0,995),(7720,360287,0.0,0.0,0.0,995),(7721,360286,0.0,0.0,0.0,995),(7722,360284,0.0,0.0,0.0,995),(7723,360285,0.0,0.0,0.0,995),(7724,360290,0.0,0.0,0.0,995),(7725,360270,0.0,0.0,0.0,995),(7726,360250,0.0,0.0,0.0,995),(7727,360268,0.0,0.0,0.0,995),(7728,360271,0.0,0.0,0.0,995),(7729,360272,0.0,0.0,0.0,995),(7730,360280,0.0,0.0,0.0,995),(7731,360823,50.0,18.0,19.0,878),(7732,360891,33.0,25.0,11.0,738),(7733,360875,30.0,24.0,14.0,560),(7734,360827,30.0,24.0,14.0,604),(7735,360802,39.0,29.0,17.0,1678),(7736,360910,46.0,29.0,22.0,2406),(7737,360908,39.0,29.0,17.0,958),(7738,360916,33.0,25.0,11.0,648),(7739,360911,30.0,24.0,14.0,560),(7740,354067,30.0,24.0,14.0,944),(7741,360436,0.0,0.0,0.0,2850),(7742,360949,0.0,0.0,0.0,1240),(7743,359153,0.0,0.0,0.0,1125),(7744,360844,0.0,0.0,0.0,730),(7745,360969,0.0,0.0,0.0,280),(7746,360936,0.0,0.0,0.0,1000),(7747,360945,0.0,0.0,0.0,880),(7748,360896,0.0,0.0,0.0,945),(7749,360362,0.0,0.0,0.0,550),(7750,360918,0.0,0.0,0.0,590),(7751,360624,0.0,0.0,0.0,630),(7752,360521,0.0,0.0,0.0,630),(7753,360379,0.0,0.0,0.0,2300),(7754,360467,0.0,0.0,0.0,890),(7755,360673,0.0,0.0,0.0,740),(7756,360736,0.0,0.0,0.0,730),(7757,360480,0.0,0.0,0.0,740),(7758,360479,0.0,0.0,0.0,580),(7759,360686,0.0,0.0,0.0,545),(7760,360565,0.0,0.0,0.0,564),(7761,360758,0.0,0.0,0.0,370),(7762,360743,0.0,0.0,0.0,540),(7763,360740,0.0,0.0,0.0,367),(7764,360889,0.0,0.0,0.0,565),(7765,360684,0.0,0.0,0.0,550),(7766,360683,0.0,0.0,0.0,550),(7767,360890,0.0,0.0,0.0,560),(7768,360861,0.0,0.0,0.0,610),(7769,360659,0.0,0.0,0.0,540),(7770,359726,0.0,0.0,0.0,540),(7771,360902,0.0,0.0,0.0,720),(7772,360958,0.0,0.0,0.0,780),(7773,351034,0.0,0.0,0.0,560),(7774,361048,0.0,0.0,0.0,830),(7775,360115,0.0,0.0,0.0,1550),(7776,357258,0.0,0.0,0.0,1286),(7777,360551,0.0,0.0,0.0,2322),(7778,349644,0.0,0.0,0.0,1572),(7779,360410,0.0,0.0,0.0,2848),(7780,361070,30.0,24.0,14.0,580),(7781,360981,30.0,24.0,14.0,566),(7782,360992,30.0,24.0,14.0,736),(7783,360968,30.0,24.0,14.0,752),(7784,360962,30.0,24.0,14.0,514),(7785,360966,30.0,24.0,14.0,1048),(7786,360974,30.0,24.0,6.0,284),(7787,361166,30.0,24.0,14.0,755),(7788,361079,30.0,24.0,14.0,1380),(7789,356937,39.0,29.0,17.0,1525),(7790,361161,46.0,30.0,16.0,1995),(7791,360132,0.0,0.0,0.0,725),(7792,359998,0.0,0.0,0.0,1310),(7793,355677,0.0,0.0,0.0,1735),(7794,360174,0.0,0.0,0.0,1490),(7795,360943,0.0,0.0,0.0,1530),(7796,360810,0.0,0.0,0.0,1810),(7797,361202,30.0,24.0,6.0,276),(7798,361187,30.0,24.0,14.0,482),(7799,361188,30.0,24.0,6.0,396),(7800,361197,30.0,24.0,14.0,702),(7801,361032,0.0,0.0,0.0,728),(7802,361031,0.0,0.0,0.0,576),(7803,361084,0.0,0.0,0.0,595),(7804,361205,0.0,0.0,0.0,790),(7805,361090,0.0,0.0,0.0,916),(7806,361037,0.0,0.0,0.0,585),(7807,361216,0.0,0.0,0.0,810),(7808,360984,0.0,0.0,0.0,785),(7809,361058,0.0,0.0,0.0,830),(7810,361129,0.0,0.0,0.0,830),(7811,360797,0.0,0.0,0.0,825),(7812,361250,0.0,0.0,0.0,630),(7813,361221,0.0,0.0,0.0,780),(7814,360790,0.0,0.0,0.0,785),(7815,355122,0.0,0.0,0.0,775),(7816,361195,0.0,0.0,0.0,1604),(7817,361065,0.0,0.0,0.0,1598),(7818,361256,0.0,0.0,0.0,780),(7819,361051,0.0,0.0,0.0,775),(7820,361258,0.0,0.0,0.0,780),(7821,361238,30.0,24.0,14.0,630),(7822,4774,30.0,24.0,14.0,758),(7823,361257,30.0,24.0,14.0,810),(7824,361282,30.0,24.0,14.0,776),(7825,361212,39.0,29.0,17.0,2470),(7826,360167,30.0,24.0,14.0,992),(7827,361292,30.0,24.0,14.0,724),(7828,361248,0.0,0.0,0.0,866),(7829,361315,0.0,0.0,0.0,692),(7830,361600,0.0,0.0,0.0,546),(7831,361946,0.0,0.0,0.0,516),(7832,359032,0.0,0.0,0.0,574),(7833,357988,0.0,0.0,0.0,528),(7834,361042,0.0,0.0,0.0,530),(7835,349193,30.0,24.0,14.0,998),(7836,361252,33.0,25.0,11.0,824),(7837,361275,33.0,25.0,11.0,536),(7838,361963,33.0,26.0,17.0,2122),(7839,361983,30.0,24.0,6.0,352),(7840,361968,0.0,0.0,0.0,930),(7841,361954,0.0,0.0,0.0,786),(7842,361957,0.0,0.0,0.0,898),(7843,361952,0.0,0.0,0.0,1786),(7844,361975,0.0,0.0,0.0,890),(7845,361965,0.0,0.0,0.0,616),(7846,361976,0.0,0.0,0.0,692),(7847,359338,0.0,0.0,0.0,585),(7848,359316,0.0,0.0,0.0,546),(7849,359331,0.0,0.0,0.0,550),(7850,359334,0.0,0.0,0.0,548),(7851,359320,0.0,0.0,0.0,556),(7852,359323,0.0,0.0,0.0,558),(7853,359322,0.0,0.0,0.0,544),(7854,359325,0.0,0.0,0.0,540),(7855,359324,0.0,0.0,0.0,548),(7856,360840,0.0,0.0,0.0,550),(7857,360172,0.0,0.0,0.0,898),(7858,359337,0.0,0.0,0.0,580),(7859,359336,0.0,0.0,0.0,600),(7860,359335,0.0,0.0,0.0,580),(7861,362080,39.0,29.0,17.0,1176),(7862,3240,33.0,26.0,17.0,1272),(7863,362480,30.0,24.0,14.0,796),(7864,362427,30.0,24.0,14.0,566),(7865,362073,30.0,24.0,14.0,552),(7866,362048,30.0,24.0,14.0,564),(7867,362101,30.0,24.0,14.0,774),(7868,362057,30.0,24.0,14.0,566),(7869,362062,30.0,24.0,14.0,764),(7870,362050,30.0,24.0,14.0,506),(7871,362424,30.0,24.0,14.0,612),(7872,362018,30.0,24.0,14.0,750),(7873,361085,30.0,24.0,14.0,766),(7874,361175,39.0,29.0,17.0,2120),(7875,362070,30.0,24.0,14.0,768),(7876,361937,30.0,24.0,14.0,810),(7877,361932,30.0,24.0,14.0,815),(7878,361375,30.0,24.0,14.0,820),(7879,361894,30.0,24.0,14.0,820),(7880,361893,30.0,24.0,14.0,820),(7881,361825,30.0,24.0,14.0,820),(7882,361776,30.0,24.0,14.0,815),(7883,361754,30.0,24.0,14.0,820),(7884,361703,30.0,24.0,14.0,815),(7885,361694,30.0,24.0,14.0,816),(7886,361683,30.0,24.0,14.0,820),(7887,361681,30.0,24.0,14.0,820),(7888,362508,30.0,24.0,14.0,570),(7889,362506,30.0,24.0,14.0,574),(7890,362451,30.0,24.0,14.0,574),(7891,362429,30.0,24.0,14.0,570),(7892,362495,30.0,24.0,14.0,572),(7893,362436,30.0,24.0,14.0,820),(7894,361337,30.0,24.0,14.0,810),(7895,361818,30.0,24.0,14.0,810),(7896,361757,30.0,24.0,14.0,818),(7897,361698,30.0,24.0,14.0,822),(7898,361688,30.0,24.0,14.0,802),(7899,361677,30.0,24.0,14.0,820),(7900,359719,30.0,24.0,14.0,816),(7901,362388,30.0,24.0,14.0,822),(7902,362413,39.0,29.0,17.0,1768),(7903,362491,30.0,24.0,14.0,1062),(7904,362195,30.0,24.0,14.0,680),(7905,362075,30.0,24.0,14.0,572),(7906,362060,39.0,29.0,17.0,1556),(7907,362446,30.0,24.0,6.0,712),(7908,362072,30.0,24.0,14.0,1294),(7909,362423,30.0,24.0,14.0,1468),(7910,361998,30.0,24.0,14.0,1058),(7911,360508,30.0,24.0,14.0,1042),(7912,362532,46.0,29.0,22.0,1374),(7913,362555,30.0,24.0,14.0,718),(7914,362542,30.0,24.0,14.0,584),(7915,360137,30.0,24.0,14.0,820),(7916,362539,30.0,24.0,14.0,556),(7917,362582,30.0,24.0,14.0,808),(7918,362533,30.0,24.0,6.0,452),(7919,362403,0.0,0.0,0.0,840),(7920,362404,0.0,0.0,0.0,840),(7921,361934,0.0,0.0,0.0,840),(7922,361933,0.0,0.0,0.0,840),(7923,361931,0.0,0.0,0.0,840),(7924,361930,0.0,0.0,0.0,840),(7925,361806,0.0,0.0,0.0,840),(7926,361807,0.0,0.0,0.0,840),(7927,361808,0.0,0.0,0.0,840),(7928,361809,0.0,0.0,0.0,840),(7929,361755,0.0,0.0,0.0,840),(7930,361756,0.0,0.0,0.0,840),(7931,361758,0.0,0.0,0.0,840),(7932,361759,0.0,0.0,0.0,840),(7933,361760,0.0,0.0,0.0,840),(7934,361761,0.0,0.0,0.0,840),(7935,361762,0.0,0.0,0.0,840),(7936,361763,0.0,0.0,0.0,840),(7937,361765,0.0,0.0,0.0,840),(7938,361764,0.0,0.0,0.0,840),(7939,361766,0.0,0.0,0.0,840),(7940,361767,0.0,0.0,0.0,840),(7941,361801,0.0,0.0,0.0,840),(7942,361802,0.0,0.0,0.0,840),(7943,361769,0.0,0.0,0.0,840),(7944,361770,0.0,0.0,0.0,840),(7945,361772,0.0,0.0,0.0,840),(7946,361771,0.0,0.0,0.0,840),(7947,361773,0.0,0.0,0.0,840),(7948,361774,0.0,0.0,0.0,840),(7949,361775,0.0,0.0,0.0,840),(7950,361777,0.0,0.0,0.0,840),(7951,361778,0.0,0.0,0.0,840),(7952,361781,0.0,0.0,0.0,840),(7953,361779,0.0,0.0,0.0,840),(7954,361780,0.0,0.0,0.0,840),(7955,361782,0.0,0.0,0.0,840),(7956,361783,0.0,0.0,0.0,840),(7957,361784,0.0,0.0,0.0,840),(7958,361579,0.0,0.0,0.0,840),(7959,361578,0.0,0.0,0.0,840),(7960,361577,0.0,0.0,0.0,840),(7961,361576,0.0,0.0,0.0,840),(7962,361575,0.0,0.0,0.0,840),(7963,361574,0.0,0.0,0.0,840),(7964,361573,0.0,0.0,0.0,840),(7965,361572,0.0,0.0,0.0,840),(7966,361571,0.0,0.0,0.0,840),(7967,361570,0.0,0.0,0.0,840),(7968,361569,0.0,0.0,0.0,840),(7969,361568,0.0,0.0,0.0,840),(7970,361567,0.0,0.0,0.0,840),(7971,361566,0.0,0.0,0.0,840),(7972,361565,0.0,0.0,0.0,840),(7973,361585,0.0,0.0,0.0,840),(7974,361583,0.0,0.0,0.0,840),(7975,361582,0.0,0.0,0.0,840),(7976,361581,0.0,0.0,0.0,840),(7977,361580,0.0,0.0,0.0,840),(7978,361564,0.0,0.0,0.0,840),(7979,361563,0.0,0.0,0.0,840),(7980,361560,0.0,0.0,0.0,840),(7981,361559,0.0,0.0,0.0,840),(7982,361558,0.0,0.0,0.0,840),(7983,361557,0.0,0.0,0.0,840),(7984,361556,0.0,0.0,0.0,840),(7985,361555,0.0,0.0,0.0,840),(7986,361554,0.0,0.0,0.0,840),(7987,361553,0.0,0.0,0.0,840),(7988,361552,0.0,0.0,0.0,840),(7989,361551,0.0,0.0,0.0,840),(7990,361550,0.0,0.0,0.0,840),(7991,361548,0.0,0.0,0.0,840),(7992,361547,0.0,0.0,0.0,840),(7993,361545,0.0,0.0,0.0,840),(7994,361544,0.0,0.0,0.0,840),(7995,361543,0.0,0.0,0.0,840),(7996,361542,0.0,0.0,0.0,840),(7997,361541,0.0,0.0,0.0,840),(7998,361540,0.0,0.0,0.0,840),(7999,361539,0.0,0.0,0.0,840),(8000,361791,0.0,0.0,0.0,840),(8001,361792,0.0,0.0,0.0,840),(8002,361790,0.0,0.0,0.0,840),(8003,361789,0.0,0.0,0.0,840),(8004,361788,0.0,0.0,0.0,840),(8005,361787,0.0,0.0,0.0,840),(8006,361786,0.0,0.0,0.0,840),(8007,361785,0.0,0.0,0.0,840),(8008,362103,0.0,0.0,0.0,595),(8009,362521,0.0,0.0,0.0,620),(8010,362504,0.0,0.0,0.0,810),(8011,362519,0.0,0.0,0.0,810),(8012,362786,0.0,0.0,0.0,620),(8013,362765,0.0,0.0,0.0,1080),(8014,362678,0.0,0.0,0.0,660),(8015,362667,0.0,0.0,0.0,640),(8016,362176,0.0,0.0,0.0,585),(8017,362212,0.0,0.0,0.0,1115),(8018,362565,0.0,0.0,0.0,625),(8019,362156,0.0,0.0,0.0,710),(8020,362151,0.0,0.0,0.0,536),(8021,362311,0.0,0.0,0.0,544),(8022,362510,0.0,0.0,0.0,690),(8023,362000,0.0,0.0,0.0,600),(8024,362566,0.0,0.0,0.0,615),(8025,362513,0.0,0.0,0.0,512),(8026,362017,0.0,0.0,0.0,868),(8027,362043,0.0,0.0,0.0,700),(8028,362355,0.0,0.0,0.0,542),(8029,359315,0.0,0.0,0.0,542),(8030,362769,0.0,0.0,0.0,696),(8031,362771,0.0,0.0,0.0,708),(8032,362774,0.0,0.0,0.0,376),(8033,362775,0.0,0.0,0.0,370),(8034,362347,0.0,0.0,0.0,358),(8035,362306,0.0,0.0,0.0,550),(8036,362354,0.0,0.0,0.0,370),(8037,362353,0.0,0.0,0.0,544),(8038,362352,0.0,0.0,0.0,538),(8039,362351,0.0,0.0,0.0,542),(8040,362350,0.0,0.0,0.0,538),(8041,362342,0.0,0.0,0.0,570),(8042,362343,0.0,0.0,0.0,382),(8043,362326,0.0,0.0,0.0,538),(8044,362316,0.0,0.0,0.0,550),(8045,362315,0.0,0.0,0.0,566),(8046,362312,0.0,0.0,0.0,536),(8047,362153,0.0,0.0,0.0,688),(8048,362154,0.0,0.0,0.0,698),(8049,362012,0.0,0.0,0.0,760),(8050,361990,0.0,0.0,0.0,760),(8051,362349,0.0,0.0,0.0,760),(8052,362194,0.0,0.0,0.0,760),(8053,362138,0.0,0.0,0.0,760),(8054,362381,0.0,0.0,0.0,760),(8055,362380,0.0,0.0,0.0,760),(8056,362374,0.0,0.0,0.0,795),(8057,362522,0.0,0.0,0.0,760),(8058,362379,46.0,30.0,16.0,2216),(8059,362772,0.0,0.0,0.0,760),(8060,362773,0.0,0.0,0.0,765),(8061,362777,0.0,0.0,0.0,760),(8062,362778,0.0,0.0,0.0,760),(8063,362779,0.0,0.0,0.0,760),(8064,362780,0.0,0.0,0.0,760),(8065,362781,0.0,0.0,0.0,755),(8066,362754,39.0,29.0,17.0,1166),(8067,362589,30.0,24.0,14.0,732),(8068,362691,30.0,24.0,14.0,970),(8069,350747,30.0,24.0,14.0,816),(8070,362792,30.0,24.0,14.0,570),(8071,362785,30.0,24.0,14.0,576),(8072,362799,30.0,24.0,14.0,570),(8073,362594,30.0,24.0,14.0,1030),(8074,362748,30.0,24.0,14.0,534),(8075,362209,30.0,24.0,14.0,640),(8076,362653,30.0,24.0,14.0,534),(8077,362663,30.0,24.0,14.0,548),(8078,362655,30.0,24.0,6.0,364),(8079,362782,30.0,24.0,14.0,1022),(8080,362614,30.0,24.0,14.0,774),(8081,362696,30.0,24.0,14.0,848),(8082,361902,0.0,0.0,0.0,830),(8083,361903,0.0,0.0,0.0,830),(8084,361695,0.0,0.0,0.0,830),(8085,361751,0.0,0.0,0.0,830),(8086,361752,0.0,0.0,0.0,830),(8087,361753,0.0,0.0,0.0,830),(8088,361905,0.0,0.0,0.0,830),(8089,361844,0.0,0.0,0.0,830),(8090,361904,0.0,0.0,0.0,830),(8091,361843,0.0,0.0,0.0,830),(8092,361906,0.0,0.0,0.0,830),(8093,361842,0.0,0.0,0.0,830),(8094,361841,0.0,0.0,0.0,830),(8095,361860,0.0,0.0,0.0,830),(8096,361840,0.0,0.0,0.0,830),(8097,361839,0.0,0.0,0.0,830),(8098,361859,0.0,0.0,0.0,830),(8099,361838,0.0,0.0,0.0,830),(8100,361837,0.0,0.0,0.0,830),(8101,361861,0.0,0.0,0.0,830),(8102,361835,0.0,0.0,0.0,830),(8103,361862,0.0,0.0,0.0,830),(8104,361863,0.0,0.0,0.0,830),(8105,361864,0.0,0.0,0.0,830),(8106,361865,0.0,0.0,0.0,830),(8107,361836,0.0,0.0,0.0,830),(8108,361834,0.0,0.0,0.0,830),(8109,361866,0.0,0.0,0.0,830),(8110,361833,0.0,0.0,0.0,830),(8111,361457,0.0,0.0,0.0,830),(8112,361867,0.0,0.0,0.0,830),(8113,361506,0.0,0.0,0.0,830),(8114,361868,0.0,0.0,0.0,830),(8115,361914,0.0,0.0,0.0,830),(8116,361869,0.0,0.0,0.0,830),(8117,361916,0.0,0.0,0.0,830),(8118,361915,0.0,0.0,0.0,830),(8119,361870,0.0,0.0,0.0,830),(8120,361917,0.0,0.0,0.0,830),(8121,361871,0.0,0.0,0.0,830),(8122,361531,0.0,0.0,0.0,830),(8123,361532,0.0,0.0,0.0,830),(8124,361872,0.0,0.0,0.0,830),(8125,361534,0.0,0.0,0.0,830),(8126,361873,0.0,0.0,0.0,830),(8127,361533,0.0,0.0,0.0,830),(8128,361535,0.0,0.0,0.0,830),(8129,361874,0.0,0.0,0.0,830),(8130,361875,0.0,0.0,0.0,830),(8131,361536,0.0,0.0,0.0,830),(8132,361537,0.0,0.0,0.0,830),(8133,361876,0.0,0.0,0.0,830),(8134,362303,0.0,0.0,0.0,830),(8135,361877,0.0,0.0,0.0,830),(8136,361878,0.0,0.0,0.0,830),(8137,362039,0.0,0.0,0.0,830),(8138,361879,0.0,0.0,0.0,830),(8139,361597,0.0,0.0,0.0,830),(8140,361880,0.0,0.0,0.0,830),(8141,361596,0.0,0.0,0.0,830),(8142,361881,0.0,0.0,0.0,830),(8143,361594,0.0,0.0,0.0,830),(8144,361882,0.0,0.0,0.0,830),(8145,361883,0.0,0.0,0.0,830),(8146,361593,0.0,0.0,0.0,830),(8147,361884,0.0,0.0,0.0,830),(8148,361592,0.0,0.0,0.0,830),(8149,361935,0.0,0.0,0.0,830),(8150,361591,0.0,0.0,0.0,830),(8151,361590,0.0,0.0,0.0,830),(8152,361588,0.0,0.0,0.0,830),(8153,361936,0.0,0.0,0.0,830),(8154,361587,0.0,0.0,0.0,830),(8155,361586,0.0,0.0,0.0,830),(8156,361938,0.0,0.0,0.0,830),(8157,361939,0.0,0.0,0.0,830),(8158,362394,0.0,0.0,0.0,830),(8159,361940,0.0,0.0,0.0,830),(8160,361941,0.0,0.0,0.0,830),(8161,361845,0.0,0.0,0.0,830),(8162,362395,0.0,0.0,0.0,830),(8163,361846,0.0,0.0,0.0,830),(8164,362529,0.0,0.0,0.0,830),(8165,361847,0.0,0.0,0.0,830),(8166,361463,0.0,0.0,0.0,830),(8167,361848,0.0,0.0,0.0,830),(8168,361811,0.0,0.0,0.0,830),(8169,361810,0.0,0.0,0.0,830),(8170,361851,0.0,0.0,0.0,830),(8171,361913,0.0,0.0,0.0,830),(8172,361850,0.0,0.0,0.0,830),(8173,361912,0.0,0.0,0.0,830),(8174,361911,0.0,0.0,0.0,830),(8175,361849,0.0,0.0,0.0,830),(8176,361910,0.0,0.0,0.0,830),(8177,361852,0.0,0.0,0.0,830),(8178,361909,0.0,0.0,0.0,830),(8179,361908,0.0,0.0,0.0,830),(8180,361907,0.0,0.0,0.0,830),(8181,361885,0.0,0.0,0.0,830),(8182,361886,0.0,0.0,0.0,830),(8183,361887,0.0,0.0,0.0,830),(8184,361888,0.0,0.0,0.0,830),(8185,361889,0.0,0.0,0.0,830),(8186,361890,0.0,0.0,0.0,830),(8187,361891,0.0,0.0,0.0,830),(8188,361892,0.0,0.0,0.0,830),(8189,361895,0.0,0.0,0.0,830),(8190,361896,0.0,0.0,0.0,830),(8191,361853,0.0,0.0,0.0,830),(8192,361897,0.0,0.0,0.0,830),(8193,361900,0.0,0.0,0.0,830),(8194,361854,0.0,0.0,0.0,830),(8195,361898,0.0,0.0,0.0,830),(8196,361855,0.0,0.0,0.0,830),(8197,361899,0.0,0.0,0.0,830),(8198,361856,0.0,0.0,0.0,830),(8199,361857,0.0,0.0,0.0,830),(8200,361858,0.0,0.0,0.0,830),(8201,361928,0.0,0.0,0.0,830),(8202,361929,0.0,0.0,0.0,830),(8203,361927,0.0,0.0,0.0,830),(8204,361901,0.0,0.0,0.0,830),(8205,362820,0.0,0.0,0.0,690),(8206,362821,0.0,0.0,0.0,810),(8207,362822,0.0,0.0,0.0,548),(8208,362863,33.0,25.0,11.0,550),(8209,362875,33.0,25.0,11.0,562),(8210,363114,30.0,24.0,14.0,984),(8211,362902,30.0,24.0,14.0,716),(8212,362911,30.0,24.0,14.0,706),(8213,363131,30.0,24.0,14.0,570),(8214,362961,30.0,24.0,14.0,990),(8215,362879,33.0,25.0,11.0,588),(8216,362866,33.0,25.0,11.0,570),(8217,362899,30.0,24.0,14.0,532),(8218,363134,30.0,24.0,14.0,560),(8219,362896,39.0,29.0,17.0,1564),(8220,362893,30.0,24.0,14.0,605),(8221,362895,30.0,24.0,14.0,605),(8222,362891,30.0,24.0,14.0,610),(8223,362890,30.0,24.0,14.0,640),(8224,363241,30.0,24.0,6.0,268),(8225,363225,30.0,24.0,14.0,1149),(8226,363262,30.0,24.0,14.0,702),(8227,363229,30.0,24.0,14.0,982),(8228,363254,30.0,24.0,14.0,700),(8229,363213,30.0,24.0,14.0,550),(8230,362114,0.0,0.0,0.0,996),(8231,362776,0.0,0.0,0.0,992),(8232,362320,0.0,0.0,0.0,990),(8233,362003,0.0,0.0,0.0,944),(8234,362562,0.0,0.0,0.0,938),(8235,362407,0.0,0.0,0.0,848),(8236,361598,0.0,0.0,0.0,824),(8237,362466,0.0,0.0,0.0,762),(8238,362398,0.0,0.0,0.0,754),(8239,361715,0.0,0.0,0.0,830),(8240,361740,0.0,0.0,0.0,830),(8241,361714,0.0,0.0,0.0,830),(8242,361710,0.0,0.0,0.0,830),(8243,361735,0.0,0.0,0.0,830),(8244,361709,0.0,0.0,0.0,830),(8245,361747,0.0,0.0,0.0,830),(8246,361708,0.0,0.0,0.0,830),(8247,361733,0.0,0.0,0.0,830),(8248,361707,0.0,0.0,0.0,830),(8249,361732,0.0,0.0,0.0,830),(8250,361748,0.0,0.0,0.0,830),(8251,361706,0.0,0.0,0.0,830),(8252,361731,0.0,0.0,0.0,830),(8253,361826,0.0,0.0,0.0,830),(8254,361827,0.0,0.0,0.0,830),(8255,361830,0.0,0.0,0.0,830),(8256,361831,0.0,0.0,0.0,830),(8257,361832,0.0,0.0,0.0,830),(8258,361741,0.0,0.0,0.0,830),(8259,361822,0.0,0.0,0.0,830),(8260,361821,0.0,0.0,0.0,830),(8261,361819,0.0,0.0,0.0,830),(8262,361817,0.0,0.0,0.0,830),(8263,361816,0.0,0.0,0.0,830),(8264,361815,0.0,0.0,0.0,830),(8265,361814,0.0,0.0,0.0,830),(8266,361813,0.0,0.0,0.0,830),(8267,361812,0.0,0.0,0.0,830),(8268,361926,0.0,0.0,0.0,830),(8269,361925,0.0,0.0,0.0,830),(8270,361924,0.0,0.0,0.0,830),(8271,361923,0.0,0.0,0.0,830),(8272,361922,0.0,0.0,0.0,830),(8273,361921,0.0,0.0,0.0,830),(8274,361920,0.0,0.0,0.0,830),(8275,361919,0.0,0.0,0.0,830),(8276,361918,0.0,0.0,0.0,830),(8277,359479,0.0,0.0,0.0,830),(8278,360922,0.0,0.0,0.0,830),(8279,361414,0.0,0.0,0.0,830),(8280,361804,0.0,0.0,0.0,830),(8281,361805,0.0,0.0,0.0,830),(8282,361793,0.0,0.0,0.0,830),(8283,361794,0.0,0.0,0.0,830),(8284,361669,0.0,0.0,0.0,830),(8285,361795,0.0,0.0,0.0,830),(8286,361689,0.0,0.0,0.0,830),(8287,361796,0.0,0.0,0.0,830),(8288,361797,0.0,0.0,0.0,830),(8289,361649,0.0,0.0,0.0,830),(8290,361798,0.0,0.0,0.0,830),(8291,361648,0.0,0.0,0.0,830),(8292,361799,0.0,0.0,0.0,830),(8293,361800,0.0,0.0,0.0,830),(8294,361668,0.0,0.0,0.0,830),(8295,361361,0.0,0.0,0.0,830),(8296,361360,0.0,0.0,0.0,830),(8297,361690,0.0,0.0,0.0,830),(8298,361637,0.0,0.0,0.0,830),(8299,361667,0.0,0.0,0.0,830),(8300,361660,0.0,0.0,0.0,830),(8301,361685,0.0,0.0,0.0,830),(8302,361659,0.0,0.0,0.0,830),(8303,361684,0.0,0.0,0.0,830),(8304,361658,0.0,0.0,0.0,830),(8305,361646,0.0,0.0,0.0,830),(8306,361682,0.0,0.0,0.0,830),(8307,361657,0.0,0.0,0.0,830),(8308,361691,0.0,0.0,0.0,830),(8309,361656,0.0,0.0,0.0,830),(8310,361666,0.0,0.0,0.0,830),(8311,361678,0.0,0.0,0.0,830),(8312,361664,0.0,0.0,0.0,830),(8313,361655,0.0,0.0,0.0,830),(8314,361665,0.0,0.0,0.0,830),(8315,361654,0.0,0.0,0.0,830),(8316,361686,0.0,0.0,0.0,830),(8317,361675,0.0,0.0,0.0,830),(8318,361653,0.0,0.0,0.0,830),(8319,361674,0.0,0.0,0.0,830),(8320,361673,0.0,0.0,0.0,830),(8321,361652,0.0,0.0,0.0,830),(8322,361672,0.0,0.0,0.0,830),(8323,361651,0.0,0.0,0.0,830),(8324,361650,0.0,0.0,0.0,830),(8325,361687,0.0,0.0,0.0,830),(8326,361671,0.0,0.0,0.0,830),(8327,361644,0.0,0.0,0.0,830),(8328,361670,0.0,0.0,0.0,830),(8329,361645,0.0,0.0,0.0,830),(8330,361692,0.0,0.0,0.0,830),(8331,361643,0.0,0.0,0.0,830),(8332,361663,0.0,0.0,0.0,830),(8333,361640,0.0,0.0,0.0,830),(8334,361693,0.0,0.0,0.0,830),(8335,361639,0.0,0.0,0.0,830),(8336,361661,0.0,0.0,0.0,830),(8337,361638,0.0,0.0,0.0,830),(8338,361803,0.0,0.0,0.0,830),(8339,361679,0.0,0.0,0.0,830),(8340,362100,0.0,0.0,0.0,764),(8341,361546,0.0,0.0,0.0,826),(8342,351127,0.0,0.0,0.0,762),(8343,362883,0.0,0.0,0.0,534),(8344,362637,0.0,0.0,0.0,830),(8345,362444,0.0,0.0,0.0,788),(8346,362179,0.0,0.0,0.0,772),(8347,361380,0.0,0.0,0.0,830),(8348,361615,0.0,0.0,0.0,830),(8349,361379,0.0,0.0,0.0,830),(8350,361378,0.0,0.0,0.0,830),(8351,361614,0.0,0.0,0.0,830),(8352,361613,0.0,0.0,0.0,830),(8353,361612,0.0,0.0,0.0,830),(8354,361611,0.0,0.0,0.0,830),(8355,361377,0.0,0.0,0.0,830),(8356,361376,0.0,0.0,0.0,830),(8357,361374,0.0,0.0,0.0,830),(8358,361628,0.0,0.0,0.0,830),(8359,361629,0.0,0.0,0.0,830),(8360,361630,0.0,0.0,0.0,830),(8361,361631,0.0,0.0,0.0,830),(8362,361384,0.0,0.0,0.0,830),(8363,361381,0.0,0.0,0.0,830),(8364,361618,0.0,0.0,0.0,830),(8365,361616,0.0,0.0,0.0,830),(8366,361625,0.0,0.0,0.0,830),(8367,361383,0.0,0.0,0.0,830),(8368,361605,0.0,0.0,0.0,830),(8369,361370,0.0,0.0,0.0,830),(8370,361632,0.0,0.0,0.0,830),(8371,361604,0.0,0.0,0.0,830),(8372,361369,0.0,0.0,0.0,830),(8373,361603,0.0,0.0,0.0,830),(8374,361610,0.0,0.0,0.0,830),(8375,361609,0.0,0.0,0.0,830),(8376,361373,0.0,0.0,0.0,830),(8377,361371,0.0,0.0,0.0,830),(8378,361606,0.0,0.0,0.0,830),(8379,361601,0.0,0.0,0.0,830),(8380,361634,0.0,0.0,0.0,830),(8381,361633,0.0,0.0,0.0,830),(8382,361368,0.0,0.0,0.0,830),(8383,361602,0.0,0.0,0.0,830),(8384,361367,0.0,0.0,0.0,830),(8385,361607,0.0,0.0,0.0,830),(8386,361372,0.0,0.0,0.0,830),(8387,361636,0.0,0.0,0.0,830),(8388,361363,0.0,0.0,0.0,830),(8389,361362,0.0,0.0,0.0,830),(8390,360562,0.0,0.0,0.0,830),(8391,361364,0.0,0.0,0.0,830),(8392,360835,0.0,0.0,0.0,830),(8393,361365,0.0,0.0,0.0,830),(8394,361635,0.0,0.0,0.0,830),(8395,361599,0.0,0.0,0.0,830),(8396,361626,0.0,0.0,0.0,830),(8397,361718,0.0,0.0,0.0,830),(8398,361745,0.0,0.0,0.0,830),(8399,361719,0.0,0.0,0.0,830),(8400,361742,0.0,0.0,0.0,830),(8401,361717,0.0,0.0,0.0,830),(8402,361720,0.0,0.0,0.0,830),(8403,361744,0.0,0.0,0.0,830),(8404,361743,0.0,0.0,0.0,830),(8405,361624,0.0,0.0,0.0,830),(8406,361627,0.0,0.0,0.0,830),(8407,361623,0.0,0.0,0.0,830),(8408,361622,0.0,0.0,0.0,830),(8409,361621,0.0,0.0,0.0,830),(8410,361620,0.0,0.0,0.0,830),(8411,361385,0.0,0.0,0.0,830),(8412,361619,0.0,0.0,0.0,830),(8413,361491,0.0,0.0,0.0,830),(8414,361318,0.0,0.0,0.0,830),(8415,361746,0.0,0.0,0.0,830),(8416,362152,0.0,0.0,0.0,830),(8417,361739,0.0,0.0,0.0,830),(8418,361493,0.0,0.0,0.0,830),(8419,361713,0.0,0.0,0.0,830),(8420,361494,0.0,0.0,0.0,830),(8421,361712,0.0,0.0,0.0,830),(8422,361738,0.0,0.0,0.0,830),(8423,361495,0.0,0.0,0.0,830),(8424,361737,0.0,0.0,0.0,830),(8425,361496,0.0,0.0,0.0,830),(8426,361711,0.0,0.0,0.0,830),(8427,361473,0.0,0.0,0.0,830),(8428,361474,0.0,0.0,0.0,830),(8429,361736,0.0,0.0,0.0,830),(8430,361475,0.0,0.0,0.0,830),(8431,361366,0.0,0.0,0.0,830),(8432,361476,0.0,0.0,0.0,830),(8433,361704,0.0,0.0,0.0,830),(8434,361477,0.0,0.0,0.0,830),(8435,361749,0.0,0.0,0.0,830),(8436,361729,0.0,0.0,0.0,830),(8437,361479,0.0,0.0,0.0,830),(8438,361702,0.0,0.0,0.0,830),(8439,361480,0.0,0.0,0.0,830),(8440,361701,0.0,0.0,0.0,830),(8441,361728,0.0,0.0,0.0,830),(8442,361481,0.0,0.0,0.0,830),(8443,361483,0.0,0.0,0.0,830),(8444,361768,0.0,0.0,0.0,830),(8445,361942,0.0,0.0,0.0,830),(8446,361700,0.0,0.0,0.0,830),(8447,361726,0.0,0.0,0.0,830),(8448,361305,0.0,0.0,0.0,830),(8449,361943,0.0,0.0,0.0,830),(8450,361306,0.0,0.0,0.0,830),(8451,361697,0.0,0.0,0.0,830),(8452,361725,0.0,0.0,0.0,830),(8453,361307,0.0,0.0,0.0,830),(8454,361308,0.0,0.0,0.0,830),(8455,361724,0.0,0.0,0.0,830),(8456,361309,0.0,0.0,0.0,830),(8457,361723,0.0,0.0,0.0,830),(8458,361750,0.0,0.0,0.0,830),(8459,361722,0.0,0.0,0.0,830),(8460,361696,0.0,0.0,0.0,830),(8461,361721,0.0,0.0,0.0,830),(8462,361705,0.0,0.0,0.0,830),(8463,361488,0.0,0.0,0.0,830),(8464,361489,0.0,0.0,0.0,830),(8465,361490,0.0,0.0,0.0,830),(8466,361492,0.0,0.0,0.0,830),(8467,361310,0.0,0.0,0.0,830),(8468,361311,0.0,0.0,0.0,830),(8469,361485,0.0,0.0,0.0,830),(8470,361486,0.0,0.0,0.0,830),(8471,361487,0.0,0.0,0.0,830),(8472,361348,0.0,0.0,0.0,830),(8473,361349,0.0,0.0,0.0,830),(8474,361350,0.0,0.0,0.0,830),(8475,361351,0.0,0.0,0.0,830),(8476,361352,0.0,0.0,0.0,830),(8477,361354,0.0,0.0,0.0,830),(8478,361312,0.0,0.0,0.0,830),(8479,361313,0.0,0.0,0.0,830),(8480,361314,0.0,0.0,0.0,830),(8481,361316,0.0,0.0,0.0,830),(8482,361317,0.0,0.0,0.0,830),(8483,361319,0.0,0.0,0.0,830),(8484,361321,0.0,0.0,0.0,830),(8485,361322,0.0,0.0,0.0,830),(8486,361325,0.0,0.0,0.0,830),(8487,361326,0.0,0.0,0.0,830),(8488,361328,0.0,0.0,0.0,830),(8489,361329,0.0,0.0,0.0,830),(8490,361330,0.0,0.0,0.0,830),(8491,361331,0.0,0.0,0.0,830),(8492,361332,0.0,0.0,0.0,830),(8493,361333,0.0,0.0,0.0,830),(8494,361101,0.0,0.0,0.0,830),(8495,361120,0.0,0.0,0.0,830),(8496,361298,0.0,0.0,0.0,830),(8497,361299,0.0,0.0,0.0,830),(8498,361300,0.0,0.0,0.0,830),(8499,361302,0.0,0.0,0.0,830),(8500,361303,0.0,0.0,0.0,830),(8501,362002,0.0,0.0,0.0,562),(8502,363299,39.0,29.0,17.0,1646),(8503,363304,33.0,26.0,17.0,1010),(8504,363366,46.0,29.0,22.0,2104),(8505,363375,30.0,24.0,14.0,594),(8506,362590,0.0,0.0,0.0,574),(8507,363376,56.0,29.0,17.0,1641),(8508,362298,0.0,0.0,0.0,522),(8509,363270,30.0,24.0,14.0,830),(8510,362445,0.0,0.0,0.0,816),(8511,363334,30.0,24.0,14.0,572),(8512,362171,0.0,0.0,0.0,706),(8513,361562,0.0,0.0,0.0,802),(8514,363125,0.0,0.0,0.0,826),(8515,362014,0.0,0.0,0.0,815),(8516,363164,0.0,0.0,0.0,582),(8517,350299,0.0,0.0,0.0,578),(8518,362867,0.0,0.0,0.0,810),(8519,362391,0.0,0.0,0.0,572),(8520,362939,0.0,0.0,0.0,850),(8521,363128,0.0,0.0,0.0,820),(8522,362907,0.0,0.0,0.0,1156),(8523,362401,0.0,0.0,0.0,580),(8524,363265,0.0,0.0,0.0,930),(8525,362503,0.0,0.0,0.0,576),(8526,363252,0.0,0.0,0.0,576),(8527,362492,0.0,0.0,0.0,576),(8528,6566,0.0,0.0,0.0,590),(8529,363492,30.0,24.0,14.0,840),(8530,363474,30.0,24.0,14.0,696),(8531,363487,30.0,24.0,14.0,544),(8532,363481,30.0,24.0,14.0,496),(8533,363281,0.0,0.0,0.0,720),(8534,363250,0.0,0.0,0.0,1210),(8535,361254,0.0,0.0,0.0,490),(8536,363459,0.0,0.0,0.0,765),(8537,363441,0.0,0.0,0.0,940),(8538,362426,0.0,0.0,0.0,1010),(8539,355206,0.0,0.0,0.0,780),(8540,358777,0.0,0.0,0.0,820),(8541,363442,0.0,0.0,0.0,940),(8542,363374,0.0,0.0,0.0,740),(8543,363471,0.0,0.0,0.0,740),(8544,363315,0.0,0.0,0.0,740),(8545,363413,0.0,0.0,0.0,540),(8546,363414,0.0,0.0,0.0,540),(8547,363268,0.0,0.0,0.0,555),(8548,362512,0.0,0.0,0.0,540),(8549,363427,0.0,0.0,0.0,570),(8550,363426,0.0,0.0,0.0,575),(8551,363279,0.0,0.0,0.0,535),(8552,362041,0.0,0.0,0.0,570),(8553,362040,0.0,0.0,0.0,565),(8554,363156,0.0,0.0,0.0,565),(8555,360653,0.0,0.0,0.0,620),(8556,360747,0.0,0.0,0.0,535),(8557,360748,0.0,0.0,0.0,535),(8558,360746,0.0,0.0,0.0,535),(8559,360745,0.0,0.0,0.0,535),(8560,360744,0.0,0.0,0.0,535),(8561,360741,0.0,0.0,0.0,535),(8562,360742,0.0,0.0,0.0,535),(8563,360739,0.0,0.0,0.0,535),(8564,360738,0.0,0.0,0.0,535),(8565,360737,0.0,0.0,0.0,535),(8566,360767,0.0,0.0,0.0,535),(8567,360765,0.0,0.0,0.0,535),(8568,360763,0.0,0.0,0.0,535),(8569,360762,0.0,0.0,0.0,535),(8570,360761,0.0,0.0,0.0,535),(8571,360760,0.0,0.0,0.0,535),(8572,360757,0.0,0.0,0.0,535),(8573,360759,0.0,0.0,0.0,535),(8574,360755,0.0,0.0,0.0,535),(8575,360756,0.0,0.0,0.0,535),(8576,360752,0.0,0.0,0.0,535),(8577,360751,0.0,0.0,0.0,535),(8578,360750,0.0,0.0,0.0,535),(8579,360749,0.0,0.0,0.0,535),(8580,360681,0.0,0.0,0.0,535),(8581,360680,0.0,0.0,0.0,535),(8582,360678,0.0,0.0,0.0,535),(8583,360679,0.0,0.0,0.0,535),(8584,360675,0.0,0.0,0.0,535),(8585,360677,0.0,0.0,0.0,535),(8586,360676,0.0,0.0,0.0,535),(8587,360735,0.0,0.0,0.0,535),(8588,362634,0.0,0.0,0.0,535),(8589,360734,0.0,0.0,0.0,535),(8590,360674,0.0,0.0,0.0,535),(8591,360687,0.0,0.0,0.0,535),(8592,360688,0.0,0.0,0.0,535),(8593,360689,0.0,0.0,0.0,535),(8594,360690,0.0,0.0,0.0,535),(8595,360691,0.0,0.0,0.0,535),(8596,360717,0.0,0.0,0.0,535),(8597,360719,0.0,0.0,0.0,535),(8598,360720,0.0,0.0,0.0,535),(8599,360718,0.0,0.0,0.0,535),(8600,360682,0.0,0.0,0.0,535),(8601,360685,0.0,0.0,0.0,535),(8602,360714,0.0,0.0,0.0,535),(8603,360715,0.0,0.0,0.0,535),(8604,360716,0.0,0.0,0.0,535),(8605,360711,0.0,0.0,0.0,535),(8606,360710,0.0,0.0,0.0,535),(8607,360712,0.0,0.0,0.0,535),(8608,360713,0.0,0.0,0.0,535),(8609,360704,0.0,0.0,0.0,535),(8610,360706,0.0,0.0,0.0,535),(8611,360707,0.0,0.0,0.0,535),(8612,360708,0.0,0.0,0.0,535),(8613,360709,0.0,0.0,0.0,535),(8614,360699,0.0,0.0,0.0,535),(8615,360700,0.0,0.0,0.0,535),(8616,360701,0.0,0.0,0.0,535),(8617,360702,0.0,0.0,0.0,535),(8618,360703,0.0,0.0,0.0,535),(8619,360728,0.0,0.0,0.0,535),(8620,360729,0.0,0.0,0.0,535),(8621,360730,0.0,0.0,0.0,535),(8622,360732,0.0,0.0,0.0,535),(8623,360731,0.0,0.0,0.0,535),(8624,360733,0.0,0.0,0.0,535),(8625,360721,0.0,0.0,0.0,535),(8626,360722,0.0,0.0,0.0,535),(8627,360723,0.0,0.0,0.0,535),(8628,360724,0.0,0.0,0.0,535),(8629,360726,0.0,0.0,0.0,535),(8630,360727,0.0,0.0,0.0,535),(8631,360692,0.0,0.0,0.0,535),(8632,360693,0.0,0.0,0.0,535),(8633,360697,0.0,0.0,0.0,535),(8634,360698,0.0,0.0,0.0,535),(8635,363297,0.0,0.0,0.0,790),(8636,363483,0.0,0.0,0.0,815),(8637,363473,0.0,0.0,0.0,790),(8638,363451,0.0,0.0,0.0,585),(8639,363398,0.0,0.0,0.0,585),(8640,361033,0.0,0.0,0.0,820),(8641,363394,0.0,0.0,0.0,580),(8642,358133,0.0,0.0,0.0,580),(8643,361387,0.0,0.0,0.0,830),(8644,361357,0.0,0.0,0.0,830),(8645,361356,0.0,0.0,0.0,830),(8646,361428,0.0,0.0,0.0,830),(8647,361429,0.0,0.0,0.0,830),(8648,361397,0.0,0.0,0.0,830),(8649,361395,0.0,0.0,0.0,830),(8650,361393,0.0,0.0,0.0,830),(8651,361392,0.0,0.0,0.0,830),(8652,361391,0.0,0.0,0.0,830),(8653,361389,0.0,0.0,0.0,830),(8654,361403,0.0,0.0,0.0,830),(8655,361358,0.0,0.0,0.0,830),(8656,361359,0.0,0.0,0.0,830),(8657,361386,0.0,0.0,0.0,830),(8658,361334,0.0,0.0,0.0,830),(8659,361336,0.0,0.0,0.0,830),(8660,361338,0.0,0.0,0.0,830),(8661,361339,0.0,0.0,0.0,830),(8662,361340,0.0,0.0,0.0,830),(8663,361341,0.0,0.0,0.0,830),(8664,361343,0.0,0.0,0.0,830),(8665,361344,0.0,0.0,0.0,830),(8666,361346,0.0,0.0,0.0,830),(8667,361347,0.0,0.0,0.0,830),(8668,361418,0.0,0.0,0.0,830),(8669,361419,0.0,0.0,0.0,830),(8670,361420,0.0,0.0,0.0,830),(8671,361421,0.0,0.0,0.0,830),(8672,361422,0.0,0.0,0.0,830),(8673,361423,0.0,0.0,0.0,830),(8674,361401,0.0,0.0,0.0,830),(8675,361400,0.0,0.0,0.0,830),(8676,361399,0.0,0.0,0.0,830),(8677,361450,0.0,0.0,0.0,830),(8678,361430,0.0,0.0,0.0,830),(8679,361398,0.0,0.0,0.0,830),(8680,361449,0.0,0.0,0.0,830),(8681,361447,0.0,0.0,0.0,830),(8682,361417,0.0,0.0,0.0,830),(8683,361416,0.0,0.0,0.0,830),(8684,361415,0.0,0.0,0.0,830),(8685,361413,0.0,0.0,0.0,830),(8686,361412,0.0,0.0,0.0,830),(8687,361411,0.0,0.0,0.0,830),(8688,361410,0.0,0.0,0.0,830),(8689,361409,0.0,0.0,0.0,830),(8690,361427,0.0,0.0,0.0,830),(8691,361426,0.0,0.0,0.0,830),(8692,361425,0.0,0.0,0.0,830),(8693,361424,0.0,0.0,0.0,830),(8694,361525,0.0,0.0,0.0,830),(8695,361523,0.0,0.0,0.0,830),(8696,361515,0.0,0.0,0.0,830),(8697,361516,0.0,0.0,0.0,830),(8698,361431,0.0,0.0,0.0,830),(8699,361538,0.0,0.0,0.0,830),(8700,361304,0.0,0.0,0.0,830),(8701,361497,0.0,0.0,0.0,830),(8702,361498,0.0,0.0,0.0,830),(8703,361499,0.0,0.0,0.0,830),(8704,361501,0.0,0.0,0.0,830),(8705,361502,0.0,0.0,0.0,830),(8706,361503,0.0,0.0,0.0,830),(8707,361446,0.0,0.0,0.0,830),(8708,361445,0.0,0.0,0.0,830),(8709,361444,0.0,0.0,0.0,830),(8710,361443,0.0,0.0,0.0,830),(8711,361441,0.0,0.0,0.0,830),(8712,361440,0.0,0.0,0.0,830),(8713,361439,0.0,0.0,0.0,830),(8714,361438,0.0,0.0,0.0,830),(8715,361437,0.0,0.0,0.0,830),(8716,361436,0.0,0.0,0.0,830),(8717,361435,0.0,0.0,0.0,830),(8718,361433,0.0,0.0,0.0,830),(8719,361432,0.0,0.0,0.0,830),(8720,361408,0.0,0.0,0.0,830),(8721,361407,0.0,0.0,0.0,830),(8722,361406,0.0,0.0,0.0,830),(8723,361404,0.0,0.0,0.0,830),(8724,361402,0.0,0.0,0.0,830),(8725,361452,0.0,0.0,0.0,830),(8726,361453,0.0,0.0,0.0,830),(8727,361454,0.0,0.0,0.0,830),(8728,361455,0.0,0.0,0.0,830),(8729,361456,0.0,0.0,0.0,830),(8730,361458,0.0,0.0,0.0,830),(8731,361459,0.0,0.0,0.0,830),(8732,361504,0.0,0.0,0.0,830),(8733,361505,0.0,0.0,0.0,830),(8734,361507,0.0,0.0,0.0,830),(8735,361508,0.0,0.0,0.0,830),(8736,361509,0.0,0.0,0.0,830),(8737,361510,0.0,0.0,0.0,830),(8738,361511,0.0,0.0,0.0,630),(8739,361512,0.0,0.0,0.0,830),(8740,361513,0.0,0.0,0.0,830),(8741,361514,0.0,0.0,0.0,830),(8742,361530,0.0,0.0,0.0,830),(8743,361529,0.0,0.0,0.0,830),(8744,361528,0.0,0.0,0.0,830),(8745,361460,0.0,0.0,0.0,830),(8746,361461,0.0,0.0,0.0,830),(8747,361462,0.0,0.0,0.0,830),(8748,361464,0.0,0.0,0.0,830),(8749,361465,0.0,0.0,0.0,830),(8750,361466,0.0,0.0,0.0,830),(8751,361467,0.0,0.0,0.0,830),(8752,361468,0.0,0.0,0.0,830),(8753,361469,0.0,0.0,0.0,830),(8754,361470,0.0,0.0,0.0,830),(8755,361471,0.0,0.0,0.0,830),(8756,361472,0.0,0.0,0.0,830),(8757,361517,0.0,0.0,0.0,830),(8758,361518,0.0,0.0,0.0,830),(8759,361519,0.0,0.0,0.0,830),(8760,361520,0.0,0.0,0.0,830),(8761,361522,0.0,0.0,0.0,830),(8762,361451,0.0,0.0,0.0,830),(8763,361301,0.0,0.0,0.0,830),(8764,363671,0.0,0.0,0.0,600),(8765,363569,0.0,0.0,0.0,602),(8766,363594,0.0,0.0,0.0,776),(8767,363657,0.0,0.0,0.0,770),(8768,359480,0.0,0.0,0.0,516),(8769,363590,0.0,0.0,0.0,730),(8770,363652,0.0,0.0,0.0,540),(8771,363615,0.0,0.0,0.0,564),(8772,363592,0.0,0.0,0.0,576),(8773,363591,0.0,0.0,0.0,576),(8774,363577,0.0,0.0,0.0,542),(8775,363654,0.0,0.0,0.0,544),(8776,363926,0.0,0.0,0.0,775),(8777,363988,0.0,0.0,0.0,778),(8778,363781,0.0,0.0,0.0,777),(8779,363529,0.0,0.0,0.0,892),(8780,363794,0.0,0.0,0.0,890),(8781,363505,0.0,0.0,0.0,288),(8782,363593,0.0,0.0,0.0,380),(8783,363509,0.0,0.0,0.0,910),(8784,363496,0.0,0.0,0.0,1042),(8785,363619,0.0,0.0,0.0,574),(8786,363677,0.0,0.0,0.0,570),(8787,363802,0.0,0.0,0.0,820),(8788,363609,0.0,0.0,0.0,538),(8789,363567,0.0,0.0,0.0,816),(8790,363614,0.0,0.0,0.0,518),(8791,360428,0.0,0.0,0.0,570),(8792,363573,0.0,0.0,0.0,748),(8793,363288,0.0,0.0,0.0,750),(8794,354907,0.0,0.0,0.0,738),(8795,363565,0.0,0.0,0.0,704),(8796,363655,39.0,29.0,17.0,1114),(8797,363610,30.0,24.0,14.0,746),(8798,357764,30.0,24.0,14.0,762),(8799,363798,39.0,29.0,17.0,1378),(8800,363672,0.0,0.0,0.0,552),(8801,363627,0.0,0.0,0.0,816),(8802,362304,0.0,0.0,0.0,686),(8803,363599,0.0,0.0,0.0,816),(8804,363561,0.0,0.0,0.0,814),(8805,363773,0.0,0.0,0.0,498),(8806,363943,0.0,0.0,0.0,688),(8807,363971,0.0,0.0,0.0,372),(8808,363969,0.0,0.0,0.0,366),(8809,363956,0.0,0.0,0.0,568),(8810,363966,0.0,0.0,0.0,360),(8811,363955,0.0,0.0,0.0,558),(8812,363981,0.0,0.0,0.0,816),(8813,362868,0.0,0.0,0.0,816),(8814,363634,30.0,24.0,14.0,712),(8815,363786,30.0,24.0,14.0,570),(8816,362599,30.0,24.0,14.0,558),(8817,363807,30.0,24.0,14.0,566),(8818,363603,30.0,24.0,14.0,728),(8819,363628,30.0,24.0,6.0,356),(8820,363568,30.0,24.0,14.0,1142),(8821,353822,30.0,24.0,14.0,852),(8822,363564,30.0,24.0,14.0,876),(8823,362659,33.0,25.0,11.0,2800),(8824,360694,30.0,24.0,6.0,536),(8825,360754,30.0,24.0,6.0,540),(8826,360753,30.0,24.0,6.0,530),(8827,360766,30.0,24.0,6.0,530),(8828,363604,30.0,24.0,14.0,514),(8829,363519,30.0,24.0,6.0,364),(8830,363598,30.0,24.0,14.0,788),(8831,363608,30.0,24.0,14.0,594),(8832,358375,39.0,29.0,17.0,1342),(8833,363563,30.0,24.0,14.0,938),(8834,364043,39.0,29.0,17.0,1332),(8835,364006,39.0,29.0,17.0,1516),(8836,363980,0.0,0.0,0.0,794),(8837,363989,30.0,24.0,14.0,550),(8838,363624,30.0,24.0,14.0,750),(8839,363797,30.0,24.0,6.0,282),(8840,363616,30.0,24.0,14.0,988),(8841,363626,30.0,24.0,14.0,992),(8842,363776,39.0,29.0,17.0,1132),(8843,363977,0.0,24.0,14.0,728),(8844,363774,30.0,24.0,14.0,992),(8845,363799,39.0,29.0,17.0,1528),(8846,363256,30.0,24.0,14.0,732),(8847,363581,30.0,24.0,14.0,1002),(8848,363622,30.0,24.0,14.0,704),(8849,363562,30.0,24.0,14.0,732),(8850,361500,0.0,0.0,0.0,830),(8851,364055,42.0,36.0,34.0,4052),(8852,360046,30.0,24.0,14.0,1080),(8853,363600,30.0,24.0,14.0,1076),(8854,364132,30.0,24.0,6.0,274),(8855,364119,30.0,24.0,14.0,810),(8856,364157,0.0,0.0,0.0,1235),(8857,364143,0.0,0.0,0.0,934),(8858,364159,0.0,0.0,0.0,560),(8859,364158,0.0,0.0,0.0,544),(8860,362770,0.0,0.0,0.0,564),(8861,364108,33.0,25.0,11.0,1490),(8862,364145,33.0,25.0,11.0,2252),(8863,356023,0.0,0.0,0.0,760),(8864,364008,0.0,0.0,0.0,810),(8865,364155,0.0,0.0,0.0,810),(8866,364082,0.0,0.0,0.0,780),(8867,364081,0.0,0.0,0.0,810),(8868,364072,0.0,0.0,0.0,810),(8869,364062,0.0,0.0,0.0,605),(8870,356985,0.0,0.0,0.0,605),(8871,364125,0.0,0.0,0.0,620),(8872,363987,0.0,0.0,0.0,3105),(8873,363597,0.0,0.0,0.0,1690),(8874,363805,0.0,0.0,0.0,1115),(8875,363653,0.0,0.0,0.0,595),(8876,364016,0.0,0.0,0.0,790),(8877,363501,0.0,0.0,0.0,790),(8878,363790,0.0,0.0,0.0,795),(8879,364020,0.0,0.0,0.0,760),(8880,364035,0.0,0.0,0.0,625),(8881,362337,0.0,0.0,0.0,1010),(8882,364207,33.0,25.0,11.0,920),(8883,363785,46.0,29.0,22.0,3220),(8884,364188,30.0,24.0,14.0,745),(8885,364122,30.0,24.0,14.0,592),(8886,364197,30.0,24.0,14.0,565),(8887,364210,36.0,16.0,17.0,980),(8888,364183,0.0,0.0,0.0,972),(8889,364283,30.0,24.0,14.0,922),(8890,361119,30.0,24.0,14.0,726),(8891,364341,30.0,24.0,14.0,550),(8892,364331,30.0,24.0,14.0,512),(8893,4732,30.0,24.0,14.0,722),(8894,364342,30.0,24.0,14.0,512),(8895,364259,39.0,29.0,17.0,1412),(8896,363445,30.0,24.0,14.0,978),(8897,363434,30.0,24.0,14.0,962),(8898,363534,30.0,24.0,14.0,574),(8899,363439,30.0,24.0,14.0,950),(8900,363419,30.0,24.0,14.0,960),(8901,364079,39.0,29.0,17.0,1374),(8902,364268,46.0,29.0,22.0,1806),(8903,364288,0.0,0.0,0.0,820),(8904,364280,0.0,0.0,0.0,818),(8905,364208,0.0,0.0,0.0,576),(8906,364303,30.0,24.0,14.0,526),(8907,363986,46.0,29.0,22.0,1822),(8908,363157,30.0,24.0,14.0,954),(8909,364203,0.0,0.0,0.0,832),(8910,364176,0.0,0.0,0.0,880),(8911,364184,0.0,0.0,0.0,568),(8912,362496,46.0,30.0,16.0,1280),(8913,363792,0.0,0.0,0.0,1000),(8914,363146,0.0,0.0,0.0,1000),(8915,363147,0.0,0.0,0.0,1000),(8916,363158,0.0,0.0,0.0,1000),(8917,363159,0.0,0.0,0.0,1000),(8918,363160,0.0,0.0,0.0,1000),(8919,363162,0.0,0.0,0.0,1000),(8920,363163,0.0,0.0,0.0,1000),(8921,363149,0.0,0.0,0.0,1000),(8922,363150,0.0,0.0,0.0,1000),(8923,363154,0.0,0.0,0.0,1000),(8924,363148,0.0,0.0,0.0,1000),(8925,363430,0.0,0.0,0.0,1000),(8926,363429,0.0,0.0,0.0,1000),(8927,363428,0.0,0.0,0.0,1000),(8928,363431,0.0,0.0,0.0,1000),(8929,364345,0.0,0.0,0.0,708),(8930,363417,0.0,0.0,0.0,924),(8931,364348,0.0,0.0,0.0,550),(8932,364347,0.0,0.0,0.0,556),(8933,364346,0.0,0.0,0.0,564),(8934,363432,0.0,0.0,0.0,1000),(8935,363433,0.0,0.0,0.0,1000),(8936,363435,0.0,0.0,0.0,1000),(8937,363436,0.0,0.0,0.0,1000),(8938,363437,0.0,0.0,0.0,1000),(8939,363438,0.0,0.0,0.0,1000),(8940,363440,0.0,0.0,0.0,1000),(8941,363443,0.0,0.0,0.0,1000),(8942,363444,0.0,0.0,0.0,1000),(8943,363446,0.0,0.0,0.0,1000),(8944,363447,0.0,0.0,0.0,1000),(8945,363448,0.0,0.0,0.0,1000),(8946,363449,0.0,0.0,0.0,1000),(8947,363450,0.0,0.0,0.0,1000),(8948,363155,0.0,0.0,0.0,990),(8949,363415,0.0,0.0,0.0,1000),(8950,363412,0.0,0.0,0.0,1000),(8951,363416,0.0,0.0,0.0,990),(8952,363418,0.0,0.0,0.0,990),(8953,363420,0.0,0.0,0.0,990),(8954,363421,0.0,0.0,0.0,990),(8955,363422,0.0,0.0,0.0,990),(8956,364343,0.0,0.0,0.0,990),(8957,363423,0.0,0.0,0.0,990),(8958,363424,0.0,0.0,0.0,1000),(8959,363425,0.0,0.0,0.0,990),(8960,364249,0.0,0.0,0.0,610),(8961,363517,0.0,0.0,0.0,615),(8962,363557,0.0,0.0,0.0,615),(8963,363791,0.0,0.0,0.0,615),(8964,364373,46.0,29.0,17.0,2810),(8965,364400,33.0,25.0,11.0,736),(8966,364389,0.0,0.0,0.0,798),(8967,364376,0.0,0.0,0.0,588),(8968,364403,0.0,0.0,0.0,2014),(8969,364278,0.0,0.0,0.0,2850),(8970,364424,0.0,0.0,0.0,815),(8971,364498,0.0,0.0,0.0,990),(8972,364490,30.0,24.0,6.0,570),(8973,362578,30.0,24.0,14.0,1005),(8974,364483,30.0,24.0,14.0,630),(8975,363485,30.0,24.0,14.0,595),(8976,364414,30.0,24.0,6.0,600),(8977,364417,0.0,0.0,0.0,510),(8978,364563,30.0,24.0,14.0,610),(8979,364505,39.0,29.0,17.0,1746),(8980,364537,56.0,29.0,17.0,1442),(8981,363595,46.0,29.0,22.0,2435),(8982,364539,0.0,0.0,0.0,980),(8983,364545,30.0,24.0,6.0,290),(8984,364504,30.0,24.0,14.0,1092),(8985,364543,30.0,24.0,14.0,754),(8986,360541,30.0,24.0,14.0,808),(8987,364523,0.0,0.0,0.0,2510),(8988,362783,30.0,24.0,14.0,822),(8989,364646,30.0,24.0,14.0,782),(8990,364648,30.0,24.0,14.0,560),(8991,364571,30.0,24.0,14.0,590),(8992,364647,30.0,24.0,14.0,560),(8993,364839,30.0,24.0,6.0,358),(8994,364845,30.0,24.0,14.0,584),(8995,364635,46.0,29.0,22.0,2142),(8996,364652,30.0,24.0,14.0,508),(8997,364632,30.0,24.0,14.0,708),(8998,364577,30.0,24.0,14.0,566),(8999,364589,30.0,24.0,14.0,562),(9000,364585,0.0,0.0,0.0,2288),(9001,361584,0.0,0.0,0.0,830),(9002,364659,0.0,0.0,0.0,860),(9003,361482,0.0,0.0,0.0,830),(9004,364815,0.0,0.0,0.0,800),(9005,364575,0.0,0.0,0.0,620),(9006,364613,0.0,0.0,0.0,796),(9007,364582,0.0,0.0,0.0,540),(9008,364656,0.0,0.0,0.0,792),(9009,364040,30.0,24.0,6.0,622),(9010,364651,30.0,24.0,14.0,538),(9011,364715,0.0,0.0,0.0,578),(9012,364344,0.0,0.0,0.0,548),(9013,364269,0.0,0.0,0.0,820),(9014,364528,0.0,0.0,0.0,2190),(9015,364836,30.0,24.0,14.0,563),(9016,362323,0.0,0.0,0.0,570),(9017,362324,0.0,0.0,0.0,570),(9018,362327,0.0,0.0,0.0,570),(9019,362329,0.0,0.0,0.0,570),(9020,362322,0.0,0.0,0.0,570),(9021,362368,0.0,0.0,0.0,570),(9022,362369,0.0,0.0,0.0,570),(9023,362357,0.0,0.0,0.0,570),(9024,362375,0.0,0.0,0.0,570),(9025,362376,0.0,0.0,0.0,570),(9026,362377,0.0,0.0,0.0,570),(9027,362378,0.0,0.0,0.0,570),(9028,362305,0.0,0.0,0.0,570),(9029,362339,0.0,0.0,0.0,570),(9030,362346,0.0,0.0,0.0,570),(9031,362345,0.0,0.0,0.0,570),(9032,362348,0.0,0.0,0.0,570),(9033,362356,0.0,0.0,0.0,570),(9034,362359,0.0,0.0,0.0,570),(9035,362358,0.0,0.0,0.0,565),(9036,362360,0.0,0.0,0.0,580),(9037,362362,0.0,0.0,0.0,570),(9038,362361,0.0,0.0,0.0,570),(9039,362364,0.0,0.0,0.0,570),(9040,362363,0.0,0.0,0.0,570),(9041,362365,0.0,0.0,0.0,570),(9042,362366,0.0,0.0,0.0,570),(9043,362367,0.0,0.0,0.0,570),(9044,362372,0.0,0.0,0.0,925),(9045,363978,0.0,0.0,0.0,830),(9046,363639,0.0,0.0,0.0,745),(9047,362370,0.0,0.0,0.0,570),(9048,362373,0.0,0.0,0.0,570),(9049,362344,0.0,0.0,0.0,570),(9050,362325,0.0,0.0,0.0,570),(9051,362328,0.0,0.0,0.0,570),(9052,362371,0.0,0.0,0.0,570),(9053,364823,30.0,24.0,14.0,800),(9054,364829,0.0,0.0,0.0,1120),(9055,364834,0.0,0.0,0.0,820),(9056,362330,0.0,0.0,0.0,540),(9057,362331,0.0,0.0,0.0,540),(9058,362332,0.0,0.0,0.0,536),(9059,362333,0.0,0.0,0.0,530),(9060,362334,0.0,0.0,0.0,540),(9061,362335,0.0,0.0,0.0,530),(9062,362338,0.0,0.0,0.0,540),(9063,362341,0.0,0.0,0.0,536),(9064,362340,0.0,0.0,0.0,526),(9065,362307,0.0,0.0,0.0,530),(9066,362308,0.0,0.0,0.0,532),(9067,362309,0.0,0.0,0.0,550),(9068,362310,0.0,0.0,0.0,535),(9069,362317,0.0,0.0,0.0,532),(9070,362319,0.0,0.0,0.0,535),(9071,362318,0.0,0.0,0.0,535),(9072,362321,0.0,0.0,0.0,530),(9073,364855,30.0,24.0,14.0,474),(9074,364875,30.0,24.0,14.0,694),(9075,364877,30.0,24.0,14.0,584),(9076,364370,0.0,0.0,0.0,3185),(9077,358012,30.0,20.0,14.0,3000),(9078,364901,30.0,25.0,15.0,800),(9079,364903,26.0,13.0,12.0,500),(9080,364904,30.0,20.0,15.0,600),(9081,365084,30.0,24.0,6.0,282),(9082,349878,30.0,24.0,14.0,872),(9083,365117,30.0,24.0,6.0,626),(9084,365095,49.0,29.0,17.0,1824),(9085,364218,30.0,24.0,14.0,570),(9086,365132,30.0,24.0,14.0,570),(9087,364900,30.0,24.0,14.0,572),(9088,365113,30.0,24.0,14.0,770),(9089,365455,30.0,24.0,14.0,820),(9090,364965,30.0,24.0,14.0,786),(9091,365141,30.0,24.0,14.0,570),(9092,365451,30.0,24.0,14.0,570),(9093,365176,39.0,29.0,17.0,1090),(9094,365210,30.0,24.0,14.0,494),(9095,365026,43.0,37.0,34.0,3714),(9096,364941,30.0,24.0,14.0,712),(9097,364720,30.0,24.0,14.0,746),(9098,364666,30.0,24.0,14.0,764),(9099,364984,30.0,24.0,14.0,1054),(9100,364805,30.0,24.0,14.0,746),(9101,364770,30.0,24.0,14.0,760),(9102,365055,30.0,24.0,14.0,722),(9103,365006,30.0,24.0,14.0,1368),(9104,365449,30.0,24.0,14.0,490),(9105,365025,30.0,24.0,14.0,724),(9106,365439,30.0,24.0,14.0,496),(9107,364966,30.0,24.0,14.0,774),(9108,365223,30.0,24.0,14.0,504),(9109,365388,30.0,24.0,14.0,544),(9110,365099,30.0,24.0,14.0,822),(9111,365079,30.0,24.0,14.0,510),(9112,363122,30.0,24.0,14.0,570),(9113,364886,30.0,24.0,14.0,532),(9114,364996,39.0,29.0,17.0,1120),(9115,365464,30.0,24.0,14.0,526),(9116,365507,46.0,30.0,16.0,1700),(9117,365512,30.0,24.0,14.0,555),(9118,365125,0.0,0.0,0.0,378),(9119,365379,0.0,0.0,0.0,266),(9120,365420,0.0,0.0,0.0,360),(9121,365423,0.0,0.0,0.0,678),(9122,365424,0.0,0.0,0.0,372),(9123,364993,0.0,0.0,0.0,696),(9124,364669,0.0,0.0,0.0,790),(9125,364681,0.0,0.0,0.0,790),(9126,364676,0.0,0.0,0.0,790),(9127,364678,0.0,0.0,0.0,790),(9128,364677,0.0,0.0,0.0,790),(9129,364673,0.0,0.0,0.0,790),(9130,364671,0.0,0.0,0.0,790),(9131,364674,0.0,0.0,0.0,790),(9132,364672,0.0,0.0,0.0,790),(9133,364668,0.0,0.0,0.0,790),(9134,364658,0.0,0.0,0.0,790),(9135,364667,0.0,0.0,0.0,790),(9136,364660,0.0,0.0,0.0,790),(9137,364661,0.0,0.0,0.0,790),(9138,364663,0.0,0.0,0.0,790),(9139,364662,0.0,0.0,0.0,790),(9140,364828,0.0,0.0,0.0,790),(9141,364997,0.0,0.0,0.0,790),(9142,364958,0.0,0.0,0.0,790),(9143,364787,0.0,0.0,0.0,790),(9144,364786,0.0,0.0,0.0,790),(9145,364790,0.0,0.0,0.0,790),(9146,364789,0.0,0.0,0.0,790),(9147,364788,0.0,0.0,0.0,790),(9148,364793,0.0,0.0,0.0,790),(9149,364791,0.0,0.0,0.0,790),(9150,365485,0.0,0.0,0.0,790),(9151,364670,0.0,0.0,0.0,790),(9152,364792,0.0,0.0,0.0,790),(9153,364795,0.0,0.0,0.0,790),(9154,364794,0.0,0.0,0.0,790),(9155,364799,0.0,0.0,0.0,790),(9156,364798,0.0,0.0,0.0,790),(9157,364796,0.0,0.0,0.0,790),(9158,364802,0.0,0.0,0.0,790),(9159,364806,0.0,0.0,0.0,790),(9160,364804,0.0,0.0,0.0,790),(9161,364803,0.0,0.0,0.0,790),(9162,364782,0.0,0.0,0.0,790),(9163,364781,0.0,0.0,0.0,790),(9164,364783,0.0,0.0,0.0,790),(9165,364785,0.0,0.0,0.0,790),(9166,364784,0.0,0.0,0.0,790),(9167,364772,0.0,0.0,0.0,790),(9168,364776,0.0,0.0,0.0,790),(9169,364775,0.0,0.0,0.0,790),(9170,364778,0.0,0.0,0.0,790),(9171,364777,0.0,0.0,0.0,790),(9172,364780,0.0,0.0,0.0,790),(9173,364779,0.0,0.0,0.0,790),(9174,364994,0.0,0.0,0.0,708),(9175,365454,0.0,0.0,0.0,610),(9176,364936,0.0,0.0,0.0,578),(9177,364995,0.0,0.0,0.0,528),(9178,365059,0.0,0.0,0.0,868),(9179,365121,0.0,0.0,0.0,554),(9180,365122,0.0,0.0,0.0,544),(9181,365123,0.0,0.0,0.0,550),(9182,365405,0.0,0.0,0.0,552),(9183,365407,0.0,0.0,0.0,546),(9184,365408,0.0,0.0,0.0,550),(9185,365411,0.0,0.0,0.0,554),(9186,365060,0.0,0.0,0.0,786),(9187,365180,0.0,0.0,0.0,782),(9188,365164,0.0,0.0,0.0,784),(9189,365089,0.0,0.0,0.0,774),(9190,365016,0.0,0.0,0.0,788),(9191,364981,0.0,0.0,0.0,782),(9192,365378,0.0,0.0,0.0,815),(9193,365151,0.0,0.0,0.0,640),(9194,365432,0.0,0.0,0.0,615),(9195,365428,0.0,0.0,0.0,615),(9196,365419,0.0,0.0,0.0,620),(9197,365075,0.0,0.0,0.0,600),(9198,365157,0.0,0.0,0.0,600),(9199,364882,0.0,0.0,0.0,1564),(9200,365519,0.0,0.0,0.0,770),(9201,365509,0.0,0.0,0.0,796),(9202,364899,0.0,0.0,0.0,790),(9203,365465,0.0,0.0,0.0,760),(9204,365011,0.0,0.0,0.0,715),(9205,365481,30.0,24.0,14.0,832),(9206,365506,39.0,29.0,17.0,1164),(9207,364935,0.0,0.0,0.0,776),(9208,354368,0.0,0.0,0.0,584),(9209,365166,0.0,0.0,0.0,532),(9210,365083,0.0,0.0,0.0,626),(9211,365127,0.0,0.0,0.0,822),(9212,365503,30.0,24.0,14.0,1152),(9213,365513,39.0,29.0,17.0,1212),(9214,365637,30.0,24.0,14.0,768),(9215,365602,30.0,24.0,14.0,830),(9216,365541,39.0,29.0,17.0,1142),(9217,358361,30.0,24.0,14.0,830),(9218,365517,30.0,24.0,14.0,766),(9219,365653,30.0,24.0,14.0,520),(9220,365594,30.0,24.0,14.0,566),(9221,365677,30.0,24.0,14.0,520),(9222,365470,30.0,24.0,14.0,594),(9223,365552,30.0,24.0,14.0,494),(9224,365589,30.0,24.0,14.0,598),(9225,364727,0.0,0.0,0.0,780),(9226,364728,0.0,0.0,0.0,780),(9227,364729,0.0,0.0,0.0,774),(9228,364732,0.0,0.0,0.0,774),(9229,364738,0.0,0.0,0.0,770),(9230,364737,0.0,0.0,0.0,770),(9231,364736,0.0,0.0,0.0,770),(9232,364741,0.0,0.0,0.0,770),(9233,364740,0.0,0.0,0.0,770),(9234,364731,0.0,0.0,0.0,770),(9235,364730,0.0,0.0,0.0,770),(9236,364734,0.0,0.0,0.0,770),(9237,364733,0.0,0.0,0.0,770),(9238,364739,0.0,0.0,0.0,770),(9239,364735,0.0,0.0,0.0,770),(9240,364744,0.0,0.0,0.0,770),(9241,364743,0.0,0.0,0.0,770),(9242,365620,46.0,29.0,22.0,2634),(9243,365714,30.0,24.0,14.0,586),(9244,365697,30.0,24.0,14.0,572),(9245,365727,30.0,24.0,14.0,530),(9246,365968,30.0,24.0,6.0,940),(9247,365825,39.0,29.0,17.0,1416),(9248,350374,30.0,24.0,14.0,800),(9249,365779,30.0,24.0,14.0,836),(9250,365743,30.0,24.0,14.0,736),(9251,365793,30.0,24.0,14.0,586),(9252,365942,30.0,24.0,14.0,582),(9253,365807,30.0,24.0,14.0,790),(9254,365664,39.0,29.0,17.0,1144),(9255,359690,30.0,24.0,14.0,950),(9256,365701,30.0,24.0,14.0,582),(9257,366007,30.0,24.0,14.0,808),(9258,346862,30.0,24.0,14.0,838),(9259,365958,0.0,0.0,0.0,595),(9260,365959,0.0,0.0,0.0,420),(9261,365684,0.0,0.0,0.0,585),(9262,365685,0.0,0.0,0.0,575),(9263,365951,0.0,0.0,0.0,605),(9264,364664,0.0,0.0,0.0,790),(9265,365090,0.0,0.0,0.0,1540),(9266,364920,0.0,0.0,0.0,825),(9267,365769,0.0,0.0,0.0,625),(9268,365474,0.0,0.0,0.0,580),(9269,365796,0.0,0.0,0.0,1130),(9270,365578,0.0,0.0,0.0,320),(9271,365690,0.0,0.0,0.0,588),(9272,365713,0.0,0.0,0.0,845),(9273,365961,0.0,0.0,0.0,430),(9274,365687,0.0,0.0,0.0,805),(9275,365688,0.0,0.0,0.0,800),(9276,365750,0.0,0.0,0.0,1855),(9277,364709,0.0,0.0,0.0,1472),(9278,365955,0.0,0.0,0.0,805),(9279,361345,0.0,0.0,0.0,840),(9280,364919,0.0,0.0,0.0,818),(9281,365787,0.0,0.0,0.0,578),(9282,365676,0.0,0.0,0.0,590),(9283,364627,0.0,0.0,0.0,818),(9284,365808,30.0,24.0,14.0,584),(9285,365749,30.0,24.0,14.0,516),(9286,366018,0.0,0.0,0.0,1742),(9287,364703,0.0,0.0,0.0,1178),(9288,366014,30.0,24.0,14.0,798),(9289,365989,39.0,29.0,17.0,1774),(9290,365948,30.0,24.0,14.0,484),(9291,366042,36.0,16.5,17.0,444),(9292,365953,0.0,0.0,0.0,550),(9293,365693,0.0,0.0,0.0,686),(9294,365746,0.0,0.0,0.0,1196),(9295,364930,0.0,0.0,0.0,930),(9296,365615,0.0,0.0,0.0,772),(9297,366015,0.0,0.0,0.0,782),(9298,365435,0.0,0.0,0.0,860),(9299,339321,0.0,0.0,0.0,1000),(9300,365559,0.0,0.0,0.0,610),(9301,365962,0.0,0.0,0.0,550),(9302,365965,0.0,0.0,0.0,562),(9303,365756,0.0,0.0,0.0,592),(9304,365721,0.0,0.0,0.0,576),(9305,365660,0.0,0.0,0.0,512),(9306,365963,0.0,0.0,0.0,556),(9307,365486,0.0,0.0,0.0,794),(9308,365618,0.0,0.0,0.0,574),(9309,364599,0.0,0.0,0.0,712),(9310,365582,0.0,0.0,0.0,574),(9311,365957,0.0,0.0,0.0,570),(9312,365964,0.0,0.0,0.0,546),(9313,365960,0.0,0.0,0.0,550),(9314,361524,0.0,0.0,0.0,750),(9315,364858,0.0,0.0,0.0,524),(9316,359731,0.0,0.0,0.0,740),(9317,365956,0.0,0.0,0.0,714),(9318,365952,0.0,0.0,0.0,506),(9319,365949,0.0,0.0,0.0,770),(9320,365761,0.0,0.0,0.0,766),(9321,365596,0.0,0.0,0.0,790),(9322,365673,0.0,0.0,0.0,794),(9323,365606,0.0,0.0,0.0,792),(9324,365555,0.0,0.0,0.0,796),(9325,365651,0.0,0.0,0.0,796),(9326,364708,0.0,0.0,0.0,770),(9327,364705,0.0,0.0,0.0,770),(9328,364704,0.0,0.0,0.0,770),(9329,364702,0.0,0.0,0.0,800),(9330,364701,0.0,0.0,0.0,800),(9331,364699,0.0,0.0,0.0,800),(9332,364698,0.0,0.0,0.0,800),(9333,364697,0.0,0.0,0.0,800),(9334,364696,0.0,0.0,0.0,800),(9335,364695,0.0,0.0,0.0,800),(9336,364694,0.0,0.0,0.0,800),(9337,364693,0.0,0.0,0.0,800),(9338,364692,0.0,0.0,0.0,800),(9339,364691,0.0,0.0,0.0,800),(9340,364690,0.0,0.0,0.0,800),(9341,364689,0.0,0.0,0.0,800),(9342,364688,0.0,0.0,0.0,800),(9343,364686,0.0,0.0,0.0,800),(9344,364687,0.0,0.0,0.0,800),(9345,364684,0.0,0.0,0.0,800),(9346,364685,0.0,0.0,0.0,800),(9347,364682,0.0,0.0,0.0,800),(9348,364683,0.0,0.0,0.0,800),(9349,364679,0.0,0.0,0.0,800),(9350,362901,0.0,0.0,0.0,800),(9351,364773,0.0,0.0,0.0,790),(9352,364774,0.0,0.0,0.0,800),(9353,364769,0.0,0.0,0.0,800),(9354,364767,0.0,0.0,0.0,800),(9355,364766,0.0,0.0,0.0,800),(9356,364765,0.0,0.0,0.0,800),(9357,364764,0.0,0.0,0.0,800),(9358,364763,0.0,0.0,0.0,800),(9359,364762,0.0,0.0,0.0,800),(9360,364759,0.0,0.0,0.0,800),(9361,364758,0.0,0.0,0.0,800),(9362,364757,0.0,0.0,0.0,800),(9363,364756,0.0,0.0,0.0,800),(9364,364755,0.0,0.0,0.0,800),(9365,364754,0.0,0.0,0.0,800),(9366,364753,0.0,0.0,0.0,800),(9367,364751,0.0,0.0,0.0,800),(9368,364760,0.0,0.0,0.0,800),(9369,364761,0.0,0.0,0.0,800),(9370,364749,0.0,0.0,0.0,800),(9371,364750,0.0,0.0,0.0,800),(9372,364748,0.0,0.0,0.0,800),(9373,364745,0.0,0.0,0.0,800),(9374,364746,0.0,0.0,0.0,800),(9375,364747,0.0,0.0,0.0,800),(9376,364768,0.0,0.0,0.0,800),(9377,366133,30.0,24.0,6.0,870),(9378,366026,46.0,29.0,22.0,3064),(9379,366009,43.0,33.0,40.0,2934),(9380,366202,46.0,29.0,22.0,1560),(9381,363649,30.0,24.0,14.0,812),(9382,366198,46.0,29.0,22.0,1950),(9383,366063,39.0,29.0,17.0,1040),(9384,366206,39.0,29.0,17.0,1040),(9385,366136,30.0,24.0,14.0,1022),(9386,366194,30.0,24.0,14.0,700),(9387,366188,30.0,24.0,14.0,588),(9388,366182,30.0,24.0,14.0,582),(9389,366064,30.0,24.0,14.0,518),(9390,366143,30.0,24.0,14.0,516),(9391,366140,30.0,24.0,14.0,518),(9392,366197,30.0,24.0,14.0,518),(9393,364725,0.0,0.0,0.0,800),(9394,365052,0.0,0.0,0.0,800),(9395,364723,0.0,0.0,0.0,800),(9396,364724,0.0,0.0,0.0,800),(9397,364721,0.0,0.0,0.0,800),(9398,364722,0.0,0.0,0.0,800),(9399,364717,0.0,0.0,0.0,800),(9400,364718,0.0,0.0,0.0,800),(9401,364713,0.0,0.0,0.0,800),(9402,364716,0.0,0.0,0.0,800),(9403,364711,0.0,0.0,0.0,800),(9404,364712,0.0,0.0,0.0,800),(9405,364710,0.0,0.0,0.0,800),(9406,364706,0.0,0.0,0.0,800),(9407,364700,0.0,0.0,0.0,800),(9408,366060,0.0,0.0,0.0,805),(9409,366048,0.0,0.0,0.0,925),(9410,366049,0.0,0.0,0.0,535),(9411,366150,0.0,0.0,0.0,585),(9412,366065,0.0,0.0,0.0,820),(9413,366058,0.0,0.0,0.0,820),(9414,366055,0.0,0.0,0.0,820),(9415,366010,0.0,0.0,0.0,1140),(9416,366176,0.0,0.0,0.0,1140),(9417,360152,0.0,0.0,0.0,1020),(9418,364680,0.0,0.0,0.0,795),(9419,366129,0.0,0.0,0.0,790),(9420,366037,0.0,0.0,0.0,615),(9421,366122,0.0,0.0,0.0,645),(9422,366054,0.0,0.0,0.0,645),(9423,366043,0.0,0.0,0.0,595),(9424,366057,0.0,0.0,0.0,825),(9425,366205,0.0,0.0,0.0,785),(9426,366332,33.0,25.0,11.0,494),(9427,366443,39.0,29.0,17.0,1252),(9428,353602,30.0,24.0,14.0,694),(9429,366262,30.0,24.0,14.0,500),(9430,364230,30.0,24.0,14.0,962),(9431,366328,30.0,24.0,14.0,546),(9432,366406,30.0,24.0,14.0,1035),(9433,366237,33.0,25.0,11.0,1110),(9434,366599,30.0,24.0,14.0,518),(9435,366480,0.0,0.0,0.0,574),(9436,366261,0.0,0.0,0.0,1274),(9437,366571,0.0,0.0,0.0,815),(9438,366518,0.0,0.0,0.0,585),(9439,364707,0.0,0.0,0.0,795),(9440,366252,0.0,0.0,0.0,815),(9441,366569,0.0,0.0,0.0,820),(9442,366269,0.0,0.0,0.0,850),(9443,366369,0.0,0.0,0.0,790),(9444,366148,0.0,0.0,0.0,781),(9445,366572,0.0,0.0,0.0,605),(9446,366576,0.0,0.0,0.0,785),(9447,362201,0.0,0.0,0.0,630),(9448,366379,0.0,0.0,0.0,610),(9449,366465,0.0,0.0,0.0,640),(9450,366837,46.0,29.0,22.0,2268),(9451,366028,30.0,24.0,14.0,674),(9452,367171,30.0,24.0,14.0,722),(9453,367030,30.0,24.0,14.0,586),(9454,366338,30.0,24.0,14.0,988),(9455,366285,0.0,0.0,0.0,1124),(9456,366051,0.0,0.0,0.0,1770),(9457,366588,39.0,29.0,17.0,1666),(9458,367161,30.0,24.0,14.0,830),(9459,366761,30.0,24.0,14.0,574),(9460,366630,30.0,24.0,14.0,530),(9461,363350,30.0,24.0,14.0,530),(9462,365809,30.0,24.0,14.0,534),(9463,366808,30.0,24.0,14.0,852),(9464,366772,30.0,24.0,14.0,794),(9465,367163,30.0,24.0,14.0,792),(9466,367175,30.0,24.0,14.0,698),(9467,367084,30.0,24.0,14.0,742),(9468,365380,39.0,29.0,17.0,1130),(9469,367077,30.0,24.0,14.0,790),(9470,366912,30.0,24.0,14.0,760),(9471,367230,30.0,24.0,14.0,736),(9472,367718,33.0,25.0,11.0,865),(9473,367738,33.0,25.0,11.0,865),(9474,367473,33.0,25.0,11.0,865),(9475,366954,33.0,25.0,11.0,865),(9476,367398,33.0,25.0,11.0,865),(9477,367545,33.0,25.0,11.0,865),(9478,367536,33.0,25.0,11.0,865),(9479,367598,33.0,25.0,11.0,865),(9480,367567,33.0,25.0,11.0,865),(9481,366858,33.0,25.0,11.0,865),(9482,367102,33.0,25.0,11.0,865),(9483,366628,33.0,25.0,11.0,865),(9484,366281,33.0,25.0,11.0,865),(9485,366732,33.0,25.0,11.0,865),(9486,365771,33.0,25.0,11.0,865),(9487,366987,33.0,25.0,11.0,865),(9488,366547,33.0,25.0,11.0,865),(9489,366725,33.0,25.0,11.0,865),(9490,366769,33.0,25.0,11.0,865),(9491,366779,33.0,25.0,11.0,895),(9492,366799,33.0,25.0,11.0,895),(9493,366860,33.0,25.0,11.0,895),(9494,366978,33.0,25.0,11.0,895),(9495,366927,33.0,25.0,11.0,895),(9496,366916,33.0,26.0,17.0,1440),(9497,367040,30.0,24.0,14.0,1035),(9498,360657,30.0,24.0,14.0,1260),(9499,4586,39.0,29.0,17.0,1708),(9500,367763,30.0,24.0,6.0,550),(9501,359388,39.0,29.0,17.0,1250),(9502,357493,30.0,24.0,14.0,724),(9503,367737,30.0,24.0,14.0,596),(9504,367772,30.0,24.0,14.0,500),(9505,367453,30.0,24.0,14.0,954),(9506,366410,33.0,25.0,11.0,830),(9507,366397,33.0,25.0,11.0,832),(9508,366282,33.0,25.0,11.0,824),(9509,366280,33.0,25.0,11.0,826),(9510,366312,33.0,25.0,11.0,830),(9511,360903,33.0,25.0,11.0,865),(9512,367373,33.0,25.0,11.0,865),(9513,367414,33.0,25.0,11.0,865),(9514,367441,33.0,25.0,11.0,865),(9515,367664,33.0,25.0,11.0,865),(9516,367628,33.0,25.0,11.0,865),(9517,367748,33.0,25.0,11.0,865),(9518,367377,33.0,25.0,11.0,865),(9519,6904,39.0,29.0,17.0,1680),(9520,367942,30.0,24.0,14.0,808),(9521,368030,30.0,24.0,14.0,528),(9522,363787,30.0,24.0,14.0,560),(9523,367894,30.0,24.0,14.0,472),(9524,367980,30.0,24.0,14.0,790),(9525,368039,30.0,24.0,14.0,498),(9526,367964,30.0,24.0,14.0,984),(9527,366854,30.0,24.0,14.0,782),(9528,368020,30.0,24.0,14.0,562),(9529,367920,30.0,24.0,14.0,578),(9530,367943,30.0,24.0,14.0,554),(9531,367846,30.0,24.0,14.0,796),(9532,367822,30.0,24.0,14.0,798),(9533,367803,30.0,24.0,14.0,802),(9534,367815,30.0,24.0,14.0,794),(9535,367802,30.0,24.0,14.0,798),(9536,350080,30.0,24.0,14.0,554),(9537,367521,30.0,24.0,14.0,556),(9538,367811,30.0,24.0,14.0,1308),(9539,367362,30.0,24.0,14.0,720),(9540,367847,30.0,24.0,14.0,532),(9541,367819,30.0,24.0,14.0,558),(9542,367793,30.0,24.0,14.0,990),(9543,363953,0.0,0.0,0.0,590),(9544,363954,0.0,0.0,0.0,590),(9545,363947,0.0,0.0,0.0,590),(9546,363948,0.0,0.0,0.0,590),(9547,363946,0.0,0.0,0.0,590),(9548,363944,0.0,0.0,0.0,590),(9549,363945,0.0,0.0,0.0,590),(9550,363941,0.0,0.0,0.0,590),(9551,363942,0.0,0.0,0.0,590),(9552,363951,0.0,0.0,0.0,590),(9553,363950,0.0,0.0,0.0,590),(9554,363949,0.0,0.0,0.0,590),(9555,363952,0.0,0.0,0.0,590),(9556,363973,0.0,0.0,0.0,590),(9557,363958,0.0,0.0,0.0,590),(9558,363957,0.0,0.0,0.0,590),(9559,363960,0.0,0.0,0.0,590),(9560,363959,0.0,0.0,0.0,690),(9561,363963,0.0,0.0,0.0,590),(9562,363962,0.0,0.0,0.0,590),(9563,363961,0.0,0.0,0.0,590),(9564,363967,0.0,0.0,0.0,590),(9565,363965,0.0,0.0,0.0,590),(9566,363972,0.0,0.0,0.0,590),(9567,363970,0.0,0.0,0.0,590),(9568,363968,0.0,0.0,0.0,590),(9569,363974,0.0,0.0,0.0,590),(9570,363975,0.0,0.0,0.0,590),(9571,363964,0.0,0.0,0.0,590),(9572,364974,30.0,24.0,6.0,415),(9573,367827,30.0,24.0,14.0,694),(9574,367983,0.0,0.0,0.0,714),(9575,367855,0.0,0.0,0.0,524),(9576,367863,0.0,0.0,0.0,594),(9577,367898,0.0,0.0,0.0,764),(9578,367951,0.0,0.0,0.0,1474),(9579,367549,46.0,30.0,16.0,1600),(9580,366963,0.0,0.0,0.0,540),(9581,367142,0.0,0.0,0.0,540),(9582,367114,0.0,0.0,0.0,540),(9583,367675,0.0,0.0,0.0,540),(9584,366625,0.0,0.0,0.0,605),(9585,367116,0.0,0.0,0.0,605),(9586,367515,0.0,0.0,0.0,555),(9587,367753,0.0,0.0,0.0,815),(9588,367607,0.0,0.0,0.0,815),(9589,366710,0.0,0.0,0.0,815),(9590,367585,0.0,0.0,0.0,810),(9591,367739,0.0,0.0,0.0,815),(9592,367719,0.0,0.0,0.0,815),(9593,366056,0.0,0.0,0.0,600),(9594,366999,0.0,0.0,0.0,625),(9595,367519,0.0,0.0,0.0,550),(9596,366789,0.0,0.0,0.0,625),(9597,367784,0.0,0.0,0.0,540),(9598,367615,0.0,0.0,0.0,535),(9599,363514,0.0,0.0,0.0,550),(9600,366728,0.0,0.0,0.0,810),(9601,366666,0.0,0.0,0.0,810),(9602,366838,0.0,0.0,0.0,815),(9603,367091,0.0,0.0,0.0,815),(9604,366903,0.0,0.0,0.0,815),(9605,366965,0.0,0.0,0.0,780),(9606,366969,0.0,0.0,0.0,815),(9607,366938,0.0,0.0,0.0,765),(9608,367653,0.0,0.0,0.0,765),(9609,366911,46.0,30.0,16.0,1505),(9610,368159,30.0,24.0,14.0,785),(9611,367844,0.0,0.0,0.0,705),(9612,365402,0.0,0.0,0.0,775),(9613,366481,0.0,0.0,0.0,775),(9614,367220,0.0,0.0,0.0,575),(9615,366787,0.0,0.0,0.0,595),(9616,366989,0.0,0.0,0.0,590),(9617,367214,0.0,0.0,0.0,585),(9618,367135,0.0,0.0,0.0,920),(9619,367257,0.0,0.0,0.0,565),(9620,367343,0.0,0.0,0.0,415),(9621,367302,0.0,0.0,0.0,420),(9622,367217,0.0,0.0,0.0,590),(9623,367052,30.0,24.0,14.0,698),(9624,367890,56.0,29.0,17.0,2072),(9625,367530,0.0,0.0,0.0,980),(9626,367152,0.0,0.0,0.0,950),(9627,366622,0.0,0.0,0.0,950),(9628,367457,0.0,0.0,0.0,730),(9629,367899,0.0,0.0,0.0,786),(9630,366705,0.0,0.0,0.0,946),(9631,367957,0.0,0.0,0.0,780),(9632,366233,0.0,0.0,0.0,914),(9633,367853,0.0,0.0,0.0,780),(9634,367832,0.0,0.0,0.0,782),(9635,366656,0.0,0.0,0.0,890),(9636,367367,0.0,0.0,0.0,920),(9637,367762,0.0,0.0,0.0,742),(9638,367765,0.0,0.0,0.0,740),(9639,367364,0.0,0.0,0.0,954),(9640,367854,39.0,29.0,17.0,1528),(9641,368324,30.0,24.0,14.0,702),(9642,368349,30.0,24.0,14.0,672),(9643,368416,30.0,24.0,14.0,490),(9644,368453,30.0,24.0,14.0,480),(9645,368425,30.0,24.0,14.0,800),(9646,368434,30.0,24.0,14.0,805),(9647,366917,30.0,24.0,14.0,1200),(9648,368253,39.0,29.0,17.0,1315),(9649,368236,30.0,24.0,14.0,1180),(9650,367481,30.0,24.0,14.0,1180),(9651,368216,0.0,0.0,0.0,540),(9652,368235,0.0,0.0,0.0,785),(9653,368186,0.0,0.0,0.0,865),(9654,365491,0.0,0.0,0.0,1770),(9655,368210,0.0,0.0,0.0,815),(9656,368271,0.0,0.0,0.0,823),(9657,368248,30.0,24.0,6.0,288),(9658,368404,39.0,29.0,17.0,1098),(9659,368323,33.0,25.0,11.0,1230),(9660,366249,30.0,24.0,14.0,1114),(9661,367372,30.0,24.0,6.0,590),(9662,366193,30.0,24.0,6.0,464),(9663,366336,30.0,24.0,14.0,1030),(9664,367998,30.0,24.0,14.0,1140),(9665,365542,30.0,24.0,14.0,880),(9666,367689,30.0,24.0,14.0,850),(9667,366300,30.0,24.0,14.0,880),(9668,366444,30.0,24.0,14.0,840),(9669,368500,30.0,24.0,14.0,1086),(9670,368263,30.0,24.0,14.0,1016),(9671,366352,30.0,24.0,14.0,834),(9672,348877,30.0,24.0,14.0,838),(9673,368291,30.0,24.0,14.0,832),(9674,368256,30.0,24.0,14.0,836),(9675,366359,30.0,24.0,14.0,832),(9676,366404,30.0,24.0,14.0,832),(9677,364100,30.0,24.0,14.0,834),(9678,366257,30.0,24.0,14.0,838),(9679,367059,0.0,0.0,0.0,895),(9680,367368,0.0,0.0,0.0,1062),(9681,367820,0.0,0.0,0.0,880),(9682,368207,0.0,0.0,0.0,880),(9683,368218,0.0,0.0,0.0,886),(9684,368228,0.0,0.0,0.0,880),(9685,368238,0.0,0.0,0.0,880),(9686,368163,0.0,0.0,0.0,880),(9687,367948,0.0,0.0,0.0,880),(9688,367476,0.0,0.0,0.0,880),(9689,366384,0.0,0.0,0.0,880),(9690,367423,0.0,0.0,0.0,880),(9691,366415,0.0,0.0,0.0,880),(9692,366294,0.0,0.0,0.0,880),(9693,368144,0.0,0.0,0.0,880),(9694,368043,0.0,0.0,0.0,880),(9695,367713,0.0,0.0,0.0,880),(9696,367643,0.0,0.0,0.0,880),(9697,367657,0.0,0.0,0.0,880),(9698,367654,0.0,0.0,0.0,880),(9699,367676,0.0,0.0,0.0,880),(9700,368305,0.0,0.0,0.0,880),(9701,367717,0.0,0.0,0.0,880),(9702,367612,0.0,0.0,0.0,880),(9703,367568,0.0,0.0,0.0,880),(9704,368334,0.0,0.0,0.0,880),(9705,368426,0.0,0.0,0.0,880),(9706,368457,0.0,0.0,0.0,880),(9707,368477,0.0,0.0,0.0,880),(9708,367141,0.0,0.0,0.0,885),(9709,367149,0.0,0.0,0.0,885),(9710,368016,0.0,0.0,0.0,885),(9711,368014,0.0,0.0,0.0,885),(9712,368009,0.0,0.0,0.0,885),(9713,367990,0.0,0.0,0.0,885),(9714,367993,0.0,0.0,0.0,885),(9715,367969,0.0,0.0,0.0,885),(9716,367881,0.0,0.0,0.0,885),(9717,368353,0.0,0.0,0.0,600),(9718,368401,0.0,0.0,0.0,575),(9719,368528,0.0,0.0,0.0,580),(9720,368529,0.0,0.0,0.0,760),(9721,368407,0.0,0.0,0.0,630),(9722,368536,0.0,0.0,0.0,1100),(9723,368222,0.0,0.0,0.0,866),(9724,368205,0.0,0.0,0.0,844),(9725,346660,0.0,0.0,0.0,852),(9726,368239,0.0,0.0,0.0,858),(9727,367814,0.0,0.0,0.0,852),(9728,367592,0.0,0.0,0.0,856),(9729,367866,0.0,0.0,0.0,848),(9730,367860,0.0,0.0,0.0,878),(9731,367933,0.0,0.0,0.0,874),(9732,368165,0.0,0.0,0.0,872),(9733,368160,0.0,0.0,0.0,852),(9734,366428,0.0,0.0,0.0,850),(9735,366335,0.0,0.0,0.0,1378),(9736,366364,0.0,0.0,0.0,848),(9737,367658,0.0,0.0,0.0,848),(9738,367590,0.0,0.0,0.0,848),(9739,367605,0.0,0.0,0.0,848),(9740,367599,0.0,0.0,0.0,846),(9741,367522,0.0,0.0,0.0,848),(9742,368296,0.0,0.0,0.0,850),(9743,368463,0.0,0.0,0.0,846),(9744,368352,0.0,0.0,0.0,848),(9745,368489,0.0,0.0,0.0,846),(9746,366577,0.0,0.0,0.0,850),(9747,368504,0.0,0.0,0.0,540),(9748,367278,0.0,0.0,0.0,2302),(9749,5464,0.0,0.0,0.0,2690),(9750,368493,0.0,0.0,0.0,820),(9751,367369,0.0,0.0,0.0,895),(9752,367451,0.0,0.0,0.0,890),(9753,366871,0.0,0.0,0.0,895),(9754,366972,0.0,0.0,0.0,895),(9755,366878,0.0,0.0,0.0,895),(9756,368478,0.0,0.0,0.0,880),(9757,366888,0.0,0.0,0.0,900),(9758,367085,0.0,0.0,0.0,895),(9759,367953,0.0,0.0,0.0,320),(9760,367126,0.0,0.0,0.0,860),(9761,366394,0.0,0.0,0.0,1040),(9762,367896,0.0,0.0,0.0,2225),(9763,368480,0.0,0.0,0.0,1805),(9764,368034,0.0,0.0,0.0,940),(9765,367771,0.0,0.0,0.0,950),(9766,368185,0.0,0.0,0.0,585),(9767,368479,0.0,0.0,0.0,1140),(9768,368484,0.0,0.0,0.0,820),(9769,368451,0.0,0.0,0.0,815),(9770,368459,0.0,0.0,0.0,1250),(9771,366557,0.0,0.0,0.0,895),(9772,366554,0.0,0.0,0.0,895),(9773,366794,0.0,0.0,0.0,1140),(9774,367505,0.0,0.0,0.0,895),(9775,367489,0.0,0.0,0.0,895),(9776,367496,0.0,0.0,0.0,895),(9777,367403,0.0,0.0,0.0,895),(9778,367433,0.0,0.0,0.0,895),(9779,367438,0.0,0.0,0.0,895),(9780,367446,0.0,0.0,0.0,895),(9781,367450,0.0,0.0,0.0,895),(9782,366608,0.0,0.0,0.0,895),(9783,366736,0.0,0.0,0.0,895),(9784,366905,0.0,0.0,0.0,895),(9785,366868,0.0,0.0,0.0,895),(9786,366922,0.0,0.0,0.0,895),(9787,367043,0.0,0.0,0.0,895),(9788,368385,30.0,24.0,14.0,856),(9789,368420,30.0,24.0,14.0,1028),(9790,368344,30.0,24.0,14.0,858),(9791,366803,33.0,25.0,11.0,1110),(9792,368341,33.0,25.0,11.0,884),(9793,368646,39.0,29.0,17.0,1974),(9794,368792,33.0,25.0,11.0,870),(9795,368755,30.0,24.0,14.0,860),(9796,368773,30.0,24.0,14.0,860),(9797,362974,30.0,24.0,14.0,1104),(9798,368624,33.0,25.0,11.0,860),(9799,368711,30.0,24.0,14.0,570),(9800,368573,30.0,24.0,14.0,522),(9801,368725,30.0,24.0,14.0,550),(9802,368656,30.0,24.0,14.0,570),(9803,368761,30.0,24.0,14.0,680),(9804,368575,0.0,0.0,0.0,890),(9805,368583,0.0,0.0,0.0,890),(9806,368589,0.0,0.0,0.0,890),(9807,368590,0.0,0.0,0.0,890),(9808,368678,0.0,0.0,0.0,890),(9809,368693,0.0,0.0,0.0,890),(9810,368747,0.0,0.0,0.0,890),(9811,368758,0.0,0.0,0.0,890),(9812,368782,0.0,0.0,0.0,895),(9813,368817,0.0,0.0,0.0,890),(9814,369256,0.0,0.0,0.0,890),(9815,368713,0.0,0.0,0.0,900),(9816,368887,0.0,0.0,0.0,540),(9817,368587,0.0,0.0,0.0,820),(9818,368602,30.0,24.0,6.0,290),(9819,369097,0.0,0.0,0.0,692),(9820,368845,0.0,0.0,0.0,562),(9821,368606,0.0,0.0,0.0,872),(9822,368673,0.0,0.0,0.0,574),(9823,368430,33.0,25.0,11.0,890),(9824,369321,33.0,25.0,11.0,890),(9825,369317,33.0,25.0,11.0,890),(9826,369300,33.0,25.0,11.0,8616),(9827,369454,30.0,24.0,6.0,876),(9828,369574,33.0,26.0,17.0,608),(9829,369904,30.0,24.0,6.0,520),(9830,367314,0.0,0.0,0.0,576),(9831,365410,0.0,0.0,0.0,550),(9832,365412,0.0,0.0,0.0,544),(9833,365403,0.0,0.0,0.0,538),(9834,366780,30.0,24.0,6.0,1100),(9835,368870,0.0,0.0,0.0,570),(9836,368184,0.0,0.0,0.0,554),(9837,366786,0.0,0.0,0.0,554),(9838,365416,0.0,0.0,0.0,538),(9839,365413,0.0,0.0,0.0,536),(9840,365414,0.0,0.0,0.0,548),(9841,366669,0.0,0.0,0.0,528),(9842,368300,0.0,0.0,0.0,2010),(9843,366947,0.0,0.0,0.0,890),(9844,369272,0.0,0.0,0.0,890),(9845,369273,0.0,0.0,0.0,894),(9846,369295,0.0,0.0,0.0,890),(9847,369298,0.0,0.0,0.0,890),(9848,369336,0.0,0.0,0.0,890),(9849,366551,0.0,0.0,0.0,558),(9850,365421,0.0,0.0,0.0,536),(9851,365426,0.0,0.0,0.0,544),(9852,365427,0.0,0.0,0.0,530),(9853,365429,0.0,0.0,0.0,532),(9854,365430,0.0,0.0,0.0,532),(9855,370267,30.0,24.0,14.0,526),(9856,370280,30.0,24.0,14.0,528),(9857,369806,30.0,24.0,14.0,510),(9858,369728,30.0,24.0,14.0,504),(9859,370291,30.0,24.0,14.0,500),(9860,369718,30.0,24.0,14.0,504),(9861,369361,30.0,24.0,14.0,516),(9862,369467,39.0,29.0,17.0,1138),(9863,363370,30.0,24.0,14.0,818),(9864,369736,30.0,24.0,14.0,848),(9865,369915,33.0,26.0,17.0,794),(9866,369698,30.0,24.0,14.0,550),(9867,369447,39.0,29.0,17.0,1264),(9868,370177,39.0,29.0,17.0,1580),(9869,369365,30.0,24.0,14.0,1030),(9870,366008,30.0,24.0,14.0,1094),(9871,370157,30.0,24.0,14.0,1110),(9872,369470,46.0,29.0,22.0,2600),(9873,369729,39.0,29.0,17.0,1574),(9874,369508,33.0,25.0,11.0,860),(9875,370318,33.0,25.0,11.0,854),(9876,370257,33.0,25.0,11.0,856),(9877,370156,33.0,25.0,11.0,850),(9878,369755,33.0,25.0,11.0,854),(9879,369795,33.0,25.0,11.0,850),(9880,369671,33.0,25.0,11.0,852),(9881,369683,33.0,25.0,11.0,856),(9882,368022,33.0,25.0,11.0,852),(9883,369490,33.0,25.0,11.0,860),(9884,369526,33.0,25.0,11.0,860),(9885,369664,33.0,25.0,11.0,850),(9886,369595,33.0,25.0,11.0,850),(9887,369632,33.0,25.0,11.0,850),(9888,369908,33.0,25.0,11.0,850),(9889,369162,30.0,24.0,14.0,706),(9890,369017,30.0,24.0,14.0,705),(9891,369154,30.0,24.0,14.0,700),(9892,369127,30.0,24.0,14.0,704),(9893,369238,30.0,24.0,14.0,704),(9894,369064,30.0,24.0,14.0,704),(9895,369198,30.0,24.0,14.0,732),(9896,369205,30.0,24.0,14.0,710),(9897,369221,30.0,24.0,14.0,710),(9898,369156,30.0,24.0,14.0,705),(9899,369248,30.0,24.0,14.0,684),(9900,370311,30.0,24.0,14.0,714),(9901,369663,46.0,29.0,22.0,1726),(9902,370173,39.0,29.0,17.0,1420),(9903,369394,46.0,29.0,22.0,1452),(9904,369148,30.0,24.0,14.0,706),(9905,369143,30.0,24.0,14.0,708),(9906,369155,30.0,24.0,14.0,710),(9907,370262,30.0,24.0,14.0,506),(9908,369377,33.0,25.0,11.0,850),(9909,369801,0.0,0.0,0.0,890),(9910,369405,0.0,0.0,0.0,890),(9911,369463,0.0,0.0,0.0,890),(9912,370287,0.0,0.0,0.0,890),(9913,370266,0.0,0.0,0.0,890),(9914,369930,0.0,0.0,0.0,890),(9915,369333,0.0,0.0,0.0,1310),(9916,369363,0.0,0.0,0.0,1695),(9917,369495,0.0,0.0,0.0,765),(9918,370286,0.0,0.0,0.0,815),(9919,369761,0.0,0.0,0.0,1125),(9920,368383,0.0,0.0,0.0,1110),(9921,369466,0.0,0.0,0.0,810),(9922,369468,0.0,0.0,0.0,540),(9923,365686,0.0,0.0,0.0,975),(9924,370239,0.0,0.0,0.0,845),(9925,369709,0.0,0.0,0.0,765),(9926,369893,0.0,0.0,0.0,780),(9927,370277,0.0,0.0,0.0,735),(9928,370161,0.0,0.0,0.0,540),(9929,369517,0.0,0.0,0.0,1115),(9930,370333,0.0,0.0,0.0,605),(9931,370340,0.0,0.0,0.0,849),(9932,366687,0.0,0.0,0.0,860),(9933,369938,0.0,0.0,0.0,860),(9934,369911,0.0,0.0,0.0,861),(9935,370243,0.0,0.0,0.0,410),(9936,370223,0.0,0.0,0.0,570),(9937,370238,0.0,0.0,0.0,560),(9938,370230,0.0,0.0,0.0,570),(9939,370232,0.0,0.0,0.0,570),(9940,369731,0.0,0.0,0.0,565),(9941,369776,0.0,0.0,0.0,590),(9942,369775,0.0,0.0,0.0,590),(9943,370222,0.0,0.0,0.0,570),(9944,370224,0.0,0.0,0.0,585),(9945,370370,0.0,0.0,0.0,950),(9946,367936,0.0,0.0,0.0,895),(9947,369868,0.0,0.0,0.0,895),(9948,369841,0.0,0.0,0.0,895),(9949,370411,33.0,25.0,11.0,536),(9950,370389,30.0,24.0,14.0,520),(9951,370690,30.0,24.0,14.0,526),(9952,370390,30.0,24.0,14.0,508),(9953,370734,30.0,24.0,14.0,502),(9954,370745,30.0,24.0,14.0,558),(9955,370445,33.0,25.0,11.0,780),(9956,370822,33.0,25.0,11.0,716),(9957,370777,39.0,29.0,17.0,1160),(9958,370527,33.0,25.0,11.0,516),(9959,370344,30.0,24.0,14.0,646),(9960,370441,30.0,24.0,14.0,870),(9961,370368,30.0,24.0,14.0,870),(9962,370496,30.0,24.0,14.0,870),(9963,370962,30.0,24.0,14.0,870),(9964,370950,30.0,24.0,14.0,870),(9965,370410,30.0,24.0,14.0,870),(9966,370847,30.0,24.0,14.0,870),(9967,370790,30.0,24.0,14.0,870),(9968,370693,30.0,24.0,14.0,870),(9969,363558,30.0,24.0,14.0,870),(9970,366983,30.0,24.0,14.0,870),(9971,370635,30.0,24.0,14.0,870),(9972,367409,30.0,24.0,14.0,870),(9973,370288,30.0,24.0,14.0,870),(9974,370317,30.0,24.0,14.0,875),(9975,370679,30.0,24.0,14.0,546),(9976,370379,30.0,24.0,14.0,1012),(9977,370731,30.0,24.0,14.0,1030),(9978,358894,30.0,24.0,14.0,1098),(9979,370569,30.0,24.0,14.0,1034),(9980,370509,46.0,29.0,22.0,2028),(9981,370622,33.0,25.0,11.0,864),(9982,370503,33.0,25.0,11.0,864),(9983,370468,33.0,25.0,11.0,868),(9984,370825,39.0,29.0,17.0,1212),(9985,370657,39.0,29.0,17.0,1728),(9986,370555,39.0,29.0,17.0,1118),(9987,370423,0.0,0.0,0.0,880),(9988,370420,0.0,0.0,0.0,880),(9989,370637,0.0,0.0,0.0,880),(9990,368744,0.0,0.0,0.0,880),(9991,370350,0.0,0.0,0.0,880),(9992,370409,0.0,0.0,0.0,880),(9993,370587,0.0,0.0,0.0,880),(9994,370604,0.0,0.0,0.0,880),(9995,370546,0.0,0.0,0.0,880),(9996,370540,0.0,0.0,0.0,880),(9997,370532,0.0,0.0,0.0,880),(9998,370492,0.0,0.0,0.0,880),(9999,370500,0.0,0.0,0.0,880),(10000,370406,0.0,0.0,0.0,880),(10001,370430,0.0,0.0,0.0,880),(10002,370443,0.0,0.0,0.0,880),(10003,366950,0.0,0.0,0.0,880),(10004,369357,0.0,0.0,0.0,880),(10005,369483,0.0,0.0,0.0,880),(10006,369504,0.0,0.0,0.0,625),(10007,369569,0.0,0.0,0.0,880),(10008,369541,0.0,0.0,0.0,880),(10009,369631,0.0,0.0,0.0,880),(10010,370405,0.0,0.0,0.0,880),(10011,369665,0.0,0.0,0.0,880),(10012,369652,0.0,0.0,0.0,880),(10013,369760,0.0,0.0,0.0,880),(10014,370941,0.0,0.0,0.0,880),(10015,371070,0.0,0.0,0.0,880),(10016,371056,30.0,24.0,14.0,854),(10017,371037,30.0,24.0,14.0,834),(10018,370835,46.0,29.0,22.0,2524),(10019,370821,30.0,24.0,14.0,698),(10020,371033,0.0,0.0,0.0,880),(10021,370667,0.0,0.0,0.0,880),(10022,370676,0.0,0.0,0.0,880),(10023,370714,0.0,0.0,0.0,870),(10024,370781,0.0,0.0,0.0,880),(10025,370767,0.0,0.0,0.0,880),(10026,370785,0.0,0.0,0.0,880),(10027,370789,0.0,0.0,0.0,880),(10028,370799,0.0,0.0,0.0,880),(10029,370816,0.0,0.0,0.0,880),(10030,368926,0.0,0.0,0.0,700),(10031,369015,0.0,0.0,0.0,700),(10032,369022,0.0,0.0,0.0,700),(10033,369024,0.0,0.0,0.0,700),(10034,369025,0.0,0.0,0.0,700),(10035,369028,0.0,0.0,0.0,700),(10036,368903,0.0,0.0,0.0,745),(10037,368904,0.0,0.0,0.0,745),(10038,368905,0.0,0.0,0.0,745),(10039,368906,0.0,0.0,0.0,745),(10040,368908,0.0,0.0,0.0,745),(10041,368909,0.0,0.0,0.0,745),(10042,368910,0.0,0.0,0.0,745),(10043,368911,0.0,0.0,0.0,745),(10044,368912,0.0,0.0,0.0,745),(10045,368913,0.0,0.0,0.0,745),(10046,369032,0.0,0.0,0.0,700),(10047,369033,0.0,0.0,0.0,700),(10048,368914,0.0,0.0,0.0,745),(10049,368916,0.0,0.0,0.0,745),(10050,369052,0.0,0.0,0.0,705),(10051,369056,0.0,0.0,0.0,705),(10052,369147,0.0,0.0,0.0,745),(10053,368826,0.0,0.0,0.0,700),(10054,369062,0.0,0.0,0.0,705),(10055,369149,0.0,0.0,0.0,745),(10056,369063,0.0,0.0,0.0,705),(10057,369184,0.0,0.0,0.0,745),(10058,369067,0.0,0.0,0.0,700),(10059,369177,0.0,0.0,0.0,745),(10060,369069,0.0,0.0,0.0,710),(10061,369215,0.0,0.0,0.0,745),(10062,369074,0.0,0.0,0.0,700),(10063,369216,0.0,0.0,0.0,745),(10064,369081,0.0,0.0,0.0,700),(10065,369041,0.0,0.0,0.0,700),(10066,369214,0.0,0.0,0.0,745),(10067,369043,0.0,0.0,0.0,700),(10068,369212,0.0,0.0,0.0,745),(10069,369213,0.0,0.0,0.0,700),(10070,368928,0.0,0.0,0.0,700),(10071,369208,0.0,0.0,0.0,745),(10072,368927,0.0,0.0,0.0,700),(10073,369209,0.0,0.0,0.0,745),(10074,369189,0.0,0.0,0.0,700),(10075,369199,0.0,0.0,0.0,700),(10076,369157,0.0,0.0,0.0,745),(10077,369192,0.0,0.0,0.0,700),(10078,369158,0.0,0.0,0.0,745),(10079,369193,0.0,0.0,0.0,700),(10080,369159,0.0,0.0,0.0,745),(10081,369195,0.0,0.0,0.0,700),(10082,369190,0.0,0.0,0.0,700),(10083,369160,0.0,0.0,0.0,745),(10084,369191,0.0,0.0,0.0,700),(10085,369161,0.0,0.0,0.0,745),(10086,369185,0.0,0.0,0.0,700),(10087,369187,0.0,0.0,0.0,700),(10088,369163,0.0,0.0,0.0,745),(10089,368871,0.0,0.0,0.0,700),(10090,369164,0.0,0.0,0.0,745),(10091,369083,0.0,0.0,0.0,700),(10092,369084,0.0,0.0,0.0,700),(10093,369106,0.0,0.0,0.0,745),(10094,369107,0.0,0.0,0.0,745),(10095,369108,0.0,0.0,0.0,745),(10096,369086,0.0,0.0,0.0,700),(10097,369109,0.0,0.0,0.0,745),(10098,369785,0.0,0.0,0.0,700),(10099,369110,0.0,0.0,0.0,745),(10100,365490,0.0,0.0,0.0,700),(10101,368242,0.0,0.0,0.0,700),(10102,369111,0.0,0.0,0.0,745),(10103,369139,0.0,0.0,0.0,700),(10104,369112,0.0,0.0,0.0,745),(10105,369201,0.0,0.0,0.0,700),(10106,369196,0.0,0.0,0.0,700),(10107,369114,0.0,0.0,0.0,745),(10108,369115,0.0,0.0,0.0,745),(10109,369116,0.0,0.0,0.0,745),(10110,369117,0.0,0.0,0.0,745),(10111,369118,0.0,0.0,0.0,740),(10112,369197,0.0,0.0,0.0,700),(10113,368857,0.0,0.0,0.0,700),(10114,364501,0.0,0.0,0.0,1075),(10115,368858,0.0,0.0,0.0,700),(10116,370980,0.0,0.0,0.0,775),(10117,368860,0.0,0.0,0.0,700),(10118,370632,0.0,0.0,0.0,1245),(10119,368861,0.0,0.0,0.0,700),(10120,368863,0.0,0.0,0.0,700),(10121,368161,0.0,0.0,0.0,600),(10122,368865,0.0,0.0,0.0,700),(10123,370721,0.0,0.0,0.0,840),(10124,368866,0.0,0.0,0.0,700),(10125,364847,0.0,0.0,0.0,1290),(10126,368867,0.0,0.0,0.0,700),(10127,368868,0.0,0.0,0.0,700),(10128,359489,0.0,0.0,0.0,780),(10129,368869,0.0,0.0,0.0,700),(10130,368924,0.0,0.0,0.0,700),(10131,368880,0.0,0.0,0.0,700),(10132,368881,0.0,0.0,0.0,700),(10133,368925,0.0,0.0,0.0,700),(10134,369121,0.0,0.0,0.0,700),(10135,368919,0.0,0.0,0.0,700),(10136,369122,0.0,0.0,0.0,700),(10137,369170,0.0,0.0,0.0,700),(10138,368920,0.0,0.0,0.0,700),(10139,368921,0.0,0.0,0.0,700),(10140,368922,0.0,0.0,0.0,700),(10141,368923,0.0,0.0,0.0,700),(10142,366068,0.0,0.0,0.0,705),(10143,367660,0.0,0.0,0.0,705),(10144,367872,0.0,0.0,0.0,705),(10145,368824,0.0,0.0,0.0,705),(10146,368825,0.0,0.0,0.0,705),(10147,368828,0.0,0.0,0.0,705),(10148,368829,0.0,0.0,0.0,705),(10149,368873,0.0,0.0,0.0,700),(10150,368830,0.0,0.0,0.0,705),(10151,368872,0.0,0.0,0.0,700),(10152,368831,0.0,0.0,0.0,705),(10153,368875,0.0,0.0,0.0,700),(10154,368876,0.0,0.0,0.0,700),(10155,369044,0.0,0.0,0.0,705),(10156,368877,0.0,0.0,0.0,700),(10157,369045,0.0,0.0,0.0,705),(10158,368879,0.0,0.0,0.0,700),(10159,369188,0.0,0.0,0.0,700),(10160,368837,0.0,0.0,0.0,705),(10161,369119,0.0,0.0,0.0,700),(10162,369120,0.0,0.0,0.0,700),(10163,368838,0.0,0.0,0.0,705),(10164,370502,0.0,0.0,0.0,870),(10165,370965,0.0,0.0,0.0,760),(10166,368839,0.0,0.0,0.0,705),(10167,370961,0.0,0.0,0.0,780),(10168,370213,0.0,0.0,0.0,530),(10169,368899,0.0,0.0,0.0,710),(10170,370726,0.0,0.0,0.0,764),(10171,368900,0.0,0.0,0.0,705),(10172,370756,0.0,0.0,0.0,815),(10173,368901,0.0,0.0,0.0,705),(10174,348603,0.0,0.0,0.0,555),(10175,368840,0.0,0.0,0.0,705),(10176,366031,0.0,0.0,0.0,540),(10177,368842,0.0,0.0,0.0,705),(10178,368849,0.0,0.0,0.0,700),(10179,370956,0.0,0.0,0.0,545),(10180,368890,0.0,0.0,0.0,700),(10181,368892,0.0,0.0,0.0,700),(10182,368893,0.0,0.0,0.0,700),(10183,368894,0.0,0.0,0.0,700),(10184,356889,0.0,0.0,0.0,540),(10185,368895,0.0,0.0,0.0,700),(10186,368896,0.0,0.0,0.0,700),(10187,368897,0.0,0.0,0.0,700),(10188,368898,0.0,0.0,0.0,700),(10189,368844,0.0,0.0,0.0,700),(10190,368847,0.0,0.0,0.0,700),(10191,368848,0.0,0.0,0.0,700),(10192,368852,0.0,0.0,0.0,700),(10193,371079,0.0,0.0,0.0,540),(10194,370985,0.0,0.0,0.0,554),(10195,368851,0.0,0.0,0.0,700),(10196,370987,0.0,0.0,0.0,368),(10197,370618,0.0,0.0,0.0,544),(10198,368853,0.0,0.0,0.0,700),(10199,370984,0.0,0.0,0.0,554),(10200,360437,0.0,0.0,0.0,1305),(10201,370815,0.0,0.0,0.0,1386),(10202,371076,0.0,0.0,0.0,520),(10203,368854,0.0,0.0,0.0,700),(10204,368855,0.0,0.0,0.0,700),(10205,368856,0.0,0.0,0.0,700),(10206,368918,0.0,0.0,0.0,700),(10207,371095,33.0,25.0,11.0,870),(10208,371331,33.0,25.0,11.0,866),(10209,371184,33.0,25.0,11.0,864),(10210,370602,33.0,25.0,11.0,864),(10211,371231,33.0,25.0,11.0,864),(10212,371228,33.0,25.0,11.0,862),(10213,371400,33.0,25.0,11.0,862),(10214,371134,33.0,25.0,11.0,862),(10215,371172,33.0,25.0,11.0,862),(10216,371209,30.0,24.0,14.0,840),(10217,371166,30.0,24.0,14.0,840),(10218,371392,50.0,18.0,19.0,1056),(10219,371275,30.0,24.0,14.0,522),(10220,371154,30.0,24.0,14.0,1054),(10221,371361,30.0,24.0,14.0,1052),(10222,371285,30.0,24.0,14.0,526),(10223,371153,30.0,24.0,14.0,506),(10224,371147,30.0,24.0,14.0,518),(10225,366036,30.0,24.0,14.0,566),(10226,371128,30.0,24.0,14.0,1022),(10227,371138,39.0,29.0,17.0,1414),(10228,371091,30.0,24.0,14.0,1026),(10229,370798,0.0,0.0,0.0,785),(10230,368859,0.0,0.0,0.0,700),(10231,371136,33.0,26.0,17.0,1260),(10232,364742,0.0,0.0,0.0,800),(10233,367620,33.0,25.0,11.0,888),(10234,371486,33.0,25.0,11.0,864),(10235,371446,30.0,24.0,14.0,1110),(10236,360588,30.0,24.0,14.0,1080),(10237,371652,30.0,24.0,14.0,602),(10238,371328,33.0,25.0,11.0,864),(10239,371602,33.0,25.0,11.0,900),(10240,371539,33.0,25.0,11.0,866),(10241,371450,33.0,25.0,11.0,862),(10242,371462,33.0,25.0,11.0,864),(10243,371495,33.0,25.0,11.0,860),(10244,366342,33.0,25.0,11.0,856),(10245,371469,33.0,25.0,11.0,868),(10246,371618,33.0,25.0,11.0,864),(10247,347768,33.0,25.0,11.0,866),(10248,371441,39.0,29.0,17.0,1188),(10249,371573,30.0,24.0,14.0,530),(10250,371039,30.0,24.0,14.0,496),(10251,371584,30.0,24.0,14.0,506),(10252,371685,30.0,24.0,14.0,1032),(10253,371565,46.0,29.0,22.0,2754),(10254,371515,30.0,24.0,14.0,1106),(10255,371451,30.0,24.0,14.0,612),(10256,371771,33.0,25.0,11.0,864),(10257,371759,33.0,25.0,11.0,866),(10258,371838,33.0,25.0,11.0,870),(10259,371787,33.0,25.0,11.0,568),(10260,366191,0.0,0.0,0.0,1115),(10261,369144,0.0,0.0,0.0,725),(10262,369145,0.0,0.0,0.0,725),(10263,368915,0.0,0.0,0.0,725),(10264,369132,0.0,0.0,0.0,725),(10265,369016,0.0,0.0,0.0,725),(10266,369018,0.0,0.0,0.0,725),(10267,369019,0.0,0.0,0.0,725),(10268,369020,0.0,0.0,0.0,725),(10269,369021,0.0,0.0,0.0,725),(10270,369026,0.0,0.0,0.0,725),(10271,369030,0.0,0.0,0.0,725),(10272,369027,0.0,0.0,0.0,725),(10273,369035,0.0,0.0,0.0,725),(10274,369031,0.0,0.0,0.0,725),(10275,369037,0.0,0.0,0.0,725),(10276,369038,0.0,0.0,0.0,725),(10277,369039,0.0,0.0,0.0,725),(10278,369040,0.0,0.0,0.0,725),(10279,369042,0.0,0.0,0.0,725),(10280,369047,0.0,0.0,0.0,725),(10281,369048,0.0,0.0,0.0,725),(10282,369049,0.0,0.0,0.0,725),(10283,369050,0.0,0.0,0.0,725),(10284,369051,0.0,0.0,0.0,725),(10285,370357,0.0,0.0,0.0,725),(10286,369583,0.0,0.0,0.0,725),(10287,370247,0.0,0.0,0.0,725),(10288,370225,0.0,0.0,0.0,725),(10289,369774,0.0,0.0,0.0,725),(10290,369582,0.0,0.0,0.0,725),(10291,369250,0.0,0.0,0.0,725),(10292,369251,0.0,0.0,0.0,725),(10293,369254,0.0,0.0,0.0,725),(10294,369249,0.0,0.0,0.0,725),(10295,369252,0.0,0.0,0.0,725),(10296,369253,0.0,0.0,0.0,725),(10297,369241,0.0,0.0,0.0,725),(10298,369245,0.0,0.0,0.0,725),(10299,369246,0.0,0.0,0.0,725),(10300,369239,0.0,0.0,0.0,725),(10301,369243,0.0,0.0,0.0,725),(10302,369244,0.0,0.0,0.0,725),(10303,369242,0.0,0.0,0.0,725),(10304,369234,0.0,0.0,0.0,725),(10305,369228,0.0,0.0,0.0,725),(10306,369237,0.0,0.0,0.0,725),(10307,369230,0.0,0.0,0.0,725),(10308,369231,0.0,0.0,0.0,725),(10309,369235,0.0,0.0,0.0,725),(10310,369236,0.0,0.0,0.0,725),(10311,369227,0.0,0.0,0.0,725),(10312,369233,0.0,0.0,0.0,725),(10313,369247,0.0,0.0,0.0,725),(10314,369153,0.0,0.0,0.0,725),(10315,369152,0.0,0.0,0.0,725),(10316,369029,0.0,0.0,0.0,725),(10317,368878,0.0,0.0,0.0,725),(10318,369034,0.0,0.0,0.0,725),(10319,371382,0.0,0.0,0.0,725),(10320,371381,0.0,0.0,0.0,725),(10321,371727,0.0,0.0,0.0,725),(10322,371719,0.0,0.0,0.0,725),(10323,369046,0.0,0.0,0.0,725),(10324,368970,0.0,0.0,0.0,725),(10325,368969,0.0,0.0,0.0,725),(10326,370992,0.0,0.0,0.0,725),(10327,368966,0.0,0.0,0.0,725),(10328,368965,0.0,0.0,0.0,725),(10329,368986,0.0,0.0,0.0,725),(10330,369181,0.0,0.0,0.0,725),(10331,369053,0.0,0.0,0.0,725),(10332,369054,0.0,0.0,0.0,725),(10333,369058,0.0,0.0,0.0,725),(10334,369059,0.0,0.0,0.0,725),(10335,369060,0.0,0.0,0.0,725),(10336,369061,0.0,0.0,0.0,725),(10337,369065,0.0,0.0,0.0,725),(10338,369066,0.0,0.0,0.0,725),(10339,369068,0.0,0.0,0.0,725),(10340,369071,0.0,0.0,0.0,725),(10341,369072,0.0,0.0,0.0,725),(10342,369073,0.0,0.0,0.0,725),(10343,369075,0.0,0.0,0.0,725),(10344,369076,0.0,0.0,0.0,725),(10345,369077,0.0,0.0,0.0,725),(10346,369078,0.0,0.0,0.0,725),(10347,369079,0.0,0.0,0.0,725),(10348,369080,0.0,0.0,0.0,725),(10349,369082,0.0,0.0,0.0,725),(10350,369085,0.0,0.0,0.0,725),(10351,368891,0.0,0.0,0.0,725),(10352,368917,0.0,0.0,0.0,725),(10353,368975,0.0,0.0,0.0,725),(10354,369000,0.0,0.0,0.0,725),(10355,368987,0.0,0.0,0.0,725),(10356,369001,0.0,0.0,0.0,725),(10357,369002,0.0,0.0,0.0,725),(10358,369004,0.0,0.0,0.0,725),(10359,369006,0.0,0.0,0.0,725),(10360,369005,0.0,0.0,0.0,725),(10361,369008,0.0,0.0,0.0,725),(10362,369009,0.0,0.0,0.0,725),(10363,369013,0.0,0.0,0.0,725),(10364,369182,0.0,0.0,0.0,725),(10365,369140,0.0,0.0,0.0,725),(10366,369129,0.0,0.0,0.0,725),(10367,369222,0.0,0.0,0.0,725),(10368,369225,0.0,0.0,0.0,725),(10369,369223,0.0,0.0,0.0,725),(10370,369217,0.0,0.0,0.0,725),(10371,369218,0.0,0.0,0.0,725),(10372,369219,0.0,0.0,0.0,725),(10373,369220,0.0,0.0,0.0,725),(10374,369210,0.0,0.0,0.0,725),(10375,369125,0.0,0.0,0.0,725),(10376,369126,0.0,0.0,0.0,725),(10377,369123,0.0,0.0,0.0,725),(10378,369113,0.0,0.0,0.0,725),(10379,369104,0.0,0.0,0.0,725),(10380,369105,0.0,0.0,0.0,725),(10381,369103,0.0,0.0,0.0,725),(10382,369102,0.0,0.0,0.0,725),(10383,369100,0.0,0.0,0.0,725),(10384,369099,0.0,0.0,0.0,725),(10385,369101,0.0,0.0,0.0,725),(10386,369134,0.0,0.0,0.0,725),(10387,368934,0.0,0.0,0.0,725),(10388,369137,0.0,0.0,0.0,725),(10389,368935,0.0,0.0,0.0,725),(10390,369136,0.0,0.0,0.0,725),(10391,369172,0.0,0.0,0.0,725),(10392,368936,0.0,0.0,0.0,725),(10393,369128,0.0,0.0,0.0,725),(10394,369171,0.0,0.0,0.0,725),(10395,368937,0.0,0.0,0.0,725),(10396,369141,0.0,0.0,0.0,725),(10397,368938,0.0,0.0,0.0,725),(10398,369142,0.0,0.0,0.0,725),(10399,369146,0.0,0.0,0.0,725),(10400,368939,0.0,0.0,0.0,725),(10401,369150,0.0,0.0,0.0,725),(10402,368940,0.0,0.0,0.0,725),(10403,369151,0.0,0.0,0.0,725),(10404,368942,0.0,0.0,0.0,725),(10405,369165,0.0,0.0,0.0,725),(10406,369166,0.0,0.0,0.0,725),(10407,368962,0.0,0.0,0.0,725),(10408,368961,0.0,0.0,0.0,725),(10409,368963,0.0,0.0,0.0,725),(10410,369167,0.0,0.0,0.0,725),(10411,369089,0.0,0.0,0.0,725),(10412,368964,0.0,0.0,0.0,725),(10413,369179,0.0,0.0,0.0,725),(10414,368967,0.0,0.0,0.0,725),(10415,369178,0.0,0.0,0.0,725),(10416,369023,0.0,0.0,0.0,725),(10417,368929,0.0,0.0,0.0,725),(10418,369183,0.0,0.0,0.0,725),(10419,370621,0.0,0.0,0.0,725),(10420,369098,0.0,0.0,0.0,725),(10421,368971,0.0,0.0,0.0,725),(10422,369169,0.0,0.0,0.0,725),(10423,368973,0.0,0.0,0.0,725),(10424,369176,0.0,0.0,0.0,725),(10425,369096,0.0,0.0,0.0,725),(10426,368993,0.0,0.0,0.0,725),(10427,369095,0.0,0.0,0.0,725),(10428,368992,0.0,0.0,0.0,725),(10429,369091,0.0,0.0,0.0,725),(10430,368991,0.0,0.0,0.0,725),(10431,369090,0.0,0.0,0.0,725),(10432,369092,0.0,0.0,0.0,725),(10433,369093,0.0,0.0,0.0,725),(10434,368968,0.0,0.0,0.0,725),(10435,369133,0.0,0.0,0.0,725),(10436,369130,0.0,0.0,0.0,725),(10437,368989,0.0,0.0,0.0,725),(10438,368982,0.0,0.0,0.0,725),(10439,369131,0.0,0.0,0.0,725),(10440,368979,0.0,0.0,0.0,725),(10441,369124,0.0,0.0,0.0,725),(10442,368980,0.0,0.0,0.0,725),(10443,368977,0.0,0.0,0.0,725),(10444,370988,0.0,0.0,0.0,725),(10445,368978,0.0,0.0,0.0,725),(10446,370993,0.0,0.0,0.0,725),(10447,368974,0.0,0.0,0.0,725),(10448,368976,0.0,0.0,0.0,725),(10449,368972,0.0,0.0,0.0,725),(10450,368955,0.0,0.0,0.0,725),(10451,368864,0.0,0.0,0.0,725),(10452,368953,0.0,0.0,0.0,725),(10453,369232,0.0,0.0,0.0,725),(10454,369229,0.0,0.0,0.0,725),(10455,368952,0.0,0.0,0.0,725),(10456,368951,0.0,0.0,0.0,725),(10457,369224,0.0,0.0,0.0,725),(10458,368950,0.0,0.0,0.0,725),(10459,369211,0.0,0.0,0.0,725),(10460,369206,0.0,0.0,0.0,725),(10461,368948,0.0,0.0,0.0,725),(10462,369207,0.0,0.0,0.0,725),(10463,369203,0.0,0.0,0.0,725),(10464,368947,0.0,0.0,0.0,725),(10465,369204,0.0,0.0,0.0,725),(10466,368946,0.0,0.0,0.0,725),(10467,369200,0.0,0.0,0.0,725),(10468,368945,0.0,0.0,0.0,725),(10469,368944,0.0,0.0,0.0,725),(10470,368943,0.0,0.0,0.0,725),(10471,369094,0.0,0.0,0.0,725),(10472,368941,0.0,0.0,0.0,725),(10473,369168,0.0,0.0,0.0,725),(10474,369175,0.0,0.0,0.0,725),(10475,369173,0.0,0.0,0.0,725),(10476,369180,0.0,0.0,0.0,725),(10477,369138,0.0,0.0,0.0,725),(10478,369174,0.0,0.0,0.0,725),(10479,365650,0.0,0.0,0.0,725),(10480,369014,0.0,0.0,0.0,725),(10481,368882,0.0,0.0,0.0,725),(10482,369012,0.0,0.0,0.0,725),(10483,368883,0.0,0.0,0.0,725),(10484,368884,0.0,0.0,0.0,725),(10485,368885,0.0,0.0,0.0,725),(10486,368999,0.0,0.0,0.0,725),(10487,368886,0.0,0.0,0.0,725),(10488,369011,0.0,0.0,0.0,725),(10489,368888,0.0,0.0,0.0,725),(10490,368889,0.0,0.0,0.0,725),(10491,369003,0.0,0.0,0.0,725),(10492,368833,0.0,0.0,0.0,725),(10493,369010,0.0,0.0,0.0,725),(10494,368836,0.0,0.0,0.0,725),(10495,368996,0.0,0.0,0.0,725),(10496,368998,0.0,0.0,0.0,725),(10497,368995,0.0,0.0,0.0,725),(10498,368850,0.0,0.0,0.0,725),(10499,368994,0.0,0.0,0.0,725),(10500,368990,0.0,0.0,0.0,725),(10501,368985,0.0,0.0,0.0,725),(10502,370530,0.0,0.0,0.0,725),(10503,368988,0.0,0.0,0.0,725),(10504,368981,0.0,0.0,0.0,725),(10505,368960,0.0,0.0,0.0,725),(10506,368959,0.0,0.0,0.0,725),(10507,368983,0.0,0.0,0.0,725),(10508,368957,0.0,0.0,0.0,725),(10509,368930,0.0,0.0,0.0,725),(10510,368958,0.0,0.0,0.0,725),(10511,368956,0.0,0.0,0.0,725),(10512,368932,0.0,0.0,0.0,725),(10513,368954,0.0,0.0,0.0,725),(10514,368933,0.0,0.0,0.0,725),(10515,369240,0.0,0.0,0.0,725),(10516,369804,0.0,0.0,0.0,870),(10517,369933,0.0,0.0,0.0,870),(10518,369513,0.0,0.0,0.0,870),(10519,371197,0.0,0.0,0.0,870),(10520,371068,0.0,0.0,0.0,870),(10521,371371,0.0,0.0,0.0,870),(10522,371278,0.0,0.0,0.0,870),(10523,371289,0.0,0.0,0.0,870),(10524,371313,0.0,0.0,0.0,870),(10525,371315,0.0,0.0,0.0,870),(10526,371210,0.0,0.0,0.0,870),(10527,371120,0.0,0.0,0.0,870),(10528,371142,0.0,0.0,0.0,870),(10529,371145,0.0,0.0,0.0,870),(10530,370658,0.0,0.0,0.0,870),(10531,371104,0.0,0.0,0.0,870),(10532,371503,0.0,0.0,0.0,870),(10533,371527,0.0,0.0,0.0,870),(10534,371626,0.0,0.0,0.0,870),(10535,371677,0.0,0.0,0.0,870),(10536,371658,0.0,0.0,0.0,870),(10537,371622,0.0,0.0,0.0,870),(10538,371611,0.0,0.0,0.0,870),(10539,371577,0.0,0.0,0.0,870),(10540,371575,0.0,0.0,0.0,870),(10541,371509,0.0,0.0,0.0,870),(10542,371498,0.0,0.0,0.0,870),(10543,371479,0.0,0.0,0.0,870),(10544,371461,0.0,0.0,0.0,870),(10545,364988,0.0,0.0,0.0,870),(10546,371746,0.0,0.0,0.0,870),(10547,371409,0.0,0.0,0.0,870),(10548,371525,0.0,0.0,0.0,870),(10549,371556,0.0,0.0,0.0,870),(10550,371419,0.0,0.0,0.0,870),(10551,371802,0.0,0.0,0.0,870),(10552,371752,0.0,0.0,0.0,870),(10553,371791,0.0,0.0,0.0,870),(10554,371830,0.0,0.0,0.0,870),(10555,369651,0.0,0.0,0.0,870),(10556,371975,0.0,0.0,0.0,1310),(10557,371933,0.0,0.0,0.0,1310),(10558,371924,0.0,0.0,0.0,1310),(10559,369597,0.0,0.0,0.0,1310),(10560,372100,0.0,0.0,0.0,1310),(10561,372098,0.0,0.0,0.0,1310),(10562,372058,0.0,0.0,0.0,1310),(10563,372026,0.0,0.0,0.0,1310),(10564,371957,0.0,0.0,0.0,1310),(10565,371938,0.0,0.0,0.0,1310),(10566,371930,0.0,0.0,0.0,1310),(10567,371896,0.0,0.0,0.0,1310),(10568,371884,0.0,0.0,0.0,1310),(10569,371882,0.0,0.0,0.0,1310),(10570,371856,0.0,0.0,0.0,1310),(10571,366585,0.0,0.0,0.0,1310),(10572,366573,0.0,0.0,0.0,1310),(10573,366570,0.0,0.0,0.0,1310),(10574,366563,0.0,0.0,0.0,1310),(10575,366542,0.0,0.0,0.0,1310),(10576,370529,0.0,0.0,0.0,1310),(10577,370469,0.0,0.0,0.0,1310),(10578,371813,0.0,0.0,0.0,1310),(10579,371799,0.0,0.0,0.0,1310),(10580,371694,0.0,0.0,0.0,1310),(10581,371678,0.0,0.0,0.0,1310),(10582,371672,0.0,0.0,0.0,1310),(10583,371637,0.0,0.0,0.0,1310),(10584,371570,0.0,0.0,0.0,1310),(10585,371562,0.0,0.0,0.0,1310),(10586,371559,0.0,0.0,0.0,1310),(10587,371532,0.0,0.0,0.0,1310),(10588,371522,0.0,0.0,0.0,1310),(10589,371499,0.0,0.0,0.0,1310),(10590,371488,0.0,0.0,0.0,1310),(10591,371483,0.0,0.0,0.0,1310),(10592,371440,0.0,0.0,0.0,1310),(10593,371435,0.0,0.0,0.0,1310),(10594,366463,0.0,0.0,0.0,1310),(10595,366440,0.0,0.0,0.0,1310),(10596,366425,0.0,0.0,0.0,1310),(10597,366722,0.0,0.0,0.0,1310),(10598,366720,0.0,0.0,0.0,1310),(10599,366692,0.0,0.0,0.0,1310),(10600,366689,0.0,0.0,0.0,1310),(10601,366686,0.0,0.0,0.0,1310),(10602,366680,0.0,0.0,0.0,1310),(10603,366675,0.0,0.0,0.0,1310),(10604,366665,0.0,0.0,0.0,1310),(10605,366652,0.0,0.0,0.0,1310),(10606,371384,0.0,0.0,0.0,1310),(10607,366418,0.0,0.0,0.0,1310),(10608,366395,0.0,0.0,0.0,1310),(10609,366370,0.0,0.0,0.0,1310),(10610,366367,0.0,0.0,0.0,1310),(10611,366346,0.0,0.0,0.0,1310),(10612,369677,0.0,0.0,0.0,1310),(10613,369614,0.0,0.0,0.0,1310),(10614,369613,0.0,0.0,0.0,1310),(10615,369610,0.0,0.0,0.0,1310),(10616,369579,0.0,0.0,0.0,1310),(10617,370418,0.0,0.0,0.0,1310),(10618,370415,0.0,0.0,0.0,1310),(10619,370393,0.0,0.0,0.0,1310),(10620,370381,0.0,0.0,0.0,1310),(10621,370366,0.0,0.0,0.0,1310),(10622,370308,0.0,0.0,0.0,1310),(10623,370276,0.0,0.0,0.0,1310),(10624,370274,0.0,0.0,0.0,1310),(10625,370272,0.0,0.0,0.0,1310),(10626,371318,0.0,0.0,0.0,1310),(10627,371293,0.0,0.0,0.0,1310),(10628,371286,0.0,0.0,0.0,1310),(10629,371271,0.0,0.0,0.0,1310),(10630,371263,0.0,0.0,0.0,1310),(10631,371212,0.0,0.0,0.0,1310),(10632,371178,0.0,0.0,0.0,1310),(10633,371114,0.0,0.0,0.0,1310),(10634,371004,0.0,0.0,0.0,1310),(10635,371003,0.0,0.0,0.0,1310),(10636,370997,0.0,0.0,0.0,1310),(10637,370952,0.0,0.0,0.0,1310),(10638,370951,0.0,0.0,0.0,1310),(10639,370844,0.0,0.0,0.0,1310),(10640,370832,0.0,0.0,0.0,1310),(10641,370778,0.0,0.0,0.0,1310),(10642,370748,0.0,0.0,0.0,1310),(10643,366325,0.0,0.0,0.0,1310),(10644,370723,0.0,0.0,0.0,1310),(10645,366323,0.0,0.0,0.0,1310),(10646,370653,0.0,0.0,0.0,1310),(10647,366320,0.0,0.0,0.0,1310),(10648,370641,0.0,0.0,0.0,1310),(10649,366316,0.0,0.0,0.0,1310),(10650,370158,0.0,0.0,0.0,1310),(10651,366315,0.0,0.0,0.0,1310),(10652,366998,0.0,0.0,0.0,1310),(10653,366995,0.0,0.0,0.0,1310),(10654,366973,0.0,0.0,0.0,1310),(10655,366937,0.0,0.0,0.0,1310),(10656,366902,0.0,0.0,0.0,1310),(10657,370150,0.0,0.0,0.0,1310),(10658,366897,0.0,0.0,0.0,1310),(10659,370143,0.0,0.0,0.0,1310),(10660,367985,0.0,0.0,0.0,1310),(10661,367972,0.0,0.0,0.0,1310),(10662,367961,0.0,0.0,0.0,1310),(10663,368012,0.0,0.0,0.0,1310),(10664,368011,0.0,0.0,0.0,1310),(10665,367999,0.0,0.0,0.0,1310),(10666,369955,0.0,0.0,0.0,1310),(10667,367986,0.0,0.0,0.0,1310),(10668,368227,0.0,0.0,0.0,1310),(10669,369948,0.0,0.0,0.0,1310),(10670,369945,0.0,0.0,0.0,1310),(10671,368225,0.0,0.0,0.0,1310),(10672,369932,0.0,0.0,0.0,1310),(10673,369927,0.0,0.0,0.0,1310),(10674,366612,0.0,0.0,0.0,1310),(10675,366593,0.0,0.0,0.0,1310),(10676,366831,0.0,0.0,0.0,1310),(10677,366805,0.0,0.0,0.0,1310),(10678,366798,0.0,0.0,0.0,1310),(10679,366783,0.0,0.0,0.0,1310),(10680,366753,0.0,0.0,0.0,1310),(10681,366833,0.0,0.0,0.0,1310),(10682,366345,0.0,0.0,0.0,1310),(10683,366344,0.0,0.0,0.0,1310),(10684,366293,0.0,0.0,0.0,1310),(10685,369924,0.0,0.0,0.0,1310),(10686,360884,0.0,0.0,0.0,1310),(10687,372092,0.0,0.0,0.0,1310),(10688,372062,0.0,0.0,0.0,1310),(10689,368219,0.0,0.0,0.0,1310),(10690,369918,0.0,0.0,0.0,1310),(10691,369899,0.0,0.0,0.0,1310),(10692,368209,0.0,0.0,0.0,1310),(10693,369897,0.0,0.0,0.0,1310),(10694,368196,0.0,0.0,0.0,1310),(10695,370627,0.0,0.0,0.0,1310),(10696,370617,0.0,0.0,0.0,1310),(10697,368169,0.0,0.0,0.0,1310),(10698,370612,0.0,0.0,0.0,1310),(10699,370599,0.0,0.0,0.0,1310),(10700,368285,0.0,0.0,0.0,1310),(10701,370597,0.0,0.0,0.0,1310),(10702,368270,0.0,0.0,0.0,1310),(10703,368260,0.0,0.0,0.0,1310),(10704,368249,0.0,0.0,0.0,1310),(10705,367946,0.0,0.0,0.0,1310),(10706,367934,0.0,0.0,0.0,1310),(10707,367921,0.0,0.0,0.0,1310),(10708,368167,0.0,0.0,0.0,1310),(10709,368154,0.0,0.0,0.0,1310),(10710,368153,0.0,0.0,0.0,1310),(10711,368028,0.0,0.0,0.0,1310),(10712,368019,0.0,0.0,0.0,1310),(10713,367902,0.0,0.0,0.0,1310),(10714,370577,0.0,0.0,0.0,1310),(10715,370568,0.0,0.0,0.0,1310),(10716,370549,0.0,0.0,0.0,1310),(10717,367880,0.0,0.0,0.0,1310),(10718,371989,0.0,0.0,0.0,1310),(10719,369316,0.0,0.0,0.0,1310),(10720,369279,0.0,0.0,0.0,1310),(10721,368384,0.0,0.0,0.0,1310),(10722,368811,0.0,0.0,0.0,1310),(10723,368810,0.0,0.0,0.0,1310),(10724,368363,0.0,0.0,0.0,1310),(10725,368805,0.0,0.0,0.0,1310),(10726,368798,0.0,0.0,0.0,1310),(10727,368360,0.0,0.0,0.0,1310),(10728,368750,0.0,0.0,0.0,1310),(10729,369379,0.0,0.0,0.0,1310),(10730,368686,0.0,0.0,0.0,1310),(10731,369576,0.0,0.0,0.0,1310),(10732,369564,0.0,0.0,0.0,1310),(10733,368671,0.0,0.0,0.0,1310),(10734,369538,0.0,0.0,0.0,1310),(10735,368645,0.0,0.0,0.0,1310),(10736,368623,0.0,0.0,0.0,1310),(10737,369474,0.0,0.0,0.0,1310),(10738,369465,0.0,0.0,0.0,1310),(10739,368619,0.0,0.0,0.0,1310),(10740,369436,0.0,0.0,0.0,1310),(10741,368616,0.0,0.0,0.0,1310),(10742,368608,0.0,0.0,0.0,1310),(10743,369423,0.0,0.0,0.0,1310),(10744,368596,0.0,0.0,0.0,1310),(10745,369386,0.0,0.0,0.0,1310),(10746,368563,0.0,0.0,0.0,1310),(10747,369378,0.0,0.0,0.0,1310),(10748,368558,0.0,0.0,0.0,1310),(10749,368545,0.0,0.0,0.0,1310),(10750,369356,0.0,0.0,0.0,1310),(10751,369338,0.0,0.0,0.0,1310),(10752,369327,0.0,0.0,0.0,1310),(10753,368515,0.0,0.0,0.0,1310),(10754,368503,0.0,0.0,0.0,1310),(10755,369325,0.0,0.0,0.0,1310),(10756,368461,0.0,0.0,0.0,1310),(10757,368436,0.0,0.0,0.0,1310),(10758,369318,0.0,0.0,0.0,1310),(10759,370268,0.0,0.0,0.0,1310),(10760,369883,0.0,0.0,0.0,1310),(10761,366762,0.0,0.0,0.0,1310),(10762,369864,0.0,0.0,0.0,1310),(10763,366454,0.0,0.0,0.0,1310),(10764,369838,0.0,0.0,0.0,1310),(10765,369818,0.0,0.0,0.0,1310),(10766,369813,0.0,0.0,0.0,1310),(10767,369790,0.0,0.0,0.0,1310),(10768,369749,0.0,0.0,0.0,1310),(10769,369724,0.0,0.0,0.0,1310),(10770,366748,0.0,0.0,0.0,1310),(10771,366743,0.0,0.0,0.0,1310),(10772,369707,0.0,0.0,0.0,1310),(10773,369700,0.0,0.0,0.0,1310),(10774,366830,0.0,0.0,0.0,1310),(10775,368350,0.0,0.0,0.0,1310),(10776,366851,0.0,0.0,0.0,1310),(10777,368345,0.0,0.0,0.0,1310),(10778,366767,0.0,0.0,0.0,1310),(10779,366896,0.0,0.0,0.0,1310),(10780,368343,0.0,0.0,0.0,1310),(10781,368340,0.0,0.0,0.0,1310),(10782,366879,0.0,0.0,0.0,1310),(10783,366869,0.0,0.0,0.0,1310),(10784,368304,0.0,0.0,0.0,1310),(10785,366735,0.0,0.0,0.0,1310),(10786,366674,0.0,0.0,0.0,1310),(10787,368405,0.0,0.0,0.0,1310),(10788,368393,0.0,0.0,0.0,1310),(10789,366565,0.0,0.0,0.0,1310),(10790,366545,0.0,0.0,0.0,1310),(10791,366472,0.0,0.0,0.0,1310),(10792,366456,0.0,0.0,0.0,1310),(10793,367395,0.0,0.0,0.0,1310),(10794,367392,0.0,0.0,0.0,1310),(10795,367383,0.0,0.0,0.0,1310),(10796,368392,0.0,0.0,0.0,1310),(10797,367363,0.0,0.0,0.0,1310),(10798,368387,0.0,0.0,0.0,1310),(10799,367166,0.0,0.0,0.0,1310),(10800,367156,0.0,0.0,0.0,1310),(10801,367092,0.0,0.0,0.0,1310),(10802,367062,0.0,0.0,0.0,1310),(10803,367005,0.0,0.0,0.0,1310),(10804,368018,0.0,0.0,0.0,1310),(10805,366303,0.0,0.0,0.0,1310),(10806,366447,0.0,0.0,0.0,1310),(10807,366423,0.0,0.0,0.0,1310),(10808,366419,0.0,0.0,0.0,1310),(10809,366403,0.0,0.0,0.0,1310),(10810,366349,0.0,0.0,0.0,1310),(10811,366852,0.0,0.0,0.0,1310),(10812,366857,0.0,0.0,0.0,1310),(10813,366895,0.0,0.0,0.0,1310),(10814,366926,0.0,0.0,0.0,1310),(10815,366939,0.0,0.0,0.0,1310),(10816,366941,0.0,0.0,0.0,1310),(10817,366943,0.0,0.0,0.0,1310),(10818,366975,0.0,0.0,0.0,1310),(10819,366982,0.0,0.0,0.0,1310),(10820,366985,0.0,0.0,0.0,1310),(10821,367001,0.0,0.0,0.0,1310),(10822,367013,0.0,0.0,0.0,1310),(10823,367014,0.0,0.0,0.0,1310),(10824,367015,0.0,0.0,0.0,1310),(10825,367027,0.0,0.0,0.0,1310),(10826,367075,0.0,0.0,0.0,1310),(10827,367087,0.0,0.0,0.0,1310),(10828,367117,0.0,0.0,0.0,1310),(10829,372041,0.0,0.0,0.0,554),(10830,372036,0.0,0.0,0.0,540),(10831,372035,0.0,0.0,0.0,554),(10832,372042,0.0,0.0,0.0,696),(10833,372039,0.0,0.0,0.0,532),(10834,372037,0.0,0.0,0.0,526),(10835,369580,0.0,0.0,0.0,740),(10836,370185,0.0,0.0,0.0,530),(10837,370182,0.0,0.0,0.0,532),(10838,369773,0.0,0.0,0.0,535),(10839,371380,0.0,0.0,0.0,745),(10840,371688,0.0,0.0,0.0,556),(10841,369581,0.0,0.0,0.0,730),(10842,370199,0.0,0.0,0.0,544),(10843,370187,0.0,0.0,0.0,560),(10844,370188,0.0,0.0,0.0,550),(10845,371713,0.0,0.0,0.0,526),(10846,367159,0.0,0.0,0.0,1310),(10847,367781,0.0,0.0,0.0,1310),(10848,367788,0.0,0.0,0.0,1310),(10849,367794,0.0,0.0,0.0,1310),(10850,367795,0.0,0.0,0.0,1310),(10851,367807,0.0,0.0,0.0,1310),(10852,367816,0.0,0.0,0.0,1310),(10853,367821,0.0,0.0,0.0,1310),(10854,367825,0.0,0.0,0.0,1310),(10855,367830,0.0,0.0,0.0,1310),(10856,367838,0.0,0.0,0.0,1310),(10857,367842,0.0,0.0,0.0,1310),(10858,367845,0.0,0.0,0.0,1320),(10859,367877,0.0,0.0,0.0,1310),(10860,371188,0.0,0.0,0.0,750),(10861,371745,0.0,0.0,0.0,754),(10862,371776,0.0,0.0,0.0,532),(10863,371999,0.0,0.0,0.0,782),(10864,371716,0.0,0.0,0.0,750),(10865,371689,0.0,0.0,0.0,554),(10866,371377,0.0,0.0,0.0,542),(10867,368495,0.0,0.0,0.0,560),(10868,371720,0.0,0.0,0.0,750),(10869,371934,0.0,0.0,0.0,786),(10870,371378,0.0,0.0,0.0,815),(10871,371417,0.0,0.0,0.0,504),(10872,372022,0.0,0.0,0.0,504),(10873,371600,0.0,0.0,0.0,504),(10874,371599,0.0,0.0,0.0,506),(10875,371204,0.0,0.0,0.0,508),(10876,371779,0.0,0.0,0.0,324),(10877,364719,0.0,0.0,0.0,774),(10878,363251,0.0,0.0,0.0,774),(10879,364726,0.0,0.0,0.0,774),(10880,371793,0.0,0.0,0.0,816),(10881,372049,0.0,0.0,0.0,748),(10882,371108,0.0,0.0,0.0,502),(10883,371220,0.0,0.0,0.0,576),(10884,371025,0.0,0.0,0.0,760),(10885,368790,0.0,0.0,0.0,760),(10886,368024,0.0,0.0,0.0,752),(10887,367088,0.0,0.0,0.0,796),(10888,366774,0.0,0.0,0.0,760),(10889,366691,0.0,0.0,0.0,766),(10890,366019,0.0,0.0,0.0,566),(10891,371937,0.0,0.0,0.0,566),(10892,368487,0.0,0.0,0.0,780),(10893,368421,0.0,0.0,0.0,782),(10894,372043,0.0,0.0,0.0,706),(10895,372046,0.0,0.0,0.0,706),(10896,372048,0.0,0.0,0.0,706),(10897,367741,0.0,0.0,0.0,778),(10898,371794,0.0,0.0,0.0,778),(10899,372033,0.0,0.0,0.0,778),(10900,372008,0.0,0.0,0.0,784),(10901,371657,0.0,0.0,0.0,784),(10902,371466,0.0,0.0,0.0,784),(10903,371323,0.0,0.0,0.0,784),(10904,371072,0.0,0.0,0.0,744),(10905,365777,33.0,25.0,11.0,1428),(10906,372585,33.0,25.0,11.0,1044),(10907,366354,39.0,29.0,17.0,1610),(10908,366464,33.0,25.0,11.0,1296),(10909,370498,33.0,25.0,11.0,1290),(10910,369410,33.0,25.0,11.0,1282),(10911,367776,33.0,25.0,11.0,1286),(10912,367471,33.0,25.0,11.0,1284),(10913,367385,33.0,25.0,11.0,1282),(10914,372212,33.0,25.0,11.0,1294),(10915,369518,30.0,24.0,6.0,560),(10916,369844,30.0,24.0,6.0,580),(10917,367120,0.0,0.0,0.0,1310),(10918,371360,30.0,24.0,14.0,1044),(10919,369860,30.0,24.0,14.0,1050),(10920,371950,30.0,24.0,14.0,742),(10921,372030,30.0,24.0,14.0,600),(10922,372586,39.0,29.0,17.0,1426),(10923,371102,46.0,29.0,22.0,2020),(10924,371050,33.0,25.0,11.0,1290),(10925,368715,33.0,25.0,11.0,770),(10926,372633,33.0,25.0,11.0,772),(10927,368767,33.0,25.0,11.0,766),(10928,372443,33.0,25.0,11.0,860),(10929,372137,33.0,25.0,11.0,860),(10930,366511,33.0,25.0,11.0,1296),(10931,367808,33.0,25.0,11.0,1294),(10932,371576,33.0,25.0,11.0,776),(10933,371338,33.0,25.0,11.0,776),(10934,371470,33.0,25.0,11.0,766),(10935,372121,33.0,25.0,11.0,860),(10936,371554,33.0,25.0,11.0,860),(10937,372164,33.0,25.0,11.0,856),(10938,372167,33.0,25.0,11.0,860),(10939,367410,33.0,25.0,11.0,1288),(10940,370557,33.0,25.0,11.0,1280),(10941,371748,33.0,25.0,11.0,1510),(10942,372943,30.0,24.0,6.0,370),(10943,372666,46.0,29.0,22.0,1784),(10944,366186,30.0,24.0,14.0,740),(10945,367789,39.0,29.0,17.0,1310),(10946,366185,30.0,24.0,14.0,662),(10947,372171,30.0,24.0,14.0,506),(10948,367581,30.0,24.0,14.0,680),(10949,366230,30.0,24.0,14.0,670),(10950,371038,30.0,24.0,14.0,912),(10951,366411,30.0,24.0,14.0,676),(10952,366539,30.0,24.0,14.0,894),(10953,366165,30.0,24.0,14.0,886),(10954,366189,30.0,24.0,14.0,674),(10955,366804,30.0,24.0,14.0,758),(10956,368462,30.0,24.0,14.0,494),(10957,372817,30.0,24.0,14.0,562),(10958,369756,30.0,24.0,14.0,758),(10959,372885,30.0,24.0,14.0,560),(10960,371421,30.0,24.0,14.0,668),(10961,371351,30.0,24.0,14.0,652),(10962,372912,30.0,24.0,14.0,528),(10963,372753,30.0,24.0,14.0,734),(10964,372755,30.0,24.0,14.0,1018),(10965,372646,0.0,0.0,0.0,405),(10966,367422,0.0,0.0,0.0,1320),(10967,367432,0.0,0.0,0.0,1320),(10968,367440,0.0,0.0,0.0,1320),(10969,367445,0.0,0.0,0.0,1320),(10970,367447,0.0,0.0,0.0,1320),(10971,367455,0.0,0.0,0.0,1320),(10972,367458,0.0,0.0,0.0,1320),(10973,367464,0.0,0.0,0.0,1320),(10974,367467,0.0,0.0,0.0,1320),(10975,367468,0.0,0.0,0.0,1320),(10976,367477,0.0,0.0,0.0,1320),(10977,367479,0.0,0.0,0.0,1320),(10978,367483,0.0,0.0,0.0,1320),(10979,367486,0.0,0.0,0.0,1320),(10980,367495,0.0,0.0,0.0,1320),(10981,367506,0.0,0.0,0.0,1320),(10982,367532,0.0,0.0,0.0,1320),(10983,367544,0.0,0.0,0.0,1320),(10984,367557,0.0,0.0,0.0,1320),(10985,367572,0.0,0.0,0.0,1320),(10986,367574,0.0,0.0,0.0,1320),(10987,367578,0.0,0.0,0.0,1320),(10988,367595,0.0,0.0,0.0,1320),(10989,367613,0.0,0.0,0.0,1320),(10990,367623,0.0,0.0,0.0,1320),(10991,367627,0.0,0.0,0.0,1320),(10992,367693,0.0,0.0,0.0,1320),(10993,367703,0.0,0.0,0.0,1320),(10994,367714,0.0,0.0,0.0,1320),(10995,367722,0.0,0.0,0.0,1320),(10996,367727,0.0,0.0,0.0,1320),(10997,367740,0.0,0.0,0.0,1320),(10998,367742,0.0,0.0,0.0,1320),(10999,367745,0.0,0.0,0.0,1320),(11000,367749,0.0,0.0,0.0,1320),(11001,367774,0.0,0.0,0.0,1320),(11002,367360,0.0,0.0,0.0,1320),(11003,367375,0.0,0.0,0.0,1320),(11004,367381,0.0,0.0,0.0,1320),(11005,367384,0.0,0.0,0.0,1320),(11006,367391,0.0,0.0,0.0,1320),(11007,367393,0.0,0.0,0.0,1320),(11008,367404,0.0,0.0,0.0,1320),(11009,367420,0.0,0.0,0.0,1320),(11010,367424,0.0,0.0,0.0,1320),(11011,367434,0.0,0.0,0.0,1320),(11012,367439,0.0,0.0,0.0,1320),(11013,367452,0.0,0.0,0.0,1320),(11014,367454,0.0,0.0,0.0,1320),(11015,367463,0.0,0.0,0.0,1320),(11016,367470,0.0,0.0,0.0,1320),(11017,367482,0.0,0.0,0.0,1320),(11018,367485,0.0,0.0,0.0,1320),(11019,367487,0.0,0.0,0.0,1320),(11020,367511,0.0,0.0,0.0,1320),(11021,367524,0.0,0.0,0.0,1320),(11022,367407,0.0,0.0,0.0,1320),(11023,367413,0.0,0.0,0.0,1320),(11024,367415,0.0,0.0,0.0,1320),(11025,372802,33.0,25.0,11.0,900),(11026,372913,33.0,25.0,11.0,900),(11027,372948,30.0,24.0,14.0,1100),(11028,373290,30.0,24.0,14.0,1064),(11029,373102,30.0,24.0,14.0,890),(11030,373093,33.0,25.0,11.0,1300),(11031,373054,33.0,25.0,11.0,900),(11032,373055,30.0,24.0,14.0,530),(11033,372944,33.0,25.0,11.0,874),(11034,371240,33.0,25.0,11.0,1310),(11035,369741,33.0,25.0,11.0,1308),(11036,373059,30.0,24.0,14.0,1206),(11037,372018,33.0,25.0,11.0,1305),(11038,369617,33.0,25.0,11.0,1304),(11039,371496,33.0,25.0,11.0,1304),(11040,371610,33.0,25.0,11.0,1316),(11041,372334,33.0,25.0,11.0,1296),(11042,372882,33.0,25.0,11.0,1310),(11043,366940,33.0,25.0,11.0,905),(11044,372069,33.0,25.0,11.0,905),(11045,371912,33.0,25.0,11.0,908),(11046,371262,33.0,25.0,11.0,905),(11047,371873,33.0,25.0,11.0,905),(11048,371881,33.0,25.0,11.0,905),(11049,371855,33.0,25.0,11.0,905),(11050,371442,33.0,25.0,11.0,815),(11051,371557,33.0,25.0,11.0,815),(11052,371823,33.0,25.0,11.0,815),(11053,370691,33.0,25.0,11.0,816),(11054,367944,33.0,25.0,11.0,820),(11055,368524,33.0,25.0,11.0,815),(11056,367534,33.0,25.0,11.0,780),(11057,371907,33.0,25.0,11.0,1392),(11058,372097,33.0,25.0,11.0,900),(11059,372207,33.0,25.0,11.0,900),(11060,372007,33.0,25.0,11.0,900),(11061,373000,33.0,25.0,11.0,778),(11062,373080,33.0,25.0,11.0,594),(11063,368380,33.0,25.0,11.0,1070),(11064,373141,33.0,25.0,11.0,778),(11065,372774,33.0,25.0,11.0,778),(11066,373110,33.0,25.0,11.0,524),(11067,373323,33.0,25.0,11.0,628),(11068,372272,30.0,24.0,14.0,530),(11069,372172,30.0,24.0,14.0,666),(11070,372044,30.0,24.0,14.0,760),(11071,372216,30.0,24.0,6.0,356),(11072,372047,30.0,24.0,14.0,712),(11073,366283,46.0,29.0,22.0,708),(11074,366314,39.0,29.0,17.0,1270),(11075,366432,39.0,29.0,17.0,1518),(11076,366311,39.0,29.0,17.0,1856),(11077,371292,39.0,29.0,17.0,1538),(11078,368760,30.0,24.0,14.0,1310),(11079,368149,30.0,24.0,14.0,1310),(11080,371894,33.0,25.0,11.0,900),(11081,371903,33.0,25.0,11.0,900),(11082,371862,33.0,25.0,11.0,900),(11083,372173,33.0,25.0,11.0,900),(11084,372112,33.0,25.0,11.0,890),(11085,372435,33.0,25.0,11.0,900),(11086,372264,33.0,25.0,11.0,900),(11087,372565,33.0,25.0,11.0,900),(11088,372162,33.0,25.0,11.0,900),(11089,366605,39.0,29.0,17.0,2030),(11090,367540,33.0,25.0,11.0,1305),(11091,366604,33.0,25.0,11.0,1305),(11092,366763,33.0,25.0,11.0,1305),(11093,369453,39.0,29.0,17.0,2040),(11094,366781,33.0,25.0,11.0,1300),(11095,365662,30.0,24.0,14.0,1310),(11096,372406,30.0,24.0,14.0,952),(11097,371963,30.0,24.0,14.0,816),(11098,372577,30.0,24.0,14.0,506),(11099,372209,30.0,24.0,14.0,498),(11100,372159,39.0,29.0,17.0,1476),(11101,372109,30.0,24.0,14.0,574),(11102,370720,39.0,29.0,17.0,1760),(11103,372923,30.0,24.0,14.0,848),(11104,365826,39.0,29.0,17.0,1551),(11105,371824,30.0,24.0,14.0,988),(11106,370484,30.0,24.0,14.0,970),(11107,371887,30.0,24.0,14.0,728),(11108,366648,30.0,24.0,14.0,512),(11109,366778,39.0,29.0,17.0,1638),(11110,367810,30.0,24.0,14.0,1310),(11111,372125,30.0,24.0,14.0,1305),(11112,370838,30.0,24.0,14.0,1305),(11113,371250,30.0,24.0,14.0,1310),(11114,371016,30.0,24.0,14.0,1310),(11115,372091,30.0,24.0,14.0,758),(11116,371375,30.0,24.0,14.0,758),(11117,370945,30.0,24.0,14.0,754),(11118,369612,30.0,24.0,14.0,754),(11119,369570,30.0,24.0,14.0,1184),(11120,370486,30.0,24.0,14.0,754),(11121,367666,30.0,24.0,14.0,754),(11122,367809,30.0,24.0,14.0,756),(11123,373299,30.0,24.0,14.0,574),(11124,371935,30.0,24.0,14.0,600),(11125,372972,30.0,24.0,14.0,826),(11126,372988,30.0,24.0,14.0,590),(11127,372644,30.0,24.0,14.0,600),(11128,372639,33.0,25.0,11.0,894),(11129,373112,46.0,29.0,22.0,1780),(11130,363497,30.0,24.0,14.0,762),(11131,366388,30.0,24.0,14.0,746),(11132,366579,30.0,24.0,14.0,760),(11133,367431,30.0,24.0,14.0,760),(11134,368192,46.0,29.0,16.0,2510),(11135,367419,33.0,25.0,11.0,1300),(11136,367106,33.0,25.0,11.0,1300),(11137,367597,33.0,25.0,11.0,1305),(11138,366378,33.0,25.0,11.0,1310),(11139,367558,33.0,25.0,11.0,1310),(11140,366317,33.0,25.0,11.0,1300),(11141,366924,33.0,25.0,11.0,1310),(11142,366991,33.0,25.0,11.0,1310),(11143,367791,33.0,25.0,11.0,1300),(11144,367705,33.0,25.0,11.0,1300),(11145,367812,33.0,25.0,11.0,1300),(11146,372029,30.0,24.0,14.0,600),(11147,368038,33.0,25.0,11.0,1300),(11148,372308,30.0,24.0,14.0,600),(11149,371904,30.0,24.0,14.0,600),(11150,368749,33.0,25.0,11.0,1300),(11151,368198,33.0,25.0,11.0,1300),(11152,369342,33.0,25.0,11.0,1300),(11153,368603,33.0,25.0,11.0,1300),(11154,368513,33.0,25.0,11.0,1300),(11155,370608,33.0,25.0,11.0,1300),(11156,370685,33.0,25.0,11.0,1300),(11157,370521,33.0,25.0,11.0,1300),(11158,373091,39.0,29.0,17.0,1712),(11159,373315,33.0,25.0,11.0,874),(11160,372747,33.0,25.0,11.0,874),(11161,372895,33.0,25.0,11.0,900),(11162,366171,0.0,0.0,0.0,930),(11163,366167,0.0,0.0,0.0,930),(11164,366524,0.0,0.0,0.0,930),(11165,366159,0.0,0.0,0.0,930),(11166,366173,0.0,0.0,0.0,930),(11167,366509,0.0,0.0,0.0,930),(11168,366503,0.0,0.0,0.0,930),(11169,366508,0.0,0.0,0.0,930),(11170,366502,0.0,0.0,0.0,930),(11171,366513,0.0,0.0,0.0,930),(11172,366514,0.0,0.0,0.0,930),(11173,366515,0.0,0.0,0.0,930),(11174,366516,0.0,0.0,0.0,930),(11175,366517,0.0,0.0,0.0,930),(11176,366510,0.0,0.0,0.0,930),(11177,366519,0.0,0.0,0.0,930),(11178,366521,0.0,0.0,0.0,930),(11179,366522,0.0,0.0,0.0,930),(11180,366523,0.0,0.0,0.0,930),(11181,366534,0.0,0.0,0.0,930),(11182,366533,0.0,0.0,0.0,930),(11183,366531,0.0,0.0,0.0,930),(11184,366532,0.0,0.0,0.0,930),(11185,366530,0.0,0.0,0.0,930),(11186,366529,0.0,0.0,0.0,930),(11187,366528,0.0,0.0,0.0,930),(11188,366526,0.0,0.0,0.0,930),(11189,366527,0.0,0.0,0.0,930),(11190,366536,0.0,0.0,0.0,930),(11191,366505,0.0,0.0,0.0,930),(11192,366160,0.0,0.0,0.0,930),(11193,366501,0.0,0.0,0.0,930),(11194,366153,0.0,0.0,0.0,930),(11195,366506,0.0,0.0,0.0,930),(11196,366682,0.0,0.0,0.0,930),(11197,366701,0.0,0.0,0.0,930),(11198,366699,0.0,0.0,0.0,930),(11199,366525,0.0,0.0,0.0,930),(11200,372113,30.0,24.0,6.0,544),(11201,371407,46.0,29.0,22.0,3030),(11202,372983,46.0,29.0,16.0,1566),(11203,372558,30.0,24.0,14.0,710),(11204,348610,39.0,29.0,17.0,1090),(11205,372302,30.0,24.0,14.0,534),(11206,367991,30.0,24.0,14.0,1034),(11207,371972,30.0,24.0,14.0,686),(11208,372085,46.0,29.0,22.0,2190),(11209,372598,46.0,29.0,16.0,1810),(11210,372763,30.0,24.0,6.0,448),(11211,371394,30.0,24.0,14.0,780),(11212,372620,30.0,24.0,14.0,620),(11213,372019,30.0,24.0,14.0,1120),(11214,370550,30.0,24.0,6.0,480),(11215,372622,0.0,0.0,0.0,888),(11216,366535,0.0,0.0,0.0,1388),(11217,367484,0.0,0.0,0.0,1062),(11218,365540,0.0,0.0,0.0,894),(11219,368814,0.0,0.0,0.0,942),(11220,370995,0.0,0.0,0.0,712),(11221,370991,0.0,0.0,0.0,712),(11222,370989,0.0,0.0,0.0,712),(11223,370986,0.0,0.0,0.0,712),(11224,370255,0.0,0.0,0.0,712),(11225,370249,0.0,0.0,0.0,712),(11226,366471,0.0,0.0,0.0,712),(11227,366362,0.0,0.0,0.0,712),(11228,366251,0.0,0.0,0.0,712),(11229,367586,0.0,0.0,0.0,712),(11230,372050,0.0,0.0,0.0,712),(11231,373009,0.0,0.0,0.0,712),(11232,373281,0.0,0.0,0.0,712),(11233,366169,0.0,0.0,0.0,916),(11234,366151,0.0,0.0,0.0,916),(11235,366161,0.0,0.0,0.0,916),(11236,366158,0.0,0.0,0.0,916),(11237,366157,0.0,0.0,0.0,916),(11238,366156,0.0,0.0,0.0,916),(11239,366162,0.0,0.0,0.0,916),(11240,366482,0.0,0.0,0.0,916),(11241,366163,0.0,0.0,0.0,916),(11242,366164,0.0,0.0,0.0,916),(11243,370385,0.0,0.0,0.0,804),(11244,370202,0.0,0.0,0.0,930),(11245,366168,0.0,0.0,0.0,930),(11246,366538,0.0,0.0,0.0,930),(11247,366520,0.0,0.0,0.0,930),(11248,366172,0.0,0.0,0.0,930),(11249,366149,0.0,0.0,0.0,930),(11250,366155,0.0,0.0,0.0,930),(11251,366152,0.0,0.0,0.0,930),(11252,366483,0.0,0.0,0.0,930),(11253,366484,0.0,0.0,0.0,930),(11254,366486,0.0,0.0,0.0,930),(11255,366485,0.0,0.0,0.0,930),(11256,366488,0.0,0.0,0.0,930),(11257,366487,0.0,0.0,0.0,930),(11258,366489,0.0,0.0,0.0,930),(11259,366491,0.0,0.0,0.0,930),(11260,366492,0.0,0.0,0.0,930),(11261,366495,0.0,0.0,0.0,930),(11262,366494,0.0,0.0,0.0,930),(11263,366499,0.0,0.0,0.0,930),(11264,366497,0.0,0.0,0.0,930),(11265,366496,0.0,0.0,0.0,930),(11266,366507,0.0,0.0,0.0,930),(11267,370994,0.0,0.0,0.0,930),(11268,370220,0.0,0.0,0.0,930),(11269,373487,46.0,29.0,22.0,1974),(11270,359632,30.0,24.0,14.0,1202),(11271,373560,30.0,24.0,14.0,700),(11272,373509,30.0,24.0,14.0,680),(11273,373417,30.0,24.0,14.0,526),(11274,373566,33.0,25.0,11.0,890),(11275,373525,30.0,24.0,6.0,384),(11276,373519,33.0,25.0,11.0,888),(11277,373447,33.0,25.0,11.0,860),(11278,373597,30.0,24.0,14.0,686),(11279,371739,30.0,24.0,14.0,1022),(11280,371736,30.0,24.0,14.0,1036),(11281,371714,30.0,24.0,14.0,1036),(11282,371644,39.0,29.0,17.0,1530),(11283,371728,30.0,24.0,14.0,1026),(11284,371452,30.0,24.0,14.0,680),(11285,371443,30.0,24.0,14.0,706),(11286,369743,3.0,24.0,14.0,676),(11287,371508,30.0,24.0,14.0,666),(11288,372825,30.0,24.0,14.0,684),(11289,371517,30.0,24.0,14.0,690),(11290,372177,30.0,24.0,14.0,692),(11291,371669,30.0,24.0,14.0,1054),(11292,372576,30.0,24.0,14.0,1054),(11293,371692,30.0,24.0,14.0,1044),(11294,367333,30.0,24.0,6.0,536),(11295,367294,30.0,24.0,6.0,538),(11296,367207,30.0,24.0,6.0,540),(11297,367355,30.0,24.0,6.0,536),(11298,366439,46.0,29.0,22.0,2674),(11299,366537,0.0,0.0,0.0,930),(11300,372625,46.0,29.0,22.0,3315),(11301,373391,33.0,25.0,11.0,1300),(11302,373303,33.0,25.0,11.0,1388),(11303,364250,30.0,24.0,14.0,710),(11304,366490,0.0,0.0,0.0,930),(11305,373402,33.0,25.0,11.0,864),(11306,373406,33.0,25.0,11.0,866),(11307,373724,0.0,0.0,0.0,566),(11308,372377,0.0,0.0,0.0,630),(11309,369730,0.0,0.0,0.0,1190),(11310,372396,0.0,0.0,0.0,625),(11311,371951,0.0,0.0,0.0,612),(11312,349350,0.0,0.0,0.0,1062),(11313,366493,0.0,0.0,0.0,1384),(11314,370851,0.0,0.0,0.0,1320),(11315,370840,0.0,0.0,0.0,1320),(11316,370806,0.0,0.0,0.0,1320),(11317,370759,0.0,0.0,0.0,1320),(11318,370755,0.0,0.0,0.0,1320),(11319,370739,0.0,0.0,0.0,1320),(11320,370688,0.0,0.0,0.0,1320),(11321,370678,0.0,0.0,0.0,1320),(11322,370610,0.0,0.0,0.0,1320),(11323,370642,0.0,0.0,0.0,1320),(11324,371216,0.0,0.0,0.0,1320),(11325,371174,0.0,0.0,0.0,1320),(11326,371055,0.0,0.0,0.0,1310),(11327,370966,0.0,0.0,0.0,1310),(11328,370960,0.0,0.0,0.0,1310),(11329,370948,0.0,0.0,0.0,1310),(11330,370944,0.0,0.0,0.0,1310),(11331,370867,0.0,0.0,0.0,1310),(11332,370943,0.0,0.0,0.0,1310),(11333,370852,0.0,0.0,0.0,1310),(11334,368499,0.0,0.0,0.0,1310),(11335,368433,0.0,0.0,0.0,1310),(11336,368377,0.0,0.0,0.0,1310),(11337,370974,0.0,0.0,0.0,1310),(11338,368379,0.0,0.0,0.0,1310),(11339,368371,0.0,0.0,0.0,1310),(11340,368342,0.0,0.0,0.0,1310),(11341,368356,0.0,0.0,0.0,1310),(11342,371874,0.0,0.0,0.0,1310),(11343,370764,0.0,0.0,0.0,1310),(11344,370828,0.0,0.0,0.0,1310),(11345,370476,0.0,0.0,0.0,1310),(11346,370606,0.0,0.0,0.0,1310),(11347,370605,0.0,0.0,0.0,1310),(11348,370567,0.0,0.0,0.0,1310),(11349,370589,0.0,0.0,0.0,1310),(11350,370561,0.0,0.0,0.0,1310),(11351,372453,0.0,0.0,0.0,1310),(11352,372271,0.0,0.0,0.0,1310),(11353,372223,0.0,0.0,0.0,1310),(11354,372283,0.0,0.0,0.0,1310),(11355,372740,0.0,0.0,0.0,1310),(11356,372669,0.0,0.0,0.0,1310),(11357,372665,0.0,0.0,0.0,1310),(11358,372663,0.0,0.0,0.0,1310),(11359,372593,0.0,0.0,0.0,1310),(11360,372556,0.0,0.0,0.0,1310),(11361,368326,0.0,0.0,0.0,1310),(11362,368327,0.0,0.0,0.0,1310),(11363,368328,0.0,0.0,0.0,1310),(11364,368329,0.0,0.0,0.0,1310),(11365,368335,0.0,0.0,0.0,1310),(11366,368337,0.0,0.0,0.0,1310),(11367,372833,0.0,0.0,0.0,1310),(11368,367889,0.0,0.0,0.0,1310),(11369,367897,0.0,0.0,0.0,1310),(11370,367875,0.0,0.0,0.0,1310),(11371,367879,0.0,0.0,0.0,1310),(11372,368267,0.0,0.0,0.0,1310),(11373,368290,0.0,0.0,0.0,1310),(11374,368310,0.0,0.0,0.0,1310),(11375,368325,0.0,0.0,0.0,1310),(11376,372182,0.0,0.0,0.0,1310),(11377,372176,0.0,0.0,0.0,1310),(11378,368251,0.0,0.0,0.0,1310),(11379,368286,0.0,0.0,0.0,1310),(11380,368269,0.0,0.0,0.0,1310),(11381,368231,0.0,0.0,0.0,1310),(11382,368229,0.0,0.0,0.0,1310),(11383,368199,0.0,0.0,0.0,1310),(11384,368173,0.0,0.0,0.0,1310),(11385,368213,0.0,0.0,0.0,1310),(11386,368157,0.0,0.0,0.0,1310),(11387,368036,0.0,0.0,0.0,1310),(11388,368015,0.0,0.0,0.0,1310),(11389,368148,0.0,0.0,0.0,1310),(11390,367984,0.0,0.0,0.0,1310),(11391,367974,0.0,0.0,0.0,1310),(11392,367968,0.0,0.0,0.0,1310),(11393,367963,0.0,0.0,0.0,1310),(11394,367960,0.0,0.0,0.0,1310),(11395,367931,0.0,0.0,0.0,1310),(11396,367930,0.0,0.0,0.0,1310),(11397,367923,0.0,0.0,0.0,1310),(11398,367918,0.0,0.0,0.0,1310),(11399,367914,0.0,0.0,0.0,1310),(11400,366546,0.0,0.0,0.0,1310),(11401,366555,0.0,0.0,0.0,1310),(11402,373289,0.0,0.0,0.0,1310),(11403,372929,0.0,0.0,0.0,1310),(11404,373086,0.0,0.0,0.0,1310),(11405,373119,0.0,0.0,0.0,1310),(11406,373140,0.0,0.0,0.0,1310),(11407,373306,0.0,0.0,0.0,1310),(11408,373125,0.0,0.0,0.0,1310),(11409,373116,0.0,0.0,0.0,1310),(11410,373081,0.0,0.0,0.0,1310),(11411,373099,0.0,0.0,0.0,1310),(11412,372965,0.0,0.0,0.0,1310),(11413,373014,0.0,0.0,0.0,1310),(11414,369451,0.0,0.0,0.0,1310),(11415,369452,0.0,0.0,0.0,1310),(11416,369437,0.0,0.0,0.0,1310),(11417,369442,0.0,0.0,0.0,1310),(11418,369400,0.0,0.0,0.0,1310),(11419,372203,0.0,0.0,0.0,1310),(11420,372205,0.0,0.0,0.0,1310),(11421,367884,0.0,0.0,0.0,1310),(11422,373051,0.0,0.0,0.0,618),(11423,372993,0.0,0.0,0.0,572),(11424,371194,0.0,0.0,0.0,1046),(11425,373367,46.0,29.0,22.0,2266),(11426,372103,39.0,29.0,17.0,1606),(11427,350987,30.0,24.0,14.0,1050),(11428,373458,30.0,24.0,14.0,814),(11429,372188,39.0,29.0,17.0,1732),(11430,373604,30.0,24.0,14.0,1116),(11431,373826,30.0,24.0,14.0,716),(11432,373833,30.0,24.0,14.0,782),(11433,366450,46.0,29.0,22.0,2144),(11434,371825,30.0,24.0,14.0,1070),(11435,362409,30.0,24.0,14.0,1256),(11436,373722,30.0,24.0,14.0,848),(11437,373753,32.0,24.0,14.0,866),(11438,373765,30.0,24.0,14.0,858),(11439,373771,30.0,24.0,14.0,840),(11440,373850,30.0,24.0,14.0,852),(11441,373689,30.0,24.0,14.0,848),(11442,373710,30.0,24.0,14.0,842),(11443,373608,30.0,24.0,14.0,866),(11444,373702,30.0,24.0,14.0,772),(11445,373712,30.0,24.0,14.0,1140),(11446,373621,30.0,24.0,14.0,528),(11447,373813,33.0,25.0,11.0,790),(11448,373799,33.0,25.0,11.0,786),(11449,373768,30.0,24.0,14.0,1284),(11450,373684,30.0,24.0,14.0,1288),(11451,373815,30.0,24.0,14.0,1028),(11452,373670,39.0,29.0,17.0,1192),(11453,373803,30.0,24.0,14.0,726),(11454,373955,30.0,24.0,14.0,732),(11455,373812,39.0,29.0,17.0,1434),(11456,367663,0.0,0.0,0.0,1314),(11457,373903,0.0,0.0,0.0,554),(11458,373285,30.0,24.0,14.0,1120),(11459,373727,36.0,16.5,17.0,758),(11460,371834,0.0,0.0,0.0,1330),(11461,371804,0.0,0.0,0.0,1310),(11462,371747,0.0,0.0,0.0,1310),(11463,369830,0.0,0.0,0.0,1310),(11464,370554,0.0,0.0,0.0,1310),(11465,370446,0.0,0.0,0.0,1310),(11466,370456,0.0,0.0,0.0,1310),(11467,370336,0.0,0.0,0.0,1310),(11468,370339,0.0,0.0,0.0,1310),(11469,370314,0.0,0.0,0.0,1310),(11470,370323,0.0,0.0,0.0,1310),(11471,370180,0.0,0.0,0.0,1310),(11472,370295,0.0,0.0,0.0,1310),(11473,370531,0.0,0.0,0.0,1310),(11474,370511,0.0,0.0,0.0,1310),(11475,369942,0.0,0.0,0.0,1310),(11476,369886,0.0,0.0,0.0,1310),(11477,373610,0.0,0.0,0.0,1310),(11478,373705,0.0,0.0,0.0,1310),(11479,373332,0.0,0.0,0.0,1310),(11480,373411,0.0,0.0,0.0,1310),(11481,373361,0.0,0.0,0.0,1310),(11482,373319,0.0,0.0,0.0,1310),(11483,373414,0.0,0.0,0.0,1310),(11484,373365,0.0,0.0,0.0,1310),(11485,373317,0.0,0.0,0.0,1310),(11486,369888,0.0,0.0,0.0,1310),(11487,369910,0.0,0.0,0.0,1310),(11488,369922,0.0,0.0,0.0,1310),(11489,369861,0.0,0.0,0.0,1310),(11490,369863,0.0,0.0,0.0,1310),(11491,369884,0.0,0.0,0.0,1310),(11492,370176,0.0,0.0,0.0,1310),(11493,370144,0.0,0.0,0.0,1310),(11494,370166,0.0,0.0,0.0,1310),(11495,368569,0.0,0.0,0.0,1310),(11496,368512,0.0,0.0,0.0,1310),(11497,368454,0.0,0.0,0.0,1310),(11498,368496,0.0,0.0,0.0,1310),(11499,369434,0.0,0.0,0.0,1310),(11500,369396,0.0,0.0,0.0,1310),(11501,369352,0.0,0.0,0.0,1310),(11502,369368,0.0,0.0,0.0,1310),(11503,369309,0.0,0.0,0.0,1310),(11504,369326,0.0,0.0,0.0,1310),(11505,368797,0.0,0.0,0.0,1310),(11506,368820,0.0,0.0,0.0,1310),(11507,368772,0.0,0.0,0.0,1310),(11508,368796,0.0,0.0,0.0,1310),(11509,373906,0.0,0.0,0.0,770),(11510,373789,0.0,0.0,0.0,1070),(11511,373965,0.0,0.0,0.0,590),(11512,373667,0.0,0.0,0.0,705),(11513,373690,0.0,0.0,0.0,705),(11514,372522,0.0,0.0,0.0,388),(11515,368586,0.0,0.0,0.0,388),(11516,372525,0.0,0.0,0.0,388),(11517,373743,0.0,0.0,0.0,1050),(11518,373709,0.0,0.0,0.0,1050),(11519,373547,0.0,0.0,0.0,1050),(11520,373582,0.0,0.0,0.0,760),(11521,372487,0.0,0.0,0.0,605),(11522,373887,0.0,0.0,0.0,770),(11523,372430,0.0,0.0,0.0,905),(11524,373963,0.0,0.0,0.0,720),(11525,373958,0.0,0.0,0.0,720),(11526,373589,0.0,0.0,0.0,720),(11527,372481,0.0,0.0,0.0,905),(11528,372398,0.0,0.0,0.0,905),(11529,371865,0.0,0.0,0.0,905),(11530,372397,0.0,0.0,0.0,905),(11531,372356,0.0,0.0,0.0,905),(11532,372249,0.0,0.0,0.0,905),(11533,372375,0.0,0.0,0.0,905),(11534,372185,0.0,0.0,0.0,905),(11535,372348,0.0,0.0,0.0,905),(11536,372258,0.0,0.0,0.0,905),(11537,372229,0.0,0.0,0.0,905),(11538,372161,0.0,0.0,0.0,905),(11539,373368,0.0,0.0,0.0,810),(11540,373334,0.0,0.0,0.0,810),(11541,372879,0.0,0.0,0.0,810),(11542,370562,0.0,0.0,0.0,742),(11543,368832,0.0,0.0,0.0,738),(11544,372781,0.0,0.0,0.0,544),(11545,372936,0.0,0.0,0.0,556),(11546,373027,0.0,0.0,0.0,536),(11547,368834,0.0,0.0,0.0,742),(11548,373282,0.0,0.0,0.0,734),(11549,372779,0.0,0.0,0.0,1068),(11550,371877,0.0,0.0,0.0,1126),(11551,372744,0.0,0.0,0.0,744),(11552,373628,0.0,0.0,0.0,1144),(11553,373279,0.0,0.0,0.0,606),(11554,373275,0.0,0.0,0.0,586),(11555,372903,0.0,0.0,0.0,586),(11556,372907,0.0,0.0,0.0,590),(11557,372904,0.0,0.0,0.0,584),(11558,372949,0.0,0.0,0.0,728),(11559,374116,0.0,0.0,0.0,306),(11560,373481,0.0,0.0,0.0,770),(11561,372519,0.0,0.0,0.0,768),(11562,372499,0.0,0.0,0.0,592),(11563,371663,0.0,0.0,0.0,1754),(11564,372265,0.0,0.0,0.0,574),(11565,371725,0.0,0.0,0.0,982),(11566,371690,0.0,0.0,0.0,572),(11567,372266,0.0,0.0,0.0,564),(11568,371379,0.0,0.0,0.0,982),(11569,366785,0.0,0.0,0.0,406),(11570,372380,0.0,0.0,0.0,382),(11571,371726,0.0,0.0,0.0,982),(11572,372901,0.0,0.0,0.0,770),(11573,368004,0.0,0.0,0.0,1760),(11574,372546,0.0,0.0,0.0,918),(11575,372919,0.0,0.0,0.0,1725),(11576,366304,0.0,0.0,0.0,982),(11577,372261,0.0,0.0,0.0,2284),(11578,370775,0.0,0.0,0.0,1812),(11579,372553,0.0,0.0,0.0,1110),(11580,371456,0.0,0.0,0.0,1134),(11581,373362,0.0,0.0,0.0,1074),(11582,372902,0.0,0.0,0.0,954),(11583,372674,0.0,0.0,0.0,766),(11584,372324,0.0,0.0,0.0,964),(11585,363285,0.0,0.0,0.0,830),(11586,371786,0.0,0.0,0.0,2428),(11587,373128,0.0,0.0,0.0,820),(11588,373418,0.0,0.0,0.0,820),(11589,372248,0.0,0.0,0.0,820),(11590,371578,0.0,0.0,0.0,820),(11591,373611,0.0,0.0,0.0,744),(11592,372218,0.0,0.0,0.0,744),(11593,371715,0.0,0.0,0.0,588),(11594,372909,0.0,0.0,0.0,588),(11595,373588,0.0,0.0,0.0,588),(11596,370217,0.0,0.0,0.0,588),(11597,370216,0.0,0.0,0.0,588),(11598,370212,0.0,0.0,0.0,588),(11599,370214,0.0,0.0,0.0,588),(11600,370219,0.0,0.0,0.0,588),(11601,370309,0.0,0.0,0.0,1986),(11602,371273,0.0,0.0,0.0,1994),(11603,369872,0.0,0.0,0.0,1244),(11604,373032,0.0,0.0,0.0,832),(11605,373624,0.0,0.0,0.0,1126),(11606,373612,0.0,0.0,0.0,798),(11607,372906,0.0,0.0,0.0,782),(11608,372517,0.0,0.0,0.0,782),(11609,372520,0.0,0.0,0.0,782),(11610,372858,0.0,0.0,0.0,832),(11611,373779,0.0,0.0,0.0,842),(11612,372958,0.0,0.0,0.0,810),(11613,370240,0.0,0.0,0.0,588),(11614,370237,0.0,0.0,0.0,588),(11615,370235,0.0,0.0,0.0,588),(11616,370234,0.0,0.0,0.0,588),(11617,370241,0.0,0.0,0.0,588),(11618,372267,0.0,0.0,0.0,832),(11619,370233,0.0,0.0,0.0,588),(11620,370231,0.0,0.0,0.0,588),(11621,370229,0.0,0.0,0.0,588),(11622,370228,0.0,0.0,0.0,588),(11623,370227,0.0,0.0,0.0,588),(11624,370226,0.0,0.0,0.0,588),(11625,370218,0.0,0.0,0.0,588),(11626,370210,0.0,0.0,0.0,588),(11627,370190,0.0,0.0,0.0,588),(11628,370254,0.0,0.0,0.0,588),(11629,370253,0.0,0.0,0.0,588),(11630,370251,0.0,0.0,0.0,588),(11631,370252,0.0,0.0,0.0,588),(11632,370250,0.0,0.0,0.0,588),(11633,370248,0.0,0.0,0.0,588),(11634,370245,0.0,0.0,0.0,588),(11635,370244,0.0,0.0,0.0,588),(11636,370242,0.0,0.0,0.0,588),(11637,367636,0.0,0.0,0.0,1320),(11638,367649,0.0,0.0,0.0,1320),(11639,367699,0.0,0.0,0.0,1320),(11640,367700,0.0,0.0,0.0,1320),(11641,367694,0.0,0.0,0.0,1320),(11642,372300,0.0,0.0,0.0,1320),(11643,369654,0.0,0.0,0.0,1320),(11644,369655,0.0,0.0,0.0,1320),(11645,369621,0.0,0.0,0.0,1320),(11646,369842,0.0,0.0,0.0,1320),(11647,369843,0.0,0.0,0.0,1320),(11648,369793,0.0,0.0,0.0,1320),(11649,369809,0.0,0.0,0.0,1320),(11650,369823,0.0,0.0,0.0,1320),(11651,369770,0.0,0.0,0.0,1320),(11652,369771,0.0,0.0,0.0,1320),(11653,372237,0.0,0.0,0.0,1320),(11654,372230,0.0,0.0,0.0,1320),(11655,372186,0.0,0.0,0.0,1320),(11656,372143,0.0,0.0,0.0,1320),(11657,372015,0.0,0.0,0.0,1320),(11658,372354,0.0,0.0,0.0,1320),(11659,372331,0.0,0.0,0.0,1320),(11660,372533,0.0,0.0,0.0,1320),(11661,372483,0.0,0.0,0.0,1320),(11662,372482,0.0,0.0,0.0,1320),(11663,372478,0.0,0.0,0.0,1320),(11664,372414,0.0,0.0,0.0,1320),(11665,372410,0.0,0.0,0.0,1320),(11666,372635,0.0,0.0,0.0,1320),(11667,372590,0.0,0.0,0.0,1320),(11668,370429,0.0,0.0,0.0,1320),(11669,372584,0.0,0.0,0.0,1320),(11670,370470,0.0,0.0,0.0,1320),(11671,369681,0.0,0.0,0.0,1320),(11672,369784,0.0,0.0,0.0,1320),(11673,369727,0.0,0.0,0.0,1320),(11674,369661,0.0,0.0,0.0,1320),(11675,369744,0.0,0.0,0.0,1320),(11676,370505,0.0,0.0,0.0,1320),(11677,369766,0.0,0.0,0.0,1320),(11678,372575,0.0,0.0,0.0,1320),(11679,372548,0.0,0.0,0.0,1320),(11680,367556,0.0,0.0,0.0,1320),(11681,367541,0.0,0.0,0.0,1320),(11682,367537,0.0,0.0,0.0,1320),(11683,367850,0.0,0.0,0.0,1320),(11684,367831,0.0,0.0,0.0,1320),(11685,367798,0.0,0.0,0.0,1320),(11686,367782,0.0,0.0,0.0,1320),(11687,368734,0.0,0.0,0.0,1320),(11688,368707,0.0,0.0,0.0,1320),(11689,367874,0.0,0.0,0.0,1320),(11690,373603,0.0,0.0,0.0,1320),(11691,374012,0.0,0.0,0.0,1320),(11692,374036,0.0,0.0,0.0,1320),(11693,374038,0.0,0.0,0.0,1320),(11694,374107,0.0,0.0,0.0,1320),(11695,373123,0.0,0.0,0.0,1320),(11696,367869,0.0,0.0,0.0,1320),(11697,367865,0.0,0.0,0.0,1320),(11698,371763,0.0,0.0,0.0,1320),(11699,371624,0.0,0.0,0.0,1320),(11700,371654,0.0,0.0,0.0,1320),(11701,371621,0.0,0.0,0.0,1320),(11702,371616,0.0,0.0,0.0,1320),(11703,371612,0.0,0.0,0.0,1320),(11704,371607,0.0,0.0,0.0,1320),(11705,371597,0.0,0.0,0.0,1320),(11706,371589,0.0,0.0,0.0,1320),(11707,371579,0.0,0.0,0.0,1320),(11708,371473,0.0,0.0,0.0,1320),(11709,371324,0.0,0.0,0.0,1320),(11710,371416,0.0,0.0,0.0,1320),(11711,371311,0.0,0.0,0.0,1320),(11712,368720,0.0,0.0,0.0,1320),(11713,368687,0.0,0.0,0.0,1320),(11714,368702,0.0,0.0,0.0,1320),(11715,368571,0.0,0.0,0.0,1320),(11716,368612,0.0,0.0,0.0,1320),(11717,368661,0.0,0.0,0.0,1320),(11718,372900,0.0,0.0,0.0,1320),(11719,372822,0.0,0.0,0.0,1320),(11720,367608,0.0,0.0,0.0,1320),(11721,367603,0.0,0.0,0.0,1320),(11722,367588,0.0,0.0,0.0,1320),(11723,367580,0.0,0.0,0.0,1320),(11724,367583,0.0,0.0,0.0,1320),(11725,367575,0.0,0.0,0.0,1320),(11726,369522,0.0,0.0,0.0,1320),(11727,369501,0.0,0.0,0.0,1320),(11728,369499,0.0,0.0,0.0,1320),(11729,369481,0.0,0.0,0.0,1320),(11730,369478,0.0,0.0,0.0,1320),(11731,369471,0.0,0.0,0.0,1320),(11732,369460,0.0,0.0,0.0,1320),(11733,367670,0.0,0.0,0.0,1320),(11734,367656,0.0,0.0,0.0,1320),(11735,368762,0.0,0.0,0.0,1320),(11736,369633,0.0,0.0,0.0,1320),(11737,373783,0.0,0.0,0.0,1320),(11738,373844,0.0,0.0,0.0,1320),(11739,373839,0.0,0.0,0.0,1320),(11740,373741,0.0,0.0,0.0,1320),(11741,373686,0.0,0.0,0.0,1320),(11742,373650,0.0,0.0,0.0,1320),(11743,373407,0.0,0.0,0.0,1320),(11744,373881,0.0,0.0,0.0,1320),(11745,373508,0.0,0.0,0.0,1320),(11746,373662,0.0,0.0,0.0,1320),(11747,373675,0.0,0.0,0.0,1320),(11748,373701,0.0,0.0,0.0,1320),(11749,373677,0.0,0.0,0.0,1320),(11750,373720,0.0,0.0,0.0,1320),(11751,372649,0.0,0.0,0.0,1320),(11752,373429,0.0,0.0,0.0,1320),(11753,373450,0.0,0.0,0.0,1320),(11754,373529,0.0,0.0,0.0,1320),(11755,373454,0.0,0.0,0.0,1320),(11756,373567,0.0,0.0,0.0,1320),(11757,367775,0.0,0.0,0.0,1320),(11758,367752,0.0,0.0,0.0,1320),(11759,367770,0.0,0.0,0.0,1320),(11760,369544,0.0,0.0,0.0,1320),(11761,369627,0.0,0.0,0.0,1320),(11762,369590,0.0,0.0,0.0,1320),(11763,369596,0.0,0.0,0.0,1320),(11764,369537,0.0,0.0,0.0,1320),(11765,369616,0.0,0.0,0.0,1320),(11766,369575,0.0,0.0,0.0,1320),(11767,369562,0.0,0.0,0.0,1320),(11768,369670,0.0,0.0,0.0,1320),(11769,374056,0.0,0.0,0.0,810),(11770,373263,0.0,0.0,0.0,810),(11771,373097,0.0,0.0,0.0,810),(11772,373035,0.0,0.0,0.0,810),(11773,372251,0.0,0.0,0.0,810),(11774,372242,0.0,0.0,0.0,810),(11775,372896,0.0,0.0,0.0,810),(11776,372742,0.0,0.0,0.0,810),(11777,372837,0.0,0.0,0.0,810),(11778,367635,0.0,0.0,0.0,810),(11779,363411,0.0,0.0,0.0,810),(11780,373629,0.0,0.0,0.0,810),(11781,373570,0.0,0.0,0.0,810),(11782,373499,0.0,0.0,0.0,810),(11783,373518,0.0,0.0,0.0,900),(11784,372897,0.0,0.0,0.0,900),(11785,368224,0.0,0.0,0.0,810),(11786,372472,0.0,0.0,0.0,905),(11787,373536,0.0,0.0,0.0,905),(11788,373534,0.0,0.0,0.0,905),(11789,373573,0.0,0.0,0.0,905),(11790,373704,0.0,0.0,0.0,905),(11791,373721,0.0,0.0,0.0,905),(11792,373831,0.0,0.0,0.0,905),(11793,373769,0.0,0.0,0.0,905),(11794,373718,0.0,0.0,0.0,905),(11795,373817,0.0,0.0,0.0,905),(11796,373860,0.0,0.0,0.0,905),(11797,373517,0.0,0.0,0.0,905),(11798,373314,0.0,0.0,0.0,905),(11799,373352,0.0,0.0,0.0,905),(11800,373384,0.0,0.0,0.0,905),(11801,373401,0.0,0.0,0.0,905),(11802,372119,0.0,0.0,0.0,905),(11803,372101,0.0,0.0,0.0,905),(11804,372023,0.0,0.0,0.0,905),(11805,371971,0.0,0.0,0.0,905),(11806,371921,0.0,0.0,0.0,905),(11807,372142,0.0,0.0,0.0,905),(11808,372141,0.0,0.0,0.0,905),(11809,372078,0.0,0.0,0.0,905),(11810,372064,0.0,0.0,0.0,905),(11811,372053,0.0,0.0,0.0,905),(11812,372027,0.0,0.0,0.0,905),(11813,371973,0.0,0.0,0.0,905),(11814,349321,0.0,0.0,0.0,905),(11815,371962,0.0,0.0,0.0,905),(11816,372996,0.0,0.0,0.0,905),(11817,373006,0.0,0.0,0.0,905),(11818,373042,0.0,0.0,0.0,905),(11819,373044,0.0,0.0,0.0,905),(11820,373262,0.0,0.0,0.0,905),(11821,372305,0.0,0.0,0.0,905),(11822,372549,0.0,0.0,0.0,905),(11823,373329,0.0,0.0,0.0,905),(11824,372381,0.0,0.0,0.0,905),(11825,372405,0.0,0.0,0.0,905),(11826,372667,0.0,0.0,0.0,905),(11827,372922,0.0,0.0,0.0,905),(11828,372789,0.0,0.0,0.0,905),(11829,372813,0.0,0.0,0.0,905),(11830,372750,0.0,0.0,0.0,905),(11831,372741,0.0,0.0,0.0,905),(11832,372638,0.0,0.0,0.0,905),(11833,372563,0.0,0.0,0.0,905),(11834,372539,0.0,0.0,0.0,905),(11835,372504,0.0,0.0,0.0,905),(11836,371429,0.0,0.0,0.0,742),(11837,371444,0.0,0.0,0.0,1582),(11838,371845,0.0,0.0,0.0,1726),(11839,371724,0.0,0.0,0.0,1692),(11840,372151,0.0,0.0,0.0,1082),(11841,366566,0.0,0.0,0.0,726),(11842,371701,0.0,0.0,0.0,1082),(11843,371707,0.0,0.0,0.0,1082),(11844,371530,0.0,0.0,0.0,1082),(11845,371697,0.0,0.0,0.0,1082),(11846,371718,0.0,0.0,0.0,1082),(11847,371717,0.0,0.0,0.0,1082),(11848,371699,0.0,0.0,0.0,1082),(11849,372905,0.0,0.0,0.0,1082),(11850,372911,0.0,0.0,0.0,1082),(11851,371700,0.0,0.0,0.0,1082),(11852,371734,0.0,0.0,0.0,1082),(11853,371696,0.0,0.0,0.0,1082),(11854,371735,0.0,0.0,0.0,1082),(11855,371569,0.0,0.0,0.0,1082),(11856,371729,0.0,0.0,0.0,1082),(11857,371733,0.0,0.0,0.0,1082),(11858,371687,0.0,0.0,0.0,1082),(11859,371732,0.0,0.0,0.0,1082),(11860,371691,0.0,0.0,0.0,1082),(11861,371738,0.0,0.0,0.0,1082),(11862,371737,0.0,0.0,0.0,1082),(11863,371695,0.0,0.0,0.0,1082),(11864,371705,0.0,0.0,0.0,1082),(11865,371455,0.0,0.0,0.0,1082),(11866,371712,0.0,0.0,0.0,1082),(11867,371704,0.0,0.0,0.0,1082),(11868,373276,0.0,0.0,0.0,1082),(11869,371711,0.0,0.0,0.0,1082),(11870,371721,0.0,0.0,0.0,1082),(11871,371702,0.0,0.0,0.0,1082),(11872,371709,0.0,0.0,0.0,1082),(11873,371722,0.0,0.0,0.0,1082),(11874,371708,0.0,0.0,0.0,1082),(11875,371730,0.0,0.0,0.0,1082),(11876,371723,0.0,0.0,0.0,1082),(11877,371731,0.0,0.0,0.0,1082),(11878,372279,0.0,0.0,0.0,804),(11879,372636,0.0,0.0,0.0,1252),(11880,372189,0.0,0.0,0.0,820),(11881,371125,0.0,0.0,0.0,820),(11882,371123,0.0,0.0,0.0,820),(11883,372341,0.0,0.0,0.0,820),(11884,371514,0.0,0.0,0.0,820),(11885,369586,0.0,0.0,0.0,820),(11886,374362,30.0,24.0,14.0,706),(11887,374285,30.0,24.0,14.0,516),(11888,374703,30.0,24.0,6.0,246),(11889,374266,30.0,24.0,14.0,938),(11890,374103,30.0,24.0,6.0,620),(11891,374712,46.0,29.0,22.0,2650),(11892,374470,30.0,24.0,6.0,536),(11893,374129,39.0,29.0,17.0,1244),(11894,373047,30.0,24.0,14.0,1048),(11895,374439,39.0,29.0,17.0,2440),(11896,374033,39.0,29.0,17.0,1870),(11897,374487,26.0,13.0,12.0,416),(11898,372385,30.0,24.0,14.0,516),(11899,373996,30.0,24.0,14.0,572),(11900,366166,46.0,29.0,22.0,1916),(11901,374018,30.0,24.0,14.0,884),(11902,374044,30.0,24.0,14.0,1062),(11903,374061,33.0,25.0,11.0,870),(11904,373998,33.0,25.0,11.0,890),(11905,374120,33.0,25.0,11.0,890),(11906,374660,30.0,24.0,14.0,761),(11907,374587,30.0,24.0,14.0,760),(11908,374581,30.0,24.0,14.0,762),(11910,374574,30.0,24.0,14.0,768),(11911,374529,30.0,24.0,14.0,764),(11912,374458,30.0,24.0,14.0,762),(11913,374533,30.0,24.0,14.0,750),(11914,374588,30.0,24.0,14.0,1210),(11915,374245,30.0,24.0,14.0,758),(11916,372819,30.0,24.0,14.0,968),(11917,374301,30.0,24.0,14.0,710),(11918,374133,33.0,25.0,11.0,866),(11919,374280,33.0,25.0,11.0,860),(11920,374334,30.0,24.0,14.0,838),(11921,374472,33.0,25.0,11.0,862),(11922,348811,33.0,25.0,11.0,886),(11923,374613,33.0,25.0,11.0,896),(11924,374497,33.0,25.0,11.0,866),(11925,374612,33.0,25.0,11.0,890),(11926,374601,33.0,25.0,11.0,1315),(11927,371433,30.0,24.0,6.0,546),(11928,374416,30.0,24.0,14.0,1290),(11929,374706,30.0,24.0,6.0,635),(11930,369521,30.0,24.0,14.0,1035),(11931,372823,30.0,24.0,14.0,1032),(11932,374332,30.0,24.0,14.0,1142),(11933,374576,30.0,24.0,14.0,688),(11934,374567,30.0,24.0,14.0,520),(11935,367353,0.0,0.0,0.0,550),(11936,368364,0.0,0.0,0.0,550),(11937,367296,0.0,0.0,0.0,550),(11938,367300,0.0,0.0,0.0,550),(11939,367298,0.0,0.0,0.0,550),(11940,367310,0.0,0.0,0.0,550),(11941,367317,0.0,0.0,0.0,550),(11942,367315,0.0,0.0,0.0,550),(11943,367351,0.0,0.0,0.0,550),(11944,367323,0.0,0.0,0.0,550),(11945,374735,33.0,25.0,11.0,870),(11946,374723,33.0,25.0,11.0,864),(11947,356457,30.0,24.0,14.0,592),(11948,374608,30.0,24.0,14.0,630),(11949,374787,33.0,25.0,11.0,698),(11950,374479,26.0,13.0,12.0,480),(11951,374785,30.0,24.0,14.0,538),(11952,374804,30.0,24.0,14.0,704),(11953,374364,30.0,24.0,6.0,280),(11954,374741,30.0,24.0,14.0,556),(11955,370211,0.0,0.0,0.0,545),(11956,370208,0.0,0.0,0.0,545),(11957,370206,0.0,0.0,0.0,545),(11958,370207,0.0,0.0,0.0,545),(11959,370205,0.0,0.0,0.0,545),(11960,370200,0.0,0.0,0.0,545),(11961,370198,0.0,0.0,0.0,545),(11962,370197,0.0,0.0,0.0,545),(11963,370196,0.0,0.0,0.0,545),(11964,370195,0.0,0.0,0.0,545),(11965,370194,0.0,0.0,0.0,545),(11966,370193,0.0,0.0,0.0,545),(11967,370191,0.0,0.0,0.0,545),(11968,370186,0.0,0.0,0.0,545),(11969,370990,0.0,0.0,0.0,545),(11970,367329,0.0,0.0,0.0,550),(11971,371140,0.0,0.0,0.0,550),(11972,367327,0.0,0.0,0.0,550),(11973,371693,0.0,0.0,0.0,550),(11974,367319,0.0,0.0,0.0,550),(11975,367321,0.0,0.0,0.0,550),(11976,372908,0.0,0.0,0.0,550),(11977,367263,0.0,0.0,0.0,550),(11978,367264,0.0,0.0,0.0,550),(11979,367262,0.0,0.0,0.0,550),(11980,367260,0.0,0.0,0.0,550),(11981,367259,0.0,0.0,0.0,550),(11982,367254,0.0,0.0,0.0,550),(11983,367325,0.0,0.0,0.0,550),(11984,370204,0.0,0.0,0.0,545),(11985,374662,30.0,24.0,14.0,500),(11986,374904,39.0,29.0,17.0,1744),(11987,374877,30.0,24.0,14.0,1044),(11988,374866,30.0,24.0,14.0,684),(11989,374424,33.0,25.0,11.0,1300),(11990,374864,30.0,24.0,14.0,584),(11991,373639,33.0,25.0,11.0,876),(11992,374822,33.0,25.0,11.0,872),(11993,374854,33.0,25.0,11.0,870),(11994,374764,30.0,24.0,14.0,808),(11995,374837,30.0,24.0,14.0,870),(11996,367182,0.0,0.0,0.0,555),(11997,367185,0.0,0.0,0.0,555),(11998,367187,0.0,0.0,0.0,555),(11999,367178,0.0,0.0,0.0,555),(12000,367176,0.0,0.0,0.0,555),(12001,367331,0.0,0.0,0.0,555),(12002,367337,0.0,0.0,0.0,555),(12003,367341,0.0,0.0,0.0,555),(12004,367335,0.0,0.0,0.0,555),(12005,367349,0.0,0.0,0.0,555),(12006,367339,0.0,0.0,0.0,555),(12007,367766,0.0,0.0,0.0,555),(12008,367357,0.0,0.0,0.0,555),(12009,374853,33.0,25.0,11.0,780),(12010,374855,33.0,25.0,11.0,866),(12011,374851,30.0,24.0,14.0,678),(12012,374843,30.0,24.0,14.0,1098),(12013,374825,30.0,24.0,14.0,492),(12014,374842,33.0,25.0,11.0,1100),(12015,375144,33.0,25.0,11.0,780),(12016,375510,39.0,29.0,17.0,1242),(12017,375502,30.0,24.0,14.0,686),(12018,375183,30.0,24.0,14.0,688),(12019,375209,30.0,24.0,14.0,704),(12020,375159,30.0,24.0,14.0,1056),(12021,375532,30.0,24.0,14.0,754),(12022,371656,30.0,24.0,14.0,1066),(12023,375565,30.0,24.0,14.0,596),(12024,373647,0.0,0.0,0.0,1102),(12025,375161,0.0,0.0,0.0,530),(12026,374670,0.0,0.0,0.0,518),(12027,373587,0.0,0.0,0.0,706),(12028,373584,0.0,0.0,0.0,712),(12029,374259,0.0,0.0,0.0,725),(12030,374264,0.0,0.0,0.0,725),(12031,374263,0.0,0.0,0.0,720),(12032,374261,0.0,0.0,0.0,720),(12033,374447,0.0,0.0,0.0,725),(12034,374889,0.0,0.0,0.0,722),(12035,365595,0.0,0.0,0.0,730),(12036,373585,0.0,0.0,0.0,712),(12037,373586,0.0,0.0,0.0,718),(12038,375549,0.0,0.0,0.0,710),(12039,375550,0.0,0.0,0.0,716),(12040,375552,0.0,0.0,0.0,708),(12041,372268,0.0,0.0,0.0,723),(12042,373910,30.0,24.0,14.0,766),(12043,374737,30.0,24.0,14.0,762),(12044,373992,30.0,24.0,14.0,762),(12045,373970,30.0,24.0,14.0,754),(12046,374720,30.0,24.0,14.0,550),(12047,374739,46.0,29.0,22.0,1478),(12048,374844,30.0,24.0,14.0,544),(12049,371308,30.0,24.0,14.0,770),(12050,373942,30.0,24.0,14.0,764),(12051,371518,30.0,24.0,14.0,770),(12052,375147,30.0,24.0,14.0,750),(12053,375173,30.0,24.0,14.0,552),(12054,373957,30.0,24.0,14.0,748),(12055,374254,0.0,0.0,0.0,600),(12056,374442,0.0,0.0,0.0,590),(12057,374441,0.0,0.0,0.0,565),(12058,374168,0.0,0.0,0.0,330),(12059,375540,0.0,0.0,0.0,900),(12060,375547,0.0,0.0,0.0,400),(12061,375536,0.0,0.0,0.0,600),(12062,375542,0.0,0.0,0.0,575),(12063,375537,0.0,0.0,0.0,780),(12064,375546,0.0,0.0,0.0,780),(12065,374444,0.0,0.0,0.0,780),(12066,374255,0.0,0.0,0.0,780),(12067,375548,0.0,0.0,0.0,780),(12068,374679,0.0,0.0,0.0,780),(12069,374678,0.0,0.0,0.0,780),(12070,373954,0.0,0.0,0.0,780),(12071,374258,0.0,0.0,0.0,780),(12072,374260,0.0,0.0,0.0,780),(12073,374689,0.0,0.0,0.0,780),(12074,374888,0.0,0.0,0.0,780),(12075,366810,0.0,0.0,0.0,1290),(12076,374684,0.0,0.0,0.0,825),(12077,374692,0.0,0.0,0.0,715),(12078,371434,0.0,0.0,0.0,920),(12079,375217,0.0,0.0,0.0,715),(12080,373360,0.0,0.0,0.0,1120),(12081,375538,0.0,0.0,0.0,715),(12082,374693,0.0,0.0,0.0,715),(12083,374560,0.0,0.0,0.0,795),(12084,374531,0.0,0.0,0.0,795),(12085,375145,0.0,0.0,0.0,795),(12086,374927,0.0,0.0,0.0,795),(12087,374912,0.0,0.0,0.0,795),(12088,375507,0.0,0.0,0.0,795),(12089,374879,0.0,0.0,0.0,795),(12090,374172,0.0,0.0,0.0,795),(12091,373760,0.0,0.0,0.0,755),(12092,374852,0.0,0.0,0.0,755),(12093,374170,0.0,0.0,0.0,735),(12094,374219,0.0,0.0,0.0,574),(12095,374817,0.0,0.0,0.0,506),(12096,374559,0.0,0.0,0.0,840),(12097,374820,0.0,0.0,0.0,534),(12098,374417,0.0,0.0,0.0,546),(12099,374905,0.0,0.0,0.0,600),(12100,374312,0.0,0.0,0.0,510),(12101,374784,0.0,0.0,0.0,680),(12102,374335,0.0,0.0,0.0,716),(12103,374676,0.0,0.0,0.0,554),(12104,374882,0.0,0.0,0.0,536),(12105,374443,0.0,0.0,0.0,554),(12106,374672,0.0,0.0,0.0,538),(12107,373581,0.0,0.0,0.0,528),(12108,372391,39.0,29.0,17.0,1484),(12109,375544,0.0,0.0,0.0,552),(12110,375543,0.0,0.0,0.0,560),(12111,374291,0.0,0.0,0.0,536),(12112,374838,0.0,0.0,0.0,752),(12113,374892,0.0,0.0,0.0,528),(12114,339736,0.0,0.0,0.0,1070),(12115,374728,0.0,0.0,0.0,946),(12116,372541,0.0,0.0,0.0,722),(12117,374674,0.0,0.0,0.0,544),(12118,374673,0.0,0.0,0.0,550),(12119,374680,0.0,0.0,0.0,550),(12120,373738,0.0,0.0,0.0,930),(12121,374884,0.0,0.0,0.0,586),(12122,375541,0.0,0.0,0.0,546),(12123,373651,0.0,0.0,0.0,1082),(12124,374885,30.0,24.0,6.0,580),(12125,374917,33.0,25.0,11.0,776),(12126,374850,30.0,24.0,14.0,530),(12127,374394,0.0,0.0,0.0,556),(12128,375171,30.0,24.0,14.0,544),(12129,375151,30.0,24.0,14.0,596),(12130,375005,33.0,25.0,11.0,792),(12131,374930,33.0,25.0,11.0,776),(12132,374465,39.0,29.0,17.0,1250),(12133,374832,0.0,0.0,0.0,815),(12134,374862,0.0,0.0,0.0,810),(12135,373761,0.0,0.0,0.0,815),(12136,373786,0.0,0.0,0.0,810),(12137,374131,0.0,0.0,0.0,815),(12138,374231,0.0,0.0,0.0,810),(12139,374436,0.0,0.0,0.0,815),(12140,374317,0.0,0.0,0.0,805),(12141,374661,0.0,0.0,0.0,810),(12142,374872,0.0,0.0,0.0,815),(12143,369546,0.0,0.0,0.0,1170),(12144,373596,0.0,0.0,0.0,840),(12145,370648,0.0,0.0,0.0,765),(12146,374356,0.0,0.0,0.0,790),(12147,374244,0.0,0.0,0.0,535),(12148,374667,0.0,0.0,0.0,535),(12149,374821,0.0,0.0,0.0,1365),(12150,372455,0.0,0.0,0.0,695),(12151,375193,0.0,0.0,0.0,540),(12152,373673,0.0,0.0,0.0,730),(12153,375018,0.0,0.0,0.0,430),(12154,367270,0.0,0.0,0.0,580),(12155,367275,0.0,0.0,0.0,575),(12156,367277,0.0,0.0,0.0,580),(12157,367279,0.0,0.0,0.0,610),(12158,367285,0.0,0.0,0.0,580),(12159,367286,0.0,0.0,0.0,580),(12160,367181,0.0,0.0,0.0,580),(12161,367197,0.0,0.0,0.0,575),(12162,367199,0.0,0.0,0.0,585),(12163,367219,0.0,0.0,0.0,595),(12164,367223,0.0,0.0,0.0,575),(12165,367255,0.0,0.0,0.0,580),(12166,367268,0.0,0.0,0.0,585),(12167,367273,0.0,0.0,0.0,585),(12168,367283,0.0,0.0,0.0,580),(12169,367288,0.0,0.0,0.0,570),(12170,367290,0.0,0.0,0.0,580),(12171,367292,0.0,0.0,0.0,580),(12172,367293,0.0,0.0,0.0,575),(12173,370619,0.0,0.0,0.0,580),(12174,367190,0.0,0.0,0.0,590),(12175,367188,0.0,0.0,0.0,580),(12176,367192,0.0,0.0,0.0,580),(12177,367195,0.0,0.0,0.0,580),(12178,367271,0.0,0.0,0.0,735),(12179,375966,30.0,24.0,14.0,750),(12180,375967,30.0,24.0,14.0,980),(12181,375500,30.0,24.0,14.0,688),(12182,375683,39.0,29.0,17.0,1776),(12183,375708,30.0,24.0,14.0,980),(12184,375975,36.0,16.0,17.0,1000),(12185,375944,30.0,24.0,14.0,764),(12186,375146,33.0,25.0,11.0,772),(12187,375703,30.0,24.0,14.0,496),(12188,375762,30.0,24.0,14.0,776),(12189,370854,39.0,29.0,17.0,1430),(12190,358609,39.0,29.0,17.0,1424),(12191,375665,33.0,25.0,11.0,770),(12192,375741,30.0,24.0,14.0,1136),(12193,375574,30.0,24.0,14.0,596),(12194,375759,30.0,24.0,14.0,586),(12195,375679,30.0,24.0,14.0,738),(12196,375175,30.0,24.0,14.0,592),(12197,374160,30.0,24.0,14.0,780),(12198,375626,30.0,24.0,14.0,596),(12199,375667,30.0,24.0,14.0,688),(12200,373956,0.0,0.0,0.0,790),(12201,373938,0.0,0.0,0.0,790),(12202,373939,0.0,0.0,0.0,795),(12203,373959,0.0,0.0,0.0,795),(12204,373941,0.0,0.0,0.0,790),(12205,373960,0.0,0.0,0.0,795),(12206,373943,0.0,0.0,0.0,790),(12207,373962,0.0,0.0,0.0,790),(12208,373944,0.0,0.0,0.0,790),(12209,373946,0.0,0.0,0.0,795),(12210,373947,0.0,0.0,0.0,795),(12211,373948,0.0,0.0,0.0,790),(12212,373916,0.0,0.0,0.0,795),(12213,373917,0.0,0.0,0.0,790),(12214,373918,0.0,0.0,0.0,790),(12215,373919,0.0,0.0,0.0,790),(12216,373924,0.0,0.0,0.0,790),(12217,373921,0.0,0.0,0.0,790),(12218,373925,0.0,0.0,0.0,790),(12219,373886,0.0,0.0,0.0,785),(12220,373927,0.0,0.0,0.0,785),(12221,373928,0.0,0.0,0.0,785),(12222,373888,0.0,0.0,0.0,790),(12223,373890,0.0,0.0,0.0,790),(12224,373892,0.0,0.0,0.0,790),(12225,373893,0.0,0.0,0.0,790),(12226,373894,0.0,0.0,0.0,795),(12227,373895,0.0,0.0,0.0,795),(12228,373896,0.0,0.0,0.0,795),(12229,373897,0.0,0.0,0.0,795),(12230,373898,0.0,0.0,0.0,790),(12231,373899,0.0,0.0,0.0,795),(12232,373902,0.0,0.0,0.0,790),(12233,373905,0.0,0.0,0.0,795),(12234,373908,0.0,0.0,0.0,790),(12235,373914,0.0,0.0,0.0,795),(12236,375723,0.0,0.0,0.0,790),(12237,373913,0.0,0.0,0.0,790),(12238,373911,0.0,0.0,0.0,790),(12239,373912,0.0,0.0,0.0,790),(12240,373884,0.0,0.0,0.0,795),(12241,372379,0.0,0.0,0.0,610),(12242,373751,0.0,0.0,0.0,850),(12243,373698,0.0,0.0,0.0,530),(12244,375063,0.0,0.0,0.0,855),(12245,373961,0.0,0.0,0.0,850),(12246,362676,0.0,0.0,0.0,855),(12247,374414,0.0,0.0,0.0,610),(12248,374035,0.0,0.0,0.0,615),(12249,374647,0.0,0.0,0.0,610),(12250,373922,0.0,0.0,0.0,785),(12251,373920,0.0,0.0,0.0,790),(12252,373915,0.0,0.0,0.0,790),(12253,373966,0.0,0.0,0.0,790),(12254,373964,0.0,0.0,0.0,790),(12255,373972,0.0,0.0,0.0,790),(12256,373971,0.0,0.0,0.0,790),(12257,370380,0.0,0.0,0.0,790),(12258,373973,0.0,0.0,0.0,795),(12259,373974,0.0,0.0,0.0,790),(12260,373977,0.0,0.0,0.0,795),(12261,373978,0.0,0.0,0.0,795),(12262,373979,0.0,0.0,0.0,790),(12263,373980,0.0,0.0,0.0,790),(12264,373981,0.0,0.0,0.0,795),(12265,373982,0.0,0.0,0.0,790),(12266,373983,0.0,0.0,0.0,790),(12267,373984,0.0,0.0,0.0,790),(12268,373985,0.0,0.0,0.0,790),(12269,373986,0.0,0.0,0.0,790),(12270,373987,0.0,0.0,0.0,790),(12271,373988,0.0,0.0,0.0,790),(12272,373989,0.0,0.0,0.0,795),(12273,373990,0.0,0.0,0.0,795),(12274,373991,0.0,0.0,0.0,795),(12275,373993,0.0,0.0,0.0,790),(12276,373994,0.0,0.0,0.0,795),(12277,373891,0.0,0.0,0.0,795),(12278,373900,0.0,0.0,0.0,795),(12279,373940,0.0,0.0,0.0,800),(12280,374257,0.0,0.0,0.0,800),(12281,374445,0.0,0.0,0.0,795),(12282,370652,0.0,0.0,0.0,795),(12283,373929,0.0,0.0,0.0,790),(12284,373931,0.0,0.0,0.0,800),(12285,371550,0.0,0.0,0.0,795),(12286,373951,0.0,0.0,0.0,800),(12287,373932,0.0,0.0,0.0,795),(12288,373933,0.0,0.0,0.0,795),(12289,373952,0.0,0.0,0.0,795),(12290,373953,0.0,0.0,0.0,800),(12291,373934,0.0,0.0,0.0,795),(12292,373936,0.0,0.0,0.0,795),(12293,374114,30.0,24.0,14.0,582),(12294,376013,30.0,24.0,14.0,730),(12295,376065,30.0,24.0,14.0,788),(12296,375995,30.0,24.0,14.0,578),(12297,374206,30.0,24.0,14.0,574),(12298,375609,30.0,24.0,14.0,562),(12299,375704,30.0,24.0,14.0,1018),(12300,376078,30.0,24.0,14.0,520),(12301,373291,30.0,24.0,14.0,698),(12302,372997,30.0,24.0,14.0,694),(12303,375999,30.0,24.0,14.0,696),(12304,376054,30.0,24.0,14.0,646),(12305,373345,39.0,29.0,17.0,1424),(12306,376037,30.0,24.0,14.0,696),(12307,375569,0.0,0.0,0.0,850),(12308,373885,0.0,0.0,0.0,785),(12309,375629,0.0,0.0,0.0,796),(12310,375191,0.0,0.0,0.0,800),(12311,374810,0.0,0.0,0.0,805),(12312,376115,0.0,0.0,0.0,800),(12313,376123,0.0,0.0,0.0,800),(12314,376127,0.0,0.0,0.0,803),(12315,376233,0.0,0.0,0.0,803),(12316,376234,0.0,0.0,0.0,800),(12317,376235,0.0,0.0,0.0,806),(12318,376236,0.0,0.0,0.0,806),(12319,376238,0.0,0.0,0.0,808),(12320,376239,0.0,0.0,0.0,800),(12321,376240,0.0,0.0,0.0,802),(12322,376241,0.0,0.0,0.0,805),(12323,376243,0.0,0.0,0.0,804),(12324,376216,0.0,0.0,0.0,800),(12325,376215,0.0,0.0,0.0,806),(12326,376223,0.0,0.0,0.0,802),(12327,376222,0.0,0.0,0.0,802),(12328,376226,0.0,0.0,0.0,790),(12329,376227,0.0,0.0,0.0,800),(12330,376220,0.0,0.0,0.0,800),(12331,376219,0.0,0.0,0.0,800),(12332,376228,0.0,0.0,0.0,800),(12333,376229,0.0,0.0,0.0,804),(12334,376202,0.0,0.0,0.0,800),(12335,376230,0.0,0.0,0.0,800),(12336,376231,0.0,0.0,0.0,800),(12337,376232,0.0,0.0,0.0,800),(12338,376211,0.0,0.0,0.0,800),(12339,376206,0.0,0.0,0.0,800),(12340,376201,0.0,0.0,0.0,800),(12341,376209,0.0,0.0,0.0,800),(12342,376200,0.0,0.0,0.0,800),(12343,376204,0.0,0.0,0.0,800),(12344,376205,0.0,0.0,0.0,800),(12345,376199,0.0,0.0,0.0,800),(12346,376203,0.0,0.0,0.0,800),(12347,376221,0.0,0.0,0.0,800),(12348,376191,0.0,0.0,0.0,800),(12349,376193,0.0,0.0,0.0,800),(12350,376197,0.0,0.0,0.0,800),(12351,376192,0.0,0.0,0.0,800),(12352,376218,0.0,0.0,0.0,800),(12353,376214,0.0,0.0,0.0,800),(12354,376167,0.0,0.0,0.0,800),(12355,376158,0.0,0.0,0.0,800),(12356,376154,0.0,0.0,0.0,800),(12357,376131,0.0,0.0,0.0,800),(12358,376140,0.0,0.0,0.0,800),(12359,376145,0.0,0.0,0.0,800),(12360,376146,0.0,0.0,0.0,800),(12361,376151,0.0,0.0,0.0,800),(12362,376156,0.0,0.0,0.0,800),(12363,376195,0.0,0.0,0.0,800),(12364,376194,0.0,0.0,0.0,800),(12365,376196,0.0,0.0,0.0,800),(12366,376184,0.0,0.0,0.0,800),(12367,376185,0.0,0.0,0.0,800),(12368,376186,0.0,0.0,0.0,800),(12369,376187,0.0,0.0,0.0,800),(12370,376188,0.0,0.0,0.0,800),(12371,376189,0.0,0.0,0.0,800),(12372,376190,0.0,0.0,0.0,800),(12373,376178,0.0,0.0,0.0,800),(12374,376179,0.0,0.0,0.0,800),(12375,376181,0.0,0.0,0.0,800),(12376,376183,0.0,0.0,0.0,800),(12377,376172,0.0,0.0,0.0,800),(12378,376174,0.0,0.0,0.0,800),(12379,376175,0.0,0.0,0.0,800),(12380,376176,0.0,0.0,0.0,800),(12381,376168,0.0,0.0,0.0,800),(12382,375138,0.0,0.0,0.0,892),(12383,375210,0.0,0.0,0.0,892),(12384,375162,0.0,0.0,0.0,895),(12385,369733,0.0,0.0,0.0,895),(12386,374162,0.0,0.0,0.0,895),(12387,374293,0.0,0.0,0.0,895),(12388,374306,0.0,0.0,0.0,895),(12389,374321,0.0,0.0,0.0,895),(12390,374320,0.0,0.0,0.0,895),(12391,374337,0.0,0.0,0.0,895),(12392,374457,0.0,0.0,0.0,895),(12393,374482,0.0,0.0,0.0,890),(12394,374500,0.0,0.0,0.0,892),(12395,374496,0.0,0.0,0.0,890),(12396,374591,0.0,0.0,0.0,890),(12397,374585,0.0,0.0,0.0,890),(12398,374783,0.0,0.0,0.0,895),(12399,369694,0.0,0.0,0.0,895),(12400,368531,0.0,0.0,0.0,895),(12401,374831,0.0,0.0,0.0,895),(12402,371468,0.0,0.0,0.0,895),(12403,373655,0.0,0.0,0.0,895),(12404,376170,0.0,0.0,0.0,800),(12405,375897,0.0,0.0,0.0,715),(12406,376295,0.0,0.0,0.0,715),(12407,374906,0.0,0.0,0.0,1015),(12408,376268,0.0,0.0,0.0,870),(12409,376044,0.0,0.0,0.0,772),(12410,369087,0.0,0.0,0.0,758),(12411,375936,0.0,0.0,0.0,840),(12412,376119,0.0,0.0,0.0,774),(12413,366175,0.0,0.0,0.0,826),(12414,375718,0.0,0.0,0.0,550),(12415,375977,0.0,0.0,0.0,556),(12416,369194,0.0,0.0,0.0,732),(12417,374903,0.0,0.0,0.0,810),(12418,368907,0.0,0.0,0.0,780),(12419,368997,0.0,0.0,0.0,760),(12420,369057,0.0,0.0,0.0,762),(12421,373967,0.0,0.0,0.0,780),(12422,373968,0.0,0.0,0.0,780),(12423,373969,0.0,0.0,0.0,780),(12424,373949,0.0,0.0,0.0,770),(12425,373785,0.0,0.0,0.0,530),(12426,374868,0.0,0.0,0.0,1310),(12427,374920,0.0,0.0,0.0,1310),(12428,374893,0.0,0.0,0.0,1310),(12429,374849,0.0,0.0,0.0,1310),(12430,375512,0.0,0.0,0.0,1310),(12431,374891,0.0,0.0,0.0,1310),(12432,375196,0.0,0.0,0.0,1310),(12433,375531,0.0,0.0,0.0,1310),(12434,375517,0.0,0.0,0.0,1310),(12435,375195,0.0,0.0,0.0,1310),(12436,375014,0.0,0.0,0.0,1310),(12437,375048,0.0,0.0,0.0,1310),(12438,375225,0.0,0.0,0.0,1310),(12439,374812,0.0,0.0,0.0,1310),(12440,374729,0.0,0.0,0.0,1310),(12441,374759,0.0,0.0,0.0,1310),(12442,374562,0.0,0.0,0.0,1310),(12443,374603,0.0,0.0,0.0,1310),(12444,374459,0.0,0.0,0.0,1310),(12445,374462,0.0,0.0,0.0,1310),(12446,374476,0.0,0.0,0.0,1310),(12447,374415,0.0,0.0,0.0,1310),(12448,374331,0.0,0.0,0.0,1310),(12449,374315,0.0,0.0,0.0,1310),(12450,374349,0.0,0.0,0.0,1310),(12451,374311,0.0,0.0,0.0,1310),(12452,374296,0.0,0.0,0.0,1310),(12453,374128,0.0,0.0,0.0,1310),(12454,374158,0.0,0.0,0.0,1310),(12455,373122,0.0,0.0,0.0,1310),(12456,374514,0.0,0.0,0.0,1310),(12457,374397,0.0,0.0,0.0,1310),(12458,374399,0.0,0.0,0.0,1310),(12459,374361,0.0,0.0,0.0,1310),(12460,374336,0.0,0.0,0.0,1310),(12461,374297,0.0,0.0,0.0,1310),(12462,373569,0.0,0.0,0.0,1310),(12463,374126,0.0,0.0,0.0,1310),(12464,374241,0.0,0.0,0.0,1310),(12465,374797,0.0,0.0,0.0,1310),(12466,374910,0.0,0.0,0.0,1310),(12467,374788,0.0,0.0,0.0,1310),(12468,374815,0.0,0.0,0.0,1310),(12469,374909,0.0,0.0,0.0,1310),(12470,374801,0.0,0.0,0.0,1310),(12471,374806,0.0,0.0,0.0,1310),(12472,376021,0.0,0.0,0.0,820),(12473,370850,0.0,0.0,0.0,2580),(12474,376092,0.0,0.0,0.0,1576),(12475,374818,0.0,0.0,0.0,1234),(12476,366671,0.0,0.0,0.0,1790),(12477,374390,0.0,0.0,0.0,1460),(12478,376035,0.0,0.0,0.0,570),(12479,376031,0.0,0.0,0.0,560),(12480,376020,0.0,0.0,0.0,500),(12481,375878,0.0,0.0,0.0,575),(12482,376121,0.0,0.0,0.0,590),(12483,376036,0.0,0.0,0.0,560),(12484,376310,0.0,0.0,0.0,1310),(12485,373605,0.0,0.0,0.0,1688),(12486,376050,0.0,0.0,0.0,694),(12487,376253,0.0,0.0,0.0,666),(12488,376315,0.0,0.0,0.0,688),(12489,374826,0.0,0.0,0.0,1152),(12490,376173,33.0,25.0,11.0,774),(12491,375132,33.0,25.0,11.0,870),(12492,376208,33.0,25.0,11.0,780),(12493,375170,33.0,25.0,11.0,868),(12494,375499,33.0,25.0,11.0,866),(12495,374926,33.0,25.0,11.0,868),(12496,374834,30.0,24.0,14.0,870),(12497,374915,33.0,25.0,11.0,866),(12498,375124,33.0,25.0,11.0,854),(12499,374921,46.0,29.0,22.0,1952),(12500,376265,30.0,24.0,14.0,802),(12501,376135,39.0,29.0,17.0,1008),(12502,376064,46.0,28.0,33.0,2302),(12503,376207,33.0,25.0,11.0,772),(12504,376130,33.0,25.0,11.0,772),(12505,377035,30.0,24.0,14.0,1002),(12506,375978,30.0,24.0,14.0,1160),(12507,347816,46.0,29.0,22.0,2694),(12508,376666,30.0,24.0,14.0,1130),(12509,376524,30.0,24.0,14.0,792),(12510,376062,39.0,29.0,17.0,1694),(12511,376339,30.0,24.0,14.0,760),(12512,376480,39.0,29.0,17.0,1188),(12513,373034,30.0,24.0,6.0,550),(12514,376611,33.0,25.0,11.0,772),(12515,376602,33.0,25.0,11.0,1048),(12516,376809,33.0,25.0,11.0,778),(12517,376917,33.0,25.0,11.0,774),(12518,376695,33.0,25.0,11.0,770),(12519,376630,33.0,25.0,11.0,800),(12520,376520,33.0,25.0,11.0,764),(12521,376803,33.0,25.0,11.0,780),(12522,377039,33.0,25.0,11.0,774),(12523,377020,33.0,25.0,11.0,782),(12524,377050,30.0,24.0,14.0,600),(12525,376562,30.0,24.0,14.0,564),(12526,377052,30.0,24.0,14.0,600),(12527,377025,30.0,24.0,14.0,506),(12528,376932,30.0,24.0,14.0,510),(12529,376365,30.0,24.0,14.0,530),(12530,369697,39.0,29.0,17.0,1242),(12531,376513,30.0,24.0,14.0,756),(12532,376424,30.0,24.0,14.0,920),(12533,376570,30.0,24.0,14.0,530),(12534,376833,30.0,24.0,14.0,552),(12535,376515,30.0,24.0,14.0,900),(12536,376610,30.0,24.0,14.0,1088),(12537,373515,30.0,24.0,14.0,510),(12538,376074,30.0,24.0,14.0,746),(12539,376503,30.0,24.0,14.0,740),(12540,376609,33.0,25.0,11.0,612),(12541,377082,30.0,24.0,14.0,1048),(12542,376028,46.0,29.0,22.0,2386),(12543,376180,0.0,0.0,0.0,1100),(12544,376075,0.0,0.0,0.0,1714),(12545,375725,0.0,0.0,0.0,814),(12546,376340,0.0,0.0,0.0,946),(12547,376337,0.0,0.0,0.0,868),(12548,372528,0.0,0.0,0.0,544),(12549,372527,0.0,0.0,0.0,552),(12550,372526,0.0,0.0,0.0,554),(12551,372524,0.0,0.0,0.0,550),(12552,372523,0.0,0.0,0.0,552),(12553,372518,0.0,0.0,0.0,554),(12554,372515,0.0,0.0,0.0,552),(12555,372514,0.0,0.0,0.0,552),(12556,372513,0.0,0.0,0.0,558),(12557,372512,0.0,0.0,0.0,550),(12558,372511,0.0,0.0,0.0,560),(12559,373277,0.0,0.0,0.0,552),(12560,373975,0.0,0.0,0.0,552),(12561,374446,0.0,0.0,0.0,556),(12562,372498,0.0,0.0,0.0,554),(12563,375553,0.0,0.0,0.0,554),(12564,372497,0.0,0.0,0.0,560),(12565,374208,0.0,0.0,0.0,558),(12566,372509,0.0,0.0,0.0,556),(12567,372510,0.0,0.0,0.0,556),(12568,372508,0.0,0.0,0.0,550),(12569,372507,0.0,0.0,0.0,558),(12570,372506,0.0,0.0,0.0,566),(12571,372505,0.0,0.0,0.0,550),(12572,372503,0.0,0.0,0.0,554),(12573,372502,0.0,0.0,0.0,556),(12574,372500,0.0,0.0,0.0,552),(12575,372501,0.0,0.0,0.0,556),(12576,374193,0.0,0.0,0.0,370),(12577,372521,0.0,0.0,0.0,716),(12578,374256,0.0,0.0,0.0,548),(12579,372516,0.0,0.0,0.0,624),(12580,375563,0.0,0.0,0.0,1815),(12581,374687,0.0,0.0,0.0,738),(12582,375164,0.0,0.0,0.0,560),(12583,377473,0.0,0.0,0.0,784),(12584,376702,0.0,0.0,0.0,534),(12585,377428,0.0,0.0,0.0,730),(12586,376937,0.0,0.0,0.0,742),(12587,377311,39.0,29.0,17.0,1176),(12588,377280,30.0,24.0,14.0,970),(12589,376769,30.0,24.0,14.0,780),(12590,377500,39.0,29.0,17.0,1812),(12591,377323,30.0,24.0,6.0,550),(12592,377266,39.0,29.0,17.0,1745),(12593,377218,30.0,24.0,14.0,582),(12594,376594,30.0,24.0,14.0,584),(12595,376716,30.0,24.0,14.0,580),(12596,376934,30.0,24.0,14.0,560),(12597,377097,30.0,24.0,14.0,560),(12598,377038,39.0,29.0,17.0,1364),(12599,377420,33.0,25.0,11.0,782),(12600,377485,33.0,25.0,11.0,774),(12601,377460,33.0,25.0,11.0,778),(12602,376916,33.0,25.0,11.0,770),(12603,377705,0.0,0.0,0.0,538),(12604,377706,0.0,0.0,0.0,536),(12605,377315,0.0,0.0,0.0,546),(12606,376120,0.0,0.0,0.0,855),(12607,377051,0.0,0.0,0.0,750),(12608,377327,0.0,0.0,0.0,805),(12609,377160,0.0,0.0,0.0,785),(12610,376642,0.0,0.0,0.0,740),(12611,376681,0.0,0.0,0.0,785),(12612,377322,0.0,0.0,0.0,790),(12613,377318,0.0,0.0,0.0,790),(12614,377708,0.0,0.0,0.0,790),(12615,377316,0.0,0.0,0.0,785),(12616,376350,0.0,0.0,0.0,790),(12617,376604,0.0,0.0,0.0,868),(12618,376489,0.0,0.0,0.0,716),(12619,376491,0.0,0.0,0.0,538),(12620,376494,0.0,0.0,0.0,556),(12621,377472,0.0,0.0,0.0,584),(12622,372051,0.0,0.0,0.0,828),(12623,377400,0.0,0.0,0.0,1420),(12624,377384,30.0,24.0,14.0,650),(12625,377727,0.0,0.0,0.0,795),(12626,374286,30.0,24.0,14.0,560),(12627,377772,30.0,24.0,14.0,556),(12628,377757,33.0,25.0,11.0,776),(12629,377762,33.0,25.0,11.0,776),(12630,377759,33.0,25.0,11.0,776),(12631,377336,0.0,0.0,0.0,400),(12632,376982,0.0,0.0,0.0,560),(12633,376962,0.0,0.0,0.0,565),(12634,376678,0.0,0.0,0.0,770),(12635,376676,0.0,0.0,0.0,605),(12636,376523,0.0,0.0,0.0,680),(12637,377744,0.0,0.0,0.0,375),(12638,376674,0.0,0.0,0.0,570),(12639,377325,0.0,0.0,0.0,595),(12640,377317,0.0,0.0,0.0,590),(12641,376117,0.0,0.0,0.0,705),(12642,377019,0.0,0.0,0.0,435),(12643,377326,0.0,0.0,0.0,585),(12644,376600,0.0,0.0,0.0,775),(12645,376948,0.0,0.0,0.0,580),(12646,376926,0.0,0.0,0.0,1555),(12647,376381,0.0,0.0,0.0,815),(12648,376775,0.0,0.0,0.0,820),(12649,376487,0.0,0.0,0.0,1450),(12650,377015,0.0,0.0,0.0,1460),(12651,377687,0.0,0.0,0.0,640),(12652,377117,0.0,0.0,0.0,820),(12653,377190,0.0,0.0,0.0,820),(12654,376807,0.0,0.0,0.0,745),(12655,377096,0.0,0.0,0.0,820),(12656,377784,0.0,0.0,0.0,640),(12657,377511,0.0,0.0,0.0,805),(12658,377961,0.0,0.0,0.0,815),(12659,377957,0.0,0.0,0.0,815),(12660,377033,0.0,0.0,0.0,810),(12661,377373,0.0,0.0,0.0,815),(12662,377241,0.0,0.0,0.0,835),(12663,376157,0.0,0.0,0.0,815),(12664,377207,0.0,0.0,0.0,815),(12665,377333,0.0,0.0,0.0,815),(12666,377329,0.0,0.0,0.0,815),(12667,377328,0.0,0.0,0.0,810),(12668,377307,0.0,0.0,0.0,820),(12669,377220,0.0,0.0,0.0,815),(12670,376029,0.0,0.0,0.0,805),(12671,376155,0.0,0.0,0.0,810),(12672,376118,0.0,0.0,0.0,810),(12673,376163,0.0,0.0,0.0,810),(12674,376679,0.0,0.0,0.0,785),(12675,377153,0.0,0.0,0.0,815),(12676,377127,0.0,0.0,0.0,815),(12677,376796,0.0,0.0,0.0,810),(12678,376750,0.0,0.0,0.0,815),(12679,376745,0.0,0.0,0.0,810),(12680,376687,0.0,0.0,0.0,815),(12681,376684,0.0,0.0,0.0,815),(12682,376683,0.0,0.0,0.0,810),(12683,376501,0.0,0.0,0.0,810),(12684,376498,0.0,0.0,0.0,815),(12685,376497,0.0,0.0,0.0,820),(12686,376496,0.0,0.0,0.0,805),(12687,376495,0.0,0.0,0.0,815),(12688,376493,0.0,0.0,0.0,810),(12689,376488,0.0,0.0,0.0,810),(12690,377481,0.0,0.0,0.0,815),(12691,377712,0.0,0.0,0.0,810),(12692,377710,0.0,0.0,0.0,810),(12693,362685,0.0,0.0,0.0,800),(12694,377758,0.0,0.0,0.0,805),(12695,377958,0.0,0.0,0.0,810),(12696,377507,39.0,29.0,17.0,1660),(12697,376171,0.0,0.0,0.0,1120),(12698,377017,0.0,0.0,0.0,1090),(12699,377018,0.0,0.0,0.0,1065),(12700,376967,0.0,0.0,0.0,1095),(12701,377319,0.0,0.0,0.0,1100),(12702,376490,0.0,0.0,0.0,1110),(12703,376680,0.0,0.0,0.0,1100),(12704,377324,0.0,0.0,0.0,1095),(12705,376486,0.0,0.0,0.0,1060),(12706,376492,0.0,0.0,0.0,1155),(12707,377016,0.0,0.0,0.0,1115),(12708,377709,0.0,0.0,0.0,1530),(12709,377539,0.0,0.0,0.0,774),(12710,377954,0.0,0.0,0.0,766),(12711,377791,0.0,0.0,0.0,792),(12712,377910,0.0,0.0,0.0,536),(12713,364630,0.0,0.0,0.0,576),(12714,377942,30.0,24.0,14.0,578),(12715,377948,30.0,24.0,14.0,576),(12716,377838,30.0,24.0,14.0,812),(12717,377869,46.0,29.0,22.0,1652),(12718,360218,0.0,0.0,0.0,1536),(12719,366883,30.0,24.0,14.0,1174),(12720,369956,30.0,24.0,14.0,1174),(12721,377862,33.0,25.0,11.0,774),(12722,375713,33.0,25.0,11.0,778),(12723,377844,33.0,25.0,11.0,776),(12724,377998,30.0,24.0,14.0,796),(12725,376376,30.0,24.0,14.0,716),(12726,369417,33.0,25.0,11.0,770),(12727,377914,30.0,24.0,14.0,740),(12728,377901,0.0,0.0,0.0,1035),(12729,377987,0.0,0.0,0.0,640),(12730,376004,0.0,0.0,0.0,765),(12731,376468,30.0,24.0,14.0,744),(12732,376030,30.0,24.0,14.0,740),(12733,375928,30.0,24.0,14.0,740),(12734,371871,30.0,24.0,14.0,740),(12735,375920,30.0,24.0,14.0,766),(12736,378060,30.0,24.0,14.0,556),(12737,378107,30.0,24.0,14.0,610),(12738,378068,30.0,24.0,14.0,516),(12739,378084,30.0,24.0,6.0,362),(12740,378137,30.0,24.0,14.0,622),(12741,378095,33.0,25.0,11.0,804),(12742,374907,30.0,24.0,14.0,922),(12743,378050,0.0,0.0,0.0,800),(12744,377291,0.0,0.0,0.0,766),(12745,378143,0.0,0.0,0.0,800),(12746,375906,0.0,0.0,0.0,750),(12747,375160,0.0,0.0,0.0,818),(12748,378133,0.0,0.0,0.0,776),(12749,377903,0.0,0.0,0.0,376),(12750,378013,0.0,0.0,0.0,550),(12751,377953,0.0,0.0,0.0,724),(12752,378544,39.0,29.0,17.0,1414),(12753,377519,30.0,24.0,14.0,980),(12754,378064,30.0,24.0,14.0,582),(12755,378119,30.0,24.0,14.0,1026),(12756,378367,0.0,0.0,0.0,560),(12757,376635,33.0,25.0,11.0,774),(12758,378546,33.0,25.0,11.0,474),(12759,378574,30.0,24.0,14.0,740),(12760,378586,30.0,24.0,14.0,768),(12761,378085,0.0,0.0,0.0,835),(12762,378444,0.0,0.0,0.0,860),(12763,378523,0.0,0.0,0.0,820),(12764,378140,0.0,0.0,0.0,830),(12765,366373,33.0,25.0,11.0,1190),(12766,370794,33.0,25.0,11.0,1186),(12767,377112,43.0,32.0,32.0,2592),(12768,377464,30.0,24.0,14.0,918),(12769,371520,30.0,24.0,14.0,1380),(12770,376941,33.0,25.0,14.0,742),(12771,376101,33.0,25.0,11.0,744),(12772,377845,33.0,25.0,11.0,744),(12773,372239,33.0,25.0,11.0,746),(12774,377085,33.0,25.0,11.0,742),(12775,371295,33.0,25.0,11.0,1188),(12776,374650,33.0,25.0,11.0,1192),(12777,374393,33.0,25.0,11.0,1196),(12778,376725,33.0,25.0,11.0,1194),(12779,377306,30.0,24.0,14.0,760),(12780,377260,30.0,24.0,14.0,762),(12781,377994,30.0,24.0,14.0,1136),(12782,377547,30.0,24.0,14.0,744),(12783,377083,33.0,25.0,11.0,772),(12784,368402,0.0,0.0,0.0,835),(12785,378462,0.0,0.0,0.0,840),(12786,378070,30.0,24.0,14.0,562),(12787,378646,33.0,25.0,11.0,780),(12788,378594,33.0,25.0,11.0,772),(12789,377209,30.0,24.0,14.0,760),(12790,377367,30.0,24.0,14.0,762),(12791,377247,30.0,24.0,14.0,762),(12792,339904,39.0,29.0,17.0,1522),(12793,377103,33.0,25.0,11.0,742),(12794,377702,33.0,25.0,11.0,742),(12795,377024,33.0,25.0,11.0,744),(12796,377184,33.0,25.0,11.0,744),(12797,377156,33.0,25.0,11.0,746),(12798,377827,33.0,25.0,11.0,740),(12799,377465,30.0,24.0,14.0,1150),(12800,378680,30.0,24.0,14.0,580),(12801,378568,46.0,29.0,22.0,2440),(12802,377800,39.0,29.0,17.0,1082),(12803,377467,33.0,25.0,11.0,1190),(12804,377437,33.0,25.0,11.0,742),(12805,377233,30.0,24.0,14.0,962),(12806,377430,33.0,25.0,11.0,774),(12807,377029,33.0,25.0,11.0,777),(12808,377502,33.0,25.0,11.0,772),(12809,378810,30.0,24.0,14.0,564),(12810,378807,44.0,31.0,36.0,2472),(12811,378808,30.0,24.0,14.0,734),(12812,378795,30.0,24.0,14.0,818),(12813,378714,30.0,24.0,14.0,626),(12814,378591,30.0,24.0,14.0,712),(12815,378733,39.0,29.0,17.0,1554),(12816,374786,30.0,24.0,14.0,714),(12817,378738,39.0,29.0,17.0,1774),(12818,376706,30.0,24.0,14.0,778),(12819,378739,30.0,24.0,14.0,774),(12820,376401,30.0,24.0,14.0,776),(12821,378745,30.0,24.0,14.0,982),(12822,378805,33.0,25.0,11.0,742),(12823,378705,0.0,0.0,0.0,740),(12824,378750,0.0,0.0,0.0,754),(12825,377068,0.0,0.0,0.0,1156),(12826,378724,0.0,0.0,0.0,554),(12827,378748,0.0,0.0,0.0,806),(12828,378734,0.0,0.0,0.0,2396),(12829,376599,0.0,0.0,0.0,762),(12830,376986,0.0,0.0,0.0,1002),(12831,378702,0.0,0.0,0.0,1470),(12832,378446,0.0,0.0,0.0,535),(12833,377956,0.0,0.0,0.0,570),(12834,378725,0.0,0.0,0.0,774),(12835,378716,0.0,0.0,0.0,542),(12836,378723,0.0,0.0,0.0,595),(12837,373280,0.0,0.0,0.0,570),(12838,373278,0.0,0.0,0.0,560),(12839,378639,0.0,0.0,0.0,810),(12840,378818,0.0,0.0,0.0,1215),(12841,378806,0.0,0.0,0.0,1220),(12842,378813,0.0,0.0,0.0,1215),(12843,378800,0.0,0.0,0.0,1210),(12844,378611,0.0,0.0,0.0,1440),(12845,378039,0.0,0.0,0.0,760),(12846,377147,0.0,0.0,0.0,746),(12847,377704,0.0,0.0,0.0,750),(12848,377175,0.0,0.0,0.0,746),(12849,378105,0.0,0.0,0.0,750),(12850,378051,0.0,0.0,0.0,780),(12851,378078,0.0,0.0,0.0,766),(12852,377866,0.0,0.0,0.0,750),(12853,377094,0.0,0.0,0.0,776),(12854,376938,0.0,0.0,0.0,776),(12855,378644,0.0,0.0,0.0,776),(12856,378727,0.0,0.0,0.0,794),(12857,378728,0.0,0.0,0.0,792),(12858,378729,0.0,0.0,0.0,788),(12859,378731,0.0,0.0,0.0,815),(12860,377826,0.0,0.0,0.0,760),(12861,377368,0.0,0.0,0.0,765),(12862,377310,0.0,0.0,0.0,765),(12863,377204,0.0,0.0,0.0,760),(12864,377249,0.0,0.0,0.0,765),(12865,375722,0.0,0.0,0.0,1186),(12866,375742,0.0,0.0,0.0,1192),(12867,370717,0.0,0.0,0.0,1188),(12868,370758,0.0,0.0,0.0,1190),(12869,371054,0.0,0.0,0.0,1184),(12870,371065,0.0,0.0,0.0,1188),(12871,371387,0.0,0.0,0.0,1192),(12872,367648,0.0,0.0,0.0,1192),(12873,368438,0.0,0.0,0.0,1190),(12874,369702,0.0,0.0,0.0,1180),(12875,377806,0.0,0.0,0.0,1176),(12876,377214,0.0,0.0,0.0,1186),(12877,377189,0.0,0.0,0.0,1182),(12878,377105,0.0,0.0,0.0,1180),(12879,377064,0.0,0.0,0.0,1182),(12880,377021,0.0,0.0,0.0,1176),(12881,376748,0.0,0.0,0.0,1184),(12882,376585,0.0,0.0,0.0,1184),(12883,376511,0.0,0.0,0.0,1180),(12884,376349,0.0,0.0,0.0,1188),(12885,376314,0.0,0.0,0.0,1180),(12886,378566,0.0,0.0,0.0,1182),(12887,370289,0.0,0.0,0.0,1168),(12888,370402,0.0,0.0,0.0,1172),(12889,377837,0.0,0.0,0.0,1172),(12890,376159,0.0,0.0,0.0,1192),(12891,376067,0.0,0.0,0.0,1180),(12892,377486,0.0,0.0,0.0,1210),(12893,377789,0.0,0.0,0.0,1202),(12894,377407,0.0,0.0,0.0,1208),(12895,377254,0.0,0.0,0.0,1208),(12896,377072,0.0,0.0,0.0,1204),(12898,376596,0.0,0.0,0.0,1206),(12899,376544,0.0,0.0,0.0,1212),(12900,376452,0.0,0.0,0.0,1206),(12901,376371,0.0,0.0,0.0,1208),(12902,376267,0.0,0.0,0.0,1202),(12903,375964,0.0,0.0,0.0,1200),(12904,375862,0.0,0.0,0.0,1202),(12905,375726,0.0,0.0,0.0,1204),(12906,374875,0.0,0.0,0.0,1208),(12907,374740,0.0,0.0,0.0,1200),(12908,374547,0.0,0.0,0.0,1190),(12909,373695,0.0,0.0,0.0,1222),(12910,376271,0.0,0.0,0.0,1195),(12911,375231,0.0,0.0,0.0,1195),(12912,375143,0.0,0.0,0.0,1185),(12913,375135,0.0,0.0,0.0,1200),(12914,374846,0.0,0.0,0.0,1200),(12915,374770,0.0,0.0,0.0,1200),(12916,374490,0.0,0.0,0.0,1190),(12917,374498,0.0,0.0,0.0,1200),(12918,371809,0.0,0.0,0.0,1215),(12919,372417,0.0,0.0,0.0,1215),(12920,372286,0.0,0.0,0.0,1205),(12921,373075,0.0,0.0,0.0,1215),(12922,373780,0.0,0.0,0.0,1205),(12923,373995,0.0,0.0,0.0,1215),(12924,374329,0.0,0.0,0.0,1210),(12925,374330,0.0,0.0,0.0,1220),(12926,370464,0.0,0.0,0.0,1200),(12927,370570,0.0,0.0,0.0,1210),(12928,373661,0.0,0.0,0.0,1210),(12929,372844,0.0,0.0,0.0,1215),(12930,373615,0.0,0.0,0.0,1210),(12931,372582,0.0,0.0,0.0,1215),(12932,372805,0.0,0.0,0.0,1205),(12933,369696,0.0,0.0,0.0,1215),(12934,371808,0.0,0.0,0.0,1205),(12935,371818,0.0,0.0,0.0,1215),(12936,373798,0.0,0.0,0.0,1205),(12937,373800,0.0,0.0,0.0,1220),(12938,378168,0.0,0.0,0.0,850),(12939,378397,0.0,0.0,0.0,585),(12940,378577,0.0,0.0,0.0,695),(12941,378147,0.0,0.0,0.0,800),(12942,378481,0.0,0.0,0.0,790),(12943,378531,0.0,0.0,0.0,830),(12944,376377,39.0,29.0,17.0,1520),(12945,379013,30.0,24.0,14.0,904),(12946,378841,30.0,24.0,14.0,1160),(12947,378839,30.0,24.0,14.0,738),(12948,378883,33.0,25.0,11.0,776),(12949,377978,33.0,25.0,11.0,782),(12950,378953,33.0,25.0,11.0,784),(12951,378993,33.0,25.0,11.0,776),(12952,378957,30.0,24.0,6.0,282),(12953,378887,30.0,24.0,14.0,708),(12954,358607,30.0,24.0,14.0,580),(12955,377205,30.0,24.0,14.0,580),(12956,379055,30.0,24.0,14.0,800),(12957,379068,33.0,25.0,11.0,742),(12958,378952,33.0,25.0,11.0,772),(12959,379014,30.0,24.0,14.0,526),(12960,378956,33.0,25.0,11.0,742),(12961,378980,30.0,24.0,14.0,574),(12962,378569,30.0,24.0,14.0,730),(12963,379261,30.0,24.0,14.0,576),(12964,378553,33.0,25.0,11.0,776),(12965,378101,46.0,29.0,22.0,2584),(12966,376923,0.0,0.0,0.0,2444),(12967,379418,39.0,29.0,17.0,1264),(12968,374694,0.0,0.0,0.0,566),(12969,374691,0.0,0.0,0.0,566),(12970,374690,0.0,0.0,0.0,566),(12971,374688,0.0,0.0,0.0,566),(12972,374685,0.0,0.0,0.0,566),(12973,374686,0.0,0.0,0.0,566),(12974,377065,0.0,0.0,0.0,626),(12975,374683,0.0,0.0,0.0,567),(12976,374682,0.0,0.0,0.0,566),(12977,374681,0.0,0.0,0.0,566),(12978,374675,0.0,0.0,0.0,566),(12979,375894,0.0,0.0,0.0,566),(12980,374695,0.0,0.0,0.0,566),(12981,379484,0.0,0.0,0.0,1050),(12982,379421,0.0,0.0,0.0,555),(12983,379824,0.0,0.0,0.0,538),(12984,379708,0.0,0.0,0.0,465),(12985,379701,0.0,0.0,0.0,562),(12986,379560,0.0,0.0,0.0,550),(12987,379776,0.0,0.0,0.0,892),(12988,379579,0.0,0.0,0.0,896),(12989,378935,0.0,0.0,0.0,562),(12990,378936,0.0,0.0,0.0,552),(12991,379136,0.0,0.0,0.0,542),(12992,379174,0.0,0.0,0.0,548),(12993,379134,0.0,0.0,0.0,530),(12994,379185,0.0,0.0,0.0,535),(12995,379173,0.0,0.0,0.0,538),(12996,379138,0.0,0.0,0.0,565),(12997,379139,0.0,0.0,0.0,582),(12998,379137,0.0,0.0,0.0,570),(12999,379201,0.0,0.0,0.0,766),(13000,379211,0.0,0.0,0.0,766),(13001,379026,0.0,0.0,0.0,766),(13002,379733,0.0,0.0,0.0,766),(13003,379703,0.0,0.0,0.0,766),(13004,379519,0.0,0.0,0.0,766),(13005,378938,0.0,0.0,0.0,766),(13006,379454,0.0,0.0,0.0,766),(13007,379345,0.0,0.0,0.0,766),(13008,379458,0.0,0.0,0.0,766),(13009,379369,0.0,0.0,0.0,769),(13010,379444,0.0,0.0,0.0,766),(13011,379445,0.0,0.0,0.0,766),(13012,379452,0.0,0.0,0.0,766),(13013,378889,0.0,0.0,0.0,732),(13014,379124,0.0,0.0,0.0,732),(13015,378947,0.0,0.0,0.0,760),(13016,378853,0.0,0.0,0.0,760),(13017,377955,0.0,0.0,0.0,1515),(13018,378966,0.0,0.0,0.0,1190),(13019,378589,0.0,0.0,0.0,742),(13020,378874,0.0,0.0,0.0,182),(13021,379423,0.0,0.0,0.0,914),(13022,379441,0.0,0.0,0.0,778),(13023,379442,0.0,0.0,0.0,776),(13024,379566,0.0,0.0,0.0,770),(13025,7286,0.0,0.0,0.0,1428),(13026,378838,0.0,0.0,0.0,528),(13027,379037,0.0,0.0,0.0,815),(13028,378924,0.0,0.0,0.0,786),(13029,379228,0.0,0.0,0.0,606),(13030,379573,0.0,0.0,0.0,1112),(13031,377302,0.0,0.0,0.0,1160),(13032,379756,0.0,0.0,0.0,1188),(13033,379505,0.0,0.0,0.0,1188),(13034,378894,0.0,0.0,0.0,1196),(13035,379052,0.0,0.0,0.0,1195),(13036,378860,0.0,0.0,0.0,1195),(13037,379628,0.0,0.0,0.0,750),(13038,379466,0.0,0.0,0.0,760),(13039,379764,0.0,0.0,0.0,755),(13040,379058,0.0,0.0,0.0,1680),(13041,379397,0.0,0.0,0.0,1465),(13042,379187,0.0,0.0,0.0,752),(13043,379181,0.0,0.0,0.0,755),(13044,379165,0.0,0.0,0.0,735),(13045,370345,0.0,0.0,0.0,1312),(13046,379368,0.0,0.0,0.0,1188),(13047,379755,0.0,0.0,0.0,1395),(13048,378909,0.0,0.0,0.0,1480),(13049,379697,0.0,0.0,0.0,1556),(13050,380055,0.0,0.0,0.0,794),(13051,379957,0.0,0.0,0.0,816),(13052,379940,0.0,0.0,0.0,816),(13053,380091,0.0,0.0,0.0,816),(13054,380079,0.0,0.0,0.0,836),(13055,380139,0.0,0.0,0.0,582),(13056,380122,0.0,0.0,0.0,596),(13057,379902,0.0,0.0,0.0,754),(13058,380107,0.0,0.0,0.0,792),(13059,380085,0.0,0.0,0.0,792),(13060,379972,0.0,0.0,0.0,792),(13061,379962,0.0,0.0,0.0,792),(13062,379961,0.0,0.0,0.0,792),(13063,379960,0.0,0.0,0.0,792),(13064,379958,0.0,0.0,0.0,792),(13065,380177,0.0,0.0,0.0,2244),(13066,380021,0.0,0.0,0.0,1030),(13067,379810,0.0,0.0,0.0,750),(13068,379945,0.0,0.0,0.0,982),(13069,380089,0.0,0.0,0.0,358),(13070,380090,0.0,0.0,0.0,386),(13071,380137,0.0,0.0,0.0,514),(13072,380201,0.0,0.0,0.0,566),(13073,379953,0.0,0.0,0.0,546),(13074,379883,0.0,0.0,0.0,594),(13075,380117,0.0,0.0,0.0,544),(13076,379891,0.0,0.0,0.0,524),(13077,379899,0.0,0.0,0.0,518),(13078,380202,0.0,0.0,0.0,826),(13079,379422,0.0,0.0,0.0,762),(13080,380093,0.0,0.0,0.0,766),(13081,380068,0.0,0.0,0.0,526),(13082,379956,0.0,0.0,0.0,830),(13083,379955,0.0,0.0,0.0,762),(13084,380092,0.0,0.0,0.0,766),(13085,380067,0.0,0.0,0.0,806),(13086,378171,0.0,0.0,0.0,830),(13087,378179,0.0,0.0,0.0,830),(13088,378177,0.0,0.0,0.0,830),(13089,378176,0.0,0.0,0.0,830),(13090,378175,0.0,0.0,0.0,830),(13091,378174,0.0,0.0,0.0,830),(13092,378173,0.0,0.0,0.0,830),(13093,378172,0.0,0.0,0.0,830),(13094,378170,0.0,0.0,0.0,830),(13095,378212,0.0,0.0,0.0,830),(13096,378211,0.0,0.0,0.0,830),(13097,378209,0.0,0.0,0.0,830),(13098,378208,0.0,0.0,0.0,830),(13099,378207,0.0,0.0,0.0,830),(13100,378205,0.0,0.0,0.0,830),(13101,378204,0.0,0.0,0.0,830),(13102,378203,0.0,0.0,0.0,830),(13103,378202,0.0,0.0,0.0,830),(13104,378201,0.0,0.0,0.0,830),(13105,378200,0.0,0.0,0.0,830),(13106,378199,0.0,0.0,0.0,830),(13107,378198,0.0,0.0,0.0,830),(13108,378196,0.0,0.0,0.0,830),(13109,378195,0.0,0.0,0.0,830),(13110,378194,0.0,0.0,0.0,830),(13111,378193,0.0,0.0,0.0,830),(13112,378192,0.0,0.0,0.0,830),(13113,378191,0.0,0.0,0.0,830),(13114,378190,0.0,0.0,0.0,830),(13115,378189,0.0,0.0,0.0,830),(13116,378188,0.0,0.0,0.0,830),(13117,378187,0.0,0.0,0.0,830),(13118,378186,0.0,0.0,0.0,830),(13119,378185,0.0,0.0,0.0,830),(13120,378184,0.0,0.0,0.0,830),(13121,378183,0.0,0.0,0.0,830),(13122,378182,0.0,0.0,0.0,830),(13123,378181,0.0,0.0,0.0,830),(13124,378180,0.0,0.0,0.0,830),(13125,378246,0.0,0.0,0.0,830),(13126,378245,0.0,0.0,0.0,830),(13127,378244,0.0,0.0,0.0,830),(13128,378243,0.0,0.0,0.0,830),(13129,378242,0.0,0.0,0.0,830),(13130,378241,0.0,0.0,0.0,830),(13131,378239,0.0,0.0,0.0,830),(13132,378238,0.0,0.0,0.0,830),(13133,378237,0.0,0.0,0.0,830),(13134,378236,0.0,0.0,0.0,830),(13135,362180,0.0,0.0,0.0,750),(13136,379605,0.0,0.0,0.0,525),(13137,379749,0.0,0.0,0.0,570),(13138,379456,0.0,0.0,0.0,885),(13139,379729,0.0,0.0,0.0,732),(13140,379561,0.0,0.0,0.0,750),(13141,379702,0.0,0.0,0.0,732),(13142,379559,0.0,0.0,0.0,760),(13143,379826,0.0,0.0,0.0,760),(13144,379565,0.0,0.0,0.0,758),(13145,379700,0.0,0.0,0.0,722),(13146,379510,0.0,0.0,0.0,792),(13147,379515,0.0,0.0,0.0,766),(13148,379827,0.0,0.0,0.0,832),(13149,379618,0.0,0.0,0.0,588),(13150,379580,0.0,0.0,0.0,836),(13151,379487,0.0,0.0,0.0,836),(13152,379355,0.0,0.0,0.0,863),(13153,379399,0.0,0.0,0.0,795),(13154,379592,0.0,0.0,0.0,795),(13155,378937,0.0,0.0,0.0,830),(13156,378934,0.0,0.0,0.0,830),(13157,378726,0.0,0.0,0.0,830),(13158,378542,0.0,0.0,0.0,830),(13159,378541,0.0,0.0,0.0,830),(13160,378540,0.0,0.0,0.0,830),(13161,378538,0.0,0.0,0.0,830),(13162,378539,0.0,0.0,0.0,830),(13163,379177,0.0,0.0,0.0,830),(13164,378371,0.0,0.0,0.0,830),(13165,378722,0.0,0.0,0.0,830),(13166,378386,0.0,0.0,0.0,830),(13167,378360,0.0,0.0,0.0,830),(13168,378331,0.0,0.0,0.0,830),(13169,378295,0.0,0.0,0.0,830),(13170,378265,0.0,0.0,0.0,830),(13171,378219,0.0,0.0,0.0,830),(13172,379446,0.0,0.0,0.0,830),(13173,379440,0.0,0.0,0.0,830),(13174,365431,0.0,0.0,0.0,836),(13175,373907,0.0,0.0,0.0,792),(13176,369584,0.0,0.0,0.0,766),(13177,369088,0.0,0.0,0.0,766),(13178,365409,0.0,0.0,0.0,835),(13179,365415,0.0,0.0,0.0,835),(13180,379395,0.0,0.0,0.0,595),(13181,379451,0.0,0.0,0.0,593),(13182,351186,0.0,0.0,0.0,593),(13183,379209,0.0,0.0,0.0,593),(13184,379459,0.0,0.0,0.0,593),(13185,380124,30.0,24.0,14.0,750),(13186,378401,30.0,24.0,14.0,830),(13187,378417,30.0,24.0,14.0,830),(13188,377170,30.0,24.0,14.0,830),(13189,378438,30.0,24.0,14.0,830),(13190,378421,30.0,24.0,14.0,830),(13191,378440,30.0,24.0,14.0,830),(13192,378458,30.0,24.0,14.0,830),(13193,378459,30.0,24.0,14.0,830),(13194,378473,30.0,24.0,14.0,830),(13195,378482,30.0,24.0,14.0,830),(13196,378933,0.0,0.0,0.0,760),(13197,379324,0.0,0.0,0.0,2690),(13198,378504,30.0,24.0,14.0,830),(13199,378178,30.0,24.0,14.0,830),(13200,378210,30.0,24.0,14.0,830),(13201,377865,30.0,24.0,14.0,738),(13202,377431,30.0,24.0,14.0,1010),(13203,379311,33.0,25.0,11.0,776),(13204,373976,30.0,24.0,14.0,795),(13205,379479,30.0,24.0,14.0,795),(13206,379282,30.0,24.0,14.0,572),(13207,379288,30.0,24.0,14.0,582),(13208,379295,33.0,25.0,11.0,1715),(13209,379492,30.0,24.0,14.0,705),(13210,380142,42.0,37.0,34.0,2315),(13211,379713,46.0,29.0,22.0,1602),(13212,375996,39.0,29.0,17.0,1802),(13213,379599,45.0,43.0,28.0,2922),(13214,379467,30.0,24.0,14.0,572),(13215,379500,30.0,24.0,14.0,736),(13216,379348,33.0,25.0,11.0,768),(13217,379995,33.0,25.0,11.0,785),(13218,379556,30.0,24.0,14.0,728),(13219,379411,30.0,24.0,14.0,760),(13220,379786,30.0,24.0,14.0,735),(13221,379797,30.0,24.0,14.0,735),(13222,378074,30.0,24.0,14.0,1150),(13223,379793,30.0,24.0,14.0,1150),(13224,379844,30.0,24.0,14.0,1122),(13225,379623,30.0,24.0,14.0,572),(13226,379759,30.0,24.0,14.0,812),(13227,379361,30.0,24.0,14.0,552),(13228,379358,33.0,25.0,11.0,778),(13229,379603,30.0,24.0,14.0,992),(13230,379372,30.0,24.0,14.0,990),(13231,379589,30.0,24.0,14.0,992),(13232,379220,30.0,24.0,14.0,1035),(13233,379577,33.0,25.0,11.0,776),(13234,379627,33.0,25.0,11.0,776),(13235,379609,33.0,25.0,11.0,776),(13236,379328,30.0,24.0,14.0,840),(13237,378572,30.0,24.0,14.0,1012),(13238,379360,30.0,24.0,14.0,575),(13239,379578,30.0,24.0,14.0,518),(13240,377239,33.0,25.0,11.0,735),(13241,379104,33.0,25.0,11.0,735),(13242,379334,33.0,25.0,11.0,718),(13243,379216,30.0,24.0,14.0,572),(13244,379224,30.0,24.0,14.0,572),(13245,379222,30.0,24.0,14.0,572),(13246,379374,0.0,0.0,0.0,572),(13247,379932,30.0,24.0,14.0,536),(13248,380111,30.0,24.0,14.0,860),(13249,380059,30.0,24.0,14.0,590),(13250,378055,30.0,24.0,14.0,592),(13251,380037,30.0,24.0,14.0,562),(13252,380172,30.0,24.0,14.0,564),(13253,380108,30.0,24.0,14.0,534),(13254,379869,30.0,24.0,14.0,936),(13255,379379,30.0,24.0,14.0,886),(13256,379871,30.0,24.0,14.0,1175),(13257,379938,30.0,24.0,14.0,1175),(13258,379895,33.0,25.0,11.0,744),(13259,380149,33.0,25.0,11.0,776),(13260,379279,30.0,24.0,14.0,572),(13261,380080,30.0,24.0,14.0,1002),(13262,378361,0.0,0.0,0.0,830),(13263,378359,0.0,0.0,0.0,830),(13264,378358,0.0,0.0,0.0,830),(13265,378357,0.0,0.0,0.0,830),(13266,378355,0.0,0.0,0.0,830),(13267,378354,0.0,0.0,0.0,830),(13268,378353,0.0,0.0,0.0,830),(13269,378352,0.0,0.0,0.0,830),(13270,378351,0.0,0.0,0.0,830),(13271,378350,0.0,0.0,0.0,830),(13272,378349,0.0,0.0,0.0,830),(13273,378348,0.0,0.0,0.0,830),(13274,378347,0.0,0.0,0.0,830),(13275,378345,0.0,0.0,0.0,830),(13276,378344,0.0,0.0,0.0,830),(13277,378343,0.0,0.0,0.0,830),(13278,378342,0.0,0.0,0.0,830),(13279,378341,0.0,0.0,0.0,830),(13280,378340,0.0,0.0,0.0,830),(13281,378339,0.0,0.0,0.0,830),(13282,378338,0.0,0.0,0.0,830),(13283,378337,0.0,0.0,0.0,830),(13284,378336,0.0,0.0,0.0,830),(13285,378333,0.0,0.0,0.0,830),(13286,378332,0.0,0.0,0.0,830),(13287,378330,0.0,0.0,0.0,830),(13288,378329,0.0,0.0,0.0,830),(13289,378328,0.0,0.0,0.0,830),(13290,378327,0.0,0.0,0.0,830),(13291,378326,0.0,0.0,0.0,830),(13292,378325,0.0,0.0,0.0,830),(13293,378324,0.0,0.0,0.0,830),(13294,378323,0.0,0.0,0.0,830),(13295,378322,0.0,0.0,0.0,830),(13296,378321,0.0,0.0,0.0,830),(13297,378320,0.0,0.0,0.0,830),(13298,378319,0.0,0.0,0.0,830),(13299,378318,0.0,0.0,0.0,830),(13300,378317,0.0,0.0,0.0,830),(13301,378316,0.0,0.0,0.0,830),(13302,378314,0.0,0.0,0.0,830),(13303,378313,0.0,0.0,0.0,830),(13304,378312,0.0,0.0,0.0,830),(13305,378311,0.0,0.0,0.0,830),(13306,378310,0.0,0.0,0.0,830),(13307,378309,0.0,0.0,0.0,830),(13308,378308,0.0,0.0,0.0,830),(13309,378307,0.0,0.0,0.0,830),(13310,378306,0.0,0.0,0.0,830),(13311,378305,0.0,0.0,0.0,830),(13312,378304,0.0,0.0,0.0,830),(13313,378535,0.0,0.0,0.0,830),(13314,378536,0.0,0.0,0.0,830),(13315,378534,0.0,0.0,0.0,830),(13316,378533,0.0,0.0,0.0,830),(13317,378532,0.0,0.0,0.0,830),(13318,378529,0.0,0.0,0.0,830),(13319,378946,0.0,0.0,0.0,830),(13320,378945,0.0,0.0,0.0,830),(13321,378940,0.0,0.0,0.0,830),(13322,378939,0.0,0.0,0.0,830),(13323,378530,0.0,0.0,0.0,830),(13324,378528,0.0,0.0,0.0,830),(13325,378527,0.0,0.0,0.0,830),(13326,378526,0.0,0.0,0.0,830),(13327,378525,0.0,0.0,0.0,830),(13328,378524,0.0,0.0,0.0,830),(13329,378522,0.0,0.0,0.0,830),(13330,378521,0.0,0.0,0.0,830),(13331,378520,0.0,0.0,0.0,830),(13332,378519,0.0,0.0,0.0,830),(13333,378537,0.0,0.0,0.0,830),(13334,378162,0.0,0.0,0.0,830),(13335,378161,0.0,0.0,0.0,830),(13336,378160,0.0,0.0,0.0,830),(13337,378159,0.0,0.0,0.0,830),(13338,375530,0.0,0.0,0.0,830),(13339,378518,0.0,0.0,0.0,830),(13340,378517,0.0,0.0,0.0,830),(13341,378516,0.0,0.0,0.0,830),(13342,378515,0.0,0.0,0.0,830),(13343,378514,0.0,0.0,0.0,830),(13344,378513,0.0,0.0,0.0,830),(13345,378511,0.0,0.0,0.0,830),(13346,378510,0.0,0.0,0.0,830),(13347,378250,0.0,0.0,0.0,830),(13348,378206,0.0,0.0,0.0,830),(13349,378334,0.0,0.0,0.0,830),(13350,378263,0.0,0.0,0.0,830),(13351,378356,0.0,0.0,0.0,830),(13352,375036,0.0,0.0,0.0,830),(13353,378167,0.0,0.0,0.0,830),(13354,378169,0.0,0.0,0.0,830),(13355,378165,0.0,0.0,0.0,830),(13356,378166,0.0,0.0,0.0,830),(13357,378164,0.0,0.0,0.0,830),(13358,378163,0.0,0.0,0.0,830),(13359,378197,0.0,0.0,0.0,830),(13360,378240,0.0,0.0,0.0,830),(13361,378247,0.0,0.0,0.0,830),(13362,378346,0.0,0.0,0.0,830),(13363,378280,0.0,0.0,0.0,830),(13364,378279,0.0,0.0,0.0,830),(13365,378278,0.0,0.0,0.0,830),(13366,378277,0.0,0.0,0.0,830),(13367,378276,0.0,0.0,0.0,830),(13368,378275,0.0,0.0,0.0,830),(13369,378274,0.0,0.0,0.0,830),(13370,378273,0.0,0.0,0.0,830),(13371,378272,0.0,0.0,0.0,830),(13372,378271,0.0,0.0,0.0,830),(13373,378270,0.0,0.0,0.0,830),(13374,378269,0.0,0.0,0.0,830),(13375,378268,0.0,0.0,0.0,830),(13376,378267,0.0,0.0,0.0,830),(13377,378266,0.0,0.0,0.0,830),(13378,378264,0.0,0.0,0.0,830),(13379,378262,0.0,0.0,0.0,830),(13380,378261,0.0,0.0,0.0,830),(13381,378260,0.0,0.0,0.0,830),(13382,378930,0.0,0.0,0.0,830),(13383,378703,0.0,0.0,0.0,830),(13384,378395,0.0,0.0,0.0,830),(13385,378394,0.0,0.0,0.0,830),(13386,378393,0.0,0.0,0.0,830),(13387,378392,0.0,0.0,0.0,830),(13388,378391,0.0,0.0,0.0,830),(13389,378390,0.0,0.0,0.0,830),(13390,378389,0.0,0.0,0.0,830),(13391,378388,0.0,0.0,0.0,830),(13392,378387,0.0,0.0,0.0,830),(13393,378385,0.0,0.0,0.0,830),(13394,378384,0.0,0.0,0.0,830),(13395,378383,0.0,0.0,0.0,830),(13396,378382,0.0,0.0,0.0,830),(13397,378381,0.0,0.0,0.0,830),(13398,378379,0.0,0.0,0.0,830),(13399,378378,0.0,0.0,0.0,830),(13400,378376,0.0,0.0,0.0,830),(13401,378375,0.0,0.0,0.0,830),(13402,378374,0.0,0.0,0.0,830),(13403,378373,0.0,0.0,0.0,830),(13404,378372,0.0,0.0,0.0,830),(13405,378369,0.0,0.0,0.0,830),(13406,378368,0.0,0.0,0.0,830),(13407,378366,0.0,0.0,0.0,830),(13408,378365,0.0,0.0,0.0,830),(13409,378364,0.0,0.0,0.0,830),(13410,378363,0.0,0.0,0.0,830),(13411,378362,0.0,0.0,0.0,830),(13412,378370,0.0,0.0,0.0,830),(13413,378235,0.0,0.0,0.0,830),(13414,378234,0.0,0.0,0.0,830),(13415,378233,0.0,0.0,0.0,830),(13416,378232,0.0,0.0,0.0,830),(13417,378231,0.0,0.0,0.0,830),(13418,378230,0.0,0.0,0.0,830),(13419,378229,0.0,0.0,0.0,830),(13420,378228,0.0,0.0,0.0,830),(13421,378227,0.0,0.0,0.0,830),(13422,378226,0.0,0.0,0.0,830),(13423,378224,0.0,0.0,0.0,830),(13424,378223,0.0,0.0,0.0,830),(13425,378222,0.0,0.0,0.0,830),(13426,378221,0.0,0.0,0.0,830),(13427,378220,0.0,0.0,0.0,830),(13428,378218,0.0,0.0,0.0,830),(13429,378217,0.0,0.0,0.0,830),(13430,378215,0.0,0.0,0.0,830),(13431,378214,0.0,0.0,0.0,830),(13432,378213,0.0,0.0,0.0,830),(13433,378303,0.0,0.0,0.0,830),(13434,378302,0.0,0.0,0.0,830),(13435,378301,0.0,0.0,0.0,830),(13436,378300,0.0,0.0,0.0,830),(13437,378299,0.0,0.0,0.0,830),(13438,378298,0.0,0.0,0.0,830),(13439,378297,0.0,0.0,0.0,830),(13440,378296,0.0,0.0,0.0,830),(13441,378294,0.0,0.0,0.0,830),(13442,378293,0.0,0.0,0.0,830),(13443,378292,0.0,0.0,0.0,830),(13444,378291,0.0,0.0,0.0,830),(13445,378290,0.0,0.0,0.0,830),(13446,378289,0.0,0.0,0.0,830),(13447,378288,0.0,0.0,0.0,830),(13448,378287,0.0,0.0,0.0,830),(13449,378286,0.0,0.0,0.0,830),(13450,378248,0.0,0.0,0.0,830),(13451,378285,0.0,0.0,0.0,830),(13452,378284,0.0,0.0,0.0,830),(13453,378283,0.0,0.0,0.0,830),(13454,378258,0.0,0.0,0.0,830),(13455,378257,0.0,0.0,0.0,830),(13456,378256,0.0,0.0,0.0,830),(13457,378255,0.0,0.0,0.0,830),(13458,378254,0.0,0.0,0.0,830),(13459,378253,0.0,0.0,0.0,830),(13460,378252,0.0,0.0,0.0,830),(13461,378251,0.0,0.0,0.0,830),(13462,378249,0.0,0.0,0.0,830),(13463,378453,0.0,0.0,0.0,830),(13464,378452,0.0,0.0,0.0,830),(13465,378451,0.0,0.0,0.0,830),(13466,378450,0.0,0.0,0.0,830),(13467,378449,0.0,0.0,0.0,830),(13468,378448,0.0,0.0,0.0,830),(13469,378447,0.0,0.0,0.0,830),(13470,378445,0.0,0.0,0.0,830),(13471,378443,0.0,0.0,0.0,830),(13472,378442,0.0,0.0,0.0,830),(13473,378441,0.0,0.0,0.0,830),(13474,378439,0.0,0.0,0.0,830),(13475,378437,0.0,0.0,0.0,830),(13476,378436,0.0,0.0,0.0,830),(13477,378435,0.0,0.0,0.0,830),(13478,378434,0.0,0.0,0.0,830),(13479,378433,0.0,0.0,0.0,830),(13480,378432,0.0,0.0,0.0,830),(13481,378431,0.0,0.0,0.0,830),(13482,378430,0.0,0.0,0.0,830),(13483,378429,0.0,0.0,0.0,830),(13484,378428,0.0,0.0,0.0,830),(13485,378427,0.0,0.0,0.0,830),(13486,378426,0.0,0.0,0.0,830),(13487,378425,0.0,0.0,0.0,830),(13488,378424,0.0,0.0,0.0,830),(13489,378423,0.0,0.0,0.0,830),(13490,378422,0.0,0.0,0.0,830),(13491,378420,0.0,0.0,0.0,830),(13492,378419,0.0,0.0,0.0,830),(13493,378418,0.0,0.0,0.0,830),(13494,378416,0.0,0.0,0.0,830),(13495,378415,0.0,0.0,0.0,830),(13496,378414,0.0,0.0,0.0,830),(13497,378413,0.0,0.0,0.0,830),(13498,378412,0.0,0.0,0.0,830),(13499,378411,0.0,0.0,0.0,830),(13500,378410,0.0,0.0,0.0,830),(13501,378409,0.0,0.0,0.0,830),(13502,378408,0.0,0.0,0.0,830),(13503,378407,0.0,0.0,0.0,830),(13504,378406,0.0,0.0,0.0,830),(13505,378405,0.0,0.0,0.0,830),(13506,378404,0.0,0.0,0.0,830),(13507,378403,0.0,0.0,0.0,830),(13508,378402,0.0,0.0,0.0,830),(13509,378400,0.0,0.0,0.0,830),(13510,378399,0.0,0.0,0.0,830),(13511,378398,0.0,0.0,0.0,830),(13512,378065,0.0,0.0,0.0,830),(13513,379176,0.0,0.0,0.0,830),(13514,378281,0.0,0.0,0.0,830),(13515,378509,0.0,0.0,0.0,830),(13516,378508,0.0,0.0,0.0,830),(13517,378507,0.0,0.0,0.0,830),(13518,378506,0.0,0.0,0.0,830),(13519,378505,0.0,0.0,0.0,830),(13520,378503,0.0,0.0,0.0,830),(13521,378502,0.0,0.0,0.0,830),(13522,378501,0.0,0.0,0.0,830),(13523,378500,0.0,0.0,0.0,830),(13524,378499,0.0,0.0,0.0,830),(13525,378498,0.0,0.0,0.0,830),(13526,378497,0.0,0.0,0.0,830),(13527,378496,0.0,0.0,0.0,830),(13528,378495,0.0,0.0,0.0,830),(13529,378494,0.0,0.0,0.0,830),(13530,378493,0.0,0.0,0.0,830),(13531,378492,0.0,0.0,0.0,830),(13532,378490,0.0,0.0,0.0,830),(13533,378489,0.0,0.0,0.0,830),(13534,378488,0.0,0.0,0.0,830),(13535,378487,0.0,0.0,0.0,830),(13536,378486,0.0,0.0,0.0,830),(13537,378485,0.0,0.0,0.0,830),(13538,378484,0.0,0.0,0.0,830),(13539,378483,0.0,0.0,0.0,830),(13540,378480,0.0,0.0,0.0,830),(13541,378479,0.0,0.0,0.0,830),(13542,378478,0.0,0.0,0.0,830),(13543,378477,0.0,0.0,0.0,830),(13544,378476,0.0,0.0,0.0,830),(13545,378475,0.0,0.0,0.0,830),(13546,378474,0.0,0.0,0.0,830),(13547,378472,0.0,0.0,0.0,830),(13548,378471,0.0,0.0,0.0,830),(13549,378470,0.0,0.0,0.0,830),(13550,378468,0.0,0.0,0.0,830),(13551,378467,0.0,0.0,0.0,830),(13552,378466,0.0,0.0,0.0,830),(13553,378465,0.0,0.0,0.0,830),(13554,378464,0.0,0.0,0.0,830),(13555,378463,0.0,0.0,0.0,830),(13556,378461,0.0,0.0,0.0,830),(13557,378460,0.0,0.0,0.0,830),(13558,378457,0.0,0.0,0.0,830),(13559,378456,0.0,0.0,0.0,830),(13560,378455,0.0,0.0,0.0,830),(13561,378454,0.0,0.0,0.0,830),(13562,378491,0.0,0.0,0.0,830),(13563,372985,30.0,24.0,6.0,546),(13564,380250,39.0,29.0,17.0,1076),(13565,380361,39.0,29.0,17.0,1574),(13566,380258,39.0,29.0,17.0,1602),(13567,380291,30.0,24.0,14.0,840),(13568,379813,30.0,24.0,14.0,1104),(13569,379838,30.0,24.0,14.0,1100),(13570,380112,30.0,24.0,14.0,618),(13571,380960,30.0,24.0,14.0,588),(13572,380946,30.0,24.0,14.0,1156),(13573,379781,30.0,24.0,14.0,1096),(13574,380036,30.0,24.0,14.0,1146),(13575,381056,33.0,25.0,11.0,740),(13576,380985,33.0,25.0,11.0,766),(13577,380978,30.0,24.0,14.0,768),(13578,379775,30.0,24.0,14.0,614),(13579,380385,30.0,24.0,14.0,524),(13580,380269,30.0,24.0,14.0,592),(13581,380254,30.0,24.0,14.0,568),(13582,380233,30.0,24.0,14.0,986),(13583,380680,30.0,24.0,14.0,788),(13584,380229,30.0,24.0,14.0,1232),(13585,380161,33.0,25.0,11.0,800),(13586,380314,33.0,25.0,11.0,740),(13587,380868,33.0,25.0,11.0,754),(13588,380236,33.0,25.0,11.0,740),(13589,380348,33.0,25.0,11.0,776),(13590,380363,33.0,25.0,11.0,776),(13591,380761,33.0,25.0,11.0,770),(13592,380357,33.0,25.0,11.0,770),(13593,379474,30.0,24.0,14.0,692),(13594,380837,30.0,24.0,14.0,700),(13595,379831,30.0,24.0,14.0,1104),(13596,379321,30.0,24.0,14.0,700),(13597,379306,30.0,24.0,14.0,694),(13598,379289,30.0,24.0,14.0,686),(13599,379464,30.0,24.0,14.0,676),(13600,379438,30.0,24.0,14.0,1088),(13601,379450,30.0,24.0,14.0,1086),(13602,379472,30.0,24.0,14.0,680),(13603,379996,30.0,24.0,14.0,680),(13604,379221,30.0,24.0,14.0,676),(13605,379825,30.0,24.0,14.0,1084),(13606,380141,46.0,29.0,22.0,2470),(13607,381047,33.0,25.0,11.0,736),(13608,381072,46.0,29.0,22.0,1754),(13609,375612,33.0,25.0,11.0,864),(13610,377526,33.0,25.0,11.0,766),(13611,381376,33.0,25.0,11.0,772),(13612,381154,33.0,25.0,11.0,840),(13613,381168,33.0,25.0,11.0,774),(13614,381333,30.0,24.0,14.0,1192),(13615,381479,30.0,24.0,14.0,800),(13616,380947,30.0,24.0,14.0,690),(13617,381158,30.0,24.0,14.0,580),(13618,381439,30.0,24.0,14.0,1120),(13619,382303,30.0,24.0,14.0,732),(13620,381325,30.0,24.0,14.0,758),(13621,381701,30.0,24.0,14.0,758),(13622,382574,30.0,24.0,14.0,756),(13623,381689,30.0,24.0,14.0,760),(13624,381219,33.0,25.0,11.0,736),(13625,381691,33.0,25.0,11.0,735),(13626,381079,33.0,25.0,11.0,740),(13627,381226,33.0,25.0,11.0,736),(13628,381200,33.0,25.0,11.0,738),(13629,382490,30.0,24.0,14.0,732),(13630,382570,30.0,24.0,14.0,730),(13631,382315,30.0,24.0,14.0,732),(13632,381176,30.0,24.0,14.0,1234),(13633,381136,46.0,29.0,22.0,1750),(13634,381670,39.0,29.0,17.0,1692),(13635,381247,30.0,24.0,14.0,810),(13636,382099,30.0,24.0,14.0,1002),(13637,379767,33.0,25.0,11.0,968),(13638,381418,30.0,24.0,14.0,856),(13639,381051,39.0,29.0,17.0,1782),(13640,380801,0.0,0.0,0.0,752),(13641,380271,0.0,0.0,0.0,750),(13642,380977,46.0,30.0,16.0,1265),(13643,360892,46.0,30.0,16.0,1975),(13644,375924,0.0,0.0,0.0,1320),(13645,377305,0.0,0.0,0.0,1310),(13646,380170,0.0,0.0,0.0,650),(13647,379558,0.0,0.0,0.0,590),(13648,380799,0.0,0.0,0.0,800),(13649,380875,0.0,0.0,0.0,790),(13650,380768,0.0,0.0,0.0,795),(13651,380901,0.0,0.0,0.0,790),(13652,380303,0.0,0.0,0.0,795),(13653,379952,0.0,0.0,0.0,575),(13654,380796,0.0,0.0,0.0,610),(13655,380645,0.0,0.0,0.0,590),(13656,379699,0.0,0.0,0.0,580),(13657,380650,0.0,0.0,0.0,590),(13658,380184,0.0,0.0,0.0,585),(13659,380301,0.0,0.0,0.0,775),(13660,379811,0.0,0.0,0.0,775),(13661,379954,0.0,0.0,0.0,600),(13662,381082,0.0,0.0,0.0,495),(13663,381077,0.0,0.0,0.0,500),(13664,380819,0.0,0.0,0.0,540),(13665,380936,0.0,0.0,0.0,695),(13666,379425,0.0,0.0,0.0,1115),(13667,381007,0.0,0.0,0.0,730),(13668,380821,0.0,0.0,0.0,615),(13669,380302,0.0,0.0,0.0,740),(13670,380792,0.0,0.0,0.0,540),(13671,380257,0.0,0.0,0.0,755),(13672,380692,0.0,0.0,0.0,760),(13673,381018,0.0,0.0,0.0,755),(13674,380665,0.0,0.0,0.0,795),(13675,380649,0.0,0.0,0.0,795),(13676,380818,0.0,0.0,0.0,650),(13677,380374,0.0,0.0,0.0,710),(13678,381005,0.0,0.0,0.0,765),(13679,380699,0.0,0.0,0.0,770),(13680,380798,0.0,0.0,0.0,845),(13681,380951,0.0,0.0,0.0,825),(13682,380904,0.0,0.0,0.0,825),(13683,380802,0.0,0.0,0.0,750),(13684,380296,0.0,0.0,0.0,1025),(13685,379803,0.0,0.0,0.0,970),(13686,380851,0.0,0.0,0.0,1200),(13687,380324,0.0,0.0,0.0,1190),(13688,380322,0.0,0.0,0.0,1195),(13689,380232,0.0,0.0,0.0,1205),(13690,377320,0.0,0.0,0.0,1140),(13691,381076,0.0,0.0,0.0,845),(13692,381061,60.0,51.0,41.0,12320),(13693,376019,0.0,0.0,0.0,1305),(13694,381777,0.0,0.0,0.0,945),(13695,377171,33.0,25.0,11.0,866),(13696,382920,30.0,24.0,14.0,610),(13697,381141,1.0,1.0,1.0,111),(13698,380827,46.0,29.0,17.0,2400),(13699,377443,33.0,25.0,11.0,868),(13700,381160,30.0,24.0,14.0,586),(13701,374809,30.0,24.0,6.0,906),(13702,379546,30.0,24.0,14.0,598),(13703,382851,30.0,24.0,14.0,614),(13704,382798,30.0,24.0,14.0,590),(13705,382773,30.0,24.0,14.0,568),(13706,382768,30.0,24.0,14.0,560),(13707,382715,30.0,24.0,6.0,572),(13708,382827,30.0,24.0,14.0,760),(13709,382890,30.0,24.0,14.0,732),(13710,382936,30.0,24.0,14.0,734),(13711,382590,30.0,24.0,14.0,732),(13712,382838,30.0,24.0,14.0,730),(13713,382789,30.0,24.0,14.0,728),(13714,382279,30.0,24.0,14.0,770),(13715,382922,0.0,0.0,0.0,748),(13716,369716,30.0,24.0,14.0,510),(13717,382853,30.0,24.0,14.0,1062),(13718,382828,30.0,24.0,14.0,830),(13719,382962,30.0,24.0,14.0,730),(13720,380972,30.0,24.0,14.0,588),(13721,383372,30.0,24.0,14.0,596),(13722,383149,30.0,24.0,14.0,562),(13723,375724,30.0,24.0,14.0,954),(13724,381071,30.0,24.0,14.0,912),(13725,383479,46.0,29.0,22.0,2022),(13726,383390,30.0,24.0,14.0,524),(13727,381703,30.0,24.0,14.0,524),(13728,382031,33.0,26.0,17.0,1168),(13729,381704,30.0,24.0,14.0,764),(13730,382817,30.0,24.0,14.0,762),(13731,382697,30.0,24.0,14.0,524),(13732,382722,30.0,24.0,14.0,526),(13733,382895,30.0,24.0,14.0,522),(13734,377754,30.0,24.0,6.0,556),(13735,379236,30.0,24.0,6.0,390),(13736,377007,30.0,24.0,6.0,548),(13737,377756,30.0,24.0,6.0,554),(13738,378097,30.0,24.0,6.0,622),(13739,380800,0.0,0.0,0.0,568),(13740,379157,0.0,0.0,0.0,586),(13741,382913,0.0,0.0,0.0,298),(13742,382921,0.0,0.0,0.0,776),(13743,380643,0.0,0.0,0.0,530),(13744,382350,0.0,0.0,0.0,1164),(13745,380300,30.0,24.0,6.0,556),(13746,382995,30.0,24.0,14.0,768),(13747,381344,46.0,29.0,22.0,1918),(13748,383462,46.0,29.0,22.0,1688),(13749,383491,46.0,29.0,22.0,2460),(13750,383404,30.0,24.0,14.0,766),(13751,383004,30.0,24.0,14.0,1016),(13752,382997,30.0,24.0,14.0,622),(13753,383029,30.0,24.0,14.0,970),(13754,382518,33.0,26.0,17.0,1134),(13755,382195,33.0,26.0,17.0,1152),(13756,380155,33.0,25.0,11.0,1178),(13757,382361,33.0,25.0,11.0,1180),(13758,379223,33.0,25.0,11.0,1308),(13759,383005,39.0,29.0,17.0,1236),(13760,381426,0.0,0.0,0.0,765),(13761,382483,0.0,0.0,0.0,765),(13762,382500,0.0,0.0,0.0,765),(13763,382677,0.0,0.0,0.0,765),(13764,382441,0.0,0.0,0.0,765),(13765,382389,0.0,0.0,0.0,765),(13766,382197,0.0,0.0,0.0,765),(13767,382266,0.0,0.0,0.0,765),(13768,382272,0.0,0.0,0.0,765),(13769,382295,0.0,0.0,0.0,765),(13770,380206,0.0,0.0,0.0,376),(13771,378652,0.0,0.0,0.0,376),(13772,377330,0.0,0.0,0.0,574),(13773,377331,0.0,0.0,0.0,574),(13774,377334,0.0,0.0,0.0,574),(13775,377332,0.0,0.0,0.0,574),(13776,377335,0.0,0.0,0.0,574),(13777,377711,0.0,0.0,0.0,574),(13778,377714,0.0,0.0,0.0,574),(13779,377715,0.0,0.0,0.0,574),(13780,376993,0.0,0.0,0.0,574),(13781,376991,0.0,0.0,0.0,574),(13782,376990,0.0,0.0,0.0,574),(13783,376989,0.0,0.0,0.0,574),(13784,376988,0.0,0.0,0.0,574),(13785,376987,0.0,0.0,0.0,574),(13786,376985,0.0,0.0,0.0,574),(13787,376984,0.0,0.0,0.0,574),(13788,376983,0.0,0.0,0.0,574),(13789,376981,0.0,0.0,0.0,574),(13790,376980,0.0,0.0,0.0,574),(13791,376979,0.0,0.0,0.0,574),(13792,376978,0.0,0.0,0.0,574),(13793,376977,0.0,0.0,0.0,574),(13794,376976,0.0,0.0,0.0,574),(13795,376975,0.0,0.0,0.0,574),(13796,376974,0.0,0.0,0.0,574),(13797,376973,0.0,0.0,0.0,574),(13798,376972,0.0,0.0,0.0,574),(13799,376971,0.0,0.0,0.0,574),(13800,376970,0.0,0.0,0.0,574),(13801,376969,0.0,0.0,0.0,574),(13802,376968,0.0,0.0,0.0,574),(13803,376966,0.0,0.0,0.0,574),(13804,376965,0.0,0.0,0.0,574),(13805,376964,0.0,0.0,0.0,574),(13806,376963,0.0,0.0,0.0,574),(13807,376961,0.0,0.0,0.0,574),(13808,376960,0.0,0.0,0.0,574),(13809,376959,0.0,0.0,0.0,574),(13810,376958,0.0,0.0,0.0,574),(13811,376957,0.0,0.0,0.0,574),(13812,376956,0.0,0.0,0.0,574),(13813,376955,0.0,0.0,0.0,574),(13814,376954,0.0,0.0,0.0,574),(13815,376953,0.0,0.0,0.0,574),(13816,376951,0.0,0.0,0.0,574),(13817,376949,0.0,0.0,0.0,574),(13818,379814,0.0,0.0,0.0,574),(13819,379564,0.0,0.0,0.0,574),(13820,379192,0.0,0.0,0.0,574),(13821,378942,0.0,0.0,0.0,574),(13822,376992,0.0,0.0,0.0,574),(13823,377010,0.0,0.0,0.0,574),(13824,377011,0.0,0.0,0.0,574),(13825,377013,0.0,0.0,0.0,574),(13826,377014,0.0,0.0,0.0,574),(13827,377483,0.0,0.0,0.0,574),(13828,380203,0.0,0.0,0.0,574),(13829,377009,0.0,0.0,0.0,574),(13830,377008,0.0,0.0,0.0,574),(13831,377006,0.0,0.0,0.0,574),(13832,377005,0.0,0.0,0.0,574),(13833,377004,0.0,0.0,0.0,574),(13834,377003,0.0,0.0,0.0,574),(13835,377002,0.0,0.0,0.0,574),(13836,377001,0.0,0.0,0.0,574),(13837,377000,0.0,0.0,0.0,574),(13838,376998,0.0,0.0,0.0,574),(13839,376997,0.0,0.0,0.0,574),(13840,376995,0.0,0.0,0.0,574),(13841,376994,0.0,0.0,0.0,574),(13842,378941,0.0,0.0,0.0,574),(13843,378932,0.0,0.0,0.0,574),(13844,378469,0.0,0.0,0.0,574),(13845,378096,0.0,0.0,0.0,574),(13846,377960,0.0,0.0,0.0,574),(13847,377959,0.0,0.0,0.0,574),(13848,382280,0.0,0.0,0.0,574),(13849,381840,0.0,0.0,0.0,574),(13850,377755,0.0,0.0,0.0,574),(13851,377716,0.0,0.0,0.0,574),(13852,382264,0.0,0.0,0.0,835),(13853,382311,0.0,0.0,0.0,830),(13854,382658,0.0,0.0,0.0,750),(13855,382228,0.0,0.0,0.0,830),(13856,382633,0.0,0.0,0.0,830),(13857,382855,0.0,0.0,0.0,835),(13858,382651,0.0,0.0,0.0,810),(13859,382308,0.0,0.0,0.0,1160),(13860,382305,0.0,0.0,0.0,1165),(13861,381886,0.0,0.0,0.0,1045),(13862,382178,0.0,0.0,0.0,825),(13863,378015,30.0,24.0,14.0,858),(13864,382437,0.0,0.0,0.0,1595),(13865,382172,0.0,0.0,0.0,768),(13866,382192,0.0,0.0,0.0,792),(13867,382896,0.0,0.0,0.0,798),(13868,382443,0.0,0.0,0.0,798),(13869,382778,0.0,0.0,0.0,796),(13870,382785,0.0,0.0,0.0,604),(13871,381109,0.0,0.0,0.0,1660),(13872,382958,0.0,0.0,0.0,1595),(13873,380795,0.0,0.0,0.0,860),(13874,379486,0.0,0.0,0.0,1335),(13875,377165,0.0,0.0,0.0,1325),(13876,378951,0.0,0.0,0.0,1335),(13877,377839,0.0,0.0,0.0,900),(13878,379688,0.0,0.0,0.0,1345),(13879,380315,0.0,0.0,0.0,630),(13880,382923,0.0,0.0,0.0,810),(13881,382916,0.0,0.0,0.0,1015),(13882,382912,0.0,0.0,0.0,915),(13883,380304,0.0,0.0,0.0,870),(13884,380674,0.0,0.0,0.0,870),(13885,377893,0.0,0.0,0.0,910),(13886,380992,0.0,0.0,0.0,590),(13887,376341,0.0,0.0,0.0,1340),(13888,382892,0.0,0.0,0.0,795),(13889,382513,0.0,0.0,0.0,725),(13890,382607,0.0,0.0,0.0,1210),(13891,382666,0.0,0.0,0.0,560),(13892,380298,0.0,0.0,0.0,811),(13893,382181,0.0,0.0,0.0,1185),(13894,382496,0.0,0.0,0.0,1150),(13895,382180,0.0,0.0,0.0,1170),(13896,382818,0.0,0.0,0.0,810),(13897,383838,30.0,24.0,14.0,750),(13898,383861,30.0,24.0,6.0,356),(13899,383912,33.0,25.0,11.0,862),(13900,383887,33.0,25.0,11.0,768),(13901,383840,0.0,0.0,0.0,820),(13902,383140,0.0,0.0,0.0,796),(13903,383001,0.0,0.0,0.0,796),(13904,381121,0.0,0.0,0.0,820),(13905,381167,0.0,0.0,0.0,822),(13906,381424,0.0,0.0,0.0,804),(13907,381162,0.0,0.0,0.0,822),(13908,381434,0.0,0.0,0.0,822),(13909,379346,0.0,0.0,0.0,830),(13910,383569,33.0,25.0,11.0,760),(13911,383675,33.0,25.0,11.0,740),(13912,380735,39.0,29.0,17.0,1332),(13913,383494,30.0,24.0,14.0,1144),(13914,383507,30.0,24.0,14.0,736),(13915,383539,30.0,24.0,14.0,764),(13916,383525,33.0,25.0,11.0,832),(13917,383666,30.0,24.0,14.0,594),(13918,383919,30.0,24.0,14.0,570),(13919,383543,39.0,29.0,17.0,1322),(13920,381946,46.0,29.0,22.0,1028),(13921,383910,30.0,24.0,14.0,780),(13922,380927,33.0,25.0,11.0,742),(13923,383867,33.0,25.0,11.0,774),(13924,383573,0.0,0.0,0.0,806),(13925,383821,0.0,0.0,0.0,806),(13926,383568,0.0,0.0,0.0,806),(13927,383445,0.0,0.0,0.0,806),(13928,383450,0.0,0.0,0.0,806),(13929,383434,0.0,0.0,0.0,806),(13930,383446,0.0,0.0,0.0,806),(13931,383420,0.0,0.0,0.0,806),(13932,383444,0.0,0.0,0.0,806),(13933,383421,0.0,0.0,0.0,806),(13934,383423,0.0,0.0,0.0,806),(13935,383422,0.0,0.0,0.0,806),(13936,381088,0.0,0.0,0.0,806),(13937,383591,30.0,24.0,14.0,718),(13938,383761,30.0,24.0,14.0,808),(13939,353290,30.0,24.0,14.0,990),(13940,383897,30.0,24.0,14.0,586),(13941,383902,30.0,24.0,14.0,1020),(13942,383895,33.0,25.0,11.0,736),(13943,383639,33.0,25.0,11.0,1186),(13944,383822,0.0,0.0,0.0,688),(13945,383406,0.0,0.0,0.0,688),(13946,383453,0.0,0.0,0.0,688),(13947,379870,0.0,0.0,0.0,688),(13948,379335,0.0,0.0,0.0,688),(13949,379330,0.0,0.0,0.0,688),(13950,381086,0.0,0.0,0.0,772),(13951,381312,0.0,0.0,0.0,772),(13952,378638,0.0,0.0,0.0,772),(13953,381496,0.0,0.0,0.0,772),(13954,381238,0.0,0.0,0.0,772),(13955,382204,0.0,0.0,0.0,772),(13956,382206,0.0,0.0,0.0,772),(13957,382198,0.0,0.0,0.0,772),(13958,382219,0.0,0.0,0.0,772),(13959,382220,0.0,0.0,0.0,772),(13960,382396,0.0,0.0,0.0,772),(13961,382408,0.0,0.0,0.0,772),(13962,382418,0.0,0.0,0.0,772),(13963,382411,0.0,0.0,0.0,772),(13964,382419,0.0,0.0,0.0,772),(13965,383429,0.0,0.0,0.0,772),(13966,383418,0.0,0.0,0.0,772),(13967,383443,0.0,0.0,0.0,772),(13968,383448,0.0,0.0,0.0,772),(13969,383447,0.0,0.0,0.0,772),(13970,382981,0.0,0.0,0.0,772),(13971,383073,0.0,0.0,0.0,772),(13972,383114,0.0,0.0,0.0,772),(13973,383138,0.0,0.0,0.0,772),(13974,382063,0.0,0.0,0.0,772),(13975,382149,0.0,0.0,0.0,772),(13976,383814,0.0,0.0,0.0,772),(13977,383413,0.0,0.0,0.0,772),(13978,379420,0.0,0.0,0.0,1110),(13979,379630,0.0,0.0,0.0,1110),(13980,379437,0.0,0.0,0.0,1110),(13981,379448,0.0,0.0,0.0,1110),(13982,379447,0.0,0.0,0.0,1110),(13983,379443,0.0,0.0,0.0,1110),(13984,379822,0.0,0.0,0.0,1110),(13985,379821,0.0,0.0,0.0,1110),(13986,379820,0.0,0.0,0.0,1110),(13987,379819,0.0,0.0,0.0,1110),(13988,379818,0.0,0.0,0.0,1110),(13989,379817,0.0,0.0,0.0,1110),(13990,379816,0.0,0.0,0.0,1110),(13991,379815,0.0,0.0,0.0,1110),(13992,379809,0.0,0.0,0.0,1110),(13993,379841,0.0,0.0,0.0,1110),(13994,379840,0.0,0.0,0.0,1110),(13995,379839,0.0,0.0,0.0,1110),(13996,379837,0.0,0.0,0.0,1110),(13997,379836,0.0,0.0,0.0,1110),(13998,379834,0.0,0.0,0.0,1110),(13999,379833,0.0,0.0,0.0,1110),(14000,379823,0.0,0.0,0.0,1110),(14001,379828,0.0,0.0,0.0,1110),(14002,379830,0.0,0.0,0.0,1110),(14003,379426,0.0,0.0,0.0,1110),(14004,379419,0.0,0.0,0.0,1110),(14005,379427,0.0,0.0,0.0,1110),(14006,379431,0.0,0.0,0.0,1110),(14007,379433,0.0,0.0,0.0,1110),(14008,379434,0.0,0.0,0.0,1110),(14009,379435,0.0,0.0,0.0,1110),(14010,379436,0.0,0.0,0.0,1110),(14011,379449,0.0,0.0,0.0,1110),(14012,383435,0.0,0.0,0.0,1115),(14013,383431,0.0,0.0,0.0,1185),(14014,383819,0.0,0.0,0.0,1020),(14015,383449,0.0,0.0,0.0,1180),(14016,382046,0.0,0.0,0.0,945),(14017,381934,0.0,0.0,0.0,975),(14018,383939,0.0,0.0,0.0,635),(14019,384121,0.0,0.0,0.0,780),(14020,383971,0.0,0.0,0.0,1180),(14021,384124,0.0,0.0,0.0,780),(14022,383935,0.0,0.0,0.0,610),(14023,384130,0.0,0.0,0.0,850),(14024,384018,0.0,0.0,0.0,540),(14025,384091,0.0,0.0,0.0,850),(14026,384098,0.0,0.0,0.0,780),(14027,376577,0.0,0.0,0.0,630),(14028,384123,0.0,0.0,0.0,1160),(14029,384056,0.0,0.0,0.0,810),(14030,384127,0.0,0.0,0.0,785),(14031,384128,0.0,0.0,0.0,810),(14032,383904,0.0,0.0,0.0,625),(14033,384122,0.0,0.0,0.0,810),(14034,383926,0.0,0.0,0.0,810),(14035,383896,0.0,0.0,0.0,625),(14036,383997,0.0,0.0,0.0,765),(14037,381776,0.0,0.0,0.0,810),(14038,381831,0.0,0.0,0.0,805),(14039,382977,0.0,0.0,0.0,840),(14040,383432,0.0,0.0,0.0,810),(14041,378335,0.0,0.0,0.0,840),(14042,383408,0.0,0.0,0.0,845),(14043,381892,0.0,0.0,0.0,1135),(14044,383580,0.0,0.0,0.0,785),(14045,383791,0.0,0.0,0.0,1120),(14046,378259,0.0,0.0,0.0,845),(14047,381182,0.0,0.0,0.0,1055),(14048,379471,0.0,0.0,0.0,970),(14049,381118,0.0,0.0,0.0,755),(14050,383668,0.0,0.0,0.0,820),(14051,382288,0.0,0.0,0.0,850),(14052,382161,0.0,0.0,0.0,860),(14053,381712,0.0,0.0,0.0,855),(14054,383373,0.0,0.0,0.0,620),(14055,381089,0.0,0.0,0.0,620),(14056,383577,0.0,0.0,0.0,850),(14057,381110,0.0,0.0,0.0,620),(14058,383644,0.0,0.0,0.0,615),(14059,381206,0.0,0.0,0.0,620),(14060,383854,0.0,0.0,0.0,555),(14061,383768,0.0,0.0,0.0,640),(14062,380910,0.0,0.0,0.0,775),(14063,382103,0.0,0.0,0.0,1125),(14064,383945,0.0,0.0,0.0,720),(14065,381872,0.0,0.0,0.0,1135),(14066,381834,0.0,0.0,0.0,860),(14067,381714,0.0,0.0,0.0,855),(14068,381713,0.0,0.0,0.0,865),(14069,381830,0.0,0.0,0.0,880),(14070,381707,0.0,0.0,0.0,860),(14071,381717,0.0,0.0,0.0,795),(14072,381417,0.0,0.0,0.0,1145),(14073,381729,0.0,0.0,0.0,575),(14074,383613,0.0,0.0,0.0,520),(14075,383369,0.0,0.0,0.0,430),(14076,383786,0.0,0.0,0.0,565),(14077,383419,0.0,0.0,0.0,600),(14078,383402,0.0,0.0,0.0,580),(14079,383401,0.0,0.0,0.0,590),(14080,383400,0.0,0.0,0.0,585),(14081,384092,0.0,0.0,0.0,580),(14082,381487,0.0,0.0,0.0,1230),(14083,353753,0.0,0.0,0.0,1445),(14084,362948,0.0,0.0,0.0,1520),(14085,384010,0.0,0.0,0.0,1505),(14086,372536,50.0,45.0,27.0,3840),(14087,375190,46.0,29.0,22.0,1900),(14088,384084,33.0,25.0,11.0,1140),(14089,383951,30.0,24.0,14.0,592),(14090,383921,30.0,24.0,14.0,592),(14091,384030,30.0,24.0,14.0,1086),(14092,384014,30.0,24.0,14.0,694),(14093,384008,30.0,24.0,14.0,692),(14094,384033,30.0,24.0,14.0,570),(14095,383952,30.0,24.0,14.0,750),(14096,383844,30.0,24.0,14.0,1094),(14097,384080,30.0,24.0,14.0,594),(14098,384006,30.0,24.0,14.0,526),(14099,383948,30.0,14.0,6.0,666),(14100,383898,30.0,24.0,14.0,792),(14101,383961,33.0,25.0,11.0,764),(14102,383909,33.0,25.0,11.0,760),(14103,383870,30.0,24.0,14.0,1058),(14104,376697,0.0,0.0,0.0,630),(14105,381499,0.0,0.0,0.0,625),(14106,383788,0.0,0.0,0.0,805),(14107,383414,0.0,0.0,0.0,870),(14108,381094,0.0,0.0,0.0,560),(14109,383428,0.0,0.0,0.0,805),(14110,383815,0.0,0.0,0.0,795),(14111,383430,0.0,0.0,0.0,870),(14112,353474,0.0,0.0,0.0,575),(14113,381406,0.0,0.0,0.0,580),(14114,381867,0.0,0.0,0.0,810),(14115,383438,0.0,0.0,0.0,845),(14116,383148,0.0,0.0,0.0,585),(14117,383394,0.0,0.0,0.0,865),(14118,368359,0.0,0.0,0.0,1230),(14119,382050,0.0,0.0,0.0,810),(14120,382048,0.0,0.0,0.0,810),(14121,382182,0.0,0.0,0.0,810),(14122,381898,0.0,0.0,0.0,810),(14123,381945,0.0,0.0,0.0,810),(14124,383012,0.0,0.0,0.0,562),(14125,378840,30.0,24.0,14.0,1108),(14126,384176,33.0,25.0,11.0,742),(14127,384173,33.0,25.0,11.0,522),(14128,378627,33.0,25.0,11.0,690),(14129,384194,30.0,24.0,14.0,778),(14130,384027,30.0,24.0,14.0,694),(14131,376053,30.0,24.0,14.0,704),(14132,384203,30.0,24.0,14.0,718),(14133,378801,33.0,25.0,11.0,868),(14134,378559,33.0,25.0,11.0,874),(14135,378124,33.0,25.0,11.0,874),(14136,377984,33.0,25.0,11.0,868),(14137,378113,33.0,25.0,11.0,902),(14138,377540,33.0,25.0,11.0,860),(14139,377382,33.0,25.0,11.0,864),(14140,377508,33.0,25.0,11.0,868),(14141,377231,33.0,25.0,11.0,866),(14142,376740,33.0,25.0,11.0,870),(14143,377366,33.0,25.0,11.0,868),(14144,377347,33.0,25.0,11.0,868),(14145,377119,33.0,25.0,11.0,868),(14146,377028,33.0,25.0,11.0,868),(14147,379237,33.0,25.0,11.0,1290),(14148,375721,33.0,25.0,11.0,868),(14149,375851,33.0,25.0,11.0,868),(14150,376329,33.0,25.0,11.0,864),(14151,377364,33.0,25.0,11.0,1308),(14152,375664,30.0,24.0,14.0,1290),(14153,377145,30.0,24.0,14.0,1298),(14154,380633,33.0,25.0,11.0,874),(14155,380343,33.0,25.0,11.0,868),(14156,380338,33.0,25.0,11.0,872),(14157,380323,33.0,25.0,11.0,898),(14158,380382,33.0,25.0,11.0,870),(14159,379742,33.0,25.0,11.0,874),(14160,379892,33.0,25.0,11.0,872),(14161,379020,33.0,25.0,11.0,890),(14162,379457,33.0,25.0,11.0,866),(14163,379393,33.0,25.0,11.0,866),(14164,379054,33.0,25.0,11.0,838),(14165,379626,30.0,24.0,14.0,866),(14166,379522,33.0,25.0,11.0,870),(14167,379315,33.0,25.0,11.0,868),(14168,378876,33.0,25.0,11.0,892),(14170,384051,30.0,24.0,14.0,1170),(14171,381134,46.0,29.0,22.0,3082),(14172,375968,30.0,24.0,14.0,896),(14173,379021,30.0,24.0,14.0,866),(14174,377157,30.0,24.0,14.0,1296),(14175,378683,30.0,24.0,14.0,1290),(14176,379214,30.0,24.0,14.0,1292),(14177,376058,30.0,24.0,14.0,1332),(14178,377792,30.0,24.0,14.0,1296),(14179,372378,30.0,24.0,6.0,1160),(14180,377781,33.0,25.0,11.0,1296),(14181,383872,33.0,25.0,11.0,1570),(14182,376693,30.0,24.0,12.0,1284),(14183,376832,30.0,24.0,14.0,1292),(14184,380274,30.0,24.0,14.0,1284),(14185,373079,30.0,24.0,14.0,1288),(14186,370310,30.0,24.0,14.0,1290),(14187,376309,30.0,24.0,14.0,1280),(14188,376510,30.0,24.0,14.0,1284),(14189,377178,39.0,29.0,17.0,1734),(14190,377203,30.0,24.0,6.0,614),(14191,380253,30.0,24.0,14.0,1292),(14192,379010,30.0,24.0,14.0,1292),(14193,380066,30.0,24.0,14.0,1286),(14194,373745,30.0,24.0,6.0,470),(14195,378977,39.0,29.0,17.0,1842),(14196,377913,39.0,29.0,17.0,1892),(14197,378965,39.0,29.0,17.0,1884),(14198,381931,0.0,0.0,0.0,810),(14199,381800,0.0,0.0,0.0,810),(14200,381890,0.0,0.0,0.0,810),(14201,377734,0.0,0.0,0.0,920),(14202,382223,0.0,0.0,0.0,1070),(14203,382351,0.0,0.0,0.0,1070),(14204,382359,0.0,0.0,0.0,1070),(14205,381943,0.0,0.0,0.0,1070),(14206,381940,0.0,0.0,0.0,1070),(14207,381782,0.0,0.0,0.0,1070),(14208,381046,0.0,0.0,0.0,1070),(14209,381817,0.0,0.0,0.0,1070),(14210,381815,0.0,0.0,0.0,1070),(14211,382087,0.0,0.0,0.0,1305),(14212,382053,0.0,0.0,0.0,1305),(14213,382051,0.0,0.0,0.0,1305),(14214,382045,0.0,0.0,0.0,1305),(14215,382432,0.0,0.0,0.0,1305),(14216,382217,0.0,0.0,0.0,1305),(14217,382245,0.0,0.0,0.0,1305),(14218,382262,0.0,0.0,0.0,1305),(14219,382260,0.0,0.0,0.0,1305),(14220,382329,0.0,0.0,0.0,1305),(14221,381905,0.0,0.0,0.0,1305),(14222,381900,0.0,0.0,0.0,1305),(14223,381895,0.0,0.0,0.0,1305),(14224,381935,0.0,0.0,0.0,1305),(14225,382035,0.0,0.0,0.0,1305),(14226,382030,0.0,0.0,0.0,1305),(14227,382018,0.0,0.0,0.0,1305),(14228,382011,0.0,0.0,0.0,1305),(14229,382006,0.0,0.0,0.0,1305),(14230,382088,0.0,0.0,0.0,1305),(14231,381786,0.0,0.0,0.0,1305),(14232,382448,0.0,0.0,0.0,1305),(14233,382454,0.0,0.0,0.0,1305),(14234,382462,0.0,0.0,0.0,1305),(14235,382465,0.0,0.0,0.0,1305),(14236,382487,0.0,0.0,0.0,1305),(14237,382498,0.0,0.0,0.0,1305),(14238,382523,0.0,0.0,0.0,1305),(14239,381746,0.0,0.0,0.0,1305),(14240,381759,0.0,0.0,0.0,1305),(14241,381770,0.0,0.0,0.0,1305),(14242,381783,0.0,0.0,0.0,1305),(14243,381790,0.0,0.0,0.0,1305),(14244,381816,0.0,0.0,0.0,1305),(14245,381808,0.0,0.0,0.0,1305),(14246,381868,0.0,0.0,0.0,1305),(14247,381860,0.0,0.0,0.0,1305),(14248,371106,30.0,24.0,14.0,864),(14249,375592,39.0,29.0,17.0,2666),(14250,375740,30.0,24.0,14.0,866),(14251,375646,30.0,24.0,14.0,862),(14252,375638,30.0,24.0,14.0,862),(14253,375745,30.0,24.0,14.0,864),(14254,375957,30.0,24.0,14.0,860),(14255,376644,30.0,24.0,14.0,880),(14256,376343,30.0,24.0,14.0,900),(14257,376017,30.0,24.0,14.0,862),(14258,384608,33.0,25.0,11.0,746),(14259,384321,33.0,25.0,11.0,752),(14260,384680,33.0,25.0,11.0,748),(14261,384573,33.0,25.0,11.0,746),(14262,384653,33.0,25.0,11.0,748),(14263,384463,33.0,25.0,11.0,744),(14264,384442,30.0,24.0,14.0,1176),(14265,384276,30.0,24.0,14.0,772),(14266,384318,33.0,25.0,11.0,780),(14267,384446,33.0,25.0,11.0,746),(14268,384359,30.0,24.0,14.0,952),(14269,384247,33.0,25.0,11.0,780),(14270,342131,30.0,24.0,14.0,1100),(14271,384450,30.0,24.0,6.0,382),(14272,384507,39.0,29.0,17.0,1704),(14273,371563,39.0,29.0,17.0,1540),(14274,384333,33.0,25.0,11.0,620),(14275,384193,30.0,24.0,14.0,598),(14276,364262,30.0,24.0,14.0,754),(14277,384634,33.0,25.0,11.0,596),(14278,384422,30.0,24.0,14.0,522),(14279,377363,30.0,24.0,6.0,628),(14280,381929,0.0,0.0,0.0,686),(14281,381888,0.0,0.0,0.0,810),(14282,381996,0.0,0.0,0.0,810),(14283,382058,0.0,0.0,0.0,810),(14284,382056,0.0,0.0,0.0,810),(14285,382052,0.0,0.0,0.0,810),(14286,382047,0.0,0.0,0.0,810),(14287,379493,0.0,0.0,0.0,810),(14288,379362,0.0,0.0,0.0,810),(14289,382732,0.0,0.0,0.0,810),(14290,381043,0.0,0.0,0.0,810),(14291,382444,0.0,0.0,0.0,810),(14292,382383,0.0,0.0,0.0,810),(14293,382218,0.0,0.0,0.0,810),(14294,382258,0.0,0.0,0.0,810),(14295,382259,0.0,0.0,0.0,810),(14296,382281,0.0,0.0,0.0,810),(14297,382360,0.0,0.0,0.0,810),(14298,382363,0.0,0.0,0.0,810),(14299,381913,0.0,0.0,0.0,810),(14300,381942,0.0,0.0,0.0,810),(14301,381937,0.0,0.0,0.0,810),(14302,381947,0.0,0.0,0.0,810),(14303,382042,0.0,0.0,0.0,810),(14304,381889,0.0,0.0,0.0,810),(14305,381820,0.0,0.0,0.0,810),(14306,382453,0.0,0.0,0.0,810),(14307,382491,0.0,0.0,0.0,810),(14308,382494,0.0,0.0,0.0,810),(14309,381775,0.0,0.0,0.0,810),(14310,382758,0.0,0.0,0.0,626),(14311,382602,0.0,0.0,0.0,626),(14312,382830,0.0,0.0,0.0,626),(14313,382304,0.0,0.0,0.0,772),(14314,382293,0.0,0.0,0.0,772),(14315,382282,0.0,0.0,0.0,772),(14316,382233,0.0,0.0,0.0,772),(14317,382371,0.0,0.0,0.0,772),(14318,382372,0.0,0.0,0.0,772),(14319,382375,0.0,0.0,0.0,772),(14320,382376,0.0,0.0,0.0,772),(14321,382362,0.0,0.0,0.0,772),(14322,382355,0.0,0.0,0.0,772),(14323,382353,0.0,0.0,0.0,772),(14324,382340,0.0,0.0,0.0,772),(14325,382343,0.0,0.0,0.0,772),(14326,382241,0.0,0.0,0.0,772),(14327,382511,0.0,0.0,0.0,772),(14328,382509,0.0,0.0,0.0,772),(14329,382471,0.0,0.0,0.0,772),(14330,382447,0.0,0.0,0.0,772),(14331,382459,0.0,0.0,0.0,772),(14332,382463,0.0,0.0,0.0,772),(14333,379163,0.0,0.0,0.0,602),(14334,379171,0.0,0.0,0.0,602),(14335,379170,0.0,0.0,0.0,602),(14336,379178,0.0,0.0,0.0,602),(14337,379179,0.0,0.0,0.0,602),(14338,379180,0.0,0.0,0.0,602),(14339,379182,0.0,0.0,0.0,602),(14340,379183,0.0,0.0,0.0,602),(14341,379188,0.0,0.0,0.0,602),(14342,379189,0.0,0.0,0.0,602),(14343,379129,0.0,0.0,0.0,602),(14344,379132,0.0,0.0,0.0,602),(14345,379146,0.0,0.0,0.0,602),(14346,379166,0.0,0.0,0.0,602),(14347,379167,0.0,0.0,0.0,602),(14348,379168,0.0,0.0,0.0,602),(14349,379198,0.0,0.0,0.0,602),(14350,379197,0.0,0.0,0.0,602),(14351,379194,0.0,0.0,0.0,602),(14352,379190,0.0,0.0,0.0,602),(14353,379191,0.0,0.0,0.0,602),(14354,379193,0.0,0.0,0.0,602),(14355,379169,0.0,0.0,0.0,602),(14356,379162,0.0,0.0,0.0,602),(14357,379131,0.0,0.0,0.0,602),(14358,379135,0.0,0.0,0.0,602),(14359,379140,0.0,0.0,0.0,602),(14360,379141,0.0,0.0,0.0,602),(14361,379142,0.0,0.0,0.0,602),(14362,379143,0.0,0.0,0.0,602),(14363,379144,0.0,0.0,0.0,602),(14364,379149,0.0,0.0,0.0,602),(14365,379145,0.0,0.0,0.0,602),(14366,379150,0.0,0.0,0.0,602),(14367,379130,0.0,0.0,0.0,602),(14368,379439,0.0,0.0,0.0,602),(14369,379200,0.0,0.0,0.0,602),(14370,379199,0.0,0.0,0.0,602),(14371,379151,0.0,0.0,0.0,602),(14372,379152,0.0,0.0,0.0,602),(14373,379153,0.0,0.0,0.0,602),(14374,379154,0.0,0.0,0.0,602),(14375,379155,0.0,0.0,0.0,602),(14376,379158,0.0,0.0,0.0,602),(14377,379161,0.0,0.0,0.0,602),(14378,379159,0.0,0.0,0.0,602),(14379,383661,0.0,0.0,0.0,1202),(14380,383473,0.0,0.0,0.0,1202),(14381,381413,0.0,0.0,0.0,1202),(14382,383947,0.0,0.0,0.0,1202),(14383,384060,0.0,0.0,0.0,770),(14384,381348,0.0,0.0,0.0,808),(14385,381220,0.0,0.0,0.0,808),(14386,383911,0.0,0.0,0.0,808),(14387,383762,0.0,0.0,0.0,808),(14388,382296,0.0,0.0,0.0,766),(14389,382309,0.0,0.0,0.0,766),(14390,382318,0.0,0.0,0.0,766),(14391,382336,0.0,0.0,0.0,766),(14392,382349,0.0,0.0,0.0,766),(14393,382256,0.0,0.0,0.0,766),(14394,382269,0.0,0.0,0.0,766),(14395,382268,0.0,0.0,0.0,766),(14396,382267,0.0,0.0,0.0,766),(14397,382283,0.0,0.0,0.0,766),(14398,382278,0.0,0.0,0.0,766),(14399,382587,0.0,0.0,0.0,766),(14400,382573,0.0,0.0,0.0,766),(14401,382568,0.0,0.0,0.0,766),(14402,382567,0.0,0.0,0.0,766),(14403,382563,0.0,0.0,0.0,766),(14404,382553,0.0,0.0,0.0,766),(14405,382552,0.0,0.0,0.0,766),(14406,382551,0.0,0.0,0.0,766),(14407,382549,0.0,0.0,0.0,766),(14408,382532,0.0,0.0,0.0,766),(14409,382528,0.0,0.0,0.0,766),(14410,382527,0.0,0.0,0.0,766),(14411,382525,0.0,0.0,0.0,766),(14412,382515,0.0,0.0,0.0,766),(14413,382512,0.0,0.0,0.0,766),(14414,382243,0.0,0.0,0.0,766),(14415,382171,0.0,0.0,0.0,766),(14416,382158,0.0,0.0,0.0,766),(14417,382187,0.0,0.0,0.0,766),(14418,382191,0.0,0.0,0.0,766),(14419,382213,0.0,0.0,0.0,766),(14420,382421,0.0,0.0,0.0,766),(14421,382208,0.0,0.0,0.0,766),(14422,382207,0.0,0.0,0.0,766),(14423,382224,0.0,0.0,0.0,766),(14424,382390,0.0,0.0,0.0,766),(14425,382388,0.0,0.0,0.0,766),(14426,382387,0.0,0.0,0.0,766),(14427,382379,0.0,0.0,0.0,766),(14428,382377,0.0,0.0,0.0,766),(14429,382430,0.0,0.0,0.0,766),(14430,382429,0.0,0.0,0.0,766),(14431,382731,0.0,0.0,0.0,766),(14432,382632,0.0,0.0,0.0,766),(14433,382044,0.0,0.0,0.0,766),(14434,381955,0.0,0.0,0.0,766),(14435,381969,0.0,0.0,0.0,766),(14436,381930,0.0,0.0,0.0,766),(14437,381891,0.0,0.0,0.0,766),(14438,381887,0.0,0.0,0.0,766),(14439,381846,0.0,0.0,0.0,766),(14440,381853,0.0,0.0,0.0,766),(14441,381854,0.0,0.0,0.0,766),(14442,381739,0.0,0.0,0.0,766),(14443,381708,0.0,0.0,0.0,766),(14444,381938,0.0,0.0,0.0,830),(14445,383787,0.0,0.0,0.0,810),(14446,381262,0.0,0.0,0.0,965),(14447,383393,0.0,0.0,0.0,770),(14448,379636,0.0,0.0,0.0,1265),(14449,382251,0.0,0.0,0.0,766),(14450,369721,30.0,24.0,14.0,850),(14451,376526,0.0,0.0,0.0,1332),(14452,376502,0.0,0.0,0.0,1332),(14453,376000,0.0,0.0,0.0,1332),(14454,375987,0.0,0.0,0.0,1332),(14455,375899,0.0,0.0,0.0,1332),(14456,375986,0.0,0.0,0.0,1332),(14457,375731,0.0,0.0,0.0,1332),(14458,375643,0.0,0.0,0.0,1332),(14459,377469,0.0,0.0,0.0,1332),(14460,375634,0.0,0.0,0.0,1332),(14461,377274,0.0,0.0,0.0,1332),(14462,377235,0.0,0.0,0.0,1332),(14463,377172,0.0,0.0,0.0,1332),(14464,377087,0.0,0.0,0.0,1332),(14465,376804,0.0,0.0,0.0,1332),(14466,376785,0.0,0.0,0.0,1332),(14467,376714,0.0,0.0,0.0,1332),(14468,376673,0.0,0.0,0.0,1332),(14469,376657,0.0,0.0,0.0,1332),(14470,375850,0.0,0.0,0.0,1332),(14471,375749,0.0,0.0,0.0,1332),(14472,380326,0.0,0.0,0.0,1332),(14473,380245,0.0,0.0,0.0,1332),(14474,379887,0.0,0.0,0.0,1332),(14475,379849,0.0,0.0,0.0,1332),(14476,379808,0.0,0.0,0.0,1332),(14477,379631,0.0,0.0,0.0,1332),(14478,379607,0.0,0.0,0.0,1332),(14479,376551,0.0,0.0,0.0,1332),(14480,379576,0.0,0.0,0.0,1332),(14481,376764,0.0,0.0,0.0,1425),(14482,379761,0.0,0.0,0.0,900),(14483,379357,0.0,0.0,0.0,900),(14484,379061,0.0,0.0,0.0,900),(14485,378023,0.0,0.0,0.0,900),(14486,377458,0.0,0.0,0.0,900),(14487,379523,0.0,0.0,0.0,900),(14488,379225,0.0,0.0,0.0,900),(14489,379024,0.0,0.0,0.0,900),(14490,376110,0.0,0.0,0.0,900),(14491,376575,0.0,0.0,0.0,900),(14492,380228,0.0,0.0,0.0,900),(14493,380174,0.0,0.0,0.0,900),(14494,380011,0.0,0.0,0.0,900),(14495,379998,0.0,0.0,0.0,900),(14496,379914,0.0,0.0,0.0,900),(14497,379853,0.0,0.0,0.0,900),(14498,379715,0.0,0.0,0.0,900),(14499,379597,0.0,0.0,0.0,900),(14500,378864,0.0,0.0,0.0,900),(14501,378862,0.0,0.0,0.0,900),(14502,378836,0.0,0.0,0.0,900),(14503,378833,0.0,0.0,0.0,900),(14504,378719,0.0,0.0,0.0,900),(14505,378106,0.0,0.0,0.0,900),(14506,378076,0.0,0.0,0.0,900),(14507,377889,0.0,0.0,0.0,900),(14508,377886,0.0,0.0,0.0,900),(14509,377848,0.0,0.0,0.0,900),(14510,377819,0.0,0.0,0.0,900),(14511,377817,0.0,0.0,0.0,900),(14512,377779,0.0,0.0,0.0,900),(14513,377768,0.0,0.0,0.0,900),(14514,377722,0.0,0.0,0.0,900),(14515,377684,0.0,0.0,0.0,900),(14516,377492,0.0,0.0,0.0,900),(14517,377438,0.0,0.0,0.0,900),(14518,377412,0.0,0.0,0.0,900),(14519,377298,0.0,0.0,0.0,900),(14520,377202,0.0,0.0,0.0,900),(14521,377176,0.0,0.0,0.0,900),(14522,377128,0.0,0.0,0.0,900),(14523,377091,0.0,0.0,0.0,900),(14524,376950,0.0,0.0,0.0,900),(14525,376617,0.0,0.0,0.0,900),(14526,376530,0.0,0.0,0.0,900),(14527,376458,0.0,0.0,0.0,900),(14528,376380,0.0,0.0,0.0,900),(14529,376361,0.0,0.0,0.0,900),(14530,376345,0.0,0.0,0.0,900),(14531,375935,0.0,0.0,0.0,900),(14532,376072,0.0,0.0,0.0,900),(14533,375758,0.0,0.0,0.0,900),(14534,375685,0.0,0.0,0.0,900),(14535,375669,0.0,0.0,0.0,900),(14536,375644,0.0,0.0,0.0,900),(14537,375576,0.0,0.0,0.0,900),(14538,371057,0.0,0.0,0.0,900),(14539,379890,0.0,0.0,0.0,900),(14540,384822,33.0,25.0,11.0,768),(14541,384922,33.0,25.0,11.0,992),(14542,385094,33.0,25.0,11.0,996),(14543,384827,33.0,25.0,11.0,984),(14544,385020,33.0,25.0,11.0,692),(14545,384897,33.0,25.0,11.0,590),(14546,384991,33.0,25.0,11.0,514),(14547,384305,30.0,24.0,14.0,708),(14548,373512,30.0,24.0,14.0,1190),(14549,384980,39.0,29.0,17.0,1260),(14550,381277,33.0,25.0,11.0,1170),(14551,385065,33.0,25.0,11.0,994),(14552,382955,33.0,25.0,11.0,1390),(14553,385084,30.0,24.0,6.0,552),(14554,384521,30.0,24.0,14.0,612),(14555,381482,33.0,25.0,11.0,1002),(14556,379215,33.0,25.0,11.0,1002),(14557,377798,33.0,25.0,11.0,998),(14558,384045,33.0,25.0,11.0,992),(14559,384040,33.0,25.0,11.0,1002),(14560,384588,33.0,25.0,11.0,1002),(14561,384158,33.0,25.0,11.0,1002),(14562,381084,33.0,25.0,11.0,1656),(14563,383489,33.0,25.0,11.0,1002),(14564,381443,33.0,25.0,11.0,1000),(14565,382721,30.0,24.0,14.0,994),(14566,382641,33.0,25.0,11.0,998),(14567,374746,0.0,0.0,0.0,1598),(14568,383023,0.0,0.0,0.0,2632),(14569,381697,33.0,25.0,11.0,1000),(14570,376370,33.0,25.0,11.0,1652),(14571,381694,33.0,25.0,11.0,1000),(14572,367924,33.0,25.0,11.0,996),(14573,384553,33.0,25.0,11.0,1000),(14574,370946,33.0,25.0,11.0,1004),(14575,384335,33.0,25.0,11.0,1000),(14576,383967,33.0,25.0,11.0,1000),(14577,384042,33.0,25.0,11.0,1000),(14578,384175,33.0,25.0,11.0,998),(14579,384651,33.0,25.0,11.0,998),(14580,382610,33.0,25.0,11.0,994),(14581,376470,33.0,25.0,11.0,1000),(14582,384696,33.0,25.0,11.0,1000),(14583,378890,30.0,24.0,14.0,818),(14584,367241,0.0,0.0,0.0,544),(14585,380299,0.0,0.0,0.0,544),(14586,367311,0.0,0.0,0.0,544),(14587,367246,0.0,0.0,0.0,544),(14588,367247,0.0,0.0,0.0,544),(14589,367249,0.0,0.0,0.0,544),(14590,367252,0.0,0.0,0.0,544),(14591,367206,0.0,0.0,0.0,544),(14592,367216,0.0,0.0,0.0,544),(14593,367222,0.0,0.0,0.0,544),(14594,367225,0.0,0.0,0.0,544),(14595,367226,0.0,0.0,0.0,544),(14596,367229,0.0,0.0,0.0,544),(14597,367232,0.0,0.0,0.0,544),(14598,367233,0.0,0.0,0.0,544),(14599,367236,0.0,0.0,0.0,544),(14600,367237,0.0,0.0,0.0,544),(14601,367202,0.0,0.0,0.0,544),(14602,367203,0.0,0.0,0.0,544),(14603,367239,0.0,0.0,0.0,544),(14604,367242,0.0,0.0,0.0,544),(14605,383794,0.0,0.0,0.0,544),(14606,383790,0.0,0.0,0.0,544),(14607,383789,0.0,0.0,0.0,544),(14608,380087,0.0,0.0,0.0,544),(14609,379148,0.0,0.0,0.0,544),(14610,379147,0.0,0.0,0.0,544),(14611,379133,0.0,0.0,0.0,544),(14612,378929,0.0,0.0,0.0,544),(14613,376999,0.0,0.0,0.0,544),(14614,374253,0.0,0.0,0.0,544),(14615,372038,0.0,0.0,0.0,544),(14616,379829,0.0,0.0,0.0,544),(14617,379175,0.0,0.0,0.0,544),(14618,379172,0.0,0.0,0.0,544),(14619,367213,0.0,0.0,0.0,544),(14620,383396,0.0,0.0,0.0,544),(14621,381718,0.0,0.0,0.0,544),(14622,381716,0.0,0.0,0.0,544),(14623,380794,0.0,0.0,0.0,544),(14624,380088,0.0,0.0,0.0,544),(14625,379812,0.0,0.0,0.0,544),(14626,385101,33.0,25.0,11.0,1124),(14627,385097,30.0,24.0,14.0,752),(14628,385096,33.0,25.0,11.0,1642),(14629,385106,33.0,25.0,11.0,750),(14630,375673,0.0,0.0,0.0,675),(14631,369258,0.0,0.0,0.0,2950),(14632,381481,0.0,0.0,0.0,2050),(14633,374565,0.0,0.0,0.0,2660),(14634,381788,0.0,0.0,0.0,575),(14635,370189,0.0,0.0,0.0,575),(14636,383475,33.0,25.0,11.0,1002),(14637,383600,33.0,25.0,11.0,1000),(14638,383076,33.0,25.0,11.0,1004),(14639,382887,33.0,25.0,11.0,1006),(14640,383559,33.0,25.0,11.0,994),(14641,382625,33.0,25.0,11.0,1000),(14642,382675,33.0,25.0,11.0,1000),(14643,382673,33.0,25.0,11.0,1002),(14644,382973,33.0,25.0,11.0,1004),(14645,382686,33.0,25.0,11.0,998),(14646,382796,33.0,25.0,11.0,1006),(14647,382606,33.0,25.0,11.0,1000),(14648,382622,33.0,25.0,11.0,1000),(14649,382794,33.0,25.0,11.0,1006),(14650,382891,33.0,25.0,11.0,1002),(14651,382806,33.0,25.0,11.0,996),(14652,382876,33.0,25.0,11.0,1006),(14653,384020,33.0,25.0,11.0,1002),(14654,383888,33.0,25.0,11.0,1650),(14655,382787,33.0,25.0,11.0,1002),(14656,382908,33.0,25.0,11.0,1000),(14657,382704,33.0,25.0,11.0,994),(14658,382775,33.0,25.0,11.0,1000),(14659,382702,33.0,25.0,11.0,1000),(14660,382970,33.0,25.0,11.0,1004),(14661,383467,33.0,25.0,11.0,994),(14662,382784,33.0,25.0,11.0,992),(14663,382716,33.0,25.0,11.0,996),(14664,383469,33.0,25.0,11.0,1004),(14665,382725,33.0,25.0,11.0,1000),(14666,383496,33.0,25.0,11.0,992),(14667,383495,33.0,25.0,11.0,994),(14668,382786,33.0,25.0,11.0,998),(14669,383645,33.0,25.0,11.0,992),(14670,383899,33.0,25.0,11.0,974),(14671,383848,33.0,25.0,11.0,990),(14672,383670,33.0,25.0,11.0,1006),(14673,383905,33.0,25.0,11.0,990),(14674,383968,33.0,25.0,11.0,1002),(14675,382661,33.0,25.0,11.0,1004),(14676,383876,33.0,25.0,11.0,1004),(14677,381954,33.0,25.0,11.0,1410),(14678,381984,33.0,25.0,11.0,1410),(14679,383488,33.0,25.0,11.0,1000),(14680,383363,33.0,25.0,11.0,1004),(14681,381818,33.0,25.0,11.0,1408),(14682,381837,33.0,25.0,11.0,1408),(14683,381748,33.0,25.0,11.0,1410),(14684,381756,33.0,25.0,11.0,1412),(14685,379856,33.0,25.0,11.0,1404),(14686,382882,33.0,25.0,11.0,998),(14687,382811,33.0,25.0,11.0,992),(14688,383766,33.0,25.0,11.0,998),(14689,382652,33.0,25.0,11.0,1006),(14690,382788,33.0,25.0,11.0,1002),(14691,382679,33.0,25.0,11.0,1006); /*!40000 ALTER TABLE `order_box` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pick_point_registry` -- DROP TABLE IF EXISTS `pick_point_registry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pick_point_registry` ( `id` int(11) NOT NULL AUTO_INCREMENT, `registry_number` int(11) DEFAULT NULL, `status` int(11) NOT NULL, `label_print_link` varchar(255) DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx-pick_point_registry-status` (`status`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pick_point_registry` -- LOCK TABLES `pick_point_registry` WRITE; /*!40000 ALTER TABLE `pick_point_registry` DISABLE KEYS */; /*!40000 ALTER TABLE `pick_point_registry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pick_point_registry_item` -- DROP TABLE IF EXISTS `pick_point_registry_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pick_point_registry_item` ( `id` int(11) NOT NULL AUTO_INCREMENT, `departure_track_code` varchar(255) DEFAULT NULL, `status` int(11) NOT NULL, `registry_id` int(11) NOT NULL, `order_id` int(11) NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx-pick_point_registry_item-status` (`status`), KEY `idx-pick_point_registry_item-registry_id` (`registry_id`), KEY `idx-pick_point_registry_item-order_id` (`order_id`) ) ENGINE=InnoDB AUTO_INCREMENT=91 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pick_point_registry_item` -- LOCK TABLES `pick_point_registry_item` WRITE; /*!40000 ALTER TABLE `pick_point_registry_item` DISABLE KEYS */; /*!40000 ALTER TABLE `pick_point_registry_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pick_point_registry_item_log` -- DROP TABLE IF EXISTS `pick_point_registry_item_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pick_point_registry_item_log` ( `id` int(11) NOT NULL AUTO_INCREMENT, `registry_item_id` int(11) NOT NULL, `event_type` int(11) NOT NULL, `message` varchar(255) DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx-pick_point_registry_item_log-registry_item_id` (`registry_item_id`), KEY `idx-pick_point_registry_item_log-event_type` (`event_type`) ) ENGINE=InnoDB AUTO_INCREMENT=107 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pick_point_registry_item_log` -- LOCK TABLES `pick_point_registry_item_log` WRITE; /*!40000 ALTER TABLE `pick_point_registry_item_log` DISABLE KEYS */; /*!40000 ALTER TABLE `pick_point_registry_item_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pickup_point` -- DROP TABLE IF EXISTS `pickup_point`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pickup_point` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(255) NOT NULL, `address` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pickup_point` -- LOCK TABLES `pickup_point` WRITE; /*!40000 ALTER TABLE `pickup_point` DISABLE KEYS */; INSERT INTO `pickup_point` VALUES (1,'7803-005','Санкт-Петербург, Заневский пр-т, д. 38'),(2,'7703-000','Москва, Тараса Шевченко наб., д. 23 А'),(3,'4403-002','Кострома, Голубкова ул., д. 6А'); /*!40000 ALTER TABLE `pickup_point` 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` ( `id` int(11) NOT NULL AUTO_INCREMENT, `service` varchar(255) NOT NULL, `token` varchar(255) NOT NULL, `issued_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `service` (`service`) ) ENGINE=InnoDB AUTO_INCREMENT=2 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 */; /*!40000 ALTER TABLE `sessions` 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 2020-03-21 15:21:47
<reponame>lukker234/Neopixels-API<filename>temps(1).sql<gh_stars>0 insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.8, 43.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-20 02:18:51', '2016-05-29 20:34:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.5, 46.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-09 16:06:34', '2015-11-27 23:41:43'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.6, 52.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-19 17:27:22', '2015-12-06 06:52:21'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.8, 51.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-11 17:07:58', '2015-11-28 08:56:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.2, 50.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-07 07:53:53', '2016-12-08 14:27:34'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.0, 48.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-25 06:42:29', '2015-11-20 07:21:01'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.3, 43.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-13 23:42:14', '2016-06-11 19:01:25'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.0, 38.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-13 20:53:27', '2016-02-14 21:28:39'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.6, 50.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-11 05:26:57', '2016-04-19 08:55:56'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.9, 47.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-30 22:58:27', '2015-11-23 05:14:32'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.8, 54.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-15 19:06:41', '2016-02-17 08:53:49'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.0, 49.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-09 09:25:26', '2016-12-22 07:50:46'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.9, 39.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-29 03:39:08', '2016-12-08 13:56:39'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.5, 35.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-19 10:49:20', '2015-11-26 09:51:46'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.9, 49.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-29 21:36:30', '2016-07-01 04:09:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.6, 40.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-06 04:47:11', '2016-03-31 09:30:53'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.9, 54.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-07 15:57:18', '2016-12-08 01:14:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.8, 35.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-30 17:41:23', '2016-03-11 16:19:14'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.6, 41.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-14 16:05:00', '2016-06-27 04:02:06'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.8, 52.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-19 07:24:16', '2016-05-14 00:01:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.1, 39.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-06 02:35:33', '2016-10-28 20:37:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.8, 53.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-26 16:35:27', '2016-11-15 20:20:59'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.3, 54.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-07 07:48:20', '2016-12-14 03:09:46'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.2, 47.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-01 13:36:16', '2015-11-19 00:42:03'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.7, 54.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-15 15:54:31', '2016-08-03 12:09:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.0, 43.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-28 03:12:39', '2016-09-25 08:29:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.9, 49.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-29 23:42:08', '2016-11-30 18:26:54'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.7, 41.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-16 16:50:17', '2016-07-08 10:39:05'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.3, 40.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-04 21:30:15', '2016-01-03 21:13:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.2, 52.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-27 05:18:29', '2016-06-02 06:17:47'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.8, 39.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-07 02:48:32', '2015-12-20 06:13:03'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.7, 36.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-24 13:07:35', '2016-01-26 06:27:51'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.9, 37.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-16 17:59:35', '2016-04-10 16:26:10'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.0, 37.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-01 18:49:57', '2016-06-17 18:44:41'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.3, 46.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-26 15:22:12', '2015-11-27 22:35:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.2, 53.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-25 15:51:21', '2016-12-20 00:46:46'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.5, 52.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-11 06:29:35', '2016-12-13 23:11:13'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.6, 43.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-27 07:44:18', '2016-04-05 15:14:18'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.1, 40.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-05 05:51:22', '2016-10-03 12:26:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.9, 45.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-09 15:39:01', '2016-10-30 14:39:45'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.1, 49.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-28 17:23:22', '2016-01-06 23:11:38'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.6, 37.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-08 16:58:53', '2016-04-04 21:47:34'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.1, 52.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-15 19:41:30', '2016-11-02 07:06:09'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.5, 45.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-03 11:16:22', '2016-03-13 10:02:29'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.1, 46.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-20 06:43:45', '2016-08-02 14:59:18'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.1, 49.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-31 04:34:27', '2016-06-12 08:29:39'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.8, 52.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-11 17:06:21', '2016-01-31 20:42:41'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.3, 53.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-12 04:48:34', '2016-01-26 11:06:09'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.9, 35.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-22 11:17:39', '2015-12-15 23:03:15'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.1, 51.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-26 15:29:29', '2016-09-29 05:20:00'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.3, 37.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-29 15:59:30', '2016-06-09 19:50:11'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.0, 35.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-18 17:34:31', '2016-07-05 10:36:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.6, 53.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-11 08:05:20', '2016-04-02 13:53:55'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.1, 38.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-28 21:29:41', '2016-08-26 20:44:31'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.9, 42.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-24 05:05:44', '2016-11-10 01:00:47'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.3, 44.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-18 10:34:17', '2016-02-22 10:43:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.6, 49.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-16 15:34:18', '2016-12-02 04:28:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.7, 48.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-10 00:45:05', '2016-11-06 19:25:50'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.0, 52.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-15 16:00:51', '2015-11-25 12:01:41'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.8, 35.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-29 10:55:32', '2016-08-28 05:46:43'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.4, 47.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-08 08:20:02', '2016-01-15 00:18:50'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.9, 39.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-30 02:22:34', '2016-04-04 19:00:07'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.2, 46.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-30 08:35:36', '2016-08-19 03:36:41'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.1, 35.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-25 19:25:04', '2016-12-27 19:49:59'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.0, 53.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-04 04:00:16', '2016-06-03 18:35:53'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.1, 43.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-20 11:25:22', '2016-04-17 22:14:02'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.2, 51.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-14 06:39:46', '2015-11-17 22:06:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.7, 42.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-22 21:33:16', '2016-09-21 14:57:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.7, 44.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-06 23:17:00', '2016-02-22 21:18:07'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.1, 44.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-10 20:25:49', '2016-05-14 09:27:57'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.3, 45.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-07 21:05:39', '2016-12-20 13:38:14'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.1, 54.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-20 09:30:44', '2016-08-04 15:24:52'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.7, 35.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-20 08:01:49', '2016-09-27 07:13:26'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.5, 42.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-17 13:00:18', '2016-05-13 18:32:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.3, 53.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-17 04:15:44', '2016-03-07 10:14:06'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.0, 36.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-11 04:02:12', '2016-11-02 14:13:45'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.5, 47.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-15 01:31:04', '2016-01-22 23:17:38'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.5, 54.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-21 09:07:29', '2016-03-26 17:23:52'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.6, 52.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-25 14:34:26', '2016-06-30 02:17:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.2, 44.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-17 06:42:40', '2015-11-07 20:37:15'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.8, 41.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-08 18:59:06', '2016-12-21 09:48:17'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.9, 38.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-27 03:33:09', '2016-11-03 18:18:27'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.7, 45.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-20 01:24:32', '2016-07-22 16:28:22'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.4, 54.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-29 06:15:34', '2016-01-20 11:22:02'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.5, 53.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-12 02:56:06', '2016-03-28 03:09:57'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.9, 42.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-29 09:55:36', '2016-02-25 21:13:10'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.1, 45.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-14 06:46:27', '2016-07-10 02:36:50'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.3, 38.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-01 01:09:44', '2016-02-28 04:17:14'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.2, 46.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-20 06:00:20', '2016-07-11 20:21:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.9, 36.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-11 14:29:52', '2015-12-09 19:42:38'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.7, 52.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-07 02:22:54', '2016-08-05 18:39:25'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.7, 45.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-19 23:56:32', '2016-11-08 02:10:22'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.3, 53.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-19 12:00:29', '2015-12-12 18:24:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.7, 44.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-04 09:01:57', '2016-06-24 05:48:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.7, 39.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-20 14:37:14', '2016-01-30 10:44:07'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.1, 51.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-15 08:01:55', '2015-12-29 21:55:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.5, 45.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-22 07:51:40', '2016-01-24 13:19:05'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.7, 48.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-20 14:37:08', '2016-07-21 21:16:20'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.7, 42.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-14 22:03:08', '2016-03-12 09:23:09'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.3, 39.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-11 18:20:23', '2016-07-17 11:55:34'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.8, 51.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-05 21:36:20', '2016-08-07 13:54:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.2, 51.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-16 18:29:48', '2015-11-26 13:35:48'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.3, 36.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-21 13:20:55', '2016-07-12 08:58:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.1, 37.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-04 21:47:51', '2016-08-13 16:31:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.7, 52.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-01 05:27:41', '2016-03-19 16:05:30'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.5, 43.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-14 07:13:25', '2015-12-29 21:24:25'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.5, 39.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-15 15:55:41', '2016-05-16 13:49:10'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (35.0, 40.5, 'B0:B4:48:C3:6C:05', '202481589565676', '1172.16.31.10', null, '2016-10-12 12:11:52', '2016-05-23 09:19:51'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.9, 42.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-01 18:01:04', '2016-03-08 18:07:32'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.7, 53.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-08 00:29:22', '2016-08-26 04:56:20'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.6, 49.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-24 22:02:43', '2016-10-13 19:46:00'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.0, 49.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-16 12:46:05', '2016-10-10 02:00:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.3, 52.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-05 05:34:05', '2016-01-05 02:46:06'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.7, 54.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-10 04:22:20', '2016-10-29 15:32:50'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.9, 41.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-27 15:05:58', '2016-10-18 11:50:43'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.1, 44.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-18 01:48:30', '2016-02-23 04:19:22'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.1, 52.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-15 03:35:10', '2015-11-25 03:24:18'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.2, 47.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-24 05:17:46', '2016-07-03 06:52:10'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.0, 50.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-01 05:16:06', '2016-04-01 04:25:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.1, 35.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-22 02:32:23', '2015-12-24 00:49:00'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.2, 43.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-09 13:58:02', '2016-02-05 21:47:07'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.3, 54.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-23 10:18:43', '2016-09-26 10:22:28'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.6, 44.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-25 03:15:14', '2016-04-07 03:40:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.0, 35.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-14 13:39:39', '2016-09-13 10:35:21'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.3, 54.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-17 04:14:37', '2016-12-18 21:03:57'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.1, 43.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-27 05:19:27', '2016-01-11 11:29:54'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.2, 41.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-31 03:05:40', '2016-11-18 12:21:39'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.5, 39.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-12 19:56:00', '2016-01-21 09:49:06'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.7, 47.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-09 03:39:52', '2016-08-28 13:00:29'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.6, 51.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-24 00:41:44', '2016-07-05 03:38:35'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.4, 45.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-28 12:39:43', '2016-04-21 20:32:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.9, 37.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-20 23:26:52', '2016-11-15 14:09:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.9, 42.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-14 11:19:35', '2016-02-14 15:29:46'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.7, 51.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-01 10:15:03', '2016-02-07 23:53:39'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.3, 36.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-08 15:55:37', '2016-11-29 06:20:48'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.9, 47.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-05 05:03:49', '2016-06-03 15:45:06'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.0, 54.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-10 15:50:15', '2016-05-02 14:36:10'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.7, 53.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-06 21:31:41', '2016-02-09 04:03:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.8, 53.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-06 22:52:27', '2016-11-19 16:26:30'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.8, 41.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-28 02:54:33', '2015-11-05 07:33:50'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.2, 45.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-11 22:52:13', '2015-12-13 08:33:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.7, 40.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-23 08:27:28', '2016-01-22 02:30:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.3, 38.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-02 17:35:59', '2016-04-12 04:17:30'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.5, 40.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-09 13:22:00', '2015-11-18 02:41:49'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.1, 54.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-11 15:37:21', '2016-10-11 20:33:51'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.1, 49.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-04 20:46:22', '2015-12-10 23:14:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.0, 38.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-17 13:55:50', '2016-06-23 17:09:15'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.6, 37.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-07 03:33:59', '2016-06-24 05:28:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.9, 51.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-13 02:31:11', '2016-11-29 06:21:26'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.2, 37.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-19 08:45:48', '2016-11-13 05:11:20'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.5, 45.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-24 23:33:19', '2016-11-24 13:29:26'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.5, 36.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-07 23:48:52', '2016-11-26 06:52:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.4, 43.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-03 01:08:42', '2016-03-07 17:38:18'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.9, 38.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-14 17:16:17', '2016-10-08 23:10:48'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.7, 49.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-21 00:41:20', '2016-06-05 15:13:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.9, 38.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-26 19:26:45', '2016-04-10 14:15:32'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.9, 50.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-09 21:15:58', '2016-07-07 10:01:23'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.6, 44.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-27 00:18:10', '2016-08-20 04:01:10'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.1, 39.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-01 11:12:33', '2016-05-27 23:39:30'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.0, 50.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-18 08:10:04', '2016-11-02 17:25:17'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.7, 50.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-23 23:39:04', '2015-11-05 04:06:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.0, 52.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-17 17:00:05', '2016-04-19 22:57:14'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.9, 54.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-20 12:47:28', '2016-02-17 16:56:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.4, 40.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-12 13:31:54', '2016-02-21 10:54:32'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.8, 43.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-20 07:55:48', '2016-01-22 05:44:22'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.8, 43.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-26 21:39:13', '2016-04-03 07:03:43'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.7, 46.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-24 23:49:33', '2016-04-24 21:24:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.4, 47.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-07 10:39:24', '2016-06-25 06:12:09'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.0, 37.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-06 18:37:54', '2016-05-19 15:35:55'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.3, 37.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-21 10:35:48', '2016-02-19 20:33:14'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.5, 54.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-15 08:16:22', '2015-11-23 11:11:20'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.5, 53.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-03 14:10:53', '2016-03-26 07:28:11'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.9, 51.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-19 07:53:03', '2016-01-25 00:29:39'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.4, 45.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-16 17:15:48', '2016-12-07 01:47:05'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.1, 52.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-24 14:24:53', '2016-04-27 10:04:56'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.2, 52.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-08 19:58:25', '2016-02-04 06:30:46'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.8, 54.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-21 05:25:50', '2016-11-20 02:19:22'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.1, 53.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-15 14:55:50', '2016-12-23 02:58:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.5, 46.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-17 14:05:18', '2016-05-09 10:32:45'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.9, 50.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-28 04:46:28', '2015-12-09 00:45:39'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.3, 49.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-05 22:48:21', '2016-09-24 10:43:12'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.2, 48.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-26 01:15:03', '2016-08-12 14:33:01'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.3, 54.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-01 23:25:34', '2016-04-09 21:26:30'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.7, 42.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-27 03:20:59', '2016-05-30 09:19:09'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.1, 48.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-12 12:24:55', '2016-07-08 16:01:20'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.6, 39.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-17 17:05:54', '2016-03-05 18:59:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.2, 48.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-07 05:51:06', '2016-09-13 07:21:12'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.1, 48.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-18 08:48:00', '2016-02-05 02:57:49'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.4, 52.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-10 10:14:15', '2016-10-17 16:21:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.8, 37.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-21 19:07:13', '2016-10-08 06:39:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.1, 37.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-25 19:02:58', '2016-01-15 20:15:55'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.3, 54.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-22 05:25:55', '2016-01-12 13:07:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.8, 36.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-03 21:50:21', '2016-03-04 06:53:22'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.6, 48.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-28 14:24:33', '2016-09-05 17:44:24'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.0, 37.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-15 12:55:53', '2016-09-10 00:56:57'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.6, 50.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-10 03:39:07', '2016-10-05 09:27:15'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.9, 51.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-07 09:08:36', '2016-06-21 03:44:34'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.8, 46.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-10 16:14:54', '2015-12-25 18:02:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.1, 38.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-06 11:34:48', '2016-01-15 20:58:49'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.5, 43.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-02 03:39:25', '2016-05-12 08:27:03'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.0, 37.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-01 12:47:37', '2016-02-28 19:39:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.6, 36.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-20 00:10:46', '2016-12-11 05:51:47'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.4, 41.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-27 22:06:11', '2016-04-08 10:10:30'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.6, 44.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-09 04:55:48', '2016-12-15 00:59:10'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.7, 39.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-09 12:23:50', '2016-01-27 23:23:54'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.6, 44.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-29 21:21:13', '2016-02-24 00:05:28'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.9, 49.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-01 01:00:16', '2016-11-13 17:08:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.5, 51.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-22 15:18:42', '2016-06-24 18:38:23'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.7, 44.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-04 15:40:58', '2016-11-04 02:44:22'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.6, 44.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-13 11:25:12', '2016-07-20 00:59:34'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.3, 37.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-19 04:53:55', '2015-11-06 16:51:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.4, 36.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-28 18:10:44', '2016-10-22 20:00:32'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.1, 41.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-01 03:37:36', '2016-10-08 04:36:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.3, 43.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-28 09:16:13', '2016-06-23 00:35:43'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.4, 42.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-20 04:18:52', '2016-07-23 03:08:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.4, 40.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-16 04:01:18', '2015-11-20 05:19:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.9, 51.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-01 18:10:49', '2015-12-14 21:03:16'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.2, 46.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-22 03:53:44', '2016-03-11 06:34:25'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.6, 43.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-07 08:25:22', '2016-06-29 22:11:57'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.8, 48.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-02 06:24:51', '2016-12-06 05:24:35'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.6, 47.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-22 09:49:24', '2016-08-07 21:11:00'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.4, 38.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-05 02:47:40', '2016-09-10 17:27:03'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.5, 47.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-23 07:19:56', '2016-03-28 00:39:14'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.3, 54.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-17 17:06:15', '2016-10-08 14:25:47'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.3, 49.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-01 04:37:44', '2016-07-14 03:21:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.7, 37.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-27 15:33:05', '2016-05-12 10:11:35'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.5, 36.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-26 16:53:51', '2016-04-24 10:41:25'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.2, 36.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-18 14:13:30', '2016-04-21 17:40:54'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.7, 49.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-08 19:27:27', '2016-05-26 20:36:52'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.1, 48.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-17 12:44:23', '2016-01-15 19:47:59'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.7, 48.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-27 06:00:45', '2015-12-24 11:18:48'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.1, 41.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-03 06:39:48', '2015-12-12 22:55:17'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.8, 46.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-04 13:47:05', '2016-10-02 00:52:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.2, 44.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-10 09:38:06', '2015-11-26 09:47:38'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.4, 52.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-24 18:58:07', '2016-04-20 12:05:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.7, 52.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-20 21:13:50', '2016-02-02 00:49:17'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.0, 40.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-23 03:18:14', '2015-11-22 23:56:56'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.8, 46.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-23 09:20:14', '2016-01-13 21:51:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.2, 54.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-06 13:07:05', '2015-11-26 18:23:50'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.7, 44.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-03 14:39:54', '2016-07-25 10:38:45'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.2, 38.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-23 03:14:02', '2016-04-28 03:14:53'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.9, 48.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-21 16:54:26', '2016-12-12 23:02:53'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.8, 41.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-05 03:14:49', '2016-09-06 23:09:14'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.4, 35.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-17 19:22:34', '2016-07-16 16:17:51'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.5, 52.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-29 18:47:22', '2016-07-12 23:32:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.4, 52.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-08 16:10:05', '2016-08-05 22:46:34'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.7, 35.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-11 12:15:20', '2016-01-11 01:29:31'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.4, 37.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-24 12:53:08', '2016-08-14 23:15:06'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.3, 42.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-08 16:44:52', '2016-10-20 01:59:08'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.1, 40.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-20 20:33:48', '2016-07-06 13:00:08'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.8, 35.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-15 07:46:52', '2016-04-24 19:20:46'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.0, 50.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-31 19:27:32', '2016-09-14 12:42:54'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.5, 45.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-27 14:29:19', '2015-12-16 15:49:46'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.8, 40.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-20 03:17:57', '2016-05-23 19:31:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.9, 39.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-10 05:14:45', '2016-03-18 20:58:17'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.4, 54.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-13 19:51:42', '2015-11-29 13:22:12'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.1, 46.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-28 01:05:12', '2015-12-18 03:02:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.0, 45.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-11 23:01:27', '2016-06-29 05:20:50'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.8, 35.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-13 22:01:18', '2016-01-11 00:18:39'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.9, 44.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-13 18:38:59', '2016-12-12 23:59:56'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.0, 43.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-08 14:28:02', '2016-09-25 05:34:00'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.0, 38.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-18 05:22:27', '2016-09-12 08:39:30'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.7, 51.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-25 18:49:45', '2016-06-02 15:09:56'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.6, 53.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-19 10:57:06', '2016-10-28 20:57:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.0, 47.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-24 13:48:48', '2016-06-17 03:11:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.0, 37.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-10 07:57:45', '2016-03-04 01:52:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.4, 52.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-09 11:37:39', '2016-07-20 16:40:11'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.5, 52.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-06 08:50:42', '2016-07-15 21:42:57'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.5, 44.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-10 05:27:24', '2016-06-12 21:06:12'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.1, 54.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-21 03:32:17', '2016-02-14 06:57:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.8, 48.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-29 05:59:45', '2016-01-11 07:38:16'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.3, 54.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-15 23:46:30', '2016-03-12 12:26:57'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.1, 40.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-09 23:09:37', '2016-06-30 20:27:35'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.5, 47.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-02 15:12:13', '2016-04-15 03:12:48'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.9, 53.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-08 18:06:44', '2015-12-08 01:25:52'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.4, 51.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-23 04:48:27', '2015-12-17 09:39:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.5, 45.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-29 21:25:23', '2016-05-05 13:27:24'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.9, 39.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-27 09:38:41', '2016-05-20 06:54:56'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.1, 35.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-06 06:06:54', '2016-09-22 02:17:11'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.0, 45.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-02 01:21:51', '2016-11-12 15:55:56'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.2, 38.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-07 08:01:41', '2015-11-14 06:56:54'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.1, 48.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-18 23:30:32', '2015-12-07 21:40:51'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.3, 43.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-14 22:22:29', '2015-12-23 12:46:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.3, 48.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-03 02:04:42', '2016-01-28 04:10:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.0, 36.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-10 18:48:26', '2016-02-02 00:31:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.9, 46.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-10 13:29:02', '2016-08-15 17:25:28'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.3, 47.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-01 00:23:59', '2016-07-13 20:49:43'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.7, 41.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-05 08:44:10', '2016-07-21 16:55:05'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.7, 35.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-02 03:59:42', '2016-07-12 20:17:05'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.0, 49.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-24 09:15:09', '2015-11-18 04:03:30'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.3, 48.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-20 11:04:45', '2016-07-11 04:23:31'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.3, 41.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-17 23:11:27', '2016-06-08 04:19:08'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.6, 36.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-12 23:52:06', '2016-01-28 01:02:50'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.8, 36.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-25 13:39:14', '2016-03-20 13:56:27'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.4, 53.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-06 18:11:21', '2015-12-31 10:44:49'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.9, 42.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-31 23:25:36', '2015-12-04 09:14:26'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.5, 39.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-03 23:48:51', '2016-07-19 11:10:12'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.9, 50.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-29 00:26:51', '2016-10-02 13:43:46'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.7, 42.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-23 19:47:22', '2016-06-25 03:56:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.9, 52.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-06 00:54:24', '2016-08-25 07:40:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.3, 50.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-20 07:32:43', '2016-01-29 02:14:51'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.0, 52.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-10 22:31:33', '2016-01-22 03:38:38'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.1, 53.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-24 09:57:37', '2016-04-07 00:27:49'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.5, 42.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-06 07:41:04', '2016-07-15 19:02:13'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.2, 50.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-02 05:13:53', '2016-09-06 08:00:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.5, 43.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-22 07:06:45', '2016-09-29 14:00:07'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.6, 36.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-18 10:32:02', '2016-05-24 21:42:07'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.8, 38.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-29 16:19:27', '2016-09-01 04:00:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.6, 50.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-20 21:14:14', '2016-07-19 13:43:50'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.5, 51.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-23 04:14:21', '2016-08-13 22:40:45'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.8, 48.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-26 06:50:11', '2016-04-21 15:43:24'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.9, 38.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-27 10:24:34', '2016-03-30 04:23:21'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.7, 45.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-11 14:29:39', '2015-11-06 20:22:00'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.8, 49.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-25 06:21:51', '2016-05-22 11:32:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.9, 53.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-15 15:32:18', '2016-04-03 17:38:53'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.8, 45.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-07 22:44:24', '2015-12-28 03:40:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.6, 54.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-22 07:21:22', '2015-12-28 00:58:05'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.9, 47.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-15 01:20:49', '2016-02-26 12:32:28'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.5, 40.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-23 10:26:49', '2016-02-28 11:43:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.6, 35.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-27 06:57:09', '2016-05-01 10:33:01'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.8, 36.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-21 04:31:32', '2015-12-02 16:59:48'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.3, 39.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-09 09:08:26', '2016-04-28 22:05:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.3, 36.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-04 20:39:31', '2016-03-16 08:41:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.7, 39.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-27 06:54:22', '2016-11-06 13:22:43'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.8, 37.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-24 01:38:38', '2016-04-01 08:39:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.0, 36.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-01 16:06:34', '2016-02-08 22:02:07'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.7, 54.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-26 03:40:38', '2016-03-14 06:33:29'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.4, 44.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-11 05:55:07', '2016-02-01 17:37:24'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.0, 39.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-24 10:44:01', '2016-08-23 20:12:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.8, 45.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-13 07:33:36', '2016-10-22 16:02:00'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.5, 38.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-31 02:01:13', '2016-07-09 07:33:46'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.6, 36.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-31 07:46:32', '2016-07-06 23:57:15'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.7, 36.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-25 04:23:20', '2016-09-11 14:55:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.3, 45.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-29 13:49:41', '2016-04-20 10:25:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.2, 40.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-04 23:57:52', '2015-12-28 23:32:30'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.5, 47.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-06 12:07:09', '2016-06-28 22:00:24'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.7, 54.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-15 09:41:42', '2015-12-03 09:54:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.3, 35.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-24 01:39:35', '2016-07-27 22:31:24'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.4, 37.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-25 01:46:48', '2016-03-04 08:20:28'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.8, 48.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-14 01:51:09', '2016-06-14 11:09:08'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.3, 45.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-12 23:58:14', '2016-09-14 06:46:31'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.4, 42.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-29 22:59:49', '2016-09-11 22:13:53'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.7, 43.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-06 06:18:27', '2016-01-01 03:16:20'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.2, 47.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-07 16:08:33', '2015-11-12 06:57:50'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.7, 53.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-17 06:29:47', '2016-10-14 06:08:45'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.2, 50.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-10 02:16:44', '2016-04-29 19:14:13'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.1, 42.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-20 18:37:42', '2016-08-21 15:08:05'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.8, 40.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-30 17:13:45', '2016-11-06 01:42:59'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.5, 44.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-14 21:16:08', '2016-04-20 08:22:23'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.6, 37.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-23 13:45:01', '2015-11-29 19:08:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.0, 45.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-20 08:09:59', '2016-03-12 13:48:34'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.4, 35.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-08 00:26:49', '2015-12-27 06:02:48'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.2, 53.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-03 05:28:45', '2016-10-18 10:44:24'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.0, 54.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-20 15:24:32', '2016-04-22 03:01:07'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.3, 51.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-05 16:29:29', '2016-11-04 18:55:57'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.1, 35.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-19 05:42:12', '2016-09-11 03:11:32'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.2, 44.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-14 18:50:21', '2016-11-03 20:30:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.6, 48.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-27 03:04:15', '2016-03-24 21:37:46'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.1, 36.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-01 12:26:24', '2016-06-10 22:57:01'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.2, 42.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-14 21:24:48', '2015-11-12 18:49:54'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.9, 35.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-31 15:34:53', '2016-01-27 13:53:08'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.8, 48.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-03 19:03:08', '2015-11-25 00:18:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.7, 37.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-12 11:30:40', '2016-10-19 10:17:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.1, 54.2, 'B0:B4:48:C3:6C:05', '202481589565676', '1172.16.31.10', null, '2016-09-27 17:28:43', '2016-05-13 22:57:22'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.4, 36.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-21 20:46:05', '2016-04-15 15:15:55'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.0, 35.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-11 06:11:06', '2016-08-16 08:20:39'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.1, 50.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-21 18:53:18', '2016-05-27 05:59:49'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.4, 37.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-23 23:09:11', '2016-06-28 10:23:35'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.5, 51.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-22 02:53:51', '2016-11-09 00:17:29'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.0, 51.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-03 07:13:27', '2015-12-01 07:45:53'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.5, 36.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-27 21:31:51', '2016-10-04 19:57:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.2, 50.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-24 01:16:27', '2016-07-24 07:18:43'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.5, 45.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-08 02:21:33', '2016-12-03 07:09:17'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.2, 50.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-25 02:49:01', '2016-01-30 00:54:34'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.0, 48.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-02 08:12:36', '2016-01-16 05:29:32'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.2, 44.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-29 00:43:49', '2015-12-13 17:38:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.0, 37.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-17 04:30:58', '2016-04-17 20:46:06'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.2, 35.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-06 17:49:24', '2016-11-04 01:28:48'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.7, 51.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-06 22:51:05', '2015-11-10 06:05:18'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.3, 46.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-12 13:26:45', '2016-01-23 20:34:08'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.6, 47.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-24 03:25:58', '2016-04-05 07:48:15'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.7, 51.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-04 03:04:37', '2016-10-09 18:25:24'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.1, 37.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-26 23:31:05', '2016-02-23 14:53:06'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.7, 38.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-30 14:54:24', '2016-03-16 08:59:02'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.2, 39.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-17 14:05:01', '2016-05-08 13:18:28'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.0, 48.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-11 18:02:31', '2016-05-23 17:09:43'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.0, 42.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-12 01:51:47', '2015-11-08 22:16:45'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.8, 42.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-18 03:40:42', '2016-07-03 15:23:16'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.5, 52.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-07 01:40:06', '2016-08-21 22:48:32'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.3, 54.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-16 12:43:07', '2016-07-22 07:00:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.9, 39.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-02 16:43:20', '2016-06-08 12:17:00'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.3, 47.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-01 09:42:30', '2016-09-22 18:12:29'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.8, 40.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-25 19:57:21', '2015-12-31 00:47:05'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.7, 38.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-25 04:13:17', '2016-03-21 03:06:24'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.4, 49.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-15 21:52:31', '2016-05-25 01:52:13'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.2, 37.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-10 08:14:06', '2016-12-15 21:35:26'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.6, 39.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-26 11:41:05', '2016-11-05 13:24:28'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.2, 54.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-13 08:34:37', '2016-05-30 05:44:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.1, 50.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-21 04:05:24', '2015-11-06 18:11:49'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.4, 35.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-18 11:24:12', '2015-11-02 03:24:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.3, 42.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-08 13:36:29', '2016-03-10 10:43:26'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.7, 41.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-26 23:50:29', '2016-02-03 10:58:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.7, 47.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-30 00:21:13', '2016-05-13 20:24:29'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.2, 39.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-29 15:03:02', '2016-02-28 22:37:22'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.1, 46.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-10 17:01:50', '2015-12-24 14:33:17'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.3, 43.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-28 16:18:08', '2016-08-05 18:00:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.6, 37.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-02 21:54:01', '2016-05-12 13:10:20'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.3, 35.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-18 23:24:21', '2016-08-19 05:07:43'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.0, 42.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-17 20:37:37', '2016-10-04 19:55:51'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.2, 39.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-17 01:04:04', '2016-08-30 06:31:55'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.4, 45.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-24 18:50:39', '2015-12-25 06:48:16'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.4, 54.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-17 01:58:36', '2016-03-08 10:29:30'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.9, 52.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-07 06:28:38', '2016-11-11 22:30:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.9, 49.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-05 12:41:24', '2016-02-08 12:53:00'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.2, 52.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-25 05:07:34', '2016-07-23 20:26:09'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.1, 39.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-30 05:57:02', '2016-11-11 06:22:05'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.8, 36.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-15 17:13:55', '2016-02-16 19:25:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.3, 53.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-17 17:55:25', '2016-10-12 02:46:23'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.4, 46.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-09 00:14:35', '2016-12-13 15:26:08'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.7, 43.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-07 06:25:20', '2016-04-30 08:03:17'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.3, 48.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-06 10:10:33', '2016-05-01 17:35:43'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.2, 45.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-31 03:44:58', '2016-02-26 18:29:51'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.4, 36.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-14 14:15:05', '2016-08-09 07:12:31'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.3, 40.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-03 09:13:44', '2015-12-25 00:31:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.2, 51.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-23 12:55:16', '2016-12-20 17:04:09'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.7, 41.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-11 02:15:45', '2016-10-27 07:23:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.6, 47.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-23 18:44:17', '2016-01-24 09:05:49'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.9, 44.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-14 06:47:47', '2016-09-30 16:57:02'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.3, 42.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-23 23:15:31', '2016-08-30 00:03:06'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.6, 53.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-27 17:25:55', '2016-09-20 07:15:11'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.3, 48.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-23 07:58:10', '2016-02-03 00:37:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.8, 43.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-20 09:30:22', '2016-01-06 16:05:53'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.9, 39.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-14 22:19:10', '2016-07-16 00:05:22'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.6, 47.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-15 02:49:48', '2016-08-04 06:01:45'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.5, 49.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-05 15:58:26', '2015-12-17 07:12:45'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.5, 41.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-07 14:13:09', '2016-03-03 12:19:23'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.1, 42.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-25 01:43:13', '2016-05-04 16:32:46'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.9, 37.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-27 02:01:51', '2016-06-18 08:06:18'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.3, 52.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-02 05:48:59', '2016-11-07 14:24:39'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.0, 45.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-27 17:49:13', '2016-02-14 14:37:11'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.9, 51.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-18 23:01:55', '2016-07-11 02:01:12'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.7, 46.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-21 20:51:09', '2016-12-08 02:41:25'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.0, 36.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-14 02:48:33', '2016-07-08 14:30:35'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.4, 49.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-23 20:00:22', '2016-03-07 09:34:52'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.9, 49.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-13 17:22:29', '2015-12-22 13:50:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.3, 41.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-25 09:56:57', '2016-08-26 18:42:03'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.5, 37.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-26 11:23:21', '2016-01-25 00:17:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.5, 36.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-28 01:02:22', '2016-05-22 12:36:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.7, 52.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-10 13:15:07', '2016-09-12 00:46:03'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.7, 44.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-02 00:31:13', '2016-10-17 03:11:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.8, 35.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-07 08:40:55', '2016-12-03 19:33:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.0, 49.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-17 04:02:57', '2016-09-16 15:01:14'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.2, 51.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-20 20:22:21', '2016-06-15 20:22:51'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.4, 51.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-08 22:44:53', '2015-12-29 08:00:35'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.9, 43.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-13 08:51:45', '2016-03-21 05:08:38'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.6, 48.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-17 14:40:25', '2016-08-30 04:07:07'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.8, 52.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-18 00:21:27', '2016-09-23 18:31:08'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.5, 42.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-25 10:33:54', '2016-01-15 23:36:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.1, 35.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-26 09:37:14', '2016-09-07 17:51:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.2, 47.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-29 14:40:51', '2016-03-18 12:11:35'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.5, 48.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-31 10:03:41', '2016-09-28 01:14:09'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.3, 46.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-06 08:50:06', '2016-06-07 17:35:11'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.4, 45.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-19 00:26:15', '2016-09-06 02:19:26'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.3, 37.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-16 00:58:56', '2015-12-29 12:03:54'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.4, 35.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-05 20:23:04', '2015-12-09 10:11:31'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.5, 50.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-14 10:18:23', '2016-11-06 16:48:18'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.0, 45.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-21 10:08:30', '2016-05-14 06:07:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.7, 41.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-06 05:14:02', '2016-05-02 19:35:51'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.1, 45.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-29 18:04:45', '2016-05-20 07:19:25'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.5, 44.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-15 10:30:11', '2016-07-31 09:35:01'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.9, 36.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-23 11:41:14', '2016-02-10 18:14:57'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.8, 48.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-05 20:30:33', '2016-07-24 19:10:32'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.6, 42.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-19 16:32:39', '2016-10-24 23:53:43'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.0, 37.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-19 13:08:02', '2016-09-04 21:40:39'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.7, 45.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-30 00:20:10', '2015-12-14 09:57:50'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.8, 44.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-01 21:28:57', '2016-12-03 11:16:57'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.3, 40.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-09 23:06:37', '2016-01-04 19:54:23'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.4, 44.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-11 07:11:05', '2016-07-03 23:40:00'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.8, 49.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-18 07:46:33', '2016-11-01 06:34:12'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.2, 43.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-05 03:03:50', '2016-11-20 10:21:53'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.3, 49.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-13 18:38:47', '2016-01-15 21:02:25'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.6, 35.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-15 21:01:15', '2016-07-14 14:42:24'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.4, 48.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-27 06:38:27', '2016-06-28 09:25:49'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.4, 54.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-12 12:51:36', '2015-11-14 12:35:03'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.1, 52.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-15 04:33:03', '2016-01-18 14:41:11'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.0, 51.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-13 07:34:30', '2016-01-09 23:24:12'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.6, 38.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-26 05:27:40', '2015-11-13 16:00:39'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.4, 37.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-12 09:27:46', '2016-05-15 17:56:38'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.2, 35.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-13 13:40:26', '2016-12-05 14:28:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.2, 36.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-11 07:19:48', '2016-10-06 07:21:12'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.8, 35.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-22 22:09:29', '2016-08-07 04:49:54'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.9, 47.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-25 11:07:46', '2016-01-19 18:03:54'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.2, 41.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-29 16:10:05', '2016-04-30 20:52:21'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.3, 50.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-25 12:13:50', '2016-03-08 08:15:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.5, 49.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-16 14:42:42', '2016-09-13 01:47:53'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.2, 41.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-29 15:34:57', '2015-12-09 05:13:11'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.5, 50.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-08 01:26:01', '2016-02-01 20:31:25'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.9, 40.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-24 08:18:25', '2016-08-08 15:01:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.5, 50.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-04 05:46:30', '2016-03-19 08:18:50'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.2, 44.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-30 13:42:09', '2016-03-21 05:04:14'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.0, 40.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-30 08:25:57', '2016-07-24 07:42:56'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.7, 42.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-24 03:39:06', '2015-11-03 21:16:20'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.2, 39.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-05 03:37:46', '2015-12-01 17:49:30'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.7, 36.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-02 07:09:28', '2016-01-23 06:54:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.3, 38.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-11 10:07:15', '2016-06-19 13:32:34'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.6, 54.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-23 09:07:29', '2016-08-15 21:38:15'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.8, 54.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-23 07:33:58', '2016-06-21 08:00:35'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.1, 38.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-27 17:11:27', '2016-12-17 02:20:25'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.7, 48.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-23 10:21:28', '2016-06-24 09:37:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.6, 43.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-16 16:04:17', '2016-10-15 21:23:12'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.3, 41.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-23 04:42:24', '2016-03-13 14:23:39'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.2, 40.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-19 13:14:39', '2016-11-17 06:18:21'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.7, 42.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-28 09:13:16', '2016-06-14 06:20:11'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.7, 36.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-24 17:33:38', '2016-10-09 23:37:38'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.8, 52.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-06 08:13:20', '2016-11-26 20:03:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.2, 53.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-10 12:49:56', '2016-01-09 13:30:46'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.2, 46.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-30 06:52:58', '2016-06-18 21:42:01'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.1, 51.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-25 06:48:39', '2016-08-15 21:55:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.1, 46.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-15 12:19:33', '2016-09-18 02:17:29'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.5, 54.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-31 03:15:02', '2016-07-08 08:15:18'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.2, 35.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-22 10:29:24', '2016-04-24 10:18:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.2, 38.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-01 14:39:20', '2016-02-02 07:50:35'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.6, 47.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-02 05:51:40', '2015-11-17 20:36:07'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.0, 37.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-14 15:47:29', '2016-07-25 11:30:25'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.7, 54.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-27 03:32:47', '2016-09-16 20:07:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.6, 36.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-18 12:05:17', '2015-11-08 03:42:13'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.3, 39.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-16 04:51:32', '2016-01-17 18:12:51'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.1, 54.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-21 08:12:06', '2016-12-18 10:37:57'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.7, 43.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-01 05:01:38', '2016-11-27 23:03:02'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.9, 54.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-25 22:57:58', '2015-11-04 21:18:11'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.3, 36.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-10 09:10:35', '2016-06-24 15:08:38'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.7, 51.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-19 12:21:58', '2016-02-21 21:39:01'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.5, 37.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-08 13:32:26', '2015-12-16 22:25:46'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.6, 48.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-22 23:26:25', '2016-03-01 15:56:25'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.7, 40.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-25 12:42:54', '2016-06-08 23:35:15'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.9, 54.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-16 19:02:52', '2016-03-11 07:41:55'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.5, 36.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-15 17:03:55', '2015-12-28 04:41:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.9, 43.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-07 03:13:21', '2016-04-22 06:16:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.8, 53.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-26 18:39:29', '2016-12-26 01:51:07'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.4, 50.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-09 14:19:02', '2016-12-06 15:42:54'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.7, 35.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-19 16:23:45', '2016-07-18 19:25:28'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.8, 42.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-20 01:31:08', '2016-06-08 22:15:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.3, 43.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-19 08:19:19', '2016-04-11 16:20:00'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.7, 40.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-15 09:16:13', '2016-02-10 12:10:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.1, 45.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-01 12:14:19', '2016-05-25 23:03:17'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.4, 36.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-14 01:40:40', '2016-06-04 21:01:02'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.2, 44.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-26 23:38:55', '2016-03-10 20:27:26'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.3, 39.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-21 03:10:43', '2016-07-18 18:47:10'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.9, 51.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-08 08:10:11', '2016-05-11 00:47:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.5, 38.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-19 17:23:32', '2016-05-13 15:00:29'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.0, 51.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-16 23:25:19', '2016-07-09 22:43:48'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.2, 53.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-20 20:52:05', '2016-07-27 07:13:55'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.5, 38.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-15 14:04:23', '2016-05-27 12:27:09'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.8, 50.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-20 11:29:08', '2016-05-17 09:52:57'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.8, 47.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-29 16:57:32', '2015-11-12 18:16:56'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.6, 41.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-15 09:11:46', '2016-02-21 15:59:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.0, 39.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-22 03:27:33', '2015-11-29 02:21:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.7, 54.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-05 11:07:12', '2015-11-08 11:47:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.3, 35.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-02 03:11:18', '2016-10-31 18:40:21'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.6, 51.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-16 10:01:56', '2016-05-14 23:08:30'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.5, 53.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-09 15:30:38', '2016-04-12 20:24:34'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.2, 36.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-09 13:28:15', '2016-06-06 03:55:55'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.9, 51.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-20 14:46:04', '2016-11-15 00:44:07'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.7, 46.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-07 20:45:13', '2016-06-21 23:26:17'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.2, 41.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-30 02:18:27', '2016-05-06 21:50:02'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.1, 51.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-10 18:30:35', '2016-10-01 09:57:25'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.2, 39.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-04 05:28:01', '2016-03-20 01:12:29'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.5, 49.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-28 14:52:05', '2016-07-26 10:52:32'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.9, 42.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-20 13:45:40', '2016-06-09 12:06:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.2, 41.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-10 04:53:32', '2016-06-14 00:00:46'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.8, 48.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-29 10:35:38', '2016-03-12 06:22:18'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.7, 36.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-05 20:48:48', '2016-08-03 05:02:51'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.9, 52.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-10 21:29:33', '2016-10-08 22:14:35'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.5, 39.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-14 13:11:18', '2016-02-18 06:55:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.9, 43.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-23 16:10:12', '2016-10-29 07:20:20'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.5, 49.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-22 10:11:30', '2016-06-13 15:51:16'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.7, 40.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-16 04:45:27', '2016-02-05 18:11:49'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.7, 49.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-23 11:38:36', '2016-03-17 02:08:31'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.5, 38.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-06 04:20:12', '2016-03-06 13:13:02'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.5, 53.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-08 21:25:51', '2016-02-21 20:30:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.2, 42.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-28 16:14:54', '2016-06-16 20:53:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.5, 48.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-04 08:40:07', '2016-05-13 17:54:02'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.2, 53.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-03 03:27:54', '2016-07-20 06:05:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.9, 36.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-23 13:41:35', '2016-06-15 19:54:06'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.3, 44.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-06 03:10:38', '2016-10-19 05:22:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.5, 40.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-14 11:38:04', '2016-12-19 01:20:56'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.4, 38.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-10 14:05:05', '2016-10-26 17:48:54'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.6, 39.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-20 05:33:54', '2016-11-02 11:32:34'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.5, 49.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-25 17:41:25', '2016-04-11 23:17:38'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.3, 39.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-21 20:39:47', '2016-10-25 10:33:47'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.8, 54.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-28 12:29:43', '2016-04-12 20:00:17'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.5, 55.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-02 08:34:03', '2015-12-21 04:11:32'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.2, 37.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-15 16:15:11', '2016-11-09 16:39:32'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.9, 38.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-03 09:06:56', '2016-07-05 03:30:28'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.9, 45.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-01 07:33:24', '2016-02-04 02:03:55'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.0, 50.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-08 23:56:32', '2016-02-11 20:49:56'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.9, 52.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-15 03:12:23', '2016-04-18 10:01:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.8, 51.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-15 05:04:01', '2016-05-19 07:59:55'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.5, 44.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-16 16:38:18', '2016-07-31 22:43:20'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.6, 35.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-19 02:15:08', '2016-03-25 08:15:00'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.5, 46.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-05 23:20:33', '2016-04-21 17:58:12'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.4, 42.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-08 15:42:54', '2016-09-18 23:30:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.1, 54.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-24 02:39:44', '2016-04-10 17:00:16'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.4, 42.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-13 04:29:44', '2016-05-03 05:38:14'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.1, 40.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-08 13:38:22', '2016-08-07 10:38:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.2, 41.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-21 14:03:55', '2016-09-26 16:28:01'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.5, 43.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-14 15:41:15', '2015-12-16 06:41:43'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.1, 36.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-27 02:02:44', '2016-05-18 13:59:25'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.7, 47.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-22 21:45:10', '2016-01-01 15:35:50'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.4, 50.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-07 22:10:39', '2016-02-16 04:08:17'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.7, 46.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-17 12:49:34', '2016-12-04 04:11:38'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.1, 36.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-05 06:37:41', '2016-07-24 11:20:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.7, 54.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-23 09:45:52', '2016-04-21 18:10:38'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.9, 36.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-19 00:15:30', '2016-10-26 17:49:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.5, 53.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-07 14:01:15', '2016-09-03 05:20:34'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.2, 51.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-20 08:22:36', '2016-09-25 01:44:21'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.5, 36.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-13 03:51:59', '2016-07-18 09:52:17'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.9, 46.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-01 17:52:32', '2016-02-27 04:59:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.5, 48.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-17 19:55:56', '2016-04-28 15:12:11'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.9, 48.2, 'B0:B4:48:C3:6C:05', '202481589565676', '1172.16.31.10', null, '2016-06-14 17:45:40', '2016-04-11 12:54:03'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.8, 49.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-20 09:04:00', '2016-11-01 17:36:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.5, 48.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-14 19:08:06', '2016-01-24 22:29:02'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.4, 42.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-21 04:38:51', '2015-12-31 20:45:30'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.0, 41.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-07 22:36:37', '2016-11-01 14:55:13'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.1, 41.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-14 11:16:19', '2016-06-15 11:30:49'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.5, 47.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-20 10:42:36', '2016-04-05 20:48:16'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.1, 51.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-09 23:23:54', '2016-09-10 14:41:07'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.2, 48.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-05 08:18:15', '2016-12-03 15:48:50'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.9, 52.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-16 16:39:14', '2016-10-19 10:41:05'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.8, 52.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-20 07:02:03', '2016-09-23 19:17:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.6, 52.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-11 00:45:22', '2016-10-16 12:07:50'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.7, 48.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-09 08:12:53', '2015-12-29 09:38:14'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.5, 43.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-15 14:56:02', '2016-12-04 07:52:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.2, 42.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-30 16:23:17', '2015-11-06 16:13:38'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.0, 47.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-20 01:19:26', '2016-11-27 11:15:09'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.5, 40.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-18 03:05:58', '2015-11-18 11:23:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.4, 38.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-25 06:07:05', '2016-02-09 06:24:59'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.3, 37.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-30 13:33:51', '2016-05-25 06:44:27'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.5, 35.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-11 23:46:40', '2016-02-20 03:18:21'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.2, 36.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-08 06:19:38', '2016-08-08 04:30:53'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.8, 44.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-19 08:29:19', '2016-08-24 06:02:35'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.3, 42.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-12 01:14:11', '2016-06-14 21:44:15'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.1, 35.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-20 13:35:15', '2016-12-02 21:01:23'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.0, 43.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-22 16:14:10', '2016-01-31 04:43:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (35.0, 45.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-30 20:50:40', '2015-11-14 13:40:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.3, 47.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-25 16:52:29', '2016-06-10 15:01:21'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.3, 45.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-29 10:58:53', '2016-12-10 05:34:10'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.8, 36.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-19 14:07:58', '2016-03-11 01:58:17'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.9, 36.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-27 06:29:05', '2016-03-08 10:19:12'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.4, 39.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-16 22:18:22', '2016-11-16 20:31:11'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.0, 45.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-12 17:14:03', '2016-04-09 06:04:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.6, 40.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-19 11:03:02', '2016-06-22 07:15:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.9, 51.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-07 15:09:13', '2016-11-30 11:57:26'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.2, 49.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-07 23:03:06', '2016-07-14 14:31:12'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.6, 53.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-15 16:00:55', '2016-12-21 22:58:17'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.8, 54.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-29 16:47:45', '2016-05-04 13:44:07'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.6, 49.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-30 10:50:14', '2016-06-25 04:59:22'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.6, 50.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-09 16:45:26', '2016-12-25 10:32:41'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.7, 54.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-08 02:44:45', '2016-11-28 08:24:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.5, 53.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-09 20:04:15', '2016-08-27 10:09:45'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.2, 37.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-05 06:17:35', '2016-02-07 11:19:08'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.4, 48.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-31 15:08:58', '2016-10-21 20:58:17'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.5, 45.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-06 01:05:05', '2016-11-22 22:25:30'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.7, 52.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-07 16:03:48', '2016-12-06 18:59:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.7, 43.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-16 13:06:45', '2016-01-20 15:41:30'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.6, 37.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-01 05:01:25', '2016-11-10 03:29:26'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.2, 54.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-09 09:40:52', '2016-10-24 12:45:30'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.1, 39.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-17 13:31:43', '2016-03-24 20:21:48'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.8, 47.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-05 22:40:14', '2016-08-03 20:10:53'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.5, 48.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-10 14:07:33', '2016-08-05 20:54:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.4, 40.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-30 13:35:48', '2016-04-03 05:12:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.4, 37.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-04 08:19:18', '2015-12-08 14:20:17'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.8, 54.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-19 21:54:04', '2016-12-20 02:38:06'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.0, 48.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-22 00:46:07', '2016-05-22 04:35:39'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.8, 35.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-30 06:01:47', '2016-04-29 21:51:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.6, 52.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-21 15:21:58', '2016-07-04 20:12:15'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.2, 35.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-05 19:29:46', '2016-06-05 11:44:03'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.6, 50.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-25 12:03:24', '2016-10-06 08:07:34'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.1, 42.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-17 16:19:30', '2016-11-24 01:39:05'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.4, 51.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-03 22:07:38', '2016-08-02 03:42:57'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.4, 41.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-10 23:53:10', '2016-02-03 20:01:25'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.4, 49.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-25 02:43:37', '2016-05-06 11:07:12'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.3, 44.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-02 09:10:39', '2016-12-21 06:58:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.3, 46.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-17 18:36:23', '2015-11-19 22:44:49'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.5, 47.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-14 18:08:22', '2016-04-02 19:41:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.4, 42.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-24 04:10:56', '2016-07-08 00:39:35'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.0, 47.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-23 11:08:29', '2016-06-14 23:37:54'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.8, 46.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-30 09:53:04', '2016-08-28 19:15:25'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.8, 53.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-21 15:27:06', '2016-06-15 12:27:06'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.8, 42.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-16 17:39:38', '2015-11-22 19:11:31'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.9, 39.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-06 01:08:09', '2016-11-18 01:45:56'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.9, 54.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-26 22:57:03', '2016-09-08 13:11:23'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.1, 50.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-26 09:53:16', '2016-03-27 00:08:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.9, 38.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-02 11:22:34', '2016-10-09 19:07:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.6, 47.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-02 11:20:35', '2015-12-22 20:59:24'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.2, 38.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-01 04:33:16', '2015-12-27 00:29:13'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.2, 39.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-20 08:58:36', '2016-02-12 02:39:50'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.8, 42.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-28 14:29:39', '2016-08-06 12:37:24'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.9, 45.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-12 16:29:26', '2016-04-08 09:47:12'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.7, 40.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-29 15:52:41', '2016-07-13 01:28:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.3, 44.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-30 18:18:24', '2016-06-16 22:04:06'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.3, 52.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-17 22:25:40', '2016-07-22 19:50:13'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.8, 48.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-04 19:38:00', '2016-03-27 03:20:01'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.8, 46.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-13 18:05:04', '2015-12-29 02:07:18'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.1, 37.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-09 15:56:48', '2016-05-01 17:09:54'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.7, 38.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-14 21:38:48', '2016-12-23 16:51:23'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.5, 41.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-12 03:16:28', '2016-03-01 12:01:50'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.3, 51.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-11 09:09:37', '2016-10-12 10:34:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.8, 51.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-24 23:39:44', '2015-12-05 16:53:53'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.6, 44.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-08 18:00:35', '2016-04-06 04:05:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.8, 38.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-02 02:43:00', '2016-04-28 23:14:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.6, 53.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-09 14:47:19', '2016-09-18 02:58:12'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.6, 44.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-24 22:57:47', '2016-08-13 03:27:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.2, 38.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-06 03:54:37', '2016-11-09 18:28:27'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.5, 41.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-21 22:45:36', '2016-04-16 10:52:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.2, 50.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-16 15:56:33', '2016-05-09 13:19:30'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.6, 52.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-12 10:57:17', '2016-06-01 23:58:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.3, 47.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-07 00:09:10', '2015-11-29 08:27:45'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.4, 46.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-05 07:18:44', '2016-06-13 17:06:56'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.8, 52.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-18 10:41:20', '2016-10-27 22:14:13'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.9, 52.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-20 22:52:35', '2015-11-13 13:33:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.8, 46.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-13 21:14:03', '2016-06-24 11:09:51'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.0, 38.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-05 18:14:20', '2016-02-12 11:43:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.7, 47.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-04 07:18:56', '2016-05-26 14:35:56'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.8, 49.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-26 09:54:59', '2016-02-12 08:14:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.3, 45.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-31 10:31:04', '2015-12-26 10:13:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.2, 41.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-26 09:26:37', '2016-07-30 12:38:00'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.3, 44.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-20 16:03:45', '2016-01-01 07:46:29'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.3, 43.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-20 03:16:35', '2016-10-03 15:48:51'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.4, 48.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-01 10:35:21', '2016-12-17 10:02:10'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.3, 49.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-10 15:01:08', '2016-07-28 13:39:01'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.5, 43.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-22 17:47:55', '2016-04-11 11:47:21'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.2, 51.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-23 23:11:02', '2015-11-07 00:05:46'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.5, 52.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-13 04:42:00', '2016-06-19 02:25:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.4, 49.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-22 06:50:37', '2016-02-23 17:13:26'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.7, 44.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-26 09:16:45', '2015-12-12 15:48:32'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.5, 48.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-15 05:33:39', '2016-08-03 08:01:41'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.6, 37.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-05 04:09:02', '2016-03-07 10:55:47'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.5, 40.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-11 11:11:14', '2016-08-22 20:50:41'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.3, 37.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-27 10:50:45', '2016-06-23 08:49:29'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.7, 39.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-25 22:00:44', '2016-08-11 01:21:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.6, 45.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-16 12:20:01', '2016-03-02 22:22:26'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.6, 45.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-01 10:25:08', '2016-04-15 10:57:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.1, 41.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-03 03:46:27', '2016-06-09 20:40:50'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.4, 38.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-29 13:21:24', '2016-06-10 21:55:55'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.4, 44.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-17 03:32:49', '2016-03-28 20:04:48'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.5, 45.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-12 18:30:07', '2016-02-03 03:40:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.6, 44.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-23 04:32:45', '2015-11-11 13:46:53'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.6, 47.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-04 16:15:28', '2016-06-17 11:23:20'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.1, 39.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-09 14:02:50', '2016-05-06 13:21:02'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.2, 38.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-05 15:22:45', '2016-04-27 15:21:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.5, 45.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-24 20:35:20', '2016-12-08 15:51:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.3, 36.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-13 08:47:39', '2016-01-09 21:57:39'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.2, 38.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-22 20:44:34', '2016-06-12 22:36:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.0, 46.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-14 15:37:20', '2015-12-15 23:53:07'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.7, 46.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-24 07:39:46', '2016-03-10 06:02:05'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.6, 44.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-08 21:38:25', '2016-01-28 11:17:47'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.6, 43.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-29 14:00:30', '2015-12-18 20:10:11'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.7, 54.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-18 02:41:09', '2016-09-28 13:44:35'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.9, 55.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-26 13:53:06', '2016-01-18 18:34:25'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.3, 38.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-16 22:55:35', '2016-07-07 01:19:54'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.4, 40.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-21 12:33:07', '2015-12-01 11:09:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.4, 53.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-04 22:02:06', '2016-07-05 12:28:23'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.4, 36.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-23 03:04:25', '2016-11-29 13:06:32'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.0, 50.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-13 09:53:07', '2016-02-02 12:40:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.3, 46.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-15 12:58:40', '2016-09-25 08:56:16'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.9, 53.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-01 04:46:05', '2016-09-12 21:49:32'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.4, 35.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-01 16:08:49', '2016-07-13 01:46:31'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.6, 42.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-24 15:52:28', '2016-04-28 11:07:57'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.4, 41.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-13 21:11:02', '2016-01-11 17:08:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.0, 52.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-12 06:00:45', '2016-05-19 06:13:35'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.9, 48.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-14 22:56:29', '2016-05-22 03:08:31'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.5, 54.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-25 22:46:32', '2016-09-21 20:36:38'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.3, 46.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-11 04:57:09', '2016-01-07 00:00:02'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.1, 37.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-15 22:43:31', '2016-04-08 09:10:59'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.6, 55.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-27 20:44:27', '2015-12-14 12:33:14'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.8, 43.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-27 04:33:02', '2016-05-24 03:29:32'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.1, 48.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-04 16:27:03', '2016-06-29 03:52:38'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.9, 41.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-20 09:32:10', '2016-12-25 02:36:01'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.7, 46.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-05 17:11:20', '2015-12-23 12:52:29'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.8, 43.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-12 16:46:13', '2015-11-14 07:45:48'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.8, 41.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-15 12:32:22', '2016-11-14 04:19:28'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.1, 39.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-28 07:17:32', '2015-11-30 18:18:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.5, 49.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-04 09:11:04', '2016-06-03 09:15:18'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.0, 51.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-30 13:51:00', '2016-02-05 14:32:55'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.2, 49.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-10 16:59:27', '2016-03-09 14:30:26'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.3, 52.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-18 19:13:08', '2016-09-24 16:35:46'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.0, 52.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-23 10:58:29', '2016-02-24 22:04:24'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.8, 53.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-01 05:46:22', '2016-08-03 08:18:01'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.0, 54.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-26 08:05:46', '2016-09-17 09:08:08'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.7, 49.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-16 16:18:27', '2016-08-08 16:29:29'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.3, 38.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-18 12:12:07', '2016-10-17 08:52:18'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.3, 48.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-06 13:57:29', '2016-07-12 07:32:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.9, 45.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-19 00:02:00', '2016-08-08 10:54:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.3, 46.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-17 15:06:09', '2016-07-30 09:02:48'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.9, 38.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-10 19:07:37', '2016-05-27 16:48:20'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.8, 46.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-14 20:37:18', '2016-10-08 02:12:16'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.5, 50.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-03 01:41:27', '2016-12-26 06:11:53'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.9, 51.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-14 13:39:50', '2016-07-15 01:34:25'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.3, 44.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-18 14:16:18', '2016-05-29 16:05:51'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.5, 54.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-09 19:16:44', '2016-12-06 14:38:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.1, 36.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-08 03:53:29', '2016-05-10 18:44:43'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.6, 39.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-24 18:38:20', '2016-03-02 04:48:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.4, 52.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-01 12:20:47', '2016-11-14 04:35:56'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.9, 46.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-27 13:18:15', '2016-04-29 07:01:08'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.7, 35.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-15 16:55:09', '2016-01-06 22:20:38'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.1, 53.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-10 09:46:38', '2016-04-10 03:26:43'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.1, 37.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-22 01:18:38', '2016-03-25 20:18:07'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.0, 40.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-02 11:31:46', '2016-05-04 22:33:08'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.3, 47.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-04 16:48:26', '2016-09-30 06:34:52'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.5, 36.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-22 17:18:33', '2016-11-16 20:08:35'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.9, 40.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-21 16:41:11', '2016-05-16 15:41:17'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.1, 43.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-18 11:38:59', '2016-01-16 19:15:26'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.7, 45.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-16 23:06:29', '2016-04-21 14:55:06'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.9, 36.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-29 11:31:35', '2016-12-26 14:55:27'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.5, 37.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-17 20:21:02', '2016-01-11 19:51:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.6, 47.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-15 01:19:10', '2016-12-20 19:24:38'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.3, 46.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-12 08:30:42', '2016-07-20 16:18:45'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.0, 53.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-23 00:33:56', '2016-08-18 17:26:03'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.4, 53.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-01 15:41:09', '2015-11-10 04:36:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.1, 42.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-12 05:36:19', '2016-08-06 23:44:49'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.7, 35.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-03 19:00:34', '2016-06-08 19:06:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.6, 45.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-06 22:50:15', '2016-12-19 02:51:45'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.3, 45.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-12 21:31:03', '2016-07-09 16:56:56'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.7, 43.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-17 05:20:31', '2016-12-07 07:33:30'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.0, 50.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-19 07:52:20', '2016-08-11 18:22:02'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.7, 38.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-02 10:18:09', '2016-11-30 16:03:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.2, 36.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-12 09:42:47', '2016-01-13 15:02:53'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.6, 44.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-28 00:27:33', '2016-09-03 07:48:47'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.9, 47.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-17 09:17:01', '2016-11-27 19:59:47'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.6, 44.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-15 07:26:56', '2016-09-06 16:36:26'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.5, 44.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-12 05:09:31', '2016-11-06 18:35:09'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.2, 49.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-18 16:11:47', '2016-10-16 17:35:29'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.2, 45.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-24 01:05:20', '2016-07-28 05:39:34'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.1, 43.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-12 00:19:49', '2016-10-18 17:23:01'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.0, 39.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-02 20:08:59', '2016-02-11 22:25:03'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.6, 44.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-01 10:26:25', '2016-03-26 22:33:16'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.0, 35.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-26 03:17:08', '2016-06-05 09:24:08'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.4, 48.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-28 13:39:38', '2015-11-16 10:24:07'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.7, 50.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-09 01:33:51', '2016-11-15 23:09:18'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.0, 47.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-14 13:12:24', '2016-03-04 08:34:12'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (35.0, 45.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-10 04:12:31', '2016-03-27 04:42:50'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.6, 43.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-18 01:55:29', '2016-11-26 08:42:43'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.1, 39.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-16 07:24:28', '2016-03-08 16:11:00'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.1, 45.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-17 03:27:07', '2016-08-29 02:57:29'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.4, 42.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-28 12:38:21', '2016-04-15 21:39:32'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.1, 43.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-02 17:06:59', '2016-11-06 00:54:52'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.8, 35.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-04 13:49:16', '2016-02-11 01:48:57'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.3, 54.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-22 08:08:28', '2016-09-16 06:38:18'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.0, 43.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-21 13:24:26', '2016-10-04 18:46:43'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.9, 38.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-24 03:53:39', '2016-01-01 20:31:32'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.5, 45.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-05 12:36:48', '2016-12-10 15:05:11'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.9, 46.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-20 05:22:27', '2016-08-27 07:47:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.9, 39.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-21 03:42:52', '2016-05-30 08:35:53'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.1, 44.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-25 05:07:46', '2016-10-07 07:58:00'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.2, 37.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-19 03:00:46', '2016-03-29 17:42:13'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.5, 36.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-10 23:47:59', '2016-05-13 09:34:38'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.1, 40.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-19 11:34:57', '2016-08-08 11:32:17'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.7, 53.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-04 11:04:28', '2016-02-06 01:58:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.8, 44.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-10 02:37:33', '2016-07-10 14:40:07'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.0, 51.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-23 15:44:04', '2016-07-22 20:19:41'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.4, 37.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-10 21:15:10', '2016-11-23 12:14:51'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.1, 50.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-05 02:25:50', '2016-07-11 18:35:32'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.2, 51.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-02 09:40:44', '2016-04-26 04:47:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.0, 46.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-30 11:29:00', '2016-07-08 01:05:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.1, 47.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-05 10:22:16', '2016-02-26 12:59:09'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.3, 44.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-25 16:18:56', '2016-05-13 15:25:56'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.2, 36.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-18 00:22:52', '2016-04-17 07:30:53'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.4, 41.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-09 19:40:36', '2016-05-29 01:41:01'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.6, 38.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-17 16:40:59', '2016-01-10 00:12:54'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.6, 53.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-11 03:35:27', '2015-11-08 01:25:11'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.4, 51.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-04 17:13:22', '2016-08-14 10:58:10'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.1, 47.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-10 14:27:37', '2016-06-02 16:02:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.5, 51.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-21 10:47:05', '2015-12-16 12:06:02'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.0, 47.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-09 13:37:18', '2015-12-04 16:03:20'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.5, 42.1, 'B0:B4:48:C3:6C:05', '202481589565676', '1172.16.31.10', null, '2016-01-02 04:59:11', '2016-05-03 18:30:30'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.2, 53.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-26 02:16:55', '2016-07-26 20:43:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.1, 45.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-07 08:36:59', '2016-07-23 05:25:20'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.4, 46.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-27 05:37:41', '2016-11-04 13:31:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.7, 43.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-13 01:33:31', '2016-02-06 11:42:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.9, 44.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-16 22:30:56', '2016-05-09 23:13:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.2, 37.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-16 15:04:39', '2016-10-02 19:04:47'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.9, 40.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-17 10:07:53', '2016-11-19 00:34:31'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.1, 39.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-09 08:48:57', '2016-04-06 21:30:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.7, 50.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-12 17:46:07', '2016-06-05 06:55:21'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.1, 41.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-26 22:50:46', '2016-02-13 07:33:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.6, 36.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-17 10:35:07', '2016-04-06 21:05:54'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.3, 44.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-12 15:39:33', '2016-06-20 10:57:14'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.9, 38.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-24 04:09:08', '2016-04-01 18:43:00'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.4, 50.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-16 19:42:03', '2016-07-02 18:40:34'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.7, 37.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-09 09:14:32', '2015-12-14 07:35:21'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.4, 39.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-05 08:34:26', '2016-12-01 04:18:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.1, 35.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-20 10:17:10', '2016-06-20 04:31:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.5, 42.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-14 22:24:49', '2016-07-08 04:36:45'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.7, 44.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-11 06:36:55', '2016-03-15 04:18:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.6, 45.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-28 20:07:26', '2016-06-06 22:15:28'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.3, 47.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-12 09:55:13', '2016-11-06 11:15:47'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.6, 49.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-27 05:17:09', '2016-03-25 09:50:00'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.5, 51.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-05 08:27:26', '2016-04-03 16:40:12'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.7, 40.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-26 13:05:17', '2016-01-02 11:50:39'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.0, 35.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-10 20:08:34', '2015-12-19 09:56:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.9, 40.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-12 00:55:15', '2016-12-14 05:49:08'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.5, 52.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-03 00:29:57', '2016-09-15 09:08:45'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.7, 52.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-11 20:56:41', '2016-12-08 18:00:31'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.7, 54.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-23 19:25:35', '2016-02-08 11:23:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.3, 54.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-27 07:53:55', '2016-02-04 20:39:18'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.4, 36.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-23 16:19:59', '2016-06-25 09:41:08'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.1, 39.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-17 02:02:56', '2016-10-15 22:41:26'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.6, 49.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-13 22:10:19', '2016-02-17 23:35:51'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.2, 42.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-04 13:51:42', '2016-03-20 17:26:51'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.9, 41.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-10 09:06:12', '2016-11-13 08:42:15'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.9, 39.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-13 02:12:37', '2015-12-04 00:05:05'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.2, 54.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-05 15:44:29', '2015-12-16 07:09:25'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.4, 35.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-04 04:53:14', '2015-11-07 16:22:39'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.6, 54.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-29 04:23:09', '2016-09-30 11:29:05'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.1, 40.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-21 15:11:54', '2016-09-15 22:53:57'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.2, 52.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-06 08:31:29', '2016-11-04 19:03:48'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.7, 41.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-23 12:16:09', '2016-12-24 13:59:49'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.6, 51.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-27 01:04:19', '2015-12-09 12:04:26'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.0, 43.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-29 18:30:57', '2016-09-10 22:03:23'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.3, 48.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-23 20:46:17', '2016-02-25 07:50:23'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.6, 41.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-14 18:22:03', '2016-11-12 17:34:07'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.6, 44.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-26 12:59:40', '2016-09-27 17:27:51'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.2, 36.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-29 13:37:26', '2016-07-10 14:59:27'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.0, 47.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-22 02:08:41', '2016-02-10 13:11:12'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.3, 50.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-12 04:33:40', '2016-08-10 18:03:26'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (28.2, 53.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-18 02:25:35', '2016-05-14 02:19:26'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.2, 53.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-26 16:21:28', '2016-05-08 15:19:26'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.5, 45.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-08 19:20:33', '2015-11-01 00:30:56'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.5, 52.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-22 22:02:07', '2016-05-27 16:43:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.4, 54.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-14 14:39:25', '2016-08-16 16:54:17'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.9, 44.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-29 13:53:29', '2016-08-21 09:46:38'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.8, 40.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-20 01:43:34', '2016-06-26 05:15:29'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.9, 35.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-23 06:53:15', '2016-12-05 18:48:14'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.4, 47.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-18 23:14:36', '2016-07-09 01:09:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.1, 39.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-15 23:28:23', '2016-01-20 00:49:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.7, 49.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-18 15:46:30', '2016-11-23 10:46:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.5, 39.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-01 15:17:34', '2016-11-08 02:38:45'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.6, 47.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-12 05:29:29', '2015-11-29 03:54:50'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.4, 45.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-04 20:54:53', '2016-11-14 05:24:41'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.4, 36.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-21 17:16:01', '2016-09-01 02:49:13'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.6, 40.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-23 13:33:23', '2016-12-08 12:35:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.4, 42.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-06 09:01:42', '2016-02-04 19:29:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.1, 52.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-13 15:29:48', '2015-11-13 14:57:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.0, 45.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-03 19:39:06', '2016-03-10 14:39:04'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.6, 36.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-27 13:40:43', '2016-07-02 07:58:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.7, 53.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-28 00:48:07', '2016-08-20 17:04:41'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (22.6, 37.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-19 20:00:39', '2016-09-25 23:56:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.3, 35.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-17 06:38:48', '2016-06-05 20:00:31'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.2, 46.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-22 05:04:39', '2016-06-18 12:32:15'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.0, 52.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-09 00:21:29', '2016-12-25 05:00:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (30.1, 45.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-15 17:04:01', '2016-12-18 10:30:42'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.8, 49.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-09 07:55:28', '2016-08-31 03:47:18'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.7, 38.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-27 08:45:44', '2015-11-19 21:42:37'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.8, 40.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-06 16:43:04', '2016-10-14 01:14:28'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.4, 36.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-17 03:43:28', '2016-06-04 01:28:57'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.7, 41.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-28 08:48:54', '2016-07-28 05:21:38'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.8, 46.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-18 23:40:48', '2015-12-04 11:18:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.8, 47.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-17 01:43:24', '2016-11-12 05:16:47'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.6, 48.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-07 03:52:06', '2016-07-22 04:46:43'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.0, 51.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-23 05:12:00', '2016-03-23 06:05:01'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.8, 41.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-01 09:57:57', '2016-10-31 10:32:25'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.9, 47.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-02 16:37:05', '2016-08-10 14:12:00'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (19.2, 43.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-22 19:47:24', '2016-05-20 01:23:59'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.0, 48.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-29 06:29:27', '2016-07-05 22:46:07'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (18.7, 41.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-01 15:05:07', '2016-07-23 07:23:46'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.2, 49.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-13 04:14:24', '2016-03-12 08:57:01'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.7, 41.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-15 06:01:12', '2015-11-27 07:43:03'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.4, 38.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-11 06:20:29', '2016-03-23 07:00:58'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.5, 45.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-14 13:08:17', '2016-01-04 18:53:32'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.4, 53.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-29 11:33:24', '2016-11-03 04:56:34'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.7, 54.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-15 08:08:39', '2016-03-12 06:35:36'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.3, 46.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-08-03 18:43:22', '2015-11-01 13:34:48'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.9, 37.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-08 18:21:32', '2016-01-27 19:48:05'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.3, 54.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-31 21:17:10', '2015-11-22 00:49:41'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (31.3, 50.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-11 22:48:01', '2016-03-20 20:35:23'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.6, 51.8, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-12 23:57:07', '2016-05-28 18:57:33'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.8, 46.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-25 19:32:17', '2016-01-01 18:56:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.0, 41.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-28 13:21:31', '2016-01-09 18:45:08'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.5, 39.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-04-02 03:30:43', '2016-01-10 13:06:43'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.2, 43.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-23 23:30:10', '2016-03-24 23:43:29'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.5, 53.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-20 20:06:42', '2016-01-12 21:19:43'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (24.2, 52.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-12-21 20:06:20', '2016-03-10 03:38:15'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (27.6, 47.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-16 07:40:52', '2015-12-29 19:30:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (17.1, 37.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-25 17:03:47', '2016-05-02 01:57:12'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.0, 53.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-08 16:25:34', '2016-11-09 01:08:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.2, 36.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-03 11:11:43', '2016-08-25 17:19:03'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (20.6, 42.6, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-07-06 07:58:23', '2016-01-05 03:27:31'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (15.3, 38.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-03-03 16:51:53', '2016-12-17 02:54:35'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.4, 52.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-28 09:42:08', '2016-08-02 12:56:57'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (16.0, 38.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-12-20 19:22:49', '2016-05-12 06:39:20'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (29.7, 47.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-11-02 10:14:16', '2016-04-06 01:20:14'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (33.4, 52.9, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2015-11-16 00:21:35', '2015-11-17 10:23:40'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (23.5, 48.2, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-01-08 10:49:23', '2015-12-26 06:21:44'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (21.9, 52.1, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-25 07:48:15', '2016-04-28 02:45:01'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.6, 50.5, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-06-30 08:44:44', '2016-09-15 20:30:23'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (32.7, 49.0, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-05-15 12:06:41', '2016-08-23 03:11:19'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (26.0, 47.3, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-09-15 08:14:39', '2016-03-02 10:18:05'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (25.6, 46.7, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-10-18 07:55:49', '2016-05-25 14:31:08'); insert into temps (temp, air, device, rasp_mac, local_ip, remember_token, created_at, updated_at) values (34.3, 39.4, 'B0:B4:48:C3:6C:05', '202481589565676', '192.168.2.3', null, '2016-02-25 13:45:23', '2016-05-07 13:12:29');
<filename>SOFTTEK/softtek.scms.net/SOFTTEK.SCMS.DB/Tables/TBL_FAM_NOVELTY.sql CREATE TABLE [dbo].[TBL_FAM_NOVELTY] ( [nvlrqs_id_Pk] BIGINT IDENTITY NOT NULL PRIMARY KEY, [nvlrqs_number] VARCHAR(MAX) NOT NULL, [nvlrqs_request_Fk] BIGINT NOT NULL, [nvlrqs_informed_Fk] INT NOT NULL, [nvlrqs_responsible_Fk] INT NOT NULL, [nvlrqs_accountable_Fk] INT NOT NULL, [nvlrqs_external_identifier] NVARCHAR(50) NOT NULL, [nvlrqs_details] NVARCHAR(500) NOT NULL, [nvlrqs_type_Fk] BIGINT NOT NULL, [nvlrqs_topic] NVARCHAR(50) NOT NULL, [nvlrqs_registered_at] DATETIME NOT NULL DEFAULT GETDATE(), [nvlrqs_created_by] NVARCHAR(20) NOT NULL, [nvlrqs_updated_at] DATETIME NULL, [nvlrqs_modified_by] NVARCHAR(20) NULL, [nvlrqs_status] NVARCHAR(10) NOT NULL, [nvlrqs_comments] NVARCHAR(500) NOT NULL, CONSTRAINT [FK_TBL_FAM_NOVELTY_TBL_FAM_REQUEST_id] FOREIGN KEY ([nvlrqs_request_Fk]) REFERENCES [TBL_FAM_REQUEST]([rqs_id_Pk]), CONSTRAINT [FK_TBL_FAM_NOVELTY_TBL_SRA_EMPLOYEE_APP] FOREIGN KEY ([nvlrqs_informed_Fk]) REFERENCES [TBL_SRA_EMPLOYEE]([id]), CONSTRAINT [FK_TBL_FAM_NOVELTY_TBL_SRA_EMPLOYEE_RES] FOREIGN KEY ([nvlrqs_responsible_Fk]) REFERENCES [TBL_SRA_EMPLOYEE]([id]), CONSTRAINT [FK_TBL_FAM_NOVELTY_TBL_SRA_EMPLOYEE_ACC] FOREIGN KEY ([nvlrqs_accountable_Fk]) REFERENCES [TBL_SRA_EMPLOYEE]([id]) )
DROP VIEW likes_count;
<reponame>beto20/Inventario-laravel<filename>dbinventario.sql -- phpMyAdmin SQL Dump -- version 5.0.1 -- https://www.phpmyadmin.net/ -- -- Servidor: 127.0.0.1 -- Tiempo de generación: 08-06-2020 a las 08:32:33 -- Versión del servidor: 10.4.11-MariaDB -- Versión de PHP: 7.4.1 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Base de datos: `dbinventario` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `articulos` -- CREATE TABLE `articulos` ( `id` int(20) NOT NULL, `user_id` int(20) NOT NULL, `inventario_id` int(20) NOT NULL, `nombre` varchar(255) DEFAULT NULL, `categoria` varchar(255) DEFAULT NULL, `descripcion` text DEFAULT NULL, `cantidad` int(11) DEFAULT NULL, `tipo` varchar(255) DEFAULT NULL, `imagen` varchar(255) DEFAULT NULL, `stock_max` int(11) DEFAULT NULL, `stock_min` int(11) DEFAULT NULL, `p_venta` decimal(10,0) DEFAULT NULL, `costo` decimal(10,0) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Volcado de datos para la tabla `articulos` -- INSERT INTO `articulos` (`id`, `user_id`, `proveedor_id`, `inventario_id`, `nombre`, `categoria`, `descripcion`, `cantidad`, `tipo`, `imagen`, `stock_max`, `stock_min`, `p_venta`, `costo`, `created_at`, `updated_at`) VALUES (6, 1, 1, 1, 'Detergente', 'Limpieza', 'Detergente solo de uso industrial', 6, 'galones 3L', 'detergente.jpg', 34, 22, '45', '25', '2020-06-03 06:38:04', '2020-06-03 06:38:04'), (7, 1, 1, 1, 'Limpia piso', 'Limpieza', 'Distribucion comercial, marca Sapolio', 6, 'galones 3L', 'sapolio_pino.jpg', 34, 10, '35', '24', '2020-06-03 15:43:19', '2020-06-03 15:43:19'), (8, 1, 2, 2, 'Guantes de latex', 'Cuidado personal', 'Guantes de latex talla s', 25, 'Paquetes de 50 unidades', 'guantes.jpg', 30, 20, '35', '15', '2020-06-03 15:45:17', '2020-06-03 15:45:17'), (9, 1, 2, 2, 'Cepillo de dientes electrico', 'Cuidado personal', 'Cepillo electrico marca Oral-b', 3, 'Unidades', 'cepillo_electrico.jpg', 25, 5, '25', '20', '2020-06-03 15:47:50', '2020-06-03 15:47:50'), (10, 1, 1, 1, 'Shampoo', 'Cuidado personal', 'Shampoo para niños marca Johnson', 12, 'Botellas de 400ml', 'shampoo.jpg', 30, 10, '7', '3', '2020-06-03 15:49:50', '2020-06-03 15:49:50'), (11, 1, 1, 1, 'Jabon para ropa', 'Limpieza', 'Jabon para ropa marca Bolivar', 4, 'Unidades', 'jabonbolivar.jpg', 34, 10, '4', '10', '2020-06-03 15:52:06', '2020-06-08 06:29:25'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `inventarios` -- CREATE TABLE `inventarios` ( `id` int(20) NOT NULL, `user_id` int(20) NOT NULL, `nombre` varchar(250) DEFAULT NULL, `descripcion` text DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Volcado de datos para la tabla `inventarios` -- INSERT INTO `inventarios` (`id`, `user_id`, `nombre`, `descripcion`, `created_at`, `updated_at`) VALUES (1, 1, 'inventario para PepitosClean', 'Inventario solo para productos del proveedor PepitosClean', NULL, NULL), (2, 1, 'inventario para Abarrotes Carla', 'Inventario solo para abarrotes de la empresa de Carla', NULL, NULL); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Volcado de datos para la tabla `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (10, '2014_10_12_000000_create_users_table', 1), (11, '2014_10_12_100000_create_password_resets_table', 1), (12, '2019_08_19_000000_create_failed_jobs_table', 1); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `proveedores` -- CREATE TABLE `proveedores` ( `id` int(20) NOT NULL, `user_id` int(20) NOT NULL, `nom_empresa` varchar(250) DEFAULT NULL, `rubro` varchar(30) DEFAULT NULL, `descripcion` text DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Volcado de datos para la tabla `proveedores` -- INSERT INTO `proveedores` (`id`, `user_id`, `nom_empresa`, `rubro`, `descripcion`, `created_at`, `updated_at`) VALUES (1, 1, 'PepitoClean', 'Limpieza', NULL, NULL, NULL), (2, 1, '<NAME>', 'A<PASSWORD>', NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `users` -- CREATE TABLE `users` ( `id` int(20) NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `empresa` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Volcado de datos para la tabla `users` -- INSERT INTO `users` (`id`, `name`, `email`, `empresa`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES (1, '<NAME>', '<EMAIL>', 'Pepito limpieza', NULL, '<EMAIL>', NULL, '2020-06-02 03:30:32', '2020-06-02 03:30:32'), (2, '<NAME>', '<EMAIL>', 'J<NAME>', NULL, '123', NULL, '2020-06-02 07:07:31', '2020-06-02 07:07:31'), (3, 'asdasdvelasquez', '<EMAIL>', 'asdasd', NULL, '123', NULL, '2020-06-02 13:39:29', '2020-06-02 13:39:29'), (4, '<NAME>', '<EMAIL>', 'Juan SAC', NULL, '123', NULL, '2020-06-03 08:31:57', '2020-06-03 08:31:57'); -- -- Índices para tablas volcadas -- -- -- Indices de la tabla `articulos` -- ALTER TABLE `articulos` ADD PRIMARY KEY (`id`), ADD KEY `fk_articulos_users` (`user_id`), ADD KEY `fk_articulos_inventarios` (`inventario_id`); -- -- Indices de la tabla `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indices de la tabla `inventarios` -- ALTER TABLE `inventarios` ADD PRIMARY KEY (`id`), ADD KEY `fk_inventarios_users` (`user_id`); -- -- Indices de la tabla `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indices de la tabla `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indices de la tabla `proveedores` -- ALTER TABLE `proveedores` ADD PRIMARY KEY (`id`), ADD KEY `fk_proveedores_users` (`user_id`); -- -- Indices de la tabla `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- AUTO_INCREMENT de las tablas volcadas -- -- -- AUTO_INCREMENT de la tabla `articulos` -- ALTER TABLE `articulos` MODIFY `id` int(20) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT de la tabla `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT de la tabla `inventarios` -- ALTER TABLE `inventarios` MODIFY `id` int(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT de la tabla `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT de la tabla `proveedores` -- ALTER TABLE `proveedores` MODIFY `id` int(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT de la tabla `users` -- ALTER TABLE `users` MODIFY `id` int(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- Restricciones para tablas volcadas -- -- -- Filtros para la tabla `articulos` -- ALTER TABLE `articulos` ADD CONSTRAINT `fk_articulos_inventarios` FOREIGN KEY (`inventario_id`) REFERENCES `inventarios` (`id`), ADD CONSTRAINT `fk_articulos_users` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`); -- -- Filtros para la tabla `inventarios` -- ALTER TABLE `inventarios` ADD CONSTRAINT `fk_inventarios_users` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`); -- -- Filtros para la tabla `proveedores` -- ALTER TABLE `proveedores` ADD CONSTRAINT `fk_proveedores_users` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`); COMMIT; /*!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 */; CREATE TABLE soporte ( id INT(20) AUTO_INCREMENT NOT NULL, user_id int(20) not null, telefono VARCHAR(9) NOT NULL, descripcion text NOT NULL, created_at datetime, updated_at datetime, CONSTRAINT pk_soporte PRIMARY KEY(id), CONSTRAINT fk_soporte_users FOREIGN KEY (user_id) REFERENCES users(id) )ENGINE=INNODB insert into `articulos` (`user_id`, `inventario_id`, `nombre`, `categoria`, `descripcion`, `cantidad`, `tipo`, `stock_max`, `stock_min`, `p_venta`, `costo`, `imagen`, `updated_at`, `created_at`) values (6, 6, 'Pistas de carritos', 'Juguetes', 'Juguete para niños de 5 a 10 años', 10, 'cajas', 25, 15, 45, 25, 'pista_Carro.jpg', '2020-06-12 06:52:06', '2020-06-12 06:52:06')
<filename>oracle/log_archive_sequenctial.sql --归档日志是否连续,如果有值输出,则不连续 select * from (select recid, sequence#, first_change#, next_change#, next_change#-lead(first_change#, 1, next_change#) over(order by sequence#) diff from v$archived_log where dest_id=1) where diff>0;
<filename>Database-Basics-MS-SQL/01. Data Definition and Datatypes/12. Set Unique Field.sql ALTER TABLE Users DROP CONSTRAINT PK_Users GO ALTER TABLE Users ADD PRIMARY KEY (Id) GO ALTER TABLE Users ADD CONSTRAINT UQ_Username UNIQUE (Username) GO ALTER TABLE Users ADD CONSTRAINT CHK_Username CHECK (LEN(Username) > 2) GO
TRUNCATE TABLE QRTZ_FIRED_TRIGGERS; TRUNCATE TABLE QRTZ_PAUSED_TRIGGER_GRPS; TRUNCATE TABLE QRTZ_SCHEDULER_STATE; TRUNCATE TABLE QRTZ_LOCKS; TRUNCATE TABLE QRTZ_SIMPLE_TRIGGERS; TRUNCATE TABLE QRTZ_SIMPROP_TRIGGERS; TRUNCATE TABLE QRTZ_CRON_TRIGGERS; TRUNCATE TABLE QRTZ_BLOB_TRIGGERS; TRUNCATE TABLE QRTZ_CALENDARS; DELETE FROM QRTZ_TRIGGERS; DELETE FROM QRTZ_JOB_DETAILS; TRUNCATE TABLE t_sched_job; TRUNCATE TABLE t_sched_log;
ALTER TABLE TRADEREQUESTS ADD OFFEREDCOLLECTIONID varchar(64)
CREATE TABLE [PayrollHours] ( [PayrollHoursId] INT NOT NULL IDENTITY (1,1), [RpioCode] NVARCHAR(255) DEFAULT ('NS'), [PayPeriod] NVARCHAR(255) DEFAULT ('NS'), [StartDate] NVARCHAR(255) DEFAULT ('NS'), [EndDate] NVARCHAR(255) DEFAULT ('NS'), [EmployeeNumber] NVARCHAR(255) DEFAULT ('NS'), [EmployeeFirstName] NVARCHAR(255) DEFAULT ('NS'), [EmployeeLastName] NVARCHAR(255) DEFAULT ('NS'), [Date] NVARCHAR(255) DEFAULT ('NS'), [HumanResourceOrganizationCode] NVARCHAR(255) DEFAULT ('NS'), [HumanResourceOrganizationName] NVARCHAR(255) DEFAULT ('NS'), [ReportingCode] NVARCHAR(255) DEFAULT ('NS'), [ReportingCodeName] NVARCHAR(255) DEFAULT ('NS'), [WorkCode] NVARCHAR(255) DEFAULT ('NS'), [Hours] FLOAT DEFAULT ('0.0') );
<filename>iot.solution.database/dbo/Stored Procedures/DeviceMaintenance_Get.sql /******************************************************************* DECLARE @count INT ,@output INT = 0 ,@fieldName nvarchar(255) EXEC [dbo].[DeviceMaintenance_Get] @guid = 'E9F77DD4-78BC-4461-9D00-64D927998ABE' ,@currentDate = '2020-05-21 06:47:56.890' ,@invokingUser = '7D31E738-5E24-4EA2-AAEF-47BB0F3CCD41' ,@version = 'v1' ,@output = @output OUTPUT ,@fieldName = @fieldName OUTPUT SELECT @output status, @fieldName AS fieldName 001 SL-4 12-05-2020 [<NAME>] Added Initial Version to Get Device Maintenance Information *******************************************************************/ CREATE PROCEDURE [dbo].[DeviceMaintenance_Get] ( @guid UNIQUEIDENTIFIER ,@currentDate DATETIME = NULL ,@invokingUser UNIQUEIDENTIFIER ,@version NVARCHAR(10) ,@output SMALLINT OUTPUT ,@fieldName NVARCHAR(255) OUTPUT ,@culture NVARCHAR(10) = 'en-Us' ,@enableDebugInfo CHAR(1) = '0' ) AS BEGIN SET NOCOUNT ON DECLARE @orderBy VARCHAR(10) IF (@enableDebugInfo = 1) BEGIN DECLARE @Param XML SELECT @Param = ( SELECT 'DeviceMaintenance_Get' AS '@procName' , CONVERT(nvarchar(MAX),@guid) AS '@guid' , CONVERT(VARCHAR(50),@currentDate) as '@currentDate' , CONVERT(nvarchar(MAX),@invokingUser) AS '@invokingUser' , CONVERT(nvarchar(MAX),@version) AS '@version' , CONVERT(nvarchar(MAX),@output) AS '@output' , CONVERT(nvarchar(MAX),@fieldName) AS '@fieldName' FOR XML PATH('Params') ) INSERT INTO DebugInfo(data, dt) VALUES(Convert(nvarchar(MAX), @Param), GETUTCDATE()) END Set @output = 1 SET @fieldName = 'Success' BEGIN TRY SELECT DM.[guid] , DM.[companyGuid] ,EP.[guid] as [buildingGuid] , DM.[entityGuid] , DM.[DeviceGuid] , E.[name] AS [DeviceName] , EP.[name] AS [building] , G.[name] AS [zone] , DM.[description] , CASE WHEN @currentDate >= [startDateTime] AND @currentDate <= [endDateTime] THEN 'Under Maintenance' ELSE CASE WHEN [startDateTime] < @currentDate AND [endDateTime] < @currentDate THEN 'Completed' ELSE 'Scheduled' END END AS [status] , DM.[startDateTime] AS [startDateTime] , DM.[endDateTime] AS [endDateTime] , DM.[createdDate] FROM [dbo].[DeviceMaintenance] DM (NOLOCK) INNER JOIN [dbo].[Device] E WITH (NOLOCK) ON DM.[DeviceGuid] = E.[guid] AND E.[isDeleted] = 0 INNER JOIN [dbo].[Entity] G WITH (NOLOCK) ON DM.[entityGuid] = G.[guid] AND G.[isDeleted] = 0 LEFT JOIN [dbo].[Entity] EP WITH (NOLOCK) ON G.[parentEntityGuid] = EP.[guid] AND EP.[isDeleted] = 0 WHERE DM.[guid]=@guid AND DM.[isDeleted]=0 END TRY BEGIN CATCH DECLARE @errorReturnMessage nvarchar(MAX) SET @output = 0 SELECT @errorReturnMessage = ISNULL(@errorReturnMessage, '') + SPACE(1) + 'ErrorNumber:' + ISNULL(CAST(ERROR_NUMBER() as nvarchar), '') + 'ErrorSeverity:' + ISNULL(CAST(ERROR_SEVERITY() as nvarchar), '') + 'ErrorState:' + ISNULL(CAST(ERROR_STATE() as nvarchar), '') + 'ErrorLine:' + ISNULL(CAST(ERROR_LINE () as nvarchar), '') + 'ErrorProcedure:' + ISNULL(CAST(ERROR_PROCEDURE() as nvarchar), '') + 'ErrorMessage:' + ISNULL(CAST(ERROR_MESSAGE() as nvarchar(max)), '') RAISERROR (@errorReturnMessage, 11, 1) IF (XACT_STATE()) = -1 BEGIN ROLLBACK TRANSACTION END IF (XACT_STATE()) = 1 BEGIN ROLLBACK TRANSACTION END RAISERROR (@errorReturnMessage, 11, 1) END CATCH END
<filename>src/TrafficPark.Builder.Database/Core/Tables/Constant.sql CREATE TABLE [TrafficPark].[Constant] ( [Id] INT NOT NULL PRIMARY KEY, [Value] NCHAR(10) NULL )
<filename>data/open-source/extracted_sql/gabrielfalcao_lettuce.sql<gh_stars>1-10 SELECT id, first_name, dob FROM raw_query_author SELECT COUNT(*) FROM blog_entry WHERE blog_entry.blog_id = blog_blog.id) AS entry_count FROM blog_blog; SELECT ST_Area(poly) FROM distapp_southtexaszipcode; SELECT COUNT(*) FROM %s SELECT * FROM blog_entry WHERE id IN (3, 4, 5, 20); SELECT cache_key, value, expires FROM %s WHERE cache_key = %%s SELECT * FROM raw_query_friendlyauthor SELECT TABLE_NAME FROM USER_TABLES SELECT * FROM raw_query_book INSERT INTO ltext VALUES (%s) CREATE TABLE django_ixn_real_test_table (number REAL) CREATE TABLE django_ixn_test_table (id INTEGER) UPDATE pg_database SET datistemplate=true WHERE datname=template_postgis SELECT cache_key FROM %s ORDER BY cache_key LIMIT 1 OFFSET %%s CREATE TABLE STDDEV_TEST (X INT) SELECT ST_GeoHash(point) FROM geoapp_city WHERE name='Houston'; SELECT * FROM raw_query_reviewer SELECT * FROM %s WHERE ROWNUM < 2 SELECT cache_key, expires FROM %s WHERE cache_key = %%s SELECT foo FROM bar WHERE baz = %s CREATE TABLE INTROSPECT_TEST (X INT) SELECT * FROM raw_query_coffee SELECT 1 FROM DUAL WHERE DUMMY %s SELECT ST_extent(point) FROM geoapp_city WHERE (name='Houston' or name='Dallas'); CREATE TABLE ROLLBACK_TEST (X INT) SELECT ST_Length3D(line) FROM geo3d_interstateproj3d; SELECT ST_Area(poly) FROM geogapp_zipcode WHERE code='77002'; CREATE TABLE ROLLBACK_TEST (X INT) SELECT ST_Extent3D(point) FROM geo3d_city3d; SELECT sql FROM sqlite_master WHERE tbl_name = %s None SELECT %s FROM raw_query_author None SELECT first_name, dob FROM raw_query_author SELECT * FROM raw_query_author ORDER BY id ASC None SELECT * FROM raw_query_author WHERE first_name = %s SELECT * FROM raw_query_author SELECT cache_key FROM %s WHERE cache_key = %%s and expires > %%s INSERT INTO ltext VALUES (%s) SELECT * FROM blog_entry WHERE pub_date <= '2006-01-01'; SELECT sql FROM sqlite_master WHERE tbl_name = %s AND type = %s", [table_name, "table SELECT * FROM %s LIMIT 1 UPDATE raw_query_author SET first_name=thing WHERE first_name=Joe SELECT ST_Length(line) FROM geo3d_interstateproj2d; UPDATE bar SET foo = 1 WHERE baz = %s
<reponame>Fenoman/ms_sql_to_postgres_converter<gh_stars>1-10 CREATE OR REPLACE FUNCTION checksum(string VARCHAR(4000)) RETURNS int AS $$ -- ============================================= -- Author: e-pavlichenko -- Create date: 20.05.2018 -- Alter date: 20.05.2018 -- Description: Вычисление контрольной суммы аналолично как мы делали в MS SQL -- ============================================= BEGIN RETURN ('x'||substr(md5(string),1,8))::bit(32)::int; END $$LANGUAGE plpgsql IMMUTABLE STRICT;
<gh_stars>1-10 INSERT INTO ACCOUNT(NUMBER, CREDIT) VALUES (123, 5555.87); INSERT INTO ACCOUNT(NUMBER, CREDIT) VALUES (345, 2555.87); INSERT INTO ACCOUNT(NUMBER, CREDIT) VALUES (1231, 5555.87); INSERT INTO ACCOUNT(NUMBER, CREDIT) VALUES (3451, 2555.87); INSERT INTO ACCOUNT(NUMBER, CREDIT) VALUES (2231, 5555.87); INSERT INTO ACCOUNT(NUMBER, CREDIT) VALUES (4451, 2555.87); INSERT INTO ACCOUNT(NUMBER, CREDIT) VALUES (3231, 5555.87); INSERT INTO ACCOUNT(NUMBER, CREDIT) VALUES (5451, 2555.87);
<gh_stars>10-100 CREATE TABLE subdivision_IN (id VARCHAR(6) NOT NULL, name VARCHAR(255), level VARCHAR(64) NOT NULL, PRIMARY KEY(id)); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-AN', 'Andamany a Nikobary', 'union territory'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-AP', 'Ándhrapradéš', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-AR', 'Arunáčalpradéš', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-AS', 'Ásam', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-BR', 'Bihár', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-CH', 'Čandígarh', 'union territory'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-CT', 'Čatísgarh', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-DN', 'Dádra a Nagar Havelí', 'union territory'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-DD', 'Daman a Diú', 'union territory'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-DL', 'Dillí', 'union territory'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-GA', 'Goa', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-GJ', 'Gudžarát', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-HR', 'Harijána', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-HP', 'Himáčalpradéš', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-JK', 'Džammú a Kašmír', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-JH', 'Džharkhand', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-KA', 'Karnátaka', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-KL', 'Kérala', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-LD', 'Lakadivy', 'union territory'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-MP', 'Madhjapradéš', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-MH', 'Maháraštra', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-MN', 'Manípur', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-ML', 'Meghálaj', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-MZ', 'Mizorám', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-NL', 'Nágsko', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-OR', 'Urísa', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-PY', 'Puttučéri', 'union territory'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-PB', 'Pandžáb', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-RJ', 'Radžastan', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-SK', 'Sikkim', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-TN', 'Tamilnádu', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-TR', 'Tripura', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-UP', 'Uttarpradéš', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-UT', 'Uttarákhand', 'state'); INSERT INTO "subdivision_IN" ("id", "name", "level") VALUES ('IN-WB', 'Západné Bengálsko', 'state');
/* Navicat SQLite Data Transfer Source Server : avmoo Source Server Version : 30714 Source Host : :0 Target Server Type : SQLite Target Server Version : 30714 File Encoding : 65001 Date: 2018-11-18 00:28:27 */ PRAGMA foreign_keys = OFF; -- ---------------------------- -- Table structure for av_163sub -- ---------------------------- DROP TABLE IF EXISTS "main"."av_163sub"; CREATE TABLE "av_163sub" ( "sub_id" TEXT NOT NULL, "av_id" TEXT, "sub_time" TEXT(20), PRIMARY KEY ("sub_id" ASC) ); -- ---------------------------- -- Table structure for av_163sub_log -- ---------------------------- DROP TABLE IF EXISTS "main"."av_163sub_log"; CREATE TABLE "av_163sub_log" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "sub_keyword" TEXT, "run_time" TEXT, "data_count" INTEGER, "insert_count" INTEGER ); -- ---------------------------- -- Table structure for av_error_linkid -- ---------------------------- DROP TABLE IF EXISTS "main"."av_error_linkid"; CREATE TABLE "av_error_linkid" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT, "linkid" TEXT(4) NOT NULL, "status_code" INTEGER, "datetime" TEXT(50) ); -- ---------------------------- -- Table structure for av_genre -- ---------------------------- DROP TABLE IF EXISTS "main"."av_genre"; CREATE TABLE "av_genre" ( "id" TEXT NOT NULL, "name" TEXT, "title" TEXT, PRIMARY KEY ("id") ); -- ---------------------------- -- Table structure for av_like -- ---------------------------- DROP TABLE IF EXISTS "main"."av_like"; CREATE TABLE "av_like" ( "type" TEXT(20) NOT NULL, "val" TEXT(300) NOT NULL, "time" TEXT(50), PRIMARY KEY ("type" ASC, "val" ASC) ); -- ---------------------------- -- Table structure for av_list -- ---------------------------- DROP TABLE IF EXISTS "main"."av_list"; CREATE TABLE "av_list" ( "id" INTEGER, "linkid" TEXT(10) NOT NULL, "title" TEXT(500), "av_id" TEXT(50), "release_date" TEXT(20), "len" TEXT(20), "director" TEXT(100), "studio" TEXT(100), "label" TEXT(100), "series" TEXT(200), "genre" TEXT(200), "stars" TEXT(300), "director_url" TEXT(10), "studio_url" TEXT(10), "label_url" TEXT(10), "series_url" TEXT(10), "stars_url" TEXT(300), "bigimage" TEXT(200), "image_len" INTEGER, PRIMARY KEY ("linkid" ASC) ); -- ---------------------------- -- Table structure for av_stars -- ---------------------------- DROP TABLE IF EXISTS "main"."av_stars"; CREATE TABLE "av_stars" ( "id" INTEGER NOT NULL, "linkid" TEXT(4), "name" TEXT(50), "name_history" TEXT(50), "birthday" TEXT(12), "height" TEXT(10), "cup" TEXT(10), "bust" TEXT(10), "waist" TEXT(10), "hips" TEXT(10), "hometown" TEXT(50), "hobby" TEXT(50), "headimg" TEXT(200), PRIMARY KEY ("id" ASC) ); -- ---------------------------- -- Table structure for sqlite_sequence -- ---------------------------- DROP TABLE IF EXISTS "main"."sqlite_sequence"; CREATE TABLE sqlite_sequence(name,seq); -- ---------------------------- -- Indexes structure for table av_list -- ---------------------------- CREATE INDEX "main"."av_list__av_id_DESC" ON "av_list" ("av_id" DESC); CREATE INDEX "main"."av_list__id_DESC" ON "av_list" ("id" DESC);
USE [WideWorldImporters] GO SET STATISTICS XML ON GO SELECT COUNT(*) FROM Sales.Invoices WITH (INDEX=1) GO
Use Master Go IF EXISTS (SELECT * FROM master..sysdatabases WHERE name = N'ContosoHr') DROP DATABASE ContosoHR GO
CREATE TABLE b_ui_entity_editor_config ( ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, CATEGORY VARCHAR(20) NOT NULL, ENTITY_TYPE_ID VARCHAR(60) NOT NULL, NAME VARCHAR(100) NOT NULL, CONFIG TEXT NOT NULL, COMMON VARCHAR(1) NOT NULL, PRIMARY KEY (ID), INDEX ENTITY_TYPE_ID (ENTITY_TYPE_ID), INDEX CATEGORY (CATEGORY) ); CREATE TABLE b_ui_entity_editor_config_ac ( ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, ACCESS_CODE VARCHAR(10) NOT NULL, CONFIG_ID INTEGER(10) NOT NULL, PRIMARY KEY (ID), INDEX ACCESS_CODE (ACCESS_CODE), INDEX CONFIG_ID (CONFIG_ID) );
CREATE or replace TABLE "MARKETING"."EXPERIAN"."BLOCK_LEVEL_DATA" ( "STATE_CODE" VARCHAR, "COUNTY_CODE" VARCHAR, "CENSUS_2010_TRACT_AND_BLOCK_GROUP" VARCHAR, "SCV_HOUSEHOLDS" VARCHAR, "SCV_INDIVIDUALS" VARCHAR, "SCV_HOUSEHOLD_STATUS_HEAD" VARCHAR, "SCV_HOUSEHOLD_STATUS_OTHER" VARCHAR, "SCV_HOUSEHOLD_STATUS_YOUNG_ADULT" VARCHAR, "SCV_HOUSEHOLD_STATUS_ELDERLY_PARENT" VARCHAR, "SCV_HOUSEHOLD_STATUS_DECEASED" VARCHAR, "SCV_AGE_19" VARCHAR, "SCV_AGE_20" VARCHAR, "SCV_AGE_21" VARCHAR, "SCV_AGE_22_24" VARCHAR, "SCV_AGE_25_29" VARCHAR, "SCV_AGE_30_34" VARCHAR, "SCV_AGE_35_39" VARCHAR, "SCV_AGE_40_44" VARCHAR, "SCV_AGE_45_49" VARCHAR, "SCV_AGE_50_54" VARCHAR, "SCV_AGE_55_59" VARCHAR, "SCV_AGE_60_64" VARCHAR, "SCV_AGE_65_69" VARCHAR, "SCV_AGE_70_74" VARCHAR, "SCV_AGE_75" VARCHAR, "SCV_GENDER_FEMALE" VARCHAR, "SCV_GENDER_MALE" VARCHAR, "SCV_MARRIED_YES" VARCHAR, "SCV_MARRIED_NO" VARCHAR, "SCV_OCCUPATION_GROUP__MANAGEMENT_BUSINESS" VARCHAR, "SCV_OCCUPATION_GROUP__TECHNICAL" VARCHAR, "SCV_OCCUPATION_GROUP__PROFESSIONAL" VARCHAR, "SCV_OCCUPATION_GROUP__SALES" VARCHAR, "SCV_OCCUPATION_GROUP__OFFICE_ADMINISTRATION" VARCHAR, "SCV_OCCUPATION_GROUP__BLUE_COLLAR" VARCHAR, "SCV_OCCUPATION_GROUP__FARMING_FISH_FORESTRY" VARCHAR, "SCV_OCCUPATION_GROUP__OTHER" VARCHAR, "SCV_OCCUPATION_GROUP__RETIRED" VARCHAR, "SCV_EDUCATION_01_HIGHSCHOOL" VARCHAR, "SCV_EDUCATION_02_SOMECOLLEGE" VARCHAR, "SCV_EDUCATION_03_BACHELOR" VARCHAR, "SCV_EDUCATION_04_GRADUATE" VARCHAR, "SCV_EDUCATION_05_LESSHIGH" VARCHAR, "SCV_EI_LANGUAGE_ENGLISH" VARCHAR, "SCV_EI_LANGUAGE_DANISH" VARCHAR, "SCV_EI_LANGUAGE_SWEDISH" VARCHAR, "SCV_EI_LANGUAGE_NORWEGIAN" VARCHAR, "SCV_EI_LANGUAGE_FINNISH" VARCHAR, "SCV_EI_LANGUAGE_ICELANDIC" VARCHAR, "SCV_EI_LANGUAGE_DUTCH" VARCHAR, "SCV_EI_LANGUAGE_FLEMISH_WALDOON" VARCHAR, "SCV_EI_LANGUAGE_GERMAN" VARCHAR, "SCV_EI_LANGUAGE_HUNGARIAN" VARCHAR, "SCV_EI_LANGUAGE_CZECH" VARCHAR, "SCV_EI_LANGUAGE_SLOVAKIAN" VARCHAR, "SCV_EI_LANGUAGE_FRENCH" VARCHAR, "SCV_EI_LANGUAGE_ITALIAN" VARCHAR, "SCV_EI_LANGUAGE_SPANISH" VARCHAR, "SCV_EI_LANGUAGE_21_PORTUGUESE" VARCHAR, "SCV_EI_LANGUAGE_POLISH" VARCHAR, "SCV_EI_LANGUAGE_ESTONIAN" VARCHAR, "SCV_EI_LANGUAGE_LATVIAN" VARCHAR, "SCV_EI_LANGUAGE_LITHUANIAN" VARCHAR, "SCV_EI_LANGUAGE_GEORGIAN" VARCHAR, "SCV_EI_LANGUAGE_ARMENIAN" VARCHAR, "SCV_EI_LANGUAGE_RUSSIAN" VARCHAR, "SCV_EI_LANGUAGE_TURKISH" VARCHAR, "SCV_EI_LANGUAGE_KURDISH" VARCHAR, "SCV_EI_LANGUAGE_GREEK" VARCHAR, "SCV_EI_LANGUAGE_FARSI" VARCHAR, "SCV_EI_LANGUAGE_MOLDAVIAN" VARCHAR, "SCV_EI_LANGUAGE_BULGARIAN" VARCHAR, "SCV_EI_LANGUAGE_ROMANIAN" VARCHAR, "SCV_EI_LANGUAGE_ALBANIAN" VARCHAR, "SCV_EI_LANGUAGE_SLOVENIAN" VARCHAR, "SCV_EI_LANGUAGE_SERBO_CROATIAN" VARCHAR, "SCV_EI_LANGUAGE_AZERI" VARCHAR, "SCV_EI_LANGUAGE_KAZAKH" VARCHAR, "SCV_EI_LANGUAGE_PASHTU_PASHTO" VARCHAR, "SCV_EI_LANGUAGE_URDU" VARCHAR, "SCV_EI_LANGUAGE_BENGALI" VARCHAR, "SCV_EI_LANGUAGE_BAHASA_INDONESIA" VARCHAR, "SCV_EI_LANGUAGE_BURMESE" VARCHAR, "SCV_EI_LANGUAGE_MONGOLIAN" VARCHAR, "SCV_EI_LANGUAGE_MANDARIN" VARCHAR, "SCV_EI_LANGUAGE_54_CANTONESE" VARCHAR, "SCV_EI_LANGUAGE_KOREAN" VARCHAR, "SCV_EI_LANGUAGE_JAPANESE" VARCHAR, "SCV_EI_LANGUAGE_THAI" VARCHAR, "SCV_EI_LANGUAGE_MALAY" VARCHAR, "SCV_EI_LANGUAGE_LAOTIAN" VARCHAR, "SCV_EI_LANGUAGE_KHMER" VARCHAR, "SCV_EI_LANGUAGE_VIETNAMESE" VARCHAR, "SCV_EI_LANGUAGE_SINHALESE" VARCHAR, "SCV_EI_LANGUAGE_UZBEKI" VARCHAR, "SCV_EI_LANGUAGE_65_HMONG" VARCHAR, "SCV_EI_LANGUAGE_HEBREW" VARCHAR, "SCV_EI_LANGUAGE_ARABIC" VARCHAR, "SCV_EI_LANGUAGE_TURKMENI" VARCHAR, "SCV_EI_LANGUAGE_KIRGHIZ" VARCHAR, "SCV_EI_LANGUAGE_50_ASIAN_INDIAN" VARCHAR, "SCV_EI_LANGUAGE_NEPALI" VARCHAR, "SCV_EI_LANGUAGE_SAMOAN" VARCHAR, "SCV_EI_LANGUAGE_TONGAN" VARCHAR, "SCV_EI_LANGUAGE_TIBETAN" VARCHAR, "SCV_EI_LANGUAGE_SWAZI" VARCHAR, "SCV_EI_LANGUAGE_ZULU" VARCHAR, "SCV_EI_LANGUAGE_XHOSA" VARCHAR, "SCV_EI_LANGUAGE_AFRIKAANS" VARCHAR, "SCV_EI_LANGUAGE_COMORIAN_SHIKOMORO" VARCHAR, "SCV_EI_LANGUAGE_TWI_ASHANTI_ETHNICITY" VARCHAR, "SCV_EI_LANGUAGE_SWAHILI" VARCHAR, "SCV_EI_LANGUAGE_HAUSA" VARCHAR, "SCV_EI_LANGUAGE_BANTU" VARCHAR, "SCV_EI_LANGUAGE_DZONGHA" VARCHAR, "SCV_EI_LANGUAGE_AMHARIC" VARCHAR, "SCV_EI_LANGUAGE_SOMALI" VARCHAR, "SCV_EI_LANGUAGE_MACEDONIAN" VARCHAR, "SCV_EI_LANGUAGE_IGBO" VARCHAR, "SCV_EI_LANGUAGE_YORUBA" VARCHAR, "SCV_EI_LANGUAGE_TAGALOG" VARCHAR, "SCV_EI_LANGUAGE_SOTHO" VARCHAR, "SCV_EI_LANGUAGE_MALAGASY" VARCHAR, "SCV_EI_LANGUAGE_7H_INUKITUT" VARCHAR, "SCV_EI_LANGUAGE_9J_CHECHEN" VARCHAR, "SCV_EI_LANGUAGE_9X_TOK_PISIN" VARCHAR, "SCV_EI_ETHNIC_A_AFRICAN_AMERICAN" VARCHAR, "SCV_EI_ETHNIC_B_SOUTHEAST_ASIAN" VARCHAR, "SCV_EI_ETHNIC_C_SOUTH_ASIAN" VARCHAR, "SCV_EI_ETHNIC_D_CENTRAL_ASIAN" VARCHAR, "SCV_EI_ETHNIC_E_MEDITERRANEAN" VARCHAR, "SCV_EI_ETHNIC_F_NATIVE_AMERICAN" VARCHAR, "SCV_EI_ETHNIC_G_SCANDINAVIAN" VARCHAR, "SCV_EI_ETHNIC_H_POLYNESIAN" VARCHAR, "SCV_EI_ETHNIC_I_MIDDLE_EASTERN" VARCHAR, "SCV_EI_ETHNIC_J_JEWISH" VARCHAR, "SCV_EI_ETHNIC_K_WESTERN_EUROPEAN" VARCHAR, "SCV_EI_ETHNIC_L_EASTERN_EUROPEAN" VARCHAR, "SCV_EI_ETHNIC_M_CARIBBEAN_NON_HISPANIC" VARCHAR, "SCV_EI_ETHNIC_N_EAST_ASIAN" VARCHAR, "SCV_EI_ETHNIC_O_HISPANIC" VARCHAR, "SCV_NUMBER_OF_CHILDREN__1" VARCHAR, "SCV_NUMBER_OF_CHILDREN__2" VARCHAR, "SCV_NUMBER_OF_CHILDREN__3" VARCHAR, "SCV_NUMBER_OF_CHILDREN__4" VARCHAR, "SCV_NUMBER_OF_CHILDREN__5" VARCHAR, "SCV_NUMBER_OF_CHILDREN__6" VARCHAR, "SCV_NUMBER_OF_CHILDREN__7" VARCHAR, "SCV_NUMBER_OF_CHILDREN__8" VARCHAR, "SCV_NUMBER_OF_ADULTS__1" VARCHAR, "SCV_NUMBER_OF_ADULTS__2" VARCHAR, "SCV_NUMBER_OF_ADULTS__3" VARCHAR, "SCV_NUMBER_OF_ADULTS__4" VARCHAR, "SCV_NUMBER_OF_ADULTS__5" VARCHAR, "SCV_NUMBER_OF_ADULTS__6" VARCHAR, "SCV_NUMBER_OF_ADULTS__7" VARCHAR, "SCV_NUMBER_OF_ADULTS__8" VARCHAR, "SCV_NUMBER_OF_PERSONS__1" VARCHAR, "SCV_NUMBER_OF_PERSONS__2" VARCHAR, "SCV_NUMBER_OF_PERSONS__3" VARCHAR, "SCV_NUMBER_OF_PERSONS__4" VARCHAR, "SCV_NUMBER_OF_PERSONS__5" VARCHAR, "SCV_NUMBER_OF_PERSONS__6" VARCHAR, "SCV_NUMBER_OF_PERSONS__7" VARCHAR, "SCV_NUMBER_OF_PERSONS__8" VARCHAR, "SCV_CHILD_AGE_0_18__CHILD_PRESENT" VARCHAR, "SCV_CHILD_AGE_0_18__CHILD_NOT_PRESENT" VARCHAR, "SCV_CHILD_AGE_0_3__CHILD_PRESENT" VARCHAR, "SCV_CHILD_AGE_0_3__CHILD_NOT_PRESENT" VARCHAR, "SCV_CHILD_AGE_4_6__CHILD_PRESENT" VARCHAR, "SCV_CHILD_AGE_4_6__CHILD_NOT_PRESENT" VARCHAR, "SCV_CHILD_AGE_7_9__CHILD_PRESENT" VARCHAR, "SCV_CHILD_AGE_7_9__CHILD_NOT_PRESENT" VARCHAR, "SCV_CHILD_AGE_10_12__CHILD_PRESENT" VARCHAR, "SCV_CHILD_AGE_10_12__CHILD_NOT_PRESENT" VARCHAR, "SCV_CHILD_AGE_13_15__CHILD_PRESENT" VARCHAR, "SCV_CHILD_AGE_13_15__CHILD_NOT_PRESENT" VARCHAR, "SCV_CHILD_AGE_16_18__CHILD_PRESENT" VARCHAR, "SCV_CHILD_AGE_16_18__CHILD_NOT_PRESENT" VARCHAR, "SCV_CHILDREN_AGE_0_3_GENDER__FEMALE" VARCHAR, "SCV_CHILDREN_AGE_0_3_GENDER__MALE" VARCHAR, "SCV_CHILDREN_AGE_4_6_GENDER__FEMALE" VARCHAR, "SCV_CHILDREN_AGE_4_6_GENDER__MALE" VARCHAR, "SCV_CHILDREN_AGE_7_9_GENDER__FEMALE" VARCHAR, "SCV_CHILDREN_AGE_7_9_GENDER__MALE" VARCHAR, "SCV_CHILDREN_AGE_10_12_GENDER__FEMALE" VARCHAR, "SCV_CHILDREN_AGE_10_12_GENDER__MALE" VARCHAR, "SCV_CHILDREN_AGE_13_15_GENDER__FEMALE" VARCHAR, "SCV_CHILDREN_AGE_13_15_GENDER__MALE" VARCHAR, "SCV_CHILDREN_AGE_16_18_GENDER__FEMALE" VARCHAR, "SCV_CHILDREN_AGE_16_18_GENDER__MALE" VARCHAR, "SCV_HH_INCOME_A_UNDER_15000" VARCHAR, "SCV_HH_INCOME_B_15000_24999" VARCHAR, "SCV_HH_INCOME_C_25000_34999" VARCHAR, "SCV_HH_INCOME_D_35000_449999" VARCHAR, "SCV_HH_INCOME_E_50000_74999" VARCHAR, "SCV_HH_INCOME_F_75000_99999" VARCHAR, "SCV_HH_INCOME_G_100000_124999" VARCHAR, "SCV_HH_INCOME_H_125000_149999" VARCHAR, "SCV_HH_INCOME_I_150000_174999" VARCHAR, "SCV_HH_INCOME_J_175000_199999" VARCHAR, "SCV_HH_INCOME_K_200000_249999" VARCHAR, "SCV_HH_INCOME_L_250000" VARCHAR, "SCV_HOME_OWNER_YES" VARCHAR, "SCV_RENTER_YES" VARCHAR, "SCV_DWELLING_UNIT_TYPE_SINGLE_FAMILY" VARCHAR, "SCV_DWELLING_UNIT_TYPE_MULTI_FAMILY_CONDO" VARCHAR, "SCV_DWELLING_UNIT_TYPE_MULTI_FAMILY_MARGINAL" VARCHAR, "SCV_DWELLING_UNIT_TYPE_POST_BOX" VARCHAR, "SCV_DWELLING_SIZE_1_UNIT" VARCHAR, "SCV_DWELLING_SIZE_2_UNITS" VARCHAR, "SCV_DWELLING_SIZE_3_UNITS" VARCHAR, "SCV_DWELLING_SIZE_4_UNITS" VARCHAR, "SCV_DWELLING_SIZE_5_9_UNITS" VARCHAR, "SCV_DWELLING_SIZE_10_19_UNITS" VARCHAR, "SCV_DWELLING_SIZE_20_49_UNITS" VARCHAR, "SCV_DWELLING_SIZE_50_100_UNITS" VARCHAR, "SCV_DWELLING_SIZE_101_UNITS" VARCHAR, "SCV_LENGTH_OF_RES_0_YEARS" VARCHAR, "SCV_LENGTH_OF_RES_1_YEARS" VARCHAR, "SCV_LENGTH_OF_RES_2_5_YEARS" VARCHAR, "SCV_LENGTH_OF_RES_6_10_YEARS" VARCHAR, "SCV_LENGTH_OF_RES_10_YEARS" VARCHAR, "SCV_MEDIAN_HOUSING_VALUE_100K" VARCHAR, "SCV_MEDIAN_HOUSING_VALUE_101_200K" VARCHAR, "SCV_MEDIAN_HOUSING_VALUE_201_300K" VARCHAR, "SCV_MEDIAN_HOUSING_VALUE_301_500K" VARCHAR, "SCV_MEDIAN_HOUSING_VALUE_501_999K" VARCHAR, "SCV_MEDIAN_HOUSING_VALUE_1MM" VARCHAR, "SCV_EST_CURR_HOME_VALUE_A_1000_9999" VARCHAR, "SCV_EST_CURR_HOME_VALUE_B_10000_24999" VARCHAR, "SCV_EST_CURR_HOME_VALUE_C_25000_39999" VARCHAR, "SCV_EST_CURR_HOME_VALUE_D_40000_59999" VARCHAR, "SCV_EST_CURR_HOME_VALUE_E_60000_79999" VARCHAR, "SCV_EST_CURR_HOME_VALUE_F_80000_99999" VARCHAR, "SCV_EST_CURR_HOME_VALUE_G_100000_119999" VARCHAR, "SCV_EST_CURR_HOME_VALUE_H_120000_139999" VARCHAR, "SCV_EST_CURR_HOME_VALUE_I_140000_159999" VARCHAR, "SCV_EST_CURR_HOME_VALUE_J_160000_199999" VARCHAR, "SCV_EST_CURR_HOME_VALUE_K_200000_249999" VARCHAR, "SCV_EST_CURR_HOME_VALUE_L_250000_349999" VARCHAR, "SCV_EST_CURR_HOME_VALUE_M_350000_449999" VARCHAR, "SCV_EST_CURR_HOME_VALUE_N_450000_749999" VARCHAR, "SCV_EST_CURR_HOME_VALUE_O_750000_999999" VARCHAR, "SCV_EST_CURR_HOME_VALUE_P_1MM" VARCHAR, "SCV_EST_EQUITY_A_1000_9999" VARCHAR, "SCV_EST_EQUITY_B_10000_24999" VARCHAR, "SCV_EST_EQUITY_C_25000_39999" VARCHAR, "SCV_EST_EQUITY_D_40000_59999" VARCHAR, "SCV_EST_EQUITY_E_60000_79999" VARCHAR, "SCV_EST_EQUITY_F_80000_99999" VARCHAR, "SCV_EST_EQUITY_G_100000_119999" VARCHAR, "SCV_EST_EQUITY_H_120000_139999" VARCHAR, "SCV_EST_EQUITY_I_140000_159999" VARCHAR, "SCV_EST_EQUITY_J_160000_199999" VARCHAR, "SCV_EST_EQUITY_K_200000_249999" VARCHAR, "SCV_EST_EQUITY_L_250000_349999" VARCHAR, "SCV_EST_EQUITY_M_350000_449999" VARCHAR, "SCV_EST_EQUITY_N_450000_749999" VARCHAR, "SCV_EST_EQUITY_O_750000_999999" VARCHAR, "SCV_EST_EQUITY_P_1MM" VARCHAR, "SCV_EST_MONTHLY_MTG_PAYMENT_A_1_199" VARCHAR, "SCV_EST_MONTHLY_MTG_PAYMENT_B_200_299" VARCHAR, "SCV_EST_MONTHLY_MTG_PAYMENT_C_300_399" VARCHAR, "SCV_EST_MONTHLY_MTG_PAYMENT_D_400_499" VARCHAR, "SCV_EST_MONTHLY_MTG_PAYMENT_E_500_599" VARCHAR, "SCV_EST_MONTHLY_MTG_PAYMENT_F_600_699" VARCHAR, "SCV_EST_MONTHLY_MTG_PAYMENT_G_700_799" VARCHAR, "SCV_EST_MONTHLY_MTG_PAYMENT_H_800_899" VARCHAR, "SCV_EST_MONTHLY_MTG_PAYMENT_I_900_999" VARCHAR, "SCV_EST_MONTHLY_MTG_PAYMENT_J_1000_1199" VARCHAR, "SCV_EST_MONTHLY_MTG_PAYMENT_K_1200_1399" VARCHAR, "SCV_EST_MONTHLY_MTG_PAYMENT_L_1400_1699" VARCHAR, "SCV_EST_MONTHLY_MTG_PAYMENT_M_1700_1999" VARCHAR, "SCV_EST_MONTHLY_MTG_PAYMENT_N_2000" VARCHAR, "SCV_ESTIMATE_CURRENT_MORTGAGE_A_1000_9999" VARCHAR, "SCV_ESTIMATE_CURRENT_MORTGAGE_B_10000_24999" VARCHAR, "SCV_ESTIMATE_CURRENT_MORTGAGE_C_25000_39999" VARCHAR, "SCV_ESTIMATE_CURRENT_MORTGAGE_D_40000_59999" VARCHAR, "SCV_ESTIMATE_CURRENT_MORTGAGE_E_60000_79999" VARCHAR, "SCV_ESTIMATE_CURRENT_MORTGAGE_F_80000_99999" VARCHAR, "SCV_ESTIMATE_CURRENT_MORTGAGE_G_100000_119999" VARCHAR, "SCV_ESTIMATE_CURRENT_MORTGAGE_H_120000_139999" VARCHAR, "SCV_ESTIMATE_CURRENT_MORTGAGE_I_140000_159999" VARCHAR, "SCV_ESTIMATE_CURRENT_MORTGAGE_J_160000_199999" VARCHAR, "SCV_ESTIMATE_CURRENT_MORTGAGE_K_200000_249999" VARCHAR, "SCV_ESTIMATE_CURRENT_MORTGAGE_L_250000_349999" VARCHAR, "SCV_ESTIMATE_CURRENT_MORTGAGE_M_350000_449999" VARCHAR, "SCV_ESTIMATE_CURRENT_MORTGAGE_N_450000_749999" VARCHAR, "SCV_ESTIMATE_CURRENT_MORTGAGE_O_750000_999999" VARCHAR, "SCV_ESTIMATE_CURRENT_MORTGAGE_P_1MM" VARCHAR, "SCV_ENHANCED_YEAR_BUILT__1" VARCHAR, "SCV_ENHANCED_YEAR_BUILT__2" VARCHAR, "SCV_ENHANCED_YEAR_BUILT__3" VARCHAR, "SCV_ENHANCED_YEAR_BUILT__4" VARCHAR, "SCV_ENHANCED_YEAR_BUILT__5" VARCHAR, "SCV_ENHANCED_YEAR_BUILT__6" VARCHAR, "SCV_AUTO_ITM_NEW_1_EXTREMELY_LIKELY" VARCHAR, "SCV_AUTO_ITM_NEW_2_HIGHLY_LIKELY" VARCHAR, "SCV_AUTO_ITM_NEW_3_VERY_LIKELY" VARCHAR, "SCV_AUTO_ITM_NEW_4_MORE_THAN_LIKELY" VARCHAR, "SCV_AUTO_ITM_NEW_5_LIKELY" VARCHAR, "SCV_AUTO_ITM_NEW_6_SOMEWHAT_UNLIKELY" VARCHAR, "SCV_AUTO_ITM_NEW_7_VERY_UNLIKELY" VARCHAR, "SCV_AUTO_ITM_NEW_8_HIGHLY_UNLIKELY" VARCHAR, "SCV_AUTO_ITM_NEW_9_EXTREMELY_UNLIKELY" VARCHAR, "SCV_AUTO_ITM_USED_1_EXTREMELY_LIKELY" VARCHAR, "SCV_AUTO_ITM_USED_2_HIGHLY_LIKELY" VARCHAR, "SCV_AUTO_ITM_USED_3_VERY_LIKELY" VARCHAR, "SCV_AUTO_ITM_USED_4_MORE_THAN_LIKELY" VARCHAR, "SCV_AUTO_ITM_USED_5_LIKELY" VARCHAR, "SCV_AUTO_ITM_USED_6_SOMEWHAT_UNLIKELY" VARCHAR, "SCV_AUTO_ITM_USED_7_VERY_UNLIKELY" VARCHAR, "SCV_AUTO_ITM_USED_8_HIGHLY_UNLIKELY" VARCHAR, "SCV_AUTO_ITM_USED_9_EXTREMELY_UNLIKELY" VARCHAR, "SCV_CHOICESCORE_PROSPECT__YES" VARCHAR, "SCV_CHOICESCORE_PROSPECT__1_MOST_LIKELY" VARCHAR, "SCV_CHOICESCORE_PROSPECT__2" VARCHAR, "SCV_CHOICESCORE_PROSPECT__3" VARCHAR, "SCV_CHOICESCORE_PROSPECT__4" VARCHAR, "SCV_CHOICESCORE_PROSPECT__5" VARCHAR, "SCV_CHOICESCORE_PROSPECT__6" VARCHAR, "SCV_CHOICESCORE_PROSPECT__7" VARCHAR, "SCV_CHOICESCORE_PROSPECT__8" VARCHAR, "SCV_CHOICESCORE_PROSPECT__9_LEAST_LIKLEY" VARCHAR, "SCV_CHOICESCORE_GOOD_VS_BAD__1_MOST_LIKELY" VARCHAR, "SCV_CHOICESCORE_GOOD_VS_BAD__2" VARCHAR, "SCV_CHOICESCORE_GOOD_VS_BAD__3" VARCHAR, "SCV_CHOICESCORE_GOOD_VS_BAD__4" VARCHAR, "SCV_CHOICESCORE_GOOD_VS_BAD__5" VARCHAR, "SCV_CHOICESCORE_GOOD_VS_BAD__6" VARCHAR, "SCV_CHOICESCORE_GOOD_VS_BAD__7" VARCHAR, "SCV_CHOICESCORE_GOOD_VS_BAD__8" VARCHAR, "SCV_CHOICESCORE_GOOD_VS_BAD__9_LEAST_LIKLEY" VARCHAR, "SCV_TRUETOUCH_TOUCH_POINT_BUY_AMERICAN" VARCHAR, "SCV_TRUETOUCH_TOUCH_POINT_SHOWMETHEMONEY" VARCHAR, "SCV_TRUETOUCH_TOUCH_POINT_GOWITHTHEFLOW" VARCHAR, "SCV_TRUETOUCH_TOUCH_POINT_NOTIMELIKEPRESENT" VARCHAR, "SCV_TRUETOUCH_TOUCH_POINT_NEVERSHOWEMPTYHANDED" VARCHAR, "SCV_TRUETOUCH_TOUCH_POINT_ONTHEROAD" VARCHAR, "SCV_TRUETOUCH_TOUCH_POINT_LOOKATMENOW" VARCHAR, "SCV_TRUETOUCH_TOUCH_POINT_STOPSMELLROSES" VARCHAR, "SCV_TRUETOUCH_TOUCH_POINT_WORKHARDPLAYHARD" VARCHAR, "SCV_TRUETOUCH_TOUCH_POINT_PENNYSAVEDPENNYEARNED" VARCHAR, "SCV_TRUETOUCH_TOUCH_POINT_ALLINANAME" VARCHAR, "SCV_TRUETOUCH_BROADCAST_CABLE_TV_0" VARCHAR, "DIRECT_MAIL_0" VARCHAR, "SCV_TRUETOUCH_EMAIL_ENGAGEMENT" VARCHAR, "SCV_TRUETOUCH_INTERNET_RADIO" VARCHAR, "SCV_TRUETOUCH_MOBILE_DISPLAY" VARCHAR, "SCV_TRUETOUCH_MOBILE_VIDEO" VARCHAR, "SCV_TRUETOUCH_ONLINE_VIDEO" VARCHAR, "SCV_TRUETOUCH_ONLINE_DISPLAY" VARCHAR, "SCV_TRUETOUCH_ONLINE_STREAMING_TV" VARCHAR, "SCV_TRUETOUCH_SATELLITE_RADIO" VARCHAR, "SCV_TRUETOUCH_BRICK_AND_MORTAR_RETAILER" VARCHAR, "SCV_TRUETOUCH_ONLINE_RETAILER_MID_HIGH_END" VARCHAR, "SCV_TRUETOUCH_E_TAILER" VARCHAR, "SCV_TRUETOUCH_ONLINE_RETAILER_DISCOUNT" VARCHAR, "SCV_TRUETOUCH_ONLINE_BIDDING_MARKETPLACE" VARCHAR, "SCV_ACT_INT_AMUSEMENT_PARK_VISTOR_1_9_TOP" VARCHAR, "SCV_ACT_INT_AMUSEMENT_PARK_VISTOR_10_19" VARCHAR, "SCV_ACT_INT_AMUSEMENT_PARK_VISTOR_20_29" VARCHAR, "SCV_ACT_INT_ATTENDS_EDUCATION_PROG_1_9_TOP" VARCHAR, "SCV_ACT_INT_ATTENDS_EDUCATION_PROG_10_19" VARCHAR, "SCV_ACT_INT_ATTENDS_EDUCATION_PROG_20_29" VARCHAR, "SCV_ACT_INT_CANOEING_KAYAKING_1_9_TOP" VARCHAR, "SCV_ACT_INT_CANOEING_KAYAKING_10_19" VARCHAR, "SCV_ACT_INT_CANOEING_KAYAKING_20_29" VARCHAR, "SCV_ACT_INT_COFFEE_CONNOISSUERS_1_9_TOP" VARCHAR, "SCV_ACT_INT_COFFEE_CONNOISSUERS_10_19" VARCHAR, "SCV_ACT_INT_COFFEE_CONNOISSUERS_20_29" VARCHAR, "SCV_ACT_INT_DIGITAL_MAG_NEWS_BUYERS_1_9_TOP" VARCHAR, "SCV_ACT_INT_DIGITAL_MAG_NEWS_BUYERS_10_19" VARCHAR, "SCV_ACT_INT_DIGITAL_MAG_NEWS_BUYERS_20_29" VARCHAR, "SCV_ACT_INT_DO_IT_YOURSELFERS_1_9_TOP" VARCHAR, "SCV_ACT_INT_DO_IT_YOURSELFERS_10_19" VARCHAR, "SCV_ACT_INT_DO_IT_YOURSELFERS_20_29" VARCHAR, "SCV_ACT_INT_EATS_FAMILY_RESTAURANT_1_9_TOP" VARCHAR, "SCV_ACT_INT_EATS_FAMILY_RESTAURANT_10_19" VARCHAR, "SCV_ACT_INT_EATS_FAMILY_RESTAURANT_20_29" VARCHAR, "SCV_ACT_INT_EATS_FAST_FOOD__1_9_TOP" VARCHAR, "SCV_ACT_INT_EATS_FAST_FOOD__10_19" VARCHAR, "SCV_ACT_INT_EATS_FAST_FOOD__20_29" VARCHAR, "SCV_ACT_INT_HOME_IMPROVEMENT_SPENDERS_1_9_TOP" VARCHAR, "SCV_ACT_INT_HOME_IMPROVEMENT_SPENDERS_10_19" VARCHAR, "SCV_ACT_INT_HOME_IMPROVEMENT_SPENDERS_20_29" VARCHAR, "SCV_ACT_INT_HUNTING_ENTHUSIASTS_1_9_TOP" VARCHAR, "SCV_ACT_INT_HUNTING_ENTHUSIASTS_10_19" VARCHAR, "SCV_ACT_INT_HUNTING_ENTHUSIASTS_20_29" VARCHAR, "SCV_ACT_INT_MLB_ENTHUSIAST_1_9_TOP" VARCHAR, "SCV_ACT_INT_MLB_ENTHUSIAST_10_19" VARCHAR, "SCV_ACT_INT_MLB_ENTHUSIAST_20_29" VARCHAR, "SCV_ACT_INT_NASCAR_ENTHUSIAST_1_9_TOP" VARCHAR, "SCV_ACT_INT_NASCAR_ENTHUSIAST_10_19" VARCHAR, "SCV_ACT_INT_NASCAR_ENTHUSIAST_20_29" VARCHAR, "SCV_ACT_INT_NBA_ENTHUSIAST_1_9_TOP" VARCHAR, "SCV_ACT_INT_NBA_ENTHUSIAST_10_19" VARCHAR, "SCV_ACT_INT_NBA_ENTHUSIAST_20_29" VARCHAR, "SCV_ACT_INT_NFL_ENTHUSIAST_1_9_TOP" VARCHAR, "SCV_ACT_INT_NFL_ENTHUSIAST_10_19" VARCHAR, "SCV_ACT_INT_NFL_ENTHUSIAST_20_29" VARCHAR, "SCV_ACT_INT_NHL_ENTHUSIAST_1_9_TOP" VARCHAR, "SCV_ACT_INT_NHL_ENTHUSIAST_10_19" VARCHAR, "SCV_ACT_INT_NHL_ENTHUSIAST_20_29" VARCHAR, "SCV_ACT_INT_PGA_TOUR_ENTHUSIAST_1_9_TOP" VARCHAR, "SCV_ACT_INT_PGA_TOUR_ENTHUSIAST_10_19" VARCHAR, "SCV_ACT_INT_PGA_TOUR_ENTHUSIAST_20_29" VARCHAR, "SCV_ACT_INT_PLAY_GOLF_1_9_TOP" VARCHAR, "SCV_ACT_INT_PLAY_GOLF_10_19" VARCHAR, "SCV_ACT_INT_PLAY_GOLF_20_29" VARCHAR, "SCV_ACT_INT_POLITICALTV_CONSERVATI_1_9_TOP" VARCHAR, "SCV_ACT_INT_POLITICALTV_CONSERVATI_10_19" VARCHAR, "SCV_ACT_INT_POLITICALTV_CONSERVATI_20_29" VARCHAR, "SCV_ACT_INT_POLITICALTV_LIBCOMEDY_1_9_TOP" VARCHAR, "SCV_ACT_INT_POLITICALTV_LIBCOMEDY_10_19" VARCHAR, "SCV_ACT_INT_POLITICALTV_LIBCOMEDY_20_29" VARCHAR, "SCV_ACT_INT_POLITICALTV_LIBERAL_1_9_TOP" VARCHAR, "SCV_ACT_INT_POLITICALTV_LIBERAL_10_19" VARCHAR, "SCV_ACT_INT_POLITICALTV_LIBERAL_20_29" VARCHAR, "SCV_ACT_INT_VIDEO_GAMER_1_9_TOP" VARCHAR, "SCV_ACT_INT_VIDEO_GAMER__10_19" VARCHAR, "SCV_ACT_INT_VIDEO_GAMER__20_29" VARCHAR, "SCV_ACT_INT_WINE_LOVERS_1_9_TOP" VARCHAR, "SCV_ACT_INT_WINE_LOVERS_10_19" VARCHAR, "SCV_ACT_INT_WINE_LOVERS_20_29" VARCHAR, "SCV_ACT_INT_ZOO_VISITORS_1_9_TOP" VARCHAR, "SCV_ACT_INT_ZOO_VISITORS_10_19" VARCHAR, "SCV_ACT_INT_ZOO_VISITORS_20_29" VARCHAR, "SCV_BUYER_COUPON_USERS_1_9_TOP" VARCHAR, "SCV_BUYER_COUPON_USERS_10_19" VARCHAR, "SCV_BUYER_COUPON_USERS_20_29" VARCHAR, "SCV_BUYER_LAPTOP_OWNERS_1_9_TOP" VARCHAR, "SCV_BUYER_LAPTOP_OWNERS_10_19" VARCHAR, "SCV_BUYER_LAPTOP_OWNERS_20_29" VARCHAR, "SCV_BUYER_LOYALTY_CARD_USER_1_9_TOP" VARCHAR, "SCV_BUYER_LOYALTY_CARD_USER_10_19" VARCHAR, "SCV_BUYER_LOYALTY_CARD_USER_20_29" VARCHAR, "SCV_BUYER_LUXURY_HOME_GOOD_SHOPPER_1_9_TOP" VARCHAR, "SCV_BUYER_LUXURY_HOME_GOOD_SHOPPER_10_19" VARCHAR, "SCV_BUYER_LUXURY_HOME_GOOD_SHOPPER_20_29" VARCHAR, "SCV_BUYER_LUXURY_STORE_SHOPPERS_1_9_TOP" VARCHAR, "SCV_BUYER_LUXURY_STORE_SHOPPERS_10_19" VARCHAR, "SCV_BUYER_LUXURY_STORE_SHOPPERS_20_29" VARCHAR, "SCV_BUYER_NON_DEPT_STORE_MAKEUP_1_9_TOP" VARCHAR, "SCV_BUYER_NON_DEPT_STORE_MAKEUP_10_19" VARCHAR, "SCV_BUYER_NON_DEPT_STORE_MAKEUP_20_29" VARCHAR, "SCV_BUYER_PRESENCE_OF_AUTOMOBILE_1_9_TOP" VARCHAR, "SCV_BUYER_PRESENCE_OF_AUTOMOBILE_10_19" VARCHAR, "SCV_BUYER_PRESENCE_OF_AUTOMOBILE_20_29" VARCHAR, "SCV_BUYER_SECURITY_SYSTEM_OWNERS_1_9_TOP" VARCHAR, "SCV_BUYER_SECURITY_SYSTEM_OWNERS_10_19" VARCHAR, "SCV_BUYER_SECURITY_SYSTEM_OWNERS_20_29" VARCHAR, "SCV_BUYER_SUPERCENTER_SHOPPERS_1_9_TOP" VARCHAR, "SCV_BUYER_SUPERCENTER_SHOPPERS_10_19" VARCHAR, "SCV_BUYER_SUPERCENTER_SHOPPERS_20_29" VARCHAR, "SCV_BUYER_TABLET_OWNERS_1_9_TOP" VARCHAR, "SCV_BUYER_TABLET_OWNERS_10_19" VARCHAR, "SCV_BUYER_TABLET_OWNERS_20_29" VARCHAR, "SCV_BUYER_WAREHOUSE_CLUB_MEMBERS_1_9_TOP" VARCHAR, "SCV_BUYER_WAREHOUSE_CLUB_MEMBERS_10_19" VARCHAR, "SCV_BUYER_WAREHOUSE_CLUB_MEMBERS_20_29" VARCHAR, "SCV_BUYER_YOUNG_ADULT_CLOTHING_SHOPPERS_1_9_TOP" VARCHAR, "SCV_BUYER_YOUNG_ADULT_CLOTHING_SHOPPERS_10_19" VARCHAR, "SCV_BUYER_YOUNG_ADULT_CLOTHING_SHOPPERS_20_29" VARCHAR, "SCV_LIFESTYLE_HAVE_GRANDCHILDREN_1_9_TOP" VARCHAR, "SCV_LIFESTYLE_HAVE_GRANDCHILDREN_10_19" VARCHAR, "SCV_LIFESTYLE_HAVE_GRANDCHILDREN_20_29" VARCHAR, "SCV_LIFESTYLE_LIFE_INS_POLICY_HOLDERS_1_9_TOP" VARCHAR, "SCV_LIFESTYLE_LIFE_INS_POLICY_HOLDERS_10_19" VARCHAR, "SCV_LIFESTYLE_LIFE_INS_POLICY_HOLDERS_20_29" VARCHAR, "SCV_LIFESTYLE_MEDICAL_INS_POLICY_HOLDER_1_9_TOP" VARCHAR, "SCV_LIFESTYLE_MEDICAL_INS_POLICY_HOLDER_10_19" VARCHAR, "SCV_LIFESTYLE_MEDICAL_INS_POLICY_HOLDER_20_29" VARCHAR, "SCV_LIFESTYLE_MEDICARE_POLICY_HOLDERS_1_9_TOP" VARCHAR, "SCV_LIFESTYLE_MEDICARE_POLICY_HOLDERS_10_19" VARCHAR, "SCV_LIFESTYLE_MEDICARE_POLICY_HOLDERS_20_29" VARCHAR, "SCV_MEMBERSHIPS_AARP_MEMBERS_1_9_TOP" VARCHAR, "SCV_MEMBERSHIPS_AARP_MEMBERS_10_19" VARCHAR, "SCV_MEMBERSHIPS_AARP_MEMBERS_20_29" VARCHAR, "SCV_MEMBERSHIPS_UNION_MEMBER_1_9_TOP" VARCHAR, "SCV_MEMBERSHIPS_UNION_MEMBER_10_19" VARCHAR, "SCV_MEMBERSHIPS_UNION_MEMBER_20_29" VARCHAR, "SCV_INVEST_HAVE_RETIREMENT_PLAN_1_9_TOP" VARCHAR, "SCV_INVEST_HAVE_RETIREMENT_PLAN_10_19" VARCHAR, "SCV_INVEST_HAVE_RETIREMENT_PLAN_20_29" VARCHAR, "SCV_INVEST_ONLINE_TRADING_1_9_TOP" VARCHAR, "SCV_INVEST_ONLINE_TRADING_10_19" VARCHAR, "SCV_INVEST_ONLINE_TRADING_20_29" VARCHAR, "SCV_ACT_INT_GOURMET_COOKING_1_9_TOP" VARCHAR, "SCV_ACT_INT_GOURMET_COOKING_10_19" VARCHAR, "SCV_ACT_INT_GOURMET_COOKING_20_29" VARCHAR, "SCV_ACT_INT_CAT_OWNERS_1_9_TOP" VARCHAR, "SCV_ACT_INT_CAT_OWNERS_10_19" VARCHAR, "SCV_ACT_INT_CAT_OWNERS_20_29" VARCHAR, "SCV_ACT_INT_DOG_OWNERS_1_9_TOP" VARCHAR, "SCV_ACT_INT_DOG_OWNERS_10_19" VARCHAR, "SCV_ACT_INT_DOG_OWNERS_20_29" VARCHAR, "SCV_ACT_INT_ARTS_AND_CRAFTS_1_9_TOP" VARCHAR, "SCV_ACT_INT_ARTS_AND_CRAFTS_10_19" VARCHAR, "SCV_ACT_INT_ARTS_AND_CRAFTS_20_29" VARCHAR, "SCV_ACT_INT_SCRAPBOOKING_1_9_TOP" VARCHAR, "SCV_ACT_INT_SCRAPBOOKING_10_19" VARCHAR, "SCV_ACT_INT_SCRAPBOOKING_20_29" VARCHAR, "SCV_ACT_INT_CULTURAL_ARTS_1_9_TOP" VARCHAR, "SCV_ACT_INT_CULTURAL_ARTS_10_19" VARCHAR, "SCV_ACT_INT_CULTURAL_ARTS_20_29" VARCHAR, "SCV_HOBBIES_GARDENING_1_9_TOP" VARCHAR, "SCV_HOBBIES_GARDENING_10_19" VARCHAR, "SCV_HOBBIES_GARDENING_20_29" VARCHAR, "SCV_ACT_INT_PHOTOGRAPHY_1_9_TOP" VARCHAR, "SCV_ACT_INT_PHOTOGRAPHY_10_19" VARCHAR, "SCV_ACT_INT_PHOTOGRAPHY_20_29" VARCHAR, "SCV_ACT_INT_BOOK_READER_1_9_TOP" VARCHAR, "SCV_ACT_INT_BOOK_READER_10_19" VARCHAR, "SCV_ACT_INT_BOOK_READER_20_29" VARCHAR, "SCV_ACT_INT_E_BOOK_READER_1_9_TOP" VARCHAR, "SCV_ACT_INT_E_BOOK_READER_10_19" VARCHAR, "SCV_ACT_INT_E_BOOK_READER_20_29" VARCHAR, "SCV_ACT_INT_AUDIO_BOOK_LISTENER_1_9_TOP" VARCHAR, "SCV_ACT_INT_AUDIO_BOOK_LISTENER_10_19" VARCHAR, "SCV_ACT_INT_AUDIO_BOOK_LISTENER_20_29" VARCHAR, "SCV_ACT_INT_PET_ENTHUSIAST_1_9_TOP" VARCHAR, "SCV_ACT_INT_PET_ENTHUSIAST_10_19" VARCHAR, "SCV_ACT_INT_PET_ENTHUSIAST_20_29" VARCHAR, "SCV_ACT_INT_MUSIC_DOWNLOAD_1_9_TOP" VARCHAR, "SCV_ACT_INT_MUSIC_DOWNLOAD_10_19" VARCHAR, "SCV_ACT_INT_MUSIC_DOWNLOAD_20_29" VARCHAR, "SCV_ACT_INT_MUSIC_STREAMING_1_9_TOP" VARCHAR, "SCV_ACT_INT_MUSIC_STREAMING_10_19" VARCHAR, "SCV_ACT_INT_MUSIC_STREAMING_20_29" VARCHAR, "SCV_ACT_INT_AVID_RUNNERS_1_9_TOP" VARCHAR, "SCV_ACT_INT_AVID_RUNNERS_10_19" VARCHAR, "SCV_ACT_INT_AVID_RUNNERS_20_29" VARCHAR, "SCV_ACT_INT_OUTDOOR_ENTHUSIAST_1_9_TOP" VARCHAR, "SCV_ACT_INT_OUTDOOR_ENTHUSIAST_10_19" VARCHAR, "SCV_ACT_INT_OUTDOOR_ENTHUSIAST_20_29" VARCHAR, "SCV_ACT_INT_FISHING_1_9_TOP" VARCHAR, "SCV_ACT_INT_FISHING_10_19" VARCHAR, "SCV_ACT_INT_FISHING_20_29" VARCHAR, "SCV_ACT_INT_SNOW_SPORTS_1_9_TOP" VARCHAR, "SCV_ACT_INT_SNOW_SPORTS_10_19" VARCHAR, "SCV_ACT_INT_SNOW_SPORTS_20_29" VARCHAR, "SCV_ACT_INT_BOATING_1_9_TOP" VARCHAR, "SCV_ACT_INT_BOATING_10_19" VARCHAR, "SCV_ACT_INT_BOATING_20_29" VARCHAR, "SCV_ACT_INT_PLAYS_HOCKEY_1_9_TOP" VARCHAR, "SCV_ACT_INT_PLAYS_HOCKEY_10_19" VARCHAR, "SCV_ACT_INT_PLAYS_HOCKEY_20_29" VARCHAR, "SCV_ACT_INT_PLAYS_SOCCER_1_9_TOP" VARCHAR, "SCV_ACT_INT_PLAYS_SOCCER_10_19" VARCHAR, "SCV_ACT_INT_PLAYS_SOCCER_20_29" VARCHAR, "SCV_ACT_INT_PLAYS_TENNIS_1_9_TOP" VARCHAR, "SCV_ACT_INT_PLAYS_TENNIS_10_19" VARCHAR, "SCV_ACT_INT_PLAYS_TENNIS_20_29" VARCHAR, "SCV_ACT_INT_SPORTS_ENTHUSIAST_1_9_TOP" VARCHAR, "SCV_ACT_INT_SPORTS_ENTHUSIAST_10_19" VARCHAR, "SCV_ACT_INT_SPORTS_ENTHUSIAST_20_29" VARCHAR, "SCV_ACT_INT_HEALTHY_LIVING_1_9_TOP" VARCHAR, "SCV_ACT_INT_HEALTHY_LIVING_10_19" VARCHAR, "SCV_ACT_INT_HEALTHY_LIVING_20_29" VARCHAR, "SCV_ACT_INT_FITNESS_ENTHUSIAST_1_9_TOP" VARCHAR, "SCV_ACT_INT_FITNESS_ENTHUSIAST_10_19" VARCHAR, "SCV_ACT_INT_FITNESS_ENTHUSIAST_20_29" VARCHAR, "SCV_ACT_INT_ON_A_DIET__1_9_TOP" VARCHAR, "SCV_ACT_INT_ON_A_DIET__10_19" VARCHAR, "SCV_ACT_INT_ON_A_DIET__20_29" VARCHAR, "SCV_ACT_INT_WEIGHT_CONSCIOUS_1_9_TOP" VARCHAR, "SCV_ACT_INT_WEIGHT_CONSCIOUS_10_19" VARCHAR, "SCV_ACT_INT_WEIGHT_CONSCIOUS_20_29" VARCHAR, "SCV_ACT_INT_CASINO_GAMBLING_1_9_TOP" VARCHAR, "SCV_ACT_INT_CASINO_GAMBLING_10_19" VARCHAR, "SCV_ACT_INT_CASINO_GAMBLING_20_29" VARCHAR, "SCV_ACT_INT_SWEEPSTAKES_LOTTERY_1_9_TOP" VARCHAR, "SCV_ACT_INT_SWEEPSTAKES_LOTTERY_10_19" VARCHAR, "SCV_ACT_INT_SWEEPSTAKES_LOTTERY_20_29" VARCHAR, "SCV_LIFESTYLE_FREQUENT_BUSINESS_TRAVELER_1_9_TOP" VARCHAR, "SCV_LIFESTYLE_FREQUENT_BUSINESS_TRAVELER_10_19" VARCHAR, "SCV_LIFESTYLE_FREQUENT_BUSINESS_TRAVELER_20_29" VARCHAR, "SCV_LIFESTYLE_FREQUENT_CRUISE_ENTHUSIAST_1_9_TOP" VARCHAR, "SCV_LIFESTYLE_FREQUENT_CRUISE_ENTHUSIAST_10_19" VARCHAR, "SCV_LIFESTYLE_FREQUENT_CRUISE_ENTHUSIAST_20_29" VARCHAR, "SCV_LIFESTYLE_FREQUENT_DOMESTIC_VACATION_1_9_TOP" VARCHAR, "SCV_LIFESTYLE_FREQUENT_DOMESTIC_VACATION_10_19" VARCHAR, "SCV_LIFESTYLE_FREQUENT_DOMESTIC_VACATION_20_29" VARCHAR, "SCV_LIFESTYLE_FREQUENT_FOREIGN_VACATION_1_9_TOP" VARCHAR, "SCV_LIFESTYLE_FREQUENT_FOREIGN_VACATION_10_19" VARCHAR, "SCV_LIFESTYLE_FREQUENT_FOREIGN_VACATION_20_29" VARCHAR, "SCV__LIFESTYLE_FREQUENT_FLYER_MEMBER_1_9_TOP" VARCHAR, "SCV__LIFESTYLE_FREQUENT_FLYER_MEMBER_10_19" VARCHAR, "SCV__LIFESTYLE_FREQUENT_FLYER_MEMBER_20_29" VARCHAR, "SCV_LIFESTYLE_HOTEL_GUEST_LOYALTY_PROGRA_1_9_TOP" VARCHAR, "SCV_LIFESTYLE_HOTEL_GUEST_LOYALTY_PROGRAM_10_19" VARCHAR, "SCV_LIFESTYLE_HOTEL_GUEST_LOYALTY_PROGRAM_20_29" VARCHAR, "SCV_DONOR_TO_CHARITIES_1_9_TOP" VARCHAR, "SCV_DONOR_TO_CHARITIES_10_19" VARCHAR, "SCV_DONOR_TO_CHARITIES_20_29" VARCHAR, "SCV_DONOR_TO_ARTS_CULTURE_CHARITIES_1_9_TOP" VARCHAR, "SCV_DONOR_TO_ARTS_CULTURE_CHARITIES_10_19" VARCHAR, "SCV_DONOR_TO_ARTS_CULTURE_CHARITIES_20_29" VARCHAR, "SCV_DONOR_TO_EDUCATION_CHARITIES_1_9_TOP" VARCHAR, "SCV_DONOR_TO_EDUCATION_CHARITIES_10_19" VARCHAR, "SCV_DONOR_TO_EDUCATION_CHARITIES_20_29" VARCHAR, "SCV_DONOR_TO_HEALTH_CHARITIES_1_9_TOP" VARCHAR, "SCV_DONOR_TO_HEALTH_CHARITIES_10_19" VARCHAR, "SCV_DONOR_TO_HEALTH_CHARITIES_20_29" VARCHAR, "SCV_DONOR_TO_POLITICAL_CHARITIES_1_9_TOP" VARCHAR, "SCV_DONOR_TO_POLITICAL_CHARITIES_10_19" VARCHAR, "SCV_DONOR_TO_POLITICAL_CHARITIES_20_29" VARCHAR, "SCV_DONOR_TO_PRIVATE_FOUNDATIONS_1_9_TOP" VARCHAR, "SCV_DONOR_TO_PRIVATE_FOUNDATIONS_10_19" VARCHAR, "SCV_DONOR_TO_PRIVATE_FOUNDATIONS_20_29" VARCHAR, "SCV_DONOR_BY_VOLUNTEERING_1_9_TOP" VARCHAR, "SCV_DONOR_BY_VOLUNTEERING_10_19" VARCHAR, "SCV_DONOR_BY_VOLUNTEERING_20_29" VARCHAR, "SCV_FINANCIAL_CORP_CREDIT_CARD_USER_1_9_TOP" VARCHAR, "SCV_FINANCIAL_CORP_CREDIT_CARD_USER_10_19" VARCHAR, "SCV_FINANCIAL_CORP_CREDIT_CARD_USER_20_29" VARCHAR, "SCV_FINANCIAL_DEBIT_CARD_USER_1_9_TOP" VARCHAR, "SCV_FINANCIAL_DEBIT_CARD_USER_10_19" VARCHAR, "SCV_FINANCIAL_DEBIT_CARD_USER_20_29" VARCHAR, "SCV_FINANCIAL_MAJOR_CREDIT_CARD_USER_1_9_TOP" VARCHAR, "SCV_FINANCIAL_MAJOR_CREDIT_CARD_USER_10_19" VARCHAR, "SCV_FINANCIAL_MAJOR_CREDIT_CARD_USER_20_29" VARCHAR, "SCV_FINANCIAL_PREMIUM_CREDIT_CARD_USER_1_9_TOP" VARCHAR, "SCV_FINANCIAL_PREMIUM_CREDIT_CARD_USER_10_19" VARCHAR, "SCV_FINANCIAL_PREMIUM_CREDIT_CARD_USER_20_29" VARCHAR, "SCV_FINANCIAL_CREDIT_CARD_USER_1_9_TOP" VARCHAR, "SCV_FINANCIAL_CREDIT_CARD_USER_10_19" VARCHAR, "SCV_FINANCIAL_CREDIT_CARD_USER_20_29" VARCHAR, "SCV_FINANCIAL_STORE_CREDIT_CARD_USER_1_9_TOP" VARCHAR, "SCV_FINANCIAL_STORE_CREDIT_CARD_USER_10_19" VARCHAR, "SCV_FINANCIAL_STORE_CREDIT_CARD_USER_20_29" VARCHAR, "SCV_INVEST_BROKERAGE_ACCOUNT_OWNER_1_9_TOP" VARCHAR, "SCV_INVEST_BROKERAGE_ACCOUNT_OWNER_10_19" VARCHAR, "SCV_INVEST_BROKERAGE_ACCOUNT_OWNER_20_29" VARCHAR, "SCV_INVEST_ACTIVE_INVESTOR_1_9_TOP" VARCHAR, "SCV_INVEST_ACTIVE_INVESTOR_10_19" VARCHAR, "SCV_INVEST_ACTIVE_INVESTOR_20_29" VARCHAR, "SCV_INVEST_MUTUAL_FUND_INVESTOR_1_9_TOP" VARCHAR, "SCV_INVEST_MUTUAL_FUND_INVESTOR_10_19" VARCHAR, "SCV_INVEST_MUTUAL_FUND_INVESTOR_20_29" VARCHAR, "SCV_BUYER_PRESTIGE_MAKEUP_USER_1_9_TOP" VARCHAR, "SCV_BUYER_PRESTIGE_MAKEUP_USER_10_19" VARCHAR, "SCV_BUYER_PRESTIGE_MAKEUP_USER_20_29" VARCHAR, "SCV_ACT_INT_LISTENS_TO_CHRISTIAN_MUSIC_1_9_TOP" VARCHAR, "SCV_ACT_INT_LISTENS_TO_CHRISTIAN_MUSIC_10_19" VARCHAR, "SCV_ACT_INT_LISTENS_TO_CHRISTIAN_MUSIC_20_29" VARCHAR, "SCV_ACT_INT_LISTENS_TO_CLASSICAL_MUSIC_1_9_TOP" VARCHAR, "SCV_ACT_INT_LISTENS_TO_CLASSICAL_MUSIC_10_19" VARCHAR, "SCV_ACT_INT_LISTENS_TO_CLASSICAL_MUSIC_20_29" VARCHAR, "SCV_ACT_INT_LISTENS_TO_COUNTRY_MUSIC_1_9_TOP" VARCHAR, "SCV_ACT_INT_LISTENS_TO_COUNTRY_MUSIC_10_19" VARCHAR, "SCV_ACT_INT_LISTENS_TO_COUNTRY_MUSIC_20_29" VARCHAR, "SCV_ACT_INT_LISTENS_TO_MUSIC_1_9_TOP" VARCHAR, "SCV_ACT_INT_LISTENS_TO_MUSIC_10_19" VARCHAR, "SCV_ACT_INT_LISTENS_TO_MUSIC_20_29" VARCHAR, "SCV_ACT_INT_LISTENS_TO_OLDIES_MUSIC_1_9_TOP" VARCHAR, "SCV_ACT_INT_LISTENS_TO_OLDIES_MUSIC_10_19" VARCHAR, "SCV_ACT_INT_LISTENS_TO_OLDIES_MUSIC_20_29" VARCHAR, "SCV_ACT_INT_LISTENS_TO_ROCK_MUSIC_1_9_TOP" VARCHAR, "SCV_ACT_INT_LISTENS_TO_ROCK_MUSIC_10_19" VARCHAR, "SCV_ACT_INT_LISTENS_TO_ROCK_MUSIC_20_29" VARCHAR, "SCV_ACT_INT_LISTENS_TO_80_S_MUSIC_1_9_TOP" VARCHAR, "SCV_ACT_INT_LISTENS_TO_80_S_MUSIC_10_19" VARCHAR, "SCV_ACT_INT_LISTENS_TO_80_S_MUSIC_20_29" VARCHAR, "SCV_ACT_INT_LISTENS_TO_HIP_HOP_MUSIC_1_9_TOP" VARCHAR, "SCV_ACT_INT_LISTENS_TO_HIP_HOP_MUSIC_10_19" VARCHAR, "SCV_ACT_INT_LISTENS_TO_HIP_HOP_MUSIC_20_29" VARCHAR, "SCV_ACT_INT_LISTENS_TO_ALTERNATIVE_MUSIC_1_9_TOP" VARCHAR, "SCV_ACT_INT_LISTENS_TO_ALTERNATIVE_MUSIC_10_19" VARCHAR, "SCV_ACT_INT_LISTENS_TO_ALTERNATIVE_MUSIC_20_29" VARCHAR, "SCV_ACT_INT_LISTENS_TO_JAZZ_MUSIC_1_9_TOP" VARCHAR, "SCV_ACT_INT_LISTENS_TO_JAZZ_MUSIC_10_19" VARCHAR, "SCV_ACT_INT_LISTENS_TO_JAZZ_MUSIC_20_29" VARCHAR, "SCV_ACT_INT_LISTENS_TO_POP_MUSIC_1_9_TOP" VARCHAR, "SCV_ACT_INT_LISTENS_TO_POP_MUSIC_10_19" VARCHAR, "SCV_ACT_INT_LISTENS_TO_POP_MUSIC_20_29" VARCHAR, "SCV_LIFESTYLE_INTEREST_IN_RELIGION_1_9_TOP" VARCHAR, "SCV_LIFESTYLE_INTEREST_IN_RELIGION_10_19" VARCHAR, "SCV_LIFESTYLE_INTEREST_IN_RELIGION_20_29" VARCHAR, "SCV_LIFESTYLE_MILITARY__ACTIVE_1_9_TOP" VARCHAR, "SCV_LIFESTYLE_MILITARY__ACTIVE_10_19" VARCHAR, "SCV_LIFESTYLE_MILITARY__ACTIVE_20_29" VARCHAR, "SCV_LIFESTYLE_MILITARY__INACTIVE_1_9_TOP" VARCHAR, "SCV_LIFESTYLE_MILITARY__INACTIVE_10_19" VARCHAR, "SCV_LIFESTYLE_MILITARY__INACTIVE_20_29" VARCHAR, "SCV_MOR_MULTI_CO_DM_RESPONDER_YES" VARCHAR, "SCV_MOR_MULTI_CO_DM_RESPONDER_MULTI_BUYER" VARCHAR, "SCV_MOR_MULTI_PRODUCT_DM_BUYER_YES" VARCHAR, "SCV_MOR_GIFTS__GADGETS_BUYER_YES" VARCHAR, "SCV_MOR_SPECIALTY_FOOD_ITEM_BUYER_YES" VARCHAR, "SCV_MOR_BOOKS_BUYER_YES" VARCHAR, "SCV_MOR_GARDEN_FARM_PRODUCTS_BUYER_YES" VARCHAR, "SCV_MOR_CRAFTS_HOBBY_PRODUCTS_BUYER_YES" VARCHAR, "SCV_MOR_FEMALE_ORIENTED_PRODUCT_BUYER_YES" VARCHAR, "SCV_MOR_MALE_ORIENTED_PRODUCT_BUYER_YES" VARCHAR, "SCV_MOR_UPSCALE_MERCHANDISE_BUYER__YES" VARCHAR, "SCV_MOR_GENERAL_MERCHANDISE_BUYER_YES" VARCHAR, "SCV_MOR_HEALTH_FITNESS_MAGAZINES_YES" VARCHAR, "SCV_MOR_INTEREST_IN_CULINARY_MAGAZINES_YES" VARCHAR, "SCV_MOR_GARDEN_FARMING_MAGAZINES_YES" VARCHAR, "SCV_MOR_RELIGIOUS_MAGAZINES_YES" VARCHAR, "SCV_MOR_MALE_SPORT_ORIENTED_MAGAZINE_YES" VARCHAR, "SCV_MOR_FEMALE_ORIENTED_MAGAZINES_YES" VARCHAR, "SCV_MOR_FAMILY_GENERAL_MAGAZINE_YES" VARCHAR, "SCV_MOR_SWEEPSTAKES_RESPONDER_YES" VARCHAR, "SCV_MOR_DO_IT_YOUR_SELFER_YES" VARCHAR, "SCV_MOR_NEWS_FINANCIAL_INTEREST_YES" VARCHAR, "SCV_MOR_PHOTOGRAPHY_INTEREST_YES" VARCHAR, "SCV_INTEREST_IN_ARTS_YES" VARCHAR, "SCV_INTEREST_IN_AUTOMOTIVE_YES" VARCHAR, "SCV_AUTO_OWNER_YES" VARCHAR, "SCV_INTEREST_IN_BOATING_YES" VARCHAR, "SCV_PURCHASE_VIA_ONLINE_YES" VARCHAR, "SCV_CAT_ENTHUSIAST_YES" VARCHAR, "SCV_PRESENCE_OF_CELL_PHONE_YES" VARCHAR, "SCV_INTEREST_IN_CHILD_PARENT_PRODUCTS_YES" VARCHAR, "SCV_INTEREST_IN_CLOTHING_YES" VARCHAR, "SCV_INTEREST_IN_COLLECTORS_YES" VARCHAR, "SCV_INTREST_IN_COMMUNICATIONS_CONNECTIVTY_YES" VARCHAR, "SCV_COMPUTER_COMPONENTS_YES" VARCHAR, "SCV_INTEREST_IN_CRAFTS_YES" VARCHAR, "SCV_INTEREST_IN_CRUISES_YES" VARCHAR, "SCV_DOG_ENTHUSIAST_YES" VARCHAR, "SCV_INTEREST_IN_DO_IT_YOURSELF_DYI_YES" VARCHAR, "SCV_INTEREST_IN_DONATING_TO_CHARITIES_YES" VARCHAR, "SCV_INTEREST_IN_ENVIRONMENTAL_CAUSES_YES" VARCHAR, "SCV_INTEREST_IN_FITNESS_YES" VARCHAR, "SCV_INTEREST_IN_GARDENING_YES" VARCHAR, "SCV_INTEREST_IN_GOLF_YES" VARCHAR, "SCV_GRANDPARENT_YES" VARCHAR, "SCV_HEALTHY_LIVING_YES" VARCHAR, "SCV_INTEREST_IN_HOME_DEC_FURNISHING_YES" VARCHAR, "SCV_INTEREST_IN_HOME_ENT_TV_VIDEO_YES" VARCHAR, "SCV_INTERNET_ONLINE_SUBSCRIBER_YES" VARCHAR, "SCV_INVESTOR_YES" VARCHAR, "SCV_INTEREST_IN_KTCHN_AIDS_SM_APPLICANCES_YES" VARCHAR, "SCV_MAIL_ORDER_BUYER_YES" VARCHAR, "SCV_MAIL_ORDER_MULTI_BUYER_YES" VARCHAR, "SCV_PURCHASES_IN_BOOKS_MAGAZINES_YES" VARCHAR, "SCV_PURCHASES_CLOTHING_SHOES_YES" VARCHAR, "SCV_PURCHASES_GARDENING_PRODUCTS_YES" VARCHAR, "SCV_PURCHASES_GIFTSYES" VARCHAR, "SCV_PURCHASES_INSURANCE_FINANCIAL_PRODUCTS_YES" VARCHAR, "SCV_PURCHASE_JEWELRY_COSMETICS_YES" VARCHAR, "SCV_PURCHASES_IN_MUSIC_VIDEO_YES" VARCHAR, "SCV_INTEREST_IN_MUSIC_YES" VARCHAR, "SCV_INTERST_IN_CHRISTIAN_MUSIC_YES" VARCHAR, "SCV_INTERET_IN_CLSSIC_OPERA_BG_BAND_MUSIC_YES" VARCHAR, "SCV_INTEREST_IN_COUNTRY_MUSIC_YES" VARCHAR, "SCV_INTEREST_IN_ROCK_MUSIC_YES" VARCHAR, "SCV_MUTUAL_FUNDS_ANNUITIES_HOLDING_YES" VARCHAR, "SCV_INTEREST_IN_OUTDOOR_YES" VARCHAR, "SCV_INTEREST_IN_PETS_YES" VARCHAR, "SCV_INTEREST_IN_PHOTOGRAPHY_YES" VARCHAR, "SCV_INTEREST_IN_POLITICS_YES" VARCHAR, "SCV_INTEREST_IN_READING_YES" VARCHAR, "SCV_INTERST_IN_RELIGION_YES" VARCHAR, "SCV_INTEREST_IN_SELF_IMPROVEMENT_YES" VARCHAR, "SCV_INTEREST_IN_SKIING_YES" VARCHAR, "SCV_INTEREST_IN_SPORTS_YES" VARCHAR, "SCV_INTEREST_IN_SWEEPSTAKES_GAMBLING_YES" VARCHAR, "SCV_INTEREST_IN_TRAVEL_YES" VARCHAR, "SCV_INTEREST_IN_DOMESTIC_TRAVEL_YES" VARCHAR, "SCV_INTEREST_IN_FOREIGN_TRAVEL_YES" VARCHAR, "SCV_WEIGHT_CONSCIOUS_YES" VARCHAR, "SCV_MOBILE_USERS_MOBIRARTI_S" VARCHAR, "SCV_MOBILE_USERS_SOCIAL_CONNECTORS" VARCHAR, "SCV_MOBILE_USERS_PRAGMATIC_ADOPTERS" VARCHAR, "SCV_MOBILE_USERS_BASIC_PLANNERS" VARCHAR, "SCV_MOBILE_USERS_MOBILE_PROFESSIONALS" VARCHAR, "SCV_MOBILE_USERS_NO_MOBILE_PHONE" VARCHAR, "SCV_TECHNOLOGY_ADOPTION__TECHNOLOGY_WIZARDS" VARCHAR, "SCV_TECHNOLOGY_ADOPTION__TECHNOLOGY_JOURNEYMEN" VARCHAR, "SCV_TECHNOLOGY_ADOPTION__TECHNOLOGY_APPRENTICES" VARCHAR, "SCV_TECHNOLOGY_ADOPTION__TECHNOLOGY_NOVICES" VARCHAR, "SCV_HEALTH_AND_WELL_BEING_INVINCIBLES" VARCHAR, "SCV_HEALTH_AND_WELL_BEING_TRUSTING_PATIENTS" VARCHAR, "SCV_HEALTH_AND_WELL_BEING_WEIGHT_REFORMERS" VARCHAR, "SCV_HEALTH_AND_WELL_BEING_HEALTHY_HOLISTICS" VARCHAR, "SCV_HEALTH_AND_WELL_BEING_IMAGE_SHAPERS" VARCHAR, "SCV_RETAIL_SHOPPER_JUST_THE_ESSENTIALS" VARCHAR, "SCV_RETAIL_SHOPPER_STATUS_STRIVERS" VARCHAR, "SCV_RETAIL_SHOPPER_MALL_MANIACS" VARCHAR, "SCV_RETAIL_SHOPPER_UPSCALE_CLICKS_AND_BRICKS" VARCHAR, "SCV_RETAIL_SHOPPER_VIRTUAL_SHOPPERS" VARCHAR, "SCV_RETAIL_SHOPPER_ORIGINAL_TRADITIONALISTS" VARCHAR, "SCV_EI_RELIGION_B_BUDDHIST" VARCHAR, "SCV_EI_RELIGION_C_CATHOLIC" VARCHAR, "SCV_EI_RELIGION_E_ETHIOPIAN_ORTHODOX" VARCHAR, "SCV_EI_RELIGION_H_HINDU" VARCHAR, "SCV_EI_RELIGION_I_MUSLIM" VARCHAR, "SCV_EI_RELIGION_J_JEWISH" VARCHAR, "SCV_EI_RELIGION_K_SIKH" VARCHAR, "SCV_EI_RELIGION_L_LUTHERAN" VARCHAR, "SCV_EI_RELIGION_M_MORMON" VARCHAR, "SCV_EI_RELIGION_O_EASTERN_ORTHODOX" VARCHAR, "SCV_EI_RELIGION_P_PROTESTANT" VARCHAR, "SCV_EI_RELIGION_S_SHINTO" VARCHAR, "SCV_POL_AFFLIATE_1D_KNOWN_DEMOCRAT" VARCHAR, "SCV_POL_AFFLIATE_1I_KNOWN_INDEPENDENT_OTHER" VARCHAR, "SCV_POL_AFFLIATE_1R_KNOWN_REPUBLICAN" VARCHAR, "SCV_POL_AFFLIATE_5D_INFERRED_DEMOCRAT" VARCHAR, "SCV_POL_AFFLIATE_5I_INFERRED_INDEPENDENT_OTHER" VARCHAR, "SCV_POL_AFFLIATE_5N_INFERRED_NON_REGISTERED" VARCHAR, "SCV_POL_AFFLIATE_5R_INFERRED_REPUBLICAN" VARCHAR, "SCV_VITAMINS__HEALTH_PRODUCTS_DOLLAR_219_9999" VARCHAR, "SCV_VITAMINS__HEALTH_PRODUCTS_DOLLAR_31_218" VARCHAR, "SCV_VITAMINS__HEALTH_PRODUCTS_DOLLAR_1_30" VARCHAR, "SCV_COSMETICS_PERFUME_DOLLAR_207_9999" VARCHAR, "SCV_COSMETICS_PERFUME_DOLLAR_28_206" VARCHAR, "SCV_COSMETICS_PERFUME_DOLLAR_1_27" VARCHAR, "SCV_EI_COUNTRY_OF_ORIGIN__ARGENTINA" VARCHAR, "SCV_EI_COUNTRY_OF_ORIGIN__BOLIVIA" VARCHAR, "SCV_EI_COUNTRY_OF_ORIGIN__CHILE" VARCHAR, "SCV_EI_COUNTRY_OF_ORIGIN__COLOMBIA" VARCHAR, "SCV_EI_COUNTRY_OF_ORIGIN__COSTA_RICA" VARCHAR, "SCV_EI_COUNTRY_OF_ORIGIN__CUBA" VARCHAR, "SCV_EI_COUNTRY_OF_ORIGIN__DOMINICAN_REPUBLIC" VARCHAR, "SCV_EI_COUNTRY_OF_ORIGIN__ECUADOR" VARCHAR, "SCV_EI_COUNTRY_OF_ORIGIN__EL_SALVADOR" VARCHAR, "SCV_EI_COUNTRY_OF_ORIGIN__GUATEMALA" VARCHAR, "SCV_EI_COUNTRY_OF_ORIGIN__HONDURAS" VARCHAR, "SCV_EI_COUNTRY_OF_ORIGIN__MEXICO" VARCHAR, "SCV_EI_COUNTRY_OF_ORIGIN__NICARAGUA" VARCHAR, "SCV_EI_COUNTRY_OF_ORIGIN__PANAMA" VARCHAR, "SCV_EI_COUNTRY_OF_ORIGIN__PARAGUAY" VARCHAR, "SCV_EI_COUNTRY_OF_ORIGIN__PERU" VARCHAR, "SCV_EI_COUNTRY_OF_ORIGIN__PUERTO_RICO" VARCHAR, "SCV_EI_COUNTRY_OF_ORIGIN__SPAIN" VARCHAR, "SCV_EI_COUNTRY_OF_ORIGIN__URUGUAY" VARCHAR, "SCV_EI_COUNTRY_OF_ORIGIN__VENEZUELA" VARCHAR, "SCV_TRUETOUCH_BRAND_LOYALISTS" VARCHAR, "SCV_TRUETOUCH_BROADCAST_CABLE_TV_1" VARCHAR, "SCV_TRUETOUCH_DEAL_SEEKERS" VARCHAR, "SCV_TRUETOUCH_DIGITAL_DISPLAY" VARCHAR, "SCV_TRUETOUCH_DIGITAL_NEWSPAPER" VARCHAR, "SCV_TRUETOUCH_DIGITAL_VIDEO" VARCHAR, "DIRECT_MAIL_1" VARCHAR, "SCV_TRUETOUCH_DISCOUNT_SUPERCENTER" VARCHAR, "SCV_TRUETOUCH_EBID_SITES" VARCHAR, "SCV_TRUETOUCH_ETAIL_ONLY" VARCHAR, "SCV_TRUETOUCH_IN_THE_MOMENT_SHOPPERS" VARCHAR, "SCV_TRUETOUCH_MAINSTREAM_ADOPTERS" VARCHAR, "SCV_TRUETOUCH_MID_HIGH_END_STORE" VARCHAR, "SCV_TRUETOUCH_MOBILE_SMS_MMS" VARCHAR, "SCV_TRUETOUCH_NOVELTY_SEEKERS" VARCHAR, "SCV_TRUETOUCH_ONLINE_DEAL_VOUCHER" VARCHAR, "SCV_TRUETOUCH_ORGANIC_AND_NATURAL" VARCHAR, "SCV_TRUETOUCH_QUALITY_MATTERS" VARCHAR, "SCV_TRUETOUCH_RADIO" VARCHAR, "SCV_TRUETOUCH_RECREATIONAL_SHOPPERS" VARCHAR, "SCV_TRUETOUCH_SAVVY_RESEARCHERS" VARCHAR, "SCV_TRUETOUCH_SPECIALTY_DEPT_STORE" VARCHAR, "SCV_TRUETOUCH_SPECIALTY_OR_BOUTIQUE" VARCHAR, "SCV_TRUETOUCH_STREAMING_TV" VARCHAR, "SCV_TRUETOUCH_TRADITIONAL_NEWSPAPER" VARCHAR, "SCV_TRUETOUCH_TRENDSETTERS" VARCHAR, "SCV_TRUETOUCH_WHOLESALE" VARCHAR, "_SF_INSERTEDDATETIME" DATETIME );
CREATE TABLE IDN_BASE_TABLE ( PRODUCT_NAME VARCHAR2 (20), PRIMARY KEY (PRODUCT_NAME)) / INSERT INTO IDN_BASE_TABLE values ('WSO2 Identity Server') / CREATE TABLE IDN_OAUTH_CONSUMER_APPS ( CONSUMER_KEY VARCHAR2 (512), CONSUMER_SECRET VARCHAR2 (512), USERNAME VARCHAR2 (255), TENANT_ID INTEGER DEFAULT 0, APP_NAME VARCHAR2 (255), OAUTH_VERSION VARCHAR2 (128), CALLBACK_URL VARCHAR2 (1024), GRANT_TYPES VARCHAR (1024), PRIMARY KEY (CONSUMER_KEY)) / CREATE TABLE IDN_OAUTH1A_REQUEST_TOKEN ( REQUEST_TOKEN VARCHAR2 (512), REQUEST_TOKEN_SECRET VARCHAR2 (512), CONSUMER_KEY VARCHAR2 (512), CALLBACK_URL VARCHAR2 (1024), SCOPE VARCHAR2(2048), AUTHORIZED VARCHAR2 (128), OAUTH_VERIFIER VARCHAR2 (512), AUTHZ_USER VARCHAR2 (512), PRIMARY KEY (REQUEST_TOKEN), FOREIGN KEY (CONSUMER_KEY) REFERENCES IDN_OAUTH_CONSUMER_APPS(CONSUMER_KEY) ON DELETE CASCADE) / CREATE TABLE IDN_OAUTH1A_ACCESS_TOKEN ( ACCESS_TOKEN VARCHAR2 (512), ACCESS_TOKEN_SECRET VARCHAR2 (512), CONSUMER_KEY VARCHAR2 (512), SCOPE VARCHAR2(2048), AUTHZ_USER VARCHAR2 (512), PRIMARY KEY (ACCESS_TOKEN), FOREIGN KEY (CONSUMER_KEY) REFERENCES IDN_OAUTH_CONSUMER_APPS(CONSUMER_KEY) ON DELETE CASCADE) / CREATE TABLE IDN_OAUTH2_AUTHORIZATION_CODE ( AUTHORIZATION_CODE VARCHAR2 (512), CONSUMER_KEY VARCHAR2 (512), CALLBACK_URL VARCHAR2 (1024), SCOPE VARCHAR2(2048), AUTHZ_USER VARCHAR2 (512), TIME_CREATED TIMESTAMP, VALIDITY_PERIOD NUMBER(19), PRIMARY KEY (AUTHORIZATION_CODE), FOREIGN KEY (CONSUMER_KEY) REFERENCES IDN_OAUTH_CONSUMER_APPS(CONSUMER_KEY) ON DELETE CASCADE) / CREATE TABLE IDN_OAUTH2_ACCESS_TOKEN ( ACCESS_TOKEN VARCHAR2 (255), REFRESH_TOKEN VARCHAR2 (255), CONSUMER_KEY VARCHAR2 (255), AUTHZ_USER VARCHAR2 (255), USER_TYPE VARCHAR (25), TIME_CREATED TIMESTAMP, VALIDITY_PERIOD NUMBER(19), TOKEN_SCOPE VARCHAR2 (2048), TOKEN_STATE VARCHAR2 (25) DEFAULT 'ACTIVE', TOKEN_STATE_ID VARCHAR (256) DEFAULT 'NONE', PRIMARY KEY (ACCESS_TOKEN), FOREIGN KEY (CONSUMER_KEY) REFERENCES IDN_OAUTH_CONSUMER_APPS(CONSUMER_KEY) ON DELETE CASCADE, CONSTRAINT CON_APP_KEY UNIQUE (CONSUMER_KEY,AUTHZ_USER,USER_TYPE,TOKEN_SCOPE,TOKEN_STATE,TOKEN_STATE_ID)) / CREATE INDEX IDX_AT_CK_AU ON IDN_OAUTH2_ACCESS_TOKEN(CONSUMER_KEY, AUTHZ_USER, TOKEN_STATE, USER_TYPE) / CREATE TABLE IDN_OAUTH2_SCOPE ( SCOPE_ID INTEGER, SCOPE_KEY VARCHAR2 (100) NOT NULL, NAME VARCHAR2 (255) NULL, DESCRIPTION VARCHAR2 (512) NULL, TENANT_ID INTEGER DEFAULT 0 NOT NULL, ROLES VARCHAR2 (500) NULL, PRIMARY KEY (SCOPE_ID)) / CREATE SEQUENCE IDN_OAUTH2_SCOPE_SEQUENCE START WITH 1 INCREMENT BY 1 NOCACHE / CREATE OR REPLACE TRIGGER IDN_OAUTH2_SCOPE_TRIGGER BEFORE INSERT ON IDN_OAUTH2_SCOPE REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT IDN_OAUTH2_SCOPE_SEQUENCE.nextval INTO :NEW.SCOPE_ID FROM dual; END; / CREATE TABLE IDN_OAUTH2_RESOURCE_SCOPE ( RESOURCE_PATH VARCHAR2 (255) NOT NULL, SCOPE_ID INTEGER NOT NULL, PRIMARY KEY (RESOURCE_PATH), FOREIGN KEY (SCOPE_ID) REFERENCES IDN_OAUTH2_SCOPE (SCOPE_ID)) / CREATE TABLE IDN_SCIM_GROUP ( ID INTEGER, TENANT_ID INTEGER NOT NULL, ROLE_NAME VARCHAR2(255) NOT NULL, ATTR_NAME VARCHAR2(1024) NOT NULL, ATTR_VALUE VARCHAR2(1024), PRIMARY KEY (ID)) / CREATE SEQUENCE IDN_SCIM_GROUP_SEQUENCE START WITH 1 INCREMENT BY 1 NOCACHE / CREATE OR REPLACE TRIGGER IDN_SCIM_GROUP_TRIGGER BEFORE INSERT ON IDN_SCIM_GROUP REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT IDN_SCIM_GROUP_SEQUENCE.nextval INTO :NEW.ID FROM dual; END; / CREATE TABLE IDN_SCIM_PROVIDER ( CONSUMER_ID VARCHAR(255) NOT NULL, PROVIDER_ID VARCHAR(255) NOT NULL, USER_NAME VARCHAR(255) NOT NULL, USER_PASSWORD VARCHAR(255) NOT NULL, USER_URL VARCHAR(1024) NOT NULL, GROUP_URL VARCHAR(1024), BULK_URL VARCHAR(1024), PRIMARY KEY (CONSUMER_ID,PROVIDER_ID)) / CREATE TABLE IDN_OPENID_REMEMBER_ME ( USER_NAME VARCHAR(255) NOT NULL, TENANT_ID INTEGER DEFAULT 0, COOKIE_VALUE VARCHAR(1024), CREATED_TIME TIMESTAMP, PRIMARY KEY (USER_NAME, TENANT_ID)) / CREATE TABLE IDN_OPENID_USER_RPS ( USER_NAME VARCHAR(255) NOT NULL, TENANT_ID INTEGER DEFAULT 0, RP_URL VARCHAR(255) NOT NULL, TRUSTED_ALWAYS VARCHAR(128) DEFAULT 'FALSE', LAST_VISIT DATE NOT NULL, VISIT_COUNT INTEGER DEFAULT 0, DEFAULT_PROFILE_NAME VARCHAR(255) DEFAULT 'DEFAULT', PRIMARY KEY (USER_NAME, TENANT_ID, RP_URL)) / CREATE TABLE IDN_OPENID_ASSOCIATIONS ( HANDLE VARCHAR(255) NOT NULL, ASSOC_TYPE VARCHAR(255) NOT NULL, EXPIRE_IN TIMESTAMP NOT NULL, MAC_KEY VARCHAR(255) NOT NULL, ASSOC_STORE VARCHAR(128) DEFAULT 'SHARED', PRIMARY KEY (HANDLE)) / CREATE TABLE IDN_STS_STORE ( ID INTEGER, TOKEN_ID VARCHAR(255) NOT NULL, TOKEN_CONTENT BLOB NOT NULL, CREATE_DATE TIMESTAMP NOT NULL, EXPIRE_DATE TIMESTAMP NOT NULL, STATE INTEGER DEFAULT 0, PRIMARY KEY (ID)) / CREATE SEQUENCE IDN_STS_STORE_SEQUENCE START WITH 1 INCREMENT BY 1 NOCACHE / CREATE OR REPLACE TRIGGER IDN_STS_STORE_TRIGGER BEFORE INSERT ON IDN_STS_STORE REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT IDN_STS_STORE_SEQUENCE.nextval INTO :NEW.ID FROM dual; END; / CREATE TABLE IDN_IDENTITY_USER_DATA ( TENANT_ID INTEGER DEFAULT -1234, USER_NAME VARCHAR(255) NOT NULL, DATA_KEY VARCHAR(255) NOT NULL, DATA_VALUE VARCHAR(255) NOT NULL, PRIMARY KEY (TENANT_ID, USER_NAME, DATA_KEY)) / CREATE TABLE IDN_IDENTITY_META_DATA ( USER_NAME VARCHAR(255) NOT NULL, TENANT_ID INTEGER DEFAULT -1234, METADATA_TYPE VARCHAR(255) NOT NULL, METADATA VARCHAR(255) NOT NULL, VALID VARCHAR(255) NOT NULL, PRIMARY KEY (TENANT_ID, USER_NAME, METADATA_TYPE,METADATA)) / CREATE TABLE IDN_THRIFT_SESSION ( SESSION_ID VARCHAR2(255) NOT NULL, USER_NAME VARCHAR2(255) NOT NULL, CREATED_TIME VARCHAR2(255) NOT NULL, LAST_MODIFIED_TIME VARCHAR2(255) NOT NULL, PRIMARY KEY (SESSION_ID) ) / CREATE TABLE IDN_ASSOCIATED_ID ( ID INTEGER, IDP_USER_ID VARCHAR(255) NOT NULL, TENANT_ID INTEGER DEFAULT -1234, IDP_ID VARCHAR(255) NOT NULL, USER_NAME VARCHAR(255) NOT NULL, PRIMARY KEY (ID), UNIQUE(IDP_USER_ID, TENANT_ID, IDP_ID) ) / CREATE SEQUENCE IDN_ASSOCIATED_ID_SEQ START WITH 1 INCREMENT BY 1 NOCACHE / CREATE OR REPLACE TRIGGER IDN_ASSOCIATED_ID_TRIG BEFORE INSERT ON IDN_ASSOCIATED_ID REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT IDN_ASSOCIATED_ID_SEQ.nextval INTO :NEW.ID FROM dual; END; /
UPDATE CqlDemo.MyCounter SET cval=cval+1 WHERE id=44a2054c-f98b-43a7-833d-0e1358fdaa82; UPDATE CqlDemo.MyCounter SET cval=cval+2 WHERE id=44a2054c-f98b-43a7-833d-0e1358fdaa82; UPDATE CqlDemo.MyCounter SET cval=cval+3 WHERE id=44a2054c-f98b-43a7-833d-0e1358fdaa82;
create or replace function box.ui_notification( topic text, users text[], payload json ) returns void as $$ declare output text := ''; begin output := row_to_json( (SELECT ColumnName FROM (SELECT topic,users,payload) AS ColumnName (topic,allowed_users,payload)) )::text; -- subtracting the amount from the sender's account PERFORM pg_notify('ui_feedback_channel',output); end; $$ LANGUAGE plpgsql; create or replace function box.ui_notification_forall( topic text, payload json ) returns void as $$ begin PERFORM box.ui_notification(topic,'{"ALL_USERS"}'::text[],payload); end; $$ LANGUAGE plpgsql;
-- @testpoint:opengauss关键字describe(非保留),作为字段数据类型(合理报错) --前置条件 drop table if exists describe_test cascade; --关键字不带引号-合理报错 create table describe_test(id int,name describe); --关键字带双引号-合理报错 create table describe_test(id int,name "describe"); --关键字带单引号-合理报错 create table describe_test(id int,name 'describe'); --关键字带反引号-合理报错 create table describe_test(id int,name `describe`);
CREATE FUNCTION tSQLt.System_Parameters (@ObjectId INT) RETURNS @Parameters TABLE ( [object_id] [int] NOT NULL, [name] [sysname] NULL, [parameter_id] [int] NOT NULL, [system_type_id] [tinyint] NOT NULL, [user_type_id] [int] NOT NULL, [max_length] [smallint] NOT NULL, [precision] [tinyint] NOT NULL, [scale] [tinyint] NOT NULL, [is_output] [bit] NOT NULL, [is_cursor_ref] [bit] NOT NULL, [has_default_value] [bit] NOT NULL, [is_xml_document] [bit] NOT NULL, [default_value] [sql_variant] NULL, [xml_collection_id] [int] NOT NULL, [is_readonly] [bit] NOT NULL, [is_nullable] [bit] NULL, [encryption_type] [int] NULL, [encryption_type_desc] [nvarchar](64) NULL, [encryption_algorithm_name] [sysname] NULL, [column_encryption_key_id] [int] NULL, [column_encryption_key_database_name] [sysname] NULL ) AS BEGIN INSERT INTO @Parameters SELECT [object_id], [name], [parameter_id], [system_type_id], [user_type_id], [max_length], [precision], [scale], [is_output], [is_cursor_ref], [has_default_value], [is_xml_document], [default_value], [xml_collection_id], [is_readonly], [is_nullable], [encryption_type], [encryption_type_desc], [encryption_algorithm_name], [column_encryption_key_id], [column_encryption_key_database_name] FROM sys.parameters WHERE object_id = @ObjectId RETURN; END; GO
CREATE TABLE bandenwissel (ID int(10) NOT NULL AUTO_INCREMENT, DR_ID int(10) NOT NULL, Change_Time varchar(255), Car_Nr int(10), Tyre_Type varchar(255) NOT NULL, PRIMARY KEY (ID)); CREATE TABLE brand (Tyre_type varchar(255) NOT NULL, tyreBrand varchar(255), tyreGrade varchar(255), dutyTime varchar(255), PRIMARY KEY (Tyre_type)); CREATE TABLE circuit (C_ID varchar(255) NOT NULL, Circuit varchar(255), City varchar(255), Country varchar(255), PRIMARY KEY (C_ID)); CREATE TABLE driver (D_ID int(10) NOT NULL AUTO_INCREMENT, Driver varchar(255), Team_Code varchar(255) NOT NULL, PRIMARY KEY (D_ID)); CREATE TABLE driver_race (DR_ID int(10) NOT NULL AUTO_INCREMENT, D_ID int(10) NOT NULL, `Date` int(10), RaceTime varchar(255), PRIMARY KEY (DR_ID)); CREATE TABLE Race (`Date` int(10) NOT NULL AUTO_INCREMENT, C_ID varchar(255) NOT NULL, PRIMARY KEY (`Date`)); CREATE TABLE Team (Team_Code varchar(255) NOT NULL, TeamName varchar(255), driverD_ID int(10) NOT NULL, PRIMARY KEY (Team_Code)); ALTER TABLE bandenwissel ADD CONSTRAINT FKbandenwiss866110 FOREIGN KEY (DR_ID) REFERENCES driver_race (DR_ID); ALTER TABLE driver_race ADD CONSTRAINT FKdriver_rac959333 FOREIGN KEY (D_ID) REFERENCES driver (D_ID); ALTER TABLE Team ADD CONSTRAINT FKTeam8924 FOREIGN KEY (driverD_ID) REFERENCES driver (D_ID); ALTER TABLE driver ADD CONSTRAINT FKdriver304487 FOREIGN KEY (Team_Code) REFERENCES Team (Team_Code); ALTER TABLE Race ADD CONSTRAINT FKRace677853 FOREIGN KEY (C_ID) REFERENCES circuit (C_ID); ALTER TABLE bandenwissel ADD CONSTRAINT FKbandenwiss305596 FOREIGN KEY (Tyre_Type) REFERENCES brand (Tyre_type); ALTER TABLE bandenwissel DROP FOREIGN KEY FKbandenwiss866110; ALTER TABLE driver_race DROP FOREIGN KEY FKdriver_rac959333; ALTER TABLE Team DROP FOREIGN KEY FKTeam8924; ALTER TABLE driver DROP FOREIGN KEY FKdriver304487; ALTER TABLE Race DROP FOREIGN KEY FKRace677853; ALTER TABLE bandenwissel DROP FOREIGN KEY FKbandenwiss305596; DROP TABLE IF EXISTS bandenwissel; DROP TABLE IF EXISTS brand; DROP TABLE IF EXISTS circuit; DROP TABLE IF EXISTS driver; DROP TABLE IF EXISTS driver_race; DROP TABLE IF EXISTS Race; DROP TABLE IF EXISTS Team;
<gh_stars>0 /* Navicat Premium Data Transfer Source Server : localhost Source Server Type : MySQL Source Server Version : 50718 Source Host : localhost Source Database : booking Target Server Type : MySQL Target Server Version : 50718 File Encoding : utf-8 Date: 11/05/2018 23:29:47 PM */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for `article_category` -- ---------------------------- DROP TABLE IF EXISTS `article_category`; CREATE TABLE `article_category` ( `article_id` int(10) unsigned NOT NULL, `category_id` int(10) unsigned NOT NULL, KEY `article_category_article_id_foreign` (`article_id`), KEY `article_category_category_id_foreign` (`category_id`), CONSTRAINT `article_category_article_id_foreign` FOREIGN KEY (`article_id`) REFERENCES `articles` (`id`) ON DELETE CASCADE, CONSTRAINT `article_category_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `category` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Table structure for `article_content` -- ---------------------------- DROP TABLE IF EXISTS `article_content`; CREATE TABLE `article_content` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `article_id` int(10) unsigned NOT NULL, `lang` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci NOT NULL, `meta_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_keywords` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `article_content_article_id_foreign` (`article_id`), CONSTRAINT `article_content_article_id_foreign` FOREIGN KEY (`article_id`) REFERENCES `articles` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of `article_content` -- ---------------------------- BEGIN; INSERT INTO `article_content` VALUES ('1', '1', 'en', 'Istay Services Apartment 1', null, '', 'Meta title', 'meta desc', null), ('2', '2', 'en', 'Room 1 - istay1', null, '', null, null, null), ('3', '3', 'en', 'Room 2 istay 1', null, '', null, null, null), ('4', '4', 'en', 'Room 3 - istay1', null, '', null, null, null), ('5', '5', 'en', 'Istay Services Apartment 2', null, '', null, null, null); COMMIT; -- ---------------------------- -- Table structure for `article_services` -- ---------------------------- DROP TABLE IF EXISTS `article_services`; CREATE TABLE `article_services` ( `article_id` int(10) unsigned NOT NULL, `services_id` int(10) unsigned NOT NULL, KEY `article_services_article_id_foreign` (`article_id`), KEY `article_services_services_id_foreign` (`services_id`), CONSTRAINT `article_services_article_id_foreign` FOREIGN KEY (`article_id`) REFERENCES `articles` (`id`) ON DELETE CASCADE, CONSTRAINT `article_services_services_id_foreign` FOREIGN KEY (`services_id`) REFERENCES `services` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of `article_services` -- ---------------------------- BEGIN; INSERT INTO `article_services` VALUES ('1', '1'), ('1', '2'), ('1', '3'), ('1', '4'), ('1', '5'), ('1', '6'), ('1', '7'), ('1', '8'), ('5', '1'), ('5', '2'), ('5', '4'), ('5', '6'), ('5', '7'), ('5', '8'); COMMIT; -- ---------------------------- -- Table structure for `articles` -- ---------------------------- DROP TABLE IF EXISTS `articles`; CREATE TABLE `articles` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` int(11) NOT NULL, `view` int(11) NOT NULL DEFAULT '0', `parent_id` int(10) unsigned DEFAULT NULL, `user_id` int(10) unsigned NOT NULL, `system_link_type_id` tinyint(4) NOT NULL, `landing_type` tinyint(4) DEFAULT NULL COMMENT '1.istay 2.room', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `articles_slug_unique` (`slug`), KEY `articles_parent_id_foreign` (`parent_id`), KEY `articles_user_id_foreign` (`user_id`), CONSTRAINT `articles_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `articles` (`id`) ON DELETE CASCADE, CONSTRAINT `articles_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of `articles` -- ---------------------------- BEGIN; INSERT INTO `articles` VALUES ('1', 'istay-services-apartment-1', '/uploads/posts/2018/11/20181103080014-7.jpg', '0', '0', null, '1', '4', '1', '1', '2018-11-02 20:57:30', '2018-11-03 08:00:47'), ('2', 'room-1-istay1', '/uploads/posts/2018/11/20181102211033-2.jpg', '244', '0', '1', '1', '4', '2', '1', '2018-11-02 21:10:33', '2018-11-02 21:10:33'), ('3', 'room-2-istay-1', '/uploads/posts/2018/11/20181102212541-4.jpg', '300', '0', '1', '1', '4', '2', '1', '2018-11-02 21:25:41', '2018-11-02 21:25:41'), ('4', 'room-3-istay1', '/uploads/posts/2018/11/20181102212714-3.jpg', '350', '0', '1', '1', '4', '2', '1', '2018-11-02 21:27:14', '2018-11-02 21:27:14'), ('5', 'istay-services-apartment-2', '/uploads/posts/2018/11/20181103080340-3.jpg', '0', '0', null, '1', '4', '1', '1', '2018-11-03 08:03:40', '2018-11-03 08:03:40'); COMMIT; -- ---------------------------- -- Table structure for `category` -- ---------------------------- DROP TABLE IF EXISTS `category`; CREATE TABLE `category` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `parent_id` int(10) unsigned DEFAULT NULL, `system_link_type_id` tinyint(4) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`id`), UNIQUE KEY `category_slug_unique` (`slug`), KEY `category_parent_id_foreign` (`parent_id`), CONSTRAINT `category_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `category` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Table structure for `category_content` -- ---------------------------- DROP TABLE IF EXISTS `category_content`; CREATE TABLE `category_content` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `lang` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `category_id` int(10) unsigned DEFAULT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_keywords` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `category_content_category_id_foreign` (`category_id`), CONSTRAINT `category_content_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `category` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Table structure for `comment` -- ---------------------------- DROP TABLE IF EXISTS `comment`; CREATE TABLE `comment` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `comment_user_id_foreign` (`user_id`), CONSTRAINT `comment_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of `comment` -- ---------------------------- BEGIN; INSERT INTO `comment` VALUES ('1', '1', '2018-11-03 07:15:06', '2018-11-03 07:15:06'), ('2', '1', '2018-11-03 07:15:18', '2018-11-03 07:15:18'), ('3', '1', '2018-11-03 07:15:40', '2018-11-03 07:15:40'), ('4', '1', '2018-11-03 07:16:00', '2018-11-03 07:16:00'); COMMIT; -- ---------------------------- -- Table structure for `comment_content` -- ---------------------------- DROP TABLE IF EXISTS `comment_content`; CREATE TABLE `comment_content` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `lang` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', `comment_id` int(10) unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `avatar` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `content` text COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `comment_content_comment_id_foreign` (`comment_id`), CONSTRAINT `comment_content_comment_id_foreign` FOREIGN KEY (`comment_id`) REFERENCES `comment` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of `comment_content` -- ---------------------------- BEGIN; INSERT INTO `comment_content` VALUES ('1', 'en', '1', '<NAME>', '/uploads/comment/2018/11/20181103071506-1.jpg', 'In ut odio libero, at vulputate urna. Nulla tristique mi a massa convallis cursus. Nulla eu mimagna. Etiam suscipit commodo gravida. Lorem ipsum dolor sit amet, conse ctetuer adipiscing elit, sed diam nonu mmy nibh euismod tincidunt ut laoreet dolore magna aliquam erat.'), ('2', 'en', '2', '<NAME>', '/uploads/comment/2018/11/20181103071518-2.jpg', 'In ut odio libero, at vulputate urna. Nulla tristique mi a massa convallis cursus. Nulla eu mimagna. Etiam suscipit commodo gravida. Lorem ipsum dolor sit amet, conse ctetuer adipiscing elit, sed diam nonu mmy nibh euismod tincidunt ut laoreet dolore magna aliquam erat.'), ('3', 'en', '3', '<NAME>', '/uploads/comment/2018/11/20181103071540-4.jpg', 'In ut odio libero, at vulputate urna. Nulla tristique mi a massa convallis cursus. Nulla eu mimagna. Etiam suscipit commodo gravida. Lorem ipsum dolor sit amet, conse ctetuer adipiscing elit, sed diam nonu mmy nibh euismod tincidunt ut laoreet dolore magna aliquam erat.'), ('4', 'en', '4', 'Herrmione', '/uploads/comment/2018/11/20181103071600-2.jpg', 'In ut odio libero, at vulputate urna. Nulla tristique mi a massa convallis cursus. Nulla eu mimagna. Etiam suscipit commodo gravida. Lorem ipsum dolor sit amet, conse ctetuer adipiscing elit, sed diam nonu mmy nibh euismod tincidunt ut laoreet dolore magna aliquam erat.'); COMMIT; -- ---------------------------- -- Table structure for `contact` -- ---------------------------- DROP TABLE IF EXISTS `contact`; CREATE TABLE `contact` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `note` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'save all information: where, when', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of `contact` -- ---------------------------- BEGIN; INSERT INTO `contact` VALUES ('1', 'hung', '<EMAIL>', '0911222333', null, 'Thời gian: 11/05/2018 - 11/05/2018\nNgười lớn: 2\nTrẻ em: 0'), ('2', 'hung', '<EMAIL>', '0911222333', null, 'Thời gian: 11/05/2018 - 11/05/2018\nNgười lớn: 2\nTrẻ em: 0'), ('3', 'hung', '<EMAIL>', '0911222333', null, 'Thời gian: 11/05/2018 - 11/05/2018\nNgười lớn: 2\nTrẻ em: 0'), ('4', 'hung', '<EMAIL>', '0911222333', null, 'Thời gian: 11/05/2018 - 11/05/2018\nNgười lớn: 2\nTrẻ em: 0'), ('5', 'hung', '<EMAIL>', '0911222333', null, 'Thời gian: 11/05/2018 - 11/05/2018\nNgười lớn: 2\nTrẻ em: 0'), ('6', 'vvvv', '<EMAIL>', '0911222333', null, 'Thời gian: 11/05/2018 - 11/05/2018\nNgười lớn: 1\nTrẻ em: 0'), ('7', 'nbbdsfgd', null, '0936111222', null, 'Time checkin - checkout: 11/05/2018 - 11/05/2018\nAdult: 1\nChild: 0'), ('8', '<NAME>', '<EMAIL>', '0911222999', null, 'Time checkin - checkout: 11/05/2018 - 11/05/2018\nAdult: 1\nChild: 0'), ('9', 'hung', '<EMAIL>', '0915666444', null, 'Time checkin - checkout: 11/05/2018 - 11/05/2018\nAdult: 1\nChild: 0'), ('10', 'hung', '<EMAIL>', '0984666999', null, 'Time checkin - checkout: 11/05/2018 - 11/06/2018<br />Adult: 1<br />Child: 0<br />Room: Room 1 - istay1<br />iStay: Istay Services Apartment 1'), ('11', 'jessica', '<EMAIL>', '01268444999', null, 'Time checkin - checkout: 11/05/2018 - 11/07/2018<br />Adult: 1<br />Child: 0<br />Room: Room 1 - istay1<br />iStay: Istay Services Apartment 1'), ('12', 'Marry', '<EMAIL>', '0911226666', null, 'Time checkin - checkout: 11/05/2018 - 11/07/2018\r\nAdult: 1\r\nChild: 0\r\nRoom: Room 1 - istay1\r\niStay: Istay Services Apartment 1'); COMMIT; -- ---------------------------- -- Table structure for `menu` -- ---------------------------- DROP TABLE IF EXISTS `menu`; CREATE TABLE `menu` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(10) unsigned DEFAULT NULL, `direct` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `route` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `menu_group_id` int(11) NOT NULL, `sort` tinyint(4) NOT NULL DEFAULT '0', `prefix` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `system_link_type_id` tinyint(4) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `menu_parent_id_foreign` (`parent_id`), CONSTRAINT `menu_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `menu` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Table structure for `menu_group` -- ---------------------------- DROP TABLE IF EXISTS `menu_group`; CREATE TABLE `menu_group` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Table structure for `menu_system` -- ---------------------------- DROP TABLE IF EXISTS `menu_system`; CREATE TABLE `menu_system` ( `id` int(11) NOT NULL AUTO_INCREMENT, `label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `route` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `parent_id` int(11) NOT NULL, `sort` tinyint(4) NOT NULL DEFAULT '0', `show` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1,2', `status` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of `menu_system` -- ---------------------------- BEGIN; INSERT INTO `menu_system` VALUES ('1', 'Category', 'icon-grid', 'category', '0', '0', '1,2', '1'), ('2', 'Create Category', 'icon-plus', 'category.create', '1', '1', '1,2', '1'), ('3', 'All Category', 'icon-list', 'category.index', '1', '2', '1,2', '1'), ('4', 'Post', 'icon-book-open', 'post', '0', '1', '1,2', '1'), ('5', 'Create Post', 'icon-plus', 'post.create', '4', '1', '1,2', '1'), ('6', 'All Posts', 'icon-list', 'post.index', '4', '2', '1,2', '1'), ('7', 'Page', 'icon-notebook', 'page', '0', '2', '1,2', '1'), ('8', 'Create Page', 'icon-plus', 'page.create', '7', '1', '1,2', '1'), ('9', 'Create iStay', 'icon-note', 'page.landing', '7', '1', '1,2', '1'), ('10', 'Create Room', 'icon-note', 'page.room', '7', '1', '1,2', '1'), ('11', 'All Pages', 'icon-list', 'page.index', '7', '2', '1,2', '1'), ('12', 'Users', 'icon-user', 'user', '0', '6', '1', '1'), ('13', 'Create User', 'icon-user-follow', 'user.create', '12', '1', '1', '1'), ('14', 'All User', 'icon-users', 'user.index', '12', '2', '1', '1'), ('15', 'Themes', 'icon-globe', 'setting', '0', '7', '1,2', '1'), ('16', 'Menu', 'icon-diamond', 'setting.menu', '15', '1', '1,2', '0'), ('17', 'Setting English', 'icon-settings', 'setting.index', '15', '2', '1,2', '1'), ('18', 'Comment', 'icon-bubble', 'comment', '0', '3', '1,2', '1'), ('19', 'Create comment', 'icon-plus', 'comment.create', '18', '1', '1,2', '1'), ('20', 'All', 'icon-list', 'comment.index', '18', '2', '1,2', '1'), ('21', 'Services', 'icon-badge', 'services', '0', '4', '1,2', '1'), ('22', 'Create Services', 'icon-plus', 'services.create', '21', '1', '1,2', '1'), ('23', 'All', 'icon-list', 'services.index', '21', '2', '1,2', '1'), ('24', 'Contact', 'icon-envelope-open', 'contact.index', '0', '5', '1,2', '1'), ('25', 'Setting Korea', 'icon-settings', 'setting.korea', '15', '3', '1,2', '1'), ('26', 'Setting VN', 'icon-settings', 'setting.vietnam', '15', '4', '1,2', '1'); COMMIT; -- ---------------------------- -- Table structure for `meta_field` -- ---------------------------- DROP TABLE IF EXISTS `meta_field`; CREATE TABLE `meta_field` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `key_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `key_value` text COLLATE utf8mb4_unicode_ci, `article_content_id` int(10) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `meta_field_article_content_id_foreign` (`article_content_id`), CONSTRAINT `meta_field_article_content_id_foreign` FOREIGN KEY (`article_content_id`) REFERENCES `article_content` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of `meta_field` -- ---------------------------- BEGIN; INSERT INTO `meta_field` VALUES ('1', 'range-price', '100$ - 200$', '1'), ('2', 'address', 'No.32, Lane 2, Tran Van Lai Str., Nam Tu Liem dtr., Hanoi', '1'), ('3', 'hotline', '098 168 8118', '1'), ('4', 'google-map', '<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3724.058569015825!2d105.78363901549474!3d21.030342385997418!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3135ab4c70363217%3A0xb4db4afa8230b580!2zMyBQaOG7kSBEdXkgVMOibiwgROG7i2NoIFbhu41uZyBI4bqtdSwgQ-G6p3UgR2nhuqV5LCBIw6AgTuG7mWksIFZp4buHdCBOYW0!5e0!3m2!1svi!2s!4v1541419130975\" width=\"100%\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>', '1'), ('5', 'overview-title', 'Overview Title', '1'), ('6', 'overview-content', 'Overview Content', '1'), ('7', 'feature-heading', 'Feature Heading', '1'), ('8', 'about1-title', 'About Title 1', '1'), ('9', 'about1-description', 'About Description 1', '1'), ('10', 'about2-title', 'About Title 2', '1'), ('11', 'about2-description', 'About Description 2', '1'), ('12', 'gallery-heading', 'Gallery Heading', '1'), ('13', 'gallery-image-1', '/uploads/fields/2018/11/20181102205730-6.jpg', '1'), ('14', 'gallery-image-4', '/uploads/fields/2018/11/20181102205730-3.jpg', '1'), ('15', 'gallery-image-2', '/uploads/fields/2018/11/20181102205730-1.jpg', '1'), ('16', 'gallery-image-5', '/uploads/fields/2018/11/20181102205730-4.jpg', '1'), ('17', 'gallery-image-3', '/uploads/fields/2018/11/20181102205730-2.jpg', '1'), ('18', 'gallery-image-6', '/uploads/fields/2018/11/20181102205730-5.jpg', '1'), ('19', 'overview-title', 'Overview Title room 1', '2'), ('20', 'overview-content', 'Overview Content room 1', '2'), ('21', 'about1-title', 'About Title 1 room 1', '2'), ('22', 'about1-description', 'About Description 1 room 1', '2'), ('23', 'gallery-heading', 'Gallery Heading room 1', '2'), ('24', 'gallery-image-1', '/uploads/fields/2018/11/20181102211033-9.jpg', '2'), ('25', 'gallery-image-4', '/uploads/fields/2018/11/20181102211033-6.jpg', '2'), ('26', 'gallery-image-2', '/uploads/fields/2018/11/20181102211033-8.jpg', '2'), ('27', 'gallery-image-5', '/uploads/fields/2018/11/20181102211033-5.jpg', '2'), ('28', 'gallery-image-3', '/uploads/fields/2018/11/20181102211033-7.jpg', '2'), ('29', 'gallery-image-6', '/uploads/fields/2018/11/20181102211033-4.jpg', '2'), ('30', 'gallery-heading', 'Gallery Heading room 2', '3'), ('31', 'gallery-image-1', '/uploads/fields/2018/11/20181102212541-1.jpg', '3'), ('32', 'gallery-image-4', '/uploads/fields/2018/11/20181102212541-4.jpg', '3'), ('33', 'gallery-image-2', '/uploads/fields/2018/11/20181102212541-2.jpg', '3'), ('34', 'gallery-image-5', '/uploads/fields/2018/11/20181102212541-5.jpg', '3'), ('35', 'gallery-image-3', '/uploads/fields/2018/11/20181102212541-3.jpg', '3'), ('36', 'gallery-image-6', '/uploads/fields/2018/11/20181102212541-7.jpg', '3'), ('37', 'gallery-heading', 'Gallery Heading 3', '4'), ('38', 'gallery-image-1', '/uploads/fields/2018/11/20181102212714-5.jpg', '4'), ('39', 'gallery-image-2', '/uploads/fields/2018/11/20181102212714-8.jpg', '4'), ('40', 'gallery-image-3', '/uploads/fields/2018/11/20181102212714-6.jpg', '4'), ('41', 'range-price', '200 - 300$', '5'), ('42', 'address', 'Add: No.12 alley 39 Dinh Thon, My Dinh, Nam Tu Liem', '5'), ('43', 'hotline', '0981688118', '5'), ('44', 'feature-heading', 'Feature Heading', '5'), ('45', 'about1-title', 'About Title 1', '5'), ('46', 'about1-description', 'About Description 1', '5'), ('47', 'gallery-heading', 'Gallery Heading', '5'), ('48', 'gallery-image-1', '/uploads/fields/2018/11/20181103080340-1.jpg', '5'), ('49', 'gallery-image-4', '/uploads/fields/2018/11/20181103080340-4.jpg', '5'), ('50', 'gallery-image-2', '/uploads/fields/2018/11/20181103080340-2.jpg', '5'), ('51', 'gallery-image-5', '/uploads/fields/2018/11/20181103080340-5.jpg', '5'), ('52', 'gallery-image-3', '/uploads/fields/2018/11/20181103080340-3.jpg', '5'), ('53', 'gallery-image-6', '/uploads/fields/2018/11/20181103080340-8.jpg', '5'); COMMIT; -- ---------------------------- -- Table structure for `migrations` -- ---------------------------- DROP TABLE IF EXISTS `migrations`; CREATE TABLE `migrations` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=225 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of `migrations` -- ---------------------------- BEGIN; INSERT INTO `migrations` VALUES ('201', '2014_10_12_000000_create_users_table', '1'), ('202', '2014_10_12_100000_create_password_resets_table', '1'), ('203', '2016_06_01_000001_create_oauth_auth_codes_table', '1'), ('204', '2016_06_01_000002_create_oauth_access_tokens_table', '1'), ('205', '2016_06_01_000003_create_oauth_refresh_tokens_table', '1'), ('206', '2016_06_01_000004_create_oauth_clients_table', '1'), ('207', '2016_06_01_000005_create_oauth_personal_access_clients_table', '1'), ('208', '2017_08_16_045421_create_menu_system_table', '1'), ('209', '2017_09_10_220943_create_articles_table', '1'), ('210', '2017_09_10_221006_create_category_table', '1'), ('211', '2017_09_10_221017_create_article_category_table', '1'), ('212', '2017_09_24_212525_create_menu_table', '1'), ('213', '2017_09_24_214045_create_menu_group_table', '1'), ('214', '2017_11_13_074422_create_options_table', '1'), ('215', '2018_08_09_042738_create_system_link_type_table', '1'), ('216', '2018_10_21_021921_create_article_content_table', '1'), ('217', '2018_10_21_022942_create_category_content_table', '1'), ('218', '2018_10_22_224317_create_meta_field_table', '1'), ('219', '2018_10_29_021127_create_comment_table', '1'), ('220', '2018_10_29_021152_create_comment_content_table', '1'), ('221', '2018_10_29_021230_create_services_table', '1'), ('222', '2018_10_29_021250_create_services_content_table', '1'), ('223', '2018_10_29_022115_create_contact_table', '1'), ('224', '2018_11_01_202932_create_article_services_table', '1'); COMMIT; -- ---------------------------- -- Table structure for `oauth_access_tokens` -- ---------------------------- DROP TABLE IF EXISTS `oauth_access_tokens`; CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` int(11) DEFAULT NULL, `client_id` int(11) NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `oauth_access_tokens_user_id_index` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Table structure for `oauth_auth_codes` -- ---------------------------- DROP TABLE IF EXISTS `oauth_auth_codes`; CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` int(11) NOT NULL, `client_id` int(11) NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Table structure for `oauth_clients` -- ---------------------------- DROP TABLE IF EXISTS `oauth_clients`; CREATE TABLE `oauth_clients` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `oauth_clients_user_id_index` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Table structure for `oauth_personal_access_clients` -- ---------------------------- DROP TABLE IF EXISTS `oauth_personal_access_clients`; CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `client_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `oauth_personal_access_clients_client_id_index` (`client_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Table structure for `oauth_refresh_tokens` -- ---------------------------- DROP TABLE IF EXISTS `oauth_refresh_tokens`; CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Table structure for `options` -- ---------------------------- DROP TABLE IF EXISTS `options`; CREATE TABLE `options` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `value` text COLLATE utf8mb4_unicode_ci NOT NULL, `lang` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of `options` -- ---------------------------- BEGIN; INSERT INTO `options` VALUES ('2', 'hotline', '0981688118', 'en'), ('3', 'email', '<EMAIL>', 'en'), ('4', 'company_name', 'iStay Hotel Apartment', 'en'), ('5', 'company_description', 'Istay Serviced Apartment - High quality serviced apartment, customised to suit the needs and distinct tastes of today’s modern travellers, \r\nand have been a market leader in developing and operating innovative urban living spaces in Hanoi since 2016.\r\n\r\niStay1: No.34 alley 2 Tran Van Lai, My Dinh 1, Nam Tu Liem\r\niStay2: No.12 alley 39 Dinh Thon, My Dinh, Nam Tu Liem\r\niStay3: No.156 Dinh Thon, My Dinh 1, Nam Tu Liem\r\niStay5: No.45 alley 4 Dong Me street, Me Tri, Nam Tu Liem\r\niStay6: No. 3 alley 148 Tran <NAME>, Cau Giay\r\nEmail: <EMAIL>', 'en'), ('6', 'meta_title', 'He thong khach san istay', 'en'), ('7', 'meta_description', 'He thong khach san istay', 'en'), ('8', 'promotion_heading', 'The owner of the hotel or business ?', 'en'), ('9', 'promotion_description', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas in pulvinar neque. Nulla finibus lobortis pulvinar.', 'en'), ('10', 'promotion_booking_label', 'Booking now', 'en'), ('11', 'company_logo', '/uploads/setting/2018/11/20181103032317-xuyen-1-1.png', 'en'), ('12', 'search_heading', 'EasyBook Hotel Booking System', 'en'), ('13', 'search_description', 'Let\'s start exploring the world together with EasyBook', 'en'), ('14', 'search_when_label', 'When', 'en'), ('15', 'search_where_label', 'Where', 'en'), ('16', 'search_label_direct', 'Search', 'en'), ('17', 'about_heading', 'About iStay Services Apartment', 'en'), ('18', 'about_description', 'Istay Serviced Apartment - High quality serviced apartment, customised to suit the needs and distinct tastes of today’s modern travellers, \r\nand have been a market leader in developing and operating innovative urban living spaces in Hanoi since 2016.', 'en'), ('19', 'comment_heading', 'Feedback', 'en'), ('20', 'comment_description', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas in pulvinar neque. Nulla finibus lobortis pulvinar.', 'en'), ('21', 'promotion_background', '/uploads/setting/2018/11/20181103033001-14.jpg', 'en'), ('22', 'search_background', '/uploads/setting/2018/11/20181103033001-22.jpg', 'en'), ('23', 'hotline', '0981.645.688', 'vi'), ('25', 'company_name', 'Công ty test', 'vi'), ('26', 'company_description', 'desc test', 'vi'), ('27', 'meta_title', 'Công ty test', 'vi'), ('28', 'meta_description', 'Công ty test', 'vi'), ('29', 'promotion_heading', 'Khuyến mại hấp dẫn tháng 12', 'vi'), ('30', 'promotion_description', 'Đăng ký ngay để nhận được chuyến du lịch miễn phí', 'vi'); COMMIT; -- ---------------------------- -- Table structure for `password_resets` -- ---------------------------- DROP TABLE IF EXISTS `password_resets`; CREATE TABLE `password_resets` ( `username` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, KEY `password_resets_username_index` (`username`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Table structure for `services` -- ---------------------------- DROP TABLE IF EXISTS `services`; CREATE TABLE `services` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `icon` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` int(10) unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `services_user_id_foreign` (`user_id`), CONSTRAINT `services_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of `services` -- ---------------------------- BEGIN; INSERT INTO `services` VALUES ('1', 'fal fa-rocket', '1', '2018-11-01 20:35:55', '2018-11-01 20:35:55'), ('2', 'fal fa-wifi', '1', '2018-11-01 20:36:17', '2018-11-01 20:36:17'), ('3', 'fal fa-parking', '1', '2018-11-01 20:36:35', '2018-11-01 20:36:35'), ('4', 'fal fa-snowflake', '1', '2018-11-01 20:36:52', '2018-11-01 20:36:52'), ('5', 'fal fa-plane', '1', '2018-11-01 20:37:05', '2018-11-01 20:37:05'), ('6', 'fal fa-paw', '1', '2018-11-01 20:37:21', '2018-11-01 20:37:21'), ('7', 'fal fa-utensils', '1', '2018-11-01 20:37:34', '2018-11-01 20:37:34'), ('8', 'fal fa-wheelchair', '1', '2018-11-01 20:37:48', '2018-11-01 20:37:48'); COMMIT; -- ---------------------------- -- Table structure for `services_content` -- ---------------------------- DROP TABLE IF EXISTS `services_content`; CREATE TABLE `services_content` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `lang` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', `services_id` int(10) unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `services_content_services_id_foreign` (`services_id`), CONSTRAINT `services_content_services_id_foreign` FOREIGN KEY (`services_id`) REFERENCES `services` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of `services_content` -- ---------------------------- BEGIN; INSERT INTO `services_content` VALUES ('1', 'en', '1', 'Elevator in building'), ('2', 'en', '2', 'Free Wi Fi'), ('3', 'en', '3', 'Free Parking'), ('4', 'en', '4', 'Air Conditioned'), ('5', 'en', '5', 'Airport Shuttle'), ('6', 'en', '6', 'Pet Friendly'), ('7', 'en', '7', 'Restaurant Inside'), ('8', 'en', '8', 'Wheelchair Friendly'); COMMIT; -- ---------------------------- -- Table structure for `system_link_type` -- ---------------------------- DROP TABLE IF EXISTS `system_link_type`; CREATE TABLE `system_link_type` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `prefix` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `system_link_type_prefix_unique` (`prefix`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of `system_link_type` -- ---------------------------- BEGIN; INSERT INTO `system_link_type` VALUES ('1', 'Category Details', 'category', null, null), ('2', 'Post Details', 'post', null, null), ('3', 'Page Details', 'page', null, null), ('4', 'Landing', '', null, null); COMMIT; -- ---------------------------- -- Table structure for `users` -- ---------------------------- DROP TABLE IF EXISTS `users`; CREATE TABLE `users` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `username` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `role` tinyint(1) NOT NULL COMMENT '1.administrator 2.support', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `users_username_unique` (`username`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of `users` -- ---------------------------- BEGIN; INSERT INTO `users` VALUES ('1', 'hung.nguyen', 'admin', <PASSWORD>', '1', null, null, null); COMMIT; SET FOREIGN_KEY_CHECKS = 1;
select 21 from dual; exit;
<reponame>ChatleaCinta/project_laundry<filename>laundry.sql -- phpMyAdmin SQL Dump -- version 4.9.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Mar 24, 2020 at 07:27 AM -- Server version: 10.4.8-MariaDB -- PHP Version: 7.3.11 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `laundry` -- -- -------------------------------------------------------- -- -- Table structure for table `detail_transaksi` -- CREATE TABLE `detail_transaksi` ( `id` bigint(20) UNSIGNED NOT NULL, `id_trans` int(11) NOT NULL, `id_jenis` int(11) NOT NULL, `qty` int(15) NOT NULL, `subtotal` int(15) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `detail_transaksi` -- INSERT INTO `detail_transaksi` (`id`, `id_trans`, `id_jenis`, `qty`, `subtotal`, `created_at`, `updated_at`) VALUES (1, 1, 1, 2, 10000, NULL, NULL), (2, 2, 1, 2, 9000, NULL, NULL), (3, 2, 1, 2, 9000, NULL, NULL), (4, 3, 2, 1, 15000, NULL, NULL), (5, 3, 1, 2, 9000, NULL, NULL), (6, 4, 2, 1, 15000, NULL, NULL), (7, 4, 3, 1, 10000, NULL, NULL), (8, 5, 2, 3, 90000, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `jenis_cuci` -- CREATE TABLE `jenis_cuci` ( `id` bigint(20) UNSIGNED NOT NULL, `nama_jenis` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `harga_per_kilo` int(25) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `jenis_cuci` -- INSERT INTO `jenis_cuci` (`id`, `nama_jenis`, `harga_per_kilo`, `created_at`, `updated_at`) VALUES (1, 'Pakaian', 4500, NULL, NULL), (2, 'Sepatu', 30000, NULL, NULL), (4, 'Tas', 20000, NULL, NULL), (5, 'Mukena', 5000, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2020_02_17_234734_create_table_petugas', 1), (4, '2020_02_17_234837_create_table_pelanggan', 1), (5, '2020_02_17_234902_create_table_jenis_cuci', 1), (6, '2020_02_17_234933_create_table_transaksi', 1), (7, '2020_02_17_234957_create_table_detail_transaksi', 1); -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `pelanggan` -- CREATE TABLE `pelanggan` ( `id` bigint(20) UNSIGNED NOT NULL, `nama` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `alamat` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `telp` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `pelanggan` -- INSERT INTO `pelanggan` (`id`, `nama`, `alamat`, `telp`, `created_at`, `updated_at`) VALUES (1, '<NAME>', 'depok', '08987654321', NULL, NULL), (3, '<NAME>', 'Magetan', '098553256787', NULL, NULL), (4, '<NAME>', 'Malang', '085736612013', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `petugas` -- CREATE TABLE `petugas` ( `id` bigint(20) UNSIGNED NOT NULL, `nama_petugas` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `telp` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `level` enum('petugas','admin') COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `petugas` -- INSERT INTO `petugas` (`id`, `nama_petugas`, `telp`, `username`, `password`, `level`, `created_at`, `updated_at`) VALUES (1, 'you\'re my iron man', '082217890999', 'ironman', <PASSWORD>', 'petugas', '2020-02-18 00:56:38', '2020-02-18 00:56:38'), (2, '<NAME>', '082216386184', 'caitlin', '$2y$10$2NW0FoWPpJ1DMHTH7DfUpu1bnhWHmkImCQ/5daLcxjZ5S2ESZ4REO', 'admin', '2020-02-18 05:17:47', '2020-02-18 05:17:47'), (4, 'Captain America', '082316590910', 'captain', '$2y$10$0.mmZJHwIbRipRJ4aCllr.4owJkSUfcoL7Y2ctkRf3XOmv.mpEAnK', 'petugas', '2020-02-18 23:49:41', '2020-02-18 23:49:41'), (5, 'Spiderman', '082316590987', 'spiderman', '$2y$10$dyj0IRhXGw4jo1kIKmovF.6HTukhcURGYdnK4O7UPpKXG00eK/Ckq', 'admin', '2020-02-28 00:32:56', '2020-02-28 00:32:56'), (6, 'Captain Marvel', '082316590900', 'marvel', '$2y$10$E9J7i/r5WLv6DGEi1Wp3WehBTvlI5UTjPcYn5HZFVHgjdVsmHOACe', 'admin', '2020-03-23 00:39:57', '2020-03-23 00:39:57'), (7, 'Groot', '082316590764', 'groot', '$2y$10$SXWE4Oaie9T8PEfdRYuDSOeBfPi6P0luhmXodrjQ3CG9iY5fOBqDG', 'petugas', '2020-03-23 01:03:23', '2020-03-23 01:03:23'); -- -------------------------------------------------------- -- -- Table structure for table `transaksi` -- CREATE TABLE `transaksi` ( `id` bigint(20) UNSIGNED NOT NULL, `id_pelanggan` int(11) NOT NULL, `id_petugas` int(11) NOT NULL, `tgl_transaksi` date NOT NULL, `tgl_selesai` date NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `transaksi` -- INSERT INTO `transaksi` (`id`, `id_pelanggan`, `id_petugas`, `tgl_transaksi`, `tgl_selesai`, `created_at`, `updated_at`) VALUES (1, 1, 1, '2020-02-17', '2020-02-20', NULL, NULL), (2, 1, 4, '2020-05-03', '2020-05-05', NULL, NULL), (3, 2, 4, '2020-02-03', '2020-02-06', NULL, NULL), (4, 3, 4, '2020-02-27', '2020-02-29', NULL, NULL), (5, 4, 6, '2020-03-23', '2020-03-27', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `detail_transaksi` -- ALTER TABLE `detail_transaksi` ADD PRIMARY KEY (`id`); -- -- Indexes for table `jenis_cuci` -- ALTER TABLE `jenis_cuci` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indexes for table `pelanggan` -- ALTER TABLE `pelanggan` ADD PRIMARY KEY (`id`); -- -- Indexes for table `petugas` -- ALTER TABLE `petugas` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transaksi` -- ALTER TABLE `transaksi` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `detail_transaksi` -- ALTER TABLE `detail_transaksi` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `jenis_cuci` -- ALTER TABLE `jenis_cuci` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `pelanggan` -- ALTER TABLE `pelanggan` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `petugas` -- ALTER TABLE `petugas` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `transaksi` -- ALTER TABLE `transaksi` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */;
-- Listing 6.7.sql -- Indexbasierter Zugriff auf Tabellenvariablen DO (OUT ot_result TABLE( id INT, titel NVARCHAR(50))=>?) BEGIN ot_result = SELECT top 10 id, titel FROM aufgaben; ot_result.titel[1] = 'Titel: ' || :ot_result.titel[1]; END;
/* Warnings: - You are about to drop the column `parental_guidance` on the `Movie` table. All the data in the column will be lost. */ -- AlterTable ALTER TABLE "Movie" DROP COLUMN "parental_guidance", ADD COLUMN "parentalGuidance" "ParentalGuidance" NOT NULL DEFAULT E'GENERAL_AUDIENCE';
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET NAMES utf8 */; /*!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' */; CREATE TABLE IF NOT EXISTS `skill_command` ( `id` int(11) NOT NULL auto_increment, `name` char(255) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `pk_skillcommands_name` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=942 DEFAULT CHARSET=latin1; DELETE FROM `skill_command`; /*!40000 ALTER TABLE `skill_command` DISABLE KEYS */; INSERT INTO `skill_command` (`id`,`name`) VALUES (115,'access_fee'), (242,'actionShot1'), (325,'actionShot2'), (942,'admin_sys_msg'), (943,'admin_warp_self'), (532,'ad_fees_1'), (247,'aim'), (694,'animalAttack'), (693,'animalCalm'), (692,'animalScare'), (583,'applyDisease'), (582,'applyPoison'), (502,'areatrack'), (503,'areatrack_animal'), (505,'areatrack_direction'), (507,'areatrack_distance'), (506,'areatrack_npc'), (508,'areatrack_player'), (770,'avoidIncapacitation'), (490,'bandfill'), (132,'berserk1'), (142,'berserk2'), (555,'bleedingShot'), (214,'bodyShot1'), (224,'bodyShot2'), (303,'bodyShot3'), (589,'boostmorale'), (872,'bstrike1'), (874,'bstrike2'), (859,'bstrike3'), (345,'burstShot1'), (348,'burstShot2'), (134,'centerOfBeing'), (632,'cert_axe_heavy_duty'), (173,'cert_axe_vibro'), (154,'cert_baton_gaderiffi'), (397,'cert_baton_stun'), (635,'cert_carbine_cdef'), (195,'cert_carbine_dh17'), (234,'cert_carbine_dh17_snubnose'), (243,'cert_carbine_dxr6'), (237,'cert_carbine_e11'), (244,'cert_carbine_ee3'), (327,'cert_carbine_elite'), (240,'cert_carbine_laser'), (328,'cert_carbine_nym_slugthrower'), (793,'cert_droid_astromech_1'), (833,'cert_droid_astromech_2'), (839,'cert_droid_astromech_3'), (845,'cert_droid_astromech_4'), (851,'cert_droid_astromech_5'), (800,'cert_droid_astromech_6'), (569,'cert_grenade_cryoban'), (565,'cert_grenade_fragmentation'), (636,'cert_grenade_fragmentation_light'), (570,'cert_grenade_glop'), (571,'cert_grenade_imperial_detonator'), (566,'cert_grenade_proton'), (572,'cert_grenade_thermal_detonator'), (574,'cert_heavy_acid_beam'), (575,'cert_heavy_lightning_beam'), (573,'cert_heavy_particle_beam'), (133,'cert_knife_dagger'), (629,'cert_knife_stone'), (630,'cert_knife_survival'), (158,'cert_knife_vibroblade'), (183,'cert_lance_controllerfp'), (180,'cert_lance_staff_metal'), (631,'cert_lance_staff_wood_s1'), (179,'cert_lance_staff_wood_s2'), (449,'cert_lance_vibrolance'), (186,'cert_lance_vibro_axe'), (645,'cert_onehandlightsaber'), (723,'cert_onehandlightsaber_gen1'), (733,'cert_onehandlightsaber_gen2'), (737,'cert_onehandlightsaber_gen3'), (730,'cert_onehandlightsaber_gen4'), (771,'cert_onehandlightsaber_training'), (792,'cert_ordnance_level1'), (812,'cert_ordnance_level2'), (813,'cert_ordnance_level3'), (814,'cert_ordnance_level4'), (815,'cert_ordnance_level5'), (816,'cert_ordnance_level6'), (817,'cert_ordnance_level7'), (818,'cert_ordnance_level8'), (798,'cert_ordnance_level9'), (799,'cert_ordnance_levelten'), (634,'cert_pistol_cdef'), (194,'cert_pistol_d18'), (222,'cert_pistol_dh17'), (215,'cert_pistol_dl44'), (216,'cert_pistol_dl44_metal'), (294,'cert_pistol_dx2'), (231,'cert_pistol_fwg5'), (562,'cert_pistol_launcher'), (226,'cert_pistol_power5'), (295,'cert_pistol_republic_blaster'), (545,'cert_pistol_scatter'), (221,'cert_pistol_scout_blaster'), (229,'cert_pistol_srcombat'), (225,'cert_pistol_striker'), (230,'cert_pistol_tangle'), (705,'cert_polearmlightsaber'), (724,'cert_polearmlightsaber_gen1'), (742,'cert_polearmlightsaber_gen2'), (746,'cert_polearmlightsaber_gen3'), (731,'cert_polearmlightsaber_gen4'), (564,'cert_rifle_acid_beam'), (639,'cert_rifle_bowcaster'), (633,'cert_rifle_cdef'), (193,'cert_rifle_dlt20'), (200,'cert_rifle_dlt20a'), (212,'cert_rifle_e11'), (563,'cert_rifle_flame_thrower'), (211,'cert_rifle_jawa_ion'), (205,'cert_rifle_laser'), (546,'cert_rifle_lightning'), (204,'cert_rifle_sg82'), (208,'cert_rifle_spraystick'), (258,'cert_rifle_t21'), (201,'cert_rifle_tusken'), (561,'cert_rocket_launcher'), (811,'cert_starships_awing'), (796,'cert_starships_bwing'), (857,'cert_starships_decimator'), (803,'cert_starships_firespray'), (912,'cert_starships_heavyblacksunfighter'), (907,'cert_starships_heavyhuttfighter'), (903,'cert_starships_hutt_turret_ship'), (908,'cert_starships_lightblacksunfighter'), (898,'cert_starships_lighthuttfighter'), (910,'cert_starships_mediumblacksunfighter'), (905,'cert_starships_mediumhuttfighter'), (868,'cert_starships_tieadvanced'), (869,'cert_starships_tieaggressor'), (866,'cert_starships_tiebomber'), (861,'cert_starships_tiefighter'), (863,'cert_starships_tiefighterin'), (855,'cert_starships_tiefighterlight'), (865,'cert_starships_tieinterceptor'), (858,'cert_starships_tieoppressor'), (809,'cert_starships_xwing'), (797,'cert_starships_ykl37r'), (900,'cert_starships_yt1300'), (805,'cert_starships_ywing'), (807,'cert_starships_ywinglongprobe'), (791,'cert_starships_z95headhunter'), (153,'cert_sword_01'), (155,'cert_sword_02'), (167,'cert_sword_2h_axe'), (176,'cert_sword_2h_cleaver'), (170,'cert_sword_2h_katana'), (428,'cert_sword_2h_maul'), (446,'cert_sword_2h_scythe'), (164,'cert_sword_blade_rantok'), (161,'cert_sword_blade_ryyk'), (670,'cert_twohandlightsaber'), (725,'cert_twohandlightsaber_gen1'), (738,'cert_twohandlightsaber_gen2'), (741,'cert_twohandlightsaber_gen3'), (732,'cert_twohandlightsaber_gen4'), (362,'cert_vibroknuckler'), (765,'channelForce'), (354,'chargeShot1'), (358,'chargeShot2'), (595,'city_map'), (602,'city_spec_cloning'), (609,'city_spec_doctor'), (608,'city_spec_entertainer'), (598,'city_spec_industry'), (610,'city_spec_missions'), (599,'city_spec_research'), (611,'city_spec_sample_rich'), (603,'city_spec_stronghold'), (475,'colorlights'), (504,'conceal'), (271,'concealShot'), (554,'confusionShot'), (342,'cripplingShot'), (499,'cureDisease'), (497,'curePoison'), (105,'customizeVehicle'), (3,'dancer'), (476,'dazzle'), (80,'diagnose'), (311,'disarmingShot1'), (298,'disarmingShot2'), (477,'distract'), (219,'diveShot'), (313,'doubleTap'), (90,'dragIncapacitatedPlayer'), (767,'drainForce'), (935,'droid+droidcommand_testweaponoverload1'), (896,'droidcommand_engineefficiencyfour'), (880,'droidcommand_engineefficiencyone'), (891,'droidcommand_engineefficiencythree'), (886,'droidcommand_engineefficiencytwo'), (881,'droidcommand_enginenormalize'), (895,'droidcommand_engineoverloadfour'), (879,'droidcommand_engineoverloadone'), (890,'droidcommand_engineoverloadthree'), (885,'droidcommand_engineoverloadtwo'), (794,'droidcommand_mutedroid'), (919,'droidcommand_reactornormalize'), (932,'droidcommand_reactoroverloadfour'), (918,'droidcommand_reactoroverloadone'), (928,'droidcommand_reactoroverloadthree'), (924,'droidcommand_reactoroverloadtwo'), (849,'droidcommand_shieldadjustfrontfour'), (831,'droidcommand_shieldadjustfrontone'), (843,'droidcommand_shieldadjustfrontthree'), (837,'droidcommand_shieldadjustfronttwo'), (850,'droidcommand_shieldadjustrearfour'), (832,'droidcommand_shieldadjustrearone'), (844,'droidcommand_shieldadjustrearthree'), (838,'droidcommand_shieldadjustreartwo'), (841,'droidcommand_shieldbacktofronteighty'), (835,'droidcommand_shieldbacktofrontfifty'), (847,'droidcommand_shieldbacktofronthundred'), (829,'droidcommand_shieldbacktofronttwenty'), (852,'droidcommand_shieldemergencyfront'), (853,'droidcommand_shieldemergencyrear'), (842,'droidcommand_shieldfronttobackeighty'), (836,'droidcommand_shieldfronttobackfifty'), (848,'droidcommand_shieldfronttobackhundred'), (830,'droidcommand_shieldfronttobacktwenty'), (828,'droidcommand_shieldnormalize'), (941,'droidcommand_testbacktofrontfifty'), (940,'droidcommand_testfronttobackfifty'), (939,'droidcommand_testweaponnormalize'), (936,'droidcommand_testweaponoverload2'), (937,'droidcommand_testweaponoverload3'), (938,'droidcommand_testweaponoverload4'), (921,'droidcommand_weapcapequalize'), (933,'droidcommand_weapcappowerupfour'), (920,'droidcommand_weapcappowerupone'), (929,'droidcommand_weapcappowerupthree'), (925,'droidcommand_weapcappoweruptwo'), (934,'droidcommand_weapcaptoshieldfour'), (922,'droidcommand_weapcaptoshieldone'), (930,'droidcommand_weapcaptoshieldthree'), (926,'droidcommand_weapcaptoshieldtwo'), (894,'droidcommand_weaponeffeciencyfour'), (877,'droidcommand_weaponeffeciencyone'), (889,'droidcommand_weaponeffeciencythree'), (884,'droidcommand_weaponeffeciencytwo'), (878,'droidcommand_weaponnormalize'), (893,'droidcommand_weaponoverloadfour'), (876,'droidcommand_weaponoverloadone'), (888,'droidcommand_weaponoverloadthree'), (883,'droidcommand_weaponoverloadtwo'), (550,'droid_find'), (551,'droid_track'), (523,'emboldenpets'), (525,'enragepets'), (915,'epulse1'), (916,'epulse2'), (902,'epulse3'), (641,'equilibrium'), (821,'eshields'), (913,'ethrust'), (871,'eweapons'), (498,'extinguishFire'), (556,'eyeShot'), (37,'fanfar'), (317,'fanShot'), (548,'fastBlast'), (541,'feignDeath'), (580,'fireAcidCone1'), (568,'fireAcidCone2'), (579,'fireAcidSingle1'), (581,'fireAcidSingle2'), (487,'firejet'), (559,'fireLightningCone1'), (549,'fireLightningCone2'), (558,'fireLightningSingle1'), (560,'fireLightningSingle2'), (84,'firstAid'), (32,'fizz'), (577,'flameCone1'), (567,'flameCone2'), (576,'flameSingle1'), (578,'flameSingle2'), (9,'flourish+1'), (10,'flourish+2'), (11,'flourish+3'), (12,'flourish+4'), (13,'flourish+5'), (14,'flourish+6'), (15,'flourish+7'), (16,'flourish+8'), (287,'flurryShot1'), (290,'flurryShot2'), (279,'flushingShot1'), (283,'flushingShot2'), (492,'flutedroopy'), (70,'forage'), (750,'forceAbsorb1'), (758,'forceAbsorb2'), (756,'forceArmor1'), (759,'forceArmor2'), (709,'forceChoke'), (672,'forceCureDisease'), (671,'forceCurePoison'), (755,'forceFeedback1'), (757,'forceFeedback2'), (720,'forceIntimidate'), (748,'forceIntimidate1'), (749,'forceIntimidate2'), (663,'forceKnockdown1'), (697,'forceKnockdown2'), (747,'forceKnockdown3'), (719,'forceLightningCone1'), (721,'forceLightningCone2'), (696,'forceLightningSingle1'), (699,'forceLightningSingle2'), (768,'forceMeditate'), (371,'forceOfWill'), (760,'forceResistBleeding'), (761,'forceResistDisease'), (762,'forceResistPoison'), (763,'forceResistStates'), (662,'forceRun1'), (702,'forceRun2'), (751,'forceRun3'), (766,'forceShield1'), (769,'forceShield2'), (753,'forceSpeed1'), (754,'forceSpeed2'), (665,'forceThrow1'), (698,'forceThrow2'), (703,'forceWeaken1'), (722,'forceWeaken2'), (588,'formup'), (352,'fullAutoArea1'), (356,'fullAutoArea2'), (236,'fullAutoSingle1'), (326,'fullAutoSingle2'), (594,'grantZoningRights'), (54,'harvestCorpse'), (199,'headShot1'), (207,'headShot2'), (265,'headShot3'), (657,'healActionSelf1'), (685,'healActionSelf2'), (684,'healActionWoundOther1'), (715,'healActionWoundOther2'), (658,'healActionWoundSelf1'), (686,'healActionWoundSelf2'), (666,'healAllOther1'), (691,'healAllOther2'), (661,'healAllSelf1'), (690,'healAllSelf2'), (644,'healBattleFatigueSelf1'), (649,'healBattleFatigueSelf2'), (75,'healDamage'), (500,'healEnhance'), (655,'healHealthSelf1'), (681,'healHealthSelf2'), (682,'healHealthWoundOther1'), (714,'healHealthWoundOther2'), (656,'healHealthWoundSelf1'), (683,'healHealthWoundSelf2'), (584,'healMind'), (659,'healMindSelf1'), (687,'healMindSelf2'), (688,'healMindWoundOther1'), (716,'healMindWoundOther2'), (660,'healMindWoundSelf1'), (689,'healMindWoundSelf2'), (495,'healState'), (718,'healStatesOther'), (700,'healStatesSelf'), (228,'healthShot1'), (293,'healthShot2'), (76,'healWound'), (819,'iffscramble'), (4,'imagedesigner'), (825,'inspacereload'), (824,'inspacerepair'), (802,'inspacerr'), (605,'installMissionTerminal'), (131,'intimidate1'), (141,'intimidate2'), (695,'jediMindTrick'), (820,'jstart1'), (823,'jstart2'), (801,'jstart3'), (220,'kipUpShot'), (40,'kloohorn'), (553,'knockdownFire'), (623,'language+bothese'), (620,'language+dosh'), (627,'language+ithorian'), (626,'language+lekku'), (621,'language+moncalamarian'), (619,'language+rodese'), (624,'language+ryl'), (622,'language+shyriiwook'), (628,'language+sullustan'), (625,'language+zabrak'), (544,'lastDitch'), (233,'legShot1'), (239,'legShot2'), (339,'legShot3'), (543,'lowBlow'), (534,'maintenance_fees_1'), (600,'manage_militia'), (593,'manage_taxes'), (25,'mandoviol'), (58,'maskscent'), (77,'medicalForage'), (361,'meditate'), (421,'melee1hBlindHit1'), (424,'melee1hBlindHit2'), (157,'melee1hBodyHit1'), (415,'melee1hBodyHit2'), (418,'melee1hBodyHit3'), (160,'melee1hDizzyHit1'), (404,'melee1hDizzyHit2'), (408,'melee1hHealthHit1'), (413,'melee1hHealthHit2'), (152,'melee1hHit1'), (396,'melee1hHit2'), (399,'melee1hHit3'), (127,'melee1hLunge1'), (138,'melee1hLunge2'), (401,'melee1hScatterHit1'), (406,'melee1hScatterHit2'), (163,'melee1hSpinAttack1'), (411,'melee1hSpinAttack2'), (432,'melee2hArea1'), (434,'melee2hArea2'), (437,'melee2hArea3'), (169,'melee2hHeadHit1'), (439,'melee2hHeadHit2'), (441,'melee2hHeadHit3'), (166,'melee2hHit1'), (427,'melee2hHit2'), (430,'melee2hHit3'), (128,'melee2hLunge1'), (139,'melee2hLunge2'), (444,'melee2hMindHit1'), (445,'melee2hMindHit2'), (175,'melee2hSpinAttack1'), (442,'melee2hSpinAttack2'), (172,'melee2hSweep1'), (443,'melee2hSweep2'), (374,'melee_damage_mitigation_1'), (377,'melee_damage_mitigation_2'), (365,'melee_damage_mitigation_3'), (533,'merchant_fees_1'), (664,'mindBlast1'), (667,'mindBlast2'), (210,'mindShot1'), (263,'mindShot2'), (297,'multiTargetPistolShot'), (2,'musician'), (486,'nalargon'), (873,'nblast'), (494,'omnibox'), (192,'overChargeShot1'), (197,'overChargeShot2'), (542,'panicShot'), (512,'pet_attack'), (510,'pet_follow'), (527,'pet_followother'), (521,'pet_formation'), (528,'pet_friend'), (526,'pet_group'), (519,'pet_guard'), (520,'pet_patrol'), (515,'pet_rangedattack'), (511,'pet_release'), (516,'pet_specialattack1'), (517,'pet_specialattack2'), (518,'pet_stay'), (514,'pet_transfer'), (319,'pistolMeleeDefense1'), (322,'pistolMeleeDefense2'), (596,'place_bank'), (472,'place_cantina'), (592,'place_cityhall'), (601,'place_cloning'), (618,'place_exotic_garden'), (604,'place_faction_terminal'), (614,'place_fountain'), (607,'place_garage'), (496,'place_hospital'), (617,'place_large_garden'), (616,'place_medium_garden'), (535,'place_merchant_tent'), (597,'place_shuttleport'), (615,'place_small_garden'), (613,'place_statue'), (612,'place_streetlamp'), (473,'place_theater'), (190,'pointBlankArea1'), (305,'pointBlankArea2'), (191,'pointBlankSingle1'), (300,'pointBlankSingle2'), (464,'polearmActionHit1'), (465,'polearmActionHit2'), (459,'polearmArea1'), (461,'polearmArea2'), (178,'polearmHit1'), (448,'polearmHit2'), (451,'polearmHit3'), (182,'polearmLegHit1'), (458,'polearmLegHit2'), (460,'polearmLegHit3'), (125,'polearmLunge1'), (136,'polearmLunge2'), (188,'polearmSpinAttack1'), (456,'polearmSpinAttack2'), (185,'polearmStun1'), (453,'polearmStun2'), (462,'polearmSweep1'), (463,'polearmSweep2'), (368,'powerBoost'), (117,'premium_auctions'), (414,'private_1hand_ability_1'), (416,'private_1hand_ability_2'), (417,'private_1hand_ability_3'), (419,'private_1hand_ability_4'), (400,'private_1hand_accuracy_1'), (402,'private_1hand_accuracy_2'), (403,'private_1hand_accuracy_3'), (405,'private_1hand_accuracy_4'), (398,'private_1hand_master'), (395,'private_1hand_novice'), (407,'private_1hand_speed_1'), (409,'private_1hand_speed_2'), (410,'private_1hand_speed_3'), (412,'private_1hand_speed_4'), (420,'private_1hand_support_1'), (422,'private_1hand_support_2'), (423,'private_1hand_support_3'), (425,'private_1hand_support_4'), (431,'private_2hand_accuracy_1'), (433,'private_2hand_accuracy_2'), (435,'private_2hand_accuracy_3'), (436,'private_2hand_accuracy_4'), (429,'private_2hand_master'), (426,'private_2hand_novice'), (438,'private_2hand_speed_1'), (440,'private_2hand_speed_2'), (114,'private_artisan_business_1'), (116,'private_artisan_business_2'), (118,'private_artisan_business_3'), (119,'private_artisan_business_4'), (110,'private_artisan_domestic_1'), (111,'private_artisan_domestic_2'), (112,'private_artisan_domestic_3'), (113,'private_artisan_domestic_4'), (106,'private_artisan_engineering_1'), (107,'private_artisan_engineering_2'), (108,'private_artisan_engineering_3'), (109,'private_artisan_engineering_4'), (104,'private_artisan_master'), (101,'private_artisan_novice'), (120,'private_artisan_survey_1'), (121,'private_artisan_survey_2'), (122,'private_artisan_survey_3'), (123,'private_artisan_survey_4'), (151,'private_brawler_1hand_1'), (156,'private_brawler_1hand_2'), (159,'private_brawler_1hand_3'), (162,'private_brawler_1hand_4'), (165,'private_brawler_2hand_1'), (168,'private_brawler_2hand_2'), (171,'private_brawler_2hand_3'), (174,'private_brawler_2hand_4'), (135,'private_brawler_master'), (124,'private_brawler_novice'), (177,'private_brawler_polearm_1'), (181,'private_brawler_polearm_2'), (184,'private_brawler_polearm_3'), (187,'private_brawler_polearm_4'), (143,'private_brawler_unarmed_1'), (145,'private_brawler_unarmed_2'), (147,'private_brawler_unarmed_3'), (149,'private_brawler_unarmed_4'), (344,'private_carbine_ability_1'), (346,'private_carbine_ability_2'), (347,'private_carbine_ability_3'), (349,'private_carbine_ability_4'), (330,'private_carbine_accuracy_1'), (332,'private_carbine_accuracy_2'), (334,'private_carbine_accuracy_3'), (336,'private_carbine_accuracy_4'), (329,'private_carbine_master'), (324,'private_carbine_novice'), (338,'private_carbine_speed_1'), (340,'private_carbine_speed_2'), (341,'private_carbine_speed_3'), (343,'private_carbine_speed_4'), (351,'private_carbine_support_1'), (353,'private_carbine_support_2'), (355,'private_carbine_support_3'), (357,'private_carbine_support_4'), (41,'private_entertainer_dance_1'), (43,'private_entertainer_dance_2'), (45,'private_entertainer_dance_3'), (47,'private_entertainer_dance_4'), (26,'private_entertainer_hair_1'), (27,'private_entertainer_hair_2'), (28,'private_entertainer_hair_3'), (29,'private_entertainer_hair_4'), (49,'private_entertainer_healing_1'), (50,'private_entertainer_healing_2'), (51,'private_entertainer_healing_3'), (52,'private_entertainer_healing_4'), (21,'private_entertainer_master'), (30,'private_entertainer_music_1'), (33,'private_entertainer_music_2'), (35,'private_entertainer_music_3'), (38,'private_entertainer_music_4'), (1,'private_entertainer_novice'), (875,'private_imperial_navy_droid_1'), (882,'private_imperial_navy_droid_2'), (887,'private_imperial_navy_droid_3'), (892,'private_imperial_navy_droid_4'), (856,'private_imperial_navy_master'), (854,'private_imperial_navy_novice'), (860,'private_imperial_navy_starships_1'), (862,'private_imperial_navy_starships_2'), (864,'private_imperial_navy_starships_3'), (867,'private_imperial_navy_starships_4'), (232,'private_marksman_carbine_1'), (235,'private_marksman_carbine_2'), (238,'private_marksman_carbine_3'), (241,'private_marksman_carbine_4'), (196,'private_marksman_master'), (189,'private_marksman_novice'), (213,'private_marksman_pistol_1'), (217,'private_marksman_pistol_2'), (223,'private_marksman_pistol_3'), (227,'private_marksman_pistol_4'), (198,'private_marksman_rifle_1'), (202,'private_marksman_rifle_2'), (206,'private_marksman_rifle_3'), (209,'private_marksman_rifle_4'), (245,'private_marksman_support_1'), (248,'private_marksman_support_2'), (252,'private_marksman_support_3'), (254,'private_marksman_support_4'), (93,'private_medic_ability_1'), (94,'private_medic_ability_2'), (95,'private_medic_ability_3'), (96,'private_medic_ability_4'), (97,'private_medic_crafting_1'), (98,'private_medic_crafting_2'), (99,'private_medic_crafting_3'), (100,'private_medic_crafting_4'), (82,'private_medic_injury_1'), (83,'private_medic_injury_2'), (85,'private_medic_injury_3'), (86,'private_medic_injury_4'), (81,'private_medic_master'), (74,'private_medic_novice'), (88,'private_medic_speed_1'), (89,'private_medic_speed_2'), (91,'private_medic_speed_3'), (92,'private_medic_speed_4'), (917,'private_neutral_droid_1'), (923,'private_neutral_droid_2'), (927,'private_neutral_droid_3'), (931,'private_neutral_droid_4'), (899,'private_neutral_master'), (897,'private_neutral_novice'), (904,'private_neutral_starships_1'), (906,'private_neutral_starships_2'), (909,'private_neutral_starships_3'), (911,'private_neutral_starships_4'), (310,'private_pistol_ability_1'), (312,'private_pistol_ability_2'), (314,'private_pistol_ability_3'), (316,'private_pistol_ability_4'), (299,'private_pistol_accuracy_1'), (301,'private_pistol_accuracy_2'), (302,'private_pistol_accuracy_3'), (304,'private_pistol_accuracy_4'), (318,'private_pistol_defense_1'), (320,'private_pistol_defense_2'), (321,'private_pistol_defense_3'), (323,'private_pistol_defense_4'), (296,'private_pistol_master'), (292,'private_pistol_novice'), (306,'private_pistol_speed_1'), (307,'private_pistol_speed_2'), (308,'private_pistol_speed_3'), (309,'private_pistol_speed_4'), (452,'private_polearm_accuracy_1'), (454,'private_polearm_accuracy_2'), (455,'private_polearm_accuracy_3'), (457,'private_polearm_accuracy_4'), (450,'private_polearm_master'), (447,'private_polearm_novice'), (827,'private_rebel_navy_droid_1'), (834,'private_rebel_navy_droid_2'), (840,'private_rebel_navy_droid_3'), (846,'private_rebel_navy_droid_4'), (795,'private_rebel_navy_master'), (790,'private_rebel_navy_novice'), (804,'private_rebel_navy_starships_1'), (806,'private_rebel_navy_starships_2'), (808,'private_rebel_navy_starships_3'), (810,'private_rebel_navy_starships_4'), (278,'private_rifle_ability_1'), (280,'private_rifle_ability_2'), (282,'private_rifle_ability_3'), (284,'private_rifle_ability_4'), (262,'private_rifle_accuracy_1'), (264,'private_rifle_accuracy_2'), (266,'private_rifle_accuracy_3'), (268,'private_rifle_accuracy_4'), (259,'private_rifle_master'), (256,'private_rifle_novice'), (270,'private_rifle_speed_1'), (273,'private_rifle_speed_2'), (274,'private_rifle_speed_3'), (277,'private_rifle_speed_4'), (286,'private_rifle_support_1'), (288,'private_rifle_support_2'), (289,'private_rifle_support_3'), (291,'private_rifle_support_4'), (69,'private_scout_camp_1'), (71,'private_scout_camp_2'), (72,'private_scout_camp_3'), (73,'private_scout_camp_4'), (65,'private_scout_harvest_1'), (66,'private_scout_harvest_2'), (67,'private_scout_harvest_3'), (68,'private_scout_harvest_4'), (55,'private_scout_master'), (56,'private_scout_movement_1'), (57,'private_scout_movement_2'), (59,'private_scout_movement_3'), (60,'private_scout_movement_4'), (53,'private_scout_novice'), (61,'private_scout_tools_1'), (62,'private_scout_tools_2'), (63,'private_scout_tools_3'), (64,'private_scout_tools_4'), (786,'private_shipwright_defense_1'), (787,'private_shipwright_defense_2'), (788,'private_shipwright_defense_3'), (789,'private_shipwright_defense_4'), (774,'private_shipwright_engineering_1'), (775,'private_shipwright_engineering_2'), (776,'private_shipwright_engineering_3'), (777,'private_shipwright_engineering_4'), (773,'private_shipwright_master'), (772,'private_shipwright_novice'), (778,'private_shipwright_propulsion_1'), (779,'private_shipwright_propulsion_2'), (780,'private_shipwright_propulsion_3'), (781,'private_shipwright_propulsion_4'), (782,'private_shipwright_systems_1'), (783,'private_shipwright_systems_2'), (784,'private_shipwright_systems_3'), (785,'private_shipwright_systems_4'), (380,'private_unarmed_ability_1'), (382,'private_unarmed_ability_2'), (384,'private_unarmed_ability_3'), (386,'private_unarmed_ability_4'), (366,'private_unarmed_accuarcy_1'), (367,'private_unarmed_accuarcy_2'), (369,'private_unarmed_accuracy_3'), (370,'private_unarmed_accuracy_4'), (363,'private_unarmed_master'), (359,'private_unarmed_novice'), (372,'private_unarmed_speed_1'), (375,'private_unarmed_speed_2'), (376,'private_unarmed_speed_3'), (378,'private_unarmed_speed_4'), (388,'private_unarmed_support_1'), (390,'private_unarmed_support_2'), (392,'private_unarmed_support_3'), (393,'private_unarmed_support_4'), (914,'ptrap1'), (901,'ptrap2'), (870,'pumpreactor'), (87,'quickHeal'), (590,'rally'), (272,'ranged_damage_mitigation_1'), (276,'ranged_damage_mitigation_2'), (261,'ranged_damage_mitigation_3'), (606,'recruitSkillTrainer'), (752,'regainConsciousness'), (637,'regeneration'), (468,'registerWithLocation'), (509,'rescue'), (591,'retreat'), (501,'revivePlayer'), (218,'rollShot'), (652,'saber1hComboHit1'), (647,'saber1hComboHit2'), (736,'saber1hComboHit3'), (650,'saber1hFlurry'), (727,'saber1hFlurry2'), (653,'saber1hHeadHit1'), (648,'saber1hHeadHit2'), (734,'saber1hHeadHit3'), (651,'saber1hHit1'), (654,'saber1hHit2'), (735,'saber1hHit3'), (677,'saber2hBodyHit1'), (675,'saber2hBodyHit2'), (739,'saber2hBodyHit3'), (674,'saber2hFrenzy'), (668,'saber2hHit1'), (679,'saber2hHit2'), (673,'saber2hHit3'), (728,'saber2hPhantom'), (678,'saber2hSweep1'), (680,'saber2hSweep2'), (740,'saber2hSweep3'), (708,'saberPolearmDervish'), (729,'saberPolearmDervish2'), (704,'saberPolearmHit1'), (711,'saberPolearmHit2'), (744,'saberPolearmHit3'), (710,'saberPolearmLegHit1'), (712,'saberPolearmLegHit2'), (743,'saberPolearmLegHit3'), (706,'saberPolearmSpinAttack1'), (713,'saberPolearmSpinAttack2'), (745,'saberPolearmSpinAttack3'), (643,'saberSlash1'), (646,'saberSlash2'), (669,'saberThrow1'), (676,'saberThrow2'), (726,'saberThrow3'), (102,'sample'), (530,'sampleDNA'), (331,'scatterShot1'), (335,'scatterShot2'), (539,'slice_armor'), (536,'slice_containers'), (537,'slice_terminals'), (540,'slice_weaponsadvanced'), (538,'slice_weaponsbasic'), (20,'slitherhorn'), (478,'smokebomb'), (275,'sneak'), (269,'sniperShot'), (642,'space_navigator'), (474,'spotlight'), (547,'sprayShot'), (5,'startdance'), (17,'startdance+basic'), (42,'startdance+basic2'), (948,'startdance+breakdance'), (949,'startdance+breakdance2'), (482,'startdance+exotic'), (483,'startdance+exotic2'), (470,'startdance+exotic3'), (471,'startdance+exotic4'), (46,'startdance+footloose'), (22,'startdance+footloose2'), (48,'startdance+formal'), (23,'startdance+formal2'), (481,'startdance+lyrical'), (469,'startdance+lyrical2'), (467,'startdance+poplock'), (480,'startdance+poplock2'), (466,'startdance+popular'), (479,'startdance+popular2'), (18,'startdance+rhythmic'), (44,'startdance+rhythmic2'), (946,'startdance+tumble'), (947,'startdance+tumble2'), (281,'startleShot1'), (285,'startleShot2'), (7,'startMusic'), (489,'startmusic+ballad'), (24,'startmusic+ceremonial'), (36,'startmusic+folk'), (493,'startmusic+jazz'), (31,'startmusic+rock'), (19,'startmusic+starwars1'), (34,'startmusic+starwars2'), (39,'startmusic+starwars3'), (945,'startmusic+starwars4'), (485,'startmusic+virtuoso'), (491,'startmusic+waltz'), (944,'startmusic+funk'), (586,'steadyaim'), (701,'stopBleeding'), (6,'stopDance'), (8,'stopMusic'), (315,'stoppingShot'), (257,'strafeShot1'), (260,'strafeShot2'), (255,'suppressionFire1'), (350,'suppressionFire2'), (267,'surpriseShot'), (103,'survey'), (585,'sysgroup'), (203,'takeCover'), (513,'tame'), (129,'taunt'), (79,'tendDamage'), (78,'tendWound'), (246,'threatenShot'), (557,'torsoShot'), (707,'totalHealOther'), (717,'totalHealSelf'), (529,'train_mount'), (764,'transferForce'), (484,'traz'), (522,'trick1'), (524,'trick2'), (250,'tumbleToKneeling'), (249,'tumbleToProne'), (251,'tumbleToStanding'), (148,'unarmedBlind1'), (389,'unarmedBodyHit1'), (383,'unarmedCombo1'), (387,'unarmedCombo2'), (381,'unarmedDizzy1'), (394,'unarmedHeadHit1'), (144,'unarmedHit1'), (360,'unarmedHit2'), (364,'unarmedHit3'), (373,'unarmedKnockdown1'), (379,'unarmedKnockdown2'), (391,'unarmedLegHit1'), (126,'unarmedLunge1'), (137,'unarmedLunge2'), (150,'unarmedSpinAttack1'), (385,'unarmedSpinAttack2'), (146,'unarmedStun1'), (552,'underHandShot'), (531,'vendor_fees_1'), (488,'ventriloquism'), (640,'vitalize'), (587,'volleyFire'), (822,'vrepair'), (826,'vrepairother'), (130,'warcry1'), (140,'warcry2'), (253,'warningShot'), (333,'wildShot1'), (337,'wildShot2'), (638,'wookieeRoar'); /*!40000 ALTER TABLE `skill_command` ENABLE KEYS */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
SELECT CountryName, DistributorName FROM(SELECT c.[Name] AS [CountryName], d.[Name] AS [DistributorName], COUNT(i.Id) AS [IngridientsCount], DENSE_RANK() OVER(PARTITION BY c.[Name] ORDER BY COUNT(i.ID) DESC) AS [Rank] FROM Countries AS c JOIN Distributors AS d ON d.CountryId = c.Id LEFT JOIN Ingredients AS i ON i.DistributorId = d.Id GROUP BY c.[Name], d.[Name]) AS RankedDistributors WHERE [Rank] = 1 ORDER BY CountryName, DistributorName
<filename>09 - common table expression.sql with movimenti_cte ([id], [descrizione], [data]) as ( select [id], [descrizione], [data] from movimenti where LEN(descrizione) >= 3 ) select p.*, m.* from movimenti_cte m full outer join persone p on p.id = m.id
/* This scripts provides the number and proportion of sessions where the user has left feedback about the quality of the page where the banner is shown ("feedback sessions"). - The user replied to the feedback request at the bottom of a page: "Is this page useful? Yes/No" - "Feedback sessions" must contain one of the following events: eventAction == "ffNoClick" OR ffYesClick" - The feedback (recorded as an EVENT hit) is assigned to the corresponding pagePath associated with the EVENT hit - "Feedback sessions" are sessions that are shown the banner, and immediately provides feedback (nextEventAction) on the same pagePath they are shown the banner (nextPagePath). No requirements to run this script. Uses `govuk-bigquery-analytics.87773428.ga_sessions_*` output table. */ DECLARE start_date STRING DEFAULT "20210803"; DECLARE end_date STRING DEFAULT "20210816"; CREATE OR REPLACE TABLE `govuk-bigquery-analytics.banner_intervention.banner_feedback` AS -- All sessions that are shown the checker via the banner (eventAction = -- interventionShown) WITH sessions_banner AS ( SELECT CONCAT(fullVisitorId, "-", visitId) AS sessionId FROM `govuk-bigquery-analytics.87773428.ga_sessions_*` CROSS JOIN UNNEST(hits) AS hits WHERE _TABLE_SUFFIX BETWEEN start_date AND end_date AND hits.eventInfo.eventCategory = 'interventionBanner' AND hits.eventInfo.eventAction = 'interventionShown' ), -- All sessions that leave feedback (eventAction = "ffNoClick" OR -- eventAction = "ffYesClick") sessions_feedback AS ( SELECT CONCAT(fullVisitorId, "-", visitId) AS sessionId, FROM `govuk-bigquery-analytics.87773428.ga_sessions_*` CROSS JOIN UNNEST(hits) AS hits WHERE _TABLE_SUFFIX BETWEEN start_date AND end_date AND hits.eventInfo.eventAction IN ("ffNoClick", "ffYesClick") ), -- All sessions that leave feedback and are shown the banner during the same session. -- Keep all EVENT hits and the eventCategory and eventAction. sessions_shown_banner_feedback AS ( SELECT TIMESTAMP_MILLIS(CAST(hits.time + (visitStartTime * 1000) AS INT64)) AS datetime, CONCAT(fullVisitorId, "-", visitId) AS sessionId, hits.page.pagePath, hits.eventInfo.eventCategory, hits.eventInfo.eventAction FROM `govuk-bigquery-analytics.87773428.ga_sessions_*` CROSS JOIN UNNEST(hits) AS hits WHERE _TABLE_SUFFIX BETWEEN start_date AND end_date AND hits.type = 'EVENT' AND CONCAT(fullVisitorId, "-", visitId) IN (SELECT sessionId FROM sessions_feedback) AND CONCAT(fullVisitorId, "-", visitId) IN (SELECT sessionId FROM sessions_banner) ), -- For each session, order by datetime. Flag the following eventAction (nextEventAction) -- and the following pagePath (nextPagePath) for each hit. sessions_next_event_next_path AS ( SELECT *, LEAD(eventAction,1)OVER(PARTITION BY sessionId ORDER BY datetime) AS nextEventAction, LEAD(pagePath,1)OVER(PARTITION BY sessionId ORDER BY datetime) AS nextPagePath FROM sessions_shown_banner_feedback ), -- Only keep sessions that are shown the banner, provide feedback, and do this on -- the same pagePath they are shown the banner (nextPagePath). This table provides -- a summary of the sessions that leave feedback on the same page that the banner -- is shown (once the banner is shown). sessions_banner_feedback AS ( SELECT * FROM sessions_next_event_next_path WHERE eventAction = 'interventionShown' AND (nextEventAction = "ffNoClick" OR nextEventAction = "ffYesClick") AND pagePath = nextPagePath ), -- Count sessionIds for each feedback type (nextEventAction) sessions_feedback_count AS ( SELECT nextEventAction, COUNT(DISTINCT sessionId) AS totalNumberOfSessions FROM sessions_banner_feedback GROUP BY nextEventAction ) -- Calculate proportion SELECT nextEventAction, totalNumberOfSessions, (SELECT COUNT(DISTINCT sessionId) FROM sessions_banner) as totalNumberOfSessionsThatShownBanner, CAST (100 * totalNumberOfSessions / (SELECT COUNT(DISTINCT sessionId) FROM sessions_banner) AS NUMERIC) AS proportionOfSessionsThatLeaveFeedback FROM sessions_feedback_count group by nextEventAction, totalNumberOfSessions
-- ============================================= -- Author: <NAME> -- Create date: 26/11/2007 -- Description: -- ============================================= CREATE PROCEDURE dbo.threeBusinessPortingNextSequenceNumberGet AS BEGIN SET NOCOUNT ON; SELECT ISNULL(MAX(auditSequenceNumber), 0) + 1 FROM dbo.threeBusinessPortingAudit; END GRANT EXECUTE ON threeBusinessPortingNextSequenceNumberGet TO b4nuser GO GRANT EXECUTE ON threeBusinessPortingNextSequenceNumberGet TO reportuser GO
# Tables CREATE TABLE fave_blog_cats ( id int(11) NOT NULL AUTO_INCREMENT COMMENT 'AI', user int(11) NOT NULL COMMENT 'User id', name varchar(255) NOT NULL COMMENT 'Category name', alias varchar(255) NOT NULL COMMENT 'Category alias', lft int(11) NOT NULL COMMENT 'For nested set model', rgt int(11) NOT NULL COMMENT 'For nested set model', PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE fave_blog_cat_post_rel ( post_id int(11) NOT NULL COMMENT 'Post id', category_id int(11) NOT NULL COMMENT 'Category id' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE fave_blog_posts ( id int(11) NOT NULL AUTO_INCREMENT COMMENT 'AI', user int(11) NOT NULL COMMENT 'User id', name varchar(255) NOT NULL COMMENT 'Post name', alias varchar(255) NOT NULL COMMENT 'Post alias', category int(11) NOT NULL, briefly text NOT NULL COMMENT 'Post brief content', content text NOT NULL COMMENT 'Post content', datetime datetime NOT NULL COMMENT 'Creation date/time', active int(1) NOT NULL COMMENT 'Is active post or not', PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE fave_notify_mail ( id int(11) NOT NULL AUTO_INCREMENT COMMENT 'AI', email varchar(255) NOT NULL COMMENT 'Email address', subject varchar(800) NOT NULL COMMENT 'Email subject', message text NOT NULL COMMENT 'Email body', error text NOT NULL COMMENT 'Send error message', datetime datetime NOT NULL COMMENT 'Creation date/time', status int(1) NOT NULL COMMENT 'Sending status', PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE fave_pages ( id int(11) NOT NULL AUTO_INCREMENT COMMENT 'AI', user int(11) NOT NULL COMMENT 'User id', template varchar(255) NOT NULL DEFAULT 'page' COMMENT 'Template', name varchar(255) NOT NULL COMMENT 'Page name', alias varchar(255) NOT NULL COMMENT 'Page url part', content text NOT NULL COMMENT 'Page content', meta_title varchar(255) NOT NULL DEFAULT '' COMMENT 'Page meta title', meta_keywords varchar(255) NOT NULL DEFAULT '' COMMENT 'Page meta keywords', meta_description varchar(510) NOT NULL DEFAULT '' COMMENT 'Page meta description', datetime datetime NOT NULL COMMENT 'Creation date/time', active int(1) NOT NULL COMMENT 'Is active page or not', PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE fave_settings ( name varchar(255) NOT NULL COMMENT 'Setting name', value text NOT NULL COMMENT 'Setting value' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE fave_shop_cat_product_rel ( product_id int(11) NOT NULL COMMENT 'Product id', category_id int(11) NOT NULL COMMENT 'Category id' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE fave_shop_cats ( id int(11) NOT NULL AUTO_INCREMENT COMMENT 'AI', user int(11) NOT NULL COMMENT 'User id', name varchar(255) NOT NULL COMMENT 'Category name', alias varchar(255) NOT NULL COMMENT 'Category alias', lft int(11) NOT NULL COMMENT 'For nested set model', rgt int(11) NOT NULL COMMENT 'For nested set model', PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE fave_shop_currencies ( id int(11) NOT NULL AUTO_INCREMENT COMMENT 'AI', name varchar(255) NOT NULL COMMENT 'Currency name', coefficient float(8,4) NOT NULL DEFAULT '1.0000' COMMENT 'Currency coefficient', code varchar(10) NOT NULL COMMENT 'Currency code', symbol varchar(5) NOT NULL COMMENT 'Currency symbol', PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE fave_shop_filter_product_values ( product_id int(11) NOT NULL COMMENT 'Product id', filter_value_id int(11) NOT NULL COMMENT 'Filter value id' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE fave_shop_filters ( id int(11) NOT NULL AUTO_INCREMENT COMMENT 'AI', name varchar(255) NOT NULL COMMENT 'Filter name in CP', filter varchar(255) NOT NULL COMMENT 'Filter name in site', PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE fave_shop_filters_values ( id int(11) NOT NULL AUTO_INCREMENT COMMENT 'AI', filter_id int(11) NOT NULL COMMENT 'Filter id', name varchar(255) NOT NULL COMMENT 'Value name', PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE fave_shop_order_products ( id int(11) NOT NULL AUTO_INCREMENT COMMENT 'AI', order_id int(11) NOT NULL COMMENT 'Order ID', product_id int(11) NOT NULL COMMENT 'Product ID', price float(8,2) NOT NULL COMMENT 'Product price', quantity int(11) NOT NULL COMMENT 'Quantity', PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE fave_shop_orders ( id int(11) NOT NULL AUTO_INCREMENT COMMENT 'AI', create_datetime datetime NOT NULL COMMENT 'Create date/time', update_datetime datetime NOT NULL COMMENT 'Update date/time', currency_id int(11) NOT NULL COMMENT 'Currency ID', currency_name varchar(255) NOT NULL COMMENT 'Currency name', currency_coefficient float(8,4) NOT NULL DEFAULT '1.0000' COMMENT 'Currency coefficient', currency_code varchar(10) NOT NULL COMMENT 'Currency code', currency_symbol varchar(5) NOT NULL COMMENT 'Currency symbol', client_last_name varchar(64) NOT NULL COMMENT 'Client last name', client_first_name varchar(64) NOT NULL COMMENT 'Client first name', client_middle_name varchar(64) NOT NULL DEFAULT '' COMMENT 'Client middle name', client_phone varchar(20) NOT NULL DEFAULT '' COMMENT 'Client phone', client_email varchar(64) NOT NULL COMMENT 'Client email', client_delivery_comment text NOT NULL COMMENT 'Client delivery comment', client_order_comment text NOT NULL COMMENT 'Client order comment', status int(1) NOT NULL COMMENT 'new/confirmed/inprogress/canceled/completed', PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE fave_shop_product_images ( id int(11) NOT NULL AUTO_INCREMENT, product_id int(11) NOT NULL, filename varchar(255) NOT NULL, ord int(11) NOT NULL DEFAULT '0', PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE fave_shop_products ( id int(11) NOT NULL AUTO_INCREMENT COMMENT 'AI', parent_id int(11) DEFAULT NULL, user int(11) NOT NULL COMMENT 'User id', currency int(11) NOT NULL COMMENT 'Currency id', price float(8,2) NOT NULL COMMENT 'Product price', price_old float(8,2) NOT NULL DEFAULT '0.00', price_promo float(8,2) NOT NULL DEFAULT '0.00', gname varchar(255) NOT NULL, name varchar(255) NOT NULL COMMENT 'Product name', alias varchar(255) NOT NULL COMMENT 'Product alias', vendor varchar(255) NOT NULL, quantity int(11) NOT NULL, category int(11) NOT NULL, briefly text NOT NULL COMMENT 'Product brief content', content text NOT NULL COMMENT 'Product content', datetime datetime NOT NULL COMMENT 'Creation date/time', active int(1) NOT NULL COMMENT 'Is active product or not', custom1 varchar(2048) NOT NULL DEFAULT '', custom2 varchar(2048) NOT NULL DEFAULT '', PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE fave_users ( id int(11) NOT NULL AUTO_INCREMENT COMMENT 'AI', first_name varchar(64) NOT NULL DEFAULT '' COMMENT 'User first name', last_name varchar(64) NOT NULL DEFAULT '' COMMENT 'User last name', email varchar(64) NOT NULL COMMENT 'User email', password varchar(32) NOT NULL COMMENT 'User password (<PASSWORD>)', admin int(1) NOT NULL COMMENT 'Is admin user or not', active int(1) NOT NULL COMMENT 'Is active user or not', PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; # Indexes ALTER TABLE fave_blog_cat_post_rel ADD UNIQUE KEY post_category (post_id,category_id) USING BTREE; ALTER TABLE fave_blog_cat_post_rel ADD KEY FK_blog_cat_post_rel_post_id (post_id); ALTER TABLE fave_blog_cat_post_rel ADD KEY FK_blog_cat_post_rel_category_id (category_id); ALTER TABLE fave_blog_cats ADD UNIQUE KEY alias (alias); ALTER TABLE fave_blog_cats ADD KEY lft (lft), ADD KEY rgt (rgt); ALTER TABLE fave_blog_cats ADD KEY FK_blog_cats_user (user); ALTER TABLE fave_blog_posts ADD UNIQUE KEY alias (alias); ALTER TABLE fave_blog_posts ADD KEY FK_blog_posts_user (user); ALTER TABLE fave_blog_posts ADD KEY FK_blog_posts_category (category); ALTER TABLE fave_notify_mail ADD KEY status (status); ALTER TABLE fave_pages ADD UNIQUE KEY alias (alias); ALTER TABLE fave_pages ADD KEY alias_active (alias,active) USING BTREE; ALTER TABLE fave_pages ADD KEY FK_pages_user (user); ALTER TABLE fave_settings ADD UNIQUE KEY name (name); ALTER TABLE fave_shop_cat_product_rel ADD UNIQUE KEY product_category (product_id,category_id) USING BTREE; ALTER TABLE fave_shop_cat_product_rel ADD KEY FK_shop_cat_product_rel_product_id (product_id); ALTER TABLE fave_shop_cat_product_rel ADD KEY FK_shop_cat_product_rel_category_id (category_id); ALTER TABLE fave_shop_cats ADD UNIQUE KEY alias (alias); ALTER TABLE fave_shop_cats ADD KEY lft (lft), ADD KEY rgt (rgt); ALTER TABLE fave_shop_cats ADD KEY FK_shop_cats_user (user); ALTER TABLE fave_shop_filter_product_values ADD UNIQUE KEY product_filter_value (product_id,filter_value_id) USING BTREE; ALTER TABLE fave_shop_filter_product_values ADD KEY FK_shop_filter_product_values_product_id (product_id); ALTER TABLE fave_shop_filter_product_values ADD KEY FK_shop_filter_product_values_filter_value_id (filter_value_id); ALTER TABLE fave_shop_filters ADD KEY name (name); ALTER TABLE fave_shop_filters_values ADD KEY FK_shop_filters_values_filter_id (filter_id); ALTER TABLE fave_shop_filters_values ADD KEY name (name); ALTER TABLE fave_shop_orders ADD KEY FK_shop_orders_currency_id (currency_id); ALTER TABLE fave_shop_order_products ADD UNIQUE KEY order_product (order_id,product_id) USING BTREE; ALTER TABLE fave_shop_order_products ADD KEY FK_shop_order_products_order_id (order_id); ALTER TABLE fave_shop_order_products ADD KEY FK_shop_order_products_product_id (product_id); ALTER TABLE fave_shop_product_images ADD UNIQUE KEY product_filename (product_id,filename) USING BTREE; ALTER TABLE fave_shop_product_images ADD KEY FK_shop_product_images_product_id (product_id); ALTER TABLE fave_shop_products ADD UNIQUE KEY alias (alias); ALTER TABLE fave_shop_products ADD KEY FK_shop_products_user (user); ALTER TABLE fave_shop_products ADD KEY FK_shop_products_currency (currency); ALTER TABLE fave_shop_products ADD KEY FK_shop_products_category (category); ALTER TABLE fave_shop_products ADD KEY FK_shop_products_parent_id (parent_id); ALTER TABLE fave_shop_products ADD KEY name (name); ALTER TABLE fave_users ADD UNIQUE KEY email (email); # References ALTER TABLE fave_blog_cat_post_rel ADD CONSTRAINT FK_blog_cat_post_rel_post_id FOREIGN KEY (post_id) REFERENCES fave_blog_posts (id) ON DELETE RESTRICT; ALTER TABLE fave_blog_cat_post_rel ADD CONSTRAINT FK_blog_cat_post_rel_category_id FOREIGN KEY (category_id) REFERENCES fave_blog_cats (id) ON DELETE RESTRICT; ALTER TABLE fave_blog_cats ADD CONSTRAINT FK_blog_cats_user FOREIGN KEY (user) REFERENCES fave_users (id) ON DELETE RESTRICT; ALTER TABLE fave_blog_posts ADD CONSTRAINT FK_blog_posts_user FOREIGN KEY (user) REFERENCES fave_users (id) ON DELETE RESTRICT; ALTER TABLE fave_blog_posts ADD CONSTRAINT FK_blog_posts_category FOREIGN KEY (category) REFERENCES fave_blog_cats (id) ON DELETE RESTRICT; ALTER TABLE fave_pages ADD CONSTRAINT FK_pages_user FOREIGN KEY (user) REFERENCES fave_users (id) ON DELETE RESTRICT; ALTER TABLE fave_shop_cat_product_rel ADD CONSTRAINT FK_shop_cat_product_rel_product_id FOREIGN KEY (product_id) REFERENCES fave_shop_products (id) ON DELETE RESTRICT; ALTER TABLE fave_shop_cat_product_rel ADD CONSTRAINT FK_shop_cat_product_rel_category_id FOREIGN KEY (category_id) REFERENCES fave_shop_cats (id) ON DELETE RESTRICT; ALTER TABLE fave_shop_cats ADD CONSTRAINT FK_shop_cats_user FOREIGN KEY (user) REFERENCES fave_users (id) ON DELETE RESTRICT; ALTER TABLE fave_shop_filter_product_values ADD CONSTRAINT FK_shop_filter_product_values_product_id FOREIGN KEY (product_id) REFERENCES fave_shop_products (id) ON DELETE RESTRICT; ALTER TABLE fave_shop_filter_product_values ADD CONSTRAINT FK_shop_filter_product_values_filter_value_id FOREIGN KEY (filter_value_id) REFERENCES fave_shop_filters_values (id) ON DELETE RESTRICT; ALTER TABLE fave_shop_filters_values ADD CONSTRAINT FK_shop_filters_values_filter_id FOREIGN KEY (filter_id) REFERENCES fave_shop_filters (id) ON DELETE RESTRICT; ALTER TABLE fave_shop_orders ADD CONSTRAINT FK_shop_orders_currency_id FOREIGN KEY (currency_id) REFERENCES fave_shop_currencies (id) ON DELETE RESTRICT; ALTER TABLE fave_shop_order_products ADD CONSTRAINT FK_shop_order_products_order_id FOREIGN KEY (order_id) REFERENCES fave_shop_orders (id) ON DELETE RESTRICT; ALTER TABLE fave_shop_order_products ADD CONSTRAINT FK_shop_order_products_product_id FOREIGN KEY (product_id) REFERENCES fave_shop_products (id) ON DELETE RESTRICT; ALTER TABLE fave_shop_product_images ADD CONSTRAINT FK_shop_product_images_product_id FOREIGN KEY (product_id) REFERENCES fave_shop_products (id) ON DELETE RESTRICT; ALTER TABLE fave_shop_products ADD CONSTRAINT FK_shop_products_user FOREIGN KEY (user) REFERENCES fave_users (id) ON DELETE RESTRICT; ALTER TABLE fave_shop_products ADD CONSTRAINT FK_shop_products_currency FOREIGN KEY (currency) REFERENCES fave_shop_currencies (id) ON DELETE RESTRICT; ALTER TABLE fave_shop_products ADD CONSTRAINT FK_shop_products_category FOREIGN KEY (category) REFERENCES fave_shop_cats (id) ON DELETE RESTRICT; ALTER TABLE fave_shop_products ADD CONSTRAINT FK_shop_products_parent_id FOREIGN KEY (parent_id) REFERENCES fave_shop_products (id) ON DELETE RESTRICT;
create procedure [log4Utils].[JournalPrinter] ( @JournalId int ) as /********************************************************************************************************************** Properties ===================================================================================================================== PROCEDURE NAME: [log4Utils].[JournalPrinter] DESCRIPTION: Prints the contents of JournalDetail for the specified Journal ID respecting all line feeds and/or carriage returns DATE OF ORIGIN: 03-MAY-2011 ORIGINAL AUTHOR: <NAME> (data-centric solutions ltd. http://www.data-centric.co.uk) BUILD DATE: 13-AUG-2017 BUILD VERSION: 2.1.1 DEPENDANTS: None DEPENDENCIES: None Inputs ====== @JournalId - if -1, just processes any provided input string @InputString - optional, the string to print Outputs ======= None Returns ======= NULL Additional Notes ================ Revision history ===================================================================================================================== ChangeDate Author Version Narrative ============ ====== ======= ==================================================================================== 03-MAY-2011 GML v0.0.4 Created ------------ ------ ------- ------------------------------------------------------------------------------------ 05-NOV-2011 GML v0.0.8 Now calls log4.PrintString (which is SQL2005 compatible) ------------ ------ ------- ------------------------------------------------------------------------------------ 12-AUG-2017 GML v2.1.0 Code review, changed license to MIT as part of migration to GitHub ------------ ------ ------- ------------------------------------------------------------------------------------ ===================================================================================================================== (C) Copyright 2006-17 <NAME>. (https://github.com/datacentricity/log4tsql) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. You should have received a copy of the MIT License along with this library; if not, you can find it at https://opensource.org/licenses/MIT or https://choosealicense.com/licenses/mit/ **********************************************************************************************************************/ begin set transaction isolation level read uncommitted; set nocount on; --! Working Values declare @WorkingString varchar(max) select @WorkingString = ExtraInfo from [log4Private].[JournalDetail] where JournalId = @JournalId if coalesce(@WorkingString, '') = '' begin raiserror('No Extra Info for Journal ID: %d!', 0, 1, @JournalId); end else begin print ''; print replicate('=', 120); exec [log4Utils].[PrintString] @WorkingString print ''; print replicate('=', 120); raiserror('Completed processing journal detail for Journal ID: %d', 0, 1, @JournalId) with nowait; end set nocount off; return; end go exec sp_addextendedproperty @name = N'MS_Description', @value = N'Prints the contents of JournalDetail for the specified Journal ID respecting all line feeds and/or carriage returns', @level0type = N'SCHEMA', @level0name = N'log4Utils', @level1type = N'PROCEDURE', @level1name = N'JournalPrinter';
<reponame>Riddhi9570/HackerrankPracticeProblems -- # Problem: https://www.hackerrank.com/challenges/harry-potter-and-wands/problem -- # Score: 30 -- # Difficulty: Medium SELECT W.ID, WP.AGE, W.COINS_NEEDED, W.POWER FROM WANDS AS W JOIN WANDS_PROPERTY AS WP ON (W.CODE = WP.CODE) WHERE WP.IS_EVIL = 0 AND W.COINS_NEEDED=(SELECT MIN(COINS_NEEDED) FROM WANDS AS X JOIN WANDS_PROPERTY AS Y ON (X.CODE = Y.CODE) WHERE X.POWER = W.POWER AND Y.AGE = WP.AGE) ORDER BY W.POWER DESC, WP.AGE DESC;
DROP INDEX IF EXISTS idx_rounds_buyer_id
CREATE TABLE B_CATALOG_CURRENCY ( CURRENCY CHAR(3 CHAR) NOT NULL, AMOUNT_CNT NUMBER(18) DEFAULT '1' NULL, AMOUNT NUMBER(18, 4) NULL, SORT NUMBER(18) DEFAULT '100' NOT NULL, DATE_UPDATE DATE NOT NULL, PRIMARY KEY (CURRENCY) ) / CREATE TABLE B_CATALOG_CURRENCY_LANG ( CURRENCY CHAR(3 CHAR) NOT NULL, LID CHAR(2 CHAR) NOT NULL, FORMAT_STRING VARCHAR2(50 CHAR) NOT NULL, FULL_NAME VARCHAR2(50 CHAR) NULL, DEC_POINT VARCHAR2(5 CHAR) DEFAULT '.' NULL, THOUSANDS_SEP VARCHAR2(5 CHAR) DEFAULT '' NULL, DECIMALS NUMBER(4) DEFAULT '2' NOT NULL, THOUSANDS_VARIANT CHAR(1 CHAR) NULL, PRIMARY KEY (CURRENCY, LID) ) / CREATE TABLE B_CATALOG_CURRENCY_RATE ( ID NUMBER(18) NOT NULL, CURRENCY CHAR(3 CHAR) NOT NULL, DATE_RATE DATE NOT NULL, RATE_CNT NUMBER(18) DEFAULT '1' NOT NULL, RATE NUMBER(18, 4) DEFAULT '0.00' NOT NULL, PRIMARY KEY (ID) ) / CREATE INDEX IX_CURRENCY_RATE ON B_CATALOG_CURRENCY_RATE(CURRENCY, DATE_RATE) / CREATE SEQUENCE SQ_B_CATALOG_CURRENCY_RATE INCREMENT BY 1 NOMAXVALUE NOCYCLE NOCACHE NOORDER / CREATE OR REPLACE TRIGGER B_CATALOG_CURRENCY_RATE_INSERT BEFORE INSERT ON B_CATALOG_CURRENCY_RATE FOR EACH ROW BEGIN IF :NEW.ID IS NULL THEN SELECT SQ_B_CATALOG_CURRENCY_RATE.NEXTVAL INTO :NEW.ID FROM dual; END IF; END; / CREATE OR REPLACE FUNCTION CONVERTCURRENCY ( pSum NUMBER, pFrom CHAR, pTo CHAR, pDate DATE := SYSDATE ) RETURN NUMBER IS vPRICE NUMBER(18,2); vRateFrom NUMBER(18,4) := NULL; vRateFromCnt NUMBER(18) := NULL; vRateTo NUMBER(18,4) := NULL; vRateToCnt NUMBER(18) := NULL; vCurr CHAR(3); CURSOR cRate IS SELECT RATE, RATE_CNT FROM B_CATALOG_CURRENCY_RATE WHERE DATE_RATE < pDate+1 AND CURRENCY=vCurr ORDER BY DATE_RATE DESC; rRate cRate%ROWTYPE; BEGIN vCurr := pFrom; OPEN cRate; FETCH cRate INTO rRate; IF cRate%FOUND THEN vRateFrom := rRate.RATE; vRateFromCnt := rRate.RATE_CNT; END IF; CLOSE cRate; vCurr := pTo; OPEN cRate; FETCH cRate INTO rRate; IF cRate%FOUND THEN vRateTo := rRate.RATE; vRateToCnt := rRate.RATE_CNT; END IF; CLOSE cRate; SELECT TO_NUMBER(pSum * NVL(vRateFrom, C1.AMOUNT) * NVL(vRateToCnt, C2.AMOUNT_CNT)/NVL(vRateTo, C2.AMOUNT)/NVL(vRateFromCnt, C1.AMOUNT_CNT)) INTO vPRICE FROM B_CATALOG_CURRENCY C1, B_CATALOG_CURRENCY C2 WHERE C1.CURRENCY=pFrom AND C2.CURRENCY=pTo; return vPRICE; END; / CREATE OR REPLACE FUNCTION GETCURRENCYFACTOR ( pFrom CHAR, pTo CHAR, pDate DATE := SYSDATE ) RETURN NUMBER IS vPRICE NUMBER(38,20); vRateFrom NUMBER(18,4) := NULL; vRateFromCnt NUMBER(18) := NULL; vRateTo NUMBER(18,4) := NULL; vRateToCnt NUMBER(18) := NULL; vCurr CHAR(3); CURSOR cRate IS SELECT RATE, RATE_CNT FROM B_CATALOG_CURRENCY_RATE WHERE DATE_RATE < pDate+1 AND CURRENCY=vCurr ORDER BY DATE_RATE DESC; rRate cRate%ROWTYPE; BEGIN vCurr := pFrom; OPEN cRate; FETCH cRate INTO rRate; IF cRate%FOUND THEN vRateFrom := rRate.RATE; vRateFromCnt := rRate.RATE_CNT; END IF; CLOSE cRate; vCurr := pTo; OPEN cRate; FETCH cRate INTO rRate; IF cRate%FOUND THEN vRateTo := rRate.RATE; vRateToCnt := rRate.RATE_CNT; END IF; CLOSE cRate; SELECT TO_NUMBER(NVL(vRateFrom, C1.AMOUNT) * NVL(vRateToCnt, C2.AMOUNT_CNT)/NVL(vRateTo, C2.AMOUNT)/NVL(vRateFromCnt, C1.AMOUNT_CNT)) INTO vPRICE FROM B_CATALOG_CURRENCY C1, B_CATALOG_CURRENCY C2 WHERE C1.CURRENCY=pFrom AND C2.CURRENCY=pTo; return vPRICE; END; /
{{ config( materialized='table', tags=["this_run"] ) }} with prep as ( select ev.page_view_id, ev.event_id, ev.app_id, -- user fields ev.user_id, ev.domain_userid, ev.network_userid, -- session fields ev.domain_sessionid, ev.domain_sessionidx, -- timestamp fields ev.dvce_created_tstamp, ev.collector_tstamp, ev.derived_tstamp, ev.derived_tstamp as start_tstamp, ev.doc_width, ev.doc_height, ev.page_title, ev.page_url, ev.page_urlscheme, ev.page_urlhost, ev.page_urlpath, ev.page_urlquery, ev.page_urlfragment, ev.mkt_medium, ev.mkt_source, ev.mkt_term, ev.mkt_content, ev.mkt_campaign, ev.mkt_clickid, ev.mkt_network, ev.page_referrer, ev.refr_urlscheme, ev.refr_urlhost, ev.refr_urlpath, ev.refr_urlquery, ev.refr_urlfragment, ev.refr_medium, ev.refr_source, ev.refr_term, ev.geo_country, ev.geo_region, ev.geo_region_name, ev.geo_city, ev.geo_zipcode, ev.geo_latitude, ev.geo_longitude, ev.geo_timezone , ev.user_ipaddress, ev.useragent, ev.br_lang, ev.br_viewwidth, ev.br_viewheight, ev.br_colordepth, ev.br_renderengine, ev.os_timezone, -- optional fields, only populated if enabled. -- iab enrichment fields: set iab variable to true to enable {% if var('snowplow__enable_iab') %} ev.contexts_com_iab_snowplow_spiders_and_robots_1[0]:category::VARCHAR AS category, ev.contexts_com_iab_snowplow_spiders_and_robots_1[0]:primaryImpact::VARCHAR AS primary_impact, ev.contexts_com_iab_snowplow_spiders_and_robots_1[0]:reason::VARCHAR AS reason, ev.contexts_com_iab_snowplow_spiders_and_robots_1[0]:spiderOrRobot::BOOLEAN AS spider_or_robot, {% else %} cast(null as {{ dbt_utils.type_string() }}) as category, cast(null as {{ dbt_utils.type_string() }}) as primary_impact, cast(null as {{ dbt_utils.type_string() }}) as reason, cast(null as boolean) as spider_or_robot, {% endif %} -- ua parser enrichment fields: set ua_parser variable to true to enable {% if var('snowplow__enable_ua') %} ev.contexts_com_snowplowanalytics_snowplow_ua_parser_context_1[0]:useragentFamily::VARCHAR AS useragent_family, ev.contexts_com_snowplowanalytics_snowplow_ua_parser_context_1[0]:useragentMajor::VARCHAR AS useragent_major, ev.contexts_com_snowplowanalytics_snowplow_ua_parser_context_1[0]:useragentMinor::VARCHAR AS useragent_minor, ev.contexts_com_snowplowanalytics_snowplow_ua_parser_context_1[0]:useragentPatch::VARCHAR AS useragent_patch, ev.contexts_com_snowplowanalytics_snowplow_ua_parser_context_1[0]:useragentVersion::VARCHAR AS useragent_version, ev.contexts_com_snowplowanalytics_snowplow_ua_parser_context_1[0]:osFamily::VARCHAR AS os_family, ev.contexts_com_snowplowanalytics_snowplow_ua_parser_context_1[0]:osMajor::VARCHAR AS os_major, ev.contexts_com_snowplowanalytics_snowplow_ua_parser_context_1[0]:osMinor::VARCHAR AS os_minor, ev.contexts_com_snowplowanalytics_snowplow_ua_parser_context_1[0]:osPatch::VARCHAR AS os_patch, ev.contexts_com_snowplowanalytics_snowplow_ua_parser_context_1[0]:osPatchMinor::VARCHAR AS os_patch_minor, ev.contexts_com_snowplowanalytics_snowplow_ua_parser_context_1[0]:osVersion::VARCHAR AS os_version, ev.contexts_com_snowplowanalytics_snowplow_ua_parser_context_1[0]:deviceFamily::VARCHAR AS device_family, {% else %} cast(null as {{ dbt_utils.type_string() }}) as useragent_family, cast(null as {{ dbt_utils.type_string() }}) as useragent_major, cast(null as {{ dbt_utils.type_string() }}) as useragent_minor, cast(null as {{ dbt_utils.type_string() }}) as useragent_patch, cast(null as {{ dbt_utils.type_string() }}) as useragent_version, cast(null as {{ dbt_utils.type_string() }}) as os_family, cast(null as {{ dbt_utils.type_string() }}) as os_major, cast(null as {{ dbt_utils.type_string() }}) as os_minor, cast(null as {{ dbt_utils.type_string() }}) as os_patch, cast(null as {{ dbt_utils.type_string() }}) as os_patch_minor, cast(null as {{ dbt_utils.type_string() }}) as os_version, cast(null as {{ dbt_utils.type_string() }}) as device_family, {% endif %} -- yauaa enrichment fields: set yauaa variable to true to enable {% if var('snowplow__enable_yauaa') %} ev.contexts_nl_basjes_yauaa_context_1[0]:deviceClass::VARCHAR AS device_class, ev.contexts_nl_basjes_yauaa_context_1[0]:agentClass::VARCHAR AS agent_class, ev.contexts_nl_basjes_yauaa_context_1[0]:agentName::VARCHAR AS agent_name, ev.contexts_nl_basjes_yauaa_context_1[0]:agentNameVersion::VARCHAR AS agent_name_version, ev.contexts_nl_basjes_yauaa_context_1[0]:agentNameVersionMajor::VARCHAR AS agent_name_version_major, ev.contexts_nl_basjes_yauaa_context_1[0]:agentVersion::VARCHAR AS agent_version, ev.contexts_nl_basjes_yauaa_context_1[0]:agentVersionMajor::VARCHAR AS agent_version_major, ev.contexts_nl_basjes_yauaa_context_1[0]:deviceBrand::VARCHAR AS device_brand, ev.contexts_nl_basjes_yauaa_context_1[0]:deviceName::VARCHAR AS device_name, ev.contexts_nl_basjes_yauaa_context_1[0]:deviceVersion::VARCHAR AS device_version, ev.contexts_nl_basjes_yauaa_context_1[0]:layoutEngineClass::VARCHAR AS layout_engine_class, ev.contexts_nl_basjes_yauaa_context_1[0]:layoutEngineName::VARCHAR AS layout_engine_name, ev.contexts_nl_basjes_yauaa_context_1[0]:layoutEngineNameVersion::VARCHAR AS layout_engine_name_version, ev.contexts_nl_basjes_yauaa_context_1[0]:layoutEngineNameVersionMajor::VARCHAR AS layout_engine_name_version_major, ev.contexts_nl_basjes_yauaa_context_1[0]:layoutEngineVersion::VARCHAR AS layout_engine_version, ev.contexts_nl_basjes_yauaa_context_1[0]:layoutEngineVersionMajor::VARCHAR AS layout_engine_version_major, ev.contexts_nl_basjes_yauaa_context_1[0]:operatingSystemClass::VARCHAR AS operating_system_class, ev.contexts_nl_basjes_yauaa_context_1[0]:operatingSystemName::VARCHAR AS operating_system_name, ev.contexts_nl_basjes_yauaa_context_1[0]:operatingSystemNameVersion::VARCHAR AS operating_system_name_version, ev.contexts_nl_basjes_yauaa_context_1[0]:operatingSystemVersion::VARCHAR AS operating_system_version {% else %} cast(null as {{ dbt_utils.type_string() }}) as device_class, cast(null as {{ dbt_utils.type_string() }}) as agent_class, cast(null as {{ dbt_utils.type_string() }}) as agent_name, cast(null as {{ dbt_utils.type_string() }}) as agent_name_version, cast(null as {{ dbt_utils.type_string() }}) as agent_name_version_major, cast(null as {{ dbt_utils.type_string() }}) as agent_version, cast(null as {{ dbt_utils.type_string() }}) as agent_version_major, cast(null as {{ dbt_utils.type_string() }}) as device_brand, cast(null as {{ dbt_utils.type_string() }}) as device_name, cast(null as {{ dbt_utils.type_string() }}) as device_version, cast(null as {{ dbt_utils.type_string() }}) as layout_engine_class, cast(null as {{ dbt_utils.type_string() }}) as layout_engine_name, cast(null as {{ dbt_utils.type_string() }}) as layout_engine_name_version, cast(null as {{ dbt_utils.type_string() }}) as layout_engine_name_version_major, cast(null as {{ dbt_utils.type_string() }}) as layout_engine_version, cast(null as {{ dbt_utils.type_string() }}) as layout_engine_version_major, cast(null as {{ dbt_utils.type_string() }}) as operating_system_class, cast(null as {{ dbt_utils.type_string() }}) as operating_system_name, cast(null as {{ dbt_utils.type_string() }}) as operating_system_name_version, cast(null as {{ dbt_utils.type_string() }}) as operating_system_version {% endif %} from {{ ref('snowplow_web_base_events_this_run') }} as ev where ev.event_name = 'page_view' and ev.page_view_id is not null {% if var("snowplow__ua_bot_filter", true) %} and not rlike(ev.useragent, '.*(bot|crawl|slurp|spider|archiv|spinn|sniff|seo|audit|survey|pingdom|worm|capture|(browser|screen)shots|analyz|index|thumb|check|facebook|PingdomBot|PhantomJS|YandexBot|Twitterbot|a_archiver|facebookexternalhit|Bingbot|BingPreview|Googlebot|Baiduspider|360(Spider|User-agent)|semalt).*') {% endif %} qualify row_number() over (partition by ev.page_view_id order by ev.derived_tstamp) = 1 ) , page_view_events as ( select p.page_view_id, p.event_id, p.app_id, -- user fields p.user_id, p.domain_userid, p.network_userid, -- session fields p.domain_sessionid, p.domain_sessionidx, row_number() over (partition by p.domain_sessionid order by p.derived_tstamp) AS page_view_in_session_index, -- timestamp fields p.dvce_created_tstamp, p.collector_tstamp, p.derived_tstamp, p.start_tstamp, coalesce(t.end_tstamp, p.derived_tstamp) as end_tstamp, -- only page views with pings will have a row in table t {{ dbt_utils.current_timestamp_in_utc() }} as model_tstamp, coalesce(t.engaged_time_in_s, 0) as engaged_time_in_s, -- where there are no pings, engaged time is 0. timediff(second, p.derived_tstamp, coalesce(t.end_tstamp, p.derived_tstamp)) as absolute_time_in_s, sd.hmax as horizontal_pixels_scrolled, sd.vmax as vertical_pixels_scrolled, sd.relative_hmax as horizontal_percentage_scrolled, sd.relative_vmax as vertical_percentage_scrolled, p.doc_width, p.doc_height, p.page_title, p.page_url, p.page_urlscheme, p.page_urlhost, p.page_urlpath, p.page_urlquery, p.page_urlfragment, p.mkt_medium, p.mkt_source, p.mkt_term, p.mkt_content, p.mkt_campaign, p.mkt_clickid, p.mkt_network, p.page_referrer, p.refr_urlscheme, p.refr_urlhost, p.refr_urlpath, p.refr_urlquery, p.refr_urlfragment, p.refr_medium, p.refr_source, p.refr_term, p.geo_country, p.geo_region, p.geo_region_name, p.geo_city, p.geo_zipcode, p.geo_latitude, p.geo_longitude, p.geo_timezone, p.user_ipaddress, p.useragent, p.br_lang, p.br_viewwidth, p.br_viewheight, p.br_colordepth, p.br_renderengine, p.os_timezone, p.category, p.primary_impact, p.reason, p.spider_or_robot, p.useragent_family, p.useragent_major, p.useragent_minor, p.useragent_patch, p.useragent_version, p.os_family, p.os_major, p.os_minor, p.os_patch, p.os_patch_minor, p.os_version, p.device_family, p.device_class, p.agent_class, p.agent_name, p.agent_name_version, p.agent_name_version_major, p.agent_version, p.agent_version_major, p.device_brand, p.device_name, p.device_version, p.layout_engine_class, p.layout_engine_name, p.layout_engine_name_version, p.layout_engine_name_version_major, p.layout_engine_version, p.layout_engine_version_major, p.operating_system_class, p.operating_system_name, p.operating_system_name_version, p.operating_system_version from prep p left join {{ ref('snowplow_web_pv_engaged_time') }} t on p.page_view_id = t.page_view_id left join {{ ref('snowplow_web_pv_scroll_depth') }} sd on p.page_view_id = sd.page_view_id ) select pve.page_view_id, pve.event_id, pve.app_id, -- user fields pve.user_id, pve.domain_userid, pve.network_userid, -- session fields pve.domain_sessionid, pve.domain_sessionidx, pve.page_view_in_session_index, max(pve.page_view_in_session_index) over (partition by pve.domain_sessionid) as page_views_in_session, -- timestamp fields pve.dvce_created_tstamp, pve.collector_tstamp, pve.derived_tstamp, pve.start_tstamp, pve.end_tstamp, pve.model_tstamp, pve.engaged_time_in_s, pve.absolute_time_in_s, pve.horizontal_pixels_scrolled, pve.vertical_pixels_scrolled, pve.horizontal_percentage_scrolled, pve.vertical_percentage_scrolled, pve.doc_width, pve.doc_height, pve.page_title, pve.page_url, pve.page_urlscheme, pve.page_urlhost, pve.page_urlpath, pve.page_urlquery, pve.page_urlfragment, pve.mkt_medium, pve.mkt_source, pve.mkt_term, pve.mkt_content, pve.mkt_campaign, pve.mkt_clickid, pve.mkt_network, pve.page_referrer, pve.refr_urlscheme, pve.refr_urlhost, pve.refr_urlpath, pve.refr_urlquery, pve.refr_urlfragment, pve.refr_medium, pve.refr_source, pve.refr_term, pve.geo_country, pve.geo_region, pve.geo_region_name, pve.geo_city, pve.geo_zipcode, pve.geo_latitude, pve.geo_longitude, pve.geo_timezone, pve.user_ipaddress, pve.useragent, pve.br_lang, pve.br_viewwidth, pve.br_viewheight, pve.br_colordepth, pve.br_renderengine, pve.os_timezone, pve.category, pve.primary_impact, pve.reason, pve.spider_or_robot, pve.useragent_family, pve.useragent_major, pve.useragent_minor, pve.useragent_patch, pve.useragent_version, pve.os_family, pve.os_major, pve.os_minor, pve.os_patch, pve.os_patch_minor, pve.os_version, pve.device_family, pve.device_class, pve.agent_class, pve.agent_name, pve.agent_name_version, pve.agent_name_version_major, pve.agent_version, pve.agent_version_major, pve.device_brand, pve.device_name, pve.device_version, pve.layout_engine_class, pve.layout_engine_name, pve.layout_engine_name_version, pve.layout_engine_name_version_major, pve.layout_engine_version, pve.layout_engine_version_major, pve.operating_system_class, pve.operating_system_name, pve.operating_system_name_version, pve.operating_system_version from page_view_events pve
<reponame>cwsus/cws-esolutions<filename>ansible/roles/installSqlConfig/SQLScripts/eSolutionsHistory/eSolutionsArchive.procedures.sql DELIMITER // /*!50003 SET @TEMP_SQL_MODE=@@SQL_MODE, SQL_MODE='STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER' */ // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`getArticleByAttribute` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`insertRecord` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`retrTopArticles` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`retrArticle` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`addNewArticle` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`updateArticle` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`updateArticleStatus` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`getArticleCount` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`retrPendingArticles` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`getRecordByAttribute` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`insertApex` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`insertRecord` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`getApplicationCount` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`listApplications` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`getApplicationData` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`removeApplicationData` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`updateApplicationData` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`insertNewApplication` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`getApplicationByAttribute` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`getServerByAttribute` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`validateServerHostName` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`insertNewServer` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`updateServerData` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`retireServer` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`getServerCount` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`getServerList` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`retrServerData` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`getRetiredServers` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`getDataCenterByAttribute` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`addNewDatacenter` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`removeDataCenter` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`getDatacenterCount` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`listDataCenters` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`retrDataCenter` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`getMessagesByAttribute` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`submitSvcMessage` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`updateServiceMessage` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`retrServiceMessage` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`retrServiceMessages` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`retrAlertMessages` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`getPlatformByAttribute` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`addNewPlatform` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`updatePlatformData` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`removePlatformData` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`getPlatformData` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`getPlatformCount` // DROP PROCEDURE IF EXISTS `ESOLUTIONSSVC_HIST`.`listPlatforms` // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`getArticleByAttribute`( IN searchTerms VARCHAR(100), IN startRow INT ) BEGIN SELECT HITS, ID, CREATE_DATE, AUTHOR, KEYWORDS, TITLE, SYMPTOMS, CAUSE, RESOLUTION, STATUS, REVIEWED_BY, REVIEW_DATE, MODIFIED_DATE, MODIFIED_BY, MATCH (ID, KEYWORDS, TITLE, SYMPTOMS, CAUSE, RESOLUTION) AGAINST (+searchTerms WITH QUERY EXPANSION) FROM `ESOLUTIONSSVC_HIST`.`articles` WHERE MATCH (ID, KEYWORDS, TITLE, SYMPTOMS, CAUSE, RESOLUTION) AGAINST (+searchTerms IN BOOLEAN MODE) AND STATUS = 'APPROVED' LIMIT startRow, 20; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`retrTopArticles`( ) BEGIN SELECT HITS, ID, CREATE_DATE, AUTHOR, KEYWORDS, TITLE, SYMPTOMS, CAUSE, RESOLUTION, STATUS, REVIEWED_BY, REVIEW_DATE, MODIFIED_DATE, MODIFIED_BY FROM `articles` WHERE HITS >= 10 AND STATUS = 'APPROVED' LIMIT 15; END // COMMIT // CREATE PROCEDURE `retrArticle`( IN articleId VARCHAR(100), IN isApproval BOOLEAN ) BEGIN IF (isApproval) THEN SELECT HITS, ID, CREATE_DATE, AUTHOR, KEYWORDS, TITLE, SYMPTOMS, CAUSE, RESOLUTION, STATUS, REVIEWED_BY, REVIEW_DATE, MODIFIED_DATE, MODIFIED_BY FROM `articles` WHERE ID = articleId AND STATUS IN ('NEW', 'REVIEW'); ELSE UPDATE `articles` SET HITS = HITS + 1 WHERE ID = articleId; COMMIT; SELECT HITS, ID, CREATE_DATE, AUTHOR, KEYWORDS, TITLE, SYMPTOMS, CAUSE, RESOLUTION, STATUS, REVIEWED_BY, REVIEW_DATE, MODIFIED_DATE, MODIFIED_BY FROM `articles` WHERE ID = articleId AND STATUS = 'APPROVED'; END IF; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`addNewArticle`( IN articleId VARCHAR(45), IN author VARCHAR(45), IN keywords VARCHAR(100), IN title VARCHAR(100), IN symptoms VARCHAR(100), IN cause VARCHAR(100), IN resolution TEXT ) BEGIN INSERT INTO `ESOLUTIONSSVC_HIST`.`articles` ( HITS, ID, CREATE_DATE, AUTHOR, KEYWORDS, TITLE, SYMPTOMS, CAUSE, RESOLUTION, STATUS ) VALUES ( 0, articleId, UNIX_TIMESTAMP(), author, keywords, title, symptoms, cause, resolution, 'NEW' ); COMMIT; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`updateArticle`( IN articleId VARCHAR(45), IN keywords VARCHAR(100), IN title VARCHAR(100), IN symptoms VARCHAR(100), IN cause VARCHAR(100), IN resolution TEXT, IN modifiedBy VARCHAR(45) ) BEGIN UPDATE `ESOLUTIONSSVC_HIST`.`articles` SET KEYWORDS = keywords, TITLE = title, SYMPTOMS = symptoms, CAUSE = cause, RESOLUTION = resolution, MODIFIED_BY = modifiedBy, MODIFIED_DATE = UNIX_TIMESTAMP(), STATUS = 'NEW' WHERE ID = articleId; COMMIT; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`updateArticleStatus`( IN articleId VARCHAR(45), IN modifiedBy VARCHAR(45), IN articleStatus VARCHAR(15) ) BEGIN UPDATE `ESOLUTIONSSVC_HIST`.`articles` SET STATUS = articleStatus, MODIFIED_BY = modifiedBy, MODIFIED_DATE = UNIX_TIMESTAMP(), REVIEWED_BY = modifiedBy, REVIEW_DATE = UNIX_TIMESTAMP() WHERE ID = articleId; COMMIT; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`getArticleCount`( IN reqType VARCHAR(45) ) BEGIN SELECT COUNT(*) FROM `ESOLUTIONSSVC_HIST`.`articles` WHERE STATUS = reqType AND AUTHOR != requestorId; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`retrPendingArticles`( IN requestorId VARCHAR(100), IN startRow INT ) BEGIN SELECT HITS, ID, CREATE_DATE, AUTHOR, KEYWORDS, TITLE, SYMPTOMS, CAUSE, RESOLUTION, STATUS, REVIEWED_BY, REVIEW_DATE, MODIFIED_DATE, MODIFIED_BY FROM `ESOLUTIONSSVC_HIST`.`articles` WHERE STATUS IN ('NEW', 'REJECTED', 'REVIEW') AND AUTHOR != requestorId ORDER BY CREATE_DATE DESC LIMIT startRow, 20; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`getRecordByAttribute`( IN attributeName VARCHAR(126) ) BEGIN SELECT ZONE_FILE, APEX_RECORD, ORIGIN, TIMETOLIVE, HOSTNAME, OWNER, HOSTMASTER, SERIAL, REFRESH, RETRY, EXPIRES, CACHETIME, CLASS_NAME, CLASS_TYPE, PORT, WEIGHT, SERVICE, PROTOCOL, PRIORITY, PRIMARY_TARGET, SECONDARY_TARGET, TERTIARY_TARGET, MATCH (`ZONE_FILE`, `ORIGIN`, `HOSTNAME`, `OWNER`, `CLASS_TYPE`, `SERVICE`, `PRIMARY_TARGET`) AGAINST (+attributeName WITH QUERY EXPANSION) FROM `ESOLUTIONSSVC_HIST`.`dns_service` WHERE MATCH (`ZONE_FILE`, `ORIGIN`, `HOSTNAME`, `OWNER`, `CLASS_TYPE`, `SERVICE`, `PRIMARY_TARGET`) AGAINST (+attributeName IN BOOLEAN MODE) ORDER BY APEX_RECORD DESC, ORIGIN ASC; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`insertApex`( IN zoneFile VARCHAR(128), IN origin VARCHAR(126), IN timeToLive INTEGER(12), IN hostname VARCHAR(126), IN masterNameserver VARCHAR(255), IN hostmaster VARCHAR(255), IN serial INTEGER(11), IN refresh INTEGER(12), IN retry INTEGER(12), IN expiry INTEGER(12), IN cacheTime INTEGER(12) ) BEGIN INSERT INTO `ESOLUTIONSSVC_HIST`.`dns_service` ( ZONE_FILE, APEX_RECORD, ORIGIN, TIMETOLIVE, HOSTNAME, OWNER, HOSTMASTER, SERIAL, REFRESH, RETRY, EXPIRES, CACHETIME ) VALUES ( zoneFile, true, origin, timeToLive, hostname, masterNameserver, hostmaster, serial, refresh, retry, expiry, cacheTime ); COMMIT; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`insertRecord`( IN zoneFile VARCHAR(128), IN origin VARCHAR(126), IN hostname VARCHAR(126), IN rrClass VARCHAR(8), IN rrType VARCHAR(11), IN portNumber INTEGER(6), IN weight INTEGER(6), IN service VARCHAR(10), IN protocol VARCHAR(6), IN priority INTEGER(6), IN target VARCHAR(255), IN secondary VARCHAR(255), IN tertiary VARCHAR(255) ) BEGIN INSERT INTO `ESOLUTIONSSVC_HIST`.`dns_service` ( ZONE_FILE, APEX_RECORD, ORIGIN, HOSTNAME, CLASS_NAME, CLASS_TYPE, PORT, WEIGHT, SERVICE, PROTOCOL, PRIORITY, PRIMARY_TARGET, SECONDARY_TARGET, TERTIARY_TARGET ) VALUES ( zoneFile, false, origin, hostname, rrClass, rrType, portNumber, weight, service, protocol, priority, target, secondary, tertiary ); COMMIT; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`getApplicationByAttribute`( IN attributeName VARCHAR(100), IN startRow INT ) BEGIN SELECT GUID, NAME, MATCH (`NAME`) AGAINST (+attributeName WITH QUERY EXPANSION) FROM `ESOLUTIONSSVC_HIST`.`installed_applications` WHERE MATCH (`NAME`) AGAINST (+attributeName IN BOOLEAN MODE) AND APP_OFFLINE_DATE IS NULL LIMIT startRow, 20; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`insertNewApplication`( IN appGuid VARCHAR(128), IN appName VARCHAR(45), IN appVersion DECIMAL(30, 2), IN installPath TEXT, IN packageLocation TEXT, IN packageInstaller TEXT, IN installerOptions TEXT, IN logsDirectory TEXT, IN platformGuid TEXT ) BEGIN INSERT INTO `ESOLUTIONSSVC_HIST`.`installed_applications` ( GUID, NAME, VERSION, INSTALLATION_PATH, PACKAGE_LOCATION, PACKAGE_INSTALLER, INSTALLER_OPTIONS, LOGS_DIRECTORY, PLATFORM_GUID, APP_ONLINE_DATE ) VALUES ( appGuid, appName, appVersion, installPath, packageLocation, packageInstaller, installerOptions, logsDirectory, platformGuid, NOW() ); COMMIT; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`updateApplicationData`( IN appGuid VARCHAR(128), IN appName VARCHAR(45), IN appVersion DECIMAL(30, 2), IN installPath TEXT, IN packageLocation TEXT, IN packageInstaller TEXT, IN installerOptions TEXT, IN logsDirectory TEXT, IN platformGuid TEXT ) BEGIN UPDATE `ESOLUTIONSSVC_HIST`.`installed_applications` SET NAME = appName, VERSION = appVersion, INSTALLATION_PATH = installPath, PACKAGE_LOCATION = packageLocation, PACKAGE_INSTALLER = packageInstaller, INSTALLER_OPTIONS = installerOptions, LOGS_DIRECTORY = logsDirectory, PLATFORM_GUID = platformGuid WHERE GUID = appGuid; COMMIT; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`removeApplicationData`( IN appGuid VARCHAR(128) ) BEGIN UPDATE `ESOLUTIONSSVC_HIST`.`installed_applications` SET APP_OFFLINE_DATE = CURRENT_TIMESTAMP() WHERE GUID = appGuid; COMMIT; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`getApplicationData`( IN appGuid VARCHAR(128) ) BEGIN SELECT GUID, NAME, VERSION, INSTALLATION_PATH, PACKAGE_LOCATION, PACKAGE_INSTALLER, INSTALLER_OPTIONS, LOGS_DIRECTORY, PLATFORM_GUID FROM `ESOLUTIONSSVC_HIST`.`installed_applications` WHERE GUID = appGuid AND APP_OFFLINE_DATE IS NULL; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`getApplicationCount`( ) BEGIN SELECT COUNT(*) FROM `ESOLUTIONSSVC_HIST`.`installed_applications` WHERE APP_OFFLINE_DATE IS NULL; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`listApplications`( IN startRow INT ) BEGIN SELECT GUID, NAME FROM `ESOLUTIONSSVC_HIST`.`installed_applications` WHERE APP_OFFLINE_DATE IS NULL LIMIT startRow, 20; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`getServerByAttribute`( IN attributeName VARCHAR(100), IN startRow INT ) BEGIN SELECT T1.GUID, T1.REGION, T1.NWPARTITION, T1.OPER_HOSTNAME, T2.GUID, T2.NAME, MATCH (T1.GUID, T1.SYSTEM_OSTYPE, T1.STATUS, T1.REGION, T1.NWPARTITION, T1.DATACENTER_GUID, T1.SYSTYPE, T1.OPER_HOSTNAME, T1.ASSIGNED_ENGINEER, T1.OWNING_DMGR) AGAINST (attributeName WITH QUERY EXPANSION) FROM `ESOLUTIONSSVC_HIST`.`installed_systems` T1 INNER JOIN `ESOLUTIONSSVC_HIST`.`service_datacenters` T2 ON T1.DATACENTER_GUID = T2.GUID WHERE MATCH (T1.GUID, T1.SYSTEM_OSTYPE, T1.STATUS, T1.REGION, T1.NWPARTITION, T1.DATACENTER_GUID, T1.SYSTYPE, T1.OPER_HOSTNAME, T1.ASSIGNED_ENGINEER, T1.OWNING_DMGR) AGAINST (attributeName IN BOOLEAN MODE) AND DELETE_DATE IS NULL LIMIT startRow, 20; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`validateServerHostName`( IN operHostname VARCHAR(128) ) BEGIN SELECT COUNT(*) FROM `ESOLUTIONSSVC_HIST`.`installed_systems` WHERE OPER_HOSTNAME = operHostname; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`insertNewServer`( IN systemGuid VARCHAR(128), IN systemOs VARCHAR(45), IN systemStatus VARCHAR(45), IN systemRegion VARCHAR(45), IN networkPartition VARCHAR(45), IN datacenter VARCHAR(45), IN systemType VARCHAR(45), IN domainName VARCHAR(255), IN cpuType VARCHAR(255), IN cpuCount INT, IN serverModel VARCHAR(255), IN serialNumber VARCHAR(255), IN installedMemory INT, IN operIp VARCHAR(50), IN operHostname VARCHAR(100), IN mgmtIp VARCHAR(50), IN mgmtHostname VARCHAR(100), IN backupIp VARCHAR(50), IN backupHostname VARCHAR(100), IN nasIp VARCHAR(50), IN nasHostname VARCHAR(100), IN natAddr VARCHAR(50), IN systemComments TEXT, IN engineer VARCHAR(100), IN mgrEntry VARCHAR(128), IN dmgrPort INT(5), IN serverRack VARCHAR(255), IN rackPosition VARCHAR(255), IN owningDmgr VARCHAR(255) ) BEGIN IF dmgrPort = 0 THEN INSERT INTO `ESOLUTIONSSVC_HIST`.`installed_systems` (GUID, SYSTEM_OSTYPE, STATUS, REGION, NWPARTITION, DATACENTER_GUID, SYSTYPE, DOMAIN_NAME, CPU_TYPE, CPU_COUNT, SERVER_RACK, RACK_POSITION, SERVER_MODEL, SERIAL_NUMBER, INSTALLED_MEMORY, OPER_IP, OPER_HOSTNAME, MGMT_IP, MGMT_HOSTNAME, BKUP_IP, BKUP_HOSTNAME, NAS_IP, NAS_HOSTNAME, NAT_ADDR, COMMENTS, ASSIGNED_ENGINEER, ADD_DATE, MGR_ENTRY, OWNING_DMGR) VALUES (systemGuid, systemOs, systemStatus, systemRegion, networkPartition, datacenter, systemType, domainName, cpuType, cpuCount, serverRack, rackPosition, serverModel, serialNumber, installedMemory, operIp, operHostname, mgmtIp, mgmtHostname, backupIp, backupHostname, nasIp, nasHostname, natAddr, systemComments, engineer, NOW(), mgrEntry, owningDmgr); ELSE INSERT INTO `ESOLUTIONSSVC_HIST`.`installed_systems` (GUID, SYSTEM_OSTYPE, STATUS, REGION, NWPARTITION, DATACENTER_GUID, SYSTYPE, DOMAIN_NAME, CPU_TYPE, CPU_COUNT, SERVER_RACK, RACK_POSITION, SERVER_MODEL, SERIAL_NUMBER, INSTALLED_MEMORY, OPER_IP, OPER_HOSTNAME, MGMT_IP, MGMT_HOSTNAME, BKUP_IP, BKUP_HOSTNAME, NAS_IP, NAS_HOSTNAME, NAT_ADDR, COMMENTS, ASSIGNED_ENGINEER, ADD_DATE, MGR_ENTRY, DMGR_PORT, OWNING_DMGR) VALUES (systemGuid, systemOs, systemStatus, systemRegion, networkPartition, datacenter, systemType, domainName, cpuType, cpuCount, serverRack, rackPosition, serverModel, serialNumber, installedMemory, operIp, operHostname, mgmtIp, mgmtHostname, backupIp, backupHostname, nasIp, nasHostname, natAddr, systemComments, engineer, NOW(), mgrEntry, dmgrPort, owningDmgr); END IF; COMMIT; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`updateServerData`( IN systemGuid VARCHAR(128), IN systemOs VARCHAR(45), IN systemStatus VARCHAR(45), IN systemRegion VARCHAR(45), IN networkPartition VARCHAR(45), IN datacenter VARCHAR(45), IN systemType VARCHAR(45), IN domainName VARCHAR(255), IN cpuType VARCHAR(255), IN cpuCount INT, IN serverModel VARCHAR(255), IN serialNumber VARCHAR(255), IN installedMemory INT, IN operIp VARCHAR(50), IN operHostname VARCHAR(100), IN mgmtIp VARCHAR(50), IN mgmtHostname VARCHAR(100), IN backupIp VARCHAR(50), IN backupHostname VARCHAR(100), IN nasIp VARCHAR(50), IN nasHostname VARCHAR(100), IN natAddr VARCHAR(50), IN systemComments TEXT, IN engineer VARCHAR(100), IN mgrEntry VARCHAR(128), IN dmgrPort INT(5), IN serverRack VARCHAR(255), IN rackPosition VARCHAR(255), IN owningDmgr VARCHAR(255) ) BEGIN UPDATE `ESOLUTIONSSVC_HIST`.`installed_systems` SET SYSTEM_OSTYPE = systemOs, STATUS = systemStatus, REGION = systemRegion, NWPARTITION = networkPartition, DATACENTER_GUID = datacenter, SYSTYPE = systemType, DOMAIN_NAME = domainName, CPU_TYPE = cpuType, CPU_COUNT = cpuCount, SERVER_RACK = serverRack, RACK_POSITION = rackPosition, SERVER_MODEL = serverModel, SERIAL_NUMBER = serialNumber, INSTALLED_MEMORY = installedMemory, OPER_IP = operIp, OPER_HOSTNAME = operHostname, MGMT_IP = mgmtIp, MGMT_HOSTNAME = mgmtHostname, BKUP_IP = backupIp, BKUP_HOSTNAME = backupHostname, NAS_IP = nasIp, NAS_HOSTNAME = nasHostname, NAT_ADDR = natAddr, COMMENTS = systemComments, ASSIGNED_ENGINEER = engineer, MGR_ENTRY = mgrEntry, DMGR_PORT = dmgrPort, OWNING_DMGR = owningDmgr WHERE GUID = systemGuid; COMMIT; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`getServerCount`( ) BEGIN SELECT COUNT(*) FROM `ESOLUTIONSSVC_HIST`.`installed_systems` WHERE DELETE_DATE IS NULL; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`getServerList`( IN startRow INT ) BEGIN SELECT T1.GUID, T1.REGION, T1.NWPARTITION, T1.OPER_HOSTNAME, T1.OWNING_DMGR, T2.GUID, T2.NAME FROM `ESOLUTIONSSVC_HIST`.`installed_systems` INNER JOIN `ESOLUTIONSSVC_HIST`.`service_datacenters` T2 ON T1.DATACENTER_GUID = T2.GUID WHERE DELETE_DATE IS NULL LIMIT startRow, 20; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`retrServerData`( IN serverGuid VARCHAR(128) ) BEGIN SELECT T1.GUID, T1.SYSTEM_OSTYPE, T1.STATUS, T1.REGION, T1.NWPARTITION, T1.SYSTYPE, T1.DOMAIN_NAME, T1.CPU_TYPE, T1.CPU_COUNT, T1.SERVER_RACK, T1.RACK_POSITION, T1.SERVER_MODEL, T1.SERIAL_NUMBER, T1.INSTALLED_MEMORY, T1.OPER_IP, T1.OPER_HOSTNAME, T1.MGMT_IP, T1.MGMT_HOSTNAME, T1.BKUP_IP, T1.BKUP_HOSTNAME, T1.NAS_IP, T1.NAS_HOSTNAME, T1.NAT_ADDR, T1.COMMENTS, T1.ASSIGNED_ENGINEER, T1.ADD_DATE, T1.DELETE_DATE, T1.DMGR_PORT, T1.OWNING_DMGR, T1.MGR_ENTRY, T2.GUID, T2.NAME FROM `ESOLUTIONSSVC_HIST`.`installed_systems` T1 INNER JOIN `ESOLUTIONSSVC_HIST`.`service_datacenters` T2 ON T1.DATACENTER_GUID = T2.GUID WHERE T1.GUID = serverGuid AND DELETE_DATE IS NULL; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`getRetiredServers`( ) BEGIN SELECT GUID FROM `ESOLUTIONSSVC_HIST`.`installed_systems` WHERE DELETE_DATE IS NOT NULL; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`retireServer`( IN guid VARCHAR(128) ) BEGIN INSERT INTO eSolutionsArchive_hist.installed_systems SELECT * FROM ESOLUTIONSSVC_HIST.installed_systems WHERE GUID = guid AND DELETE_DATE IS NOT NULL; COMMIT; DELETE FROM ESOLUTIONSSVC_HIST.installed_systems WHERE GUID = guid AND DELETE_DATE IS NOT NULL; COMMIT; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`getDataCenterByAttribute`( IN attributeName VARCHAR(100), IN startRow INT ) BEGIN SELECT GUID, NAME, STATUS, DESCRIPTION, MATCH (`GUID`, `NAME`, `STATUS`) AGAINST (+attributeName WITH QUERY EXPANSION) FROM `ESOLUTIONSSVC_HIST`.`service_datacenters` WHERE MATCH (`GUID`, `NAME`, `STATUS`) AGAINST (+attributeName IN BOOLEAN MODE) LIMIT startRow, 20; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`addNewDatacenter`( IN datacenterGuid VARCHAR(128), IN datacenterName VARCHAR(45), IN datacenterStatus VARCHAR(45), IN datacenterDesc TEXT ) BEGIN INSERT INTO `ESOLUTIONSSVC_HIST`.`service_datacenters` (GUID, NAME, STATUS, DESCRIPTION) VALUES (datacenterGuid, datacenterName, datacenterStatus, datacenterDesc); COMMIT; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`removeDataCenter`( IN datacenterGuid VARCHAR(128) ) BEGIN UPDATE `ESOLUTIONSSVC_HIST`.`service_datacenters` SET STATUS = 'INACTIVE' WHERE GUID = datacenterGuid; COMMIT; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`getDatacenterCount`( ) BEGIN SELECT COUNT(*) FROM `ESOLUTIONSSVC_HIST`.`service_datacenters` WHERE STATUS = 'ACTIVE'; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`listDataCenters`( IN startRow INT ) BEGIN SELECT GUID, NAME, STATUS, DESCRIPTION FROM `ESOLUTIONSSVC_HIST`.`service_datacenters` WHERE STATUS = 'ACTIVE' LIMIT startRow, 20; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`retrDataCenter`( IN datacenterGuid VARCHAR(128) ) BEGIN SELECT GUID, NAME, STATUS, DESCRIPTION FROM `ESOLUTIONSSVC_HIST`.`service_datacenters` WHERE GUID = datacenterGuid AND STATUS = 'ACTIVE'; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`getMessagesByAttribute`( IN searchTerms VARCHAR(100) ) BEGIN SELECT ID, TITLE, MESSAGE, AUTHOR, SUBMIT_DATE, ACTIVE , ALERT, EXPIRES, EXPIRES_ON, MODIFIED_ON, MODIFIED_BY, MATCH (`ID`, `TITLE`, `MESSAGE`, `AUTHOR`) AGAINST (+searchTerms WITH QUERY EXPANSION) FROM `ESOLUTIONSSVC_HIST`.`service_messages` WHERE MATCH (`ID`, `TITLE`, `MESSAGE`, `AUTHOR`) AGAINST (+searchTerms IN BOOLEAN MODE) AND ACTIVE = TRUE AND (EXPIRES_ON > NOW() OR EXPIRES_ON = '0000-00-00 00:00:00' OR EXPIRES = FALSE) ORDER BY ID DESC; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`submitSvcMessage`( IN messageId VARCHAR(128), IN messageTitle VARCHAR(100), IN messageText TEXT, IN messageAuthor VARCHAR(45), IN active BOOLEAN, IN isAlert BOOLEAN, IN expiry BOOLEAN, IN expiryDate BIGINT ) BEGIN INSERT INTO `ESOLUTIONSSVC_HIST`.`service_messages` ( ID, TITLE, MESSAGE, AUTHOR, SUBMIT_DATE, ACTIVE , ALERT, EXPIRES, EXPIRES_ON ) VALUES ( messageId, messageTitle, messageText, messageAuthor, NOW(), active, isAlert, expiry, expiryDate ); COMMIT; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`updateServiceMessage`( IN messageId VARCHAR(128), IN messageTitle VARCHAR(100), IN messageText TEXT, IN active BOOLEAN, IN isAlert BOOLEAN, IN expiry BOOLEAN, IN expiryDate BIGINT, IN modifyAuthor VARCHAR(45) ) BEGIN UPDATE `ESOLUTIONSSVC_HIST`.`service_messages` SET TITLE = messageTitle, MESSAGE = messageText, ACTIVE = active, ALERT = isAlert, EXPIRES = expiry, EXPIRES_ON = expiryDate, MODIFIED_ON = NOW(), MODIFIED_BY = modifyAuthor WHERE ID = messageId; COMMIT; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`retrServiceMessage`( IN requestId VARCHAR(45) ) BEGIN SELECT ID, TITLE, MESSAGE, AUTHOR, SUBMIT_DATE, ACTIVE , ALERT, EXPIRES, EXPIRES_ON, MODIFIED_ON, MODIFIED_BY FROM `ESOLUTIONSSVC_HIST`.`service_messages` WHERE ID = requestId; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`retrServiceMessages`( ) BEGIN SELECT ID, TITLE, MESSAGE, AUTHOR, SUBMIT_DATE, ACTIVE , ALERT, EXPIRES, EXPIRES_ON, MODIFIED_ON, MODIFIED_BY FROM `ESOLUTIONSSVC_HIST`.`service_messages` WHERE ACTIVE = TRUE AND ALERT = FALSE AND (EXPIRES_ON > NOW() OR EXPIRES_ON = '0000-00-00 00:00:00' OR EXPIRES = FALSE) ORDER BY ID DESC; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`retrAlertMessages`( ) BEGIN SELECT ID, TITLE, MESSAGE, AUTHOR, SUBMIT_DATE, ACTIVE , ALERT, EXPIRES, EXPIRES_ON, MODIFIED_ON, MODIFIED_BY FROM `ESOLUTIONSSVC_HIST`.`service_messages` WHERE ACTIVE = TRUE AND ALERT = TRUE AND (EXPIRES_ON > NOW() OR EXPIRES_ON = '0000-00-00 00:00:00' OR EXPIRES = FALSE) ORDER BY ID DESC; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`getPlatformByAttribute`( IN attributeName VARCHAR(100), IN startRow INT ) BEGIN SELECT GUID, NAME, MATCH (`NAME`, `REGION`, `NWPARTITION`) AGAINST (+attributeName WITH QUERY EXPANSION) FROM `ESOLUTIONSSVC_HIST`.`service_platforms` WHERE MATCH (`NAME`, `REGION`, `NWPARTITION`) AGAINST (+attributeName IN BOOLEAN MODE) AND STATUS = 'ACTIVE' LIMIT startRow, 20; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`addNewPlatform`( IN guid VARCHAR(128), IN name VARCHAR(128), IN region VARCHAR(15), IN nwpartition VARCHAR(15), IN status VARCHAR(50), IN servers TEXT, IN description TEXT ) BEGIN INSERT INTO `ESOLUTIONSSVC_HIST`.`service_platforms` (GUID, NAME, REGION, NWPARTITION, STATUS, SERVERS, DESCRIPTION) VALUES (guid, name, region, nwpartition, status, servers, description); COMMIT; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`updatePlatformData`( IN guid VARCHAR(128), IN name VARCHAR(128), IN region VARCHAR(15), IN nwpartition VARCHAR(15), IN status VARCHAR(50), IN servers TEXT, IN description TEXT ) BEGIN UPDATE `ESOLUTIONSSVC_HIST`.`service_platforms` SET NAME = name, REGION = region, NWPARTITION = nwpartition, STATUS = status, SERVERS = servers, DESCRIPTION = description WHERE PROJECT_GUID = platformGuid; COMMIT; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`removePlatformData`( IN platformGuid VARCHAR(128) ) BEGIN UPDATE `ESOLUTIONSSVC_HIST`.`service_platforms` SET STATUS = 'INACTIVE' WHERE GUID = platformGuid; COMMIT; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`getPlatformData`( IN guid VARCHAR(128) ) BEGIN SELECT GUID, NAME, REGION, NWPARTITION, STATUS, SERVERS, DESCRIPTION FROM `ESOLUTIONSSVC_HIST`.`service_platforms` WHERE GUID = guid AND STATUS = 'ACTIVE'; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`getPlatformCount`( ) BEGIN SELECT COUNT(*) FROM `ESOLUTIONSSVC_HIST`.`service_platforms` WHERE STATUS = 'ACTIVE'; END // COMMIT // CREATE PROCEDURE `ESOLUTIONSSVC_HIST`.`listPlatforms`( IN startRow INT ) BEGIN SELECT GUID, NAME FROM `ESOLUTIONSSVC_HIST`.`service_platforms` WHERE STATUS = 'ACTIVE' LIMIT startRow, 20; END // COMMIT // /*!50003 SET SESSION SQL_MODE=@TEMP_SQL_MODE */ // COMMIT // DELIMITER ;
<reponame>rs0h/PostGISGDO INSERT into spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext) values (45556, 'EPSG', 45556, '+proj=aea +ellps=wgs84 +lon_0=-96 +lat_0=37.5', '45556=PROJCS["Albers Equal area",GEOGCS["WGS 84", DATUM["World Geodetic System 1984", SPHEROID["WGS 84", 6378137.0, 298.257223563, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AUTHORITY["EPSG","4326"]], PROJECTION["Albers Equal Area", AUTHORITY["EPSG","9822"]], PARAMETER["central_meridian", -96.0], PARAMETER["latitude_of_origin", 37.5], PARAMETER["standard_parallel_1", 29.833333333333336], PARAMETER["false_easting", 0.0], PARAMETER["false_northing", 0.0], PARAMETER["standard_parallel_2", 45.833333333333336], UNIT["m", 1.0], AUTHORITY["EPSG","45556"]]');
CREATE DATABASE CadastroImpacta GO USE CadastroImpacta GO CREATE TABLE Disciplina ( carga_horaria TINYINT ,teoria DECIMAL(3) ,pratica DECIMAL(3) ,ementa VARCHAR(5000) ,competencias VARCHAR(2000) ,habilidades VARCHAR(1000) ,conteudo VARCHAR(300) ,bibliografia_basica VARCHAR(1000) ,bibliografia_complementar VARCHAR(1000) ,nome VARCHAR (240) NOT NULL ,CONSTRAINT PKDisciplina PRIMARY KEY (nome) ); select * from Disciplina CREATE TABLE Curso--OK ( Sigla VARCHAR(5) NOT NULL ,Nome VARCHAR(50) NOT NULL ,CONSTRAINT pkCurso PRIMARY KEY (Sigla) ,CONSTRAINT uqNome UNIQUE (Nome) ); CREATE TABLE GradeCurricular--OK ( Sigla_curso VARCHAR(5) ,Ano SMALLINT NOT NULL ,Semestre CHAR(1) NOT NULL ,CONSTRAINT pkGradeCurricular PRIMARY KEY(Ano,Semestre,sigla_curso) ,CONSTRAINT fkGradeCurricularCurso FOREIGN KEY(Sigla_curso) REFERENCES Curso(Sigla) ); CREATE TABLE Periodo--OK ( Sigla_curso VARCHAR(5) ,Ano_grade SMALLINT ,Semestre_grade CHAR(1) ,numero TINYINT NOT NULL ,CONSTRAINT pkPeriodo PRIMARY KEY (numero,sigla_curso,ano_grade,semestre_grade) ,CONSTRAINT fkPeriodoGrade FOREIGN KEY (Ano_grade, Semestre_grade,sigla_curso) REFERENCES GradeCurricular(Ano, Semestre,sigla_curso) ); CREATE TABLE PeriodoDisciplina -- OK ( Sigla_curso VARCHAR(5) ,Ano_grade SMALLINT ,Semestre_grade CHAR(1) ,numero_periodo TINYINT ,Nome_disciplina VARCHAR(240) ,CONSTRAINT pkPeriodoDisciplina PRIMARY KEY (numero_periodo,Nome_disciplina,sigla_curso,ano_grade,semestre_grade) ,CONSTRAINT fkPeriodoDisciplinaPeriodo FOREIGN KEY (numero_periodo,sigla_curso,ano_grade,semestre_grade) REFERENCES Periodo(numero,sigla_curso,ano_grade,semestre_grade) ,CONSTRAINT fkPeriodoDisciplinaDisciplina FOREIGN KEY (Nome_disciplina ) REFERENCES Disciplina(Nome) ); CREATE TABLE DisciplinaOfertada--OK ( nome_disciplina VARCHAR(240) ,ano SMALLINT NOT NULL ,semestre CHAR(1) NOT NULL ,CONSTRAINT pkDisciplinaOfertada PRIMARY KEY (ano,semestre,nome_disciplina) , CONSTRAINT fkDisciplinaOfertadaDisciplina FOREIGN KEY (nome_disciplina) REFERENCES Disciplina (nome) ); select * from DisciplinaOfertada CREATE TABLE Professor-- OK ( ra INT IDENTITY(1,1) NOT NULL ,nome VARCHAR (120) NOT NULL ,Email VARCHAR (80) NOT NULL ,celular CHAR(11) NULL ,apelido VARCHAR NOT NULL ,CONSTRAINT PKProfessor PRIMARY KEY (ra) ,CONSTRAINT UQapelido UNIQUE (apelido) ); CREATE TABLE Turma--OK ( ra_professor INT ,nome_disciplina VARCHAR(240) ,ano_ofertado SMALLINT ,semestre_ofertado CHAR(1) ,id CHAR(1) NOT NULL ,turno VARCHAR (15) NOT NULL ,CONSTRAINT PKTurma PRIMARY KEY (id,nome_disciplina,ano_ofertado,semestre_ofertado) ,CONSTRAINT fkTurmaProfessor FOREIGN KEY(ra_professor) REFERENCES professor(ra) ,CONSTRAINT fkTurmaDisciplinaOfertada FOREIGN KEY(ano_ofertado,semestre_ofertado,nome_disciplina) REFERENCES DisciplinaOfertada (ano, semestre,nome_disciplina) ); CREATE TABLE CursoTurma--OK ( sigla_curso VARCHAR(5) ,nome_disciplina VARCHAR(240) ,ano_ofertado SMALLINT ,semestre_ofertado CHAR(1) ,id_turma CHAR(1) ,CONSTRAINt pkCursoTurma PRIMARY KEY (id_turma, sigla_curso,nome_disciplina,ano_ofertado,semestre_ofertado) ,CONSTRAINT fkCursoTurmaCurso FOREIGN KEY(sigla_curso) REFERENCES Curso(sigla) ,CONSTRAINT fkCursoTurmaTurma FOREIGN KEY(id_turma,nome_disciplina,ano_ofertado,semestre_ofertado) REFERENCES Turma(id,nome_disciplina,ano_ofertado,semestre_ofertado) ); CREATE TABLE Aluno--OK ( ra INT IDENTITY(1,1) NOT NULL ,nome VARCHAR(120) NOT NULL ,Email VARCHAR(80) NOT NULL ,celular CHAR(11) NULL ,sigla_Curso VARCHAR(5) ,CONSTRAINT pkAluno PRIMARY KEY (ra) ,CONSTRAINT fkAlunoCurso FOREIGN KEY(sigla_curso) REFERENCES curso(sigla) ); CREATE TABLE Matricula--OK ( ra_aluno INT ,nome_disciplina VARCHAR(240) ,ano_ofertado SMALLINT ,semestre_ofertado CHAR(1) ,id_Turma CHAR(1) ,CONSTRAINT pkMatricula PRIMARY KEY (ra_aluno, id_turma,nome_disciplina,ano_ofertado,semestre_ofertado) ,CONSTRAINT fkMatriculaTurma FOREIGN KEY(id_turma,nome_disciplina,ano_ofertado,semestre_ofertado) REFERENCES Turma(id,nome_disciplina,ano_ofertado,semestre_ofertado) ,CONSTRAINT fkMatriculaAluno FOREIGN KEY(ra_aluno) REFERENCES Aluno(ra) ); CREATE TABLE Questao--OK ( nome_Disciplina VARCHAR(240) ,ano_ofertado SMALLINT ,semestre_ofertado CHAR(1) ,id_turma CHAR(1) ,numero INT NOT NULL ,data_limite_entrega DATE NOT NULL ,descricao VARCHAR(500) NULL ,data1 DATE NOT NULL ,CONSTRAINT pkQuestao PRIMARY KEY (numero,id_turma,nome_disciplina,ano_ofertado,semestre_ofertado) ,CONSTRAINT fkQuestaoTurma FOREIGN KEY(id_turma,nome_disciplina,ano_ofertado,semestre_ofertado) REFERENCES Turma(id,nome_disciplina,ano_ofertado,semestre_ofertado) ); CREATE TABLE ArquivosQuestao--OK ( nome_disciplina VARCHAR (240) ,ano_ofertado SMALLINT ,semestre_ofertado CHAR ,id_turma CHAR ,numero_questao INT ,arquivo VARCHAR(500) NOT NULL ,CONSTRAINT pkArquivosQuestao PRIMARY KEY (arquivo,numero_questao,id_turma,nome_disciplina,ano_ofertado,semestre_ofertado) ,CONSTRAINT fkArquivoQuestaoQuestao FOREIGN KEY (numero_questao,id_turma,nome_disciplina,ano_ofertado,semestre_ofertado) REFERENCES Questao (numero,id_turma,nome_disciplina,ano_ofertado,semestre_ofertado) ); CREATE TABLE Resposta ( nome_disciplina VARCHAR(240) ,ano_ofertado SMALLINT ,semestre_ofertado CHAR(1) ,id_turma CHAR(1) ,numero_questao INT ,ra_aluno INT ,data_avaliacao DATE NOT NULL ,nota DECIMAL (4,2) NOT NULL ,avaliacao VARCHAR(100) NOT NULL ,descricao VARCHAR(100) NULL ,data_de_envio DATE NOT NULL ,CONSTRAINT pkResposta PRIMARY KEY (ra_aluno,numero_questao,id_turma,nome_disciplina,ano_ofertado,semestre_ofertado) ,CONSTRAINT fkRespostaQuestao FOREIGN KEY (numero_questao,id_turma,nome_disciplina,ano_ofertado,semestre_ofertado) REFERENCES Questao (numero,id_turma,nome_disciplina,ano_ofertado,semestre_ofertado) ,CONSTRAINT fkRespostaAluno FOREIGN KEY(ra_aluno) REFERENCES Aluno(ra) ); CREATE TABLE ArquivosResposta--OK ( nome_disciplina VARCHAR(240) ,ano_ofertado SMALLINT ,semestre_ofertado CHAR(1) ,id_turma CHAR(1) ,numero_questao INT ,ra_aluno INT ,arquivo VARCHAR(500) NOT NULL ,CONSTRAINT pkArquivosResposta PRIMARY KEY (arquivo,ra_aluno,numero_questao,id_turma,nome_disciplina,ano_ofertado,semestre_ofertado) ,CONSTRAINT fkArquivoRespostaResposta FOREIGN KEY (ra_aluno,numero_questao,id_turma,nome_disciplina,ano_ofertado,semestre_ofertado) REFERENCES Resposta (ra_aluno,numero_questao,id_turma,nome_disciplina,ano_ofertado,semestre_ofertado) );
<filename>distro/sql/upgrade/all/flowable.postgres.upgradestep.6.7.1.to.6.7.2.all.sql update ACT_GE_PROPERTY set VALUE_ = '6.7.2.0' where NAME_ = 'common.schema.version'; update ACT_GE_PROPERTY set VALUE_ = '6.7.2.0' where NAME_ = 'entitylink.schema.version'; update ACT_GE_PROPERTY set VALUE_ = '6.7.2.0' where NAME_ = 'identitylink.schema.version'; update ACT_GE_PROPERTY set VALUE_ = '6.7.2.0' where NAME_ = 'job.schema.version'; update ACT_GE_PROPERTY set VALUE_ = '6.7.2.0' where NAME_ = 'batch.schema.version'; update ACT_GE_PROPERTY set VALUE_ = '6.7.2.0' where NAME_ = 'task.schema.version'; update ACT_GE_PROPERTY set VALUE_ = '6.7.2.0' where NAME_ = 'variable.schema.version'; update ACT_GE_PROPERTY set VALUE_ = '6.7.2.0' where NAME_ = 'eventsubscription.schema.version'; update ACT_GE_PROPERTY set VALUE_ = '6.7.2.0' where NAME_ = 'schema.version'; update ACT_ID_PROPERTY set VALUE_ = '6.7.2.0' where NAME_ = 'schema.version'; UPDATE act_app_databasechangeloglock SET LOCKED = TRUE, LOCKEDBY = '192.168.68.111 (192.168.68.111)', LOCKGRANTED = '2021-12-28 10:31:26.091' WHERE ID = 1 AND LOCKED = FALSE; UPDATE act_app_databasechangeloglock SET LOCKED = FALSE, LOCKEDBY = NULL, LOCKGRANTED = NULL WHERE ID = 1; UPDATE act_cmmn_databasechangeloglock SET LOCKED = TRUE, LOCKEDBY = '192.168.68.111 (192.168.68.111)', LOCKGRANTED = '2021-12-28 10:31:26.566' WHERE ID = 1 AND LOCKED = FALSE; UPDATE act_cmmn_databasechangeloglock SET LOCKED = FALSE, LOCKEDBY = NULL, LOCKGRANTED = NULL WHERE ID = 1; UPDATE flw_ev_databasechangeloglock SET LOCKED = TRUE, LOCKEDBY = '192.168.68.111 (192.168.68.111)', LOCKGRANTED = '2021-12-28 10:31:26.852' WHERE ID = 1 AND LOCKED = FALSE; ALTER TABLE FLW_CHANNEL_DEFINITION ADD TYPE_ VARCHAR(255); ALTER TABLE FLW_CHANNEL_DEFINITION ADD IMPLEMENTATION_ VARCHAR(255); INSERT INTO flw_ev_databasechangelog (ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, MD5SUM, DESCRIPTION, COMMENTS, EXECTYPE, CONTEXTS, LABELS, LIQUIBASE, DEPLOYMENT_ID) VALUES ('2', 'flowable', 'org/flowable/eventregistry/db/liquibase/flowable-eventregistry-db-changelog.xml', NOW(), 2, '8:0ea825feb8e470558f0b5754352b9cda', 'addColumn tableName=FLW_CHANNEL_DEFINITION; addColumn tableName=FLW_CHANNEL_DEFINITION', '', 'EXECUTED', NULL, NULL, '4.3.5', '0683886963'); INSERT INTO flw_ev_databasechangelog (ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, MD5SUM, DESCRIPTION, COMMENTS, EXECTYPE, CONTEXTS, LABELS, LIQUIBASE, DEPLOYMENT_ID) VALUES ('3', 'flowable', 'org/flowable/eventregistry/db/liquibase/flowable-eventregistry-db-changelog.xml', NOW(), 3, '8:3c2bb293350b5cbe6504331980c9dcee', 'customChange', '', 'EXECUTED', NULL, NULL, '4.3.5', '0683886963'); UPDATE flw_ev_databasechangeloglock SET LOCKED = FALSE, LOCKEDBY = NULL, LOCKGRANTED = NULL WHERE ID = 1; UPDATE act_dmn_databasechangeloglock SET LOCKED = TRUE, LOCKEDBY = '192.168.68.111 (192.168.68.111)', LOCKGRANTED = '2021-12-28 10:31:27.054' WHERE ID = 1 AND LOCKED = FALSE; UPDATE act_dmn_databasechangeloglock SET LOCKED = FALSE, LOCKEDBY = NULL, LOCKGRANTED = NULL WHERE ID = 1; UPDATE act_fo_databasechangeloglock SET LOCKED = TRUE, LOCKEDBY = '192.168.68.111 (192.168.68.111)', LOCKGRANTED = '2021-12-28 10:31:27.246' WHERE ID = 1 AND LOCKED = FALSE; UPDATE act_fo_databasechangeloglock SET LOCKED = FALSE, LOCKEDBY = NULL, LOCKGRANTED = NULL WHERE ID = 1; UPDATE act_co_databasechangeloglock SET LOCKED = TRUE, LOCKEDBY = '192.168.68.111 (192.168.68.111)', LOCKGRANTED = '2021-12-28 10:31:27.411' WHERE ID = 1 AND LOCKED = FALSE; UPDATE act_co_databasechangeloglock SET LOCKED = FALSE, LOCKEDBY = NULL, LOCKGRANTED = NULL WHERE ID = 1;
//// CHANGE name=change0 CREATE TABLE table290 ( id integer NOT NULL, field1 character varying(30), usertype1field usertype1, usertype9field usertype9 ); GO //// CHANGE name=change1 ALTER TABLE ONLY table290 ADD CONSTRAINT table290_pkey PRIMARY KEY (id); GO
<gh_stars>10-100 /*==============================================================*/ /* Table: SYS_ROLE */ /*==============================================================*/ create table SYS_ROLE ( ID varchar(32) not null comment '主键', NAME varchar(60) comment '角色名称', CODE varchar(60) comment '角色标识', GMT_CREATE timestamp default CURRENT_TIMESTAMP comment '新增时间,默认当前时间,不随数据改变而改变', GMT_MODIFIED timestamp default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP comment '修改时间,默认当前时间,随数据改变而改变', primary key (ID) ); alter table SYS_ROLE comment '系统角色'; /* 默认数据 */ INSERT INTO SYS_ROLE (`ID`, `NAME`, `CODE`, `GMT_CREATE`, `GMT_MODIFIED`) VALUES ('fb3ecfd7c70311ea996b2cfda1ba69cd', '普通用户', 'User', '2020-07-16 09:31:41', '2020-07-16 09:31:41'); /*==============================================================*/ /* Table: SYS_USER_ROLE */ /*==============================================================*/ create table SYS_USER_ROLE ( ID varchar(32) not null comment '主键', USER_ID varchar(32) comment '用户ID', ROLE_ID varchar(32) comment '角色ID', primary key (ID) ); alter table SYS_USER_ROLE comment '用户角色'; alter table SYS_USER_ROLE add constraint FK_Reference_1 foreign key (USER_ID) references SYS_USER (ID) on delete cascade on update cascade; alter table SYS_USER_ROLE add constraint FK_Reference_2 foreign key (ROLE_ID) references SYS_ROLE (ID) on delete cascade on update cascade; /* 默认数据 */ INSERT INTO SYS_USER_ROLE (`ID`, `USER_ID`, `ROLE_ID`) VALUES ('34650841c70411ea996b2cfda1ba69cd', '2031a4adc78942d59188cea7927e6304', '<KEY>');
<reponame>malwinasanjose/anomaly_detection SELECT MA_NR, COUNT(*) AS records FROM dbo.prozessmessung_schleifen WHERE WARM = 0 AND TEACH_ACTIVE = 0 AND READY = 1 GROUP BY MA_NR HAVING COUNT(*) > 1000 ORDER BY records DESC
-- 1. How many stops are in the database. SELECT COUNT(id) FROM stops; -- 2. Find the id value for the stop 'Craiglockhart' SELECT id FROM stops WHERE name = 'Craiglockhart'; -- 3. Give the id and the name for the stops on the '4' 'LRT' service. SELECT id, name FROM stops JOIN route ON (id = route.stop) WHERE num = 4 AND company = 'LRT' ORDER BY pos; -- 4. Add a HAVING clause to restrict the output to these two routes. SELECT company, num, COUNT(*) FROM route WHERE stop=149 OR stop=53 GROUP BY company, num HAVING COUNT(*) = 2; -- 5. Execute the self join shown and observe that b.stop gives all the places you can get to from Craiglockhart, without changing routes. Change the query so that it shows the services from Craiglockhart to London Road. SELECT a.company, a.num, a.stop, b.stop FROM route a JOIN route b ON (a.company=b.company AND a.num=b.num) WHERE a.stop=53 AND b.stop = 149; -- 6. Change the query so that the services between 'Craiglockhart' and 'London Road' are shown. If you are tired of these places try 'Fairmilehead' against 'Tollcross' SELECT a.company, a.num, stopa.name, stopb.name FROM route a JOIN route b ON (a.company=b.company AND a.num=b.num) JOIN stops stopa ON (a.stop=stopa.id) JOIN stops stopb ON (b.stop=stopb.id) WHERE stopa.name='Craiglockhart' AND stopb.name='London Road'; -- 7. Give a list of all the services which connect stops 115 and 137 ('Haymarket' and 'Leith') SELECT a.company, a.num FROM route a JOIN route b ON (a.company=b.company AND a.num=b.num) JOIN stops stopa ON (a.stop=stopa.id) JOIN stops stopb ON (b.stop=stopb.id) WHERE stopa.name='Haymarket' AND stopb.name='Leith' GROUP BY a.num; -- 8. Give a list of the services which connect the stops 'Craiglockhart' and 'Tollcross' SELECT a.company, a.num FROM route a JOIN route b ON (a.company=b.company AND a.num=b.num) JOIN stops stopa ON (a.stop=stopa.id) JOIN stops stopb ON (b.stop=stopb.id) WHERE stopa.name='Craiglockhart' AND stopb.name='Tollcross' GROUP BY a.num; -- 9. Give a distinct list of the stops which may be reached from 'Craiglockhart' by taking one bus, including 'Craiglockhart' itself, offered by the LRT company. Include the company and bus no. of the relevant services. SELECT stopb.name, a.company, a.num FROM route a JOIN route b ON (a.company=b.company AND a.num=b.num) JOIN stops stopa ON (a.stop=stopa.id) JOIN stops stopb ON (b.stop=stopb.id) AND stopa.name='Craiglockhart'; -- 10. Find the routes involving two buses that can go from Craiglockhart to Lochend. Show the bus no. and company for the first bus, the name of the stop for the transfer, and the bus no. and company for the second bus. SELECT a.num, a.company, stopc.name , c.num, c.company FROM route a JOIN route b ON (a.company=b.company AND a.num=b.num) JOIN stops stopa ON (a.stop=stopa.id) JOIN stops stopb ON (b.stop=stopb.id) JOIN (route c JOIN route d ON (c.company=d.company AND c.num=d.num)) JOIN stops stopc ON (c.stop=stopc.id) JOIN stops stopd ON (d.stop=stopd.id) WHERE stopa.name='Craiglockhart' AND stopd.name='Lochend' AND stopb.name = stopc.name ORDER BY a.num, a.company, stopc.name , c.num, c.company;
--SQL to create the table schema--- create table raw_data( RefId varchar(200), IsBadBuy varchar(200), PurchDate varchar(200), Auction varchar(200), VehYear varchar(200), VehicleAge varchar(200), Make varchar(200), Model varchar(200), Trim varchar(200), SubModel varchar(200), Color varchar(200), Transmission varchar(200), WheelTypeID varchar(200), WheelType varchar(200), VehOdo varchar(200), Nationality varchar(200), Size varchar(200), TopThreeAmericanName varchar(200), MMRAcquisitionAuctionAveragePrice varchar(200), MMRAcquisitionAuctionCleanPrice varchar(200), MMRAcquisitionRetailAveragePrice varchar(200), MMRAcquisitonRetailCleanPrice varchar(200), MMRCurrentAuctionAveragePrice varchar(200), MMRCurrentAuctionCleanPrice varchar(200), MMRCurrentRetailAveragePrice varchar(200), MMRCurrentRetailCleanPrice varchar(200), PRIMEUNIT varchar(200), AUCGUART varchar(200), BYRNO varchar(200), VNZIP1 varchar(200), VNST varchar(200), VehBCost varchar(200), IsOnlineSale varchar(200), WarrantyCost varchar(200) );
-- phpMyAdmin SQL Dump -- version 5.1.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Jan 01, 2022 at 04:49 PM -- Server version: 10.4.22-MariaDB -- PHP Version: 8.1.1 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `event_management` -- -- -------------------------------------------------------- -- -- Table structure for table `booking` -- CREATE TABLE `booking` ( `booking_id` int(11) NOT NULL, `Eventid` int(50) NOT NULL, `Eventname` varchar(50) NOT NULL, `Reg_number` varchar(50) NOT NULL, `Tickets` int(50) NOT NULL, `price` int(20) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `booking` -- INSERT INTO `booking` (`booking_id`, `Eventid`, `Eventname`, `Reg_number`, `Tickets`, `price`) VALUES (54, 41, 'DJ NIGHT', '19BNE2121', 2, 246), (55, 42, 'DRAW-A-THON', '29bce1232', 3, 135); -- -------------------------------------------------------- -- -- Table structure for table `events` -- CREATE TABLE `events` ( `event_id` int(10) NOT NULL, `event_name` varchar(20) NOT NULL, `start_date` datetime NOT NULL, `end_date` datetime NOT NULL, `voulunteer1` varchar(30) NOT NULL, `1_number` varchar(15) NOT NULL, `volunteer2` varchar(30) NOT NULL, `2_number` varchar(15) NOT NULL, `description` varchar(5000) NOT NULL, `poster` varchar(150) NOT NULL, `Entry_fee` int(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `events` -- INSERT INTO `events` (`event_id`, `event_name`, `start_date`, `end_date`, `voulunteer1`, `1_number`, `volunteer2`, `2_number`, `description`, `poster`, `Entry_fee`) VALUES (40, 'Electronic Sound', '2021-12-25 19:40:00', '2022-01-02 20:00:00', 'Uday', '9053335999', 'Nivas ', '6300189494', 'You can make people pleasant by your voice. ', 'posteruploads/poster4.PNG', 50), (41, 'DJ NIGHT', '2022-01-03 20:00:00', '2022-01-05 20:00:00', 'Ram', '4222882805', 'Laxman', '9053335999', 'Welcome To DJ Night', 'posteruploads/poster2.PNG', 123), (42, 'DRAW-A-THON', '2022-01-15 00:00:00', '2022-01-17 00:00:00', 'Ram', '4222882805', 'Nivas ', '6300189494', 'Its time to show your skills', 'posteruploads/user2.jpg', 45), (43, 'Spin And Win', '2022-01-20 00:00:00', '2022-01-30 00:00:00', 'Uday', '9053335999', 'Surya', '8465949869', 'Try your luck!!', 'posteruploads/poster.PNG', 100); -- -------------------------------------------------------- -- -- Table structure for table `user_event` -- CREATE TABLE `user_event` ( `event_name` varchar(50) NOT NULL, `mname` varchar(50) NOT NULL, `email` varchar(50) NOT NULL, `mob_no` varchar(50) NOT NULL, `descr` varchar(50) NOT NULL, `eve_poster` varchar(50) NOT NULL, `accepted` varchar(50) DEFAULT NULL, `event_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `user_event` -- INSERT INTO `user_event` (`event_name`, `mname`, `email`, `mob_no`, `descr`, `eve_poster`, `accepted`, `event_id`) VALUES ('HALLOWEN', 'Deves', '<EMAIL>', '9983421341', 'It was basically night club part with minimum entr', 'posteruploads/poster5.PNG', 'no', 54); -- -------------------------------------------------------- -- -- Table structure for table `user_info` -- CREATE TABLE `user_info` ( `userid` int(11) NOT NULL, `reg_number` varchar(10) NOT NULL, `fname` varchar(20) NOT NULL, `lname` varchar(20) DEFAULT NULL, `contact_no` varchar(13) NOT NULL, `email` varchar(30) NOT NULL, `password` varchar(15) NOT NULL, `gender` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `user_info` -- INSERT INTO `user_info` (`userid`, `reg_number`, `fname`, `lname`, `contact_no`, `email`, `password`, `gender`) VALUES (15, '19BNE2121', '<NAME>', '<PASSWORD>', '<PASSWORD>', '<EMAIL>', 'UD123', 'Male'), (16, '29bce1232', 'Neha', 'Namini', '8675324568', '<EMAIL>', '<PASSWORD>', 'Female'); -- -- Indexes for dumped tables -- -- -- Indexes for table `booking` -- ALTER TABLE `booking` ADD PRIMARY KEY (`booking_id`); -- -- Indexes for table `events` -- ALTER TABLE `events` ADD PRIMARY KEY (`event_id`); -- -- Indexes for table `user_event` -- ALTER TABLE `user_event` ADD PRIMARY KEY (`event_id`); -- -- Indexes for table `user_info` -- ALTER TABLE `user_info` ADD PRIMARY KEY (`userid`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `booking` -- ALTER TABLE `booking` MODIFY `booking_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=56; -- -- AUTO_INCREMENT for table `events` -- ALTER TABLE `events` MODIFY `event_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=44; -- -- AUTO_INCREMENT for table `user_event` -- ALTER TABLE `user_event` MODIFY `event_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=55; -- -- AUTO_INCREMENT for table `user_info` -- ALTER TABLE `user_info` MODIFY `userid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; COMMIT; /*!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 */;
<reponame>sam-thurman/sourceMedium_takehome<filename>queries.sql ---- * FOR CHARTS/GRAPHS * ---- ---- PAGE 1 -- Monthly Revenue bar-chart SELECT EXTRACT(MONTH FROM order_date) as month, SUM(net_revenue) AS running_netrev_total FROM `source-medium-take-home.SM_test_project_dataset.Maintb` GROUP BY month; -- YTD running revenue line-plot WITH src AS (SELECT order_date, SUM(net_revenue) AS running_netrev_total FROM `source-medium-take-home.SM_test_project_dataset.Maintb` GROUP BY order_date) SELECT order_date, SUM(running_netrev_total) OVER (ORDER BY order_date) as running_total FROM src; ---- PAGE 2 -- Percentage-based table WITH with_month AS (SELECT order_date, EXTRACT(MONTH FROM order_date) as month, customer_id FROM `source-medium-take-home.SM_test_project_dataset.Maintb`), with_first_month AS (SELECT order_date, month, FIRST_VALUE(month) OVER (PARTITION BY customer_id ORDER BY month) AS first_month, NTH_VALUE(month, 2) OVER (PARTITION BY customer_id ORDER BY month) AS second_month, customer_id FROM with_month), with_retained AS (SELECT order_date, FIRST_VALUE(order_date) OVER(PARTITION BY customer_id ORDER BY order_date) as first_order_date, first_month, (month-first_month) AS months_since_cohort_start, second_month, customer_id FROM with_first_month ), src AS (SELECT first_month, months_since_cohort_start, customer_id FROM with_retained WHERE ((order_date=first_order_date) OR (second_month=first_month+1) OR (second_month=first_month)) AND customer_id IS NOT NULL) SELECT first_month, COUNT(DISTINCT(CASE WHEN months_since_cohort_start = 0 THEN customer_id ELSE NULL END)) AS new_customers, COUNT(DISTINCT(CASE WHEN months_since_cohort_start = 1 THEN customer_id ELSE NULL END)) /COUNT(DISTINCT(CASE WHEN months_since_cohort_start = 0 THEN customer_id ELSE NULL END)) AS month_1, COUNT(DISTINCT(CASE WHEN months_since_cohort_start = 2 THEN customer_id ELSE NULL END)) /COUNT(DISTINCT(CASE WHEN months_since_cohort_start = 0 THEN customer_id ELSE NULL END)) AS month_2, COUNT(DISTINCT(CASE WHEN months_since_cohort_start = 3 THEN customer_id ELSE NULL END)) /COUNT(DISTINCT(CASE WHEN months_since_cohort_start = 0 THEN customer_id ELSE NULL END)) AS month_3, COUNT(DISTINCT(CASE WHEN months_since_cohort_start = 4 THEN customer_id ELSE NULL END)) /COUNT(DISTINCT(CASE WHEN months_since_cohort_start = 0 THEN customer_id ELSE NULL END)) AS month_4, COUNT(DISTINCT(CASE WHEN months_since_cohort_start = 5 THEN customer_id ELSE NULL END)) /COUNT(DISTINCT(CASE WHEN months_since_cohort_start = 0 THEN customer_id ELSE NULL END)) AS month_5, COUNT(DISTINCT(CASE WHEN months_since_cohort_start = 6 THEN customer_id ELSE NULL END)) /COUNT(DISTINCT(CASE WHEN months_since_cohort_start = 0 THEN customer_id ELSE NULL END)) AS month_6 FROM src GROUP BY first_month ORDER BY first_month ASC; ---- PAGE 3 -- Filterable table WITH with_month AS (SELECT order_date, EXTRACT(MONTH FROM order_date) as month, FIRST_VALUE(order_date) OVER(PARTITION BY customer_id ORDER BY order_date) as first_order_date, NTH_VALUE(order_date, 2) OVER(PARTITION BY customer_id ORDER BY order_date) as second_order_date, order_id, customer_id, source_medium, net_revenue, discount_codes, payment_gateway, order_type FROM `source-medium-take-home.SM_test_project_dataset.Maintb`), with_first_month AS (SELECT order_date, month, first_order_date, second_order_date, FIRST_VALUE(month) OVER (PARTITION BY customer_id ORDER BY month) AS first_month, NTH_VALUE(month, 2) OVER (PARTITION BY customer_id ORDER BY month) AS second_month, order_id, customer_id, source_medium, net_revenue, discount_codes, payment_gateway, order_type FROM with_month) SELECT order_date, first_order_date, second_order_date, month, first_month, (month-first_month) AS months_since_cohort_start, second_month, order_id, customer_id, source_medium, net_revenue, discount_codes, payment_gateway, order_type FROM with_first_month WHERE ((order_date=first_order_date) OR (second_month=first_month+1) OR (second_month=first_month)) AND customer_id IS NOT NULL; ---- PAGE 4 -- Lifetime value table --(6 seperate tables of 1 row each (1 per cohort start month) for styling purposes) WITH with_month AS (SELECT order_date, EXTRACT(MONTH FROM order_date) as month, order_id, customer_id, source_medium, net_revenue, discount_codes, payment_gateway, order_type FROM `source-medium-take-home.SM_test_project_dataset.Maintb`), with_first_month AS (SELECT order_date, month, FIRST_VALUE(month) OVER (PARTITION BY customer_id ORDER BY month) AS first_month, NTH_VALUE(month, 2) OVER (PARTITION BY customer_id ORDER BY month) AS second_month, order_id, customer_id, source_medium, net_revenue, discount_codes, payment_gateway, order_type FROM with_month) SELECT order_date, FIRST_VALUE(order_date) OVER(PARTITION BY customer_id ORDER BY order_date) as first_order_date, month, first_month, (month-first_month) AS months_since_cohort_start, second_month, order_id, customer_id, source_medium, net_revenue, discount_codes, payment_gateway, order_type FROM with_first_month WHERE ((order_date=first_order_date) OR (second_month=first_month+1) OR (second_month=first_month)) AND customer_id IS NOT NULL AND first_month=1; --this line changes for each graph component to reflect cohort start -- Average order value (retained customers) table WITH with_month AS (SELECT order_date, EXTRACT(MONTH FROM order_date) as month, order_id, customer_id, source_medium, net_revenue, discount_codes, payment_gateway, order_type FROM `source-medium-take-home.SM_test_project_dataset.Maintb`), with_first_month AS (SELECT order_date, month, FIRST_VALUE(month) OVER (PARTITION BY customer_id ORDER BY month) AS first_month, NTH_VALUE(month, 2) OVER (PARTITION BY customer_id ORDER BY month) AS second_month, order_id, customer_id, source_medium, net_revenue, discount_codes, payment_gateway, order_type FROM with_month), with_retained AS (SELECT order_date, FIRST_VALUE(order_date) OVER(PARTITION BY customer_id ORDER BY order_date) as first_order_date, month, first_month, (month-first_month) AS months_since_cohort_start, second_month, order_id, customer_id, source_medium, net_revenue, discount_codes, payment_gateway, order_type FROM with_first_month ) SELECT * FROM with_retained WHERE ((order_date=first_order_date) OR (second_month=first_month+1) OR (second_month=first_month)) AND customer_id IS NOT NULL; ---- * FOR METRICS * ---- ---- PAGE 2 -- Total new customers ```Aggregate of percentage-based table query``` -- Customers who made a second purchase WITH T1 AS (SELECT order_date, customer_id FROM `source-medium-take-home.SM_test_project_dataset.Maintb`), T2 AS (SELECT Order_date, NTH_VALUE(order_date, 2) OVER(PARTITION BY customer_id ORDER BY order_date) as second_order_date, customer_id FROM T1 ) SELECT COUNT(DISTINCT(customer_id)) as customers_who_made_second_purchase FROM T2 WHERE second_order_date=order_date AND customer_id IS NOT NULL; -- Customers retained 1 month or longer WITH T1 AS (SELECT order_date, EXTRACT(MONTH FROM order_date) as month, customer_id FROM `source-medium-take-home.SM_test_project_dataset.Maintb`), T2 AS (SELECT month, FIRST_VALUE(month) OVER (PARTITION BY customer_id ORDER BY month) AS first_month, customer_id FROM T1), T3 AS (SELECT (month-first_month) AS months_since_cohort_start, customer_id FROM T2 ) SELECT COUNT(DISTINCT(customer_id)) as customers_for_1mo_or_longer FROM T3 WHERE months_since_cohort_start>=1 AND customer_id IS NOT NULL; ---- PAGE 3 -- Median orders per customer WITH T1 AS (SELECT order_date, customer_id, order_id, RANK() OVER(PARTITION BY customer_id ORDER BY order_date) as order_rank FROM `source-medium-take-home.SM_test_project_dataset.Maintb`) SELECT order_rank, COUNT(*) AS ord_count FROM T1 GROUP BY order_rank ORDER BY ord_count DESC LIMIT 1; -- Avg orders per retained customers WITH T1 AS (SELECT EXTRACT(MONTH FROM order_date) as month, order_id, customer_id FROM `source-medium-take-home.SM_test_project_dataset.Maintb`), T2 AS (SELECT FIRST_VALUE(month) OVER (PARTITION BY customer_id ORDER BY month) AS first_month, NTH_VALUE(month, 2) OVER (PARTITION BY customer_id ORDER BY month) AS second_month, order_id, customer_id FROM T1) SELECT --add 1 order for each customer bc first orders aren't included in table (COUNT(DISTINCT(order_id))+COUNT(DISTINCT(customer_id)))/COUNT(DISTINCT(customer_id)) AS avg_orders_per_retd_customer FROM T2 WHERE ((second_month=first_month+1) OR (second_month=first_month)) AND customer_id IS NOT NULL; ---- PAGE 4 -- One-time customer AOV SELECT SUM(net_revenue)/COUNT(DISTINCT order_id) as one_timer_aov FROM `source-medium-take-home.SM_test_project_dataset.Maintb` WHERE customer_id IN ( SELECT customer_id FROM `source-medium-take-home.SM_test_project_dataset.Maintb` GROUP BY customer_id HAVING COUNT(*) = 1 );
-- phpMyAdmin SQL Dump -- version 4.5.2 -- http://www.phpmyadmin.net -- -- Servidor: localhost -- Tiempo de generación: 14-03-2017 a las 18:10:59 -- Versión del servidor: 10.1.16-MariaDB -- Versión de PHP: 5.5.38 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Base de datos: `pruebas` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `cursos` -- CREATE TABLE `cursos` ( `id` int(11) NOT NULL, `titulo` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `descripcion` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `precio` double NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Volcado de datos para la tabla `cursos` -- INSERT INTO `cursos` (`id`, `titulo`, `descripcion`, `precio`) VALUES (2, 'Curso Symfony de Diego Abanto 90', 'Curso completo de Symfony 3.0.9', 90), (3, 'Curso Symfony de Diego Abanto 90', 'Curso completo de Symfony 3.0.9', 91), (4, 'Curso Symfony de Diego Abanto 92', 'Curso completo de Symfony 3.0.9', 92), (5, 'Curso Symfony de Diego Abanto 93', 'Curso completo de Symfony 3.0.9', 93); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `productos` -- CREATE TABLE `productos` ( `id` int(11) NOT NULL, `description` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `price` varchar(255) COLLATE utf8_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `usuarios` -- CREATE TABLE `usuarios` ( `id` int(11) NOT NULL, `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `surname` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `description` text COLLATE utf8_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `password` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `image` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `alternative` varchar(255) COLLATE utf8_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Índices para tablas volcadas -- -- -- Indices de la tabla `cursos` -- ALTER TABLE `cursos` ADD PRIMARY KEY (`id`); -- -- Indices de la tabla `productos` -- ALTER TABLE `productos` ADD PRIMARY KEY (`id`); -- -- Indices de la tabla `usuarios` -- ALTER TABLE `usuarios` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT de las tablas volcadas -- -- -- AUTO_INCREMENT de la tabla `cursos` -- ALTER TABLE `cursos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT de la tabla `productos` -- ALTER TABLE `productos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT de la tabla `usuarios` -- ALTER TABLE `usuarios` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; /*!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 */;
<filename>rol_tecnimaster.sql -- phpMyAdmin SQL Dump -- version 4.9.2 -- https://www.phpmyadmin.net/ -- -- Servidor: 1192.168.127.12 -- Tiempo de generación: 31-03-2020 a las 05:15:57 -- Versión del servidor: 10.4.10-MariaDB -- Versión de PHP: 7.3.12 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Base de datos: `tecnimaster_db` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `rol` -- CREATE TABLE `rol` ( `id` int(11) NOT NULL, `rol` varchar(45) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Volcado de datos para la tabla `rol` -- INSERT INTO `rol` (`id`, `rol`) VALUES (1, 'Administrador'), (2, 'Cliente'); -- -- Índices para tablas volcadas -- -- -- Indices de la tabla `rol` -- ALTER TABLE `rol` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT de las tablas volcadas -- -- -- AUTO_INCREMENT de la tabla `rol` -- ALTER TABLE `rol` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; COMMIT; /*!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 */;
<reponame>bima31/ci4-rest-api -- phpMyAdmin SQL Dump -- version 5.0.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Waktu pembuatan: 28 Jun 2021 pada 09.10 -- Versi server: 10.4.17-MariaDB -- Versi PHP: 7.3.25 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `ci4` -- -- -------------------------------------------------------- -- -- Struktur dari tabel `migrations` -- CREATE TABLE `migrations` ( `id` bigint(20) UNSIGNED NOT NULL, `version` varchar(255) NOT NULL, `class` varchar(255) NOT NULL, `group` varchar(255) NOT NULL, `namespace` varchar(255) NOT NULL, `time` int(11) NOT NULL, `batch` int(11) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data untuk tabel `migrations` -- INSERT INTO `migrations` (`id`, `version`, `class`, `group`, `namespace`, `time`, `batch`) VALUES (1, '2021-06-21-030812', 'App\\Database\\Migrations\\Users', 'default', 'App', 1624245843, 1); -- -------------------------------------------------------- -- -- Struktur dari tabel `monitoring` -- CREATE TABLE `monitoring` ( `id_monitoring` char(10) NOT NULL, `tgl_masuk_doc` datetime NOT NULL, `nm_perusahaan` varchar(100) NOT NULL, `no_tagihan` varchar(100) NOT NULL, `nominal` varchar(30) NOT NULL, `sts_data` char(2) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `monitoring` -- INSERT INTO `monitoring` (`id_monitoring`, `tgl_masuk_doc`, `nm_perusahaan`, `no_tagihan`, `nominal`, `sts_data`) VALUES ('2021062501', '2021-06-25 16:09:09', 'PT. qwert', 'SK2021445', '2000000', '2'), ('2021062601', '2021-06-26 22:27:16', 'PT. ABC', 'SK2021445', '1000000', '1'); -- -------------------------------------------------------- -- -- Struktur dari tabel `relasi_monitoring_user` -- CREATE TABLE `relasi_monitoring_user` ( `id` int(11) NOT NULL, `id_monitoring` char(10) NOT NULL, `status_id` varchar(10) NOT NULL, `tgl_submit` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `relasi_monitoring_user` -- INSERT INTO `relasi_monitoring_user` (`id`, `id_monitoring`, `status_id`, `tgl_submit`) VALUES (1, '2021062501', 'admin', '2021-06-25 16:09:09'), (1, '2021062601', 'admin', '2021-06-26 22:27:16'), (2, '2021062501', 'guest', '2021-06-25 16:49:25'); -- -------------------------------------------------------- -- -- Struktur dari tabel `users` -- CREATE TABLE `users` ( `id` int(11) NOT NULL, `nama` varchar(100) NOT NULL, `bidang` varchar(100) NOT NULL, `username` varchar(30) NOT NULL, `email` varchar(100) NOT NULL, `password` varchar(100) NOT NULL, `status` int(2) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data untuk tabel `users` -- INSERT INTO `users` (`id`, `nama`, `bidang`, `username`, `email`, `password`, `status`) VALUES (1, 'lemes', 'maturidi', 'lemes', '<EMAIL>', '$2y$10$NH<PASSWORD>oz1Nclk<PASSWORD>npSH<PASSWORD>', 1), (2, 'maturidi', 'mrd', 'maturidi', '<EMAIL>', '$2y$10$i93bcDFoUAmOqShEkNN0XeX3kS7lsH8Pgi8j11qeXO2CytJpGUFr.', 2), (6, 'maturidi', 'mrd', 'maturidi2', '<EMAIL>', '$2y$10$TNGiiSWKOAuX2qcqMaYM4.lrc555p4f7DYpfAs0CqF0L4dQejUmAm', 2); -- -- Indexes for dumped tables -- -- -- Indeks untuk tabel `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `monitoring` -- ALTER TABLE `monitoring` ADD PRIMARY KEY (`id_monitoring`); -- -- Indeks untuk tabel `relasi_monitoring_user` -- ALTER TABLE `relasi_monitoring_user` ADD PRIMARY KEY (`id`,`id_monitoring`); -- -- Indeks untuk tabel `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD KEY `id` (`id`); -- -- AUTO_INCREMENT untuk tabel yang dibuang -- -- -- AUTO_INCREMENT untuk tabel `migrations` -- ALTER TABLE `migrations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT untuk tabel `users` -- ALTER TABLE `users` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; COMMIT; /*!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 */;
-- MySQL dump 10.13 Distrib 5.7.17, for Win64 (x86_64) -- -- Host: 127.0.0.1 Database: itstore -- ------------------------------------------------------ -- Server version 5.7.20-0ubuntu0.16.04.1 /*!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 `allocations` -- DROP TABLE IF EXISTS `allocations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `allocations` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `inventory_id` int(10) unsigned NOT NULL, `added_by` int(10) unsigned NOT NULL, `approval` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `allocations_inventory_id_unique` (`inventory_id`), KEY `allocations_user_id_foreign` (`user_id`), KEY `allocations_added_by_foreign` (`added_by`), CONSTRAINT `allocations_added_by_foreign` FOREIGN KEY (`added_by`) REFERENCES `users` (`id`), CONSTRAINT `allocations_inventory_id_foreign` FOREIGN KEY (`inventory_id`) REFERENCES `inventories` (`id`), CONSTRAINT `allocations_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=666 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `allocations` -- LOCK TABLES `allocations` WRITE; /*!40000 ALTER TABLE `allocations` DISABLE KEYS */; INSERT INTO `allocations` VALUES (654,56986,1,57484,NULL,'2017-12-18 13:33:21','2017-12-18 13:33:21'),(658,56986,2,57484,NULL,'2017-12-19 09:10:42','2017-12-19 09:10:42'),(659,57532,5,57484,NULL,'2017-12-19 09:22:26','2017-12-19 09:22:26'),(660,57492,4,57484,NULL,'2017-12-19 09:22:56','2017-12-19 09:22:56'),(661,57349,7,57484,NULL,'2017-12-19 11:09:36','2017-12-19 11:09:36'),(662,57505,8,57484,NULL,'2017-12-19 11:15:57','2017-12-19 11:15:57'),(663,57644,9,57484,NULL,'2018-01-10 16:40:02','2018-01-10 16:40:02'),(664,57433,10,57484,NULL,'2018-01-10 16:40:49','2018-01-10 16:40:49'),(665,57353,6,57484,NULL,'2018-01-15 16:33:21','2018-01-15 16:33:21'); /*!40000 ALTER TABLE `allocations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `comments` -- DROP TABLE IF EXISTS `comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comments` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `task_id` int(10) unsigned NOT NULL, `comment` text COLLATE utf8mb4_unicode_ci NOT NULL, `status` enum('pending','reassigned','escalated','completed') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `autogen` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `comments_user_id_foreign` (`user_id`), KEY `comments_task_id_foreign` (`task_id`), CONSTRAINT `comments_task_id_foreign` FOREIGN KEY (`task_id`) REFERENCES `tasks` (`id`), CONSTRAINT `comments_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=45694 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `comments` -- LOCK TABLES `comments` WRITE; /*!40000 ALTER TABLE `comments` DISABLE KEYS */; INSERT INTO `comments` VALUES (45668,57484,68655,'Task opened and assigned to Akpoteheri ','pending',1,'2018-01-04 14:19:36','2018-01-04 14:19:36'),(45669,57484,68655,'Laptop has been troubleshooted and is closely watched for follow up.','pending',0,'2018-01-06 07:42:11','2018-01-06 07:42:11'),(45670,56986,68655,'Carried out a system format and reinstallation to ascertain if the OS was the issue. But the issue persisted and looks like less RAM are available for the task she carried out.','pending',0,'2018-01-06 08:30:49','2018-01-06 08:30:49'),(45676,56986,68655,'But the issue persisted and looks like less RAM are available for the task she carried out..','escalated',0,'2018-01-06 08:34:32','2018-01-08 16:52:33'),(45678,57484,68655,'Task reassigned to Obinna ','reassigned',1,'2018-01-08 12:52:29','2018-01-08 12:52:29'),(45687,57484,68655,'Task reassigned to Obinna ','reassigned',1,'2018-01-08 15:22:18','2018-01-08 15:22:18'),(45690,57484,68659,'Task opened and assigned to <NAME>','pending',1,'2018-01-09 11:19:36','2018-01-09 11:19:36'),(45691,57492,68659,'I looked at Amaka software requirements and determined the appropriate package','pending',0,'2018-01-09 11:26:07','2018-01-09 11:26:07'),(45692,57492,68659,'Software installed','completed',0,'2018-01-09 11:26:49','2018-01-09 11:26:49'),(45693,57484,68660,'Task opened and assigned to <NAME>','pending',1,'2018-01-15 17:27:49','2018-01-15 17:27:49'); /*!40000 ALTER TABLE `comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `departments` -- DROP TABLE IF EXISTS `departments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `departments` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `departments_title_unique` (`title`) ) ENGINE=InnoDB AUTO_INCREMENT=64600 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `departments` -- LOCK TABLES `departments` WRITE; /*!40000 ALTER TABLE `departments` DISABLE KEYS */; INSERT INTO `departments` VALUES (64589,'Strategy & Planning','2017-11-28 14:15:03','2017-11-28 14:15:03'),(64590,'Corporate Affairs','2017-11-28 14:15:03','2017-12-05 16:56:29'),(64591,'HSSEQ','2017-11-28 14:15:03','2017-11-28 14:15:03'),(64592,'Corporate Services','2017-11-28 14:15:03','2017-12-05 16:47:13'),(64593,'Commercial','2017-11-28 14:15:03','2017-11-28 14:15:03'),(64594,'Technical','2017-11-28 14:15:03','2017-11-28 14:15:03'),(64595,'Operations','2017-11-28 14:15:03','2017-11-28 14:15:03'),(64596,'Joint Venture','2017-11-28 14:15:03','2017-11-28 14:15:03'),(64597,'Legal','2017-11-28 14:15:03','2017-11-28 14:15:03'),(64598,'Finance','2017-11-28 14:15:03','2017-11-28 14:15:03'),(64599,'Other','2017-12-11 15:38:19','2017-12-11 15:38:19'); /*!40000 ALTER TABLE `departments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ilogs` -- DROP TABLE IF EXISTS `ilogs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ilogs` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `inventory_id` int(10) unsigned NOT NULL, `comment` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ilogs_user_id_foreign` (`user_id`), KEY `ilogs_inventory_id_foreign` (`inventory_id`), CONSTRAINT `ilogs_inventory_id_foreign` FOREIGN KEY (`inventory_id`) REFERENCES `inventories` (`id`), CONSTRAINT `ilogs_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=12515 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ilogs` -- LOCK TABLES `ilogs` WRITE; /*!40000 ALTER TABLE `ilogs` DISABLE KEYS */; INSERT INTO `ilogs` VALUES (1,57484,2,'Everything was added','2018-01-19 23:01:27','2018-01-19 23:01:27'); /*!40000 ALTER TABLE `ilogs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `inventories` -- DROP TABLE IF EXISTS `inventories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `inventories` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `item_id` int(10) unsigned NOT NULL, `purchase_id` int(10) unsigned DEFAULT NULL, `serial_no` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `inventories_serial_no_unique` (`serial_no`), KEY `inventories_user_id_foreign` (`user_id`), KEY `inventories_item_id_foreign` (`item_id`), KEY `inventories_purchase_id_foreign` (`purchase_id`), CONSTRAINT `inventories_item_id_foreign` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`), CONSTRAINT `inventories_purchase_id_foreign` FOREIGN KEY (`purchase_id`) REFERENCES `purchases` (`id`), CONSTRAINT `inventories_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `inventories` -- LOCK TABLES `inventories` WRITE; /*!40000 ALTER TABLE `inventories` DISABLE KEYS */; INSERT INTO `inventories` VALUES (1,56986,2548,NULL,'7CH710KQSR','2017-12-13 15:25:18','2017-12-13 15:51:47'),(2,56986,2545,68661,'3CM733096K','2017-12-13 15:53:17','2018-01-24 02:31:36'),(4,57484,2549,NULL,'5CG7350C7Q','2017-12-19 09:12:32','2017-12-19 09:12:32'),(5,57484,2549,NULL,'5CG7350C5F','2017-12-19 09:14:51','2017-12-19 09:14:51'),(6,57484,2550,NULL,'VNB8K3L94W','2017-12-19 09:47:32','2017-12-19 09:47:32'),(7,57484,2546,NULL,'5CD7230GM9','2017-12-19 11:09:23','2017-12-19 11:09:23'),(8,57484,2546,NULL,'5CD7230GND','2017-12-19 11:15:36','2017-12-19 11:15:36'),(9,57484,2567,NULL,'5CD7383LQ7','2018-01-10 16:38:42','2018-01-10 16:38:42'),(10,57484,2549,NULL,'5CG7350C71','2018-01-10 16:40:34','2018-01-10 16:40:34'); /*!40000 ALTER TABLE `inventories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `items` -- DROP TABLE IF EXISTS `items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `items` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL, `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `processor` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `descrip` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `items_title_unique` (`title`), KEY `items_user_id_foreign` (`user_id`), CONSTRAINT `items_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2569 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `items` -- LOCK TABLES `items` WRITE; /*!40000 ALTER TABLE `items` DISABLE KEYS */; INSERT INTO `items` VALUES (2545,56986,'27es Display Screen','Monitor','','','2017-12-07 15:03:51','2017-12-07 15:03:51'),(2546,56986,'HP Probook 440 G3 i3','Laptop','Core i3','HP Probook 440 G3 core i3','2017-12-07 15:18:58','2017-12-07 20:31:48'),(2547,56986,'HP Probook 440 G3 i5','Laptop','Core i5','HP Probook 440 G3 core i5','2017-12-07 15:19:49','2017-12-07 15:19:49'),(2548,56986,'HP Wireless Classic Keyboard & Mouse','Wireless Keyboard & Mouse','','Wireless Keyboard & Mouse','2017-12-11 09:52:11','2017-12-20 07:20:14'),(2549,57484,'HP Probook 640 G3 i5','Laptop','Core i5','HP Probook 640 G3 i5','2017-12-19 09:11:37','2017-12-19 09:11:37'),(2550,57484,'Color Laser Jet Pro MFP M477w','Printer','None','Laser Jet Printer','2017-12-19 09:45:38','2017-12-20 07:15:02'),(2551,57484,'Mobile Work Station','Workstation','','Mobile work station','2017-12-20 07:15:47','2017-12-20 07:15:47'),(2552,57484,'Mobile Work Station Bag','Accessories','','Mobile work station bag','2017-12-20 07:16:11','2017-12-20 07:16:11'),(2553,57484,'Hp Ultra Slim Docking Station','Docking Station','','Hp ultra slim docking station','2017-12-20 07:16:31','2017-12-20 07:16:31'),(2554,57484,'HP Z27n Monitor Display','Monitor','','Hp Z27n Monitor Display','2017-12-20 07:17:03','2017-12-20 07:17:13'),(2555,57484,'Kensington Laptop Lock','Accessories','','','2017-12-20 07:17:25','2017-12-20 07:17:25'),(2556,57484,'HP Wireless Keyboard','Keyboard','','Hp wireless keyboard','2017-12-20 07:18:05','2017-12-20 07:18:05'),(2557,57484,'HP Probook 640 G3 I7','Laptop','Core i7','HP Probook 640 G3 I7','2017-12-20 07:18:34','2017-12-20 07:21:28'),(2559,57484,'HP Z Book 14 GA','Laptop','Core I7','HP Z book 14 GA','2017-12-20 07:22:50','2017-12-20 07:22:50'),(2560,57484,'HP Laserjet Enterprise 700 Colour','Printer','','Hp laserjet enterprise 700 colour printer','2017-12-20 07:23:46','2017-12-20 07:23:46'),(2561,57484,'Laptop Lock','Accessories','','Laptop lock','2017-12-20 07:24:01','2017-12-20 07:24:01'),(2562,57484,'HP Plotter Paper','Accessories','','Hp plotter paper','2017-12-20 07:24:41','2017-12-20 07:24:41'),(2563,57484,'Laptop Bag','Accessories','','Laptop bag','2017-12-20 07:24:58','2017-12-20 07:24:58'),(2564,57484,'HP Dual Notebook Stand','Stand','','HP dual notebook stand','2017-12-20 07:25:41','2017-12-20 07:25:41'),(2565,57484,'Docking Station Complete','Docking Station','','Docking station complete','2017-12-20 07:26:16','2017-12-20 07:26:16'),(2566,57484,'Docking Station Accessories','Accessories','','Docking station accessories','2017-12-20 07:26:39','2017-12-20 07:26:39'),(2567,57484,'HP Probook 440 G4 I5','Laptop','Core I5','HP Probook 440 G4 i5','2018-01-10 16:36:43','2018-01-10 16:36:43'),(2568,57484,'HP Spectre','Laptop','Core I5','HP Spectre','2018-01-15 16:36:48','2018-01-15 16:36:48'); /*!40000 ALTER TABLE `items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `logs` -- DROP TABLE IF EXISTS `logs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `logs` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `page_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `descrip` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `logs_user_id_foreign` (`user_id`), CONSTRAINT `logs_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1620 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `logs` -- LOCK TABLES `logs` WRITE; /*!40000 ALTER TABLE `logs` DISABLE KEYS */; INSERT INTO `logs` VALUES (1308,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 15:03:47','2018-01-23 15:03:47'),(1309,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 15:04:05','2018-01-23 15:04:05'),(1310,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 15:58:30','2018-01-23 15:58:30'),(1311,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 15:59:26','2018-01-23 15:59:26'),(1312,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:04:28','2018-01-23 16:04:28'),(1313,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:21:14','2018-01-23 16:21:14'),(1314,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:26:10','2018-01-23 16:26:10'),(1315,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:27:34','2018-01-23 16:27:34'),(1316,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:42:31','2018-01-23 16:42:31'),(1317,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:44:17','2018-01-23 16:44:17'),(1318,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:44:34','2018-01-23 16:44:34'),(1319,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:45:07','2018-01-23 16:45:07'),(1320,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:48:27','2018-01-23 16:48:27'),(1321,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:48:33','2018-01-23 16:48:33'),(1322,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:48:34','2018-01-23 16:48:34'),(1323,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:49:07','2018-01-23 16:49:07'),(1324,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:49:08','2018-01-23 16:49:08'),(1325,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:49:15','2018-01-23 16:49:15'),(1326,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:49:38','2018-01-23 16:49:38'),(1327,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:49:39','2018-01-23 16:49:39'),(1328,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:50:16','2018-01-23 16:50:16'),(1329,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:50:26','2018-01-23 16:50:26'),(1330,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:50:28','2018-01-23 16:50:28'),(1331,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:51:32','2018-01-23 16:51:32'),(1332,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:51:48','2018-01-23 16:51:48'),(1333,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:51:48','2018-01-23 16:51:48'),(1334,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:52:10','2018-01-23 16:52:10'),(1335,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:52:11','2018-01-23 16:52:11'),(1336,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:52:49','2018-01-23 16:52:49'),(1337,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:52:50','2018-01-23 16:52:50'),(1338,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:53:54','2018-01-23 16:53:54'),(1339,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:53:55','2018-01-23 16:53:55'),(1340,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:54:00','2018-01-23 16:54:00'),(1341,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:54:32','2018-01-23 16:54:32'),(1342,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:55:02','2018-01-23 16:55:02'),(1343,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:55:07','2018-01-23 16:55:07'),(1344,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:55:21','2018-01-23 16:55:21'),(1345,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 16:56:18','2018-01-23 16:56:18'),(1346,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 17:30:29','2018-01-23 17:30:29'),(1347,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 17:35:49','2018-01-23 17:35:49'),(1348,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 17:43:02','2018-01-23 17:43:02'),(1349,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 17:46:44','2018-01-23 17:46:44'),(1350,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 17:46:53','2018-01-23 17:46:53'),(1351,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 17:46:53','2018-01-23 17:46:53'),(1352,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 17:47:22','2018-01-23 17:47:22'),(1353,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 17:47:30','2018-01-23 17:47:30'),(1354,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 17:47:39','2018-01-23 17:47:39'),(1355,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 18:10:14','2018-01-23 18:10:14'),(1356,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 18:10:20','2018-01-23 18:10:20'),(1357,57484,'admin/purchase-order/add','RESTRICTED! Tried to access the create purchase order page','2018-01-23 18:10:54','2018-01-23 18:10:54'),(1358,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 18:10:55','2018-01-23 18:10:55'),(1359,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 18:17:13','2018-01-23 18:17:13'),(1360,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 18:19:41','2018-01-23 18:19:41'),(1361,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 18:20:27','2018-01-23 18:20:27'),(1362,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 18:21:42','2018-01-23 18:21:42'),(1363,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 18:21:46','2018-01-23 18:21:46'),(1364,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 18:32:26','2018-01-23 18:32:26'),(1365,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 18:33:01','2018-01-23 18:33:01'),(1366,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 18:35:28','2018-01-23 18:35:28'),(1367,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 18:37:53','2018-01-23 18:37:53'),(1368,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 18:38:19','2018-01-23 18:38:19'),(1369,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 18:41:30','2018-01-23 18:41:30'),(1370,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 18:41:48','2018-01-23 18:41:48'),(1371,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 18:42:17','2018-01-23 18:42:17'),(1372,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 18:43:00','2018-01-23 18:43:00'),(1373,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 18:45:19','2018-01-23 18:45:19'),(1374,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 19:01:20','2018-01-23 19:01:20'),(1375,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 21:07:50','2018-01-23 21:07:50'),(1376,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 21:09:14','2018-01-23 21:09:14'),(1377,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 21:17:52','2018-01-23 21:17:52'),(1378,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 21:48:25','2018-01-23 21:48:25'),(1379,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 21:48:43','2018-01-23 21:48:43'),(1380,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 21:48:48','2018-01-23 21:48:48'),(1381,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 21:49:05','2018-01-23 21:49:05'),(1382,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 21:49:31','2018-01-23 21:49:31'),(1383,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 21:49:44','2018-01-23 21:49:44'),(1384,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 21:52:03','2018-01-23 21:52:03'),(1385,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-23 22:15:27','2018-01-23 22:15:27'),(1386,57484,'admin/purchase-order/add','Added purchase order entry \"Test Purchase Order\" and id .68655','2018-01-23 23:48:39','2018-01-23 23:48:39'),(1387,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 23:48:40','2018-01-23 23:48:40'),(1388,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 23:49:59','2018-01-23 23:49:59'),(1389,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 23:50:45','2018-01-23 23:50:45'),(1390,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 23:54:34','2018-01-23 23:54:34'),(1391,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 23:54:54','2018-01-23 23:54:54'),(1392,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 23:55:07','2018-01-23 23:55:07'),(1393,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-23 23:55:28','2018-01-23 23:55:28'),(1394,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:02:07','2018-01-24 00:02:07'),(1395,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:03:03','2018-01-24 00:03:03'),(1396,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:05:54','2018-01-24 00:05:54'),(1397,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:06:50','2018-01-24 00:06:50'),(1398,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:07:45','2018-01-24 00:07:45'),(1399,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:12:28','2018-01-24 00:12:28'),(1400,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:12:44','2018-01-24 00:12:44'),(1401,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:15:10','2018-01-24 00:15:10'),(1402,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:15:21','2018-01-24 00:15:21'),(1403,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:20:11','2018-01-24 00:20:11'),(1404,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:21:20','2018-01-24 00:21:20'),(1405,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-24 00:21:42','2018-01-24 00:21:42'),(1406,57484,'admin/purchase-order/add','Added purchase order entry \"Mobile modem PO\" and id .68656','2018-01-24 00:22:28','2018-01-24 00:22:28'),(1407,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:22:29','2018-01-24 00:22:29'),(1408,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-24 00:22:34','2018-01-24 00:22:34'),(1409,57484,'admin/purchase-order/add','Added purchase order entry \"Wireless Adapters\" and id .68657','2018-01-24 00:23:39','2018-01-24 00:23:39'),(1410,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:23:40','2018-01-24 00:23:40'),(1411,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-24 00:24:25','2018-01-24 00:24:25'),(1412,57484,'admin/purchase-order/add','Added purchase order entry \"PO on wireless mouse\" and id .68658','2018-01-24 00:25:40','2018-01-24 00:25:40'),(1413,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:25:41','2018-01-24 00:25:41'),(1414,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-24 00:29:11','2018-01-24 00:29:11'),(1415,57484,'admin/purchase-order/add','Added purchase order entry \"Purchase order twenty five\" and id .68659','2018-01-24 00:29:30','2018-01-24 00:29:30'),(1416,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:29:31','2018-01-24 00:29:31'),(1417,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-24 00:30:14','2018-01-24 00:30:14'),(1418,57484,'admin/purchase-order/add','Added purchase order entry \"Purchase for VMware 360\" and id .68660','2018-01-24 00:30:40','2018-01-24 00:30:40'),(1419,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:30:41','2018-01-24 00:30:41'),(1420,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-24 00:30:55','2018-01-24 00:30:55'),(1421,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-24 00:31:27','2018-01-24 00:31:27'),(1422,57484,'admin/purchase-order/add','Added purchase order entry \"360 Prezel License\" and id .68661','2018-01-24 00:31:39','2018-01-24 00:31:39'),(1423,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:31:40','2018-01-24 00:31:40'),(1424,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-24 00:32:01','2018-01-24 00:32:01'),(1425,57484,'admin/purchase-order/add','Added purchase order entry \"FPSO hardware communication PO\" and id .68662','2018-01-24 00:32:25','2018-01-24 00:32:25'),(1426,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:32:25','2018-01-24 00:32:25'),(1427,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:34:20','2018-01-24 00:34:20'),(1428,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:37:05','2018-01-24 00:37:05'),(1429,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:44:29','2018-01-24 00:44:29'),(1430,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:46:47','2018-01-24 00:46:47'),(1431,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 00:46:51','2018-01-24 00:46:51'),(1432,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 00:48:18','2018-01-24 00:48:18'),(1433,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 00:50:10','2018-01-24 00:50:10'),(1434,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 00:50:44','2018-01-24 00:50:44'),(1435,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 00:51:18','2018-01-24 00:51:18'),(1436,57484,'admin/purchase-order/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 00:51:58','2018-01-24 00:51:58'),(1437,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 00:52:06','2018-01-24 00:52:06'),(1438,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 00:52:55','2018-01-24 00:52:55'),(1439,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 00:53:25','2018-01-24 00:53:25'),(1440,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 00:53:54','2018-01-24 00:53:54'),(1441,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 00:54:01','2018-01-24 00:54:01'),(1442,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 00:54:16','2018-01-24 00:54:16'),(1443,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 00:57:29','2018-01-24 00:57:29'),(1444,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 01:00:17','2018-01-24 01:00:17'),(1445,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 01:00:54','2018-01-24 01:00:54'),(1446,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 01:01:16','2018-01-24 01:01:16'),(1447,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 01:02:03','2018-01-24 01:02:03'),(1448,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 01:02:09','2018-01-24 01:02:09'),(1449,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:02:14','2018-01-24 01:02:14'),(1450,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:03:45','2018-01-24 01:03:45'),(1451,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:03:52','2018-01-24 01:03:52'),(1452,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:05:13','2018-01-24 01:05:13'),(1453,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:06:26','2018-01-24 01:06:26'),(1454,57484,'admin/purchase-order/edit/eyJpdiI6IjhYMXREM3o3NGc5cnlNd0hac2xyblE9PSIsInZhbHVlIjoiTE1reHBmeUFmT29vOWVDM1wvMzB6ZVE9PSIsIm1hYyI6ImNjZWIxNTRmYWVhMDRjNDJhMGY2ZWE1Y2JmOTc3ZGQyNzgwMjg1ZmY4ODc2ZWY0ODViMmVhOTRkNzY2YjhkYjEifQ==','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:07:03','2018-01-24 01:07:03'),(1455,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:07:34','2018-01-24 01:07:34'),(1456,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:08:34','2018-01-24 01:08:34'),(1457,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:08:56','2018-01-24 01:08:56'),(1458,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:09:02','2018-01-24 01:09:02'),(1459,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:09:45','2018-01-24 01:09:45'),(1460,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:12:00','2018-01-24 01:12:00'),(1461,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:12:19','2018-01-24 01:12:19'),(1462,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:12:25','2018-01-24 01:12:25'),(1463,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:14:41','2018-01-24 01:14:41'),(1464,57484,'admin/purchase-order/add','Added purchase order entry \"360 Prezel License\" and id .68663','2018-01-24 01:17:32','2018-01-24 01:17:32'),(1465,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 01:17:33','2018-01-24 01:17:33'),(1466,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 01:22:12','2018-01-24 01:22:12'),(1467,57484,'admin/purchase-order/delete','Deleted \"360 Prezel License\" purchase order which had id: 68663','2018-01-24 01:22:21','2018-01-24 01:22:21'),(1468,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 01:22:27','2018-01-24 01:22:27'),(1469,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:22:32','2018-01-24 01:22:32'),(1470,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:35:16','2018-01-24 01:35:16'),(1471,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:36:37','2018-01-24 01:36:37'),(1472,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:37:31','2018-01-24 01:37:31'),(1473,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:37:51','2018-01-24 01:37:51'),(1474,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:39:05','2018-01-24 01:39:05'),(1475,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:39:13','2018-01-24 01:39:13'),(1476,57484,'admin/purchase-order/edit/<KEY>','Updated purchase order entry from \"360 Prezel License\" to \"360 Prezel License\"; on ID: 68661','2018-01-24 01:39:47','2018-01-24 01:39:47'),(1477,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 01:39:48','2018-01-24 01:39:48'),(1478,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:39:59','2018-01-24 01:39:59'),(1479,57484,'admin/purchase-order/edit/eyJpdiI6Iko0bzhGT<KEY>','Updated purchase order entry from \"360 Prezel License\" to \"360 Prezel License\"; on ID: 68661','2018-01-24 01:40:08','2018-01-24 01:40:08'),(1480,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 01:40:09','2018-01-24 01:40:09'),(1481,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 01:42:43','2018-01-24 01:42:43'),(1482,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 01:42:49','2018-01-24 01:42:49'),(1483,57484,'admin/purchase-order/edit/eyJpdiI<KEY>','Updated purchase order entry from \"FPSO hardware communication PO\" to \"FPSO hardware communication PO\"; on ID: 68662','2018-01-24 01:43:39','2018-01-24 01:43:39'),(1484,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 01:43:40','2018-01-24 01:43:40'),(1485,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 01:45:03','2018-01-24 01:45:03'),(1486,57484,'admin/purchase-order/edit/<KEY>UIxWkgza3RqV1lNYkRKTFc1VXc9PSIsInZhbHVlIjoiN1wvY0N5cGQrMGZWUDQ3bTVUNml4RkE9PSIsIm1hYyI6Ijc4ODA4YTU0YjYxY2RmNGYwNWQ0MzJlYjk2NTNlMTM5NjcyYzgxNjVhMTEwNzc2NmRjYzFhYmQyNjQxYWE5NDAifQ==','Updated purchase order entry from \"FPSO hardware communication PO\" to \"FPSO hardware communication PO\"; on ID: 68662','2018-01-24 01:46:11','2018-01-24 01:46:11'),(1487,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 01:46:12','2018-01-24 01:46:12'),(1488,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 01:47:22','2018-01-24 01:47:22'),(1489,57484,'admin/purchase-order/edit/eyJpdiI6IjZaQUV3VFwvNU93NjM4aDlBbFU1R0lRPT0iLCJ2YWx1ZSI6IndDSXBRMWorb1VpT0tyb001alBFRHc9PSIsIm1hYyI6ImZhYjNhNDEzMDg1NzA4YjhmNTk2MzI4ODljM2M0MDYyOTRiMDY4ZGJmMDUzM2RjOTZiMDBkMDAzMTYyOGNiZGYifQ==','Updated purchase order entry from \"FPSO hardware communication PO\" to \"FPSO hardware communication PO\"; on ID: 68662','2018-01-24 01:47:29','2018-01-24 01:47:29'),(1490,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 01:47:30','2018-01-24 01:47:30'),(1491,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 01:51:02','2018-01-24 01:51:02'),(1492,57484,'admin/purchase-order/edit/<KEY>','Updated purchase order entry from \"FPSO hardware communication PO\" to \"FPSO hardware communication PO\"; on ID: 68662','2018-01-24 01:51:11','2018-01-24 01:51:11'),(1493,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 01:51:12','2018-01-24 01:51:12'),(1494,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 01:52:36','2018-01-24 01:52:36'),(1495,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 01:55:52','2018-01-24 01:55:52'),(1496,57484,'admin/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 01:57:20','2018-01-24 01:57:20'),(1497,57484,'admin/purchase-order/edit/<KEY>','Updated purchase order entry from \"FPSO hardware communication PO\" to \"FPSO hardware communication PO\", updated the purchase order file, updated the delivery note file; on ID: 68662','2018-01-24 01:57:41','2018-01-24 01:57:41'),(1498,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 01:57:42','2018-01-24 01:57:42'),(1499,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 01:58:33','2018-01-24 01:58:33'),(1500,57484,'admin/purchase-order/edit/<KEY>','Opened the \"360 Prezel License\" purchase order page.','2018-01-24 01:59:01','2018-01-24 01:59:01'),(1501,57484,'admin/purchase-order/edit/<KEY>','Updated purchase order entry from \"360 Prezel License\" to \"360 Prezel License\"; on ID: 68661','2018-01-24 01:59:09','2018-01-24 01:59:09'),(1502,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 01:59:09','2018-01-24 01:59:09'),(1503,57484,'admin/purchase-order/edit/<KEY>','Opened the \"Purchase order twenty five\" purchase order page.','2018-01-24 01:59:15','2018-01-24 01:59:15'),(1504,57484,'admin/purchase-order/edit/<KEY>','Updated purchase order entry from \"Purchase order twenty five\" to \"Purchase order twenty five\"; on ID: 68659','2018-01-24 01:59:22','2018-01-24 01:59:22'),(1505,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 01:59:22','2018-01-24 01:59:22'),(1506,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 02:07:28','2018-01-24 02:07:28'),(1507,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 02:07:47','2018-01-24 02:07:47'),(1508,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 02:10:32','2018-01-24 02:10:32'),(1509,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 02:11:42','2018-01-24 02:11:42'),(1510,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 02:11:56','2018-01-24 02:11:56'),(1511,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 02:15:30','2018-01-24 02:15:30'),(1512,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 02:15:56','2018-01-24 02:15:56'),(1513,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 02:16:13','2018-01-24 02:16:13'),(1514,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 02:16:39','2018-01-24 02:16:39'),(1515,57484,'admin/purchase-order/add','Opened the purchase order page.','2018-01-24 02:18:03','2018-01-24 02:18:03'),(1516,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 02:18:26','2018-01-24 02:18:26'),(1517,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 02:19:24','2018-01-24 02:19:24'),(1518,57484,'admin/inventory','Opened the items page.','2018-01-24 02:21:32','2018-01-24 02:21:32'),(1519,57484,'admin/inventory/edit','Updated inventory item serial-no from \"3CM733096K\" to \"3CM733096K\",\n and from \"27es Display Screen\" type to \"27es Display Screen\",\n with id .2','2018-01-24 02:21:45','2018-01-24 02:21:45'),(1520,57484,'admin/inventory','Opened the items page.','2018-01-24 02:21:46','2018-01-24 02:21:46'),(1521,57484,'admin/inventory','Opened the items page.','2018-01-24 02:23:09','2018-01-24 02:23:09'),(1522,57484,'admin/inventory','Opened the items page.','2018-01-24 02:27:32','2018-01-24 02:27:32'),(1523,57484,'admin/inventory/edit','Updated inventory item serial-no from \"3CM733096K\" to \"3CM733096K\", \n from \"27es Display Screen\" type to \"27es Display Screen\",\n and from \"360 Prezel License\" purchase order to \"360 Prezel License\", \n with id .2','2018-01-24 02:31:39','2018-01-24 02:31:39'),(1524,57484,'admin/inventory','Opened the items page.','2018-01-24 02:31:39','2018-01-24 02:31:39'),(1525,57484,'admin/inventory','Opened the items page.','2018-01-24 02:32:29','2018-01-24 02:32:29'),(1526,57484,'admin/inventory/add','Added inventory with serial number \"DSFGDGDFGDFGER\" and id .11','2018-01-24 02:33:31','2018-01-24 02:33:31'),(1527,57484,'admin/inventory','Opened the items page.','2018-01-24 02:33:32','2018-01-24 02:33:32'),(1528,57484,'admin/inventory/delete','Deleted \"Color Laser Jet Pro MFP M477w\" with serial number \"DSFGDGDFGDFGER\" from the inventory which had id: 11','2018-01-24 02:33:39','2018-01-24 02:33:39'),(1529,57484,'admin/inventory/show/<KEY>','Opened the 27es Display Screen (#3CM733096K) inventory page.','2018-01-24 02:33:45','2018-01-24 02:33:45'),(1530,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 02:33:59','2018-01-24 02:33:59'),(1531,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 03:55:09','2018-01-24 03:55:09'),(1532,57484,'admin/purchase-order/view/<KEY>','RESTRICTED! Tried to access the purchase order page','2018-01-24 03:55:56','2018-01-24 03:55:56'),(1533,57484,'admin/purchase-order/view/<KEY>','RESTRICTED! Tried to access the purchase order page','2018-01-24 03:57:29','2018-01-24 03:57:29'),(1534,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 03:57:29','2018-01-24 03:57:29'),(1535,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 03:58:20','2018-01-24 03:58:20'),(1536,57484,'admin/purchase-order/view/<KEY>','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 03:58:26','2018-01-24 03:58:26'),(1537,57484,'admin/purchase-order/view/<KEY>','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 03:59:14','2018-01-24 03:59:14'),(1538,57484,'admin/purchase-order/view/<KEY>','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 03:59:35','2018-01-24 03:59:35'),(1539,57484,'admin/purchase-order/view/<KEY>','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 04:00:33','2018-01-24 04:00:33'),(1540,57484,'admin/purchase-order/view/<KEY>','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 04:01:10','2018-01-24 04:01:10'),(1541,57484,'admin/purchase-order/view/<KEY>','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 04:01:58','2018-01-24 04:01:58'),(1542,57484,'admin/purchase-order/view/<KEY>','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 04:02:23','2018-01-24 04:02:23'),(1543,57484,'admin/purchase-order/view/<KEY>','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 04:04:00','2018-01-24 04:04:00'),(1544,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 04:07:04','2018-01-24 04:07:04'),(1545,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 04:07:09','2018-01-24 04:07:09'),(1546,57484,'admin/purchase-order/edit/<KEY>','Updated purchase order entry from \"FPSO hardware communication PO\" to \"FPSO hardware communication PO\", updated the invoice file; on ID: 68662','2018-01-24 04:07:24','2018-01-24 04:07:24'),(1547,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 04:07:25','2018-01-24 04:07:25'),(1548,57484,'admin/purchase-order/view/<KEY>','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 04:07:28','2018-01-24 04:07:28'),(1549,57484,'admin/purchase-order/view/<KEY>','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 04:17:14','2018-01-24 04:17:14'),(1550,57484,'admin/purchase-order/view/<KEY>','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 04:18:15','2018-01-24 04:18:15'),(1551,57484,'admin/purchase-order/log/add','Added log comment for purchase order item \"FPSO hardware communication PO\" with id: 25562','2018-01-24 04:19:16','2018-01-24 04:19:16'),(1552,57484,'admin/purchase-order/view/<KEY>','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 04:19:17','2018-01-24 04:19:17'),(1553,57484,'admin/inventory','Opened the items page.','2018-01-24 04:19:51','2018-01-24 04:19:51'),(1554,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 04:19:56','2018-01-24 04:19:56'),(1555,57484,'admin/purchase-order/view/<KEY>','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 04:20:00','2018-01-24 04:20:00'),(1556,57484,'admin/inventory','Opened the items page.','2018-01-24 04:20:14','2018-01-24 04:20:14'),(1557,57484,'admin/inventory/show/<KEY>','Opened the 27es Display Screen (#3CM733096K) inventory page.','2018-01-24 04:20:17','2018-01-24 04:20:17'),(1558,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 04:21:01','2018-01-24 04:21:01'),(1559,57484,'admin/purchase-order/view/<KEY>','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 04:21:04','2018-01-24 04:21:04'),(1560,57484,'admin/purchase-order/view/<KEY>','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 04:21:40','2018-01-24 04:21:40'),(1561,57484,'admin/purchase-order/view/<KEY>','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 04:27:26','2018-01-24 04:27:26'),(1562,57484,'admin/purchase-order/log/edit','Updated purchase order log comment from \"this is the first comment on the PO\" to \"this is the first comment on the PO - edit\", on log id .25562','2018-01-24 04:27:38','2018-01-24 04:27:38'),(1563,57484,'admin/purchase-order/view/<KEY>','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 04:27:39','2018-01-24 04:27:39'),(1564,57484,'admin/purchase-order/log/add','Added log comment for purchase order item \"FPSO hardware communication PO\" with id: 25563','2018-01-24 04:27:47','2018-01-24 04:27:47'),(1565,57484,'admin/purchase-order/view/<KEY>','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 04:27:48','2018-01-24 04:27:48'),(1566,57484,'admin/purchase-order/log/add','Added log comment for purchase order item \"FPSO hardware communication PO\" with id: 25564','2018-01-24 04:27:57','2018-01-24 04:27:57'),(1567,57484,'admin/purchase-order/view/eyJpdiI6IkcrVDJCSlhwWTM1TVpBTTlrV1E<KEY>','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 04:27:57','2018-01-24 04:27:57'),(1568,57484,'admin/purchase-order/log/add','Added log comment for purchase order item \"FPSO hardware communication PO\" with id: 25565','2018-01-24 04:28:07','2018-01-24 04:28:07'),(1569,57484,'admin/purchase-order/view/eyJpdiI6InBGM3RVZGQ5SzB2MWdHR2NoOGdMVEE9PSIsInZhbHVlIjoia3Q2MTJoYUhFTkw5N01cL2NUYU1ybHc9PSIsIm1hYyI6IjZkZjIyNzI5ZWZiOGQ3M2M2NjdlZmUzMWQ5YjU2M2MxNzZlOWRjYWVkYjE0M2Y0ODE2OWQ2NzQ5NmZmNjNmOTAifQ==','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 04:28:08','2018-01-24 04:28:08'),(1570,57484,'admin/purchase-order/log/delete','Deleted \"FPSO hardware communication PO\" purchase order log comment with id .25565','2018-01-24 04:29:52','2018-01-24 04:29:52'),(1571,57484,'admin/purchase-order/log/delete','Deleted \"FPSO hardware communication PO\" purchase order log comment with id .25564','2018-01-24 04:29:56','2018-01-24 04:29:56'),(1572,57484,'admin/purchase-order/log/delete','Deleted \"FPSO hardware communication PO\" purchase order log comment with id .25563','2018-01-24 04:30:00','2018-01-24 04:30:00'),(1573,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 04:30:11','2018-01-24 04:30:11'),(1574,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 04:30:16','2018-01-24 04:30:16'),(1575,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 04:33:49','2018-01-24 04:33:49'),(1576,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 04:34:08','2018-01-24 04:34:08'),(1577,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 04:34:34','2018-01-24 04:34:34'),(1578,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 04:34:49','2018-01-24 04:34:49'),(1579,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 04:35:22','2018-01-24 04:35:22'),(1580,57484,'admin/purchase-order/edit/<KEY>','Updated purchase order entry from \"FPSO hardware communication PO\" to \"FPSO hardware communication PO\"; on ID: 68662','2018-01-24 04:46:27','2018-01-24 04:46:27'),(1581,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 04:46:27','2018-01-24 04:46:27'),(1582,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 04:46:43','2018-01-24 04:46:43'),(1583,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:20:15','2018-01-24 05:20:15'),(1584,57484,'admin/purchase-order/edit/<KEY>','Updated purchase order entry from \"FPSO hardware communication PO\" to \"FPSO hardware communication PO\"; on ID: 68662','2018-01-24 05:20:25','2018-01-24 05:20:25'),(1585,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 05:20:26','2018-01-24 05:20:26'),(1586,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 05:22:18','2018-01-24 05:22:18'),(1587,57484,'admin/purchase-order/edit/<KEY>==','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:22:24','2018-01-24 05:22:24'),(1588,57484,'admin/purchase-order/edit/<KEY>','Updated purchase order entry from \"FPSO hardware communication PO\" to \"FPSO hardware communication PO\"; on ID: 68662','2018-01-24 05:22:28','2018-01-24 05:22:28'),(1589,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 05:22:29','2018-01-24 05:22:29'),(1590,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:22:57','2018-01-24 05:22:57'),(1591,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:25:15','2018-01-24 05:25:15'),(1592,57484,'admin/purchase-order/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:25:49','2018-01-24 05:25:49'),(1593,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:26:56','2018-01-24 05:26:56'),(1594,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:28:20','2018-01-24 05:28:20'),(1595,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 05:30:56','2018-01-24 05:30:56'),(1596,57484,'admin/purchase-order/view/<KEY>','Opened the FPSO hardware communication PO purchase order page.','2018-01-24 05:31:01','2018-01-24 05:31:01'),(1597,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 05:31:12','2018-01-24 05:31:12'),(1598,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:31:16','2018-01-24 05:31:16'),(1599,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:33:30','2018-01-24 05:33:30'),(1600,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:33:34','2018-01-24 05:33:34'),(1601,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:35:02','2018-01-24 05:35:02'),(1602,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:35:56','2018-01-24 05:35:56'),(1603,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:36:41','2018-01-24 05:36:41'),(1604,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:37:22','2018-01-24 05:37:22'),(1605,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:39:43','2018-01-24 05:39:43'),(1606,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:40:14','2018-01-24 05:40:14'),(1607,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:41:32','2018-01-24 05:41:32'),(1608,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:45:29','2018-01-24 05:45:29'),(1609,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:46:50','2018-01-24 05:46:50'),(1610,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:47:43','2018-01-24 05:47:43'),(1611,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:47:56','2018-01-24 05:47:56'),(1612,57484,'admin/purchase-order/delete-file','Deleted \"FPSO hardware communication PO purchase order Purchase Order\"; with id: 68662','2018-01-24 05:48:05','2018-01-24 05:48:05'),(1613,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:50:45','2018-01-24 05:50:45'),(1614,57484,'admin/purchase-order/edit/<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:52:54','2018-01-24 05:52:54'),(1615,57484,'admin/purchase-order/delete-file','Deleted \"FPSO hardware communication PO purchase order Delivery Note\"; with id: 68662','2018-01-24 05:53:04','2018-01-24 05:53:04'),(1616,57484,'admin/purchase-<KEY>','Opened the \"FPSO hardware communication PO\" purchase order page.','2018-01-24 05:53:05','2018-01-24 05:53:05'),(1617,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 05:53:12','2018-01-24 05:53:12'),(1618,57484,'admin/purchase-order','Opened the purchase order page.','2018-01-24 05:55:14','2018-01-24 05:55:14'),(1619,57484,'admin/inventory','Opened the items page.','2018-01-24 05:55:20','2018-01-24 05:55:20'); /*!40000 ALTER TABLE `logs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `migrations` -- DROP TABLE IF EXISTS `migrations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `migrations` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `migrations` -- LOCK TABLES `migrations` WRITE; /*!40000 ALTER TABLE `migrations` DISABLE KEYS */; INSERT INTO `migrations` VALUES (1,'2017_03_12_103734_create_roles_table',1),(2,'2017_03_13_175311_create_pages_table',1),(3,'2017_11_27_204433_create_departments_table',1),(4,'2017_03_13_175320_create_permissions_table',2),(5,'2017_11_27_204444_create_units_table',2),(6,'2014_10_12_000000_create_users_table',3),(7,'2017_11_28_145335_create_logs_table',4),(8,'2017_12_07_081323_create_items_table',5),(9,'2017_12_07_082100_create_inventories_table',6),(10,'2017_12_07_093648_updateAuto',7),(11,'2017_12_13_161537_create_allocations_table',8),(12,'2017_12_18_105653_modify_allocation',9),(13,'2017_12_18_125955_modify_allocation_02',10),(14,'2018_01_03_122555_create_tasks_table',11),(15,'2018_01_03_122925_create_comments_table',11),(16,'2018_01_03_125336_updateComment',12),(17,'2018_01_03_161110_updateTask',13),(18,'2018_01_08_154235_updatecom',14),(19,'2018_01_18_100325_create_purchases_table',15),(20,'2018_01_18_100414_create_plogs_table',15),(21,'2018_01_18_100423_create_ilogs_table',15),(22,'2018_01_19_101228_updateTables',16),(23,'2018_01_19_151838_updateTables01',17),(24,'2018_01_23_120011_updateAutoInc01',18),(25,'2018_01_23_124137_UpdatePurchase',19); /*!40000 ALTER TABLE `migrations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pages` -- DROP TABLE IF EXISTS `pages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pages` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `type_id` int(11) NOT NULL DEFAULT '0', `slug` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `type` enum('page','subpage') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'page', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `pages_slug_unique` (`slug`) ) ENGINE=InnoDB AUTO_INCREMENT=524 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pages` -- LOCK TABLES `pages` WRITE; /*!40000 ALTER TABLE `pages` DISABLE KEYS */; INSERT INTO `pages` VALUES (512,'Pages & Permissions',0,'pages-and-permissions','files-o','page','2017-03-15 09:14:45','2017-03-15 09:33:09'),(513,'Permissions',512,'permissions','lock','subpage','2017-03-15 09:25:33','2017-12-01 07:25:10'),(514,'Pages',512,'pages','folder-open','subpage','2017-03-15 09:33:47','2017-12-01 07:24:54'),(515,'Users',0,'users','users','page','2017-03-15 11:30:42','2017-03-15 11:30:42'),(516,'Departments & Units',0,'departments-and-units','th-large','page','2017-12-01 19:29:00','2017-12-01 19:29:00'),(517,'Items',519,'items','sitemap','subpage','2017-12-01 19:31:44','2017-12-07 08:02:28'),(518,'Inventory',519,'inventory','th','subpage','2017-12-01 19:32:32','2017-12-07 08:02:13'),(519,'Inventory & Items',0,'inventory-and-items','square-o','page','2017-12-07 08:01:52','2017-12-07 08:01:52'),(520,'Allocation',0,'allocation','check-circle','page','2017-12-13 16:32:30','2017-12-13 16:32:30'),(521,'Tasks',0,'tasks','tasks','page','2018-01-03 16:50:06','2018-01-04 10:05:49'),(522,'Logs',0,'logs','barcode','page','2018-01-10 14:25:36','2018-01-10 14:25:36'),(523,'Purchase Order',0,'purchase-order','usd','page','2018-01-22 17:06:51','2018-01-23 12:41:00'); /*!40000 ALTER TABLE `pages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `permissions` -- DROP TABLE IF EXISTS `permissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `permissions` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `role_id` int(10) unsigned NOT NULL, `page_id` int(10) unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `permissions_role_id_foreign` (`role_id`), KEY `permissions_page_id_foreign` (`page_id`), CONSTRAINT `permissions_page_id_foreign` FOREIGN KEY (`page_id`) REFERENCES `pages` (`id`) ON DELETE CASCADE, CONSTRAINT `permissions_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=6699 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `permissions` -- LOCK TABLES `permissions` WRITE; /*!40000 ALTER TABLE `permissions` DISABLE KEYS */; INSERT INTO `permissions` VALUES (6658,1525,512,'2017-12-01 07:26:13','2017-12-01 07:26:13'),(6659,1525,513,'2017-12-01 07:26:13','2017-12-01 07:26:13'),(6660,1525,514,'2017-12-01 07:26:13','2017-12-01 07:26:13'),(6661,1525,515,'2017-12-01 07:26:13','2017-12-01 07:26:13'),(6662,1526,515,'2017-12-01 07:26:52','2017-12-01 07:26:52'),(6663,1527,515,'2017-12-01 07:26:52','2017-12-01 07:26:52'),(6665,1525,516,'2017-12-01 19:29:00','2017-12-01 19:29:00'),(6666,1525,517,'2017-12-01 19:31:44','2017-12-01 19:31:44'),(6667,1525,518,'2017-12-01 19:32:33','2017-12-01 19:32:33'),(6668,1525,519,'2017-12-07 08:01:52','2017-12-07 08:01:52'),(6669,1528,516,'2017-12-12 15:12:03','2017-12-12 15:12:03'),(6670,1528,517,'2017-12-12 15:12:03','2017-12-12 15:12:03'),(6671,1528,518,'2017-12-12 15:12:03','2017-12-12 15:12:03'),(6672,1528,519,'2017-12-12 15:12:03','2017-12-12 15:12:03'),(6673,1526,516,'2017-12-12 15:12:36','2017-12-12 15:12:36'),(6674,1526,517,'2017-12-12 15:12:36','2017-12-12 15:12:36'),(6675,1526,518,'2017-12-12 15:12:37','2017-12-12 15:12:37'),(6676,1526,519,'2017-12-12 15:12:37','2017-12-12 15:12:37'),(6677,1525,520,'2017-12-13 16:32:30','2017-12-13 16:32:30'),(6678,1527,518,'2017-12-13 16:33:06','2017-12-13 16:33:06'),(6679,1527,519,'2017-12-13 16:33:06','2017-12-13 16:33:06'),(6680,1527,520,'2017-12-13 16:33:06','2017-12-13 16:33:06'),(6681,1526,520,'2017-12-13 16:36:18','2017-12-13 16:36:18'),(6682,1525,521,'2018-01-03 16:50:06','2018-01-03 16:50:06'),(6683,1526,521,'2018-01-04 15:04:15','2018-01-04 15:04:15'),(6684,1528,521,'2018-01-04 15:04:27','2018-01-04 15:04:27'),(6685,1527,521,'2018-01-04 15:04:44','2018-01-04 15:04:44'),(6686,1525,522,'2018-01-10 14:25:36','2018-01-10 14:25:36'),(6687,1527,516,'2018-01-19 13:40:42','2018-01-19 13:40:42'),(6688,1527,517,'2018-01-19 13:40:42','2018-01-19 13:40:42'),(6689,1528,515,'2018-01-19 13:40:42','2018-01-19 13:40:42'),(6690,1528,520,'2018-01-19 13:40:42','2018-01-19 13:40:42'),(6691,1532,515,'2018-01-19 13:40:42','2018-01-19 13:40:42'),(6692,1532,516,'2018-01-19 13:40:42','2018-01-19 13:40:42'),(6693,1532,517,'2018-01-19 13:40:42','2018-01-19 13:40:42'),(6694,1532,518,'2018-01-19 13:40:42','2018-01-19 13:40:42'),(6695,1532,519,'2018-01-19 13:40:42','2018-01-19 13:40:42'),(6696,1532,520,'2018-01-19 13:40:42','2018-01-19 13:40:42'),(6697,1532,521,'2018-01-19 13:40:42','2018-01-19 13:40:42'),(6698,1525,523,'2018-01-22 17:06:51','2018-01-22 17:06:51'); /*!40000 ALTER TABLE `permissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `plogs` -- DROP TABLE IF EXISTS `plogs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `plogs` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `purchase_id` int(10) unsigned NOT NULL, `inventory_id` int(10) unsigned DEFAULT NULL, `comment` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `plogs_user_id_foreign` (`user_id`), KEY `plogs_purchase_id_foreign` (`purchase_id`), KEY `plogs_inventory_id_foreign` (`inventory_id`), CONSTRAINT `plogs_inventory_id_foreign` FOREIGN KEY (`inventory_id`) REFERENCES `inventories` (`id`), CONSTRAINT `plogs_purchase_id_foreign` FOREIGN KEY (`purchase_id`) REFERENCES `purchases` (`id`), CONSTRAINT `plogs_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=25566 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `plogs` -- LOCK TABLES `plogs` WRITE; /*!40000 ALTER TABLE `plogs` DISABLE KEYS */; INSERT INTO `plogs` VALUES (25562,57484,68662,NULL,'this is the first comment on the PO - edit','2018-01-24 04:19:16','2018-01-24 04:27:38'); /*!40000 ALTER TABLE `plogs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `purchases` -- DROP TABLE IF EXISTS `purchases`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `purchases` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `po` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `dn` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `inv` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `total` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `po_at` timestamp NULL DEFAULT NULL, `dn_at` timestamp NULL DEFAULT NULL, `inv_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `purchases_user_id_foreign` (`user_id`), CONSTRAINT `purchases_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=68664 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `purchases` -- LOCK TABLES `purchases` WRITE; /*!40000 ALTER TABLE `purchases` DISABLE KEYS */; INSERT INTO `purchases` VALUES (68655,57484,'Test Purchase Order','TestPurchaseOrder_po_6147795711.pdf','TestPurchaseOrder_dn_1777659411.pdf','TestPurchaseOrder_inv_7175971416.pdf',5000,'2018-01-23 23:48:39','2018-01-23 23:48:39',NULL,NULL,NULL),(68656,57484,'Mobile modem PO','MobileModemPO_po_6817459741.pdf',NULL,NULL,1500000,'2018-01-24 00:22:28','2018-01-24 00:22:28',NULL,NULL,NULL),(68657,57484,'Wireless Adapters',NULL,'WirelessAdapters_dn_1685919741.pdf',NULL,500000,'2018-01-24 00:23:39','2018-01-24 00:23:39',NULL,NULL,NULL),(68658,57484,'PO on wireless mouse',NULL,NULL,'POOnWirelessMouse_inv_7416059941.pdf',NULL,'2018-01-24 00:25:40','2018-01-24 00:25:40',NULL,NULL,NULL),(68659,57484,'Purchase order twenty five','PurchaseOrderTwentyFive_po_0571071516.pdf','PurchaseOrderTwentyFive_dn_1701105567.pdf',NULL,900000,'2018-01-24 00:29:30','2018-01-24 01:59:22',NULL,NULL,NULL),(68660,57484,'Purchase for VMware 360','PurchaseForVMware360_po_1270145056.pdf',NULL,'PurchaseForVMware360_inv_5710652014.pdf',NULL,'2018-01-24 00:30:40','2018-01-24 00:30:40',NULL,NULL,NULL),(68661,57484,'360 Prezel License',NULL,'360PrezelLicense_dn_1576450814.pdf','360PrezelLicense_inv_1615790529.pdf',600000,'2018-01-24 00:31:39','2018-01-24 01:59:09',NULL,NULL,NULL),(68662,57484,'FPSO hardware communication PO',NULL,NULL,'FPSOHardwareCommunicationPO_inv_1521366744.pdf',5500000,'2018-01-24 00:32:25','2018-01-24 05:53:04',NULL,NULL,'2018-01-24 04:07:24'); /*!40000 ALTER TABLE `purchases` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `roles` -- DROP TABLE IF EXISTS `roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `roles` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1533 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `roles` -- LOCK TABLES `roles` WRITE; /*!40000 ALTER TABLE `roles` DISABLE KEYS */; INSERT INTO `roles` VALUES (1525,'Developer','2017-11-28 14:09:57','2017-11-28 14:09:57'),(1526,'Administrator','2017-11-28 14:09:57','2017-11-28 14:09:57'),(1527,'Manager','2017-11-28 14:09:57','2017-11-28 14:09:57'),(1528,'Editor','2017-11-28 14:09:57','2017-11-28 14:09:57'),(1529,'Staff','2017-11-28 14:09:57','2017-11-28 14:09:57'),(1530,'Department','2017-12-10 23:00:00','2017-12-10 23:00:00'),(1531,'Organization','2017-12-10 23:00:00','2017-12-10 23:00:00'),(1532,'Supervisor','2017-12-10 23:00:00','2017-12-10 23:00:00'); /*!40000 ALTER TABLE `roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tasks` -- DROP TABLE IF EXISTS `tasks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tasks` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `inventory_id` int(10) unsigned DEFAULT NULL, `assigned_by` int(10) unsigned NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `status` enum('opened','unresolved','closed') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'opened', `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `client_id` int(10) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `tasks_user_id_foreign` (`user_id`), KEY `tasks_inventory_id_foreign` (`inventory_id`), KEY `tasks_assigned_by_foreign` (`assigned_by`), KEY `tasks_client_id_foreign` (`client_id`), CONSTRAINT `tasks_assigned_by_foreign` FOREIGN KEY (`assigned_by`) REFERENCES `users` (`id`), CONSTRAINT `tasks_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `users` (`id`), CONSTRAINT `tasks_inventory_id_foreign` FOREIGN KEY (`inventory_id`) REFERENCES `inventories` (`id`), CONSTRAINT `tasks_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=68661 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tasks` -- LOCK TABLES `tasks` WRITE; /*!40000 ALTER TABLE `tasks` DISABLE KEYS */; INSERT INTO `tasks` VALUES (68655,56986,NULL,57484,'Faith\'s Laptop Issue','opened','Repairs','2018-01-04 14:19:36','2018-01-19 20:21:50',57433),(68659,57492,NULL,57484,'Fix Amaka\'s Software','closed','Application Support','2018-01-09 11:19:36','2018-01-09 11:26:49',57328),(68660,57322,NULL,57484,'Repair Adetunji\'s Phone','opened','Repairs','2018-01-15 17:27:49','2018-01-15 17:27:49',57322); /*!40000 ALTER TABLE `tasks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `units` -- DROP TABLE IF EXISTS `units`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `units` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL, `department_id` int(10) unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `units_title_unique` (`title`), KEY `units_department_id_foreign` (`department_id`), CONSTRAINT `units_department_id_foreign` FOREIGN KEY (`department_id`) REFERENCES `departments` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `units` -- LOCK TABLES `units` WRITE; /*!40000 ALTER TABLE `units` DISABLE KEYS */; INSERT INTO `units` VALUES (1,'IT',64592,'2017-12-06 12:11:53','2017-12-06 12:11:53'),(2,'Human Resources',64592,'2017-12-06 12:12:44','2017-12-06 12:12:44'),(4,'Community & State Government\'s Relations',64590,'2017-12-06 12:18:34','2017-12-06 20:13:19'),(5,'Drilling',64594,'2017-12-06 13:50:43','2017-12-06 13:50:43'),(6,'Other',64599,'2017-12-11 15:38:31','2017-12-11 15:38:31'),(7,'Organization',64599,'2017-12-11 15:52:22','2017-12-11 15:52:22'),(8,'Partner',64599,'2017-12-11 15:52:32','2017-12-11 15:52:32'),(9,'HSSEQ',64591,'2017-12-18 12:24:05','2017-12-18 12:24:05'),(10,'Joint Venture',64596,'2017-12-18 12:24:20','2017-12-18 12:24:20'),(11,'Commercial',64593,'2017-12-18 12:25:02','2017-12-18 12:25:02'),(12,'Finance',64598,'2017-12-18 12:25:18','2017-12-18 12:25:18'),(13,'Technical',64594,'2017-12-18 12:26:01','2017-12-18 12:26:01'),(14,'Corporate Services',64592,'2017-12-18 12:26:15','2017-12-18 12:26:15'),(15,'Corporate Affairs',64590,'2017-12-18 12:26:23','2017-12-18 12:26:23'),(16,'Legal',64597,'2017-12-18 12:26:40','2017-12-18 12:26:40'),(17,'Operations',64595,'2017-12-18 12:26:50','2017-12-18 12:26:50'),(18,'Strategy & Planning',64589,'2017-12-18 12:27:01','2017-12-18 12:27:01'),(19,'Admin',64592,'2017-12-18 12:31:34','2017-12-18 12:31:34'),(20,'Field',64595,'2017-12-19 15:53:29','2017-12-19 15:53:29'),(21,'Facilities',64595,'2017-12-19 15:53:41','2017-12-19 15:53:41'),(22,'Production',64595,'2017-12-19 15:54:02','2017-12-19 15:54:02'),(23,'Subsurface',64594,'2017-12-19 15:54:16','2017-12-19 15:54:16'),(24,'Corporate Engineering',64594,'2017-12-19 15:54:44','2017-12-19 15:56:42'),(25,'Governance, Risk & Assurance',64593,'2017-12-19 16:05:10','2017-12-19 16:05:10'),(26,'Contracts & Procurement',64593,'2017-12-19 16:05:28','2017-12-19 16:05:28'),(27,'Logistics',64593,'2017-12-19 16:05:41','2017-12-19 16:05:41'),(28,'Health & Safety',64591,'2017-12-19 16:06:00','2017-12-19 16:06:00'),(29,'Environment',64591,'2017-12-19 16:06:39','2017-12-19 16:06:39'),(30,'Security',64591,'2017-12-19 16:06:53','2017-12-19 16:06:53'),(31,'Corporate Communications & Public Relations',64590,'2018-01-09 09:27:38','2018-01-09 09:27:38'),(32,'Corporate Social Responsibility',64590,'2018-01-09 09:28:36','2018-01-09 09:28:36'),(33,'Brand Management',64590,'2018-01-09 09:29:12','2018-01-09 09:29:12'); /*!40000 ALTER TABLE `units` 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` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `role_id` int(10) unsigned NOT NULL, `unit_id` int(10) unsigned DEFAULT NULL, `email` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `username` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `firstname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `lastname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `gender` enum('male','female') COLLATE utf8mb4_unicode_ci NOT NULL, `staff_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` enum('inactive','active','blocked') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inactive', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `users_email_unique` (`email`), UNIQUE KEY `users_staff_id_unique` (`staff_id`), KEY `users_role_id_foreign` (`role_id`), KEY `users_unit_id_foreign` (`unit_id`), CONSTRAINT `users_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`), CONSTRAINT `users_unit_id_foreign` FOREIGN KEY (`unit_id`) REFERENCES `units` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=57645 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!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 (56986,1528,1,'<EMAIL>','aomeru','$2y$10$R9McLYa6XNfYZkF2ZYFcEeFibs8CJMpfXXpcjciwQL.8/UKG7E/MC','Akpoteheri','Omeru','male','G17090167','active','FcS6pBclRih5CIofrOlyCpolgxFQmu157snBo41AyUbNGo0eqZ5t2C38HxCZ','2017-11-28 15:19:17','2018-01-19 10:41:33'),(57313,1529,NULL,'<EMAIL>','abcorjiako','','ABC','Orjiako','male',NULL,'inactive',NULL,'2017-11-28 15:19:17','2018-01-19 10:42:30'),(57314,1529,NULL,'<EMAIL>','aonyejakwuzi','','Adamma','Onyejakwuzi','male',NULL,'inactive',NULL,'2017-11-28 15:19:17','2018-01-19 10:42:30'),(57315,1529,NULL,'<EMAIL>','aogunsade','','Adedolapo','Ogunsade','male',NULL,'inactive',NULL,'2017-11-28 15:19:17','2018-01-19 10:42:30'),(57316,1529,NULL,'<EMAIL>','abamigboye','','Adegbemile','Bamigboye','male',NULL,'inactive',NULL,'2017-11-28 15:19:17','2018-01-19 10:42:30'),(57317,1529,NULL,'<EMAIL>','aoyebanji-umaigba','','Adejoke','Oyebanji-Umaigba','male',NULL,'inactive',NULL,'2017-11-28 15:19:17','2018-01-19 10:42:30'),(57318,1529,NULL,'<EMAIL>','aadepitan','','Adekunle','Adepitan','male',NULL,'inactive',NULL,'2017-11-28 15:19:17','2018-01-19 10:42:30'),(57319,1529,NULL,'<EMAIL>','aamusa','','Ademola','Amusa','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:30'),(57320,1529,NULL,'<EMAIL>','aokebiorun','','Adesanya','Okebiorun','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:30'),(57321,1529,NULL,'<EMAIL>','abadmus','','Adetola','Badmus','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:30'),(57322,1528,1,'<EMAIL>','aalaba','','Adetunji','Alaba','male','17080147','inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:30'),(57323,1529,NULL,'<EMAIL>','aezeoguine','','Akudo','Ezeoguine','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:30'),(57324,1529,NULL,'<EMAIL>','amokolo','','Alex','Mokolo','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:30'),(57325,1529,NULL,'<EMAIL>','aezurum','','Alexander','Ezurum','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:30'),(57326,1529,NULL,'<EMAIL>','aeke','','Amaechi','Eke','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57327,1529,NULL,'<EMAIL>','aamadiokoro','','Amaka','Amadiokoro','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57328,1529,NULL,'<EMAIL>','anwokeji','','Amaka','Nwokeji','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57329,1529,NULL,'<EMAIL>','<EMAIL>udu','','Ambrose','Okudu','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57330,1529,NULL,'<EMAIL>','auzoma','','Ambrose','Uzoma','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57331,1529,NULL,'<EMAIL>','achukwuma','','Amechi','Chukwuma','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57332,1529,NULL,'<EMAIL>','ausman','','<NAME>','Usman','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57333,1529,NULL,'<EMAIL>','aonokpise','','Amos','Onokpise','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57334,1529,NULL,'<EMAIL>','aorioma','','Andrew','Orioma','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57335,1529,NULL,'<EMAIL>','anwachukwu','','Angel','Nwachukwu','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57336,1529,NULL,'<EMAIL>','abassey','','Anthony','Bassey','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57337,1529,NULL,'<EMAIL>','abisong','','Anthony','Bisong','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57338,1529,NULL,'<EMAIL>','aiduh','','<NAME>','Iduh','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57339,1529,NULL,'<EMAIL>','auku','','Aselemi','Uku','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57340,1529,NULL,'<EMAIL>','anyakno-abasi','','Asuquo','Nyakno-Abasi','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57341,1529,NULL,'<EMAIL>','aadumein','','Austine','Adumein','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57342,1529,NULL,'<EMAIL>','amuhammad','','Auwal','Muhammad','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57343,1529,NULL,'<EMAIL>','ashote','','Ayobiyi','Shote','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57344,1529,NULL,'<EMAIL>','aakinola','','Ayokunle','Akinola','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57345,1529,NULL,'<EMAIL>','acookey','','Azunna','Cookey','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57346,1529,NULL,'<EMAIL>','bodumuyiwa','','Babafemi','Odumuyiwa','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57347,1529,NULL,'<EMAIL>','baml','','BAML','Gulfstream','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:41:33'),(57348,1529,NULL,'<EMAIL>','bolugbile','','Bankole','Olugbile','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57349,1529,9,'<EMAIL>','bchukwudulue','','Barnabas','Chukwudulue','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57350,1529,NULL,'<EMAIL>','behighibe','','Becky','Ehighibe','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57351,1529,NULL,'<EMAIL>','bibebuchi','','Ben','Ibebuchi','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57352,1529,NULL,'<EMAIL>','bonyekaonwu','','Benedict','Onyekaonwu','male',NULL,'inactive',NULL,'2017-11-28 15:19:18','2018-01-19 10:42:31'),(57353,1529,NULL,'<EMAIL>','boseji','','Benson','Oseji','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:31'),(57354,1529,NULL,'<EMAIL>','bebigbo','','Bibian','Ebigbo','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:31'),(57355,1529,6,'<EMAIL>','bids','','bids','bids','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:41:33'),(57356,1529,NULL,'<EMAIL>','cudeoha','','Caleb','Udeoha','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:31'),(57357,1529,NULL,'<EMAIL>','cakahomhen','','Celestine','Akahomhen','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:31'),(57358,1529,NULL,'<EMAIL>','cugwu','','Celestine','Ugwu','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:31'),(57359,1529,NULL,'<EMAIL>','cloader','','Celine','Loader','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:31'),(57360,1529,NULL,'<EMAIL>','coparaocha','','Charity','Oparaocha','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:31'),(57361,1529,NULL,'<EMAIL>','cezeoke','','Charles','Ezeoke','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:31'),(57362,1529,NULL,'<EMAIL>','cibiok','','Charles','Ibiok','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:31'),(57363,1529,NULL,'<EMAIL>','cndukwu','','Charles','Ndukwu','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:31'),(57364,1529,NULL,'<EMAIL>','canukam','','Chetachi','Anukam','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:31'),(57365,1529,NULL,'<EMAIL>','cakukwe','','Chibu','Akukwe','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:31'),(57366,1529,NULL,'<EMAIL>','cibewuike','','Chibueze','Ibewuike','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:31'),(57367,1529,NULL,'<EMAIL>','cnwanze','','Chidera','Nwanze','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:31'),(57368,1529,NULL,'<EMAIL>','cchukwueke','','Chidi','Chukwueke','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:31'),(57369,1529,NULL,'<EMAIL>','corazulike','','Chidi','Orazulike','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:31'),(57370,1529,NULL,'<EMAIL>','cwigwe','','Chidi','Wigwe','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:31'),(57371,1529,NULL,'<EMAIL>','cogu','','Chigozie','Ogu','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:32'),(57372,1529,NULL,'<EMAIL>','cmaduakor','','Chijioke','Maduakor','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:32'),(57373,1529,NULL,'<EMAIL>','cakah','','Chimsom','Akah','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:32'),(57374,1529,NULL,'<EMAIL>','cobiagazie','','Chinaza','Obiagazie','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:32'),(57375,1529,NULL,'<EMAIL>','cudeolisa','','Ch<NAME>','Udeolisa','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:32'),(57376,1529,NULL,'<EMAIL>','cnwajiobi','','Chinedu','Nwajiobi','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:32'),(57377,1529,NULL,'<EMAIL>','cnwosu','','Chinedu','Nwosu','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:32'),(57378,1529,NULL,'<EMAIL>','codumodu','','Chinedu','Odumodu','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:32'),(57379,1529,NULL,'<EMAIL>','cagbasiere','','Chinenye','Agbasiere','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:32'),(57380,1529,NULL,'<EMAIL>','cobi','','Chinenye','Obi','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:32'),(57381,1529,NULL,'<EMAIL>','cobiefule','','Chinenye','Obiefule','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:32'),(57382,1528,1,'<EMAIL>','cukaigwe','','Chinenye','Ukaigwe','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:32'),(57383,1529,NULL,'<EMAIL>','cojimba','','Chinonso','Ojimba','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:32'),(57384,1529,NULL,'<EMAIL>','cakpuru','','Chinwe','Akpuru','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:32'),(57385,1529,NULL,'<EMAIL>','cowualah','','Chinyere','Owualah','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:32'),(57386,1529,NULL,'<EMAIL>','cibekwe','','Chioma','Ibekwe','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:32'),(57387,1529,NULL,'<EMAIL>','cnjoku','','Chisom','Njoku','male',NULL,'inactive',NULL,'2017-11-28 15:19:19','2018-01-19 10:42:32'),(57388,1529,NULL,'<EMAIL>','cebokam','','Chizoba','Ebokam','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57389,1529,NULL,'<EMAIL>','ciheobi','','Christopher','Iheobi','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57390,1529,NULL,'<EMAIL>','cofoluwa','','Christopher','Ofoluwa','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57391,1529,NULL,'<EMAIL>','cokoye','','Christopher','Okoye','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57392,1529,NULL,'<EMAIL>','conwuakpa','','Chukwuebuka','Onwuakpa','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57393,1529,NULL,'<EMAIL>','ciwunwah','','Chukwuemeka','Iwunwah','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57394,1529,NULL,'<EMAIL>','cumechukwu','','Chukwuka','Umechukwu','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57395,1529,NULL,'<EMAIL>','cemelisi','','Chukwuma','Emelisi','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57396,1529,NULL,'<EMAIL>','cnwachukwu','','<NAME>','Nwachukwu','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57397,1529,NULL,'<EMAIL>','camadi','','Collins','Amadi','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57398,1529,NULL,'<EMAIL>','ciyalla','','Collins','Iyalla','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57399,1529,14,'<EMAIL>','corporateservices','','Corporate','Services','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:41:33'),(57400,1529,NULL,'<EMAIL>','diruobe','','Dada','Iruobe','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57401,1529,NULL,'<EMAIL>','dumukoro','','Daniel','Umukoro','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57402,1529,NULL,'<EMAIL>','dfatimilehin','','David','Fatimilehin','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57403,1529,NULL,'<EMAIL>','digbemo','','David','Igbemo','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57404,1529,NULL,'<EMAIL>','dokenwa','','David','Okenwa','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57405,1529,NULL,'<EMAIL>','dikpa','','DEBORAH AZA-ERE','IKPA','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57406,1529,NULL,'<EMAIL>','dumege','','Declan','Umege','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57407,1529,NULL,'<EMAIL>','dfianka','','Diamond','Fianka','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57408,1529,NULL,'<EMAIL>','dohwo','','Duke','Ohwo','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57409,1529,NULL,'<EMAIL>','dynamicserp','','Dynamics','ERP','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57410,1529,NULL,'<EMAIL>','eugboma','','Ebele','Ugboma','male',NULL,'inactive',NULL,'2017-11-28 15:19:20','2018-01-19 10:42:32'),(57411,1529,NULL,'<EMAIL>','eajayi','','Ebenezer','Ajayi','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57412,1529,NULL,'<EMAIL>','eagbasiere','','Ebuka','Agbasiere','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57413,1529,NULL,'<EMAIL>','eezie','','Edmund','Ezie','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57414,1529,NULL,'<EMAIL>','eoyewusi','','Efe','Oyewusi','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57415,1529,NULL,'<EMAIL>','edomingo','','Efize','Domingo','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57416,1526,1,'<EMAIL>','enta','$2y$10$hHQlGLbqlT75QQQHIAdxR.12CCoKf1HrGj7dRirD785HgdwNgctbm','Ekaete','Nta','female',NULL,'active',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57417,1529,NULL,'<EMAIL>','eutake','','Elfreda','Utake','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57418,1529,NULL,'<EMAIL>','eoko','','Elizabeth','Oko','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57419,1529,NULL,'<EMAIL>','eookerenta','','Emenike','Onyegeme-Okerenta','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57420,1529,NULL,'<EMAIL>','eejemai','','Emmanuel','Ejemai','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57421,1529,NULL,'<EMAIL>','ejaja','','Emmanuel','Jaja','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57422,1529,NULL,'<EMAIL>','embonu','','Emmanuel','Mbonu','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57423,1529,NULL,'<EMAIL>','eudofia','','Emmanuel','Udofia','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57424,1529,NULL,'<EMAIL>','eovedje','','Emojevwe','Ovedje','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57425,1529,NULL,'<EMAIL>','eebi','','Ernest','Ebi','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57426,1529,NULL,'<EMAIL>','eobikwere','','Ernest','Obikwere','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57427,1529,NULL,'<EMAIL>','eanenih','','Esosa','Anenih','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57428,1530,NULL,'<EMAIL>','ethics_compliance','','Ethics','Compliance','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57429,1529,NULL,'<EMAIL>','eagagwo','','Eugene','Agagwo','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57430,1529,NULL,'<EMAIL>','eokoli','','Eugene','Okoli','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57431,1529,NULL,'<EMAIL>','eokiemute','','Evovo','Okiemute','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57432,1529,NULL,'<EMAIL>','euzah','','Ewere','Uzah','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57433,1529,31,'<EMAIL>','fjabai','','Faith','Jabai','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57434,1529,NULL,'<EMAIL>','fotite','','Favour','Otite','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57435,1529,NULL,'<EMAIL>','fidehen','','Festus','Idehen','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57436,1529,NULL,'<EMAIL>','foshodin','','Festus','Oshodin','male',NULL,'inactive',NULL,'2017-11-28 15:19:21','2018-01-19 10:42:32'),(57437,1529,NULL,'<EMAIL>','fonichabor','','Fidel','Onichabor','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57438,1529,NULL,'<EMAIL>','ffolly','','Francis','Folly','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57439,1529,NULL,'<EMAIL>','fobaremi','','Francis','Obaremi','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57440,1529,NULL,'<EMAIL>','fobinatu','','Francisca','Obinatu','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57441,1529,NULL,'<EMAIL>','fazichoba','','Frank','Azichoba','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57442,1529,NULL,'<EMAIL>','fosifo','','Fred','Osifo','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57443,1529,NULL,'<EMAIL>','fetim','','Fredrick','Etim','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57444,1529,NULL,'<EMAIL>','fdoukade','','Fufeyin','Doukade','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57445,1529,NULL,'<EMAIL>','ffufeyin','','Funkakpo','Fufeyin','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57446,1529,NULL,'<EMAIL>','gnyam','','Garba','Nyam','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57447,1529,NULL,'<EMAIL>','gewhrudjakpo','','Genetik','Ewhrudjakpo','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57448,1529,NULL,'<EMAIL>','glencore','','Glencore','Gulfstream','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57449,1529,NULL,'<EMAIL>','gnsofor','','Gogo','Nsofor','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57450,1529,NULL,'<EMAIL>','gadio','','Goriola','Adio','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57451,1529,NULL,'<EMAIL>','genyinnaya','','Greg-Chido','Enyinnaya','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57452,1529,NULL,'<EMAIL>','gamanze','','Greg','Amanze','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57453,1529,NULL,'<EMAIL>','husman','','Hashim','Usman','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57454,1529,NULL,'<EMAIL>','horjiako','','Henrietta','Orjiako','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57455,1529,NULL,'<EMAIL>','hmmeje','','Henry','Mmeje','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57456,1529,NULL,'<EMAIL>','hokee','','Henry','Okee','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57457,1529,NULL,'<EMAIL>','heosl','','HEOSL','','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57458,1529,NULL,'<EMAIL>','hoil','','Heritage','Oil','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57459,1530,9,'<EMAIL>','hs<EMAIL>notifications','','HSSEQ','Notification','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57460,1529,NULL,'<EMAIL>','hanozie','','Humphrey','Anozie','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57461,1529,NULL,'<EMAIL>','iajieh','','Ifeanyi','Ajieh','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57462,1529,NULL,'<EMAIL>','iakonu','','Ifeanyi','Akonu','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57463,1529,NULL,'<EMAIL>','iakpuru','','Ifeanyi','Akpuru','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57464,1529,NULL,'<EMAIL>','iikueze','','Ifeanyi','Ikueze','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57465,1529,NULL,'<EMAIL>','ionwuneme','','Ifeanyi','Onwuneme','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57466,1529,NULL,'<EMAIL>','iuzoeto','','Ifeanyi','Uzoeto','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57467,1529,NULL,'<EMAIL>','iodiokpu','','Ifeanyichukwu','Odiokpu','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57468,1529,NULL,'<EMAIL>','ionyedi','','Ifeyinwa','Onyedi','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57469,1529,NULL,'<EMAIL>','iegbuna','','Ifunanya','Egbuna','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57470,1529,NULL,'<EMAIL>','iekwueme','','Ifunanya','Ekwueme','male',NULL,'inactive',NULL,'2017-11-28 15:19:22','2018-01-19 10:42:32'),(57471,1529,NULL,'<EMAIL>','iukah','','Iheanyichi','Ukah','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57472,1529,NULL,'<EMAIL>','iokonkwo-eje','','Ijeamaka','Okonkwo-Eje','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57473,1529,NULL,'<EMAIL>','ionyeador','','Ijeoma','Onyeador','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57474,1529,NULL,'<EMAIL>','iegboh','','Ike','Egboh','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57475,1529,NULL,'<EMAIL>','iokafor','','Ikemefuna','Okafor','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57476,1529,NULL,'<EMAIL>','intomchukwu','','Ikenna','Ntomchukwu','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57477,1529,NULL,'<EMAIL>','immuoh','','Innocent','Mmuoh','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57478,1529,NULL,'<EMAIL>','iobi','','Innocent','Obi','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57479,1529,NULL,'<EMAIL>','binubiwon','','Inubiwon','Blessing','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57480,1529,NULL,'<EMAIL>','pinyeke','','Inyeke','<NAME>','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57481,1529,NULL,'<EMAIL>','ilucky','','Irivike','Lucky','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57482,1529,NULL,'<EMAIL>','iolaleru','','Israel','Olaleru','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57483,1528,1,'<EMAIL>','itrequest','','IT','Request','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57484,1525,1,'<EMAIL>','itsupport','$2y$10$Anfrcsjk5pu4Ts1YwkhVq.lR2tG0RYcET.Vl8feex9Wh9HekaCBG2','IT','Support','male',NULL,'active','DmUfv8AYirb2YvFSfQCuRXSWAzQHTdcugE2HLIOewnlgndw6q4mUbCmWQBNY','2017-11-28 15:19:23','2018-01-19 10:41:33'),(57485,1529,NULL,'<EMAIL>','iwest','','Ivan','West','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57486,1529,NULL,'<EMAIL>','jparker','','Jason','Parker','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57487,1529,NULL,'<EMAIL>','joharisi','','Jeremiah','Oharisi','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57488,1529,NULL,'<EMAIL>','jdobaseki','','Jerry','Dawnson-Obaseki','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57489,1529,NULL,'<EMAIL>','janyigbo','','Joel','Anyigbo','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57490,1529,NULL,'<EMAIL>','jonu','','<NAME>','Onu','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57491,1529,NULL,'<EMAIL>','jikomi','','John','Ikomi','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57492,1528,1,'<EMAIL>','jikwuka','$2y$10$DvooAwsnHGZ7Arw1UDFRT.FXeqd6ui8ge3/rhWT7vMaiIBDwe9vnm','John','Ikwuka','male',NULL,'active','u8XN2Zk8KzZlpDNaIvJBwJ2tsWPPcw1p2NZOKFxv5nwVJZXeC5mEVD7Kc4Ur','2017-11-28 15:19:23','2018-01-19 10:42:32'),(57493,1529,NULL,'<EMAIL>','jokoisama','','Joseph','Okoisama','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57494,1529,NULL,'<EMAIL>','jibeh','','Juliet','Ibeh','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57495,1529,NULL,'<EMAIL>','jutomhin','','Julius','Utomhin','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57496,1529,NULL,'<EMAIL>','jkanife','','Justin','Kanife','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57497,1529,NULL,'<EMAIL>','kkamanu','','Kelechi','Kamanu','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57498,1529,NULL,'<EMAIL>','kilobi','','Kelechi','Ilobi','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57499,1529,NULL,'<EMAIL>','konuoha','','Kelechi','Onuoha','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57500,1529,NULL,'<EMAIL>','kmadueke','','<NAME>','Madueke','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57501,1529,NULL,'<EMAIL>','kosuzoka','','Kennedy','Osuzoka','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57502,1529,NULL,'<EMAIL>','kogwo','','Kenneth','Ogwo','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57503,1529,NULL,'<EMAIL>','kanegimo','','Kenneth','Anegimo','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57504,1529,NULL,'<EMAIL>','kezeoke','','Kenneth','Ezeoke','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57505,1529,9,'<EMAIL>','kokolie','','Kenneth','Okolie','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57506,1529,NULL,'<EMAIL>','kosuoha','','Kenneth','Osuoha','male',NULL,'inactive',NULL,'2017-11-28 15:19:23','2018-01-19 10:42:32'),(57507,1529,NULL,'<EMAIL>','kenegesi','','Kingsley','Enegesi','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57508,1529,NULL,'<EMAIL>','knkue-leyira','','Kirika','Nkue-Leyira','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57509,1529,NULL,'<EMAIL>','kacholonu','','Kodizie','Acholonu','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57510,1529,NULL,'<EMAIL>','kpoku-amanfo','','Kwabena','Poku-Amanfo','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57511,1529,NULL,'<EMAIL>','lfatayi-williams','','Lauretta','Fatayi-Williams','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57512,1529,NULL,'<EMAIL>','lovrawah','','Leonard','Ovrawah','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57513,1529,NULL,'<EMAIL>','lezidiegwu','','<NAME>','Ezidiegwu','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57514,1529,NULL,'<EMAIL>','lokorobasi','','Levi','Okorobasi','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57515,1529,NULL,'<EMAIL>','mezeogu','','Macaulay','Ezeogu','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57516,1529,NULL,'<EMAIL>','mokolie','','Marcel','Okolie','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57517,1529,NULL,'<EMAIL>','mfatayiwilliams','','Marie','FatayiWilliams','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57518,1529,NULL,'<EMAIL>','mediacomm','','Media','Comm','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57519,1529,NULL,'<EMAIL>','mokurude','','Michael','Okurude','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57520,1529,NULL,'<EMAIL>','moparah','','Miracle','Oparah','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57521,1529,NULL,'<EMAIL>','mhayatuden','','Mohamed','Hayatuden','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57522,1529,NULL,'<EMAIL>','moyenekan','','Mopelola','Oyenekan','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57523,1529,NULL,'<EMAIL>','mnwamba','','Morgan','Nwamba','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57524,1529,NULL,'<EMAIL>','molise','','Moses','Olise','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57525,1529,NULL,'<EMAIL>','msaadu','','Musa','Saadu','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57526,1529,NULL,'<EMAIL>','nlazson','','Nchekwube','Lazson','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57527,1529,NULL,'<EMAIL>','nunanka','','Nduka','Unanka','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57528,1529,NULL,'<EMAIL>','nokolo','','Nnadozie','Okolo','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57529,1529,NULL,'<EMAIL>','oekweozor','','Obi','Ekweozor','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57530,1529,NULL,'<EMAIL>','oonyemeh','','Obiajulu Nnaya','Onyemeh','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57531,1529,NULL,'<EMAIL>','oobiajulu','','Obieze','Obiajulu','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57532,1528,1,'<EMAIL>','oakahara','','Obinna','Akahara','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57533,1529,NULL,'<EMAIL>','oamadi','','Obinna','Amadi','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57534,1529,NULL,'OEze<EMAIL>','oezeagu','','Obinna','Ezeagu','male',NULL,'inactive',NULL,'2017-11-28 15:19:24','2018-01-19 10:42:32'),(57535,1529,NULL,'<EMAIL>','ouyaemesi','','Obumneme','Uyaemesi','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57536,1529,NULL,'<EMAIL>','fonovo','','Odinaka','Onovo','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57537,1529,NULL,'<EMAIL>','oumoren','','Odudu','Umoren','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57538,1529,NULL,'<EMAIL>','oeke','','Ogburu','Eke','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57539,1529,NULL,'<EMAIL>','ookolo','','Ogechukwu','Okolo','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57540,1529,NULL,'<EMAIL>','ongana','','Okechukwu Collins','Ngana','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57541,1529,NULL,'<EMAIL>','ohenry','','Okee','Henry','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57542,1529,NULL,'<EMAIL>','oekeocha','','Okey','Ekeocha','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57543,1529,NULL,'<EMAIL>','ookpon','','Okpon','Okpon','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57544,1529,NULL,'<EMAIL>','oodedeyi','','Olalekan','Odedeyi','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57545,1529,NULL,'<EMAIL>','oadeoye','','Olanike','Adeoye','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57546,1529,NULL,'<EMAIL>','olaniwunajayi','','OlaniwunAjayi','Gulfstream','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57547,1529,NULL,'<EMAIL>','oemeka-oboti','','Oluchi','Emeka-Oboti','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57548,1529,NULL,'<EMAIL>','ooyebanji','','Olusegun','Oyebanji','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57549,1529,NULL,'<EMAIL>','oolorunyomi','','Oluseyi','Olorunyomi','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57550,1529,NULL,'<EMAIL>','oolominu','','Oluwafemi','Olominu','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57551,1529,NULL,'<EMAIL>','oaluko','','Oluwakemi','Aluko','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57552,1529,NULL,'<EMAIL>','oajiborisha','','Oluwatope','Ajiborisha','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57553,1529,NULL,'<EMAIL>','oml30facilities','','OML30Facilities','','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:41:34'),(57554,1529,NULL,'<EMAIL>','obeckles','','Onyinyechi','Beckles','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57555,1529,NULL,'<EMAIL>','oikoko','','Ovie','Ikoko','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57556,1529,NULL,'<EMAIL>','oodukale','','Oye','Odukale','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57557,1531,6,'<EMAIL>','<EMAIL>om','','Park-View','Conference-Room','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57558,1529,NULL,'<EMAIL>','pndu','','Paul','Ndu','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57559,1529,NULL,'<EMAIL>','paigba','','Peter','Aigba','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57560,1529,NULL,'<EMAIL>','pmogbolu','','Peter','Mogbolu','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57561,1529,NULL,'<EMAIL>','pchukwu','','Phil','Chukwu','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57562,1529,NULL,'<EMAIL>','paisueni','','Philip','Aisueni','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57563,1529,NULL,'<EMAIL>','pisah','','Phoebe','Isah','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57564,1530,11,'<EMAIL>','prcommercial','','PR','Commercial','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:41:34'),(57565,1529,NULL,'<EMAIL>','penwere','','Priscilla','Enwere','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57566,1529,NULL,'<EMAIL>','pogbennia','','Promise Amarachi','Ogbennia','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57567,1529,NULL,'<EMAIL>','pwc','','PWC','Gulfstream','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:41:34'),(57568,1529,NULL,'<EMAIL>','oradharani','','Radharani','Okpu','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57569,1529,NULL,'<EMAIL>','rakaeze','','Ralph','Akaeze','male',NULL,'inactive',NULL,'2017-11-28 15:19:25','2018-01-19 10:42:32'),(57570,1529,NULL,'<EMAIL>','ruruvwewhu','','Ramzey','Uruvwewhu','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:42:32'),(57571,1529,NULL,'<EMAIL>','rolutola','','Raphael','Olutola','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:42:32'),(57572,1529,NULL,'<EMAIL>','ribe','','Remigius','Ibe','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:42:32'),(57573,1529,NULL,'<EMAIL>','rizibili','','Ronald','Izibili','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:42:32'),(57574,1529,NULL,'<EMAIL>','rlawuyi','','Rotimi','Lawuyi','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:42:32'),(57575,1529,NULL,'<EMAIL>','rmejule','','Rotimi','Mejule','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:42:32'),(57576,1530,9,'<EMAIL>','safety<EMAIL>','','SafetyAlerts','LFI','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:42:32'),(57577,1530,15,'<EMAIL>','salviccorporateaffairs','','Corporate','Affairs','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:41:34'),(57578,1529,NULL,'<EMAIL>','salvicdd','','Salvic','DD','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:41:34'),(57579,1529,NULL,'<EMAIL>','salvicdd-hr','','Salvic DD','HR','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:42:32'),(57580,1529,NULL,'<EMAIL>','salvicdd-<EMAIL>','','Salvic DD','LegalOA','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:42:32'),(57581,1529,NULL,'<EMAIL>','salvicdd-legalws','','Salvic DD','LegalWS','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:42:32'),(57582,1529,NULL,'<EMAIL>','salvicdd-pwc','','Salvic','DD PWC','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:42:32'),(57583,1529,NULL,'<EMAIL>','salvicdd-technical','','Salvic DD','Technical','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:42:32'),(57584,1530,2,'<EMAIL>','hr','','Human','Resources','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:41:34'),(57585,1529,NULL,'<EMAIL>','support','','Charles','Igweze','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:41:34'),(57586,1529,NULL,'<EMAIL>','sprinter','','Salvic','Printer','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:42:32'),(57587,1529,NULL,'<EMAIL>','sprinters','','Salvic','Printers','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:42:32'),(57588,1530,9,'<EMAIL>','security','','Security','Hsseq','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:41:34'),(57589,1529,NULL,'<EMAIL>','sanimashaun','','Samad','Animashaun','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:42:32'),(57590,1529,NULL,'<EMAIL>','sagada','','Sampson','Agada','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:42:32'),(57591,1529,NULL,'<EMAIL>','saladekomo','','Segun','Aladekomo','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:42:32'),(57592,1529,NULL,'<EMAIL>','sharepointadmin','','SharePoint','Admin','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:42:32'),(57593,1529,NULL,'<EMAIL>','shell','','Shell','Gulfstream','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:42:32'),(57594,1529,NULL,'<EMAIL>','smajithia','','Shree','Majithia','male',NULL,'inactive',NULL,'2017-11-28 15:19:26','2018-01-19 10:42:32'),(57595,1529,NULL,'<EMAIL>','sokorieh','','Silas','Okorieh','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:32'),(57596,1529,NULL,'<EMAIL>','schilaka','','Simeon','Chilaka','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:32'),(57597,1529,NULL,'<EMAIL>','sukpaka','','Simon','Ukpaka','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:32'),(57598,1529,NULL,'<EMAIL>','sadobor','','Solomon','Adobor','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:32'),(57599,1529,NULL,'<EMAIL>','saliu','','Solomon','Aliu','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:32'),(57600,1529,NULL,'<EMAIL>','sejowhomu','','Solomon','Arharhire','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:32'),(57601,1529,NULL,'<EMAIL>','smamza','','Solomon','Mamza','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:32'),(57602,1529,NULL,'<EMAIL>','sbanye','','Sophie','Banye','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:32'),(57603,1528,1,'<EMAIL>','speter','','Stanley','Peter','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:32'),(57604,1529,NULL,'<EMAIL>','sibrighademor','','Stephen','Ibrighademor','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:32'),(57605,1529,NULL,'<EMAIL>','skoko','','Stephen','Koko','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:32'),(57606,1529,NULL,'<EMAIL>','shaliru','','Suleiman','Haliru','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57607,1529,NULL,'<EMAIL>','seghuvwakpor','','Sunday','Eghuvwakpor','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57608,1529,NULL,'<EMAIL>','saghanwa','','Sunny','Aghanwa','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57609,1529,NULL,'<EMAIL>','tekiyor-katimi','','Theophilus','Ekiyor-Katimi','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57610,1529,NULL,'<EMAIL>','tigani','','Theophilus','Igani','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57611,1529,NULL,'<EMAIL>','tabidde','','Timothy','Abbide','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57612,1529,NULL,'<EMAIL>','tomopo','','Titilope','Omopo','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57613,1529,NULL,'<EMAIL>','techesi','','Tochukwu','Echesi','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57614,1529,NULL,'<EMAIL>','tikpeama','','Tochukwu','Ikpeama','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57615,1529,NULL,'<EMAIL>','torakwue','','Tochukwu','Orakwue','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57616,1529,NULL,'<EMAIL>','tjohnny','','Tonbebe','Johnny','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57617,1529,NULL,'<EMAIL>','uafam-anadu','','Uche','Afam-Anadu','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57618,1529,NULL,'<EMAIL>','uattah','','Uche','Attah','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57619,1529,NULL,'<EMAIL>','uanajemba','','Uche','Lotanna-Anajemba','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57620,1529,NULL,'<EMAIL>','ukalu','','Uchechi Grace','Kalu','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57621,1529,NULL,'<EMAIL>','unwankwo','','Uchechi','Nwankwo','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57622,1529,NULL,'<EMAIL>','uekemezie','','Uchechukwu','Ekemezie','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57623,1529,NULL,'<EMAIL>','uorekyeh','','Uchenna','Orekyeh','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57624,1529,NULL,'<EMAIL>','uumoh','','Uduak','Umoh','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57625,1529,NULL,'<EMAIL>','unwokolo','','Ugochi Julia','Nwokolo','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57626,1529,NULL,'<EMAIL>','uyahaya','','Umar','Yahaya','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57627,1529,NULL,'<EMAIL>','uhashim','','Usman','Hashim','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57628,1529,NULL,'<EMAIL>','uokoroafor','','Uzoma','Okoroafor','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57629,1529,NULL,'<EMAIL>','vnsofor','','Vanessa','Nsofor','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57630,1529,NULL,'<EMAIL>','vonwughalu','','Vanessa','Onwughalu','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57631,1529,NULL,'<EMAIL>','vkii','','Victor','Kii','male',NULL,'inactive',NULL,'2017-11-28 15:19:27','2018-01-19 10:42:33'),(57632,1529,NULL,'<EMAIL>','vokonji','','Victor','Okonji','male',NULL,'inactive',NULL,'2017-11-28 15:19:28','2018-01-19 10:42:33'),(57633,1529,NULL,'<EMAIL>','vitol','','VITOL','Gulfstream','male',NULL,'inactive',NULL,'2017-11-28 15:19:28','2018-01-19 10:42:33'),(57634,1529,NULL,'<EMAIL>','wonyeanya','','Wealth','Onyeanya','male',NULL,'inactive',NULL,'2017-11-28 15:19:28','2018-01-19 10:42:33'),(57635,1529,NULL,'<EMAIL>','winston','','Winston','Gulfstream','male',NULL,'inactive',NULL,'2017-11-28 15:19:28','2018-01-19 10:42:33'),(57636,1529,NULL,'<EMAIL>','wwobisike','','Wobo','Wobisike','male',NULL,'inactive',NULL,'2017-11-28 15:19:28','2018-01-19 10:42:33'),(57637,1529,NULL,'<EMAIL>','yomorogbe','','Yinka','Omorogbe','male',NULL,'inactive',NULL,'2017-11-28 15:19:28','2018-01-19 10:42:33'),(57638,1529,NULL,'<EMAIL>','yamaefule','','Yolanda','Amaefule','male',NULL,'inactive',NULL,'2017-11-28 15:19:28','2018-01-19 10:42:33'),(57642,1531,7,'<EMAIL>','abbey',NULL,'Abbey','Court','male',NULL,'inactive',NULL,'2017-12-12 10:19:00','2018-01-19 10:41:34'),(57643,1530,1,'<EMAIL>','itunit',NULL,'IT','Unit','male',NULL,'inactive',NULL,'2017-12-19 09:48:52','2018-01-19 10:41:34'),(57644,1529,32,'<EMAIL>','pmembu',NULL,'Paul','Membu','male','18010300','inactive',NULL,'2018-01-10 16:35:55','2018-01-19 10:41:34'); /*!40000 ALTER TABLE `users` 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 2018-01-25 12:20:59
SELECT (yr+99) / 100 AS century FROM years;
select * from information_schema.tables where table_name = $1
USE Geography SELECT c.CountryCode, m.MountainRange,p.PeakName,p.Elevation FROM Countries AS c JOIN MountainsCountries AS mc ON mc.CountryCode = c.CountryCode JOIN Mountains AS m ON m.Id = mc.MountainId JOIN Peaks AS p ON p.MountainId = mc.MountainId WHERE c.CountryCode = 'BG' AND p.Elevation > 2835 ORDER BY p.Elevation DESC SELECT c.CountryCode,COUNT(c.CountryCode) AS MountainRanges FROM Countries AS c JOIN MountainsCountries AS mc ON mc.CountryCode = c.CountryCode JOIN Mountains AS m ON m.Id = mc.MountainId WHERE c.CountryCode IN ('US','RU', 'BG' ) GROUP BY c.CountryCode SELECT TOP(5) c.CountryName,r.RiverName FROM Countries AS c LEFT JOIN CountriesRivers AS cr ON cr.CountryCode = c.CountryCode LEFT JOIN Rivers AS r ON r.Id = cr.RiverId WHERE c.ContinentCode = 'AF' ORDER BY c.CountryName SELECT ContinentCode,CurrencyCode,CurrencyCount FROM ( SELECT *, DENSE_RANK() OVER (PARTITION BY ContinentCode ORDER BY CurrencyCount DESC) AS [Currency Rank] FROM ( SELECT ContinentCode,CurrencyCode, COUNT(*) AS [CurrencyCount] FROM Countries GROUP BY ContinentCode,CurrencyCode ) AS [CurrencyCountQuery] WHERE CurrencyCount > 1 ) AS [CurrencyRankingQuery] WHERE [Currency Rank] = 1 SELECT COUNT(*) FROM Countries AS c LEFT JOIN MountainsCountries AS mc ON mc.CountryCode=c.CountryCode LEFT JOIN Mountains AS m ON m.Id = mc.MountainId WHERE m.MountainRange IS NULL SELECT TOP (5) c.CountryName,MAX(Elevation) AS HighestPeakElevation, MAX([Length]) AS LongestRiverLength FROM Countries AS c LEFT JOIN MountainsCountries AS mc ON mc.CountryCode=c.CountryCode LEFT JOIN Mountains AS m ON m.Id = mc.MountainId LEFT JOIN Peaks AS p ON p.MountainId=m.Id LEFT JOIN CountriesRivers AS cr ON cr.CountryCode = c.CountryCode LEFT JOIN Rivers AS r ON r.Id = cr.RiverId GROUP BY c.CountryName ORDER BY HighestPeakElevation DESC,LongestRiverLength DESC, c.CountryName ASC SELECT TOP(5) Country, CASE WHEN PeakName IS NULL THEN '(no highest peak)' ELSE PeakName END AS [Highest Peak Name], CASE WHEN Elevation IS NULL THEN '0' ELSE Elevation END AS [Highest Peak Elevation], CASE WHEN MountainRange IS NULL THEN '(no mountain)' ELSE MountainRange END AS [Mountain] FROM ( SELECT *, DENSE_RANK () OVER(PARTITION BY [Country] ORDER BY Elevation DESC) AS [Rank] FROM( SELECT c.CountryName AS [Country],p.PeakName,p.Elevation,m.MountainRange FROM Countries AS c LEFT JOIN MountainsCountries AS mc ON mc.CountryCode=c.CountryCode LEFT JOIN Mountains AS m ON m.Id = mc.MountainId LEFT JOIN Peaks AS p ON p.MountainId=m.Id ) AS Info ) AS [PeakRank] WHERE [Rank] = 1
<filename>db/harrypotterseed.sql -- USE lfoz4j8nwop9wi8l; -- ===================================================================================== -- QUIZ #6 Harry Potter QUIZ -- Questions: 6 -- ===================================================================================== INSERT INTO lfoz4j8nwop9wi8l.quizzes(quiz_name, quiz_category, image_tile,createdAt, updatedAt,userId) VALUES ("Harry Potter Quiz", "tv show", "https://academichelp.net/wp-content/uploads/2015/10/harry-potter-poster.jpg", now(),now(),1); -- Questions INSERT INTO lfoz4j8nwop9wi8l.questions(question,createdAt, updatedAt,quizId) VALUES("Which Harry Potter chracter is your favorite?",now(), now(),6); INSERT INTO lfoz4j8nwop9wi8l.questions(question,createdAt, updatedAt,quizId) VALUES("Which house would you want to be in?",now(), now(),6); INSERT INTO lfoz4j8nwop9wi8l.questions(question,createdAt, updatedAt,quizId) VALUES("Who is your favorite Hogwarts professor?",now(), now(),6); INSERT INTO lfoz4j8nwop9wi8l.questions(question,createdAt, updatedAt,quizId) VALUES("Which Harry Potter animal is your favorite?",now(), now(),6); INSERT INTO lfoz4j8nwop9wi8l.questions(question,createdAt, updatedAt,quizId) VALUES("Which Harry Potter book is your favorite?",now(), now(),6); INSERT INTO lfoz4j8nwop9wi8l.questions(question,createdAt, updatedAt,quizId) VALUES("Who is your favorite Weasley family member?",now(), now(),6); INSERT INTO lfoz4j8nwop9wi8l.personalities(personality_type, personality_description,createdAt,updatedAt,archetypeId) VALUES("H<NAME>ter","You are serious, logical and always stop and think before you act. Your character type is Harry Potter!",now(),now(),8); INSERT INTO lfoz4j8nwop9wi8l.personalities(personality_type, personality_description,createdAt,updatedAt,archetypeId) VALUES("<NAME>", "You are warm hearted, cooperative and ready to take down anyone that crosses your path or your friends path. Your character type is <NAME>!",now(),now(),1); INSERT INTO lfoz4j8nwop9wi8l.personalities(personality_type, personality_description,createdAt,updatedAt,archetypeId) VALUES("<NAME>","You are forceful, well informed and always take lead in every aspect of your life. Your character type is <NAME>!",now(),now(),5); INSERT INTO lfoz4j8nwop9wi8l.personalities(personality_type, personality_description,createdAt,updatedAt,archetypeId) VALUES("<NAME>","You are realistic, matter-of-fact and you're always two steps of everyone else. Your character type is <NAME>!",now(),now(),10); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("<NAME>",1,now(),now(),39,21); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("<NAME>",1,now(),now(),39,22); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("<NAME>",1,now(),now(),39,23); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("<NAME>",1,now(),now(),39,24); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("Hufflepuff",1,now(),now(),34,24); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("Slytherin",1,now(),now(),34,23); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("Ravenclaw",1,now(),now(),34,22); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("Gryffindor",1,now(),now(),34,21); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("Professor McGonagall (Transfiguration And Headmistress)",1,now(),now(),35,21); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("<NAME> (Flying Instructor)",1,now(),now(),35,22); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("<NAME> (Care Of Magical Creatures)",1,now(),now(),35,24); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("Professor Dumbledore (Defence Against The Dark Arts, Transfiguration, Headmaster)",1,now(),now(),35,23); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("Fluffy 3 Headed Dog",1,now(),now(),36,22); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("The Basilisk (Snake)",1,now(),now(),36,21); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("Hippogriff (A Hybrid, Half-Horse-Half-Eagle Creature)",1,now(),now(),36,23); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("Hedwig (Snowy Owl)",1,now(),now(),36,24); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("<NAME>ter and the Philosopher's Stone",1,now(),now(),37,23); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("<NAME> and the Chamber of Secrets",1,now(),now(),37,24); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("<NAME> and the Prisoner of Azkaban ",1,now(),now(),37,22); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("Harry Potter and the Goblet of Fire",1,now(),now(),37,21); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("<NAME>",1,now(),now(),38,21); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("<NAME>",1,now(),now(),38,24); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("<NAME>",1,now(),now(),38,22); INSERT INTO lfoz4j8nwop9wi8l.answers(answer,points,createdAt,updatedAt,questionId,personalityId) VALUES("<NAME>",1,now(),now(),38,23);
<filename>db/schema.sql -- instantiate databsase DROP DATABASE IF EXISTS techblog_db; CREATE DATABASE techblog_db;
<gh_stars>10-100 -- file:rolenames.sql ln:437 expect:true REVOKE ALL PRIVILEGES ON FUNCTION testagg9(int2) FROM "none"
SET MODE PostgreSQL; CREATE TABLE IF NOT EXISTS restaurants ( id int PRIMARY KEY auto_increment, name VARCHAR, address VARCHAR, zipcode VARCHAR, phone VARCHAR, website VARCHAR, email VARCHAR, image VARCHAR, ); CREATE TABLE IF NOT EXISTS foodtypes ( id int PRIMARY KEY auto_increment, name VARCHAR ); CREATE TABLE IF NOT EXISTS reviews ( id int PRIMARY KEY auto_increment, writtenby VARCHAR, rating VARCHAR, createdat TIMESTAMP, restaurantid INTEGER, content VARCHAR ); CREATE TABLE IF NOT EXISTS restaurants_foodtypes ( id int PRIMARY KEY auto_increment, restaurantid INTEGER, foodtypeid INTEGER );
<filename>dvd_rental_store/tables/drs_country.sql<gh_stars>1-10 prompt - table drs_country create table drs_country ( country_id integer generated by default on null as identity, country varchar2(50 char) not null , last_update date , -- primary key (country_id) );
<reponame>BlazeWasHere/SYN-Explorer-API SELECT lost_txs.* FROM lost_txs INNER JOIN txs ON txs.pending = true AND txs.kappa = lost_txs.kappa;
<reponame>Gigelf-evo-X/evo-X DELETE FROM script_texts WHERE entry BETWEEN -1000500 AND -1000499; INSERT INTO script_texts (entry,content_default,sound,type,language,emote,comment) VALUES (-1000499,'Puny $r wanna fight %s? Me beat you! Me boss here!',0,0,1,0,'morokk SAY_MOR_CHALLENGE'), (-1000500,'Me scared! Me run now!',0,1,0,0,'morokk SAY_MOR_SCARED'); DELETE FROM script_waypoint WHERE entry=4500; INSERT INTO script_waypoint VALUES (4500, 0, -3125.597168, -2885.673828, 34.731, 2500, ''), (4500, 1, -3120.257080, -2877.830322, 34.917, 0, ''), (4500, 2, -3116.487305, -2850.670410, 34.869, 0, ''), (4500, 3, -3093.474854, -2819.189697, 34.432, 0, ''), (4500, 4, -3104.726318, -2802.020996, 33.954, 0, ''), (4500, 5, -3105.906006, -2780.234375, 34.469, 0, ''), (4500, 6, -3116.080811, -2757.902588, 34.734, 0, ''), (4500, 7, -3125.234375, -2733.960205, 33.189, 0, '');
-- DB/NPC: Fix all startup erros with creature tamplate less UNIT_NPC_FLAG_SPELLCLICK this need a little bir more work -- NPC: Defias Blackguard Can't have IA on hero mode (http://www.wowhead.com/npc=636) UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`='636'; UPDATE `creature_template` SET `AIName`='' WHERE `entry`='42698'; -- NPC: Shadowfang Ragetooth Can't have IA on hero mode (http://www.wowhead.com/npc=3859) UPDATE `creature_template` SET `AIName`='' WHERE `entry`='63859'; -- NPC: Atal'ai Totem Can't Wrong speel ID (http://www.wowhead.com/npc=8510) UPDATE `creature_template` SET `spell1`='12504' WHERE `entry`='8510'; -- NPC: Tainted Earthgrab Totem Wrong spell ID (http://www.wowhead.com/npc=18176) UPDATE `creature_template` SET `spell1`='31983' WHERE `entry`='18176'; -- NPC: Corrupted Nova Totem Wrong spell ID (http://www.wowhead.com/npc=18179) UPDATE `creature_template` SET `spell1`='33132' WHERE `entry`='18179'; -- NPC: Removed some wrong flags extra UPDATE `creature_template` SET `flags_extra`='0' WHERE `entry` IN ('30575','30593','33438'); -- NPC: Siege Engine Correct unit on hero mode (http://www.wowhead.com/npc=34776) UPDATE `creature_template` SET `unit_class`='4' WHERE `entry`='35431'; -- NPC: Catapult Correct unit on hero mode (http://www.wowhead.com/npc=34793) UPDATE `creature_template` SET `unit_class`='4' WHERE `entry`='35413'; -- NPC: Siege Engine unit on hero mode (http://www.wowhead.com/npc=35069) UPDATE `creature_template` SET `unit_class`='4' WHERE `entry`='35433'; -- NPC: Siege Turret unit on hero mode (http://www.wowhead.com/npc=36355) UPDATE `creature_template` SET `unit_class`='4' WHERE `entry`='36357'; -- NPC: Charscale Invoker unit on hero mode (http://www.wowhead.com/npc=40417) UPDATE `creature_template` SET `unit_class`='2' WHERE `entry`='40417'; -- NPC: Gwen Armstead Equiptemplate taking from official (http://www.wowhead.com/npc=34936) UPDATE `creature_template` SET `equipment_id`='51401' WHERE `entry`='34936'; DELETE FROM `creature_equip_template` WHERE `entry`='51401'; INSERT INTO `creature_equip_template` (`entry`, `equipentry1`, `equipentry2`, `equipentry3`) VALUES ('51401','3364','0','0'); -- NPC: Captain Arnath Correct eqquipment (http://www.wowhead.com/npc=37491) UPDATE `creature_template` SET `equipment_id`='0' WHERE `entry` IN ('37491','38349'); -- NPC: Captain Brandon Correct eqquipment (http://www.wowhead.com/npc=37493) UPDATE `creature_template` SET `equipment_id`='0' WHERE `entry` IN ('37493','38350'); -- NPC: Captain Grondel Correct eqquipment (http://www.wowhead.com/npc=37494) UPDATE `creature_template` SET `equipment_id`='0' WHERE `entry` IN ('37494','38351'); -- NPC: Captain Rupert Correct eqquipment (http://www.wowhead.com/npc=37495) UPDATE `creature_template` SET `equipment_id`='0' WHERE `entry`IN ('37495','38352'); -- NPC: Onyx Flamecaller eqquipment (http://www.wowhead.com/npc=39814) UPDATE `creature_template` SET `equipment_id`='0' WHERE `entry`IN ('39814'); -- NPC: Baltharus the Warborn Equipment (http://www.wowhead.com/npc=39751) DELETE FROM `creature_equip_template` WHERE (`entry`=2467); INSERT INTO `creature_equip_template` (`entry`, `equipentry1`, `equipentry2`, `equipentry3`) VALUES (2467, 28365, 0, 0); -- NPC: Charscale Invoker Equipment (http://www.wowhead.com/npc=40417) DELETE FROM `creature_equip_template` WHERE (`entry`=2469); INSERT INTO `creature_equip_template` (`entry`, `equipentry1`, `equipentry2`, `equipentry3`) VALUES (2469, 43114, 0, 0); -- NPC: Charscale Elite Equipment (http://www.wowhead.com/npc=40421) DELETE FROM `creature_equip_template` WHERE (`entry`=2471); INSERT INTO `creature_equip_template` (`entry`, `equipentry1`, `equipentry2`, `equipentry3`) VALUES (2471, 49737, 49737, 0); -- NPC: Charscale Commander Equipment (http://www.wowhead.com/npc=40421) DELETE FROM `creature_equip_template` WHERE (`entry`=2472); INSERT INTO `creature_equip_template` (`entry`, `equipentry1`, `equipentry2`, `equipentry3`) VALUES (2472, 40608, 0, 0); -- NPC: Lord Walden Wrong Flag is a quest giver (http://www.wowhead.com/npc=45879) UPDATE `creature_template` SET `npcflag`='3' WHERE `entry` IN (45879,49711); -- NPC: Glubtok Wrong Flag is a quest giver (http://www.wowhead.com/npc=47162) UPDATE `creature_template` SET `npcflag`='3' WHERE `entry` IN (47162,48936); -- NPC: Deathstalker Commander Belmont is a quest giver (http://www.wowhead.com/npc=47293) UPDATE `creature_template` SET `npcflag`='3' WHERE `entry` IN ('47293','45557'); -- NPC: "Captain" Cookie <Defias Kingpin?> is a quest giver (http://www.wowhead.com/npc=47739) UPDATE `creature_template` SET `npcflag`='3' WHERE `entry` IN ('47739','48944'); -- NPC: Finkle Einhorn Only is a quest giver (http://www.wowhead.com/npc=49476) UPDATE `creature_template` SET `npcflag`='3' WHERE `entry` IN ('49476','49477'); -- NPC: Sand-Husk Scarab correct habit type (http://www.wowhead.com/npc=51674) UPDATE `creature_template` SET `InhabitType`='1' WHERE `entry` IN ('51674'); -- NPC: Nether Scion Wrong class (http://www.wowhead.com/npc=44645) UPDATE `creature_template` SET `unit_class`='1' WHERE `entry` IN (44645,46212,46213,46214); -- NPC: Slate Dragon Wrong class (http://www.wowhead.com/npc=44652) UPDATE `creature_template` SET `unit_class`='1' WHERE `entry` IN (44652,46215,46216,46217); -- NPC: Time Warden Wrong class (http://www.wowhead.com/npc=44797) UPDATE `creature_template` SET `unit_class`='1' WHERE `entry` IN (44797,46221,46222,46223); -- NPC: Erunak Stonespeaker Is a quest giver (http://www.wowhead.com/npc=40825) UPDATE `creature_template` SET `npcflag`='3' WHERE `entry` IN ('40825','49072'); -- Helix Gearbreaker Fix wrong npflag (http://www.wowhead.com/npc=47296) UPDATE `creature_template` SET `npcflag`='0' WHERE `entry` IN ('47296','48940'); -- NPC: <NAME> Deleting this NPC this NPC have a wront entry and exist on db with correct one (www.wowhead.com/npc=49930) DELETE FROM creature_template WHERE entry='49930'; -- NPC: <NAME> Deleting this NPC this NPC have a wront entry and exist on db with correct one (www.wowhead.com/npc=51398) DELETE FROM creature_template WHERE entry='51398'; -- NPC: Carrion Bird Correct spell fot this NPC (http://www.wowhead.com/npc=51760) UPDATE `creature_template` SET `spell1`='55079' WHERE `entry`='51760'; -- NPC: Ramkahen Guardian Correct model fot this NPC (http://www.wowhead.com/npc=51776) UPDATE `creature_template` SET `modelid1`='35929', `modelid2`='35929', `faction_A`='2331', `faction_H`='2331' WHERE `entry`='51776'; -- NPC: <NAME> Deelting from template this npc is for 4.2 clients (http://www.wowhead.com/npc=52467) DELETE FROM `creature_template` WHERE `entry`='52467'; -- NPC: Charred Flamewaker Correct spell fot this NPC (http://www.wowhead.com/npc=52791) UPDATE `creature_template` SET `spell1`='79846',`spell2`='32707',`spell3`='0',`spell4`='0' WHERE `entry`='52791'; -- NPC: <NAME> Deelting from template this npc is for 4.2 clients (http://www.wowhead.com/npc=52844) DELETE FROM `creature_template` WHERE `entry`='52844'; -- NPC: Eulinda <Reagents> Deleting from template this npc is for 4.1 clients (http://www.wowhead.com/npc=52914) DELETE FROM `creature_template` WHERE `entry`='52914'; -- NPC: Norkani Deleting from template this npc is for 4.1 clients (http://www.wowhead.com/npc=52943) DELETE FROM `creature_template` WHERE `entry`='52943'; -- NPC: Grom'gol Grunt Deleting from template this npc is for 4.1 clients (http://www.wowhead.com/npc=53000) DELETE FROM `creature_template` WHERE `entry`='53000'; -- NPC: Seething Pyrelord Deleting from template this npc is for 4.2 clients (http://www.wowhead.com/npc=52300) DELETE FROM `creature_template` WHERE `entry`='52300'; -- NPC: Seething Pyrelord Deleting from template this npc is for 4.2 clients (http://www.wowhead.com/npc=52300) DELETE FROM `creature_template` WHERE `entry`='3680502'; -- NPC: General Zarithrian Fix euip template (http://www.wowhead.com/npc=39746) DELETE FROM `creature_equip_template` WHERE (`entry`=2466); INSERT INTO `creature_equip_template` (`entry`, `equipentry1`, `equipentry2`, `equipentry3`) VALUES (2466, 43111, 0, 0); -- NPC: Mutated Abomination Miss a difficulty DELETE FROM `creature_template` WHERE `entry`='38789'; INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction_A`, `faction_H`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `mindmg`, `maxdmg`, `dmgschool`, `attackpower`, `dmg_multiplier`, `baseattacktime`, `rangeattacktime`, `unit_class`, `unit_flags`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `minrangedmg`, `maxrangedmg`, `rangedattackpower`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `questItem1`, `questItem2`, `questItem3`, `questItem4`, `questItem5`, `questItem6`, `movementId`, `RegenHealth`, `equipment_id`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `WDBVerified`) VALUES (38789, 0, 0, 0, 0, 0, 31008, 0, 0, 0, 'Mutated Abomination (2)', '', '', 0, 82, 82, 2, 14, 14, 0, 1, 1.14286, 1, 1, 452, 678, 0, 169, 2, 2000, 2000, 1, 0, 8, 0, 0, 0, 0, 0, 362, 542, 135, 6, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72527, 72457, 70542, 0, 0, 71516, 0, 0, 0, 591, 0, 0, '', 0, 3, 35, 1, 1, 0, 0, 0, 0, 0, 0, 0, 170, 0, 0, 8388624, 0, '', 12340); -- NPC: Deathspeaker Servant Miss a difficulty DELETE FROM `creature_template` WHERE `entry`='3680502'; INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction_A`, `faction_H`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `mindmg`, `maxdmg`, `dmgschool`, `attackpower`, `dmg_multiplier`, `baseattacktime`, `rangeattacktime`, `unit_class`, `unit_flags`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `minrangedmg`, `maxrangedmg`, `rangedattackpower`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `questItem1`, `questItem2`, `questItem3`, `questItem4`, `questItem5`, `questItem6`, `movementId`, `RegenHealth`, `equipment_id`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `WDBVerified`) VALUES (3680502, 0, 0, 0, 0, 0, 30323, 30360, 0, 0, 'Deathspeaker Servant (2)', 'Cult of the Damned', '', 0, 82, 82, 2, 16, 16, 0, 3.2, 1.71429, 1, 1, 362, 520, 0, 326, 7.5, 0, 0, 8, 32832, 8, 0, 0, 0, 0, 0, 360, 523, 79, 7, 72, 3680502, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 1, 3, 45, 10, 1, 0, 0, 0, 0, 0, 0, 0, 172, 1, 10050, 613097436, 0, '', 1); -- Risen Deathspeaker Servant set correct difficulties (http://www.wowhead.com/npc=36844) UPDATE `creature_template` SET `difficulty_entry_1`='38077', `difficulty_entry_2`='3684402', `difficulty_entry_3`='3684403' WHERE `entry`='36844'; UPDATE `creature_template` SET `unit_class`='8' WHERE `entry` IN ('36844','38077','3684402','3684403'); -- Memory of Heigan set correct difficulties (http://www.wowhead.com/npc=35049) UPDATE `creature_template` SET `difficulty_entry_1`='0' WHERE `entry`='35049'; -- NPC: Deathspeaker Servant Miss a difficulty DELETE FROM `creature_template` WHERE `entry`='38789'; INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction_A`, `faction_H`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `mindmg`, `maxdmg`, `dmgschool`, `attackpower`, `dmg_multiplier`, `baseattacktime`, `rangeattacktime`, `unit_class`, `unit_flags`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `minrangedmg`, `maxrangedmg`, `rangedattackpower`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `Health_mod`, `Mana_mod`, `Armor_mod`, `RacialLeader`, `questItem1`, `questItem2`, `questItem3`, `questItem4`, `questItem5`, `questItem6`, `movementId`, `RegenHealth`, `equipment_id`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `WDBVerified`) VALUES (38789, 0, 0, 0, 0, 0, 31008, 0, 0, 0, 'Mutated Abomination (2)', '', '', 0, 80, 80, 0, 35, 35, 0, 1, 1.14286, 1, 1, 422, 586, 0, 642, 7.5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 345, 509, 103, 6, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72527, 72457, 70542, 0, 0, 71516, 0, 0, 0, 591, 0, 0, '', 0, 3, 35, 1, 1, 0, 0, 0, 0, 0, 0, 0, 170, 1, 0, 0, 0, '', 12340);
<reponame>ozwillo/dbt-profiler<gh_stars>0 {# #37 Profiling a table whose column are integer, date, string in this order raised the following error : ERROR: UNION types text and numeric cannot be matched LINE 60: avg("int_after_date_after_string") as avg, Appropriately casting the null default value solves it. #} -- depends_on: {{ ref("test_data_bug_integer_after_date_after_string") }} {% if execute %} {{ dbt_profiler.get_profile(relation=ref("test_data_bug_integer_after_date_after_string")) }} {% endif %}
-- SPDX-License-Identifier: Apache-2.0 -- Licensed to the Ed-Fi Alliance under one or more agreements. -- The Ed-Fi Alliance licenses this file to you under the Apache License, Version 2.0. -- See the LICENSE and NOTICES files in the project root for more information. PRINT N'Removing type references on [edfi].[DisabilityDescriptor]' GO ALTER TABLE [edfi].[DisabilityDescriptor] ALTER COLUMN [DisabilityCategoryTypeId] INT NULL GO ALTER TABLE [edfi].[DisabilityDescriptor] ALTER COLUMN [DisabilityTypeId] INT NULL GO PRINT N'Importing updated DisabilityDescriptor defaults' GO EXEC [migration_tempdata].[sp_ImportDescriptorsFromXML] 'DisabilityDescriptor' GO
<filename>Hibernate_mapping_stoarge_cars/src/sql/createTables.sql<gh_stars>0 create table cars (id serial PRIMARY KEY, mark varchar(255), model varchar(255)); create table VIN (id serial PRIMARY KEY, number varchar(255), car_id INTEGER REFERENCES cars(id)); --FK
create database thunder; use thunder; create table user( id int not null auto_increment primary key, name varchar(50) not null, lastname varchar(50) not null, username varchar(50), email varchar(255) not null, password varchar(60) not null, image varchar(255), is_active boolean not null default 1, is_admin boolean not null default 0, is_mesero boolean not null default 0, is_cajero boolean not null default 0, created_at datetime not null ); insert into user(name,lastname,email,password,is_admin,created_at) value ("Administrador", "","admin","<PASSWORD>",1,NOW()); create table category( id int not null auto_increment primary key, name varchar(50) not null, is_active boolean not null default 1 ); insert into category (name) value ("Tacos"); insert into category (name) value ("Caldos"); /* tabla para almacenar las mesas del restaurant*/ create table item( id int not null auto_increment primary key, name varchar(50) not null, capacity int ); insert into item (name,capacity) values ("1",6),("2",6),("3",6),("4",6),("5",6),("6",6),("7",6),("8",6),("9",6),("10",6); create table product( id int not null auto_increment primary key, code varchar(50) not null, name varchar(50) not null, description varchar(50) not null, preparation varchar(50) not null, price_in float not null, price_out float, unit varchar(255) not null, presentation varchar(255) not null, duration int, /* tiempo de preparacion en minutos */ use_ingredient boolean not null default 1, is_active boolean not null default 1, user_id int not null, category_id int, foreign key (user_id) references user(id), foreign key (category_id) references category(id) ); create table ingredient( id int not null auto_increment primary key, code varchar(50) not null, name varchar(50) not null, price_in float not null, price_out float, unit varchar(255) not null, is_active boolean not null default 1, user_id int not null, foreign key (user_id) references user(id) ); create table product_ingredient( id int not null auto_increment primary key, product_id int not null, ingredient_id int not null, q float, is_required boolean not null, foreign key (product_id) references product(id), foreign key (ingredient_id) references ingredient(id) ); create table operation_type( id int not null auto_increment primary key, name varchar(50) not null ); insert into operation_type (name) value ("entrada"); insert into operation_type (name) value ("salida"); create table sell( id int not null auto_increment primary key, item_id int, /* mesa */ q int, /* cantidad de personas en la mesa */ is_applied boolean not null default 0, mesero_id int, cajero_id int, foreign key (mesero_id) references user(id), foreign key (cajero_id) references user(id), created_at datetime not null ); create table operation( id int not null auto_increment primary key, product_id int not null, q float not null, operation_type_id int not null, sell_id int, is_oficial boolean not null default 0, created_at datetime not null, foreign key (product_id) references product(id), foreign key (operation_type_id) references operation_type(id), foreign key (sell_id) references sell(id) ); /* para gestionar el inventario de ingredientes */ create table sell2( id int not null auto_increment primary key, user_id int , operation_type_id int default 2, foreign key (operation_type_id) references operation_type(id), foreign key (user_id) references user(id), created_at datetime not null ); create table operation2( id int not null auto_increment primary key, ingredient_id int not null, q float not null, operation_type_id int not null, sell_id int, is_oficial boolean not null default 0, created_at datetime not null, foreign key (ingredient_id) references ingredient(id), foreign key (operation_type_id) references operation_type(id), foreign key (sell_id) references sell2(id) ); /* no se usa actualmente */ create table spent( id int not null auto_increment primary key, q int not null, concept varchar(255) not null, unit varchar(255) not null, price float not null, category_id int not null, created_at datetime not null, foreign key (category_id) references category(id) );
CREATE TABLE product ( id BIGINT PRIMARY KEY, name VARCHAR(50), category VARCHAR(30), cost DECIMAL );
-- Deploy cif:trigger_functions/deleted_records_are_immutable to pg begin; create or replace function cif_private.deleted_records_are_immutable() returns trigger as $$ begin if old.deleted_at is not null then raise exception 'Deleted records cannot be modified'; end if; return new; end; $$ language plpgsql; grant execute on function cif_private.deleted_records_are_immutable to cif_internal, cif_external, cif_admin; comment on function cif_private.deleted_records_are_immutable() is $$ A trigger that raises an exception if changes happen on a record where ''deleted_at'' is set. $$; commit;
<reponame>jiaoww/spring-boot-start-current<filename>resources/init-mysql.sql CREATE DATABASE IF NOT EXISTS `goblin` /*!40100 DEFAULT CHARACTER SET utf8 */; USE `goblin`; -- MySQL dump 10.13 Distrib 8.0.12, for macos10.13 (x86_64) -- -- Host: 127.0.0.1 Database: goblin -- ------------------------------------------------------ -- Server version 8.0.13 /*!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 */; 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 `manage_mail_subscribe` -- DROP TABLE IF EXISTS `manage_mail_subscribe`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `manage_mail_subscribe` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', `user_id` bigint(20) DEFAULT NULL COMMENT '用户ID', `to_email` varchar(128) NOT NULL COMMENT '收件箱', `to_email_type` varchar(18) NOT NULL DEFAULT 'SYSTEM' COMMENT '收件箱类型(SYSTEM:系统邮箱,OTHER:其他邮箱[非系统邮箱]),\n 默认为 : SYSTEM', `email_subject` varchar(256) NOT NULL COMMENT '邮件主题', `email_text` text COMMENT '邮件内容', `email_attachment_url` varchar(1024) DEFAULT NULL COMMENT '邮件附件地址(多个用逗号'',''分隔)', `email_send_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '邮件发送时间(默认:即刻发送)', `email_send_state` varchar(18) NOT NULL DEFAULT 'NOT_SEND' COMMENT '发送状态( NOT_SEND : 未发送,SEND : 已发送,FAIL_SEND : 发送失败,\n FINAL_FAIL_SEND : 重试次数用完后,还是发送失败 )', `email_send_retry_number` tinyint(4) NOT NULL DEFAULT '3' COMMENT '失败重试次数', `email_send_retry_count` tinyint(4) NOT NULL DEFAULT '0' COMMENT '重试发送统计', `remark` varchar(128) DEFAULT NULL COMMENT '备注', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='修改时间'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `manage_mail_subscribe` -- LOCK TABLES `manage_mail_subscribe` WRITE; /*!40000 ALTER TABLE `manage_mail_subscribe` DISABLE KEYS */; /*!40000 ALTER TABLE `manage_mail_subscribe` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `manage_permission_resource` -- DROP TABLE IF EXISTS `manage_permission_resource`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `manage_permission_resource` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', `parent_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '父权限资源ID(0:表示root级)', `resource_depth` int(11) DEFAULT NULL COMMENT '资源深度', `permission_sort` int(11) DEFAULT NULL COMMENT '排序字段', `permission_name` varchar(128) NOT NULL COMMENT '权限名称', `resource_class` varchar(128) DEFAULT NULL COMMENT '资源样式class(前端class属性)', `resource_style` varchar(128) DEFAULT NULL COMMENT '资源样式style(前端style属性)', `resource_router_url` varchar(128) DEFAULT NULL COMMENT '资源路由URL(前端使用)', `resource_type` varchar(8) NOT NULL COMMENT '资源类型(API:接口,MENU:菜单,BUTTON:按钮)', `resource_api_uri` varchar(128) DEFAULT NULL COMMENT '资源API URI(非必须,api才有)', `resource_api_uri_methods` varchar(128) DEFAULT NULL COMMENT '资源API URI方法methods(GET,POST,DELETE,PUT,以'',''分割)', `resource_api_uri_options_fields` varchar(512) DEFAULT NULL COMMENT '资源API URI 显示字段列表 提供选择以'',''逗号分隔', `is_enabled` tinyint(1) DEFAULT '1' COMMENT '资源状态', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', `create_user_id` bigint(20) DEFAULT NULL COMMENT '创建人', `update_user_id` bigint(20) DEFAULT NULL COMMENT '修改人', `remark` varchar(128) DEFAULT NULL COMMENT '备注', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COMMENT='权限资源'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `manage_permission_resource` -- LOCK TABLES `manage_permission_resource` WRITE; /*!40000 ALTER TABLE `manage_permission_resource` DISABLE KEYS */; /*!40000 ALTER TABLE `manage_permission_resource` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `manage_role` -- DROP TABLE IF EXISTS `manage_role`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `manage_role` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', `role_name` varchar(32) NOT NULL COMMENT '角色名称', `role_name_code` varchar(64) NOT NULL COMMENT '角色名称code', `is_enabled` tinyint(1) NOT NULL DEFAULT '1' COMMENT '角色状态(1:激活,0:锁定)', `description` varchar(128) DEFAULT NULL COMMENT '描述', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', `remark` varchar(128) DEFAULT NULL COMMENT '备注', PRIMARY KEY (`id`), UNIQUE KEY `AK_manage_role_role_name_code_uk` (`role_name_code`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='后台管理角色表'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `manage_role` -- LOCK TABLES `manage_role` WRITE; /*!40000 ALTER TABLE `manage_role` DISABLE KEYS */; /*!40000 ALTER TABLE `manage_role` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `manage_role_permission_resource` -- DROP TABLE IF EXISTS `manage_role_permission_resource`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `manage_role_permission_resource` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', `role_id` bigint(20) NOT NULL COMMENT '后台管理角色_id', `permission_resource_id` bigint(20) NOT NULL COMMENT '后台管理权限资源_id', `resource_api_uri_show_fields` varchar(512) NOT NULL DEFAULT '*' COMMENT '资源API URI 显示字段\n (\n "*":表示显示所有[默认"*"].\n "-" + 字段名,表示排除某个字段.如果要排除多个以","进行分隔,比如: -username,-password.\n 字段名,表示只显示某个字段,如果只要显示某几个字段可以用","分隔,比如:username,password.\n 示例 : \n * : 显示所有字段\n -username,-password : 除了不显示username,password这2个字段,其他字段都显示\n username,password : 只显示username,password这2个字段,都不显示\n )\n 目前只是精确到角色,具体到用户,还需要后续思考', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 COMMENT='角色和权限资源中间表'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `manage_role_permission_resource` -- LOCK TABLES `manage_role_permission_resource` WRITE; /*!40000 ALTER TABLE `manage_role_permission_resource` DISABLE KEYS */; /*!40000 ALTER TABLE `manage_role_permission_resource` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `manage_sms_subscribe` -- DROP TABLE IF EXISTS `manage_sms_subscribe`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `manage_sms_subscribe` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', `user_id` bigint(20) DEFAULT NULL COMMENT '用户ID', `sms_phone` varchar(128) NOT NULL COMMENT '手机号码', `mobile_operators` varchar(32) NOT NULL DEFAULT 'UNDEFINED' COMMENT '运营商(CHINA_UNICOM:中国联通,CHINA_TELICOM:中国电信,CHINA_MOBILE:中国移动,UNDEFINED:未指定)', `sms_content` varchar(256) NOT NULL COMMENT '短信内容', `sms_send_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '短信发送时间(默认:即刻发送)', `sms_send_state` varchar(18) NOT NULL DEFAULT 'NOT_SEND' COMMENT '发送状态 \n ( NOT_SEND : 未发送,SEND : 已发送,\n FAIL_SEND : 发送失败,FINAL_FAIL_SEND : 重试次数用完后,还是发送失败 )', `sms_send_retry_number` tinyint(4) NOT NULL DEFAULT '3' COMMENT '失败重试次数', `sms_send_retry_count` tinyint(4) NOT NULL DEFAULT '0' COMMENT '重试发送统计', `remark` varchar(128) DEFAULT NULL COMMENT '备注', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='短信订阅'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `manage_sms_subscribe` -- LOCK TABLES `manage_sms_subscribe` WRITE; /*!40000 ALTER TABLE `manage_sms_subscribe` DISABLE KEYS */; /*!40000 ALTER TABLE `manage_sms_subscribe` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `manage_user` -- DROP TABLE IF EXISTS `manage_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `manage_user` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', `username` varchar(32) NOT NULL COMMENT '用户名(登录名称)', `password` varchar(128) NOT NULL COMMENT '密码', `password_salt` varchar(32) DEFAULT <PASSWORD>' COMMENT '盐', `nick_name` varchar(128) DEFAULT NULL COMMENT '昵称', `real_name` varchar(128) DEFAULT NULL COMMENT '真实姓名', `email` varchar(128) DEFAULT NULL COMMENT '电子邮箱', `phone` varchar(18) DEFAULT NULL COMMENT '手机号码', `user_image_url` varchar(128) DEFAULT NULL COMMENT '用户头像', `last_password_reset_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '密码最后重置(修改)日期', `create_user_id` bigint(20) DEFAULT NULL COMMENT '创建人', `update_user_id` bigint(20) DEFAULT NULL COMMENT '修改人', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', `is_enabled` tinyint(1) NOT NULL DEFAULT '1' COMMENT '账户状态(1:激活,0:锁定)', `remark` varchar(128) DEFAULT NULL COMMENT '备注', PRIMARY KEY (`id`), UNIQUE KEY `AK_manage_user_username_uk` (`username`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='用户'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `manage_user` -- LOCK TABLES `manage_user` WRITE; /*!40000 ALTER TABLE `manage_user` DISABLE KEYS */; /*!40000 ALTER TABLE `manage_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `manage_user_role` -- DROP TABLE IF EXISTS `manage_user_role`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `manage_user_role` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', `user_id` bigint(20) NOT NULL COMMENT '后台管理用户_id', `role_id` bigint(20) NOT NULL COMMENT '后台管理角色_id', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='用户和角色中间表'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `manage_user_role` -- LOCK TABLES `manage_user_role` WRITE; /*!40000 ALTER TABLE `manage_user_role` DISABLE KEYS */; /*!40000 ALTER TABLE `manage_user_role` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `system_config` -- DROP TABLE IF EXISTS `system_config`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `system_config` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', `config_key` varchar(64) NOT NULL COMMENT 'key', `config_value` varchar(1024) NOT NULL COMMENT 'value', `config_description` varchar(256) DEFAULT NULL COMMENT '说明', `create_user_id` bigint(20) DEFAULT NULL COMMENT '创建人', `update_user_id` bigint(20) DEFAULT NULL COMMENT '修改人', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', `remark` varchar(128) DEFAULT NULL COMMENT '备注', PRIMARY KEY (`id`), UNIQUE KEY `AK_system_config_config_key_uk` (`config_key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='系统配置'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `system_config` -- LOCK TABLES `system_config` WRITE; /*!40000 ALTER TABLE `system_config` DISABLE KEYS */; /*!40000 ALTER TABLE `system_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `system_log` -- DROP TABLE IF EXISTS `system_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `system_log` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', `user_id` bigint(20) DEFAULT NULL COMMENT '后台管理用户ID', `user_real_name` varchar(128) DEFAULT NULL COMMENT '后台管理用户真实姓名', `action_log` text COMMENT '操作日志(也用于可以存储异常栈信息,或者运行的sql) json', `action_ip_address` varchar(64) DEFAULT NULL COMMENT '操作ip地址', `action_description` varchar(128) DEFAULT NULL COMMENT '操作描述', `action_start_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '动作开始时间', `action_end_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '动作结束时间', `action_total_time` bigint(20) NOT NULL COMMENT '总执行时间(微秒)', `action_class` varchar(128) DEFAULT NULL COMMENT '操作类', `action_method` varchar(128) DEFAULT NULL COMMENT '操作方法', `action_args` varchar(2048) DEFAULT NULL COMMENT '方法参数', `is_exception` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否异常', `is_exception_warn` tinyint(1) NOT NULL DEFAULT '0' COMMENT '异常是否警报', `notice_type` varchar(18) NOT NULL DEFAULT 'MAIL' COMMENT '通知类型(SMS:短信,MAIL:邮箱)', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='系统日志表'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `system_log` -- LOCK TABLES `system_log` WRITE; /*!40000 ALTER TABLE `system_log` DISABLE KEYS */; /*!40000 ALTER TABLE `system_log` 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 2019-01-11 9:32:36
-- ============================================= -- Author: <NAME> -- Create date: 2019-11-13 -- Updates: 2020-01-03 - updated to correct case inconsistancies (BD) -- Updates: 2020-01-02 - updated to reflect changes for Spring 3 & 4. (BD) -- Updates: 2019-11-27 - updates in support of sprint 2 & 3. (BD) -- -- Description: T-SQL generated Triggers for DB_LAST_UPDATE% columns. All dates set to UTC time, to be consistent throughout the database. -- ============================================= USE HMR_DEV; -- uncomment appropriate instance --USE HMR_TST; --USE HMR_UAT; --USE HMR_PRD; GO CREATE TRIGGER HMR_ACT_CODE_I_S_U_TR ON HMR_ACTIVITY_CODE INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.ACTIVITY_CODE_ID = deleted.ACTIVITY_CODE_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_ACTIVITY_CODE set "ACTIVITY_CODE_ID" = inserted."ACTIVITY_CODE_ID", "ACTIVITY_NUMBER" = inserted."ACTIVITY_NUMBER", "ACTIVITY_NAME" = inserted."ACTIVITY_NAME", "UNIT_OF_MEASURE" = inserted."UNIT_OF_MEASURE", "MAINTENANCE_TYPE" = inserted."MAINTENANCE_TYPE", "LOCATION_CODE_ID" = inserted."LOCATION_CODE_ID", "POINT_LINE_FEATURE" = inserted."POINT_LINE_FEATURE", "ACTIVITY_APPLICATION" = inserted."ACTIVITY_APPLICATION", "END_DATE" = inserted."END_DATE", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER", "APP_LAST_UPDATE_USERID" = inserted."APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP" = inserted."APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID" = inserted."APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" = inserted."APP_LAST_UPDATE_USER_DIRECTORY" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_ACTIVITY_CODE inner join inserted on (HMR_ACTIVITY_CODE.ACTIVITY_CODE_ID = inserted.ACTIVITY_CODE_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_CODE_LKUP_I_S_U_TR ON HMR_CODE_LOOKUP INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.CODE_LOOKUP_ID = deleted.CODE_LOOKUP_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_CODE_LOOKUP set "CODE_LOOKUP_ID" = inserted."CODE_LOOKUP_ID", "CODE_SET" = inserted."CODE_SET", "CODE_NAME" = inserted."CODE_NAME", "CODE_VALUE_TEXT" = inserted."CODE_VALUE_TEXT", "CODE_VALUE_NUM" = inserted."CODE_VALUE_NUM", "CODE_VALUE_FORMAT" = inserted."CODE_VALUE_FORMAT", "DISPLAY_ORDER" = inserted."DISPLAY_ORDER", "END_DATE" = inserted."END_DATE", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_CODE_LOOKUP inner join inserted on (HMR_CODE_LOOKUP.CODE_LOOKUP_ID = inserted.CODE_LOOKUP_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_CNRT_TRM_I_S_U_TR ON HMR_CONTRACT_TERM INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.CONTRACT_TERM_ID = deleted.CONTRACT_TERM_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_CONTRACT_TERM set "CONTRACT_TERM_ID" = inserted."CONTRACT_TERM_ID", "CONTRACT_NAME" = inserted."CONTRACT_NAME", "PARTY_ID" = inserted."PARTY_ID", "SERVICE_AREA_NUMBER" = inserted."SERVICE_AREA_NUMBER", "START_DATE" = inserted."START_DATE", "END_DATE" = inserted."END_DATE", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER", "APP_LAST_UPDATE_USERID" = inserted."APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP" = inserted."APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID" = inserted."APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" = inserted."APP_LAST_UPDATE_USER_DIRECTORY" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_CONTRACT_TERM inner join inserted on (HMR_CONTRACT_TERM.CONTRACT_TERM_ID = inserted.CONTRACT_TERM_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_DIST_I_S_U_TR ON HMR_DISTRICT INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.DISTRICT_NUMBER = deleted.DISTRICT_NUMBER) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_DISTRICT set "DISTRICT_ID" = inserted."DISTRICT_ID", "DISTRICT_NUMBER" = inserted."DISTRICT_NUMBER", "DISTRICT_NAME" = inserted."DISTRICT_NAME", "REGION_NUMBER" = inserted."REGION_NUMBER", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_DISTRICT inner join inserted on (HMR_DISTRICT.DISTRICT_NUMBER = inserted.DISTRICT_NUMBER); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER FM5_I_S_U_TR ON HMR_FEEDBACK_MESSAGE INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.FEEDBACK_MESSAGE_ID = deleted.FEEDBACK_MESSAGE_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_FEEDBACK_MESSAGE set "FEEDBACK_MESSAGE_ID" = inserted."FEEDBACK_MESSAGE_ID", "SUBMISSION_OBJECT_ID" = inserted."SUBMISSION_OBJECT_ID", "COMMUNICATION_SUBJECT" = inserted."COMMUNICATION_SUBJECT", "COMMUNICATION_TEXT" = inserted."COMMUNICATION_TEXT", "COMMUNICATION_DATE" = inserted."COMMUNICATION_DATE", "IS_SENT" = inserted."IS_SENT", "IS_ERROR" = inserted."IS_ERROR", "SEND_ERROR_TEXT" = inserted."SEND_ERROR_TEXT", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_FEEDBACK_MESSAGE inner join inserted on (HMR_FEEDBACK_MESSAGE.FEEDBACK_MESSAGE_ID = inserted.FEEDBACK_MESSAGE_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_LOC_CODE_I_S_U_TR ON HMR_LOCATION_CODE INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.LOCATION_CODE_ID = deleted.LOCATION_CODE_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_LOCATION_CODE set "LOCATION_CODE_ID" = inserted."LOCATION_CODE_ID", "LOCATION_CODE" = inserted."LOCATION_CODE", "REQUIRED_LOCATION_DETAILS" = inserted."REQUIRED_LOCATION_DETAILS", "ADDITIONAL_INFO" = inserted."ADDITIONAL_INFO", "REPORTING_FREQUENCY" = inserted."REPORTING_FREQUENCY", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_LOCATION_CODE inner join inserted on (HMR_LOCATION_CODE.LOCATION_CODE_ID = inserted.LOCATION_CODE_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER MT7_I_S_U_TR ON HMR_MIME_TYPE INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.MIME_TYPE_ID = deleted.MIME_TYPE_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_MIME_TYPE set "MIME_TYPE_ID" = inserted."MIME_TYPE_ID", "MIME_TYPE_CODE" = inserted."MIME_TYPE_CODE", "DESCRIPTION" = inserted."DESCRIPTION", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_MIME_TYPE inner join inserted on (HMR_MIME_TYPE.MIME_TYPE_ID = inserted.MIME_TYPE_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_PRTY_I_S_U_TR ON HMR_PARTY INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.PARTY_ID = deleted.PARTY_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_PARTY set "PARTY_ID" = inserted."PARTY_ID", "BUSINESS_GUID" = inserted."BUSINESS_GUID", "BUSINESS_LEGAL_NAME" = inserted."BUSINESS_LEGAL_NAME", "DISPLAY_NAME" = inserted."DISPLAY_NAME", "EMAIL" = inserted."EMAIL", "TELEPHONE" = inserted."TELEPHONE", "BUSINESS_NUMBER" = inserted."BUSINESS_NUMBER", "PARTY_TYPE" = inserted."PARTY_TYPE", "END_DATE" = inserted."END_DATE", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER", "APP_LAST_UPDATE_USERID" = inserted."APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP" = inserted."APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID" = inserted."APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" = inserted."APP_LAST_UPDATE_USER_DIRECTORY" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_PARTY inner join inserted on (HMR_PARTY.PARTY_ID = inserted.PARTY_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_PERM_I_S_U_TR ON HMR_PERMISSION INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.PERMISSION_ID = deleted.PERMISSION_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_PERMISSION set "PERMISSION_ID" = inserted."PERMISSION_ID", "NAME" = inserted."NAME", "DESCRIPTION" = inserted."DESCRIPTION", "END_DATE" = inserted."END_DATE", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER", "APP_LAST_UPDATE_USERID" = inserted."APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP" = inserted."APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID" = inserted."APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" = inserted."APP_LAST_UPDATE_USER_DIRECTORY" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_PERMISSION inner join inserted on (HMR_PERMISSION.PERMISSION_ID = inserted.PERMISSION_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_RGN_I_S_U_TR ON HMR_REGION INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.REGION_NUMBER = deleted.REGION_NUMBER) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_REGION set "REGION_ID" = inserted."REGION_ID", "REGION_NUMBER" = inserted."REGION_NUMBER", "REGION_NAME" = inserted."REGION_NAME", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_REGION inner join inserted on (HMR_REGION.REGION_NUMBER = inserted.REGION_NUMBER); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_RCKFL_RPT_I_S_U_TR ON HMR_ROCKFALL_REPORT INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.ROCKFALL_REPORT_ID = deleted.ROCKFALL_REPORT_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_ROCKFALL_REPORT set "ROCKFALL_REPORT_ID" = inserted."ROCKFALL_REPORT_ID", "SUBMISSION_OBJECT_ID" = inserted."SUBMISSION_OBJECT_ID", "VALIDATION_STATUS_ID" = inserted."VALIDATION_STATUS_ID", "MAJOR_INCIDENT_NUMBER" = inserted."MAJOR_INCIDENT_NUMBER", "ESTIMATED_ROCKFALL_DATE" = inserted."ESTIMATED_ROCKFALL_DATE", "ESTIMATED_ROCKFALL_TIME" = inserted."ESTIMATED_ROCKFALL_TIME", "START_LATITUDE" = inserted."START_LATITUDE", "START_LONGITUDE" = inserted."START_LONGITUDE", "END_LATITUDE" = inserted."END_LATITUDE", "END_LONGITUDE" = inserted."END_LONGITUDE", "HIGHWAY_UNIQUE_NUMBER" = inserted."HIGHWAY_UNIQUE_NUMBER", "HIGHWAY_UNIQUE_NAME" = inserted."HIGHWAY_UNIQUE_NAME", "LANDMARK" = inserted."LANDMARK", "LAND_MARK_NAME" = inserted."LAND_MARK_NAME", "START_OFFSET" = inserted."START_OFFSET", "END_OFFSET" = inserted."END_OFFSET", "DIRECTION_FROM_LANDMARK" = inserted."DIRECTION_FROM_LANDMARK", "LOCATION_DESCRIPTION" = inserted."LOCATION_DESCRIPTION", "DITCH_VOLUME" = inserted."DITCH_VOLUME", "TRAVELLED_LANES_VOLUME" = inserted."TRAVELLED_LANES_VOLUME", "OTHER_VOLUME" = inserted."OTHER_VOLUME", "HEAVY_PRECIP" = inserted."HEAVY_PRECIP", "FREEZE_THAW" = inserted."FREEZE_THAW", "DITCH_SNOW_ICE" = inserted."DITCH_SNOW_ICE", "VEHICLE_DAMAGE" = inserted."VEHICLE_DAMAGE", "COMMENTS" = inserted."COMMENTS", "REPORTER_NAME" = inserted."REPORTER_NAME", "MC_PHONE_NUMBER" = inserted."MC_PHONE_NUMBER", "REPORT_DATE" = inserted."REPORT_DATE", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER", "APP_LAST_UPDATE_USERID" = inserted."APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP" = inserted."APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID" = inserted."APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" = inserted."APP_LAST_UPDATE_USER_DIRECTORY" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_ROCKFALL_REPORT inner join inserted on (HMR_ROCKFALL_REPORT.ROCKFALL_REPORT_ID = inserted.ROCKFALL_REPORT_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_RL_I_S_U_TR ON HMR_ROLE INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.ROLE_ID = deleted.ROLE_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_ROLE set "ROLE_ID" = inserted."ROLE_ID", "NAME" = inserted."NAME", "DESCRIPTION" = inserted."DESCRIPTION", "IS_INTERNAL" = inserted."IS_INTERNAL", "END_DATE" = inserted."END_DATE", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER", "APP_LAST_UPDATE_USERID" = inserted."APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP" = inserted."APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID" = inserted."APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" = inserted."APP_LAST_UPDATE_USER_DIRECTORY" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_ROLE inner join inserted on (HMR_ROLE.ROLE_ID = inserted.ROLE_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_RL_PERM_I_S_U_TR ON HMR_ROLE_PERMISSION INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.ROLE_PERMISSION_ID = deleted.ROLE_PERMISSION_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_ROLE_PERMISSION set "ROLE_PERMISSION_ID" = inserted."ROLE_PERMISSION_ID", "ROLE_ID" = inserted."ROLE_ID", "PERMISSION_ID" = inserted."PERMISSION_ID", "END_DATE" = inserted."END_DATE", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER", "APP_LAST_UPDATE_USERID" = inserted."APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP" = inserted."APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID" = inserted."APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" = inserted."APP_LAST_UPDATE_USER_DIRECTORY" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_ROLE_PERMISSION inner join inserted on (HMR_ROLE_PERMISSION.ROLE_PERMISSION_ID = inserted.ROLE_PERMISSION_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_SRV_ARA_I_S_U_TR ON HMR_SERVICE_AREA INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.SERVICE_AREA_NUMBER = deleted.SERVICE_AREA_NUMBER) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_SERVICE_AREA set "SERVICE_AREA_ID" = inserted."SERVICE_AREA_ID", "SERVICE_AREA_NUMBER" = inserted."SERVICE_AREA_NUMBER", "SERVICE_AREA_NAME" = inserted."SERVICE_AREA_NAME", "DISTRICT_NUMBER" = inserted."DISTRICT_NUMBER", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_SERVICE_AREA inner join inserted on (HMR_SERVICE_AREA.SERVICE_AREA_NUMBER = inserted.SERVICE_AREA_NUMBER); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_SRV_ARA_USR_I_S_U_TR ON HMR_SERVICE_AREA_USER INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.SERVICE_AREA_USER_ID = deleted.SERVICE_AREA_USER_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_SERVICE_AREA_USER set "SERVICE_AREA_USER_ID" = inserted."SERVICE_AREA_USER_ID", "SERVICE_AREA_NUMBER" = inserted."SERVICE_AREA_NUMBER", "SYSTEM_USER_ID" = inserted."SYSTEM_USER_ID", "END_DATE" = inserted."END_DATE", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER", "APP_LAST_UPDATE_USERID" = inserted."APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP" = inserted."APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID" = inserted."APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" = inserted."APP_LAST_UPDATE_USER_DIRECTORY" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_SERVICE_AREA_USER inner join inserted on (HMR_SERVICE_AREA_USER.SERVICE_AREA_USER_ID = inserted.SERVICE_AREA_USER_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_STR_ELMT_I_S_U_TR ON HMR_STREAM_ELEMENT INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.STREAM_ELEMENT_ID = deleted.STREAM_ELEMENT_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_STREAM_ELEMENT set "STREAM_ELEMENT_ID" = inserted."STREAM_ELEMENT_ID", "SUBMISSION_STREAM_ID" = inserted."SUBMISSION_STREAM_ID", "ELEMENT_NAME" = inserted."ELEMENT_NAME", "ELEMENT_TYPE" = inserted."ELEMENT_TYPE", "STAGING_COLUMN_NAME" = inserted."STAGING_COLUMN_NAME", "IS_REQUIRED" = inserted."IS_REQUIRED", "MAX_LENGTH" = inserted."MAX_LENGTH", "MIN_LENGTH" = inserted."MIN_LENGTH", "MAX_VALUE" = inserted."MAX_VALUE", "MIN_VALUE" = inserted."MIN_VALUE", "MAX_DATE" = inserted."MAX_DATE", "MIN_DATE" = inserted."MIN_DATE", "REG_EXP" = inserted."REG_EXP", "CODE_SET" = inserted."CODE_SET", "END_DATE" = inserted."END_DATE", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER", "APP_LAST_UPDATE_USERID" = inserted."APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP" = inserted."APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID" = inserted."APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" = inserted."APP_LAST_UPDATE_USER_DIRECTORY" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_STREAM_ELEMENT inner join inserted on (HMR_STREAM_ELEMENT.STREAM_ELEMENT_ID = inserted.STREAM_ELEMENT_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_SUBM_OBJ_I_S_U_TR ON HMR_SUBMISSION_OBJECT INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.SUBMISSION_OBJECT_ID = deleted.SUBMISSION_OBJECT_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_SUBMISSION_OBJECT set "SUBMISSION_OBJECT_ID" = inserted."SUBMISSION_OBJECT_ID", "FILE_NAME" = inserted."FILE_NAME", "DIGITAL_REPRESENTATION" = inserted."DIGITAL_REPRESENTATION", "MIME_TYPE_ID" = inserted."MIME_TYPE_ID", "SUBMISSION_STATUS_ID" = inserted."SUBMISSION_STATUS_ID", "SERVICE_AREA_NUMBER" = inserted."SERVICE_AREA_NUMBER", "PARTY_ID" = inserted."PARTY_ID", "FILE_HASH" = inserted."FILE_HASH", "ERROR_DETAIL" = inserted."ERROR_DETAIL", "SUBMISSION_STREAM_ID" = inserted."SUBMISSION_STREAM_ID", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER", "APP_LAST_UPDATE_USERID" = inserted."APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP" = inserted."APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID" = inserted."APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" = inserted."APP_LAST_UPDATE_USER_DIRECTORY" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_SUBMISSION_OBJECT inner join inserted on (HMR_SUBMISSION_OBJECT.SUBMISSION_OBJECT_ID = inserted.SUBMISSION_OBJECT_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_SUBM_RW_I_S_U_TR ON HMR_SUBMISSION_ROW INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.ROW_ID = deleted.ROW_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_SUBMISSION_ROW set "ROW_ID" = inserted."ROW_ID", "SUBMISSION_OBJECT_ID" = inserted."SUBMISSION_OBJECT_ID", "ROW_STATUS_ID" = inserted."ROW_STATUS_ID", "RECORD_NUMBER" = inserted."RECORD_NUMBER", "ROW_VALUE" = inserted."ROW_VALUE", "ROW_HASH" = inserted."ROW_HASH", "ERROR_DETAIL" = inserted."ERROR_DETAIL", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER", "APP_LAST_UPDATE_USERID" = inserted."APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP" = inserted."APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID" = inserted."APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" = inserted."APP_LAST_UPDATE_USER_DIRECTORY" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_SUBMISSION_ROW inner join inserted on (HMR_SUBMISSION_ROW.ROW_ID = inserted.ROW_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER SS19_I_S_U_TR ON HMR_SUBMISSION_STATUS INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.STATUS_ID = deleted.STATUS_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_SUBMISSION_STATUS set "STATUS_ID" = inserted."STATUS_ID", "STATUS_CODE" = inserted."STATUS_CODE", "DESCRIPTION" = inserted."DESCRIPTION", "STATUS_TYPE" = inserted."STATUS_TYPE", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER", "APP_LAST_UPDATE_USERID" = inserted."APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP" = inserted."APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID" = inserted."APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" = inserted."APP_LAST_UPDATE_USER_DIRECTORY" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_SUBMISSION_STATUS inner join inserted on (HMR_SUBMISSION_STATUS.STATUS_ID = inserted.STATUS_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_SUBM_STR_I_S_U_TR ON HMR_SUBMISSION_STREAM INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.SUBMISSION_STREAM_ID = deleted.SUBMISSION_STREAM_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_SUBMISSION_STREAM set "SUBMISSION_STREAM_ID" = inserted."SUBMISSION_STREAM_ID", "STREAM_NAME" = inserted."STREAM_NAME", "END_DATE" = inserted."END_DATE", "FILE_SIZE_LIMIT" = inserted."FILE_SIZE_LIMIT", "STAGING_TABLE_NAME" = inserted."STAGING_TABLE_NAME", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER", "APP_LAST_UPDATE_USERID" = inserted."APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP" = inserted."APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID" = inserted."APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" = inserted."APP_LAST_UPDATE_USER_DIRECTORY" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_SUBMISSION_STREAM inner join inserted on (HMR_SUBMISSION_STREAM.SUBMISSION_STREAM_ID = inserted.SUBMISSION_STREAM_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_SYS_USR_I_S_U_TR ON HMR_SYSTEM_USER INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.SYSTEM_USER_ID = deleted.SYSTEM_USER_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_SYSTEM_USER set "SYSTEM_USER_ID" = inserted."SYSTEM_USER_ID", "PARTY_ID" = inserted."PARTY_ID", "USER_GUID" = inserted."USER_GUID", "USERNAME" = inserted."USERNAME", "USER_DIRECTORY" = inserted."USER_DIRECTORY", "USER_TYPE" = inserted."USER_TYPE", "FIRST_NAME" = inserted."FIRST_NAME", "LAST_NAME" = inserted."LAST_NAME", "EMAIL" = inserted."EMAIL", "BUSINESS_GUID" = inserted."BUSINESS_GUID", "BUSINESS_LEGAL_NAME" = inserted."BUSINESS_LEGAL_NAME", "END_DATE" = inserted."END_DATE", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER", "APP_LAST_UPDATE_USERID" = inserted."APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP" = inserted."APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID" = inserted."APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" = inserted."APP_LAST_UPDATE_USER_DIRECTORY" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_SYSTEM_USER inner join inserted on (HMR_SYSTEM_USER.SYSTEM_USER_ID = inserted.SYSTEM_USER_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER SV22_I_S_U_TR ON HMR_SYSTEM_VALIDATION INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.SYSTEM_VALIDATION_ID = deleted.SYSTEM_VALIDATION_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_SYSTEM_VALIDATION set "SYSTEM_VALIDATION_ID" = inserted."SYSTEM_VALIDATION_ID", "ENTITY_NAME" = inserted."ENTITY_NAME", "ATTRIBUTE_NAME" = inserted."ATTRIBUTE_NAME", "ATTRIBUTE_TYPE" = inserted."ATTRIBUTE_TYPE", "IS_REQUIRED" = inserted."IS_REQUIRED", "MAX_LENGTH" = inserted."MAX_LENGTH", "MIN_LENGTH" = inserted."MIN_LENGTH", "MAX_VALUE" = inserted."MAX_VALUE", "MIN_VALUE" = inserted."MIN_VALUE", "MAX_DATE" = inserted."MAX_DATE", "MIN_DATE" = inserted."MIN_DATE", "REG_EXP" = inserted."REG_EXP", "CODE_SET" = inserted."CODE_SET", "END_DATE" = inserted."END_DATE", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_SYSTEM_VALIDATION inner join inserted on (HMR_SYSTEM_VALIDATION.SYSTEM_VALIDATION_ID = inserted.SYSTEM_VALIDATION_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_USR_RL_I_S_U_TR ON HMR_USER_ROLE INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.USER_ROLE_ID = deleted.USER_ROLE_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_USER_ROLE set "USER_ROLE_ID" = inserted."USER_ROLE_ID", "ROLE_ID" = inserted."ROLE_ID", "SYSTEM_USER_ID" = inserted."SYSTEM_USER_ID", "END_DATE" = inserted."END_DATE", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER", "APP_LAST_UPDATE_USERID" = inserted."APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP" = inserted."APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID" = inserted."APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" = inserted."APP_LAST_UPDATE_USER_DIRECTORY" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_USER_ROLE inner join inserted on (HMR_USER_ROLE.USER_ROLE_ID = inserted.USER_ROLE_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_WLDLF_RPT_I_S_U_TR ON HMR_WILDLIFE_REPORT INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.WILDLIFE_RECORD_ID = deleted.WILDLIFE_RECORD_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_WILDLIFE_REPORT set "WILDLIFE_RECORD_ID" = inserted."WILDLIFE_RECORD_ID", "SUBMISSION_OBJECT_ID" = inserted."SUBMISSION_OBJECT_ID", "VALIDATION_STATUS_ID" = inserted."VALIDATION_STATUS_ID", "RECORD_TYPE" = inserted."RECORD_TYPE", "SERVICE_AREA" = inserted."SERVICE_AREA", "ACCIDENT_DATE" = inserted."ACCIDENT_DATE", "TIME_OF_KILL" = inserted."TIME_OF_KILL", "LATITUDE" = inserted."LATITUDE", "LONGITUDE" = inserted."LONGITUDE", "HIGHWAY_UNIQUE_NUMBER" = inserted."HIGHWAY_UNIQUE_NUMBER", "LANDMARK" = inserted."LANDMARK", "START_OFFSET" = inserted."START_OFFSET", "NEAREST_TOWN" = inserted."NEAREST_TOWN", "WILDLIFE_SIGN" = inserted."WILDLIFE_SIGN", "QUANTITY" = inserted."QUANTITY", "SPECIES" = inserted."SPECIES", "SEX" = inserted."SEX", "AGE" = inserted."AGE", "COMMENT" = inserted."COMMENT", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER", "APP_LAST_UPDATE_USERID" = inserted."APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP" = inserted."APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID" = inserted."APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" = inserted."APP_LAST_UPDATE_USER_DIRECTORY" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_WILDLIFE_REPORT inner join inserted on (HMR_WILDLIFE_REPORT.WILDLIFE_RECORD_ID = inserted.WILDLIFE_RECORD_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_WRK_RPT_I_S_U_TR ON HMR_WORK_REPORT INSTEAD OF UPDATE AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM deleted) RETURN; -- validate concurrency control if exists (select 1 from inserted, deleted where inserted.CONCURRENCY_CONTROL_NUMBER != deleted.CONCURRENCY_CONTROL_NUMBER+1 AND inserted.WORK_REPORT_ID = deleted.WORK_REPORT_ID) raiserror('CONCURRENCY FAILURE.',16,1) -- update statement update HMR_WORK_REPORT set "WORK_REPORT_ID" = inserted."WORK_REPORT_ID", "SUBMISSION_OBJECT_ID" = inserted."SUBMISSION_OBJECT_ID", "VALIDATION_STATUS_ID" = inserted."VALIDATION_STATUS_ID", "RECORD_TYPE" = inserted."RECORD_TYPE", "SERVICE_AREA" = inserted."SERVICE_AREA", "RECORD_NUMBER" = inserted."RECORD_NUMBER", "TASK_NUMBER" = inserted."TASK_NUMBER", "ACTIVITY_NUMBER" = inserted."ACTIVITY_NUMBER", "START_DATE" = inserted."START_DATE", "END_DATE" = inserted."END_DATE", "ACCOMPLISHMENT" = inserted."ACCOMPLISHMENT", "UNIT_OF_MEASURE" = inserted."UNIT_OF_MEASURE", "POSTED_DATE" = inserted."POSTED_DATE", "HIGHWAY_UNIQUE" = inserted."HIGHWAY_UNIQUE", "LANDMARK" = inserted."LANDMARK", "START_OFFSET" = inserted."START_OFFSET", "END_OFFSET" = inserted."END_OFFSET", "START_LATITUDE" = inserted."START_LATITUDE", "START_LONGITUDE" = inserted."START_LONGITUDE", "END_LATITUDE" = inserted."END_LATITUDE", "END_LONGITUDE" = inserted."END_LONGITUDE", "STRUCTURE_NUMBER" = inserted."STRUCTURE_NUMBER", "SITE_NUMBER" = inserted."SITE_NUMBER", "VALUE_OF_WORK " = inserted."VALUE_OF_WORK ", "COMMENTS" = inserted."COMMENTS", "CONCURRENCY_CONTROL_NUMBER" = inserted."CONCURRENCY_CONTROL_NUMBER", "APP_LAST_UPDATE_USERID" = inserted."APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP" = inserted."APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID" = inserted."APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" = inserted."APP_LAST_UPDATE_USER_DIRECTORY" , DB_AUDIT_LAST_UPDATE_TIMESTAMP = getutcdate() , DB_AUDIT_LAST_UPDATE_USERID = user_name() from HMR_WORK_REPORT inner join inserted on (HMR_WORK_REPORT.WORK_REPORT_ID = inserted.WORK_REPORT_ID); END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_ACT_CODE_I_S_I_TR ON HMR_ACTIVITY_CODE INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_ACTIVITY_CODE ("ACTIVITY_CODE_ID", "ACTIVITY_NUMBER", "ACTIVITY_NAME", "UNIT_OF_MEASURE", "MAINTENANCE_TYPE", "LOCATION_CODE_ID", "POINT_LINE_FEATURE", "ACTIVITY_APPLICATION", "END_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY") select "ACTIVITY_CODE_ID", "ACTIVITY_NUMBER", "ACTIVITY_NAME", "UNIT_OF_MEASURE", "MAINTENANCE_TYPE", "LOCATION_CODE_ID", "POINT_LINE_FEATURE", "ACTIVITY_APPLICATION", "END_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_CODE_LKUP_I_S_I_TR ON HMR_CODE_LOOKUP INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_CODE_LOOKUP ("CODE_LOOKUP_ID", "CODE_SET", "CODE_NAME", "CODE_VALUE_TEXT", "CODE_VALUE_NUM", "CODE_VALUE_FORMAT", "DISPLAY_ORDER", "END_DATE", "CONCURRENCY_CONTROL_NUMBER") select "CODE_LOOKUP_ID", "CODE_SET", "CODE_NAME", "CODE_VALUE_TEXT", "CODE_VALUE_NUM", "CODE_VALUE_FORMAT", "DISPLAY_ORDER", "END_DATE", "CONCURRENCY_CONTROL_NUMBER" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_CNRT_TRM_I_S_I_TR ON HMR_CONTRACT_TERM INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_CONTRACT_TERM ("CONTRACT_TERM_ID", "CONTRACT_NAME", "PARTY_ID", "SERVICE_AREA_NUMBER", "START_DATE", "END_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY") select "CONTRACT_TERM_ID", "CONTRACT_NAME", "PARTY_ID", "SERVICE_AREA_NUMBER", "START_DATE", "END_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_DIST_I_S_I_TR ON HMR_DISTRICT INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_DISTRICT ("DISTRICT_ID", "DISTRICT_NUMBER", "DISTRICT_NAME", "REGION_NUMBER", "CONCURRENCY_CONTROL_NUMBER") select "DISTRICT_ID", "DISTRICT_NUMBER", "DISTRICT_NAME", "REGION_NUMBER", "CONCURRENCY_CONTROL_NUMBER" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER FM5_I_S_I_TR ON HMR_FEEDBACK_MESSAGE INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_FEEDBACK_MESSAGE ("FEEDBACK_MESSAGE_ID", "SUBMISSION_OBJECT_ID", "COMMUNICATION_SUBJECT", "COMMUNICATION_TEXT", "COMMUNICATION_DATE", "IS_SENT", "IS_ERROR", "SEND_ERROR_TEXT", "CONCURRENCY_CONTROL_NUMBER") select "FEEDBACK_MESSAGE_ID", "SUBMISSION_OBJECT_ID", "COMMUNICATION_SUBJECT", "COMMUNICATION_TEXT", "COMMUNICATION_DATE", "IS_SENT", "IS_ERROR", "SEND_ERROR_TEXT", "CONCURRENCY_CONTROL_NUMBER" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_LOC_CODE_I_S_I_TR ON HMR_LOCATION_CODE INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_LOCATION_CODE ("LOCATION_CODE_ID", "LOCATION_CODE", "REQUIRED_LOCATION_DETAILS", "ADDITIONAL_INFO", "REPORTING_FREQUENCY", "CONCURRENCY_CONTROL_NUMBER") select "LOCATION_CODE_ID", "LOCATION_CODE", "REQUIRED_LOCATION_DETAILS", "ADDITIONAL_INFO", "REPORTING_FREQUENCY", "CONCURRENCY_CONTROL_NUMBER" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER MT7_I_S_I_TR ON HMR_MIME_TYPE INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_MIME_TYPE ("MIME_TYPE_ID", "MIME_TYPE_CODE", "DESCRIPTION", "CONCURRENCY_CONTROL_NUMBER") select "MIME_TYPE_ID", "MIME_TYPE_CODE", "DESCRIPTION", "CONCURRENCY_CONTROL_NUMBER" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_PRTY_I_S_I_TR ON HMR_PARTY INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_PARTY ("PARTY_ID", "BUSINESS_GUID", "BUSINESS_LEGAL_NAME", "DISPLAY_NAME", "EMAIL", "TELEPHONE", "BUSINESS_NUMBER", "PARTY_TYPE", "END_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY") select "PARTY_ID", "BUSINESS_GUID", "BUSINESS_LEGAL_NAME", "DISPLAY_NAME", "EMAIL", "TELEPHONE", "BUSINESS_NUMBER", "PARTY_TYPE", "END_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_PERM_I_S_I_TR ON HMR_PERMISSION INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_PERMISSION ("PERMISSION_ID", "NAME", "DESCRIPTION", "END_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY") select "PERMISSION_ID", "NAME", "DESCRIPTION", "END_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_RGN_I_S_I_TR ON HMR_REGION INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_REGION ("REGION_ID", "REGION_NUMBER", "REGION_NAME", "CONCURRENCY_CONTROL_NUMBER") select "REGION_ID", "REGION_NUMBER", "REGION_NAME", "CONCURRENCY_CONTROL_NUMBER" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_RCKFL_RPT_I_S_I_TR ON HMR_ROCKFALL_REPORT INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_ROCKFALL_REPORT ("ROCKFALL_REPORT_ID", "SUBMISSION_OBJECT_ID", "VALIDATION_STATUS_ID", "MAJOR_INCIDENT_NUMBER", "ESTIMATED_ROCKFALL_DATE", "ESTIMATED_ROCKFALL_TIME", "START_LATITUDE", "START_LONGITUDE", "END_LATITUDE", "END_LONGITUDE", "HIGHWAY_UNIQUE_NUMBER", "HIGHWAY_UNIQUE_NAME", "LANDMARK", "LAND_MARK_NAME", "START_OFFSET", "END_OFFSET", "DIRECTION_FROM_LANDMARK", "LOCATION_DESCRIPTION", "DITCH_VOLUME", "TRAVELLED_LANES_VOLUME", "OTHER_VOLUME", "HEAVY_PRECIP", "FREEZE_THAW", "DITCH_SNOW_ICE", "VEHICLE_DAMAGE", "COMMENTS", "REPORTER_NAME", "MC_PHONE_NUMBER", "REPORT_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY") select "ROCKFALL_REPORT_ID", "SUBMISSION_OBJECT_ID", "VALIDATION_STATUS_ID", "MAJOR_INCIDENT_NUMBER", "ESTIMATED_ROCKFALL_DATE", "ESTIMATED_ROCKFALL_TIME", "START_LATITUDE", "START_LONGITUDE", "END_LATITUDE", "END_LONGITUDE", "HIGHWAY_UNIQUE_NUMBER", "HIGHWAY_UNIQUE_NAME", "LANDMARK", "LAND_MARK_NAME", "START_OFFSET", "END_OFFSET", "DIRECTION_FROM_LANDMARK", "LOCATION_DESCRIPTION", "DITCH_VOLUME", "TRAVELLED_LANES_VOLUME", "OTHER_VOLUME", "HEAVY_PRECIP", "FREEZE_THAW", "DITCH_SNOW_ICE", "VEHICLE_DAMAGE", "COMMENTS", "REPORTER_NAME", "MC_PHONE_NUMBER", "REPORT_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_RL_I_S_I_TR ON HMR_ROLE INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_ROLE ("ROLE_ID", "NAME", "DESCRIPTION", "IS_INTERNAL", "END_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY") select "ROLE_ID", "NAME", "DESCRIPTION", "IS_INTERNAL", "END_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_RL_PERM_I_S_I_TR ON HMR_ROLE_PERMISSION INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_ROLE_PERMISSION ("ROLE_PERMISSION_ID", "ROLE_ID", "PERMISSION_ID", "END_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY") select "ROLE_PERMISSION_ID", "ROLE_ID", "PERMISSION_ID", "END_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_SRV_ARA_I_S_I_TR ON HMR_SERVICE_AREA INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_SERVICE_AREA ("SERVICE_AREA_ID", "SERVICE_AREA_NUMBER", "SERVICE_AREA_NAME", "DISTRICT_NUMBER", "CONCURRENCY_CONTROL_NUMBER") select "SERVICE_AREA_ID", "SERVICE_AREA_NUMBER", "SERVICE_AREA_NAME", "DISTRICT_NUMBER", "CONCURRENCY_CONTROL_NUMBER" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_SRV_ARA_USR_I_S_I_TR ON HMR_SERVICE_AREA_USER INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_SERVICE_AREA_USER ("SERVICE_AREA_USER_ID", "SERVICE_AREA_NUMBER", "SYSTEM_USER_ID", "END_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY") select "SERVICE_AREA_USER_ID", "SERVICE_AREA_NUMBER", "SYSTEM_USER_ID", "END_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_STR_ELMT_I_S_I_TR ON HMR_STREAM_ELEMENT INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_STREAM_ELEMENT ("STREAM_ELEMENT_ID", "SUBMISSION_STREAM_ID", "ELEMENT_NAME", "ELEMENT_TYPE", "STAGING_COLUMN_NAME", "IS_REQUIRED", "MAX_LENGTH", "MIN_LENGTH", "MAX_VALUE", "MIN_VALUE", "MAX_DATE", "MIN_DATE", "REG_EXP", "CODE_SET", "END_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY") select "STREAM_ELEMENT_ID", "SUBMISSION_STREAM_ID", "ELEMENT_NAME", "ELEMENT_TYPE", "STAGING_COLUMN_NAME", "IS_REQUIRED", "MAX_LENGTH", "MIN_LENGTH", "MAX_VALUE", "MIN_VALUE", "MAX_DATE", "MIN_DATE", "REG_EXP", "CODE_SET", "END_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_SUBM_OBJ_I_S_I_TR ON HMR_SUBMISSION_OBJECT INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_SUBMISSION_OBJECT ("SUBMISSION_OBJECT_ID", "FILE_NAME", "DIGITAL_REPRESENTATION", "MIME_TYPE_ID", "SUBMISSION_STATUS_ID", "SERVICE_AREA_NUMBER", "PARTY_ID", "FILE_HASH", "ERROR_DETAIL", "SUBMISSION_STREAM_ID", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY") select "SUBMISSION_OBJECT_ID", "FILE_NAME", "DIGITAL_REPRESENTATION", "MIME_TYPE_ID", "SUBMISSION_STATUS_ID", "SERVICE_AREA_NUMBER", "PARTY_ID", "FILE_HASH", "ERROR_DETAIL", "SUBMISSION_STREAM_ID", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_SUBM_RW_I_S_I_TR ON HMR_SUBMISSION_ROW INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_SUBMISSION_ROW ("ROW_ID", "SUBMISSION_OBJECT_ID", "ROW_STATUS_ID", "RECORD_NUMBER", "ROW_VALUE", "ROW_HASH", "ERROR_DETAIL", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY") select "ROW_ID", "SUBMISSION_OBJECT_ID", "ROW_STATUS_ID", "RECORD_NUMBER", "ROW_VALUE", "ROW_HASH", "ERROR_DETAIL", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER SS19_I_S_I_TR ON HMR_SUBMISSION_STATUS INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_SUBMISSION_STATUS ("STATUS_ID", "STATUS_CODE", "DESCRIPTION", "STATUS_TYPE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY") select "STATUS_ID", "STATUS_CODE", "DESCRIPTION", "STATUS_TYPE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_SUBM_STR_I_S_I_TR ON HMR_SUBMISSION_STREAM INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_SUBMISSION_STREAM ("SUBMISSION_STREAM_ID", "STREAM_NAME", "END_DATE", "FILE_SIZE_LIMIT", "STAGING_TABLE_NAME", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY") select "SUBMISSION_STREAM_ID", "STREAM_NAME", "END_DATE", "FILE_SIZE_LIMIT", "STAGING_TABLE_NAME", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_SYS_USR_I_S_I_TR ON HMR_SYSTEM_USER INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_SYSTEM_USER ("SYSTEM_USER_ID", "PARTY_ID", "USER_GUID", "USERNAME", "USER_DIRECTORY", "USER_TYPE", "FIRST_NAME", "LAST_NAME", "EMAIL", "BUSINESS_GUID", "BUSINESS_LEGAL_NAME", "END_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY") select "SYSTEM_USER_ID", "PARTY_ID", "USER_GUID", "USERNAME", "USER_DIRECTORY", "USER_TYPE", "FIRST_NAME", "LAST_NAME", "EMAIL", "BUSINESS_GUID", "BUSINESS_LEGAL_NAME", "END_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER SV22_I_S_I_TR ON HMR_SYSTEM_VALIDATION INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_SYSTEM_VALIDATION ("SYSTEM_VALIDATION_ID", "ENTITY_NAME", "ATTRIBUTE_NAME", "ATTRIBUTE_TYPE", "IS_REQUIRED", "MAX_LENGTH", "MIN_LENGTH", "MAX_VALUE", "MIN_VALUE", "MAX_DATE", "MIN_DATE", "REG_EXP", "CODE_SET", "END_DATE", "CONCURRENCY_CONTROL_NUMBER") select "SYSTEM_VALIDATION_ID", "ENTITY_NAME", "ATTRIBUTE_NAME", "ATTRIBUTE_TYPE", "IS_REQUIRED", "MAX_LENGTH", "MIN_LENGTH", "MAX_VALUE", "MIN_VALUE", "MAX_DATE", "MIN_DATE", "REG_EXP", "CODE_SET", "END_DATE", "CONCURRENCY_CONTROL_NUMBER" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_USR_RL_I_S_I_TR ON HMR_USER_ROLE INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_USER_ROLE ("USER_ROLE_ID", "ROLE_ID", "SYSTEM_USER_ID", "END_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY") select "USER_ROLE_ID", "ROLE_ID", "SYSTEM_USER_ID", "END_DATE", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_WLDLF_RPT_I_S_I_TR ON HMR_WILDLIFE_REPORT INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_WILDLIFE_REPORT ("WILDLIFE_RECORD_ID", "SUBMISSION_OBJECT_ID", "VALIDATION_STATUS_ID", "RECORD_TYPE", "SERVICE_AREA", "ACCIDENT_DATE", "TIME_OF_KILL", "LATITUDE", "LONGITUDE", "HIGHWAY_UNIQUE_NUMBER", "LANDMARK", "START_OFFSET", "NEAREST_TOWN", "WILDLIFE_SIGN", "QUANTITY", "SPECIES", "SEX", "AGE", "COMMENT", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY") select "WILDLIFE_RECORD_ID", "SUBMISSION_OBJECT_ID", "VALIDATION_STATUS_ID", "RECORD_TYPE", "SERVICE_AREA", "ACCIDENT_DATE", "TIME_OF_KILL", "LATITUDE", "LONGITUDE", "HIGHWAY_UNIQUE_NUMBER", "LANDMARK", "START_OFFSET", "NEAREST_TOWN", "WILDLIFE_SIGN", "QUANTITY", "SPECIES", "SEX", "AGE", "COMMENT", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go CREATE TRIGGER HMR_WRK_RPT_I_S_I_TR ON HMR_WORK_REPORT INSTEAD OF INSERT AS SET NOCOUNT ON BEGIN TRY IF NOT EXISTS(SELECT * FROM inserted) RETURN; insert into HMR_WORK_REPORT ("WORK_REPORT_ID", "SUBMISSION_OBJECT_ID", "VALIDATION_STATUS_ID", "RECORD_TYPE", "SERVICE_AREA", "RECORD_NUMBER", "TASK_NUMBER", "ACTIVITY_NUMBER", "START_DATE", "END_DATE", "ACCOMPLISHMENT", "UNIT_OF_MEASURE", "POSTED_DATE", "HIGHWAY_UNIQUE", "LANDMARK", "START_OFFSET", "END_OFFSET", "START_LATITUDE", "START_LONGITUDE", "END_LATITUDE", "END_LONGITUDE", "STRUCTURE_NUMBER", "SITE_NUMBER", "VALUE_OF_WORK ", "COMMENTS", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY") select "WORK_REPORT_ID", "SUBMISSION_OBJECT_ID", "VALIDATION_STATUS_ID", "RECORD_TYPE", "SERVICE_AREA", "RECORD_NUMBER", "TASK_NUMBER", "ACTIVITY_NUMBER", "START_DATE", "END_DATE", "ACCOMPLISHMENT", "UNIT_OF_MEASURE", "POSTED_DATE", "HIGHWAY_UNIQUE", "LANDMARK", "START_OFFSET", "END_OFFSET", "START_LATITUDE", "START_LONGITUDE", "END_LATITUDE", "END_LONGITUDE", "STRUCTURE_NUMBER", "SITE_NUMBER", "VALUE_OF_WORK ", "COMMENTS", "CONCURRENCY_CONTROL_NUMBER", "APP_CREATE_USERID", "APP_CREATE_TIMESTAMP", "APP_CREATE_USER_GUID", "APP_CREATE_USER_DIRECTORY", "APP_LAST_UPDATE_USERID", "APP_LAST_UPDATE_TIMESTAMP", "APP_LAST_UPDATE_USER_GUID", "APP_LAST_UPDATE_USER_DIRECTORY" from inserted; END TRY BEGIN CATCH IF @@trancount > 0 ROLLBACK TRANSACTION EXEC hmr_error_handling END CATCH; go
<gh_stars>10-100 ALTER TABLE document_template ADD COLUMN source_model_name varchar NOT NULL DEFAULT 'NOWApplicationIdentity'; ALTER TABLE document_template ALTER COLUMN source_model_name DROP NOT NULL; UPDATE document_template SET form_spec_json = '[ { "id": "letter_dt", "label": "Letter Date", "type": "DATE", "placeholder": null, "required": true }, { "id": "mine_no", "label": "Mine Number", "type": "FIELD", "placeholder": "Enter the mine number", "required": true, "relative-data-path": "mine.mine_no", "read-only": true }, { "id": "proponent_address", "label": "Proponent Address", "type": "FIELD", "placeholder": "Enter the propnent''s address", "required": true }, { "id": "proponent_name", "label": "Proponent Name", "type": "FIELD", "placeholder": "Enter the propnent''s name", "required": false }, { "id": "property", "label": "Property", "type": "FIELD", "placeholder": "Enter the property", "required": true, "relative-data-path": "now_application.property_name", "read-only": true }, { "id": "application_dt", "label": "Application Date", "type": "DATE", "placeholder": null, "required": true, "relative-data-path": "now_application.submitted_date" }, { "id": "inspector", "label": "Inspector", "type": "FIELD", "placeholder": "Enter the inspector''s name", "required": true, "relative-data-path": "now_application.lead_inspector.name" } ]' where document_template_code = 'NRL'; UPDATE document_template SET form_spec_json = '[ { "id": "letter_dt", "label": "Letter Date", "type": "DATE", "placeholder": null, "required": true }, { "id": "mine_no", "label": "Mine Number", "type": "FIELD", "placeholder": "Enter the mine number", "required": true, "relative-data-path": "mine.mine_no", "read-only": true }, { "id": "proponent_address", "label": "Proponent Address", "type": "FIELD", "placeholder": "Enter the propnent''s address", "required": true }, { "id": "proponent_name", "label": "Proponent Name", "type": "FIELD", "placeholder": "Enter the propnent''s name", "required": false }, { "id": "property", "label": "Property", "type": "FIELD", "placeholder": "Enter the property", "required": true, "relative-data-path": "now_application.property_name", "read-only": true }, { "id": "withdrawal_dt", "label": "Withdrawal Date", "type": "DATE", "placeholder": null, "required": true }, { "id": "inspector", "label": "Inspector", "type": "FIELD", "placeholder": "Enter the inspector''s name", "required": true, "relative-data-path": "now_application.lead_inspector.name" } ]' where document_template_code = 'NWL'; UPDATE document_template SET form_spec_json = '[ { "id": "letter_dt", "label": "Letter Date", "type": "DATE", "placeholder": null, "required": true }, { "id": "mine_no", "label": "Mine Number", "type": "FIELD", "placeholder": "Enter the mine number", "required": true, "relative-data-path": "mine.mine_no", "read-only": true }, { "id": "proponent_address", "label": "Proponent Address", "type": "FIELD", "placeholder": "Enter the propnent''s address", "required": true }, { "id": "proponent_name", "label": "Proponent Name", "type": "FIELD", "placeholder": "Enter the propnent''s name", "required": false }, { "id": "emailed_to", "label": "Emailed to", "type": "FIELD", "placeholder": "Enter the name of the email recipient", "required": false }, { "id": "property", "label": "Property", "type": "FIELD", "placeholder": "Enter the property", "required": true, "relative-data-path": "now_application.property_name", "read-only": true }, { "id": "application_dt", "label": "Application Date", "type": "DATE", "placeholder": null, "required": true, "relative-data-path": "now_application.submitted_date" }, { "id": "exploration_type", "label": "Exploration Type", "type": "FIELD", "placeholder": "Enter the exploration type", "required": true }, { "id": "bond_inc_amt", "label": "Bond Amount", "type": "FIELD", "placeholder": "Enter the bond amount", "required": true }, { "id": "inspector", "label": "Inspector", "type": "FIELD", "placeholder": "Enter the inspector''s name", "required": true, "relative-data-path": "now_application.lead_inspector.name" } ]' where document_template_code = 'NCL';
CREATE OR REPLACE FUNCTION maxSmallInt() RETURNS smallint AS $$ return (short)32767; $$ LANGUAGE plcsharp; SELECT maxSmallInt() = integer '32767'; CREATE OR REPLACE FUNCTION sum2SmallInt(a smallint, b smallint) RETURNS smallint AS $$ return (short)(a+b); //C# requires short cast $$ LANGUAGE plcsharp; SELECT sum2SmallInt(CAST(100 AS smallint), CAST(101 AS smallint)) = smallint '201'; CREATE OR REPLACE FUNCTION maxInteger() RETURNS integer AS $$ return 2147483647; $$ LANGUAGE plcsharp; SELECT maxInteger() = integer '2147483647'; CREATE OR REPLACE FUNCTION sum2Integer(a integer, b integer) RETURNS integer AS $$ return a+b; $$ LANGUAGE plcsharp; SELECT sum2Integer(32770, 100) = bigint '32870'; CREATE OR REPLACE FUNCTION maxBigInt() RETURNS bigint AS $$ return 9223372036854775807; $$ LANGUAGE plcsharp; SELECT maxBigInt() = bigint '9223372036854775807'; CREATE OR REPLACE FUNCTION sum2BigInt(a bigint, b bigint) RETURNS bigint AS $$ return a+b; $$ LANGUAGE plcsharp; SELECT sum2BigInt(9223372036854775707, 100) = bigint '9223372036854775807'; CREATE OR REPLACE FUNCTION mixedBigInt(a integer, b integer, c bigint) RETURNS bigint AS $$ return (long)a+(long)b+c; $$ LANGUAGE plcsharp; SELECT mixedBigInt(32767, 2147483647, 100) = bigint '2147516514'; CREATE OR REPLACE FUNCTION mixedInt(a smallint, b smallint, c integer) RETURNS integer AS $$ return (int)a+(int)b+c; $$ LANGUAGE plcsharp; SELECT mixedInt(CAST(32767 AS smallint), CAST(32767 AS smallint), 100) = integer '65634'; -- FIX: the results are incorrect when mixing smallints with bigint --CREATE OR REPLACE FUNCTION mixedBigInt8(b smallint, c bigint) RETURNS smallint AS $$ --return (short)(b+c); --$$ LANGUAGE plcsharp; --SELECT mixedBigInt8(CAST(32 AS SMALLINT), CAST(100 AS BIGINT));
{% if var('product_warehouse_event_sources') %} with events as ( select * from {{ ref('int_web_events') }} ), mapping as ( select distinct visitor_id as visitor_id, last_value(user_id ignore nulls) over ( partition by visitor_id order by event_ts rows between unbounded preceding and unbounded following ) as user_id, min(event_ts) over ( partition by visitor_id ) as first_seen_at, max(event_ts) over ( partition by visitor_id ) as last_seen_at from events ) select * from mapping {% else %} {{config(enabled=false)}} {% endif %}
-- start query 1 in stream 0 using template query1.tpl with customer_total_return as ( select sr_customer_sk as ctr_customer_sk, sr_store_sk as ctr_store_sk, sum(sr_return_amt) as ctr_total_return from store_returns, date_dim where sr_returned_date_sk = d_date_sk and d_year = 1998 group by sr_customer_sk, sr_store_sk ) select c_customer_id from customer_total_return ctr1, store, customer where ctr1.ctr_total_return > ( select avg(ctr_total_return) * 1.2 from customer_total_return ctr2 where ctr1.ctr_store_sk = ctr2.ctr_store_sk ) and s_store_sk = ctr1.ctr_store_sk and s_state = 'TN' and ctr1.ctr_customer_sk = c_customer_sk order by c_customer_id limit 100 -- end query 1 in stream 0 using template query1.tpl
ALTER TABLE `cot_reviews` ADD COLUMN `item_code` varchar(255) collate utf8_unicode_ci NOT NULL default ''; ALTER TABLE `cot_reviews` ADD COLUMN `item_area` varchar(64) collate utf8_unicode_ci NOT NULL default ''; UPDATE `cot_reviews` SET `item_area` = 'users';
--+ holdcas on; set system parameters 'dont_reuse_heap_file=yes'; create table t1(a char(1200), b varchar(1200), c nchar(1200), d NCHAR VARYING(1200), e BIT(1200), f BIT VARYING(1200), g int, h SMALLINT, i BIGINT, j NUMERIC, k FLOAT, l DOUBLE, m MONETARY, n DATE, o TIME, p TIMESTAMP, q DATETIME); insert into t1 values ( '1234567890', '1234567890', N'abc', N'ABC', B'1111111111', B'1111111111', 10, 255, 9223372036854775807, 0, 1.5678, -12.5678, -24, DATE '2008-10-31', TIME '17:18:19', TIMESTAMP '2010-01-01 06:53:45', DATETIME '2010-01-01 06:53:45'); insert into t1 values (null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null); --TEST Create failed create index i_t1_a2q on t1(TIMEDIFF(a,time '12:05:52')); --TEST Create failed create index i_t1_a2p on t1(TIMEDIFF(b,time '12:05:52')); --TEST Create failed create index i_t1_a2o on t1(TIMEDIFF(c,time '12:05:52')); --TEST Create failed create index i_t1_a2n on t1(TIMEDIFF(d,time '12:05:52')); --TEST Create failed create index i_t1_a2m on t1(TIMEDIFF(e,time '12:05:52')); --TEST Create failed create index i_t1_a2l on t1(TIMEDIFF(f,time '12:05:52')); --TEST Create failed create index i_t1_a2k on t1(TIMEDIFF(g,time '12:05:52')); --TEST Create failed create index i_t1_a2j on t1(TIMEDIFF(h,time '12:05:52')); --TEST Create failed create index i_t1_a2i on t1(TIMEDIFF(i,time '12:05:52')); --TEST Create failed create index i_t1_a2h on t1(TIMEDIFF(j,time '12:05:52')); --TEST Create failed create index i_t1_a2g on t1(TIMEDIFF(k,time '12:05:52')); --TEST Create failed create index i_t1_a2f on t1(TIMEDIFF(l,time '12:05:52')); --TEST Create failed create index i_t1_a2e on t1(TIMEDIFF(m,time '12:05:52')); --TEST Create failed create index i_t1_a2d on t1(TIMEDIFF(n,o)); --TEST Create failed create index i_t1_a2d on t1(TIMEDIFF(n,p)); --TEST Create failed create index i_t1_a2d on t1(TIMEDIFF(n,q)); --TEST Create successfully create index i_t1_a2d on t1(TIMEDIFF(n,DATE '2008-10-29')); --TEST: should use index i_t1_a2d select /*+ RECOMPILE */* from t1 where TIMEDIFF(n,DATE '2008-10-29') is null ; --TEST Create failed create index i_t1_a2c on t1(TIMEDIFF(o,p)); --TEST Create failed create index i_t1_a2c on t1(TIMEDIFF(o,q)); --TEST Create successfully create index i_t1_a2c on t1(TIMEDIFF(o,time'12:05:52')); --TEST: should use index i_t1_a2c select /*+ RECOMPILE */* from t1 where TIMEDIFF(o,time'12:05:52')=time'05:12:27 AM' ; --TEST Create failed create index i_t1_a2b on t1(TIMEDIFF(p,q)); --TEST Create successfully create index i_t1_a2b on t1(TIMEDIFF(p,Timestamp'2010-01-01 03:04:05')); --TEST: should use index i_t1_a2b select /*+ RECOMPILE */* from t1 where TIMEDIFF(p)>=time'03:49:40 AM' ; --TEST Create failed create index i_t1_a2a on t1(TIMEDIFF(q,'2010-01-01 03:04:05')); --TEST Create failed create index i_t1_a2a on t1(TIMEDIFF(q,Timestamp'2010-01-01 03:04:05')); --TEST Create successfully create index i_t1_a2a on t1(TIMEDIFF(q,DATETIME'2010-01-01 03:04:05')); --TEST: should use index i_t1_a2a select /*+ RECOMPILE */* from t1 where TIMEDIFF(q) <='03:49:40 AM' ; drop table t1; set system parameters 'dont_reuse_heap_file=no'; commit; --+ holdcas off;
<filename>sql/_13_issues/_12_2h/cases/bug_bts_6654.sql --+ holdcas on; set system parameters 'dont_reuse_heap_file=yes'; create table t1( a char(1200), b varchar(1200), c nchar(1200), d NCHAR VARYING(1200), e BIT(1200), f BIT VARYING(1200), g int, h SMALLINT, i BIGINT, j NUMERIC, k FLOAT, l DOUBLE, m MONETARY, n DATE, o TIME, p TIMESTAMP, q DATETIME ); insert into t1 values ( '1234567890', '1234567890', N'abc', N'ABC', B'1111111111', B'1111111111', 10, 255, 9223372036854775807, 0, 0, 0, -100, DATE '2008-10-31', TIME '00:00:00', TIMESTAMP '2010-10-31 01:15:45', DATETIME '2008-10-31 13:15:45'); create index idx on t1 (g) where g > 0 AND g < 1000; select /*+ recompile */ g from t1 where g > 0 AND g < 1000 using index idx(+); drop index idx on t1; create index idx on t1(g) where g BETWEEN 0 and 1000; select /*+ recompile */ g from t1 where g between 0 AND 1000 using index idx(+); drop index idx on t1; create index idx on t1(g) where g NOT BETWEEN 10000 and 100000; select /*+ recompile */ g from t1 where g not between 10000 and 100000 using index idx(+); drop index idx on t1; create index idx on t1(a) where a like '123%'; select /*+ recompile */ g from t1 where a like '123%' using index idx(+); drop index idx on t1; create index idx on t1(a) where a not like '456%'; select /*+ recompile */ g from t1 where a not like '456%' using index idx(+); drop index idx on t1; create index idx on t1(g) where g not in (1,2,3,4,5,6,7,8,9,11); select /*+ recompile */ g from t1 where g not in (1,2,3,4,5,6,7,8,9,11) using index idx(+); drop index idx on t1; create index idx on t1(g, h) where (g < 0 and h < 10) is false; select /*+ recompile */ g, h from t1 where (g < 0 and h < 10) is false using index idx(+); drop index idx on t1; create index idx on t1(g, h) where (g < 0 and h < 10) is not true; select /*+ recompile */ g, h from t1 where (g < 0 and h < 10) is not true using index idx(+); drop index idx on t1; create index idx on t1(g) where g = any {1,2,3,4,5,6,7,8,9,10,11}; select /*+ recompile */ g from t1 where g = any {1,2,3,4,5,6,7,8,9,10,11} using index idx(+); drop index idx on t1; create index idx on t1(g) where g = all {10}; select /*+ recompile */ g from t1 where g = all {10} using index idx(+); drop index idx on t1; create index idx on t1(g) where g > any {1,2,3,4,5,6,7}; select /*+ recompile */ g from t1 where g > any {1,2,3,4,5,6,7} using index idx(+); drop index idx on t1; create index idx on t1(g) where g > all {1,2,3,4,5,6,7}; select /*+ recompile */ g from t1 where g > all {1,2,3,4,5,6,7} using index idx(+); drop index idx on t1; create index idx on t1(g) where g < any {11,12,13,14,15,16,17}; select /*+ recompile */ g from t1 where g < any {11,12,13,14,15,16,17} using index idx(+); drop index idx on t1; create index idx on t1(g) where g < all {11,12,13,14,15,16,17}; select /*+ recompile */ g from t1 where g < all {11,12,13,14,15,16,17} using index idx(+); drop index idx on t1; create index idx on t1(g) where g >= any {1,2,3,4,5,6,7}; select /*+ recompile */ g from t1 where g >= any {1,2,3,4,5,6,7} using index idx(+); drop index idx on t1; create index idx on t1(g) where g >= all {1,2,3,4,5,6,7}; select /*+ recompile */ g from t1 where g >= all {1,2,3,4,5,6,7} using index idx(+); drop index idx on t1; create index idx on t1(g) where g <= any {11,12,13,14,15,16,17}; select /*+ recompile */ g from t1 where g <= any {11,12,13,14,15,16,17} using index idx(+); drop index idx on t1; create index idx on t1(g) where g <= all {11,12,13,14,15,16,17}; select /*+ recompile */ g from t1 where g <= all {11,12,13,14,15,16,17} using index idx(+); drop index idx on t1; create index idx on t1(g) where g > 0; select /*+ recompile */ g from t1 where g > 0 using index idx(+); drop index idx on t1; create index idx on t1(g) where g = 0; select /*+ recompile */ g from t1 where g = 0 using index idx(+); drop index idx on t1; create index idx on t1(g) where g < 1000; select /*+ recompile */ g from t1 where g < 1000 using index idx(+); drop index idx on t1; create index idx on t1(g) where g >= 0; select /*+ recompile */ g from t1 where g >= 0 using index idx(+); drop index idx on t1; create index idx on t1(g) where g <= 1000; select /*+ recompile */ g from t1 where g <= 1000 using index idx(+); drop index idx on t1; create index idx on t1(g) where g - 1 >= 0; select /*+ recompile */ g from t1 where g - 1 >= 0 using index idx(+); drop index idx on t1; create index idx on t1(g) where g + 1 >= 0; select /*+ recompile */ g from t1 where g + 1 >= 0 using index idx(+); drop index idx on t1; create index idx on t1(g) where g * 2 >= 0; select /*+ recompile */ g from t1 where g * 2 >= 0 using index idx(+); drop index idx on t1; create index idx on t1(g) where g / 2 >= 0; select /*+ recompile */ g from t1 where g / 2 >= 0 using index idx(+); drop index idx on t1; create index idx on t1(g) where -g <= 0; select /*+ recompile */ g from t1 where -g >= 0 using index idx(+); drop index idx on t1; drop table t1; commit; set system parameters 'dont_reuse_heap_file=no'; --+ holdcas off;
<reponame>opengauss-mirror/Yat<gh_stars>0 -- @testpoint:opengauss关键字parameter_mode(非保留),作为表空间名 --关键字不带引号,创建成功 drop tablespace if exists parameter_mode; CREATE TABLESPACE parameter_mode RELATIVE LOCATION 'hdfs_tablespace/hdfs_tablespace_1'; drop tablespace parameter_mode; --关键字带双引号,创建成功 drop tablespace if exists "parameter_mode"; CREATE TABLESPACE "parameter_mode" RELATIVE LOCATION 'hdfs_tablespace/hdfs_tablespace_1'; drop tablespace "parameter_mode"; --关键字带单引号,合理报错 drop tablespace if exists 'parameter_mode'; CREATE TABLESPACE 'parameter_mode' RELATIVE LOCATION 'hdfs_tablespace/hdfs_tablespace_1'; --关键字带反引号,合理报错 drop tablespace if exists `parameter_mode`; CREATE TABLESPACE `parameter_mode` RELATIVE LOCATION 'hdfs_tablespace/hdfs_tablespace_1';
<gh_stars>0 BEGIN; INSERT INTO geo.stations( station_code, label, geometry, district_code, department_code, province_code, z_coord ) SELECT station_code, label, ST_Transform(ST_SetSRID(ST_MakePoint(x_coord, y_coord),2154),4326) as geometry, -- we convert lambert 93 projection to WS84 district_code, department_code, province_code, z_coord FROM raw.stations WHERE projection_type='26' -- we filter to get the land in Europe only (no remote island) ; INSERT INTO geo.temperature_samples( station_code, year, month, avg_temperature ) SELECT station_code, extract(year from sample_date::timestamp) as year, extract(month from sample_date::timestamp) as month, avg(temperature) as avg_temperature FROM raw.temperature_samples JOIN geo.stations USING (station_code) GROUP BY station_code, extract(year from sample_date::timestamp), extract(month from sample_date::timestamp) ; WITH voronoi AS ( SELECT (ST_Dump(ST_VoronoiPolygons(ST_Collect(geometry)))).geom as geom FROM geo.stations ), borders AS ( SELECT ST_Union(geometry) as geom FROM geo.admin_boundaries ), areas AS ( SELECT ST_Intersection(voronoi.geom, borders.geom) as geometry FROM voronoi, borders ) INSERT INTO geo.stations_areas(station_code, geometry) SELECT stations.station_code as station_code, areas.geometry as geometry FROM areas, geo.stations as stations WHERE ST_Intersects(areas.geometry, stations.geometry); COMMIT;
<reponame>KayoRenato/LaunchStore -- IF DATABASE EXIST BEFORE -- TASK 1 DROP SCHEMA public CASCADE; -- TASK 2 CREATE SCHEMA public; -- TASK 3 DROP DATABASE IF EXISTS launchstoredb; -- BEFORE CREATE SEEDS -- 1 TASK DROP RULE delete_product ON products_with_deleted; -- 2 TASK DELETE FROM orders; DELETE FROM products; DELETE FROM files; DELETE FROM users; -- 3 TASK - RESTART SEQUENCE FROM AUTO INCREMENT TABLES IDS ALTER SEQUENCE users_id_seq RESTART WITH 1; ALTER SEQUENCE products_with_deleted_id_seq RESTART WITH 1; ALTER SEQUENCE files_id_seq RESTART WITH 1; ALTER SEQUENCE orders_id_seq RESTART WITH 1; -- 4 TASK - RECREATE DELETE RULE CREATE OR REPLACE RULE delete_product AS ON DELETE TO products DO INSTEAD UPDATE products SET deleted_at = now() WHERE products.id = old.id -- CREATE DATABASE -- TASK 1 - CREATE DATABASE CREATE DATABASE launchstoredb; -- TASK 2 - CREATE TABLE CREATE TABLE "products_with_deleted" ( "id" SERIAL PRIMARY KEY, "category_id" int, "user_id" int, "name" text NOT NULL, "description" text NOT NULL, "old_price" int, "price" int NOT NULL, "quantity" int DEFAULT 0, "status" int DEFAULT 1, "created_at" timestamp DEFAULT (now()), "updated_at" timestamp DEFAULT (now()), "deleted_at" timestamp ); CREATE TABLE "categories" ( "id" SERIAL PRIMARY KEY, "name" text NOT NULL ); CREATE TABLE "files" ( "id" SERIAL PRIMARY KEY, "name" text, "path" text NOT NULL, "product_id" int ); CREATE TABLE "users" ( "id" SERIAL PRIMARY KEY, "name" text NOT NULL, "email" text UNIQUE NOT NULL, "password" text NOT NULL, "cpf_cnpj" text UNIQUE NOT NULL, "cep" text, "address" text, "created_at" timestamp DEFAULT (now()), "updated_at" timestamp DEFAULT (now()), "reset_token" text, "reset_token_expires" text ); CREATE TABLE "orders" ( "id" SERIAL PRIMARY KEY, "seller_id" int NOT NULL, "buyer_id" int NOT NULL, "product_id" int NOT NULL, "price" int NOT NULL, "quantity" int DEFAULT 0, "total" int NOT NULL, "status" text NOT NULL, "created_at" timestamp DEFAULT (now()), "updated_at" timestamp DEFAULT (now()) ); -- CONNECT PG SINGLE TABLE CREATE TABLE "session" ( "sid" varchar NOT NULL COLLATE "default", "sess" json NOT NULL, "expire" timestamp(6) NOT NULL ) WITH (OIDS=FALSE); CREATE INDEX "IDX_session_expire" ON "session" ("expire"); -- TASK 3 - CREATE FOREIGN KEY ALTER TABLE "products_with_deleted" ADD FOREIGN KEY ("category_id") REFERENCES "categories" ("id"); ALTER TABLE "products_with_deleted" ADD FOREIGN KEY ("user_id") REFERENCES "users" ("id") ON DELETE CASCADE; ALTER TABLE "files" ADD FOREIGN KEY ("product_id") REFERENCES "products_with_deleted" ("id") ON DELETE CASCADE; ALTER TABLE "orders" ADD FOREIGN KEY ("seller_id") REFERENCES "users" ("id"); ALTER TABLE "orders" ADD FOREIGN KEY ("buyer_id") REFERENCES "users" ("id"); ALTER TABLE "orders" ADD FOREIGN KEY ("product_id") REFERENCES "products_with_deleted" ("id"); -- TASK 4 - CREATE CONSTRAINT ALTER TABLE "session" ADD CONSTRAINT "session_pkey" PRIMARY KEY ("sid") NOT DEFERRABLE INITIALLY IMMEDIATE; -- TASK 5 - CREATE PROCEDURES CREATE FUNCTION trigger_set_timestamp() RETURNS TRIGGER AS $$ BEGIN NEW.updated_at = NOW(); RETURN NEW; END; $$ LANGUAGE plpgsql; -- TASK 6 - CREATETRIGGERS CREATE TRIGGER set_timestamp BEFORE UPDATE ON products_with_deleted FOR EACH ROW EXECUTE PROCEDURE trigger_set_timestamp(); CREATE TRIGGER set_timestamp BEFORE UPDATE ON users FOR EACH ROW EXECUTE PROCEDURE trigger_set_timestamp(); CREATE TRIGGER set_timestamp BEFORE UPDATE ON orders FOR EACH ROW EXECUTE PROCEDURE trigger_set_timestamp(); -- TASK 7 - INSERT DATA IN TABLE 'categories' INSERT INTO categories(name) VALUES ('Comida'); INSERT INTO categories(name) VALUES ('Eletrônicos'); INSERT INTO categories(name) VALUES ('Automovéis'); -- TASK 8 - CREATE SOFT DELETE CREATE OR REPLACE RULE delete_product AS ON DELETE TO products_with_deleted DO INSTEAD UPDATE products_with_deleted SET deleted_at = now() WHERE products_with_deleted.id = old.id -- TASK 9 - CREATE VIEW CREATE VIEW products AS SELECT * FROM product_with_deleted WHERE deleted_at IS NULL;
-- phpMyAdmin SQL Dump -- version 5.0.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Dec 17, 2020 at 08:04 AM -- Server version: 10.4.16-MariaDB -- PHP Version: 7.4.12 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `relationship` -- -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `categories` -- INSERT INTO `categories` (`id`, `name`, `slug`, `created_at`, `updated_at`) VALUES (1, 'Economics', 'economics', '2020-12-15 00:07:38', '2020-12-15 00:07:38'), (2, 'Politics', 'politics', '2020-12-15 00:07:45', '2020-12-15 00:07:45'), (3, 'International', 'international', '2020-12-15 00:07:54', '2020-12-15 00:07:54'); -- -------------------------------------------------------- -- -- Table structure for table `category_post` -- CREATE TABLE `category_post` ( `id` bigint(20) UNSIGNED NOT NULL, `post_id` int(10) UNSIGNED NOT NULL, `category_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `category_post` -- INSERT INTO `category_post` (`id`, `post_id`, `category_id`, `created_at`, `updated_at`) VALUES (1, 6, 1, NULL, NULL), (2, 6, 2, NULL, NULL), (3, 6, 3, NULL, NULL), (4, 7, 2, NULL, NULL), (5, 7, 3, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (12, '2014_10_12_000000_create_users_table', 1), (13, '2014_10_12_100000_create_password_resets_table', 1), (14, '2019_08_19_000000_create_failed_jobs_table', 1), (15, '2020_12_11_124803_create_posts_table', 1), (16, '2020_12_11_125939_create_categories_table', 1), (17, '2020_12_15_052656_create_category_post_table', 1); -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `posts` -- CREATE TABLE `posts` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `content` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `posts` -- INSERT INTO `posts` (`id`, `title`, `slug`, `content`, `created_at`, `updated_at`) VALUES (1, 'International Post', 'international-post', 'This is international post', '2020-12-15 00:20:10', '2020-12-15 00:20:10'), (2, 'Turekey won the game', 'turekey-won-the-game', 'Turkey has own the fight', '2020-12-15 00:28:06', '2020-12-15 00:28:06'), (3, 'Potato Price going heigh', 'potato-price-going-heigh', 'Postato price going very heigh day to day', '2020-12-15 00:41:50', '2020-12-15 00:41:50'), (4, 'test ecom', 'test-ecom', 'test post to test', '2020-12-15 00:47:55', '2020-12-15 00:47:55'), (5, 'test3', 'test3', 'fine test 4', '2020-12-15 00:54:45', '2020-12-15 00:54:45'), (6, 'test3', 'test3', 'fine test 4', '2020-12-15 00:55:28', '2020-12-15 00:55:28'), (7, 'test5 post', 'test5-post', 'This is test five post', '2020-12-16 06:43:44', '2020-12-16 06:43:44'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category_post` -- ALTER TABLE `category_post` ADD PRIMARY KEY (`id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indexes for table `posts` -- ALTER TABLE `posts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `category_post` -- ALTER TABLE `category_post` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18; -- -- AUTO_INCREMENT for table `posts` -- ALTER TABLE `posts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */;
<filename>CSharp DB Fundamentals MSSQL/BuildInFunctions/BuildInFunctions/08.CreateViewEmployeesHiredAfter2000Year.sql USE SoftUni GO CREATE VIEW v_EmployeesHiredAfter2000 AS SELECT FirstName, LastName FROM Employees WHERE DATEPART(YEAR, HireDate) > '2000'
CREATE TABLE IF NOT EXISTS `dmr-db-repeaters` ( `callsign` varchar(8) NOT NULL, `callsignid` int(11) NOT NULL, `qrg` float NOT NULL, `shift` float NOT NULL, `cc` tinyint(4) NOT NULL, `mix` tinyint(1) NOT NULL, `ctcss` float NOT NULL, `net` varchar(20) NOT NULL, `city` varchar(20) NOT NULL, `county` varchar(20) NOT NULL, `country` varchar(20) NOT NULL, `lat` double NOT NULL, `lon` double NOT NULL, PRIMARY KEY (`callsignid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `dmr-db-users` ( `callsign` varchar(8) NOT NULL, `callsignid` int(11) NOT NULL, `name` varchar(20) NOT NULL, `country` varchar(20) NOT NULL, PRIMARY KEY (`callsignid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
<gh_stars>0 USE base1; CREATE TABLE people ( id integer NOT NULL AUTO_INCREMENT primary key, first_name varchar(50), last_name varchar(80), email varchar(80), gender varchar(30), age int, notes text, employer_id int, is_admin boolean default 0 ); INSERT INTO people VALUES(1,'David','Precious','<EMAIL>','Male',29,'The author of Dancer::Plugin::SimpleCRUD. He would greatly appreciate any feedback!',1,1); INSERT INTO people VALUES(2,'John','Smith','<EMAIL>','Male',39,'A fictional person.',3, 0); INSERT INTO people VALUES(3,'Jane','Doe','<EMAIL>','Female',21,'Another fictional person.',1,1); INSERT INTO people VALUES(4,'Test','User','<EMAIL>','Male',18,'A test user.',2,0); INSERT INTO people VALUES(5,'John','Doe','<EMAIL>','Male',36,NULL,1,0); INSERT INTO people VALUES(6,'Jack','Doe','<EMAIL>','Male',52,NULL,1,0); INSERT INTO people VALUES(7,'Emma','Doe','<EMAIL>','Female',22,'Test!',1,0); INSERT INTO people VALUES(8,'Sophie','Doe','<EMAIL>','Female',21,'',1,0); INSERT INTO people VALUES(9,'Hayley','Doe','<EMAIL>','Female',19,NULL,1,0); INSERT INTO people VALUES(10,'Michelle','Doe','<EMAIL>','Female',29,NULL,1,0); INSERT INTO people VALUES(11,'Bob','Doe','<EMAIL>','Male',36,'Surprise - another test!',1,0); INSERT INTO people VALUES(12,'Burt','Bacharach','<EMAIL>','Male',84,'',2,0); CREATE TABLE employer ( id integer NOT NULL AUTO_INCREMENT primary key, name varchar(150) ); INSERT INTO employer VALUES(1,'ACME Ltd'); INSERT INTO employer VALUES(2,'Bob''s Widgets Ltd'); INSERT INTO employer VALUES(3,'Bertie''<NAME> PLC'); COMMIT;
# # copyright (c) Ionplus AG and contributors. all rights reserved. # licensed under the mit license. see license file in the project root for details. # create table isotope ( number int primary key auto_increment, name varchar(20) unique not null, name_markup varchar(30) not null ) engine=innodb; insert into isotope values (1, 'Al26', '^{26}Al'), (2, 'Be10', '^{10}Be'), (3, 'C14', '^{14}C'), (4, 'Ca41', '^{41}Ca'), (5, 'I129', '^{129}I'), (6, 'Pu', 'Pu'), (7, 'Si32', '^{32}Si'), (8, 'U', 'U');
-- drop table if exists campaign; -- drop table if exists scenario_cmd; -- drop table if exists cmd; -- create table migration ( -- id serial not null primary key, -- name text, -- date timestamptz not null default localtimestamp -- ); -- drop table if exists users; -- create table users ( -- id serial not null primary key, -- username text not null unique, -- passwd <PASSWORD> not null, -- name text not null, -- email text not null unique, -- rank int not null default 1, -- created timestamptz not null default localtimestamp, -- expires timestamptz not null default localtimestamp, -- channel int not null default 0, -- ip_address text not null default '', -- country text not null default '', -- bloglink text not null default '', -- notes text not null default '', -- banned bool not null default false, -- disqus bool not null default true, -- newsletter bool not null default true -- ); -- \i data/users.sql -- drop table if exists login; -- create unlogged table login ( -- user_id int not null, -- date timestamptz not null default localtimestamp, -- ip_address text not null default '', -- channel int not null default 0, -- up bool default true -- ); -- create index login_date_idx on login(date); -- create index login_user_idx on login(user_id,up); -- drop table if exists vcode; -- create unlogged table vcode ( -- uid int not null primary key, -- code text not null default '', -- expires timestamp default now() + interval '2 hour' -- ); drop table if exists user_rego; create table user_rego ( user_id int not null default 0, created timestamptz not null default localtimestamp, expires timestamptz not null default localtimestamp, charge numeric(8,2), receipt text not null default '' ); create index user_rego_idx on user_rego (user_id, created); drop table if exists stdimg; create table stdimg ( id serial not null primary key, code text not null default '', name text not null default '', photo text not null default '', preview text not null default '', thumb text not null default '' ); \i data/stdimg.sql -- create extension ltree; -- create extension postgis; -- create extension cube; -- create extension earthdistance; -- cmd levels -- 1 Army -- 2 Corps -- 3 Division -- 4 Brigade -- 5 Battalion drop table if exists cmd_level; create table cmd_level ( id serial not null primary key, name text not null default '' ); \i data/cmd_level.sql drop table if exists cmd_rating; create table cmd_rating ( id serial not null primary key, name text not null default '', effect int not null default 0 ); \i data/cmd_rating.sql drop table if exists inspiration; create table inspiration ( id serial not null primary key, name text not null default '', effect int not null default 0 ); \i data/inspiration.sql drop table if exists condition; create table condition ( id serial not null primary key, name text not null default '', effect int not null default 0 ); \i data/condition.sql drop table if exists gt_formation; create table gt_formation ( id serial not null primary key, name text, speed int, cav_defence bool, march bool, static bool ); \i data/gt_formation.sql -- unit type -- 1 Command -- 2 Infantry Brigade -- 3 Cavalry Brigade -- 4 Artillery Reserve -- 5 Other / Asset drop table if exists utype; create table utype ( id serial not null primary key, name text not null default '' ); \i data/utype.sql -- ratings -- 1 Guard -- 2 Grenadier -- 3 Elite -- 4 Crack Line -- 5 Regular Line -- 6 2nd Rate / Reserve Line -- 7 Conscript -- 8 Landwehr -- 9 Militia -- 10 Rabble drop table if exists rating; create table rating ( id serial not null primary key, name text not null default '', code text not null default '', shock bool, form_close bool, form_engage bool, sk_close bool, attack_superior bool, attack_guns bool, fire_bonus int not null default 0, melee_bonus int not null default 0, ammo int not null default 10 ); \i data/rating.sql -- Drill -- 1 Old School Linear -- 2 Conscript -- 3 Reformed Prussian System -- 4 French System -- 5 British System drop table if exists drill; create table drill ( id serial not null primary key, name text not null default '', ranks int not null default 3, flankers bool, elite_coy bool, third_rank bool, open_order bool, line bool, lines bool, mixed bool, att_col bool, close_col bool, oblique bool, square bool, mob bool, control int not null default 1, speed int not null default 1 ); \i data/drill.sql drop table if exists small_arms; create table small_arms ( id serial not null primary key, name text not null default '', ranges int[4], effects int[4][6], covered int[4][6] ); \i data/small_arms.sql drop table if exists gunnery; create table gunnery ( id serial not null primary key, name text not null default '', cannister int[3][6], cannister_bad int[3][6], ranges int[4], good_effect int[4][6], bad_effect int[4][6], hw bool ); \i data/gunnery.sql drop table if exists cav_type; create table cav_type ( id serial not null primary key, name text not null default '', weight int not null default 1, -- Light Medium Heavy battle bool, lances bool, dragoon bool, cossack bool, dubious bool ); \i data/cav_type.sql drop table if exists cmd_action; create table cmd_action ( id serial not null primary key, descr text not null default '', chance int not null default 1, -- -1 each attempt, -1 repulsed, -2 defeated, -1 engaged rank int not null default 0, level int not null default 0, attach bool, cav bool, gun bool, sk bool, bayonet bool, not_engaged bool, engaged bool, repulsed bool, defeated bool ); \i data/cmd_action.sql; drop table if exists orders; create table orders ( id serial not null primary key, name text not null default '', min_rank int not null default 0, objective bool, enemy_unit bool, friendly_unit bool ); \i data/orders.sql -- Scenario Level Data drop table if exists scenario; create table scenario ( id serial not null primary key, campaign_id int not null default 0, author_id int not null default 0, created timestamptz not null default localtimestamp, forked_from int not null default 0, name text not null default '', descr text not null default '', notes text not null default '', year int not null default 1800, public bool default false, review bool default false, latlon point, red_team text not null default '', red_brief text not null default '', blue_team text not null default '', blue_brief text not null default '' ); \i data/scenario.sql -- drop index if exists scenario_campaign_idx; -- create index scenario_campaign_idx on scenario (campaign_id); drop index if exists scenario_author_idx; create index scenario_author_idx on scenario (author_id); drop table if exists force; create table force ( id serial not null primary key, scenario_id int not null default 0, red_team bool, blue_team bool, nation text not null default '', name text not null default '', commander_name text not null default '', level int not null default 1, descr text not null default '', rating int not null default 0, inspiration int not null default 0, condition int not null default 2 ); \i data/force.sql drop index if exists force_scenario_idx; create index force_scenario_idx on force (scenario_id); drop table if exists force_unit; create table force_unit ( id serial not null primary key, force_id int not null, path ltree, name text not null default '', descr text not null default '', commander_name text not null default '', nation text not null default '', utype int not null default 1, cmd_level int not null default 1, drill int not null default 1, bayonets int not null default 0, small_arms int not null default 0, elite_arms int not null default 0, lt_coy int not null default 0, jg_coy int not null default 0, rating int not null default 5, sabres int not null default 0, cav_type int not null default 0, cav_rating int not null default 0, guns int not null default 0, gunnery_type int not null default 0, gun_condition int not null default 2, horse_guns bool default false ); \i data/force_unit.sql drop index if exists force_unit_force_idx; create index force_unit_force_idx on force_unit (force_id); -- Game Level Data -- All data from here on is mostly temporary, and those -- files which take lots of small updates are set to unlogged for speed drop table if exists game; create table game ( id serial not null primary key, scenario_id int not null, hosted_by int not null default 0, created timestamptz not null default localtimestamp, start_date timestamptz not null default localtimestamp, expires timestamptz not null default localtimestamp, started bool not null default false, stopped bool not null default false, paused bool not null default false, turn int not null default 1, phase int not null default 0, turn_limit int not null default 12, name text not null default '', descr text not null default '', notes text not null default '', year int not null default 1800, latlon point, red_team text not null default '', red_brief text not null default '', blue_team text not null default '', blue_brief text not null default '', table_x int not null default 6, table_y int not null default 4, grid_size int not null default 6, check_table bool default false, check_objectives bool default false, check_forces bool default false, check_players bool default false, check_connected bool default false, red_flip bool not null default false, blue_flip bool not null default true ); \i data/game.sql create index game_scenario_idx on game (scenario_id); drop table if exists game_objective; create table game_objective ( game_id int not null, name text not null default '', X int not null default 0, Y int not null default 0, vp_per_turn int not null default 1, red_vp int not null default 20, blue_vp int not null default 20, current_owner int not null default 0 -- 0 = unclaimed, -1 red, 1 blue ); \i data/game_objective.sql create index obj_game_idx on game_objective (game_id); drop table if exists tiles; create table tiles ( game_id int not null, i int not null, height int, content int, owner int ); \i data/tiles.sql create index tiles_game_idx on tiles (game_id,i); drop table if exists game_condition; -- TODO create table drop table if exists game_players; create table game_players ( game_id int not null, player_id int not null, red_team bool not null default false, blue_team bool not null default false, accepted bool not null default false, connected bool not null default false ); \i data/game_players.sql create unique index game_player_game_idx on game_players (game_id, player_id); create unique index game_player_player_idx on game_players (player_id,game_id); drop table if exists game_cmd; create table game_cmd ( id serial not null primary key, game_id int not null default 0, start_turn int not null default 1, start_x int not null default -1, start_y int not null default -1, red_team bool not null default false, blue_team bool not null default false, nation text not null default '', name text not null default '', commander_name text not null default '', level int not null default 1, descr text not null default '', rating int not null default 0, inspiration int not null default 0, condition int not null default 2, player_id int not null default 0, player_ready bool not null default 'f', vp int not null default 0, cull bool not null default 't', wait bool not null default false, cstate int not null default 0, -- 0 = reserve, 1 = march order, 2 = battle line dstate int not null default 0, cx int not null default -1, cy int not null default -1, dx int not null default -1, dy int not null default -1, prep_defence bool not null default false, contact bool not null default false, seen bool not null default false ); \i data/game_cmd.sql create index game_cmd_game_idx on game_cmd (game_id); drop table if exists game_cmd_order; create table game_cmd_order ( game_id int not null, cmd_id int not null, turns int not null default 2, -- Once hits 0, stick. If counts down to 0, replaces existing new_order int not null, objective int not null default 0, enemy int not null default 0, friend int not null default 0 ); \i data/game_cmd_order.sql drop index if exists game_cmd_order_game_idx; drop index if exists game_cmd_order_cmd_idx; create index game_cmd_order_game_idx on game_cmd_order (game_id); create index game_cmd_order_cmd_idx on game_cmd_order (cmd_id); drop table if exists game_cmd_player; drop table if exists game_unit; drop table if exists unit; create table unit ( id serial not null primary key, cmd_id int not null, game_id int not null, path ltree, name text not null default '', descr text not null default '', commander_name text not null default '', commander_control int not null default 10, -- 0-10 = remaining control points to spend -1 = injured, -2 = dead nation text not null default '', utype int not null default 1, condition int not null default 2, cmd_level int not null default 1, drill int not null default 1, formation int not null default 0, sk_out bool not null default false, woods bool not null default false, rough bool not null default false, cover bool not null default false, has_support bool not null default false, bayonets int not null default 0, bayonets_lost int not null default 0, bayonets_mstate int not null default 0, -- 0 Good 1,2 Repulsed 3,4,5,6 Defeated 12 TotalDefeat bayonets_moved bool not null default false, bayonets_fired bool not null default false, small_arms int not null default 0, elite_arms int not null default 0, lt_coy int not null default 0, jg_coy int not null default 0, rifles bool not null default false, lt_lost int not null default 0, lt_mstate int not null default 0, -- 0 Good 1,2 Repulsed 3,4,5,6 Defeated 12 TotalDefeat rating int not null default 5, sabres int not null default 0, sabres_lost int not null default 0, sabres_mstate int not null default 0, sabres_charged int not null default 0, -- 3,2,1 Blown 0 Fresh cav_type int not null default 0, cav_rating int not null default 0, guns int not null default 0, guns_lost int not null default 0, guns_fired bool not null default false, guns_moved bool not null default false, guns_limbered bool not null default false, guns_mstate int not null default 0, gunnery_type int not null default 0, horse_guns bool not null default false, gun_max_condition int not null default 2, gun_condition int not null default 2, mstate int not null default -1, -- -1 pregame, otherwise, num 2min turns till recovered role int not null default 0, d_role int not null default 0, orders int not null default 0, ammo int not null default 12 ); \i data/unit.sql create index unit_cmd_idx on unit (cmd_id); create index unit_game_idx on unit (game_id); drop table if exists bombard; create unlogged table bombard ( unit_id int not null primary key, id int not null default 1, game_id int not null, firer_id int not null, target_id int not null, target_uid int not null default 0, range_max int not null default 0, range_min int not null default 0, disputed bool not null default false ); create index bombard_player on bombard (target_id); drop table if exists contact_message; create table contact_message ( id serial not null primary key, user_id int, date timestamptz not null default localtimestamp, ref_id int, email_to text not null default '', subject text not null default '', message text not null default '' ); create index contact_user_idx on contact_message (user_id, date); drop table if exists paypal; create table paypal ( id serial not null primary key, payment_id text not null default '', payer_id text not null default '', token text not null default '', amount numeric(8,2) not null default 0, created timestamptz not null default localtimestamp, user_id int not null default 0, channel int not null default 0, sale_id text not null default '', approved bool not null default false, descr text not null default '', rank int not null default 1, months int not null default 1, end_date date not null ); create unique index paypal_payment_idx on paypal (payment_id); drop table if exists fight; create unlogged table fight ( id serial not null primary key, game_id int not null default 0, name text not null default '', rough bool not null default false, woods bool not null default false, built bool not null default false, fort bool not null default false ); create unique index fight_idx on fight (game_id, id); drop table if exists fight_unit; create unlogged table fight_unit ( game_id int not null default 0, id int not null default 0, unit_id int not null default 0 ); create unique index fight_unit_idx on fight_unit (id, unit_id);
<reponame>HSHL/Thesis -- phpMyAdmin SQL Dump -- version 4.6.1 -- http://www.phpmyadmin.net -- -- Host: localhost -- Erstellungszeit: 28. Mai 2016 um 19:19 -- Server-Version: 5.6.24 -- PHP-Version: 5.6.8 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Datenbank: `thesis` -- -- -------------------------------------------------------- -- -- Tabellenstruktur für Tabelle `topics` -- CREATE TABLE `topics` ( `topic_id` int(11) NOT NULL, `publish_date` date NOT NULL, `finish_date` date NOT NULL, `title` varchar(100) NOT NULL, `description` text NOT NULL, `status` int(11) NOT NULL, `advisor_id` int(11) NOT NULL, `student_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Daten für Tabelle `topics` -- INSERT INTO `topics` (`topic_id`, `publish_date`, `finish_date`, `title`, `description`, `status`, `advisor_id`, `student_id`) VALUES (1, '2016-05-01', '0000-00-00', 'BitCoin', '<p>BitCoin ist eine digitale Währung, ohne zentrale Kontrollinstanz. Transaktionen werden in einem offenen Peer-to-Peer-Netzwerk abgebildet. Es kommen verschiedene Verschlüsselungsverfahren zum Einsatz.\r\nIn der Arbeit soll ein technischer Überblick über BitCoin gegeben werden.\r\n</p><ul><li>Wie bekommt man Zugang zu BitCoins?</li><li>Wie entstehen Tauschbörsen zwischen z.B. € und BitCoin?</li><li>Wie hat sich der Wert entwickelt?</li></ul>', 0, 1, 0), (2, '2016-05-01', '0000-00-00', 'Aufblasbarer Kindersitz', '<p>Eltern von kleinen Kindern haben auf Reisen oft das Problem, dass vor Ort keine Kindersitze zur Verfügung stehen (z.B. Taxifahrt, Leihwagen, …).</p><p>\r\nEs ist anhand einer Marktuntersuchung festzustellen, ob aufblasbare Kindersitze eine reelle Marktchance hätten. Dabei sollten in der Arbeit die folgenden Fragen bearbeitet werden:</p><ul><li>Wie groß ist der Markt?</li><li>Was darf ein solcher Sitz maximal kosten?</li><li>Sind bereits Produkte, Gebrauchsmuster oder Patente vorhanden?</li><li>Welche Regelungen müssten eingehalten werden?</li><li>Welche Zulassungsprozesse sind zu durchlaufen?</li><li>Wie könnte eine technische Realisierung aussehen?</li><li>Welche Vermarktungsstrategie ist denkbar?</li><li>Was sind potentielle Vertriebs- bzw. Herstellungspartner?</li></ul>', 0, 1, 0); -- -------------------------------------------------------- -- -- Tabellenstruktur für Tabelle `users` -- CREATE TABLE `users` ( `user_id` int(11) NOT NULL, `firstname` varchar(100) NOT NULL, `lastname` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `password_hash` varchar(100) NOT NULL, `is_advisor` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Daten für Tabelle `users` -- INSERT INTO `users` (`user_id`, `firstname`, `lastname`, `email`, `password_hash`, `is_advisor`) VALUES (1, 'Alexander', 'Stuckenholz', '<EMAIL>', '<PASSWORD>', 1); -- -- Indizes der exportierten Tabellen -- -- -- Indizes für die Tabelle `topics` -- ALTER TABLE `topics` ADD PRIMARY KEY (`topic_id`); -- -- Indizes für die Tabelle `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`user_id`), ADD UNIQUE KEY `email` (`email`); -- -- AUTO_INCREMENT für exportierte Tabellen -- -- -- AUTO_INCREMENT für Tabelle `topics` -- ALTER TABLE `topics` MODIFY `topic_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT für Tabelle `users` -- ALTER TABLE `users` MODIFY `user_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; /*!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 */;