sql
stringlengths
6
1.05M
CREATE TABLE IF NOT EXISTS `wzaccounts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `label` varchar(255) NOT NULL, `db_datasource` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `db_database` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `db_host` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `db_port` int(11) DEFAULT NULL, `db_login` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `db_password` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `db_prefix` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `db_persistent` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `db_schema` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `db_unixsocket` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `db_settings` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `ssl_key` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `ssl_cert` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `ssl_ca` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1; CREATE TABLE IF NOT EXISTS `wzusers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `password` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `fullname` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `email` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `timezone` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `role` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `status` int(1) NOT NULL DEFAULT '0', `verification_key` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `email_verified` int(1) NOT NULL DEFAULT '0', `admin_verified` int(1) NOT NULL DEFAULT '0', `retry_count` int(1) NOT NULL DEFAULT '0', `all_accounts` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2; CREATE TABLE IF NOT EXISTS `wzsettings` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sitename` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `drcr_toby` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `enable_logging` int(1) NOT NULL DEFAULT '0', `row_count` int(11) NOT NULL DEFAULT '10', `user_registration` int(1) NOT NULL DEFAULT '0', `admin_verification` int(1) NOT NULL DEFAULT '0', `email_verification` int(1) NOT NULL DEFAULT '0', `email_protocol` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `email_host` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `email_port` int(11) DEFAULT '0', `email_tls` int(1) DEFAULT '0', `email_username` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `email_password` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `email_from` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1; CREATE TABLE IF NOT EXISTS `wzuseraccounts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `wzuser_id` int(11) NOT NULL, `wzaccount_id` int(11) NOT NULL, `role` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1; INSERT INTO `wzusers` (`id`, `username`, `password`, `fullname`, `email`, `timezone`, `role`, `status`, `verification_key`, `email_verified`, `admin_verified`, `retry_count`, `all_accounts`) VALUES (1, 'admin', '', 'Administrator', '', 'UTC', 'admin', 1, '', 1, 1, 0, 1);
-- phpMyAdmin SQL Dump -- version 4.9.0.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Oct 16, 2019 at 10:59 AM -- Server version: 10.3.16-MariaDB -- PHP Version: 7.3.6 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: `kec` -- -- -------------------------------------------------------- -- -- Table structure for table `login` -- CREATE TABLE `login` ( `email` varchar(150) NOT NULL, `pwd` varchar(150) NOT NULL, `ques1` varchar(150) NOT NULL, `ans1` varchar(150) NOT NULL, `ques2` varchar(150) NOT NULL, `ans2` varchar(150) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `login` -- INSERT INTO `login` (`email`, `pwd`, `ques1`, `ans1`, `ques2`, `ans2`) VALUES ('<EMAIL>', 'nikhil', 'ok', 'ok', 'ok', 'ok'); -- -------------------------------------------------------- -- -- Table structure for table `registration` -- CREATE TABLE `registration` ( `Fname` varchar(150) NOT NULL, `email` varchar(150) NOT NULL, `mobile` decimal(10,0) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `registration` -- INSERT INTO `registration` (`Fname`, `email`, `mobile`) VALUES ('nikhil', '<EMAIL>', '9113110942'); -- -- Indexes for dumped tables -- -- -- Indexes for table `login` -- ALTER TABLE `login` ADD KEY `email` (`email`); -- -- Indexes for table `registration` -- ALTER TABLE `registration` ADD PRIMARY KEY (`email`); -- -- Constraints for dumped tables -- -- -- Constraints for table `login` -- ALTER TABLE `login` ADD CONSTRAINT `login_ibfk_1` FOREIGN KEY (`email`) REFERENCES `registration` (`email`); 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 */;
-- phpMyAdmin SQL Dump -- version 5.0.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Jul 20, 2020 at 06:50 AM -- Server version: 10.4.13-MariaDB -- PHP Version: 7.2.31 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: `phpcode` -- -- -------------------------------------------------------- -- -- Table structure for table `blogs` -- CREATE TABLE `blogs` ( `id` int(11) NOT NULL, `title` varchar(255) DEFAULT NULL, `blog_slug` varchar(255) NOT NULL, `picture` varchar(150) DEFAULT NULL, `category_id` int(11) DEFAULT NULL, `tag_id` varchar(50) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `created_by_id` int(11) DEFAULT NULL, `type` tinyint(4) DEFAULT NULL, `subtitle` varchar(500) DEFAULT NULL, `sub_category_id` varchar(100) DEFAULT NULL, `blog_type` tinyint(4) DEFAULT NULL, `paid_amount` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `blogs` -- INSERT INTO `blogs` (`id`, `title`, `blog_slug`, `picture`, `category_id`, `tag_id`, `created_at`, `updated_at`, `created_by_id`, `type`, `subtitle`, `sub_category_id`, `blog_type`, `paid_amount`) VALUES (15, 'sdfgsdf', 'blog-slug15', 'jpg', 1, '2', '2020-03-23 06:13:03', NULL, 1, NULL, 'sdfgsdf', '1', 1, 123), (19, 'serye', '', 'jpg', 1, '2', '2020-03-23 06:37:34', NULL, 1, NULL, 'asdfasd', '1', 2, 555), (22, 'dgfd', '', 'jpg', 1, '2', '2020-03-23 06:45:44', NULL, 1, NULL, 'sadfgsf', '1', 2, 6), (24, 'erghsd', '', 'jpg', 1, '2', '2020-03-23 06:59:09', NULL, 1, NULL, 'asdf', '1', 2, 44), (26, 'Second post title', '', 'jpg', 1, '2', '2020-03-23 16:00:13', NULL, 1, NULL, 'second subtitle', '1', 1, 0), (28, 'Second post ', '', 'jpg', 1, '2', '2020-03-23 16:12:24', NULL, 1, NULL, 'hasan', '1', 2, 44), (29, 'success', '', '', 1, '2', '2020-03-23 18:16:55', NULL, 1, NULL, 'asdfasd', '1', 1, 444), (30, 'success', '', 'jpg', 1, '2', '2020-03-23 18:17:49', NULL, 1, NULL, 'asdfasd', '1', 1, 444), (31, 'reygrdgd', '', NULL, 1, '2', '2020-03-24 14:26:23', NULL, 1, NULL, 'asdfasd', '1', 2, 4), (32, 'this is real blog', '', NULL, 1, '2', '2020-03-24 18:25:55', NULL, 1, NULL, 'this is real blog subtitle', '1', 2, 34), (34, 'final', '', '92335e7a47a3520451585072035_Screenshot_1.png', 4, '2', '2020-03-24 18:47:15', NULL, 1, NULL, 'final', '8', 2, 222222222), (35, 'asdfa', '', '48145e7a47d40cf0c1585072084_munna.jpg', 1, '2', '2020-03-24 18:48:04', NULL, 1, NULL, 'asdfasd', '1', 2, 33), (36, 'I am havpppasdfasd', '', '70155e7a48fbebc011585072379_munna.jpg', 3, '2', '2020-03-24 18:52:59', NULL, 1, NULL, 'how are you ', '7', 1, 0), (37, 'fineal', '', '14925e7a48b723d8c1585072311_nafisa.jpg', 3, '2', '2020-03-24 18:51:51', NULL, 1, NULL, 'fineal', '7', 2, 22), (38, 'image test', 'image test', 'Please upload file', 2, '2', '2020-06-22 12:09:17', NULL, 1, NULL, 'image test', '2', 1, 0), (39, 'asdfasdf', '', '61545e7a64e7560e01585079527_jeina.jpg', 3, '2', '2020-03-24 00:00:00', NULL, 1, NULL, 'asdfasd', '9', 2, 4), (40, 'hasan', '', '1', 4, '2', '2020-03-24 21:11:15', NULL, 1, NULL, 'hasan', '8', 2, 34), (41, 'hasan', '', '49335e7a69c00777e1585080768_Screenshot_4.png', 4, '2', '2020-03-24 21:12:48', NULL, 1, NULL, 'hasan', '8', 2, 34), (42, 'how are you ', '', '50625e7a6a0a8c54b1585080842_85242423_2548500625390301_6005296545409269760_o.jpg', 3, '2', '2020-03-24 21:14:02', NULL, 1, NULL, 'how are you ', '9', 2, 22), (44, 'What is Lorem Ipsum?', 'What is Lorem Ipsum?', '71535f0365eb8e0fe1594058219_blog_5.jpg', 3, '3', '2020-07-06 19:56:59', NULL, 1, NULL, 'What is Lorem Ipsum?', '9', 2, 10), (46, 'What is Lorem Ipsum?', '', '40345e7c58813b7e01585207425_graphic_design.png', 3, '2', '2020-03-26 08:23:45', NULL, 1, NULL, 'What is Lorem Ipsum?', '9', 1, 10), (47, 'What is Lorem Ipsum?', 'slug47', '15415e7c58987cdda1585207448_graphic_design.png', 3, '2', '2020-03-26 08:24:08', NULL, 1, NULL, 'What is Lorem Ipsum?', '9', 1, 10), (48, 'What is Lorem Ipsum?', 'slug48', '53285e7c59289017e1585207592_graphic_design.png', 3, '2', '2020-03-26 08:26:32', NULL, 1, NULL, 'What is Lorem Ipsum?', '9', 1, 10), (49, 'জীবনের লক্ষ্য নির্ধারণ ও স্থির করার উপায়: “সাকসেস ', 'জীবনের লক্ষ্য নির্ধারণ ও স্থির করার উপায়: “সাকসেস ', '69885ef081a19e85c1592820129_download_1.png', 1, '2', '2020-06-22 12:02:09', NULL, 1, NULL, 'জীবনের লক্ষ্য নির্ধারণ বা স্থির করতে হলে জানতে হবে', '1', 1, 10), (50, 'শেয়ারবাজারের ২২ কোম্পানির ৬১ পরিচালককে আলটিমেটাম', 'শেয়ারবাজারের ২২ কোম্পানির ৬১ পরিচালককে আলটিমেটাম', '19885f0299fa48a071594006010_blog_single_background.jpg', 1, '2', '2020-07-06 05:26:50', NULL, 1, NULL, 'শেয়ারবাজারের ২২ কোম্পানির ৬১ পরিচালককে আলটিমেটাম', '1', 1, 12), (51, 'শেয়ারবাজারের ২২ কোম্পানির ৬১ পরিচালককে আলটিমেটাম', 'শেয়ারবাজারের ২২ কোম্পানির ৬১ পরিচালককে আলটিমেটাম', '86325f02a6ac8ddaf1594009260_best_2.png', 1, '2', '2020-07-06 06:21:00', NULL, 1, NULL, 'শেয়ারবাজারের ২২ কোম্পানির ৬১ পরিচালককে আলটিমেটাম', '1', 1, 12), (52, ' তরুণদের এমনভাবে গড়তে হবে, যাতে দেশ হাজারো লতিফুর ', ' তরুণদের এমনভাবে গড়তে হবে, যাতে দেশ হাজারো লতিফুর ', '41155f02c158653f51594016088_adv_3.png', 0, '2', '2020-07-13 09:17:50', NULL, 1, NULL, ' তরুণদের এমনভাবে গড়তে হবে, যাতে দেশ হাজারো লতিফুর ', '2', 2, 12), (55, 'ক্ষুধার্তকে অন্ন দান অনেক সওয়াবের কাজ', 'ক্ষুধার্তকে অন্ন দান অনেক সওয়াবের কাজ', '48445f0364a684f7b1594057894_adv_2.png', 1, '', '2020-07-06 19:51:34', NULL, 1, NULL, 'ক্ষুধার্তকে অন্ন দান অনেক সওয়াবের কাজ', '1', 1, 12), (56, ' আয়া সোফিয়া এবং তুরস্কের ধর্মভিত্তিক রাজনীতির ভব', ' আয়া সোফিয়া এবং তুরস্কের ধর্মভিত্তিক রাজনীতির ভব', '61155f1511eb25dad1595216363_1.jpg', 0, '1,4', '2020-07-20 05:40:14', NULL, 1, NULL, ' আয়া সোফিয়া এবং তুরস্কের ধর্মভিত্তিক রাজনীতির ভব', '7', 1, 10), (57, 'কেন বিসিএসই সবার লক্ষ্য', 'কেন বিসিএসই সবার লক্ষ্য', '57655f151302bf5c91595216642_8s.jpg', 1, '1,4', '2020-07-20 05:58:11', NULL, 1, NULL, 'কেন বিসিএসই সবার লক্ষ্য', '7', 2, 0), (58, 'হুয়াওয়ে নিয়ে বেকায়দায় পড়েছে চীন', 'হুয়াওয়ে নিয়ে বেকায়দায় পড়েছে চীন', '51005f151df8db1891595219448_CookIslands.png', 9, '6', '2020-07-20 06:30:48', NULL, 1, NULL, 'হুয়াওয়ে নিয়ে বেকায়দায় পড়েছে চীন', '19', 2, 0), (59, ' ভূ–রাজনৈতিক দ্বন্দ্বের ঘুঁটি আয়া সোফিয়া ও এরদোয়ান', ' ভূ–রাজনৈতিক দ্বন্দ্বের ঘুঁটি আয়া সোফিয়া ও এরদোয়ান', '56085f151e57d651d1595219543_Turkey.png', 9, '6', '2020-07-20 06:32:23', NULL, 1, NULL, ' ভূ–রাজনৈতিক দ্বন্দ্বের ঘুঁটি আয়া সোফিয়া ও এরদোয়ান', '19', 2, 0), (60, 'পাশের বাড়ির ছেলে বুয়েটের উপাচার্য', 'পাশের বাড়ির ছেলে বুয়েটের উপাচার্য', '11985f151edd138681595219677_a4.jpg', 3, '3', '2020-07-20 06:34:37', NULL, 1, NULL, 'পাশের বাড়ির ছেলে বুয়েটের উপাচার্য', '9', 2, 0), (61, 'ব্যতিক্রমী গ্র্যাজুয়েশন ডে', 'ব্যতিক্রমী গ্র্যাজুয়েশন ডে', '37655f151f2b58e9b1595219755_a8.jpg', 3, '', '2020-07-20 06:35:55', NULL, 1, NULL, 'ব্যতিক্রমী গ্র্যাজুয়েশন ডে', '9', 2, 0), (62, 'চীনের সঙ্গে তীব্র উত্তেজনার মধ্যে \'বিরল\' সামরিক মহ', 'চীনের সঙ্গে তীব্র উত্তেজনার মধ্যে \'বিরল\' সামরিক মহ', '88845f152195524f31595220373_email_3.jpg', 3, '3', '2020-07-20 06:46:13', NULL, 1, NULL, 'চীনের সঙ্গে তীব্র উত্তেজনার মধ্যে \'বিরল\' সামরিক মহ', '9', 2, 0), (63, 'দ্রুত সময়ে এবং স্বল্প ব্যয়ে পাবলিক বিশ্ববিদ্যালয়ে ', 'দ্রুত সময়ে এবং স্বল্প ব্যয়ে পাবলিক বিশ্ববিদ্যালয়ে ', '17915f1521f45a4c01595220468_dashboard4_2.jpg', 1, '4', '2020-07-20 06:47:48', NULL, 1, NULL, 'দ্রুত সময়ে এবং স্বল্প ব্যয়ে পাবলিক বিশ্ববিদ্যালয়ে ', '8', 2, 0); -- -------------------------------------------------------- -- -- Table structure for table `category` -- CREATE TABLE `category` ( `id` int(11) NOT NULL, `category_name` varchar(100) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `category` -- INSERT INTO `category` (`id`, `category_name`) VALUES (1, 'php5'), (2, 'html'), (3, 'javascript 9'), (4, 'php_framework'), (8, 'php7'), (9, 'National News '); -- -------------------------------------------------------- -- -- Table structure for table `ci_sessions` -- CREATE TABLE `ci_sessions` ( `id` varchar(40) NOT NULL, `ip_address` varchar(45) NOT NULL, `timestamp` int(10) UNSIGNED NOT NULL DEFAULT 0, `data` blob NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `ci_sessions` -- INSERT INTO `ci_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06qaue08mvtgmhvkoest215pg66jqv13', '::1', 1595184804, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353138343736323b69647c733a333a22313433223b6e616d657c733a353a22626164616c223b747970657c733a313a2236223b), ('0bcojv9ms3d2is4vdjfq156pq4ncfrpi', '::1', 1595154233, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353135343233333b), ('0bocph104pf0ujcvh1jtdcn2c3vem0c7', '::1', 1595173663, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353137333636333b), ('0odfj3hku0edoa64hubbp8h794ce9mgr', '::1', 1595216083, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353231363038323b), ('0q5dbraolq902ottfgfl6vi6c4kqjuec', '::1', 1595160769, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353136303736393b), ('0vn076h4chbv028elv654a8dek64sv9i', '::1', 1595219759, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353231393735393b69647c733a333a22313438223b6e616d657c733a393a226d6f7368616964756c223b747970657c733a313a2231223b), ('16h1dm0t20bh0c1p4cfut9l17m06hlq7', '::1', 1595184710, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353138343638363b69647c733a333a22313433223b6e616d657c733a353a22626164616c223b747970657c733a313a2236223b), ('1t91od31mp0f70jel0kja3gbq2domgel', '::1', 1595178979, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353137383937393b6572727c733a3133353a223c703e5468652046756c6c204e616d65206669656c642069732072657175697265642e3c2f703e0a3c703e546865205265747970652050617373776f7264206669656c642069732072657175697265642e3c2f703e0a3c703e546865205465726d73202620436f6e646974696f6e73206669656c642069732072657175697265642e3c2f703e0a223b5f5f63695f766172737c613a313a7b733a333a22657272223b733a333a226f6c64223b7d), ('22gel5pqtju4pl1eknibdud2gl10g8js', '::1', 1595172032, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353137323033323b), ('29jjqksqak7qi4qs8iq0erig7anlgcpn', '::1', 1595184752, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353138343439313b69647c733a333a22313433223b6e616d657c733a353a22626164616c223b747970657c733a313a2236223b), ('2jtf221jdjh3b5lv7a9b7n4jekc8utc7', '::1', 1595218050, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353231383035303b69647c733a333a22313235223b6e616d657c733a31323a22417a697a756c20486173616e223b747970657c733a313a2231223b), ('2tn347em9lp7ij01opb9ll6n6e88i5k3', '::1', 1595184491, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353138343439313b69647c733a333a22313433223b6e616d657c733a353a22626164616c223b747970657c733a313a2236223b), ('<KEY>', '::1', 1595155814, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353135353831343b), ('43rd6fbckap1tuv4bl1ouj7flo87s8se', '::1', 1595160447, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353136303434373b), ('<KEY>', '::1', 1595160069, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353136303036393b), ('5squ89s7rd2693j3u5g8rdpjb3rdflep', '::1', 1595176796, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353137363739363b69647c733a333a22313235223b6e616d657c733a31323a22417a697a756c20486173616e223b747970657c733a313a2231223b), ('5tkuvm08j3q7usblm7he2dnhkv6m8h6p', '::1', 1595175059, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353137353035393b), ('6fuogb56g6c9p2pern6bbeaohi39nfv9', '::1', 1595181296, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353138313239363b69647c733a333a22313433223b6e616d657c733a353a22626164616c223b747970657c733a313a2236223b), ('6vdg4e8bmih41s3eacqeeq91kptac962', '::1', 1595179497, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353137393439373b6572727c733a3133353a223c703e5468652046756c6c204e616d65206669656c642069732072657175697265642e3c2f703e0a3c703e546865205265747970652050617373776f7264206669656c642069732072657175697265642e3c2f703e0a3c703e546865205465726d73202620436f6e646974696f6e73206669656c642069732072657175697265642e3c2f703e0a223b5f5f63695f766172737c613a313a7b733a333a22657272223b733a333a226f6c64223b7d), ('787hq5p2fv003absirnl4a3gj3voq6kg', '::1', 1595173317, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353137333331373b), ('8vooepdnvaheghu80n9bdhbb87j2cdf2', '::1', 1595176118, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353137363131383b), ('94cc5g3p3d0s23ocsrumd4e1tg1gjs2e', '::1', 1595220471, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353232303437313b69647c733a333a22313438223b6e616d657c733a393a226d6f7368616964756c223b747970657c733a313a2231223b), ('a99luijl82d8abuhpou4bcb8jkq5jd2k', '::1', 1595157834, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353135373833343b), ('antemdrl05gmaajtl5l08itnr7eop3pp', '::1', 1595159640, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353135393634303b), ('boeaqqbbo9270rv6rutheps6o1vvgqt0', '::1', 1595154534, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353135343533343b), ('cghc7b9jn1g3r43fv18bu10ds9jn4icm', '::1', 1595159082, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353135393038323b), ('dp349ldis5db1si30pgnasia1og4rt9d', '::1', 1595155454, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353135353435343b), ('durj1mvukj7572c25e4uvkv9e2mn4qa3', '::1', 1595174216, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353137343034373b), ('ebbga3vjbiv3l8649njlgmd7l6m54liv', '::1', 1595178356, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353137383335363b69647c733a333a22313435223b6e616d657c733a353a226b616c616d223b747970657c733a313a2234223b6d73677c733a31393a225265676973746572205375636365737366756c223b5f5f63695f766172737c613a313a7b733a333a226d7367223b733a333a226f6c64223b7d), ('eeud5bpi9fokr3e2tvi152t70hc4gnng', '::1', 1595177893, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353137373839333b), ('f6dojcp7d2udarvr31t280fp6c4p811t', '::1', 1595218353, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353231383335333b69647c733a333a22313235223b6e616d657c733a31323a22417a697a756c20486173616e223b747970657c733a313a2231223b), ('gmjmjm31s3em5ribgtl1dfhqjv2b43ob', '::1', 1595218930, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353231383933303b69647c733a333a22313438223b6e616d657c733a393a226d6f7368616964756c223b747970657c733a313a2231223b), ('gufhkt3fi1kglc030pq91iqpdr6nnh4b', '::1', 1595216427, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353231363432373b69647c733a313a2231223b6e616d657c733a353a22686173616e223b747970657c733a313a2231223b), ('hhokp3596vp2058gobq4j2fs79fjq7qk', '::1', 1595155144, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353135353134343b), ('j831gsttau7ggcerotrs1p2pf6fae7rd', '::1', 1595167259, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353136373235393b), ('js71k7l2ke3r1nanpivk0b67upcrlc1l', '::1', 1595162037, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353136323033373b), ('<KEY>', '::1', 1595181821, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353138313832313b69647c733a333a22313433223b6e616d657c733a353a22626164616c223b747970657c733a313a2236223b), ('m19eqja9vfv9e1bnc6sfqa3u2slfm38o', '::1', 1595154842, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353135343834323b), ('n74ro5bslltu31vbnmu760lq53h8nope', '::1', 1595158204, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353135383230343b), ('nfatfdm60lr5n7t0q3ck4v429f8bcs3r', '::1', 1595217496, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353231373439363b69647c733a313a2231223b6e616d657c733a353a22686173616e223b747970657c733a313a2231223b), ('nmjq175j6qsv9846ilagddnga727s9ii', '::1', 1595180296, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353138303239363b69647c733a333a22313433223b6e616d657c733a353a22626164616c223b747970657c733a313a2236223b), ('oil1d5l1k2dk82oc5hloghjdm214rt7c', '::1', 1595161720, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353136313732303b), ('oivo1und3pcme70e6hqdqph94vct7t1n', '::1', 1595158740, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353135383734303b), ('ornb83tvd4gpsd4phve3evr6ctd06pal', '::1', 1595156391, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353135363339313b), ('plribhs1c2hr48ikgns5nk1i5dqajhnh', '::1', 1595174047, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353137343034373b), ('pnc3vl0fmnkl8d4733bvhk19cq7agsbe', '::1', 1595175386, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353137353338363b), ('qduppeepjpv9340ahm5pva8ln0dc3pbh', '::1', 1595177514, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353137373531343b69647c733a333a22313433223b6e616d657c733a353a22626164616c223b747970657c733a313a2236223b), ('qgqd06v795i3r8hd6dngunh1a2gcm9gq', '::1', 1595220142, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353232303134323b69647c733a333a22313438223b6e616d657c733a393a226d6f7368616964756c223b747970657c733a313a2231223b), ('r9laobjj3c8j1lpviareb2p3mrjkj017', '::1', 1595174626, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353137343632363b), ('ridoi2hgisgtoau860ekkcua0a9r3lj4', '::1', 1595161091, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353136313039313b), ('rt8vbrtlmv3bokvd75fprqd2scdmimsr', '::1', 1595156792, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353135363739323b), ('sjg3vs2u8qltiftffrcsc73f8rljipqa', '::1', 1595175813, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353137353831333b), ('su7ous67lbrfb4r6cn47d0g5v4f4cn4g', '::1', 1595180816, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353138303831363b69647c733a333a22313433223b6e616d657c733a353a22626164616c223b747970657c733a313a2236223b), ('t08ninb379ah8op7fvlluf9frj3thouk', '::1', 1595220561, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353232303437313b69647c733a333a22313438223b6e616d657c733a393a226d6f7368616964756c223b747970657c733a313a2231223b), ('t4l6a5nh49nbb1d20890tl2llibdvkeo', '::1', 1595174306, 0x5f5f63695f6c6173745f726567656e65726174657c693a313539353137343330353b); -- -------------------------------------------------------- -- -- Table structure for table `position_manage` -- CREATE TABLE `position_manage` ( `id` int(11) NOT NULL, `position_name` varchar(100) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `position_manage` -- INSERT INTO `position_manage` (`id`, `position_name`) VALUES (1, 'Admin'), (2, 'Editor'), (3, 'Sub Editor'), (4, 'Subscriber'), (5, 'Journalist'), (6, 'Advertiser'); -- -------------------------------------------------------- -- -- Table structure for table `sub_category` -- CREATE TABLE `sub_category` ( `id` int(11) NOT NULL, `sub_category_name` varchar(100) DEFAULT NULL, `category_id` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `sub_category` -- INSERT INTO `sub_category` (`id`, `sub_category_name`, `category_id`) VALUES (2, 'Chattagram', 9), (7, 'API', 1), (8, 'CakePHP', 1), (9, 'angular', 3), (10, 'codeigniter', 4), (12, 'Restful API', NULL), (15, 'Zend Framwork', 4), (16, 'Ruby', 4), (18, 'Symphony', 4), (19, 'Sylhet', 9), (20, 'Narayangang', 9); -- -------------------------------------------------------- -- -- Table structure for table `tag` -- CREATE TABLE `tag` ( `id` int(11) NOT NULL, `tag_name` varchar(100) DEFAULT NULL, `category_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `tag` -- INSERT INTO `tag` (`id`, `tag_name`, `category_id`) VALUES (1, 'api', 1), (2, 'html', 2), (3, 'css', 3), (4, 'crud', 1), (6, 'Cricket', 9); -- -------------------------------------------------------- -- -- Table structure for table `tbl_comments` -- CREATE TABLE `tbl_comments` ( `c_id` int(11) NOT NULL, `c_guest_name` varchar(20) NOT NULL, `c_guest_mobile` bigint(10) NOT NULL, `c_guest_email` varchar(50) NOT NULL, `c_comment` text NOT NULL, `c_parent_id` int(3) NOT NULL, `c_commented_on` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(11) NOT NULL, `profile_id` varchar(30) DEFAULT NULL, `name` varchar(100) DEFAULT NULL, `email` varchar(100) DEFAULT NULL, `contact` varchar(100) DEFAULT NULL, `picture` varchar(255) DEFAULT NULL, `password` varchar(100) DEFAULT NULL, `password_recovery` varchar(100) DEFAULT NULL, `type` tinyint(4) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `profile_id`, `name`, `email`, `contact`, `picture`, `password`, `password_recovery`, `type`) VALUES (125, NULL, '<NAME>', '<EMAIL>', '01855920762', '84105f151c2cac2fb1595218988_a2.jpg', '123', NULL, 4), (148, NULL, 'moshaidul', '<EMAIL>', '01711071219', '11535f1518b488da11595218100_a7.jpg', '123', NULL, 1), (149, NULL, 'Badal', '<EMAIL>', '01521496828', '31165f151c62ac8791595219042_a1.jpg', '123', NULL, 6); -- -- Indexes for dumped tables -- -- -- Indexes for table `blogs` -- ALTER TABLE `blogs` ADD PRIMARY KEY (`id`), ADD KEY `category_id` (`category_id`), ADD KEY `created_by_id` (`created_by_id`); -- -- Indexes for table `category` -- ALTER TABLE `category` ADD PRIMARY KEY (`id`); -- -- Indexes for table `ci_sessions` -- ALTER TABLE `ci_sessions` ADD PRIMARY KEY (`id`), ADD KEY `ci_sessions_timestamp` (`timestamp`); -- -- Indexes for table `position_manage` -- ALTER TABLE `position_manage` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sub_category` -- ALTER TABLE `sub_category` ADD PRIMARY KEY (`id`), ADD KEY `category_id` (`category_id`); -- -- Indexes for table `tag` -- ALTER TABLE `tag` ADD PRIMARY KEY (`id`), ADD KEY `sub_category_id` (`category_id`); -- -- Indexes for table `tbl_comments` -- ALTER TABLE `tbl_comments` ADD PRIMARY KEY (`c_id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `blogs` -- ALTER TABLE `blogs` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=64; -- -- AUTO_INCREMENT for table `category` -- ALTER TABLE `category` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `position_manage` -- ALTER TABLE `position_manage` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `sub_category` -- ALTER TABLE `sub_category` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; -- -- AUTO_INCREMENT for table `tag` -- ALTER TABLE `tag` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `tbl_comments` -- ALTER TABLE `tbl_comments` MODIFY `c_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=150; 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 */;
insert into Role(id, name) values (1, 'ROLE_GUEST'), (2, 'ROLE_BASIC'), (3, 'ROLE_PREMIUM');
<gh_stars>1-10 CREATE TABLE Teachers ( [TeacherID] INT PRIMARY KEY IDENTITY(101,1), [Name] NVARCHAR (30) NOT NULL, [ManagerID] INT FOREIGN KEY REFERENCES Teachers(TeacherID) )
<gh_stars>1-10 CREATE TABLE transactions ( id TEXT NOT NULL, account_id TEXT NOT NULL, amount REAL NOT NULL, status TEXT NOT NULL, error_message TEXT NOT NULL, created_at TEXT NOT NULL, updated_at TEXT NOT NULL );
<filename>Allfiles/Mod13/Labfiles/Starter/Exercise 1/Grades.DataModel/GradesModel.edmx.sql -- -------------------------------------------------- -- Entity Designer DDL Script for SQL Server 2005, 2008, and Azure -- -------------------------------------------------- SET QUOTED_IDENTIFIER OFF; GO USE [SchoolGradesDB]; GO IF SCHEMA_ID(N'dbo') IS NULL EXECUTE(N'CREATE SCHEMA [dbo]'); GO -- -------------------------------------------------- -- Dropping existing FOREIGN KEY constraints -- -------------------------------------------------- IF OBJECT_ID(N'[dbo].[FK_Parents_diameterUsers]', 'F') IS NOT NULL ALTER TABLE [dbo].[Parents] DROP CONSTRAINT [FK_Parents_diameterUsers]; GO IF OBJECT_ID(N'[dbo].[FK_Students_diameterUsers]', 'F') IS NOT NULL ALTER TABLE [dbo].[Students] DROP CONSTRAINT [FK_Students_diameterUsers]; GO IF OBJECT_ID(N'[dbo].[FK_Teachers_diameterUsers]', 'F') IS NOT NULL ALTER TABLE [dbo].[Teachers] DROP CONSTRAINT [FK_Teachers_diameterUsers]; GO IF OBJECT_ID(N'[dbo].[FK_StudentGrade]', 'F') IS NOT NULL ALTER TABLE [dbo].[Grades] DROP CONSTRAINT [FK_StudentGrade]; GO IF OBJECT_ID(N'[dbo].[FK_SubjectGrade]', 'F') IS NOT NULL ALTER TABLE [dbo].[Grades] DROP CONSTRAINT [FK_SubjectGrade]; GO IF OBJECT_ID(N'[dbo].[FK_TeacherStudent]', 'F') IS NOT NULL ALTER TABLE [dbo].[Students] DROP CONSTRAINT [FK_TeacherStudent]; GO IF OBJECT_ID(N'[dbo].[FK_ParentStudent_Parent]', 'F') IS NOT NULL ALTER TABLE [dbo].[ParentStudent] DROP CONSTRAINT [FK_ParentStudent_Parent]; GO IF OBJECT_ID(N'[dbo].[FK_ParentStudent_Student]', 'F') IS NOT NULL ALTER TABLE [dbo].[ParentStudent] DROP CONSTRAINT [FK_ParentStudent_Student]; GO -- -------------------------------------------------- -- Dropping existing tables -- -------------------------------------------------- IF OBJECT_ID(N'[dbo].[Grades]', 'U') IS NOT NULL DROP TABLE [dbo].[Grades]; GO IF OBJECT_ID(N'[dbo].[Parents]', 'U') IS NOT NULL DROP TABLE [dbo].[Parents]; GO IF OBJECT_ID(N'[dbo].[Students]', 'U') IS NOT NULL DROP TABLE [dbo].[Students]; GO IF OBJECT_ID(N'[dbo].[Subjects]', 'U') IS NOT NULL DROP TABLE [dbo].[Subjects]; GO IF OBJECT_ID(N'[dbo].[Teachers]', 'U') IS NOT NULL DROP TABLE [dbo].[Teachers]; GO IF OBJECT_ID(N'[dbo].[ParentStudent]', 'U') IS NOT NULL DROP TABLE [dbo].[ParentStudent]; GO -- -------------------------------------------------- -- Creating all tables -- -------------------------------------------------- -- Creating table 'Grades' CREATE TABLE [dbo].[Grades] ( [Id] int IDENTITY(1,1) NOT NULL, [Assessment] nvarchar(max) NOT NULL, [Comments] nvarchar(max) NULL, [AssessmentDate] datetime NOT NULL, [SubjectId] int NOT NULL, [StudentUserId] uniqueidentifier NOT NULL ); GO -- Creating table 'Parents' CREATE TABLE [dbo].[Parents] ( [UserId] uniqueidentifier NOT NULL, [FirstName] nvarchar(50) NOT NULL, [LastName] nvarchar(50) NOT NULL ); GO -- Creating table 'Students' CREATE TABLE [dbo].[Students] ( [UserId] uniqueidentifier NOT NULL, [FirstName] nvarchar(50) NOT NULL, [LastName] nvarchar(50) NOT NULL, [ImageName] nvarchar(max) NOT NULL, [TeacherUserId] uniqueidentifier NULL ); GO -- Creating table 'Subjects' CREATE TABLE [dbo].[Subjects] ( [Id] int NOT NULL, [Name] nvarchar(max) NOT NULL ); GO -- Creating table 'Teachers' CREATE TABLE [dbo].[Teachers] ( [UserId] uniqueidentifier NOT NULL, [FirstName] nvarchar(50) NOT NULL, [LastName] nvarchar(50) NOT NULL, [Class] nvarchar(20) NOT NULL ); GO -- Creating table 'ParentStudent' CREATE TABLE [dbo].[ParentStudent] ( [Parents_UserId] uniqueidentifier NOT NULL, [Students_UserId] uniqueidentifier NOT NULL ); GO -- -------------------------------------------------- -- Creating all PRIMARY KEY constraints -- -------------------------------------------------- -- Creating primary key on [Id] in table 'Grades' ALTER TABLE [dbo].[Grades] ADD CONSTRAINT [PK_Grades] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [UserId] in table 'Parents' ALTER TABLE [dbo].[Parents] ADD CONSTRAINT [PK_Parents] PRIMARY KEY CLUSTERED ([UserId] ASC); GO -- Creating primary key on [UserId] in table 'Students' ALTER TABLE [dbo].[Students] ADD CONSTRAINT [PK_Students] PRIMARY KEY CLUSTERED ([UserId] ASC); GO -- Creating primary key on [Id] in table 'Subjects' ALTER TABLE [dbo].[Subjects] ADD CONSTRAINT [PK_Subjects] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [UserId] in table 'Teachers' ALTER TABLE [dbo].[Teachers] ADD CONSTRAINT [PK_Teachers] PRIMARY KEY CLUSTERED ([UserId] ASC); GO -- Creating primary key on [Parents_UserId], [Students_UserId] in table 'ParentStudent' ALTER TABLE [dbo].[ParentStudent] ADD CONSTRAINT [PK_ParentStudent] PRIMARY KEY NONCLUSTERED ([Parents_UserId], [Students_UserId] ASC); GO -- -------------------------------------------------- -- Creating all FOREIGN KEY constraints -- -------------------------------------------------- -- Creating foreign key on [UserId] in table 'Parents' ALTER TABLE [dbo].[Parents] ADD CONSTRAINT [FK_Parents_diameterUsers] FOREIGN KEY ([UserId]) REFERENCES [dbo].[Users] ([UserId]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating foreign key on [UserId] in table 'Students' ALTER TABLE [dbo].[Students] ADD CONSTRAINT [FK_Students_diameterUsers] FOREIGN KEY ([UserId]) REFERENCES [dbo].[Users] ([UserId]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating foreign key on [UserId] in table 'Teachers' ALTER TABLE [dbo].[Teachers] ADD CONSTRAINT [FK_Teachers_diameterUsers] FOREIGN KEY ([UserId]) REFERENCES [dbo].[Users] ([UserId]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating foreign key on [StudentUserId] in table 'Grades' ALTER TABLE [dbo].[Grades] ADD CONSTRAINT [FK_StudentGrade] FOREIGN KEY ([StudentUserId]) REFERENCES [dbo].[Students] ([UserId]) ON DELETE NO ACTION ON UPDATE NO ACTION; -- Creating non-clustered index for FOREIGN KEY 'FK_StudentGrade' CREATE INDEX [IX_FK_StudentGrade] ON [dbo].[Grades] ([StudentUserId]); GO -- Creating foreign key on [SubjectId] in table 'Grades' ALTER TABLE [dbo].[Grades] ADD CONSTRAINT [FK_SubjectGrade] FOREIGN KEY ([SubjectId]) REFERENCES [dbo].[Subjects] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; -- Creating non-clustered index for FOREIGN KEY 'FK_SubjectGrade' CREATE INDEX [IX_FK_SubjectGrade] ON [dbo].[Grades] ([SubjectId]); GO -- Creating foreign key on [TeacherUserId] in table 'Students' ALTER TABLE [dbo].[Students] ADD CONSTRAINT [FK_TeacherStudent] FOREIGN KEY ([TeacherUserId]) REFERENCES [dbo].[Teachers] ([UserId]) ON DELETE NO ACTION ON UPDATE NO ACTION; -- Creating non-clustered index for FOREIGN KEY 'FK_TeacherStudent' CREATE INDEX [IX_FK_TeacherStudent] ON [dbo].[Students] ([TeacherUserId]); GO -- Creating foreign key on [Parents_UserId] in table 'ParentStudent' ALTER TABLE [dbo].[ParentStudent] ADD CONSTRAINT [FK_ParentStudent_Parent] FOREIGN KEY ([Parents_UserId]) REFERENCES [dbo].[Parents] ([UserId]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating foreign key on [Students_UserId] in table 'ParentStudent' ALTER TABLE [dbo].[ParentStudent] ADD CONSTRAINT [FK_ParentStudent_Student] FOREIGN KEY ([Students_UserId]) REFERENCES [dbo].[Students] ([UserId]) ON DELETE NO ACTION ON UPDATE NO ACTION; -- Creating non-clustered index for FOREIGN KEY 'FK_ParentStudent_Student' CREATE INDEX [IX_FK_ParentStudent_Student] ON [dbo].[ParentStudent] ([Students_UserId]); GO -- -------------------------------------------------- -- Script has ended -- --------------------------------------------------
-- file:drop_if_exists.sql ln:254 expect:true DROP FUNCTION IF EXISTS foo(no_such_type)
INSERT INTO department (name) VALUES ("Sales"), ("Engineering"); INSERT INTO roles (id, title, salary, department_id) VALUES (01, "Sales Lead", 100000, "Sales"), (02, "Salesperson", 80000, "Sales"), (03, "Lead Engineer", 150000, "Engineering"), (04, "Software Engineer", 120000, "Engineering"); INSERT INTO employees (id, first_name, last_name, roles, manager_id) VALUES (01, "John", "Doe", Sales Lead, 1, NULL), (02, "Sam", "Cho", Salesperson, 2, John Doe), (03, "Ashley", "Rodriguez", Lead Engineer, 3, NULL), (04, "Kevin", "Tupik", 4, Software Engineer, <NAME>uez);
<reponame>jcfr/Midas<gh_stars>10-100 -- Midas Server. Copyright Kitware SAS. Licensed under the Apache License 2.0. -- SQLite database for the googleauth module, version 1.1.0 CREATE TABLE IF NOT EXISTS "googleauth_user" ( "googleauth_user_id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "google_person_id" TEXT NOT NULL, "user_id" INTEGER NOT NULL ); CREATE INDEX IF NOT EXISTS "googleauth_user_google_person_id_idx" ON "googleauth_user" ("google_person_id"); CREATE INDEX IF NOT EXISTS "googleauth_user_user_id_idx" ON "googleauth_user" ("user_id");
drop table terms; drop table courses; drop table meetings; drop table instructors; drop table grades; drop table gpa; drop table calmeetins;
<filename>src/main/resources/db/migration/V1_1_7__index-composition.sql ALTER TABLE sp500_composition RENAME TO index_composition; update index_composition set exchange = 'GSPC'; drop index IF EXISTS sp500_composition_idx; CREATE UNIQUE INDEX index_composition_idx ON index_composition (date, code_firm, exchange,sector, industry);
/* * Copyright (c) 2017-2018 LabKey Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ ALTER VIEW [labkey_etl].[v_valid_charge_by_species] AS -- ========================================================================================== -- Author: <NAME> -- Create date: 12/14/2017 -- Description: View provides the data for snprc_ehr.ValidChargeBySpecies table -- Changes: -- -- 10/22/2019 Added logic to transform behavioral project purpose -- 02/15/2020 Added startDate and stopDate columns tjh -- ========================================================================================== SELECT ca.charge_id AS Project , v.arc_species_code AS Species , case when v.charge_id between 6000 and 6999 then 'B' else v.purpose end AS Purpose , ca.start_date AS startDate, ca.stop_date stopDate, v.object_id AS ObjectId , v.entry_date_tm AS modified , dbo.f_map_username(v.user_name) AS modifiedby , COALESCE(tc.created, v.entry_date_tm) AS created , COALESCE(tc.createdby, dbo.f_map_username(v.user_name)) AS createdby , v.timestamp AS timestamp FROM dbo.valid_charge_by_species AS v INNER JOIN dbo.charge_account AS ca ON ca.charge_id = v.charge_id LEFT OUTER JOIN dbo.TAC_COLUMNS AS tc ON tc.object_id = v.object_id WHERE v.purpose <> 'NC' GO GRANT SELECT ON labkey_etl.v_valid_charge_by_species TO z_labkey; GO
UPDATE policy_units SET custom_properties_regex='{ "CpuOverCommitDurationMinutes" : "^([1-9][0-9]*)$", "HighUtilization" : "^([5-9][0-9])$", "LowUtilization" : "^([0-9]|[1-4][0-9])$", "HostsInReserve": "^[0-9][0-9]*$", "EnableAutomaticHostPowerManagement": "^(true|false)$" }' WHERE id='736999d0-1023-46a4-9a75-1316ed50e151';
<gh_stars>1-10 CREATE TABLE `git_branch` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '' COMMENT '分支名称', `proj_id` int(10) unsigned NOT NULL COMMENT '所属项目', `active` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否在当前分支', PRIMARY KEY (`id`) USING BTREE, KEY `proj_id` (`proj_id`) USING BTREE, KEY `active` (`active`) USING BTREE, KEY `name` (`name`) USING BTREE ) COMMENT='分支列表';
-- +goose Up -- SQL in this section is executed when the migration is applied. ALTER TABLE workflow_templates ADD COLUMN labels JSONB DEFAULT '{}'::JSONB; ALTER TABLE workflow_template_versions ADD COLUMN labels JSONB DEFAULT '{}'::JSONB; ALTER TABLE workflow_executions ADD COLUMN labels JSONB DEFAULT '{}'::JSONB; ALTER TABLE workspaces ADD COLUMN labels JSONB DEFAULT '{}'::JSONB; ALTER TABLE workspace_templates ADD COLUMN labels JSONB DEFAULT '{}'::JSONB; ALTER TABLE workspace_template_versions ADD COLUMN labels JSONB DEFAULT '{}'::JSONB; ALTER TABLE cron_workflows ADD COLUMN labels JSONB DEFAULT '{}'::JSONB; -- We take the old labels and put them into the new jsonb columns UPDATE workflow_templates wt SET labels = ( SELECT jsonb_object_agg(key, value) FROM labels l WHERE resource = 'workflow_template' AND wt.id = l.resource_id ) ; UPDATE workflow_templates SET labels = '{}'::jsonb WHERE labels IS NULL; UPDATE workflow_template_versions wtv SET labels = ( SELECT jsonb_object_agg(key, value) FROM labels l WHERE resource = 'workflow_template_version' AND wtv.id = l.resource_id ) ; UPDATE workflow_template_versions SET labels = '{}'::jsonb WHERE labels IS NULL; UPDATE workflow_executions we SET labels = ( SELECT jsonb_object_agg(key, value) FROM labels l WHERE resource = 'workflow_execution' AND we.id = l.resource_id ) ; UPDATE workflow_executions SET labels = '{}'::jsonb WHERE labels IS NULL; UPDATE workspaces w SET labels = ( SELECT jsonb_object_agg(key, value) FROM labels l WHERE resource = 'workspace' AND w.id = l.resource_id ) ; UPDATE workspaces SET labels = '{}'::jsonb WHERE labels IS NULL; UPDATE workspace_templates wt SET labels = ( SELECT jsonb_object_agg(key, value) FROM labels l WHERE resource = 'workspace_template' AND wt.id = l.resource_id ) ; UPDATE workspace_templates SET labels = '{}'::jsonb WHERE labels IS NULL; UPDATE workspace_template_versions wtv SET labels = ( SELECT jsonb_object_agg(key, value) FROM labels l WHERE resource = 'workspace_template_version' AND wtv.id = l.resource_id ) ; UPDATE workspace_template_versions SET labels = '{}'::jsonb WHERE labels IS NULL; UPDATE cron_workflows cw SET labels = ( SELECT jsonb_object_agg(key, value) FROM labels l WHERE resource = 'cron_workflow' AND cw.id = l.resource_id ) ; UPDATE cron_workflows SET labels = '{}'::jsonb WHERE labels IS NULL; DROP table labels; -- +goose Down -- SQL in this section is executed when the migration is rolled back. -- We take the jsonb column labels and put them back into a separate labels table CREATE TABLE labels ( id serial PRIMARY KEY, key character varying(255), value character varying(255), resource character varying(255), resource_id integer, created_at timestamp without time zone NOT NULL DEFAULT timezone('utc'::text, now()) ); INSERT INTO labels(key, value, resource, resource_id, created_at) SELECT key, value, 'cron_workflow', id, now() FROM ( SELECT wt1.id as id, wt1.key as key, wt2.labels->>wt1.key as value FROM cron_workflows wt2 JOIN ( SELECT wt.id, jsonb_object_keys(wt.labels) as key FROM cron_workflows wt ) wt1 on wt2.id = wt1.id ) subquery ; INSERT INTO labels(key, value, resource, resource_id, created_at) SELECT key, value, 'workflow_template_version', id, now() FROM ( SELECT wt1.id as id, wt1.key as key, wt2.labels->>wt1.key as value FROM workflow_template_versions wt2 JOIN ( SELECT wt.id, jsonb_object_keys(wt.labels) as key FROM workflow_template_versions wt ) wt1 on wt2.id = wt1.id ) subquery ; INSERT INTO labels(key, value, resource, resource_id, created_at) SELECT key, value, 'workspace_template', id, now() FROM ( SELECT wt1.id as id, wt1.key as key, wt2.labels->>wt1.key as value FROM workspace_templates wt2 JOIN ( SELECT wt.id, jsonb_object_keys(wt.labels) as key FROM workspace_templates wt ) wt1 on wt2.id = wt1.id ) subquery ; INSERT INTO labels(key, value, resource, resource_id, created_at) SELECT key, value, 'workspace', id, now() FROM ( SELECT wt1.id as id, wt1.key as key, wt2.labels->>wt1.key as value FROM workspaces wt2 JOIN ( SELECT wt.id, jsonb_object_keys(wt.labels) as key FROM workspaces wt ) wt1 on wt2.id = wt1.id ) subquery ; INSERT INTO labels(key, value, resource, resource_id, created_at) SELECT key, value, 'workflow_execution', id, now() FROM ( SELECT wt1.id as id, wt1.key as key, wt2.labels->>wt1.key as value FROM workflow_executions wt2 JOIN ( SELECT wt.id, jsonb_object_keys(wt.labels) as key FROM workflow_executions wt ) wt1 on wt2.id = wt1.id ) subquery ; INSERT INTO labels(key, value, resource, resource_id, created_at) SELECT key, value, 'workflow_template_version', id, now() FROM ( SELECT wt1.id as id, wt1.key as key, wt2.labels->>wt1.key as value FROM workflow_template_versions wt2 JOIN ( SELECT wt.id, jsonb_object_keys(wt.labels) as key FROM workflow_template_versions wt ) wt1 on wt2.id = wt1.id ) subquery ; INSERT INTO labels(key, value, resource, resource_id, created_at) SELECT key, value, 'workflow_template', id, now() FROM ( SELECT wt1.id as id, wt1.key as key, wt2.labels->>wt1.key as value FROM workflow_templates wt2 JOIN ( SELECT wt.id, jsonb_object_keys(wt.labels) as key FROM workflow_templates wt ) wt1 on wt2.id = wt1.id ) subquery ; ALTER TABLE cron_workflows DROP COLUMN labels; ALTER TABLE workspace_template_versions DROP COLUMN labels; ALTER TABLE workspace_templates DROP COLUMN labels; ALTER TABLE workspaces DROP COLUMN labels; ALTER TABLE workflow_executions DROP COLUMN labels; ALTER TABLE workflow_template_versions DROP COLUMN labels; ALTER TABLE workflow_templates DROP COLUMN labels;
-- Tags: no-parallel DROP TABLE IF EXISTS test_alter_attach_01901S; DROP TABLE IF EXISTS test_alter_attach_01901D; CREATE TABLE test_alter_attach_01901S (A Int64, D date) ENGINE = MergeTree PARTITION BY D ORDER BY A; INSERT INTO test_alter_attach_01901S VALUES (1, '2020-01-01'); CREATE TABLE test_alter_attach_01901D (A Int64, D date) Engine=ReplicatedMergeTree('/clickhouse/tables/{database}/test_alter_attach_01901D', 'r1') PARTITION BY D ORDER BY A; ALTER TABLE test_alter_attach_01901D ATTACH PARTITION '2020-01-01' FROM test_alter_attach_01901S; SELECT count() FROM test_alter_attach_01901D; SELECT count() FROM test_alter_attach_01901S; INSERT INTO test_alter_attach_01901S VALUES (1, '2020-01-01'); ALTER TABLE test_alter_attach_01901D REPLACE PARTITION '2020-01-01' FROM test_alter_attach_01901S; SELECT count() FROM test_alter_attach_01901D; SELECT count() FROM test_alter_attach_01901S; DROP TABLE test_alter_attach_01901S; DROP TABLE test_alter_attach_01901D;
<filename>postgresql/src/pl/plpython/plpython_setof.sql CREATE FUNCTION test_setof() returns setof text AS 'if GD.has_key("calls"): GD["calls"] = GD["calls"] + 1 if GD["calls"] > 2: return None else: GD["calls"] = 1 return str(GD["calls"])' LANGUAGE 'plpython';
<filename>hasura/migrations/1607439658667_create_table_public_ContentGroupTag/up.sql CREATE EXTENSION IF NOT EXISTS pgcrypto; CREATE TABLE "public"."ContentGroupTag"("id" uuid NOT NULL DEFAULT gen_random_uuid(), "contentGroupId" uuid NOT NULL, "tagId" uuid NOT NULL, PRIMARY KEY ("id") , FOREIGN KEY ("contentGroupId") REFERENCES "public"."ContentGroup"("id") ON UPDATE cascade ON DELETE cascade, FOREIGN KEY ("tagId") REFERENCES "public"."Tag"("id") ON UPDATE cascade ON DELETE cascade, UNIQUE ("contentGroupId", "tagId"));
create user if not exists 'blog'@'%' identified by 'password'; grant all on *.* to 'blog'@'%'; create database if not exists blog; use blog;
<reponame>AtlanticR/bio.utilities -------------------------------------------------------- -- DDL for Table RFREPS -------------------------------------------------------- CREATE TABLE "GROUNDFISH"."RFREPS" ( "MISSION" VARCHAR2(15 BYTE), "VESEL" VARCHAR2(10 BYTE), "CRUNO" NUMBER(5,0), "SETNO" VARCHAR2(20 BYTE), "STATION" VARCHAR2(20 BYTE) ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING STORAGE(INITIAL 49152 NEXT 65536 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "MFD_GROUNDFISH" ; GRANT SELECT ON "GROUNDFISH"."RFREPS" TO "RICARDD"; GRANT SELECT ON "GROUNDFISH"."RFREPS" TO "HUBLEYB"; GRANT SELECT ON "GROUNDFISH"."RFREPS" TO "GREYSONP";
USE employeeDB; DELETE FROM department; DELETE FROM role; DELETE FROM employee; INSERT INTO department (name) VALUES ("Human Resources"), ("IT"), ("Accounting"), ("Marketing"), ("Research and Development"); INSERT INTO role(title, salary, department_id) VALUES ("Manager", 100000, 1), ("Assitant the manager", 50000, 1), ("Salesman", 50000, 4), ("Receptionist", 50000, 4); INSERT INTO employee(first_name, last_name, role_id, manager_id) VALUES ("Bob", "starky", 1, null), ("sharon", "babushka", 2, 1);
<gh_stars>0 -- CreateTable CREATE TABLE "Task" ( "id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "title" TEXT NOT NULL, "createdAt" DATETIME NOT NULL, "done" BOOLEAN NOT NULL, "userId" INTEGER, FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE SET NULL ON UPDATE CASCADE ); -- CreateTable CREATE TABLE "User" ( "id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "name" TEXT NOT NULL );
REM NoDataFound.sql REM Chapter 6, Oracle9i PL/SQL Programming by <NAME> REM This script illustrates the behavior of the NO_DATA_FOUND REM exception. set serveroutput on DECLARE -- Record to hold room information. v_RoomData rooms%ROWTYPE; BEGIN -- Retrieve information about room ID -1. SELECT * INTO v_RoomData FROM rooms WHERE room_id = -1; -- The following statement will never be executed, since -- control passes immediately to the exception handler. IF SQL%NOTFOUND THEN DBMS_OUTPUT.PUT_LINE('SQL%NOTFOUND is true!'); END IF; EXCEPTION WHEN NO_DATA_FOUND THEN DBMS_OUTPUT.PUT_LINE('NO_DATA_FOUND raised!'); END; /
create type tip_adresa as object ( strada varchar2(20), numar varchar2(5), oras varchar2(20), tara varchar2(20) ); create or replace type tip_angajat as object ( cod_personal number(9), nume varchar2(20), prenume varchar2(20), salariu number(8), adresa tip_adresa, MEMBER FUNCTION categorie_salariu (limita1 IN number, limita2 IN number) RETURN number, PRAGMA RESTRICT_REFERENCES (categorie_salariu, WNDS, WNPS, RNPS) ); / CREATE OR REPLACE TYPE BODY tip_angajat AS MEMBER FUNCTION categorie_salariu(Limita1 IN number, limita2 IN number) RETURN number IS Categorie number(1); Begin IF salariu < limita1 THEN categorie :=1; ELSIF salariu < limita2 THEN categorie :=2; ELSE categorie :=3; END IF; RETURN categorie; End categorie_salariu; End; / create table profesor( angajat tip_angajat, titlu varchar2(10), functie varchar2(20), constraint pk_cod primary key(angajat.cod_personal) ); / insert into profesor(angajat,titlu,functie) values( tip_angajat(111, 'Bodrug', 'Svetlana', 1000, tip_adresa('Mateevici', '31', 'Chisinau', 'RM')), 'doctor', 'profesor' ); / declare emp tip_angajat; begin emp := tip_angajat(111, 'Bodrug', 'Svetlana', 1000, tip_adresa('Mateevici', '31', 'Chisinau', 'RM') ); dbms_output.put_line( 'nume: ' || emp.nume || ', prenume: ' || emp.prenume || ', strada: ' || emp.adresa.strada || ', numar casei: ' || emp.adresa.numar || ', orasul: ' || emp.adresa.oras || ', tara: ' || emp.adresa.tara || ', salariu: ' || emp.salariu || ', categorie salariu: ' || emp.categorie_salariu(1000, 2000) || ', cod personal: ' || emp.cod_personal ); end; create or replace type tip_triunghi as object ( latura_1 number(5, 2), latura_2 number(5, 2), latura_3 number(5, 2), member function exista return boolean, PRAGMA RESTRICT_REFERENCES (exista, WNDS, WNPS, RNPS) ); / create or replace type body tip_triunghi as member function exista return boolean is begin return latura_1 < latura_2 + latura_3 and latura_2 < latura_1 + latura_3 and latura_3 < latura_1 + latura_2; end; end; / declare t tip_triunghi; begin t := tip_triunghi(1, 2, 2); if t.exista() then dbms_output.put_line('Exista.'); else dbms_output.put_line('Nu Exista.'); end if; t := tip_triunghi(1, 2, 4); if t.exista() then dbms_output.put_line('Exista.'); else dbms_output.put_line('Nu Exista.'); end if; end;
<reponame>logancollingwood/smashlounge-back<gh_stars>1-10 -- Adminer 4.7.0 MySQL dump SET NAMES utf8; SET time_zone = '+00:00'; SET foreign_key_checks = 0; SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO'; SET NAMES utf8mb4; CREATE DATABASE `smashlounge` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */; USE `smashlounge`; DROP TABLE IF EXISTS `attacks`; CREATE TABLE `attacks` ( `id` int(11) NOT NULL AUTO_INCREMENT, `charid` int(11) NOT NULL, `gameid` int(11) NOT NULL, `game_ver` int(11) NOT NULL, `gif_id` int(11) NOT NULL, `input_type` int(11) NOT NULL, `input_dir` int(11) NOT NULL, `seq_num` int(11) NOT NULL, `seq_dir` int(11) NOT NULL, `description` varchar(450) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `inputs` varchar(450) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `links_to` int(11) NOT NULL, `links_from` int(11) NOT NULL, `movetype` int(11) NOT NULL, `total_frames` int(11) NOT NULL, `active_start` int(11) NOT NULL, `active_end` int(11) NOT NULL, `hit_start` int(11) NOT NULL, `hit_end` int(11) NOT NULL, `hit_second_start` int(11) NOT NULL, `hit_second_end` int(11) NOT NULL, `hit_third_start` int(11) NOT NULL, `hit_third_end` int(11) NOT NULL, `hit_fourth_start` int(11) NOT NULL, `hit_fourth_end` int(11) NOT NULL, `iasa` int(11) NOT NULL, `charge_frame` int(11) NOT NULL, `invincible_start` int(11) NOT NULL, `invincible_end` int(11) NOT NULL, `landlag` int(11) NOT NULL, `lcancel` int(11) NOT NULL, `auto_cancelable` tinyint(1) NOT NULL, `auto_cancel_start` int(11) NOT NULL, `auto_cancel_end` int(11) NOT NULL, `grab_start` int(11) NOT NULL, `grab_end` int(11) NOT NULL, `lag_on_release` int(11) NOT NULL, `reflects` tinyint(1) NOT NULL, `reflect_start` int(11) NOT NULL, `reflect_end` int(11) NOT NULL, `reflection_lag` int(11) NOT NULL, `jcable` tinyint(1) NOT NULL, `grounded` tinyint(1) NOT NULL, `misc` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; INSERT INTO `attacks` (`id`, `charid`, `gameid`, `game_ver`, `gif_id`, `input_type`, `input_dir`, `seq_num`, `seq_dir`, `description`, `inputs`, `links_to`, `links_from`, `movetype`, `total_frames`, `active_start`, `active_end`, `hit_start`, `hit_end`, `hit_second_start`, `hit_second_end`, `hit_third_start`, `hit_third_end`, `hit_fourth_start`, `hit_fourth_end`, `iasa`, `charge_frame`, `invincible_start`, `invincible_end`, `landlag`, `lcancel`, `auto_cancelable`, `auto_cancel_start`, `auto_cancel_end`, `grab_start`, `grab_end`, `lag_on_release`, `reflects`, `reflect_start`, `reflect_end`, `reflection_lag`, `jcable`, `grounded`, `misc`, `created_at`, `updated_at`) VALUES (1, 1, 0, 0, 1790, 1, 3, 0, 0, 'Down B (Air)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (2, 1, 0, 0, 1788, 1, 1, 0, 0, 'Up B (Air)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (3, 1, 0, 0, 1789, 4, 1, 0, 0, 'Up B (Ground)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (4, 1, 0, 0, 1787, 4, 3, 0, 0, 'Down B (Ground)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (5, 1, 0, 0, 638, 4, 2, 0, 0, 'Forward B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (6, 1, 0, 0, 639, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (7, 1, 0, 0, 640, 5, 5, 2, 0, 'Jab 2', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (8, 1, 0, 0, 644, 3, 2, 0, 0, 'Forward Tilt Low', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (9, 1, 0, 0, 643, 3, 2, 0, 0, 'Forward Tilt High', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (10, 1, 0, 0, 642, 3, 2, 0, 0, 'Forward Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (11, 1, 0, 0, 645, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (12, 1, 0, 0, 641, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (13, 1, 0, 0, 648, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (14, 1, 0, 0, 647, 2, 2, 0, 0, 'Forward Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (15, 1, 0, 0, 646, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (16, 1, 0, 0, 653, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (17, 1, 0, 0, 652, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (18, 1, 0, 0, 650, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (19, 1, 0, 0, 649, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (20, 1, 0, 0, 651, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (21, 1, 0, 0, 654, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (22, 1, 0, 0, 655, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (23, 1, 0, 0, 656, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (24, 1, 0, 0, 658, 8, 5, 0, 0, 'Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (25, 1, 0, 0, 657, 1, 5, 0, 0, 'Air Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (26, 1, 0, 0, 659, 9, 2, 0, 0, 'Forward Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (27, 2, 0, 0, 662, 5, 5, 3, 0, 'Jab 3', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (28, 2, 0, 0, 661, 5, 5, 2, 0, 'Jab 2', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (29, 2, 0, 0, 663, 3, 2, 0, 0, 'Forward Tilt High', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (30, 2, 0, 0, 664, 3, 2, 0, 0, 'Forward Tilt Low', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (31, 2, 0, 0, 665, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (32, 2, 0, 0, 668, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (33, 2, 0, 0, 670, 1, 5, 0, 0, 'Air Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (34, 2, 0, 0, 666, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (35, 2, 0, 0, 669, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (36, 2, 0, 0, 667, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (37, 2, 0, 0, 660, 4, 0, 0, 0, 'Neutral B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (38, 3, 0, 0, 673, 4, 0, 0, 0, 'Neutral B (Charged)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (39, 3, 0, 0, 1793, 1, 1, 0, 0, 'Up B (Air)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (40, 3, 0, 0, 1792, 4, 1, 0, 0, 'Up B (Ground)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (41, 3, 0, 0, 674, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (42, 3, 0, 0, 675, 5, 5, 2, 0, 'Jab 2', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (43, 3, 0, 0, 677, 3, 2, 0, 0, 'Forward Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (44, 3, 0, 0, 683, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (45, 3, 0, 0, 685, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (46, 3, 0, 0, 689, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (47, 3, 0, 0, 686, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (48, 3, 0, 0, 691, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (49, 3, 0, 0, 684, 1, 5, 0, 0, 'Air Dodge', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (50, 3, 0, 0, 671, 4, 3, 0, 0, 'Down B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (51, 3, 0, 0, 694, 8, 5, 0, 0, 'Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (52, 3, 0, 0, 672, 4, 2, 0, 0, 'Forward B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (53, 3, 0, 0, 695, 9, 2, 0, 0, 'Forward Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (54, 3, 0, 0, 688, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (55, 3, 0, 0, 690, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (56, 3, 0, 0, 692, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (57, 3, 0, 0, 680, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (58, 3, 0, 0, 693, 4, 4, 0, 0, 'Backwards Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (59, 3, 0, 0, 678, 3, 2, 0, 0, 'Forward Tilt High', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (60, 3, 0, 0, 682, 2, 2, 0, 0, 'Forward Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (61, 3, 0, 0, 1791, 4, 0, 0, 0, 'Neutral B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (62, 3, 0, 0, 676, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (63, 3, 0, 0, 687, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (64, 3, 0, 0, 681, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (65, 3, 0, 0, 679, 3, 2, 0, 0, 'Forward Tilt Low', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (66, 3, 0, 0, 1794, 4, 0, 0, 0, 'Neutral B (Charging)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (67, 4, 0, 0, 699, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (68, 4, 0, 0, 700, 5, 5, 2, 0, 'Jab 2', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (69, 4, 0, 0, 701, 5, 5, 3, 0, 'Jab 3', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (70, 4, 0, 0, 703, 3, 2, 0, 0, 'Forward Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (71, 4, 0, 0, 705, 3, 2, 0, 0, 'Forward Tilt Low', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (72, 4, 0, 0, 704, 3, 2, 0, 0, 'Forward Tilt High', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (73, 4, 0, 0, 702, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (74, 4, 0, 0, 713, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (75, 4, 0, 0, 715, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (76, 4, 0, 0, 716, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (77, 4, 0, 0, 708, 2, 2, 0, 0, 'Forward Smash Low', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (78, 4, 0, 0, 706, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (79, 4, 0, 0, 707, 2, 2, 0, 0, 'Forward Smash High', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (80, 4, 0, 0, 709, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (81, 4, 0, 0, 714, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (82, 4, 0, 0, 711, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (83, 4, 0, 0, 712, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (84, 4, 0, 0, 718, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (85, 4, 0, 0, 717, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (86, 4, 0, 0, 696, 4, 3, 0, 0, 'Down B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (87, 4, 0, 0, 698, 4, 1, 0, 0, 'Up B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (88, 4, 0, 0, 697, 4, 2, 0, 0, 'Forward B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (89, 4, 0, 0, 710, 1, 5, 0, 0, 'Air Dodge', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (90, 4, 0, 0, 720, 9, 2, 0, 0, 'Forward Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (91, 4, 0, 0, 719, 8, 5, 0, 0, 'Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (92, 5, 0, 0, 722, 4, 0, 0, 0, 'Neutral B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (93, 5, 0, 0, 724, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (94, 5, 0, 0, 725, 5, 5, 2, 0, 'Jab 2', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (95, 5, 0, 0, 726, 5, 5, 3, 0, 'Jab 3', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (96, 5, 0, 0, 728, 3, 2, 0, 0, 'Forward Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (97, 5, 0, 0, 729, 3, 2, 0, 0, 'Forward Tilt High', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (98, 5, 0, 0, 731, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (99, 5, 0, 0, 742, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (100, 5, 0, 0, 737, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (101, 5, 0, 0, 743, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (102, 5, 0, 0, 730, 3, 2, 0, 0, 'Forward Tilt Low', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (103, 5, 0, 0, 736, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (104, 5, 0, 0, 740, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (105, 5, 0, 0, 727, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (106, 5, 0, 0, 733, 2, 2, 0, 0, 'Forward Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (107, 5, 0, 0, 741, 4, 0, 0, 0, 'Neutral B (air)', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (108, 5, 0, 0, 738, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (109, 5, 0, 0, 732, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (110, 5, 0, 0, 734, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (111, 5, 0, 0, 744, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (112, 5, 0, 0, 721, 4, 3, 0, 0, 'Down B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (113, 5, 0, 0, 739, 4, 2, 0, 0, 'Forward B', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (114, 5, 0, 0, 735, 1, 5, 0, 0, 'Air Dodge', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (115, 5, 0, 0, 723, 4, 1, 0, 0, 'Up B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (116, 5, 0, 0, 745, 4, 4, 0, 0, 'Backwards Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (117, 5, 0, 0, 747, 9, 2, 0, 0, 'Forward Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (118, 5, 0, 0, 746, 8, 5, 0, 0, 'Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (119, 6, 0, 0, 750, 4, 0, 0, 0, 'Neutral B', '', 0, 0, 0, 36, 0, 34, 10, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-09 05:00:00'), (120, 6, 0, 0, 751, 4, 0, 0, 0, 'Neutral B (air)', '', 0, 0, 0, 36, 0, 0, 10, 11, 20, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-16 21:01:33'), (121, 6, 0, 0, 749, 4, 2, 0, 0, 'Forward B (air)', '', 0, 0, 0, 63, 21, 0, 22, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-09 05:00:00'), (122, 6, 0, 0, 748, 4, 3, 0, 0, 'Down B', '', 0, 0, 0, 39, 4, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 4, 21, 19, 1, 0, '', '0000-00-00 00:00:00', '2015-11-09 05:00:00'), (123, 6, 0, 0, 752, 4, 1, 0, 0, 'Up B', '', 0, 0, 0, 92, 0, 0, 20, 20, 22, 22, 24, 24, 26, 26, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-16 21:02:31'), (124, 6, 0, 0, 753, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 17, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-16 20:39:01'), (125, 6, 0, 0, 754, 5, 5, 2, 0, 'Jab 2', '', 0, 0, 1, 20, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-16 20:40:43'), (126, 6, 0, 0, 755, 5, 5, 3, 0, 'Jab 3', '', 0, 0, 1, 36, 0, 0, 3, 4, 10, 11, 17, 18, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-16 20:41:38'), (127, 6, 0, 0, 758, 3, 2, 0, 0, 'Forward Tilt High', '', 0, 0, 2, 26, 0, 0, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-16 20:44:25'), (128, 6, 0, 0, 759, 3, 2, 0, 0, 'Forward Tilt Low', '', 0, 0, 2, 26, 0, 0, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-16 20:44:47'), (129, 6, 0, 0, 757, 3, 2, 0, 0, 'Forward Tilt', '', 0, 0, 2, 26, 0, 0, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-16 20:43:55'), (130, 6, 0, 0, 756, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 29, 0, 0, 7, -12, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-16 20:42:52'), (131, 6, 0, 0, 760, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 24, 0, 0, 5, 11, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-16 20:45:21'), (132, 6, 0, 0, 762, 2, 2, 0, 0, 'Forward Smash', '', 0, 0, 3, 39, 0, 0, 12, 22, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '', '0000-00-00 00:00:00', '2015-11-16 20:49:57'), (133, 6, 0, 0, 763, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 41, 0, 0, 7, 17, 0, 0, 0, 0, 0, 0, 0, 2, 1, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, '', '0000-00-00 00:00:00', '2015-11-16 20:49:40'), (134, 6, 0, 0, 761, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 49, 0, 0, 6, 10, 0, 0, 0, 0, 0, 0, 46, 2, 6, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '', '0000-00-00 00:00:00', '2015-11-16 20:50:12'), (135, 6, 0, 0, 767, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 49, 0, 0, 4, 31, 0, 0, 0, 0, 0, 0, 42, 0, 0, 0, 15, 7, 1, 3, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-16 20:55:28'), (136, 6, 0, 0, 768, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 39, 0, 0, 8, 9, 11, 14, 0, 0, 0, 0, 36, 0, 0, 0, 18, 9, 1, 7, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-16 20:56:20'), (137, 6, 0, 0, 765, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 49, 0, 0, 5, 6, 8, 9, 11, 12, 14, 15, 0, 0, 0, 0, 18, 9, 1, 4, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-16 20:53:08'), (138, 6, 0, 0, 766, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 59, 0, 0, 6, 8, 16, 18, 24, 26, 33, 35, 53, 0, 0, 0, 22, 11, 1, 5, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-16 20:54:18'), (139, 6, 0, 0, 764, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 39, 0, 0, 4, 19, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 20, 10, 1, 3, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-16 20:51:25'), (140, 6, 0, 0, 769, 9, 4, 0, 0, 'Backwards Roll', '', 0, 0, 5, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-16 20:57:43'), (141, 6, 0, 0, 770, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 39, 0, 0, 4, 17, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-16 20:58:15'), (142, 6, 0, 0, 771, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 13, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-09 21:19:06'), (143, 6, 0, 0, 772, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-09 21:14:28'), (144, 6, 0, 0, 773, 1, 5, 0, 0, 'Air Dodge', '', 0, 0, 6, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-16 20:58:48'), (145, 6, 0, 0, 774, 8, 5, 0, 0, 'Dodge', '', 0, 0, 6, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-16 20:59:56'), (146, 6, 0, 0, 775, 9, 2, 0, 0, 'Forward Roll', '', 0, 0, 6, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '2015-11-16 21:00:21'), (147, 7, 0, 0, 777, 4, 0, 0, 0, 'Neutral B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (148, 7, 0, 0, 779, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (149, 7, 0, 0, 782, 3, 2, 0, 0, 'Forward Tilt High', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (150, 7, 0, 0, 781, 3, 2, 0, 0, 'Forward Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (151, 7, 0, 0, 783, 3, 2, 0, 0, 'Forward Tilt Low', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (152, 7, 0, 0, 784, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (153, 7, 0, 0, 780, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (154, 7, 0, 0, 1795, 2, 2, 0, 0, 'Forward Smash (High)', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (155, 7, 0, 0, 785, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (156, 7, 0, 0, 787, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (157, 7, 0, 0, 788, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (158, 7, 0, 0, 1796, 2, 2, 0, 0, 'Forward Smash (Low)', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (159, 7, 0, 0, 1797, 4, 3, 0, 0, 'Down B (Ground)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (160, 7, 0, 0, 786, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (161, 7, 0, 0, 1798, 4, 2, 0, 0, 'Forward B (Ground)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (162, 7, 0, 0, 776, 1, 2, 0, 0, 'Forward B (Air)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (163, 7, 0, 0, 789, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (164, 7, 0, 0, 1799, 1, 3, 0, 0, 'Down B (Air)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (165, 7, 0, 0, 778, 4, 1, 0, 0, 'Up B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (166, 7, 0, 0, 1800, 1, 2, 0, 0, 'Forward B (Air)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (167, 8, 0, 0, 791, 4, 3, 0, 0, 'Down B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (168, 8, 0, 0, 790, 1, 4, 0, 0, 'Back Air', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (169, 8, 0, 0, 793, 4, 0, 0, 0, 'Neutral B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (170, 8, 0, 0, 792, 4, 2, 0, 0, 'Forward B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (171, 8, 0, 0, 794, 4, 1, 0, 0, 'Up B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (172, 8, 0, 0, 795, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (173, 8, 0, 0, 796, 5, 5, 2, 0, 'Jab 2', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (174, 8, 0, 0, 797, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (175, 8, 0, 0, 800, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (176, 8, 0, 0, 799, 3, 2, 0, 0, 'Forward Tilt Low', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (177, 8, 0, 0, 798, 3, 2, 0, 0, 'Forward Tilt High', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (178, 8, 0, 0, 802, 2, 2, 0, 0, 'Forward Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (179, 8, 0, 0, 801, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (180, 8, 0, 0, 803, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (181, 8, 0, 0, 806, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (182, 8, 0, 0, 805, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (183, 8, 0, 0, 804, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (184, 8, 0, 0, 807, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (185, 8, 0, 0, 809, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (186, 8, 0, 0, 808, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (187, 8, 0, 0, 812, 4, 4, 0, 0, 'Backwards Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (188, 8, 0, 0, 814, 9, 2, 0, 0, 'Forward Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (189, 8, 0, 0, 813, 8, 5, 0, 0, 'Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (190, 8, 0, 0, 811, 1, 5, 0, 0, 'Air Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (191, 8, 0, 0, 810, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (192, 9, 0, 0, 815, 4, 3, 0, 0, 'Down B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (193, 9, 0, 0, 819, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (194, 9, 0, 0, 820, 5, 5, 2, 0, 'Jab 2', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (195, 9, 0, 0, 822, 3, 2, 0, 0, 'Forward Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (196, 9, 0, 0, 823, 3, 2, 0, 0, 'Forward Tilt High', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (197, 9, 0, 0, 824, 3, 2, 0, 0, 'Forward Tilt Low', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (198, 9, 0, 0, 821, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (199, 9, 0, 0, 825, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (200, 9, 0, 0, 1801, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (201, 9, 0, 0, 833, 1, 5, 0, 0, 'Air Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (202, 9, 0, 0, 835, 9, 2, 0, 0, 'Forward Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (203, 9, 0, 0, 826, 2, 2, 0, 0, 'Forward Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (204, 9, 0, 0, 829, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (205, 9, 0, 0, 817, 4, 0, 0, 0, 'Neutral B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (206, 9, 0, 0, 1802, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (207, 9, 0, 0, 827, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (208, 9, 0, 0, 828, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (209, 9, 0, 0, 831, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (210, 9, 0, 0, 816, 4, 2, 0, 0, 'Forward B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (211, 9, 0, 0, 818, 4, 1, 0, 0, 'Up B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (212, 9, 0, 0, 830, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (213, 9, 0, 0, 832, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (214, 9, 0, 0, 834, 4, 4, 0, 0, 'Backwards Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (215, 10, 0, 0, 837, 4, 2, 0, 0, 'Forward B (air)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (216, 10, 0, 0, 840, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (217, 10, 0, 0, 841, 5, 5, 2, 0, 'Jab 2', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (218, 10, 0, 0, 842, 5, 5, 3, 0, 'Jab 3', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (219, 10, 0, 0, 843, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (220, 10, 0, 0, 857, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (221, 10, 0, 0, 844, 3, 2, 0, 0, 'Forward Tilt High', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (222, 10, 0, 0, 856, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (223, 10, 0, 0, 839, 4, 1, 0, 0, 'Up B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (224, 10, 0, 0, 848, 2, 2, 0, 0, 'Forward Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (225, 10, 0, 0, 845, 3, 2, 0, 0, 'Forward Tilt Low', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (226, 10, 0, 0, 846, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (227, 10, 0, 0, 849, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (228, 10, 0, 0, 847, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (229, 10, 0, 0, 855, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (230, 10, 0, 0, 850, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (231, 10, 0, 0, 853, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (232, 10, 0, 0, 851, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (233, 10, 0, 0, 852, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (234, 10, 0, 0, 838, 4, 0, 0, 0, 'Neutral B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (235, 10, 0, 0, 836, 4, 3, 0, 0, 'Down B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (236, 10, 0, 0, 854, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (237, 11, 0, 0, 859, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (238, 11, 0, 0, 860, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (239, 11, 0, 0, 863, 3, 2, 0, 0, 'Forward Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (240, 11, 0, 0, 862, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (241, 11, 0, 0, 866, 2, 2, 0, 0, 'Forward Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (242, 11, 0, 0, 870, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (243, 11, 0, 0, 867, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (244, 11, 0, 0, 871, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (245, 11, 0, 0, 868, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (246, 11, 0, 0, 869, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (247, 11, 0, 0, 872, 1, 5, 0, 0, 'Z Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (248, 11, 0, 0, 873, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (249, 11, 0, 0, 1804, 4, 1, 0, 0, 'Up B (Ground)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (250, 11, 0, 0, 874, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (251, 11, 0, 0, 1805, 1, 1, 0, 0, 'Up B (Air)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (252, 11, 0, 0, 858, 4, 0, 0, 0, 'Neutral B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (253, 11, 0, 0, 875, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (254, 11, 0, 0, 1803, 4, 1, 0, 0, 'Up B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (255, 11, 0, 0, 861, 5, 5, 2, 0, 'Jab 2', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (256, 11, 0, 0, 1806, 5, 5, 3, 0, 'Jab 3', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (257, 11, 0, 0, 865, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (258, 11, 0, 0, 864, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (259, 11, 0, 0, 1807, 5, 5, 0, 0, 'Jab (Rapid)', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (260, 12, 0, 0, 879, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (261, 12, 0, 0, 880, 5, 5, 2, 0, 'Jab 2', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (262, 12, 0, 0, 881, 5, 5, 3, 0, 'Jab 3', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (263, 12, 0, 0, 884, 3, 2, 0, 0, 'Forward Tilt High', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (264, 12, 0, 0, 883, 3, 2, 0, 0, 'Forward Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (265, 12, 0, 0, 885, 3, 2, 0, 0, 'Forward Tilt Low', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (266, 12, 0, 0, 894, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (267, 12, 0, 0, 882, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (268, 12, 0, 0, 877, 4, 0, 0, 0, 'Neutral B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (269, 12, 0, 0, 878, 4, 1, 0, 0, 'Up B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (270, 12, 0, 0, 1808, 1, 3, 0, 0, 'Down B (Air)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (271, 12, 0, 0, 876, 4, 2, 0, 0, 'Forward B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (272, 12, 0, 0, 896, 11, 5, 0, 0, 'Taunt', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (273, 12, 0, 0, 886, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (274, 12, 0, 0, 888, 2, 2, 0, 0, 'Forward Smash High', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (275, 12, 0, 0, 890, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (276, 12, 0, 0, 889, 2, 2, 0, 0, 'Forward Smash Low', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (277, 12, 0, 0, 895, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (278, 12, 0, 0, 887, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (279, 12, 0, 0, 893, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (280, 12, 0, 0, 897, 0, 1, 0, 0, 'Get Up Attack', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (281, 12, 0, 0, 892, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (282, 12, 0, 0, 891, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (283, 12, 0, 0, 1809, 4, 3, 0, 0, 'Down B (Ground)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (284, 12, 0, 0, 899, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (285, 12, 0, 0, 898, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (286, 13, 0, 0, 901, 4, 2, 0, 0, 'Forward B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (287, 13, 0, 0, 903, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (288, 13, 0, 0, 904, 5, 5, 2, 0, 'Jab 2', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (289, 13, 0, 0, 905, 5, 5, 3, 0, 'Jab 3', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (290, 13, 0, 0, 908, 3, 2, 0, 0, 'Forward Tilt High', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (291, 13, 0, 0, 907, 3, 2, 0, 0, 'Forward Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (292, 13, 0, 0, 909, 3, 2, 0, 0, 'Forward Tilt Low', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (293, 13, 0, 0, 906, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (294, 13, 0, 0, 910, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (295, 13, 0, 0, 912, 2, 2, 0, 0, 'Forward Smash High', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (296, 13, 0, 0, 914, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (297, 13, 0, 0, 919, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (298, 13, 0, 0, 915, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (299, 13, 0, 0, 916, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (300, 13, 0, 0, 900, 4, 3, 0, 0, 'Down B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (301, 13, 0, 0, 921, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (302, 13, 0, 0, 902, 4, 1, 0, 0, 'Up B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (303, 13, 0, 0, 913, 2, 2, 0, 0, 'Forward Smash Low', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (304, 13, 0, 0, 920, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (305, 13, 0, 0, 911, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (306, 13, 0, 0, 917, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (307, 13, 0, 0, 918, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (308, 14, 0, 0, 922, 4, 3, 0, 0, 'Down B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (309, 14, 0, 0, 924, 4, 2, 3, 0, 'Forward B 3 Down', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (310, 14, 0, 0, 930, 4, 0, 0, 0, 'Neutral B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (311, 14, 0, 0, 932, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (312, 14, 0, 0, 933, 5, 5, 2, 0, 'Jab 2', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (313, 14, 0, 0, 935, 3, 2, 0, 0, 'Forward Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (314, 14, 0, 0, 934, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (315, 14, 0, 0, 936, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (316, 14, 0, 0, 938, 2, 2, 0, 0, 'Forward Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (317, 14, 0, 0, 939, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (318, 14, 0, 0, 937, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (319, 14, 0, 0, 943, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (320, 14, 0, 0, 942, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (321, 14, 0, 0, 945, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (322, 14, 0, 0, 940, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (323, 14, 0, 0, 946, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (324, 14, 0, 0, 944, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (325, 14, 0, 0, 941, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (326, 14, 0, 0, 925, 4, 0, 3, 0, 'Forward B 3 Neutral', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (327, 14, 0, 0, 926, 4, 1, 3, 0, 'Forward B 3 Up', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (328, 14, 0, 0, 928, 4, 0, 4, 0, 'Forward B 4 Neutral', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (329, 14, 0, 0, 927, 4, 2, 4, 0, 'Forward B 4 Down', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (330, 14, 0, 0, 949, 4, 4, 0, 0, 'Backwards Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (331, 14, 0, 0, 951, 9, 2, 0, 0, 'Forward Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (332, 14, 0, 0, 929, 4, 1, 4, 0, 'Forward B 4 Up', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (333, 14, 0, 0, 1811, 4, 2, 2, 0, 'Forward B 2 (Low)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (334, 14, 0, 0, 931, 4, 1, 0, 0, 'Up B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (335, 14, 0, 0, 948, 1, 5, 0, 0, 'Air Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (336, 14, 0, 0, 950, 8, 5, 0, 0, 'Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (337, 14, 0, 0, 947, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (338, 14, 0, 0, 923, 4, 2, 1, 0, 'Forward B 1', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (339, 14, 0, 0, 1810, 4, 2, 2, 0, 'Forward B 2 (High)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (340, 15, 0, 0, 954, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (341, 15, 0, 0, 955, 5, 5, 2, 0, 'Jab 2', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (342, 15, 0, 0, 957, 3, 2, 0, 0, 'Forward Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (343, 15, 0, 0, 956, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (344, 15, 0, 0, 961, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (345, 15, 0, 0, 963, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (346, 15, 0, 0, 962, 2, 2, 0, 0, 'Forward Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (347, 15, 0, 0, 964, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (348, 15, 0, 0, 967, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (349, 15, 0, 0, 966, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (350, 15, 0, 0, 970, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (351, 15, 0, 0, 969, 10, 4, 0, 0, 'Backwards Throw', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (352, 15, 0, 0, 958, 3, 2, 0, 0, 'Forward Tilt High', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (353, 15, 0, 0, 974, 1, 5, 0, 0, 'Air Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (354, 15, 0, 0, 952, 4, 3, 0, 0, 'Down B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (355, 15, 0, 0, 973, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (356, 15, 0, 0, 960, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (357, 15, 0, 0, 959, 3, 2, 0, 0, 'Forward Tilt Low', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (358, 15, 0, 0, 968, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (359, 15, 0, 0, 965, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (360, 15, 0, 0, 972, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (361, 15, 0, 0, 953, 4, 2, 0, 0, 'Forward B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (362, 15, 0, 0, 977, 9, 2, 0, 0, 'Forward Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (363, 15, 0, 0, 975, 4, 4, 0, 0, 'Backwards Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (364, 15, 0, 0, 976, 8, 5, 0, 0, 'Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (365, 15, 0, 0, 971, 10, 2, 0, 0, 'Forward Throw', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (366, 16, 0, 0, 1812, 4, 3, 0, 0, 'Down B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (367, 16, 0, 0, 1813, 4, 3, 0, 0, 'Down B (Charged)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (368, 16, 0, 0, 978, 4, 1, 0, 0, 'Up B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (369, 16, 0, 0, 987, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (370, 16, 0, 0, 986, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (371, 16, 0, 0, 985, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (372, 16, 0, 0, 990, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (373, 16, 0, 0, 1816, 5, 5, 0, 0, 'Jab (Rapid)', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (374, 16, 0, 0, 981, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (375, 16, 0, 0, 984, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (376, 16, 0, 0, 983, 2, 2, 0, 0, 'Forward Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (377, 16, 0, 0, 988, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (378, 16, 0, 0, 989, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (379, 16, 0, 0, 1815, 4, 0, 0, 0, 'Neutral B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (380, 16, 0, 0, 982, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (381, 16, 0, 0, 1850, 4, 2, 0, 0, 'Forward B (Weak)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (382, 16, 0, 0, 980, 3, 2, 0, 0, 'Forward Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (383, 16, 0, 0, 979, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (384, 16, 0, 0, 991, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (385, 16, 0, 0, 1814, 5, 5, 0, 0, 'Jab', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (386, 16, 0, 0, 0, 4, 2, 0, 0, 'Forward B (Strong)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (387, 17, 0, 0, 994, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (388, 17, 0, 0, 996, 5, 5, 3, 0, 'Jab 3', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (389, 17, 0, 0, 995, 5, 5, 2, 0, 'Jab 2', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (390, 17, 0, 0, 998, 3, 2, 0, 0, 'Forward Tilt High', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (391, 17, 0, 0, 999, 3, 2, 0, 0, 'Forward Tilt Low', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (392, 17, 0, 0, 1000, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (393, 17, 0, 0, 1002, 2, 2, 0, 0, 'Forward Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (394, 17, 0, 0, 1818, 1, 2, 0, 0, 'Forward B (Air)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (395, 17, 0, 0, 1819, 4, 1, 1, 0, 'Up B 1', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (396, 17, 0, 0, 1009, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (397, 17, 0, 0, 992, 4, 3, 0, 0, 'Down B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (398, 17, 0, 0, 1820, 4, 1, 2, 0, 'Up B 2', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (399, 17, 0, 0, 1821, 4, 2, 0, 0, 'Forward B (Ground)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (400, 17, 0, 0, 993, 4, 0, 0, 0, 'Neutral B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (401, 17, 0, 0, 1008, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (402, 17, 0, 0, 1010, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (403, 17, 0, 0, 1007, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (404, 17, 0, 0, 1005, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (405, 17, 0, 0, 1003, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (406, 17, 0, 0, 1004, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (407, 17, 0, 0, 1006, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (408, 17, 0, 0, 1001, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (409, 17, 0, 0, 997, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (410, 18, 0, 0, 1018, 3, 2, 0, 0, 'Forward Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (411, 18, 0, 0, 1019, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (412, 18, 0, 0, 1020, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (413, 18, 0, 0, 1822, 2, 2, 0, 0, 'Forward Smash (Golf Club)', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (414, 18, 0, 0, 1823, 2, 2, 0, 0, 'Forward Smash (Racket)', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (415, 18, 0, 0, 1824, 2, 2, 0, 0, 'Forward Smash (Frying Pan)', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (416, 18, 0, 0, 1021, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (417, 18, 0, 0, 1023, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (418, 18, 0, 0, 1022, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (419, 18, 0, 0, 1024, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (420, 18, 0, 0, 1028, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (421, 18, 0, 0, 1027, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (422, 18, 0, 0, 1033, 10, 5, 0, 0, 'Throw', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (423, 18, 0, 0, 1017, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (424, 18, 0, 0, 1012, 4, 2, 0, 0, 'Forward B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (425, 18, 0, 0, 1013, 4, 2, 0, 0, 'Forward B (air)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (426, 18, 0, 0, 1014, 4, 1, 0, 0, 'Up B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (427, 18, 0, 0, 1032, 9, 2, 0, 0, 'Forward Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (428, 18, 0, 0, 1031, 8, 5, 0, 0, 'Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (429, 18, 0, 0, 1030, 1, 5, 0, 0, 'Air Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (430, 18, 0, 0, 1016, 5, 5, 2, 0, 'Jab 2', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (431, 18, 0, 0, 1026, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (432, 18, 0, 0, 1025, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (433, 18, 0, 0, 1015, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (434, 18, 0, 0, 1011, 4, 3, 0, 0, 'Down B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (435, 18, 0, 0, 1029, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (436, 19, 0, 0, 1040, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (437, 19, 0, 0, 1053, 8, 5, 0, 0, 'Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (438, 19, 0, 0, 1035, 4, 0, 0, 0, 'Neutral B (air)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (439, 19, 0, 0, 1037, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (440, 19, 0, 0, 1036, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (441, 19, 0, 0, 1039, 3, 2, 0, 0, 'Forward Tilt Low', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (442, 19, 0, 0, 1045, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (443, 19, 0, 0, 1038, 3, 2, 0, 0, 'Forward Tilt High', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (444, 19, 0, 0, 1043, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (445, 19, 0, 0, 1041, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (446, 19, 0, 0, 1044, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (447, 19, 0, 0, 1034, 4, 2, 0, 0, 'Forward B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (448, 19, 0, 0, 1050, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (449, 19, 0, 0, 1046, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (450, 19, 0, 0, 1048, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (451, 19, 0, 0, 1054, 9, 2, 0, 0, 'Forward Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (452, 19, 0, 0, 1049, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (453, 19, 0, 0, 1042, 2, 2, 0, 0, 'Forward Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (454, 19, 0, 0, 1051, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (455, 19, 0, 0, 1052, 1, 5, 0, 0, 'Air Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (456, 19, 0, 0, 1047, 4, 2, 0, 0, 'Forward B (air)', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (457, 20, 0, 0, 1055, 4, 3, 0, 0, 'Down B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (458, 20, 0, 0, 1059, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (459, 20, 0, 0, 1061, 3, 2, 0, 0, 'Forward Tilt High', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (460, 20, 0, 0, 1062, 3, 2, 0, 0, 'Forward Tilt Low', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (461, 20, 0, 0, 1063, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (462, 20, 0, 0, 1060, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (463, 20, 0, 0, 1064, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (464, 20, 0, 0, 1065, 2, 2, 0, 0, 'Forward Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (465, 20, 0, 0, 1071, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (466, 20, 0, 0, 1074, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (467, 20, 0, 0, 1057, 4, 0, 0, 0, 'Neutral B (air)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (468, 20, 0, 0, 1078, 9, 2, 0, 0, 'Forward Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (469, 20, 0, 0, 1072, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (470, 20, 0, 0, 1066, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (471, 20, 0, 0, 1070, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (472, 20, 0, 0, 1075, 1, 5, 0, 0, 'Air Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (473, 20, 0, 0, 1073, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (474, 20, 0, 0, 1077, 8, 5, 0, 0, 'Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (475, 20, 0, 0, 1058, 4, 1, 0, 0, 'Up B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (476, 20, 0, 0, 1056, 4, 2, 0, 0, 'Forward B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (477, 20, 0, 0, 1076, 4, 4, 0, 0, 'Backwards Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (478, 20, 0, 0, 1067, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (479, 20, 0, 0, 1068, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (480, 20, 0, 0, 1069, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (481, 21, 0, 0, 1079, 4, 3, 0, 0, 'Down B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (482, 21, 0, 0, 1087, 4, 0, 0, 0, 'Neutral B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (483, 21, 0, 0, 1089, 4, 1, 0, 0, 'Up B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (484, 21, 0, 0, 1090, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (485, 21, 0, 0, 1093, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (486, 21, 0, 0, 1091, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (487, 21, 0, 0, 1094, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (488, 21, 0, 0, 1092, 3, 2, 0, 0, 'Forward Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (489, 21, 0, 0, 1097, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (490, 21, 0, 0, 1095, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (491, 21, 0, 0, 1096, 2, 2, 0, 0, 'Forward Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (492, 21, 0, 0, 1100, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (493, 21, 0, 0, 1099, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (494, 21, 0, 0, 1098, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (495, 21, 0, 0, 1101, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (496, 21, 0, 0, 1102, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (497, 21, 0, 0, 1107, 8, 5, 0, 0, 'Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (498, 21, 0, 0, 1085, 4, 0, 4, 0, 'Forward B 4 Neutral', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (499, 21, 0, 0, 1086, 4, 1, 4, 0, 'Forward B 4 Up', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (500, 21, 0, 0, 1825, 4, 2, 2, 0, 'Forward B 2 (High)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (501, 21, 0, 0, 1105, 1, 5, 0, 0, 'Air Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (502, 21, 0, 0, 1083, 4, 1, 3, 0, 'Forward B 3 Up', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (503, 21, 0, 0, 1826, 4, 2, 2, 0, 'Forward B 2 (Low)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (504, 21, 0, 0, 1082, 4, 0, 3, 0, 'Forward B 3 Neutral', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (505, 21, 0, 0, 1088, 4, 0, 0, 0, 'Neutral B (air)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (506, 21, 0, 0, 1081, 4, 2, 3, 0, 'Forward B 3 Down', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (507, 21, 0, 0, 1084, 4, 2, 4, 0, 'Forward B 4 Down', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (508, 21, 0, 0, 1080, 4, 2, 1, 0, 'Forward B 1', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (509, 21, 0, 0, 1104, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (510, 21, 0, 0, 1106, 4, 4, 0, 0, 'Backwards Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (511, 21, 0, 0, 1108, 4, 1, 4, 0, 'Forward B 4 Up', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (512, 21, 0, 0, 1103, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (513, 22, 0, 0, 1832, 1, 1, 0, 0, 'Up B (Air)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (514, 22, 0, 0, 1112, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (515, 22, 0, 0, 1121, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (516, 22, 0, 0, 1122, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (517, 22, 0, 0, 1115, 3, 2, 0, 0, 'Forward Tilt High', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (518, 22, 0, 0, 1828, 1, 2, 0, 0, 'Forward B (Air) (Strong)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (519, 22, 0, 0, 1118, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (520, 22, 0, 0, 1120, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (521, 22, 0, 0, 1113, 5, 5, 2, 0, 'Jab 2', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (522, 22, 0, 0, 1109, 4, 3, 0, 0, 'Down B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (523, 22, 0, 0, 1831, 4, 2, 0, 0, 'Forward B (Ground) (Weak)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (524, 22, 0, 0, 1111, 4, 0, 0, 0, 'Neutral B (charged)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (525, 22, 0, 0, 1830, 1, 2, 0, 0, 'Forward B (Air) (Weak)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (526, 22, 0, 0, 1829, 4, 2, 0, 0, 'Forward B (Ground) (Strong)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (527, 22, 0, 0, 1110, 4, 0, 0, 0, 'Neutral B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (528, 22, 0, 0, 1827, 4, 1, 0, 0, 'Up B (Ground)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (529, 22, 0, 0, 1129, 1, 5, 0, 0, 'Air Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (530, 22, 0, 0, 1130, 4, 4, 0, 0, 'Backwards Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (531, 22, 0, 0, 1126, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (532, 22, 0, 0, 1131, 8, 5, 0, 0, 'Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (533, 22, 0, 0, 1114, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (534, 22, 0, 0, 1127, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (535, 22, 0, 0, 1128, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (536, 22, 0, 0, 1123, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (537, 22, 0, 0, 1119, 2, 2, 0, 0, 'Forward Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (538, 22, 0, 0, 1116, 3, 2, 0, 0, 'Forward Tilt Low', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (539, 22, 0, 0, 1124, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (540, 22, 0, 0, 1132, 9, 2, 0, 0, 'Forward Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (541, 22, 0, 0, 1117, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (542, 22, 0, 0, 1125, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (543, 23, 0, 0, 1136, 4, 1, 0, 0, 'Up B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (544, 23, 0, 0, 1137, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (545, 23, 0, 0, 1139, 5, 5, 3, 0, 'Jab 3', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (546, 23, 0, 0, 1138, 5, 5, 2, 0, 'Jab 2', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (547, 23, 0, 0, 1140, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (548, 23, 0, 0, 1141, 3, 2, 0, 0, 'Forward Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (549, 23, 0, 0, 1147, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (550, 23, 0, 0, 1146, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (551, 23, 0, 0, 1148, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (552, 23, 0, 0, 1150, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (553, 23, 0, 0, 1142, 1, 1, 0, 0, 'Up Air', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (554, 23, 0, 0, 1152, 4, 4, 0, 0, 'Backwards Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (555, 23, 0, 0, 1149, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (556, 23, 0, 0, 1153, 8, 5, 0, 0, 'Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (557, 23, 0, 0, 1154, 9, 2, 0, 0, 'Forward Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (558, 23, 0, 0, 1143, 2, 2, 0, 0, 'Forward Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (559, 23, 0, 0, 1134, 4, 2, 0, 0, 'Forward B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (560, 23, 0, 0, 1144, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (561, 23, 0, 0, 1145, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (562, 23, 0, 0, 1135, 4, 0, 0, 0, 'Neutral B (charged)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (563, 23, 0, 0, 1151, 1, 5, 0, 0, 'Air Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (564, 23, 0, 0, 1133, 4, 3, 0, 0, 'Down B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (565, 23, 0, 0, 1156, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (566, 23, 0, 0, 1155, 4, 0, 0, 0, 'Neutral B (air)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (567, 23, 0, 0, 1158, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (568, 23, 0, 0, 1157, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (569, 24, 0, 0, 1162, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (570, 24, 0, 0, 1166, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (571, 24, 0, 0, 1165, 3, 2, 0, 0, 'Forward Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (572, 24, 0, 0, 1164, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (573, 24, 0, 0, 1169, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (574, 24, 0, 0, 1179, 4, 4, 0, 0, 'Backwards Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (575, 24, 0, 0, 1174, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (576, 24, 0, 0, 1163, 5, 5, 2, 0, 'Jab 2', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (577, 24, 0, 0, 1175, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (578, 24, 0, 0, 1168, 2, 2, 0, 0, 'Forward Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (579, 24, 0, 0, 1167, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (580, 24, 0, 0, 1177, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (581, 24, 0, 0, 1159, 4, 3, 0, 0, 'Down B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (582, 24, 0, 0, 1178, 1, 5, 0, 0, 'Air Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (583, 24, 0, 0, 1171, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (584, 24, 0, 0, 1170, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (585, 24, 0, 0, 1176, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (586, 24, 0, 0, 1160, 4, 0, 0, 0, 'Neutral B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (587, 24, 0, 0, 1161, 4, 1, 0, 0, 'Up B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (588, 24, 0, 0, 1172, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (589, 24, 0, 0, 1180, 8, 5, 0, 0, 'Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (590, 24, 0, 0, 1173, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (591, 24, 0, 0, 1181, 9, 2, 0, 0, 'Forward Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (592, 25, 0, 0, 1833, 4, 1, 0, 0, 'Up B (Ground)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (593, 25, 0, 0, 1184, 5, 5, 2, 0, 'Jab 2', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (594, 25, 0, 0, 1196, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (595, 25, 0, 0, 1192, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (596, 25, 0, 0, 1186, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (597, 25, 0, 0, 1204, 9, 2, 0, 0, 'Forward Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (598, 25, 0, 0, 1202, 4, 4, 0, 0, 'Backwards Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (599, 25, 0, 0, 1201, 1, 5, 0, 0, 'Air Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (600, 25, 0, 0, 1197, 1, 5, 0, 0, 'Z Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (601, 25, 0, 0, 1194, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (602, 25, 0, 0, 1836, 4, 0, 0, 0, 'Neutral B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (603, 25, 0, 0, 1835, 1, 1, 0, 0, 'Up B (Air)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (604, 25, 0, 0, 1195, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (605, 25, 0, 0, 1187, 3, 2, 0, 0, 'Forward Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (606, 25, 0, 0, 1183, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (607, 25, 0, 0, 1834, 4, 0, 0, 0, 'Neutral B (Charging)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (608, 25, 0, 0, 1182, 4, 3, 0, 0, 'Down B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (609, 25, 0, 0, 1838, 4, 2, 0, 0, 'Forward B (Start)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (610, 25, 0, 0, 1837, 4, 2, 0, 0, 'Forward B (End)', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (611, 25, 0, 0, 1198, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (612, 25, 0, 0, 1199, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (613, 25, 0, 0, 1193, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (614, 25, 0, 0, 1189, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (615, 25, 0, 0, 1190, 2, 2, 0, 0, 'Forward Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (616, 25, 0, 0, 1200, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (617, 25, 0, 0, 1185, 5, 5, 3, 0, 'Jab 3', '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (618, 25, 0, 0, 1203, 8, 5, 0, 0, 'Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (619, 25, 0, 0, 1191, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (620, 25, 0, 0, 1188, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (621, 26, 0, 0, 1213, 3, 1, 0, 0, 'Up Tilt', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (622, 26, 0, 0, 1210, 2, 3, 0, 0, 'Down Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (623, 26, 0, 0, 1206, 4, 2, 0, 0, 'Forward B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (624, 26, 0, 0, 1224, 4, 4, 0, 0, 'Backwards Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (625, 26, 0, 0, 1218, 1, 0, 0, 0, 'Neutral Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (626, 26, 0, 0, 1205, 4, 3, 0, 0, 'Down B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (627, 26, 0, 0, 1223, 1, 5, 0, 0, 'Air Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (628, 26, 0, 0, 1226, 9, 2, 0, 0, 'Forward Roll', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (629, 26, 0, 0, 1222, 7, 0, 0, 0, 'Standing Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (630, 26, 0, 0, 1214, 1, 4, 0, 0, 'Back Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (631, 26, 0, 0, 1217, 1, 2, 0, 0, 'Forward Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (632, 26, 0, 0, 1221, 7, 2, 0, 0, 'Running Grab', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (633, 26, 0, 0, 1215, 1, 3, 0, 0, 'Down Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (634, 26, 0, 0, 1207, 4, 0, 0, 0, 'Neutral B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (635, 26, 0, 0, 1219, 1, 1, 0, 0, 'Up Air', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (636, 26, 0, 0, 1216, 3, 3, 0, 0, 'Down Tilt', '', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (637, 26, 0, 0, 1220, 6, 5, 0, 0, 'Dash Attack', '', 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (638, 26, 0, 0, 1211, 2, 2, 0, 0, 'Forward Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (639, 26, 0, 0, 1209, 3, 2, 0, 0, 'Forward Tilt', '', 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (640, 26, 0, 0, 1225, 8, 5, 0, 0, 'Dodge', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (641, 26, 0, 0, 1227, 5, 5, 1, 0, 'Jab 1', '', 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (642, 26, 0, 0, 1208, 4, 1, 0, 0, 'Up B', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (643, 26, 0, 0, 1212, 2, 1, 0, 0, 'Up Smash', '', 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (644, 0, 0, 0, 0, 0, 0, 0, 0, 'description', 'inputs', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'misc', '0000-00-00 00:00:00', '0000-00-00 00:00:00'); DROP TABLE IF EXISTS `charinfo`; CREATE TABLE `charinfo` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `tierdata` int(11) DEFAULT NULL, `weight` varchar(11) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `fallspeed` varchar(11) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `walljump` tinyint(1) NOT NULL, `guide` varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `game` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; INSERT INTO `charinfo` (`id`, `name`, `tierdata`, `weight`, `fallspeed`, `walljump`, `guide`, `game`) VALUES (1, 'Bowser', 24, '1st', '12th-14th', 0, 'Bowser is the heaviest character in the game, making him very tanky and hard to kill at low percents. His body is enormous though, making him prone to extended combos that usually would not work on any other character. Bowser has trouble dealing with any character with more range than him, or characters that can out-maneuver him.\n', 0), (2, '<NAME>', 7, '6th-7th', '2nd', 1, 'Falcon is the fastest character in the game in terms of run speed. His speed allows him to be many places at once, and though most of his moves are slow on startup, he makes up for it with his unmatched speed. Falcon\'s main combo finisher is the infamous knee (forward air) as it combos from many of his moves and kills at low percents.\n', 0), (3, '<NAME>', 17, '2nd', '4th-5th', 0, '<NAME> is a character that lacks reliable attacks with hit boxes in front of him. Instead his back air, which hits very far behind him, is his greatest asset in the spacing game. DK\'s best strategy is to abuse his grab combos, as he can set up for multi-hit juggles against the majority of the cast. Additionally he has a very good horizontal recovery, but not a good vertical.\n', 0), (4, 'Dr. Mario', 9, '8th-10th', '16th-18th', 0, 'Dr. Mario is a compact powerhouse, packed with quick aerials and a solid ground game. Overall his range and recovery are weak, but they are made up with his powerful kill moves and ability to get quick kills using his back air and forward b (the cape).', 0), (5, 'Falco', 2, '20th-21st', '1st', 1, 'Falco is an aggressive character whose primary strategy is to pressure the opponent. Falco\'s vertical mobility is possibly the best in the game. Additionally by using his \'short hop laser\', he can control space horizontally, opening up his opponents for high pressure combos.', 0), (6, 'Fox', 1, '22nd', '3rd', 1, 'Fox is easily the most agile character in the game. His speed and combo setups are optimized when paired with SHFFLing and proper use of the shine (down B). Fox is ranked #1 for a good reason, having one of the strongest up-smashes, unmatched speed and close range fighting, as well as the infamous shine. \n', 0), (7, 'Ganondorf', 12, '4th', '10th', 0, 'Ganondorf is a bulky and heavy powerhouse. Ganon often gets dominated because of his slow moves and giant body-- but his moves pack a punch. Ganondorf\'s attacks kill most characters at low percents and is one of the hardest punishing mid-tiers in the game. Although he spends much of his time simply working for his openings, when he gets them they count.\n', 0), (8, '<NAME>', 8, '15th', '19th-21st', 0, 'The Ice Climbers is a character in which the player controls Popo (blue IC depending on costume color), while Nana follows and mimics Popo\'s inputs with a slight delay. The main strategy with Ice Climbers is abusing their grab combos, as they can kill off of most grabs. Strategies change constantly with IC\'s based on if your Nana is present or not. \n', 0), (9, 'Jigglypuff', 5, '24th-25th', '26th', 0, 'Being the 2nd lightest character in the game, Jigglypuff is prone to dying at low percents. Although this is a disadvantage, her elusiveness in the air paired with some of the best aerial attacks in the game makes her a powerful character. Jigglypuff has 5 jumps and is able to float back on to the stage with ease, making recovery very simple. \n', 0), (10, 'Kirby', 26, '23rd', '19th-21st', 0, 'A shell of its former self in Smash 64, Kirby has almost no good qualities as a character. Besides the fact that Kirby has 5 jumps, his ground and aerial mobility are terrible.\n', 0), (11, 'Link', 16, '6th-7th', '7th-9th', 0, 'Link is a slower but more powerful version of Young Link. He does not have the speed, maneuverability, or projectile game that Young Link offers, but he makes up for it with his strong sword. Additionally, Link has one of the farthest reaching grapple recoveries, making him a unique character to edge-guard.\n', 0), (12, 'Luigi', 13, '8th-10th', '19th-21st', 0, 'Luigi has the longest wavedash range in the game because of his low traction. Luigi\'s slow run and aerial speeds are made up for with his obscenely long wavedash. Luigi has one of the most unique recoveries in the game, as his up b only sends him vertically, and his forward b sends him horizontally. When using the two in combination, he has a very adequate recovery. \n', 0), (13, 'Mario', 14, '8th-10th', '16th-18th', 1, 'Mario is one of the most basic characters in the game. His strengths are similar to Dr. Mario\'s in that he has a powerful ground game and is able to set up for edge-guard situations with most of his attacks. Mario\'s recovery and range are also weak, but he makes up for it with his powerful ground game.\n', 0), (14, 'Marth', 4, '16th', '6th', 0, 'Marth has the most range of anyone in the game. Being one of the few characters that wields a sword, his hitboxes extend very far out, making his defense game great. Marth is a unique character in that his attacks have different hitboxes based on where you hit with the sword (hilt = weak hit, middle = regular hit, tip = strong hit). \n', 0), (15, 'Mewtwo', 21, '17th-19th', '22nd-23rd', 0, 'Mewtwo is a poorly designed character, having almost no kill moves and no neutral game. Mewtwo only has a few redeeming qualities, such as his amazing recovery and powerful grabs. It is very hard to combo with/against Mewtwo because of his lack of speed and floatiness.\n', 0), (16, 'Mr. Game And Watch', 22, '24th-25th', '16th-18th', 0, 'Although GaW is the last character to unlock, he lacks many of the core qualities that make a character good. A few of GaW\'s aerials are non-L-cancellable, making him a pretty slow character. GaW\'s ground game is generally bad, and has trouble killing when the opponent is not in combo percentage.', 0), (17, 'Ness', 23, '11th', '15th', 0, 'Ness is a character that has a few good pokes, but no reliable kill moves. Ness is a very limiting character on-stage and off-stage, as his ground game has short range and his combos often lack a finisher. As well as his bad on-stage, his recovery takes the longest to start up out of any character, and he is vulnerable for all of it. \n', 0), (18, 'Peach', 6, '12th-14th', '22nd-23rd', 0, 'Peach is one of the most unique floaty characters in the game because of her float mechanics. By using a technique called \'float cancelling\' Peach is able to suspend herself in mid air and move horizontally, using any aerial attack. Landing lag after float cancelling is reduced, making her have one of the fastest recovery times on attacks\n', 0), (19, 'Pichu', 25, '26th', '12th-14th', 1, 'Obviously Nintendo\'s joke character in the cast. All electric attacks used by Pichu deal 1-3% to himself. Pichu is also the lightest character in the game, making him prone to dying at extremely low percents, sometimes even earlier than Jigglypuff. \n', 0), (20, 'Pikachu', 10, '20th-21st', '12th-14th', 0, 'Pikachu is pretty much the mid-tier Fox. They share many qualities such as quick combo game, ability to run around on the stage, powerful up smash, and linear recovery. Also like Fox, Pikachu is capable of getting kills at high percent with up smash, as well as low percent kills with up-air. Pikachu is a character that thrives in using quick and weak moves to rack up percent or set up for edge guard situations. \n', 0), (21, 'Roy', 20, '17th-19th', '4th-5th', 0, 'Roy is the weak version of Marth. Like Marth, his sword contains different hitboxes depending on where your opponent is hit (hilt = strong hit, middle = regular hit, tip = weak hit). Roy is EXTREMELY hard to hit during his up-b animation, but because of his fast falling speed and bad aerial mobility, his recovery is generally very bad.\n', 0), (22, 'Samus', 11, '3rd', '24th-25th', 1, 'Samus is a very linear character, as many of her hitboxes only extend out in straight lines. Although Samus is one of the slowest characters in the game, her defense and control of the pace in the match allow her to be a viable defensive character. Samus can control wide ranges of space by using missile cancelling-- and can control close range with her up-b and tilts.\n', 0), (23, 'Sheik', 3, '12th-14th', '7th-9th', 1, 'Sheik is one of the deadliest characters in the game. Although she does not have a ton of offensive options, she makes up for it with her defense and simple, yet highly effective combo game. Sheik\'s main assets are her tilts, grab combos, and infamous forward-air\n', 0), (24, 'Yoshi', 18, '5th', '11th', 0, ' The most unique quality of Yoshi is his shield, which holds many properties that are unique to Yoshi-- such as its hitstun reduction, inability to jump out of shield, and parrying. Additionally, Yoshi does not have an up-b that helps his recovery. Instead this is balanced by his double jump reaching very high, as well as containing \'super armor\', which means that attacks will damage Yoshi, but the hitstun and knockback are lessened VERY greatly depending on percentage.', 0), (25, '<NAME>', 15, '17th-19th', '7th-9th', 1, '<NAME> is a fast character with three different projectiles. Typically his playstyle is very hit-and-run as his run and aerial speeds are both very fast. Young Link generally has weak attacks, but the fact that he can maintain such a high speed while throwing projectiles at your opponent makes him an interesting defensive character.\n', 0), (26, 'Zelda', 19, '12th-14th', '24th-25th', 0, 'Zelda is a very floaty character who generally does not have many reliable attacks, besides her back-air and forward-air. Both aerials require precision, as only the tip of the hitbox sends opponents flying far. Zelda has the farthest reaching up-b in the game easily, making it relatively difficult to edge guard her.\n', 0); DROP TABLE IF EXISTS `chartech`; CREATE TABLE `chartech` ( `id` int(11) NOT NULL AUTO_INCREMENT, `charid` int(11) NOT NULL, `techid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; INSERT INTO `chartech` (`id`, `charid`, `techid`) VALUES (1, 2, 1), (4, 6, 2), (5, 4, 1), (6, 4, 21), (7, 5, 22), (8, 6, 22), (10, 14, 1), (11, 18, 24), (12, 6, 25), (13, 5, 25), (15, 2, 26), (17, 5, 27), (18, 6, 27), (19, 14, 11), (20, 14, 23), (21, 14, 7), (22, 23, 13), (23, 23, 10), (25, 23, 26); DROP TABLE IF EXISTS `framedatajson`; CREATE TABLE `framedatajson` ( `id` int(11) NOT NULL AUTO_INCREMENT, `gifid` int(11) NOT NULL, `json_text` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; INSERT INTO `framedatajson` (`id`, `gifid`, `json_text`) VALUES (1, 512, '[{\"frame\":11,\"buttons\":[\"\"],\"ctrlStick\":[\"270\",\"100\"]},{\"frame\":12,\"buttons\":[\"\"],\"ctrlStick\":[\"270\",\"100\"]},{\"frame\":13,\"buttons\":[\"\"],\"ctrlStick\":[\"270\",\"100\"]},{\"frame\":14,\"buttons\":[\"\"],\"ctrlStick\":[\"270\",\"100\"]},{\"frame\":15,\"buttons\":[\"y\"],\"ctrlStick\":[]},{\"frame\":16,\"buttons\":[\"l\"],\"ctrlStick\":[]},{\"frame\":17,\"buttons\":[\"\"],\"ctrlStick\":[\"315\",\"100\"]},{\"frame\":18,\"buttons\":[\"\"],\"ctrlStick\":[\"315\",\"100\"]},{\"frame\":19,\"buttons\":[\"\"],\"ctrlStick\":[\"315\",\"100\"]},{\"frame\":20,\"buttons\":[\"\"],\"ctrlStick\":[\"315\",\"100\"]},{\"frame\":21,\"buttons\":[\"\"],\"ctrlStick\":[\"315\",\"100\"]}]'), (2, 513, '[{\"frame\":2,\"buttons\":[\"\"],\"ctrlStick\":[\"270\",\"100\"]},{\"frame\":4,\"buttons\":[\"y\"],\"ctrlStick\":[]},{\"frame\":5,\"buttons\":[\"l\"],\"ctrlStick\":[\"225\",\"100\"]},{\"frame\":6,\"buttons\":[\"\"],\"ctrlStick\":[\"225\",\"100\"]},{\"frame\":7,\"buttons\":[\"\"],\"ctrlStick\":[\"225\",\"100\"]},{\"frame\":8,\"buttons\":[\"\"],\"ctrlStick\":[\"225\",\"100\"]},{\"frame\":22,\"buttons\":[\"\"],\"ctrlStick\":[\"270\",\"100\"]},{\"frame\":23,\"buttons\":[\"y\"],\"ctrlStick\":[]},{\"frame\":24,\"buttons\":[\"l\"],\"ctrlStick\":[]},{\"frame\":25,\"buttons\":[\"\"],\"ctrlStick\":[\"225\",\"100\"]},{\"frame\":25,\"buttons\":[\"\"],\"ctrlStick\":[\"225\",\"100\"]},{\"frame\":26,\"buttons\":[\"\"],\"ctrlStick\":[]},{\"frame\":44,\"buttons\":[\"\"],\"ctrlStick\":[\"270\",\"100\"]},{\"frame\":45,\"buttons\":[\"y\"],\"ctrlStick\":[]},{\"frame\":46,\"buttons\":[\"l\"],\"ctrlStick\":[\"315\",\"100\"]},{\"frame\":47,\"buttons\":[\"\"],\"ctrlStick\":[\"315\",\"100\"]},{\"frame\":48,\"buttons\":[\"\"],\"ctrlStick\":[\"315\",\"100\"]},{\"frame\":49,\"buttons\":[\"\"],\"ctrlStick\":[\"315\",\"100\"]},{\"frame\":64,\"buttons\":[\"\"],\"ctrlStick\":[\"270\",\"100\"]},{\"frame\":65,\"buttons\":[\"y\"],\"ctrlStick\":[]},{\"frame\":66,\"buttons\":[\"l\"],\"ctrlStick\":[\"315\",\"100\"]},{\"frame\":67,\"buttons\":[\"\"],\"ctrlStick\":[\"315\",\"100\"]},{\"frame\":68,\"buttons\":[\"\"],\"ctrlStick\":[\"315\",\"100\"]},{\"frame\":69,\"buttons\":[\"\"],\"ctrlStick\":[\"315\",\"100\"]}]'); DROP TABLE IF EXISTS `framedatamoves`; CREATE TABLE `framedatamoves` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(90) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `description` varchar(130) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; INSERT INTO `framedatamoves` (`id`, `name`, `description`) VALUES (1, 'Up Air', ''), (2, 'Down Air', ''), (3, 'Forward Air', ''), (4, 'Back Air', ''), (5, 'Neutral Air', ''), (6, 'Neutral B in Air', ''), (7, 'Jab 1', ''), (8, 'Jab 2', ''), (9, 'Jab 3', ''), (10, 'Jab Extended', ''), (11, 'Up B', 'Up Special'), (12, 'Neutral B', 'Special'), (13, 'Neutral B (charged)', 'Special'), (14, 'Neutral B (air)', 'Special'), (15, 'Down B', 'Down Special'), (16, 'Side B', 'Side Special'), (17, 'Forward B', ''), (18, 'Forward B 1', ''), (19, 'Forward B 2', ''), (20, 'Forward B 3 Down', ''), (21, 'Forward B 3 Neutral', ''), (22, 'Forward B 3 Up', ''), (23, 'Forward B 4', ''), (24, 'Forward B 4 Down', ''), (25, 'Forward B 4 Neutral', ''), (26, 'Forward B 4 Up', ''), (27, 'Up Tilt', ''), (28, 'Down Tilt', ''), (29, 'Forward Tilt', ''), (30, 'Forward Tilt Low', ''), (31, 'Forward Tilt High', ''), (32, 'Up Smash', ''), (33, 'Down Smash', ''), (34, 'Forward Smash', ''), (35, 'Air Dodge', ''), (36, 'Forward Roll', ''), (37, 'Backwards Roll', ''), (38, 'Dodge', ''), (39, 'Dash Attack', ''), (40, 'Running Grab', ''), (41, 'Standing Grab', ''), (42, 'Forward Smash High', ''), (43, 'Forward Smash Low', ''), (44, 'Forward B (air)', ''), (45, 'Z Air', ''), (46, 'Taunt', ''), (47, 'Get Up Attack', ''), (48, 'Forward Throw', ''), (49, 'Backwards Throw', ''), (50, 'Throw', ''); DROP TABLE IF EXISTS `friends`; CREATE TABLE `friends` ( `id` int(11) NOT NULL AUTO_INCREMENT, `myid` int(11) NOT NULL, `friendid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; DROP TABLE IF EXISTS `gifs`; CREATE TABLE `gifs` ( `id` int(11) NOT NULL AUTO_INCREMENT, `typeid` int(11) NOT NULL DEFAULT '1', `dataid` int(11) NOT NULL DEFAULT '0', `source` varchar(260) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `submittedby` int(11) NOT NULL, `url` varchar(300) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `description` varchar(400) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `score` int(11) NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; INSERT INTO `gifs` (`id`, `typeid`, `dataid`, `source`, `submittedby`, `url`, `description`, `score`, `created_at`, `updated_at`) VALUES (1, 0, 24, '', 0, 'MarvelousMedicalFlee', 'aMSa going hard', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (2, 0, 4, '', 0, 'ValidEdibleIndochinesetiger', 'MMG | Shroomed demonstrating the importance of wavelanding with Dr. Mario', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (3, 0, 2, '', 0, 'HarmlessShamefulHalicore', 'Lord vs S2J with an amazing finisher at TNE. LONG LIVE THE HYPE.', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (4, 0, 14, '', 0, 'BlankWickedAmmonite', 'Mew2King demonstrating the importance of juggling and keeping your opponent above you', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (5, 0, 6, '', 0, 'EuphoricCookedHornshark', 'Westballz demonstrating technical edge guarding with Fox', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (6, 0, 18, '', 0, 'FamiliarEthicalHomalocephale', 'The Armada double-Stitchface shield break combo\n', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (7, 0, 5, '', 0, 'SnappyBlissfulChickadee', 'Short hop lasers are a crucial part of Falco\'s movement.', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (8, 0, 5, '', 0, 'RingedIdolizedAidi', 'A typical Falco combo, where shines are followed by down-airs. Notice how Zhu uses a laser reset to initiate the combo', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (9, 0, 6, '', 0, 'NewCaringFurseal', 'Hax demonstrating ridiculously fast multishines to pressure an enemy in shield', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (10, 0, 6, '', 0, 'EarlyOptimalCondor', 'Leffen demonstrating how to pressure your opponent as Fox', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (11, 0, 14, '', 0, 'OrganicAnimatedBream', 'Azen demonstrating a clean Marth combo', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (12, 0, 20, '', 0, 'ClumsyCompetentAidi', 'Axe demonstrating a clean Pikachu combo by patiently waiting for Tai to stand up', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (13, 0, 23, '', 0, 'SeriousOptimalCougar', 'One of Shiek\'s most powerful combos is down throw -> forward air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (14, 0, 12, '', 0, 'GrippingVariableGnu', 'Luigi\'s great movement allow you to quickly surprise your opponent with unexpected plays', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (15, 0, 9, '', 0, 'UncommonIckyBangeltiger', 'Jigglypuff can be very offensive offstage, since 5 jumps allow for many recovery options', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (16, 0, 22, '', 0, 'ColorfulDistinctAustralianshelduck', 'Darrel showing how to combo with Samus', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (17, 0, 24, '', 0, 'UnpleasantRepulsiveAlbacoretuna', 'aMSa taking Westballz stock in 11 seconds with a disgusting combo', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (18, 0, 18, '', 0, 'BelatedParallelAnnashummingbird', 'Armada demonstrating how to use a turnip to reduce PPMD\'s recovery options', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (19, 0, 5, '', 0, 'AlarmingConcreteHagfish', 'Bam demonstrating how to keep constant pressure on your opponent', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (20, 0, 2, '', 0, 'RemorsefulYellowLangur', 'Hax demonstrating an efficient 0 to death', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (21, 0, 26, '<NAME>', 0, 'DeterminedBogusFerret', 'Cosmo demonstrates Zelda\'s power', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (22, 0, 20, 'https://www.', 0, 'WindyAnotherAmericanpainthorse', 'If you cling the second dash of Pikachu\'s Quick Attack (Up-B) with a move of equal priority, Pikachu performs a \"Super W', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (23, 0, 16, '<NAME>', 0, 'JovialDemandingBluebottle', 'M2K shows off G&W\'s difficult to DI throws and followup', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (24, 0, 11, '<NAME>', 0, 'ArtisticAdorableAlaskanhusky', 'Link\'s recovery is pretty good ', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (25, 0, 17, '<NAME>', 0, 'SlimyMedicalBoto', 'Mofo using the yoyo glitch on Hax', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (26, 0, 8, 'Smashwiki', 0, 'ChillyAptJaeger', 'Wobbles demonstrating the infinite grab technique known as \"Wobbling\" ', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (27, 0, 6, 'Mayday', 0, 'SomberCarelessAppaloosa', 'Mango demonstrating the use of a Shine Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (28, 0, 23, 'mkolpnji', 0, 'AgreeableFlawedBlackmamba', 'Mew2King tech chasing a Fox with grabs and down throw + dash attack.', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (29, 0, 25, '', 0, 'FondPlayfulCarp', 'How to edgeguard as Young Link', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (30, 0, 20, '<NAME>', 0, 'SpanishPastelCock', 'Axe using the multiple hitboxes of Pikachu\'s Uair to gimp Westballz', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (31, 0, 2, '<NAME>. ', 0, 'unluckyhardgnu', 'NMW showing the effectiveness of instant uair ', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (32, 0, 7, '', 0, 'TalkativeJovialGalah', 'Great example of how to use Ganon\'s Dair by Bizzarroflame', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (33, 0, 4, '', 0, 'FamiliarAdvancedAcaciarat', 'MMG | Shroomed demonstrates Dr. Mario\'s gimping abilities with back air and cape', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (34, 0, 19, 'Dazwa', 0, 'SaltyEnergeticBadger', 'KoreanDJ showing how Pichu can secure quick kills near ledges', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (35, 0, 17, 'Shuffle V (H', 0, 'FoolishSlushyFawn', 'Ness\'s double jump cancel allows him to perform extremely low aerials ', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (36, 0, 13, 'Mayday', 0, 'LeanDifferentDorado', 'Mango\'s (Scorpion Master) 0% to death combo with Mario', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (37, 0, 3, '<NAME>', 0, 'CluelessWastefulIaerismetalmark', 'Green Ranger shows us how brutal DK\'s combo game can be. ', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (38, 0, 22, 'Mayday', 0, 'WelcomeAgileBluetickcoonhound', 'Power Missile Edge Guarding with Samus ', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (39, 0, 25, '', 0, 'MealyHatefulArmadillo', 'Axe tethers to the pillar underneath Pokemon Stadium and successfully recovers ', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (40, 0, 21, 'CEO 2014', 0, 'ConcreteFamiliarGlowworm', 'An interesting combo by Mew2King', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (41, 0, 23, '', 0, 'TightBarrenGnu', 'Mew2King demonstrating an insane Sheik combo on EG | PPMD at EVO2k14', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (42, 0, 12, '', 0, 'SameOffbeatBushbaby', 'With Luigi\'s wavedash distances and his powerful Up B he can get very hard punishes upon reading techrolls ', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (512, 2, 1, 'http://www.reddit.com/r/smashbros/comments/1mlr3n/best_wavedashluigi_vs_worst_wavedashpeach/', 0, 'SkinnyCorruptHake', 'The longest wavedash (Luigi) and the shortest (Peach).', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (513, 2, 1, '', 0, 'ForkedGloomyHairstreakbutterfly', 'Continuous Wavedashes with Marth.', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (514, 2, 7, '', 0, 'EcstaticHorribleDragon', 'A pivot contains a few frames of dashing, followed by a single frame where your character is standing up straight. On this frame, you can use any move as if your character is standing still.', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (515, 2, 2, '', 0, 'SeveralCompassionateBlackwidowspider', 'A series of frame-perfect multi shines at 1/4 speed.', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (516, 2, 16, '', 0, 'SpottedWhiteBordercollie', 'Hit (L or R) and (Up) within 20 frames of hitting the wall while in hitstun', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (517, 2, 5, '', 0, 'SeveralUnlinedEsok', 'Comparing the heights from a full jump and a short hop.', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (518, 2, 4, 'http://www.reddit.com/r/smashbros/comments/1mzq7e/the_importance_of_lcancelling/', 0, 'FirmImmediateCivet', 'Two Links performing a down aerial. The red Link L-cancels, and can input his shield in half the time of the green Link.', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (519, 2, 13, 'Kadano', 0, 'DimIckyAztecant', 'Falco\'s firestall, 1x speed, latest possible inputs', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (520, 2, 11, 'http://www.reddit.com/r/smashbros/comments/1nuxc2/dash_dance/', 0, 'FrightenedBruisedAstrangiacoral', 'Fox performing a frame-perfect dash-dance in Melee.', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (521, 2, 13, 'Kadano', 0, 'TatteredTediousDormouse', 'Sheik demonstrating a Shino-Stall. The blue represents invulnerability', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (523, 2, 12, '', 0, 'SilverDimwittedDouglasfirbarkbeetle', 'A meteor cancel used in a recovery off-stage.', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (524, 2, 8, '', 0, 'LeanWhimsicalBubblefish', 'A wall jump can be used to mix up your opponent, and change up engages.', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (525, 2, 6, '', 0, 'SoulfulPreciousIslandcanary', 'A demonstration of a ledge hop.', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (526, 2, 10, '', 0, 'UnfitAnotherFlea', 'An example of what happens when you don\'t crouch cancel.', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (527, 2, 10, '', 0, 'EnlightenedIncompleteAnteater', 'An example of what happens when crouch canceling is used.', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (528, 2, 7, '', 0, 'DelayedSmoggyGrison', 'An example of a pivot Foward Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (529, 2, 17, '', 0, 'SleepyGoodBoutu', 'A non jump canceled grab (dash-grab)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (530, 2, 17, '', 0, 'TheseFondIndiancow', 'A jump canceled grab (stand-grab)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (531, 2, 19, '', 0, 'UnsteadySoggyFrigatebird', 'A neutral tech allows you to quickly stand up where you land', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (532, 2, 19, '', 0, 'PaltryParallelAmericancrow', 'A right tech will make your character roll right before landing', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (533, 2, 19, '', 0, 'PortlyAdvancedDamselfly', 'A left tech will make your character roll left before landing', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (534, 2, 18, '', 0, 'SnarlingHideousGreatwhiteshark', 'Canceling run with a jump canceled up smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (535, 2, 16, '', 0, 'FatherlyAnimatedAmericanwarmblood', 'Hit (L or R) to wall tech within 20 frames of hitting the wall while in hitstun', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (536, 2, 11, '', 0, 'AngryDearBassethound', 'Dash dancing can be used to properly space your character as well as playing mind games with your opponent', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (537, 2, 20, 'http://www.reddit.com/r/smashbros/comments/1pgo1x/the_importance_of_di/', 0, 'DeadCoarseFlamingo', 'Demonstrating the different direction choices for DI', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (538, 2, 21, 'kv016', 0, 'EnormousFewGnat', 'Wave Lands demonstrated on BattleField platforms', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (539, 2, 22, 'kv016', 0, 'SnappyBlissfulChickadee', 'The added mobility of short hop lasering', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (540, 2, 23, '', 0, 'HelplessUnfortunateFlickertailsquirrel', 'PewPewU powershielding a Falco laser to get a laser reset', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (541, 2, 24, '', 0, 'IdenticalThirstyDog', 'The Peach on the right uses L canceling, while the Peach on the left uses Float Canceling. Notice how the amount of landing lag is the same!', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (542, 2, 25, '', 0, 'WideBlushingDiamondbackrattlesnake', 'MewTwo performing a Jab Reset in order to push Fox into a neutral position to continue a combo', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (543, 2, 26, '', 0, 'DeepColorfulAfricanwilddog', 'S2J demonstrating tech chasing by predicting where his opponent is going to tech and adjusting accordingly', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (544, 2, 27, '', 0, 'LegalInnocentEastrussiancoursinghounds', 'A frame perfect Fox Wave Shine', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (606, 3, 3, '', 0, 'GenerousThriftyArieltoucan', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (607, 3, 3, '', 0, 'InsistentSilverArawana', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (608, 3, 74, '', 0, 'HelpfulDependentAmbushbug', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (609, 3, 151, '', 0, 'TenderNeighboringCentipede', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (610, 3, 155, '', 0, 'SeriousConsciousHeron', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (611, 3, 82, '', 0, 'ActiveKeenHornedviper', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (612, 3, 160, '', 0, 'ReadyAshamedBluewhale', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (613, 3, 160, '', 0, 'RipeUniformClumber', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (614, 3, 167, '', 0, 'TidyScaryAzurevase', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (615, 3, 167, '', 0, 'SmugOilyAmericanquarterhorse', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (616, 3, 167, '', 0, 'FittingBouncyAfricanpiedkingfisher', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (620, 3, 172, '', 0, 'WearyGranularCockatoo', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (621, 3, 172, '', 0, 'DiligentBronzeFalcon', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (622, 3, 172, '', 0, 'ApprehensiveIncompatibleBluet', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (623, 3, 185, '', 0, 'SpotlessDefiniteDoe', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (624, 3, 185, '', 0, 'RealisticRespectfulBear', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (625, 3, 185, '', 0, 'DefensiveConfusedBlackmamba', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (629, 3, 188, '', 0, 'GrossUnhealthyEyra', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (638, 1, 5, 'Seikend', 0, 'ValidHatefulIraniangroundjay', 'Forward B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (639, 1, 6, 'Seikend', 0, 'WelldocumentedShoddyBufeo', 'Jab 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (640, 1, 7, 'Seikend', 0, 'HardThreadbareHarpseal', 'Jab 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (641, 1, 12, 'Seikend', 0, 'HairyGiganticFrigatebird', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (642, 1, 10, 'Seikend', 0, 'ElasticMedicalAmazonparrot', 'F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (643, 1, 9, 'Seikend', 0, 'JitteryHeavenlyAmericanriverotter', 'High F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (644, 1, 8, 'Seikend', 0, 'WildCheapAntarcticgiantpetrel', 'Low F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (645, 1, 11, 'Seikend', 0, 'HardCrazyIndianjackal', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (646, 1, 15, 'Seikend', 0, 'WarlikeBowedHerald', 'D Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (647, 1, 14, 'Seikend', 0, 'EverlastingGenerousAustrianpinscher', 'F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (648, 1, 13, 'Seikend', 0, 'VagueDamagedHomalocephale', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (649, 1, 19, 'Seikend', 0, 'UnderstatedTenseHare', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (650, 1, 18, 'Seikend', 0, 'DistantShadyCopperhead', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (651, 1, 20, 'Seikend', 0, 'OddTiredIvorybackedwoodswallow', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (652, 1, 17, 'Seikend', 0, 'LinearNervousApatosaur', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (653, 1, 16, 'Seikend', 0, 'YearlyHonorableArchaeocete', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (654, 1, 21, 'Seikend', 0, 'OilyWelloffAmericancrow', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (655, 1, 22, 'Seikend', 0, 'CluelessNastyBeardeddragon', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (656, 1, 23, 'Seikend', 0, 'IlliterateMadDassierat', 'Standing Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (657, 1, 25, 'Seikend', 0, 'FarflungDeliriousChipmunk', 'Air Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (658, 1, 24, 'Seikend', 0, 'KindheartedUnderstatedAtlasmoth', 'Spot Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (659, 1, 26, 'Seikend', 0, 'DamagedFlippantHanumanmonkey', 'Roll Forward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (660, 1, 37, 'Stratocaster', 0, 'SlimyNervousEyelashpitviper', 'Neutral B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (661, 1, 28, 'Stratocaster', 0, 'FastPalatableChanticleer', 'Jab 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (662, 1, 27, 'Stratocaster', 0, 'WarlikeImperfectAsiaticgreaterfreshwaterclam', 'Jab 3', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (663, 1, 29, 'Stratocaster', 0, 'ThinSparklingAmazontreeboa', 'High F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (664, 1, 30, 'Stratocaster', 0, 'MediumPoliticalHarrier', 'Low F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (665, 1, 31, 'Stratocaster', 0, 'EmbellishedLightheartedDormouse', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (666, 1, 34, 'Stratocaster', 0, 'PleasedImpracticalAlbertosaurus', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (667, 1, 36, 'Stratocaster', 0, 'AmusedReasonableCaimanlizard', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (668, 1, 32, 'Stratocaster', 0, 'SingleOddHare', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (669, 1, 35, 'Stratocaster', 0, 'SardonicFlakyAustraliansilkyterrier', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (670, 1, 33, 'Stratocaster', 0, 'WeightyLastingDarwinsfox', 'Air Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (671, 1, 50, 'Strong Bad', 0, 'ElegantUncomfortableAuklet', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (672, 1, 52, 'Strong Bad', 0, 'OfficialForsakenJackrabbit', 'Forward B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (673, 1, 38, 'Strong Bad', 0, 'AnguishedInfatuatedBrontosaurus', 'Neutral B (charge)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (674, 1, 41, 'Strong Bad', 0, 'ShorttermAppropriateBlackrussianterrier', 'Jab 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (675, 1, 42, 'Strong Bad', 0, 'BaggyNearDragonfly', 'Jab 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (676, 1, 62, 'Strong Bad', 0, 'AmusedSlushyAchillestang', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (677, 1, 43, 'Strong Bad', 0, 'ClumsyTatteredBee', 'F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (678, 1, 59, 'Strong Bad', 0, 'NecessaryEnviousCockatoo', 'High F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (679, 1, 65, 'Strong Bad', 0, 'EveryImpracticalBackswimmer', 'Low F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (680, 1, 57, 'Strong Bad', 0, 'GranularNiceCottontail', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (681, 1, 64, 'Strong Bad', 0, 'SingleEdibleChicken', 'D Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (682, 1, 60, 'Strong Bad', 0, 'AdorableReliableBlacklemur', 'F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (683, 1, 44, 'Strong Bad', 0, 'SpotlessRewardingJapanesebeetle', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (684, 1, 49, 'Strong Bad', 0, 'MetallicNewHarrierhawk', 'Air Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (685, 1, 45, 'Strong Bad', 0, 'AptBetterDalmatian', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (686, 1, 47, 'Strong Bad', 0, 'DimwittedCautiousEgg', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (687, 1, 63, 'Strong Bad', 0, 'UnimportantVengefulDunlin', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (688, 1, 54, 'Strong Bad', 0, 'ClosedAdventurousAlbacoretuna', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (689, 1, 46, 'Strong Bad', 0, 'DearestBowedArawana', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (690, 1, 55, 'Strong Bad', 0, 'ObedientScratchyGelding', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (691, 1, 48, 'Strong Bad', 0, 'UnfitTepidBudgie', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (692, 1, 56, 'Strong Bad', 0, 'EqualClosedHaddock', 'Standing Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (693, 1, 58, 'Strong Bad', 0, 'MilkyDisguisedIbis', 'Roll Backward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (694, 1, 51, 'Strong Bad', 0, 'BabyishShallowFallowdeer', 'Spot Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (695, 1, 53, 'Strong Bad', 0, 'GrotesqueMiniatureFulmar', 'Roll Forward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (696, 1, 86, 'standardtoaster', 0, 'WebbedWarlikeHarborporpoise', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (697, 1, 88, 'standardtoaster', 0, 'TidyGracefulAnole', 'Forward B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (698, 1, 87, 'standardtoaster', 0, 'JoyfulPlayfulAtlanticsharpnosepuffer', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (699, 1, 67, 'standardtoaster', 0, 'ClassicRealAfricanclawedfrog', 'Jab 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (700, 1, 68, 'standardtoaster', 0, 'BetterLiquidAfricanaugurbuzzard', 'Jab 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (701, 1, 69, 'standardtoaster', 0, 'RigidExcellentAdamsstaghornedbeetle', 'Jab 3', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (702, 1, 73, 'standardtoaster', 0, 'ComplexFrequentArcticseal', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (703, 1, 70, 'standardtoaster', 0, 'CreativeAshamedHoiho', 'F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (704, 1, 72, 'standardtoaster', 0, 'ThirdBiodegradableIvorybackedwoodswallow', 'High F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (705, 1, 71, 'standardtoaster', 0, 'RepentantCriminalGardensnake', 'Low F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (706, 1, 78, 'standardtoaster', 0, 'FragrantNastyBluegill', 'D Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (707, 1, 79, 'standardtoaster', 0, 'UntidyAjarJuliabutterfly', 'High F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (708, 1, 77, 'standardtoaster', 0, 'WarpedShrillCottonmouth', 'F Smash Down', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (709, 1, 80, 'standardtoaster', 0, 'FarawayGenerousIndigowingedparrot', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (710, 1, 89, 'standardtoaster', 0, 'RaggedWarmBedbug', 'Air Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (711, 1, 82, 'standardtoaster', 0, 'ZestyBrightAfricanhornbill', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (712, 1, 83, 'standardtoaster', 0, 'KindheartedDisfiguredGenet', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (713, 1, 74, 'standardtoaster', 0, 'LightImpureHoneycreeper', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (714, 1, 81, 'standardtoaster', 0, 'DistantSociableAmericankestrel', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (715, 1, 75, 'standardtoaster', 0, 'WelllitWellmadeCowbird', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (716, 1, 76, 'standardtoaster', 0, 'LightDishonestCat', 'Dash attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (717, 1, 85, 'standardtoaster', 0, 'GoodnaturedDarkFerret', 'Running grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (718, 1, 84, 'standardtoaster', 0, 'ScornfulRevolvingArabianwildcat', 'Standing Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (719, 1, 91, 'standardtoaster', 0, 'ZestySolidCaudata', 'Spot Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (720, 1, 90, 'standardtoaster', 0, 'InfantileShyHorsechestnutleafminer', 'Forward Roll', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (721, 1, 112, 'Seikend', 0, 'CostlyGratefulHydatidtapeworm', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (722, 1, 92, 'Seikend', 0, 'NaturalEsteemedIndianhare', 'Neutral B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (723, 1, 115, 'Seikend', 0, 'FlamboyantMiniatureFlea', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (724, 1, 93, 'Seikend', 0, 'WastefulEducatedKilldeer', 'Jab 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (725, 1, 94, 'Seikend', 0, 'DeliriousSleepyDamselfly', 'Jab 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (726, 1, 95, 'Seikend', 0, 'RealSeveralCommabutterfly', 'Jab 3', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (727, 1, 105, 'Seikend', 0, 'RawBossyIrrawaddydolphin', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (728, 1, 96, 'Seikend', 0, 'UnluckyPhysicalAruanas', 'F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (729, 1, 97, 'Seikend', 0, 'CompetentGenuineKitty', 'High F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (730, 1, 102, 'Seikend', 0, 'LeanBeneficialAssassinbug', 'Low F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (731, 1, 98, 'Seikend', 0, 'FabulousGracefulInexpectatumpleco', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (732, 1, 109, 'Seikend', 0, 'SparseOptimisticAstarte', 'D Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (733, 1, 106, 'Seikend', 0, 'ForsakenPreciousBlacknorwegianelkhound', 'F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (734, 1, 110, 'Seikend', 0, 'GlamorousDismalBadger', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (735, 1, 114, 'Seikend', 0, 'OptimisticSplendidEyelashpitviper', 'Air Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (736, 1, 103, 'Seikend', 0, 'GiantContentIceblueredtopzebra', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (737, 1, 100, 'Seikend', 0, 'OrderlyNecessaryHorsemouse', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (738, 1, 108, 'Seikend', 0, 'WarlikeCostlyHippopotamus', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (739, 1, 113, 'Seikend', 0, 'TangibleSelfreliantBellsnake', 'Forward B in air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (740, 1, 104, 'Seikend', 0, 'OldShyBobcat', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (741, 1, 107, 'Seikend', 0, 'EvergreenWearyAuklet', 'Neutral B in air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (742, 1, 99, 'Seikend', 0, 'SardonicUnevenIndigowingedparrot', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (743, 1, 101, 'Seikend', 0, 'MasculineJollyGlobefish', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (744, 1, 111, 'Seikend', 0, 'PoisedWhisperedDoe', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (745, 1, 116, 'Seikend', 0, 'BrownAgileInexpectatumpleco', 'Roll Backward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (746, 1, 118, 'Seikend', 0, 'FemaleSafeGallinule', 'Spot Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (747, 1, 117, 'Seikend', 0, 'LegalMajorHogget', 'Roll Forward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (748, 1, 122, 'Stratocaster', 0, 'DampSeparateDamselfly', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (749, 1, 121, 'Stratocaster', 0, 'HalfFlamboyantElver', 'Forward B in air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (750, 1, 119, 'Stratocaster', 0, 'EasygoingGraciousHorse', 'Neutral B on ground', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (751, 1, 120, 'Stratocaster', 0, 'EntireMajorAtlasmoth', 'Neutral B in air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (752, 1, 123, 'Stratocaster', 0, 'JaggedCreepyHuia', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (753, 1, 124, 'Stratocaster', 0, 'YearlyEdibleHarpseal', 'Jab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (754, 1, 125, 'Stratocaster', 0, 'FirmForsakenAngwantibo', 'Jab 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (755, 1, 126, 'Stratocaster', 0, 'SpotlessSameArmadillo', 'Jab 3', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (756, 1, 130, 'Stratocaster', 0, 'AllTeemingBarnowl', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (757, 1, 129, 'Stratocaster', 0, 'ZigzagSlipperyKoodoo', 'F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (758, 1, 127, 'Stratocaster', 0, 'SkinnyGrimyDeviltasmanian', 'High F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (759, 1, 128, 'Stratocaster', 0, 'PaltryCoarseFowl', 'Low F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (760, 1, 131, 'Stratocaster', 0, 'MenacingEquatorialHydra', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (761, 1, 134, 'Stratocaster', 0, 'FlatAdorableHorsechestnutleafminer', 'D Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (762, 1, 132, 'Stratocaster', 0, 'BackDistortedAoudad', 'F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (763, 1, 133, 'Stratocaster', 0, 'PleasantAdventurousKissingbug', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (764, 1, 139, 'Stratocaster', 0, 'ZealousLiquidDuck', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (765, 1, 137, 'Stratocaster', 0, 'UnequaledHappygoluckyAsianporcupine', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (766, 1, 138, 'Stratocaster', 0, 'KaleidoscopicShabbyDalmatian', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (767, 1, 135, 'Stratocaster', 0, 'AggressiveUnluckyDinosaur', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (768, 1, 136, 'Stratocaster', 0, 'QualifiedCostlyIaerismetalmark', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (769, 1, 140, 'Stratocaster', 0, 'LoathsomeBeneficialAmericanbittern', 'Roll Backward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (770, 1, 141, 'Stratocaster', 0, 'RemorsefulGreatGallowaycow', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (771, 1, 142, 'Stratocaster', 0, 'DeepBlondAngelfish', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (772, 1, 143, 'Stratocaster', 0, 'VibrantSevereKarakul', 'Standing Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (773, 1, 144, 'Stratocaster', 0, 'FamiliarBoilingDarklingbeetle', 'Air Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (774, 1, 145, 'Stratocaster', 0, 'GrayHarmfulGallowaycow', 'Spot Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (775, 1, 146, 'Stratocaster', 0, 'PrestigiousNextGuineapig', 'Roll Forward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (776, 1, 162, 'standardtoaster', 0, 'OptimisticEarlyHornshark', 'Forward B in air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (777, 1, 147, 'standardtoaster', 0, 'EnviousBogusDodo', 'Neutral B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (778, 1, 165, 'standardtoaster', 0, 'CriminalInexperiencedIndochinahogdeer', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (779, 1, 148, 'standardtoaster', 0, 'AthleticCapitalChuckwalla', 'Jab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (780, 1, 153, 'standardtoaster', 0, 'AgitatedCrazyCub', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (781, 1, 150, 'standardtoaster', 0, 'HiddenBigGangesdolphin', 'F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (782, 1, 149, 'standardtoaster', 0, 'DapperDeliriousCleanerwrasse', 'High F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (783, 1, 151, 'standardtoaster', 0, 'DisguisedPointedHamster', 'Low F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (784, 1, 152, 'standardtoaster', 0, 'VastWarlikeAdmiralbutterfly', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (785, 1, 155, 'standardtoaster', 0, 'TintedWelcomeBlueshark', 'D Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (786, 1, 160, 'standardtoaster', 0, 'PhysicalDarkAplomadofalcon', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (787, 1, 156, 'standardtoaster', 0, 'LazyIllAsianlion', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (788, 1, 157, 'standardtoaster', 0, 'DismalDrearyBobwhite', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (789, 1, 163, 'standardtoaster', 0, 'IllinformedTanEsok', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (790, 1, 168, 'Stratocaster', 0, 'EsteemedFatIndusriverdolphin', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (791, 1, 167, 'Stratocaster', 0, 'WellmadeDifferentFluke', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (792, 1, 170, 'Stratocaster', 0, 'HatefulHomelyDolphin', 'Forward B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (793, 1, 169, 'Stratocaster', 0, 'VerifiableShrillAustralianshelduck', 'Neutral B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (794, 1, 171, 'Stratocaster', 0, 'TautLoneGrayfox', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (795, 1, 172, 'Stratocaster', 0, 'PoshLameHogget', 'Jab 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (796, 1, 173, 'Stratocaster', 0, 'KindFailingCockatiel', 'Jab 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (797, 1, 174, 'Stratocaster', 0, 'CalculatingSlightBallpython', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (798, 1, 177, 'Stratocaster', 0, 'LightheartedAbsoluteAnemone', 'High F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (799, 1, 176, 'Stratocaster', 0, 'WholeShockingDolphin', 'Low F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (800, 1, 175, 'Stratocaster', 0, 'ChiefPlainBrontosaurus', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (801, 1, 179, 'Stratocaster', 0, 'EagerUnsteadyGoral', 'D Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (802, 1, 178, 'Stratocaster', 0, 'SpeedyTenseGodwit', 'F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (803, 1, 180, 'Stratocaster', 0, 'BadBossyBass', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (804, 1, 183, 'Stratocaster', 0, 'DisloyalDistortedEasternglasslizard', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (805, 1, 182, 'Stratocaster', 0, 'TallShortGalapagoshawk', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (806, 1, 181, 'Stratocaster', 0, 'AridQuestionableCaecilian', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (807, 1, 184, 'Stratocaster', 0, 'FalseMemorableGrackle', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (808, 1, 186, 'Stratocaster', 0, 'YellowFavoriteBlacknorwegianelkhound', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (809, 1, 185, 'Stratocaster', 0, 'FrankHeartyGrunion', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (810, 1, 191, 'Stratocaster', 0, 'UncommonImpressionableAmericancrayfish', 'Standing Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (811, 1, 190, 'Stratocaster', 0, 'IdioticIdolizedErin', 'Air Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (812, 1, 187, 'Stratocaster', 0, 'BlandVastIndianabat', 'Roll Backward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (813, 1, 189, 'Stratocaster', 0, 'DesertedAcidicFattaileddunnart', 'Spot Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (814, 1, 188, 'Stratocaster', 0, 'WatchfulAntiqueIchneumonfly', 'Roll Forward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (815, 1, 192, 'Massive', 0, 'WideeyedAgonizingGemsbuck', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (816, 1, 210, 'Massive', 0, 'ZanyOffensiveCowrie', 'Forward B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (817, 1, 205, 'Massive', 0, 'BothSparseBandicoot', 'Neutral B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (818, 1, 211, 'Massive', 0, 'HastyUnequaledGemsbuck', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (819, 1, 193, 'Massive', 0, 'FineUnknownAffenpinscher', 'Jab 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (820, 1, 194, 'Massive', 0, 'SandyMeekEuropeanfiresalamander', 'Jab 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (821, 1, 198, 'Massive', 0, 'SelfreliantFakeCero', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (822, 1, 195, 'Massive', 0, 'ImpossibleDarkAntelope', 'F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (823, 1, 196, 'Massive', 0, 'GenuineWaterloggedIridescentshark', 'High F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (824, 1, 197, 'Massive', 0, 'RewardingDisguisedAztecant', 'Low F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (825, 1, 199, 'Massive', 0, 'PaleWarmArmyant', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (826, 1, 203, 'Massive', 0, 'ImmaterialFirstKakarikis', 'F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (827, 1, 207, 'Massive', 0, 'ParallelWarmheartedIchthyostega', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (828, 1, 208, 'Massive', 0, 'PoliteLongCooter', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (829, 1, 204, 'Massive', 0, 'SaltySlimyBustard', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (830, 1, 212, 'Massive', 0, 'PositiveHoarseDaddylonglegs', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (831, 1, 209, 'Massive', 0, 'FeistyTheseAtlanticridleyturtle', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (832, 1, 213, 'Massive', 0, 'PoliticalShortHorseshoecrab', 'Standing Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (833, 1, 201, 'Massive', 0, 'WhiteFailingAmericansaddlebred', 'Air Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (834, 1, 214, 'Massive', 0, 'SinfulTenderBushbaby', 'Roll Back', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (835, 1, 202, 'Massive', 0, 'SinfulUltimateFanworms', 'Roll Forward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (836, 1, 235, 'Shoopman', 0, 'DecimalExaltedIndianringneckparakeet', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (837, 1, 215, 'Shoopman', 0, 'FalseWigglyElephant', 'Forward B in air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (838, 1, 234, 'Shoopman', 0, 'FirmActualAfricanhornbill', 'Neutral B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (839, 1, 223, 'Shoopman', 0, 'NeglectedBriefAiredaleterrier', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (840, 1, 216, 'Shoopman', 0, 'QuarrelsomeOffbeatDormouse', 'Jab 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (841, 1, 217, 'Shoopman', 0, 'DenseLightheartedHypacrosaurus', 'Jab 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (842, 1, 218, 'Shoopman', 0, 'FreshKaleidoscopicAnole', 'Jab 3', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (843, 1, 219, 'Shoopman', 0, 'MajesticFavoriteCooter', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (844, 1, 221, 'Shoopman', 0, 'YawningWelldocumentedFirefly', 'High F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (845, 1, 225, 'Shoopman', 0, 'BetterAmbitiousCornsnake', 'Low F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (846, 1, 226, 'Shoopman', 0, 'DearGiantChanticleer', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (847, 1, 228, 'Shoopman', 0, 'AridLimpingCassowary', 'D Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (848, 1, 224, 'Shoopman', 0, 'InferiorPettyBeauceron', 'F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (849, 1, 227, 'Shoopman', 0, 'KeyForcefulLark', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (850, 1, 230, 'Shoopman', 0, 'RepulsiveConcernedDaddylonglegs', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (851, 1, 232, 'Shoopman', 0, 'TerrificEllipticalIrishredandwhitesetter', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (852, 1, 233, 'Shoopman', 0, 'RegularBlissfulArmadillo', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (853, 1, 231, 'Shoopman', 0, 'SnappyGreatFairybluebird', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (854, 1, 236, 'Shoopman', 0, 'AcrobaticCharmingAxolotl', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (855, 1, 229, 'Shoopman', 0, 'ElectricGrandioseGoldeneye', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (856, 1, 222, 'Shoopman', 0, 'HollowUnrealisticBuzzard', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (857, 1, 220, 'Shoopman', 0, 'GoodScholarlyCooter', 'Standing Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (858, 1, 252, 'standardtoaster', 0, 'EnlightenedAridDunnart', 'Neutral B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (859, 1, 237, 'standardtoaster', 0, 'SparseForcefulDromedary', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (860, 1, 238, 'standardtoaster', 0, 'NeglectedWiltedAzurevasesponge', 'Jab 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (861, 1, 255, 'standardtoaster', 0, 'FortunateAnguishedHoki', 'Jab 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (862, 1, 240, 'standardtoaster', 0, 'CavernousTornFlamingo', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (863, 1, 239, 'standardtoaster', 0, 'ChubbyMassiveBug', 'F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (864, 1, 258, 'standardtoaster', 0, 'SpicyFirsthandFallowdeer', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (865, 1, 257, 'standardtoaster', 0, 'EveryUnawareIvorybilledwoodpecker', 'D Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (866, 1, 241, 'standardtoaster', 0, 'UnselfishBeautifulHuman', 'F Smash 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (867, 1, 243, 'standardtoaster', 0, 'FineCrispCoot', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (868, 1, 245, 'standardtoaster', 0, 'AptWarlikeCockerspaniel', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (869, 1, 246, 'standardtoaster', 0, 'OrneryBleakBongo', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (870, 1, 242, 'standardtoaster', 0, 'NaturalColossalAntipodesgreenparakeet', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (871, 1, 244, 'standardtoaster', 0, 'AmplePeskyBluebottlejellyfish', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (872, 1, 247, 'standardtoaster', 0, 'UncommonWhirlwindChimpanzee', 'Z Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (873, 1, 248, 'standardtoaster', 0, 'TangibleAccurateCur', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (874, 1, 250, 'standardtoaster', 0, 'UglyBlankGuppy', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (875, 1, 253, 'standardtoaster', 0, 'JoyfulGloriousFlea', 'Standing Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (876, 1, 271, 'standardtoaster', 0, 'DazzlingVigorousGilamonster', 'Forward B (misfire)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (877, 1, 268, 'standardtoaster', 0, 'AdorableInfiniteEstuarinecrocodile', 'Neutral B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (878, 1, 269, 'standardtoaster', 0, 'CleanSecondhandGibbon', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (879, 1, 260, 'standardtoaster', 0, 'EnragedBasicJaguarundi', 'Jab 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (880, 1, 261, 'standardtoaster', 0, 'IllustriousReliableAmbushbug', 'Jab 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (881, 1, 262, 'standardtoaster', 0, 'HatefulTestyHog', 'Jab 3', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (882, 1, 267, 'standardtoaster', 0, 'MeatyElatedHalcyon', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (883, 1, 264, 'standardtoaster', 0, 'EvergreenFragrantCorydorascatfish', 'F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (884, 1, 263, 'standardtoaster', 0, 'AmbitiousPitifulCockerspaniel', 'High F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (885, 1, 265, 'standardtoaster', 0, 'AnotherDesertedJabiru', 'Low F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (886, 1, 273, 'standardtoaster', 0, 'BruisedFlakyCaimanlizard', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (887, 1, 278, 'standardtoaster', 0, 'OptimalHardtofindIguanodon', 'D Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (888, 1, 274, 'standardtoaster', 0, 'InfamousBlindInvisiblerail', 'High F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (889, 1, 276, 'standardtoaster', 0, 'WeirdShockingChimneyswift', 'Low F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (890, 1, 275, 'standardtoaster', 0, 'DenseBriefBarnacle', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (891, 1, 282, 'standardtoaster', 0, 'BruisedSerpentineBudgie', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (892, 1, 281, 'standardtoaster', 0, 'GlitteringEmbellishedArieltoucan', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (893, 1, 279, 'standardtoaster', 0, 'WideDiscreteAcornbarnacle', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (894, 1, 266, 'standardtoaster', 0, 'SerpentineSecondHochstettersfrog', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (895, 1, 277, 'standardtoaster', 0, 'DefensiveGroundedBarb', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (896, 1, 272, 'standardtoaster', 0, 'ShinyEarlyHammerkop', 'Taunt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (897, 1, 280, 'standardtoaster', 0, 'ImpartialUnfoldedBarb', 'Face Up Get-Up Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (898, 1, 285, 'standardtoaster', 0, 'ShowySpectacularAngora', 'Running grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (899, 1, 284, 'standardtoaster', 0, 'DearCoarseIndianringneckparakeet', 'Standing Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (900, 1, 300, 'Stratocaster', 0, 'AdolescentPleasingBlueandgoldmackaw', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (901, 1, 286, 'Stratocaster', 0, 'UnconsciousElectricBlacklemur', 'Forward B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (902, 1, 302, 'Stratocaster', 0, 'HilariousJubilantDeermouse', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (903, 1, 287, 'Stratocaster', 0, 'MistyHilariousArrowana', 'Jab 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (904, 1, 288, 'Stratocaster', 0, 'MenacingClumsyCockerspaniel', 'Jab 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (905, 1, 289, 'Stratocaster', 0, 'SecretEssentialHanumanmonkey', 'Jab 3', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (906, 1, 293, 'Stratocaster', 0, 'DependentInsecureBug', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (907, 1, 291, 'Stratocaster', 0, 'PeriodicTanChafer', 'F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (908, 1, 290, 'Stratocaster', 0, 'UnconsciousTediousHagfish', 'High F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (909, 1, 292, 'Stratocaster', 0, 'FaithfulMeatyCrustacean', 'Low F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (910, 1, 294, 'Stratocaster', 0, 'RepentantPerfumedBobwhite', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (911, 1, 305, 'Stratocaster', 0, 'ThirstyCreepyCoral', 'D Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (912, 1, 295, 'Stratocaster', 0, 'ShallowNecessaryChinesecrocodilelizard', 'High F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (913, 1, 303, 'Stratocaster', 0, 'DefiniteSizzlingHind', 'Low F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (914, 1, 296, 'Stratocaster', 0, 'BoringGoldenGrosbeak', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (915, 1, 298, 'Stratocaster', 0, 'ForcefulTidyAlligator', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (916, 1, 299, 'Stratocaster', 0, 'HarmlessPolishedJay', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (917, 1, 306, 'Stratocaster', 0, 'CreativeNastyDodobird', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (918, 1, 307, 'Stratocaster', 0, 'ForsakenDisloyalFantail', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (919, 1, 297, 'Stratocaster', 0, 'NextDimAmberpenshell', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (920, 1, 304, 'Stratocaster', 0, 'WigglyClosedAustraliancattledog', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (921, 1, 301, 'Stratocaster', 0, 'LankyGraciousBufflehead', 'Standing Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (922, 1, 308, 'Stratocaster', 0, 'BarrenShrillFalcon', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (923, 1, 338, 'Stratocaster', 0, 'WelcomeBlindAsp', 'Forward B 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (924, 1, 309, 'Stratocaster', 0, 'ImportantTintedApatosaur', 'Forward B 3 (Down)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (925, 1, 326, 'Stratocaster', 0, 'PessimisticIllinformedBlackcrappie', 'Forward B 3 (neutral)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (926, 1, 327, 'Stratocaster', 0, 'JubilantDentalAmericancrocodile', 'Forward B 3 (up)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (927, 1, 329, 'Stratocaster', 0, 'MindlessLikableJumpingbean', 'Forward B 4 (down)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (928, 1, 328, 'Stratocaster', 0, 'WindyIdleDikdik', 'Forward B 4 (neutral)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (929, 1, 332, 'Stratocaster', 0, 'AlarmedHappyDobermanpinscher', 'Forward B 4 (up)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (930, 1, 310, 'Stratocaster', 0, 'HeartyFlamboyantGuillemot', 'Neutral B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (931, 1, 334, 'Stratocaster', 0, 'PaltryOrnateDouglasfirbarkbeetle', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (932, 1, 311, 'Stratocaster', 0, 'ValuableBlackChuckwalla', 'Jab 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (933, 1, 312, 'Stratocaster', 0, 'DamagedBlondFirecrest', 'Jab 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (934, 1, 314, 'Stratocaster', 0, 'LikablePlayfulEft', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (935, 1, 313, 'Stratocaster', 0, 'BowedAmbitiousGuineapig', 'F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (936, 1, 315, 'Stratocaster', 0, 'CapitalIncompatibleAlaskankleekai', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (937, 1, 318, 'Stratocaster', 0, 'FearfulCorruptHoki', 'D Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (938, 1, 316, 'Stratocaster', 0, 'WelcomeTatteredBarasingha', 'F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (939, 1, 317, 'Stratocaster', 0, 'TepidAjarBaiji', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (940, 1, 322, 'Stratocaster', 0, 'GoodHandyJaguarundi', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (941, 1, 325, 'Stratocaster', 0, 'DearestEthicalIndianrhinoceros', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (942, 1, 320, 'Stratocaster', 0, 'FreshThinAntbear', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (943, 1, 319, 'Stratocaster', 0, 'SpitefulLivelyIntermediateegret', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (944, 1, 324, 'Stratocaster', 0, 'PertinentWildAsiansmallclawedotter', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (945, 1, 321, 'Stratocaster', 0, 'GrizzledChillyFlyinglemur', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (946, 1, 323, 'Stratocaster', 0, 'SeparatePassionateJunco', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (947, 1, 337, 'Stratocaster', 0, 'BabyishMellowIndianabat', 'Standing Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (948, 1, 335, 'Stratocaster', 0, 'NippyIlliterateAchillestang', 'Air Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (949, 1, 330, 'Stratocaster', 0, 'TotalQuickInchworm', 'Roll Backward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (950, 1, 336, 'Stratocaster', 0, 'ImmediateCharmingChipmunk', 'Spot Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (951, 1, 331, 'Stratocaster', 0, 'WellmadeSnappyAfricanharrierhawk', 'Roll Forward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (952, 1, 354, 'standardtoaster', 0, 'FavoriteHarmoniousAngelfish', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (953, 1, 361, 'standardtoaster', 0, 'OilyDismalCuscus', 'Forward B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (954, 1, 340, 'standardtoaster', 0, 'FaithfulDisfiguredFanworms', 'Jab 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (955, 1, 341, 'standardtoaster', 0, 'PopularAliveGypsymoth', 'Jab 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (956, 1, 343, 'standardtoaster', 0, 'GranularTeemingAnteater', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (957, 1, 342, 'standardtoaster', 0, 'BlondLightheartedFugu', 'F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (958, 1, 352, 'standardtoaster', 0, 'FreeColdCanine', 'High F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (959, 1, 357, 'standardtoaster', 0, 'ImmenseFaithfulEyra', 'Low F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (960, 1, 356, 'standardtoaster', 0, 'DampDistinctIcterinewarbler', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (961, 1, 344, 'standardtoaster', 0, 'DifficultWindingIrishterrier', 'D Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (962, 1, 346, 'standardtoaster', 0, 'ShadowyFavorableDogwoodtwigborer', 'F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (963, 1, 345, 'standardtoaster', 0, 'NeatOrganicBichonfrise', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (964, 1, 347, 'standardtoaster', 0, 'SatisfiedDismalGallinule', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (965, 1, 359, 'standardtoaster', 0, 'PerfectBestAmericanratsnake', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (966, 1, 349, 'standardtoaster', 0, 'ImpartialCooperativeBudgie', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (967, 1, 348, 'standardtoaster', 0, 'GlossySilkyFattaileddunnart', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (968, 1, 358, 'standardtoaster', 0, 'OblongOldfashionedAsiantrumpetfish', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (969, 1, 351, 'standardtoaster', 0, 'FirstUltimateEthiopianwolf', 'Back Throw', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (970, 1, 350, 'standardtoaster', 0, 'GoodBlushingFrigatebird', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (971, 1, 365, 'standardtoaster', 0, 'PortlyGoodBug', 'Forward Throw', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (972, 1, 360, 'standardtoaster', 0, 'TidyUncommonArmyant', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (973, 1, 355, 'standardtoaster', 0, 'JaggedSinfulDiplodocus', 'Standing Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (974, 1, 353, 'standardtoaster', 0, 'RelievedColdHamadryas', 'Air Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (975, 1, 363, 'standardtoaster', 0, 'HorribleLankyFantail', 'Roll Backward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (976, 1, 364, 'standardtoaster', 0, 'RedConstantAssassinbug', 'Spot Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (977, 1, 362, 'standardtoaster', 0, 'RecentOnlyHornet', 'Roll Forward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (978, 1, 368, 'standardtoaster', 0, 'CraftySmoothClingfish', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (979, 1, 383, 'standardtoaster', 0, 'TanWarpedAntipodesgreenparakeet', 'Down Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (980, 1, 382, 'standardtoaster', 0, 'EarlyGleamingGardensnake', 'F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (981, 1, 374, 'standardtoaster', 0, 'ScratchyScalyArmyworm', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (982, 1, 380, 'standardtoaster', 0, 'AgitatedNeatBluemorphobutterfly', 'D Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (983, 1, 376, 'standardtoaster', 0, 'CraftyGregariousBird', 'F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (984, 1, 375, 'standardtoaster', 0, 'GrippingWindingHatchetfish', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (985, 1, 371, 'standardtoaster', 0, 'FrankFairAmurstarfish', 'Down Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (986, 1, 370, 'standardtoaster', 0, 'JaggedAliveJavalina', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (987, 1, 369, 'standardtoaster', 0, 'AngelicFlashyAfricanparadiseflycatcher', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (988, 1, 377, 'standardtoaster', 0, 'HonestValuableGlassfrog', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (989, 1, 378, 'standardtoaster', 0, 'FrighteningWideeyedAmethystsunbird', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (990, 1, 372, 'standardtoaster', 0, 'KeyOptimisticGrassspider', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (991, 1, 384, 'standardtoaster', 0, 'ReadyGrouchyGiraffe', 'Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (992, 1, 397, 'standardtoaster', 0, 'SpecificFittingHousefly', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (993, 1, 400, 'standardtoaster', 0, 'GreenOblongErne', 'Neutral B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (994, 1, 387, 'standardtoaster', 0, 'SharpCarelessAfricanpiedkingfisher', 'Jab 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (995, 1, 389, 'standardtoaster', 0, 'AssuredAmazingAlpinegoat', 'Jab 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (996, 1, 388, 'standardtoaster', 0, 'MeaslySecretEyra', 'Jab 3', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (997, 1, 409, 'standardtoaster', 0, 'FrequentUnawareElkhound', 'Down Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (998, 1, 390, 'standardtoaster', 0, 'PortlySlightAmericanavocet', 'High F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (999, 1, 391, 'standardtoaster', 0, 'RawAggressiveCuscus', 'Low F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1000, 1, 392, 'standardtoaster', 0, 'VigorousVioletCub', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1001, 1, 408, 'standardtoaster', 0, 'SpotlessQuarrelsomeHatchetfish', 'Down Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1002, 1, 393, 'standardtoaster', 0, 'SlimySaneGartersnake', 'F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1003, 1, 405, 'standardtoaster', 0, 'DearHeavyBluefintuna', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1004, 1, 406, 'standardtoaster', 0, 'FickleQueasyCockroach', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1005, 1, 404, 'standardtoaster', 0, 'TatteredBareArmyant', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1006, 1, 407, 'standardtoaster', 0, 'HighlevelSparklingBrahmancow', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1007, 1, 403, 'standardtoaster', 0, 'GentleFirsthandGnat', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1008, 1, 401, 'standardtoaster', 0, 'UntriedSaltyGallinule', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1009, 1, 396, 'standardtoaster', 0, 'DentalPettyChickadee', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1010, 1, 402, 'standardtoaster', 0, 'CornyAcademicHermitcrab', 'Standing Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1011, 1, 434, '<NAME>\'s Boyfriend', 0, 'YearlyPaltryGalapagosalbatross', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1012, 1, 424, '<NAME>\'s Boyfriend', 0, 'SociableOptimalAvians', 'Forward B on ground', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1013, 1, 425, '<NAME>\'s Boyfriend', 0, 'CarelessPastelAmericanblackvulture', 'Forward B in air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1014, 1, 426, '<NAME>\'s Boyfriend', 0, 'TemptingTanAmphiuma', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1015, 1, 433, '<NAME>\'s Boyfriend', 0, 'FamousTornAddax', 'Jab 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1016, 1, 430, '<NAME>\'s Boyfriend', 0, 'SlushyDefiniteAsiansmallclawedotter', 'Jab 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1017, 1, 423, '<NAME>\'s Boyfriend', 0, 'WholePowerlessCranefly', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1018, 1, 410, '<NAME>\'s Boyfriend', 0, 'BoldUntriedBlackwidowspider', 'F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1019, 1, 411, '<NAME>\'s Boyfriend', 0, 'MilkyCautiousElectriceel', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1020, 1, 412, '<NAME>\'s Boyfriend', 0, 'FarawayMammothCockerspaniel', 'D smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1021, 1, 416, '<NAME>\'s Boyfriend', 0, 'VictoriousHideousFlyingfish', 'U smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1022, 1, 418, '<NAME>\'s Boyfriend', 0, 'GrizzledCooperativeGemsbok', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1023, 1, 417, '<NAME>\'s Boyfriend', 0, 'InformalBrightBantamrooster', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1024, 1, 419, '<NAME>\'s Boyfriend', 0, 'DishonestGranularAlpinegoat', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1025, 1, 432, '<NAME>\'s Boyfriend', 0, 'SpectacularIcyAlbertosaurus', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1026, 1, 431, '<NAME>\'s Boyfriend', 0, 'KeyWelloffAmericankestrel', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1027, 1, 421, '<NAME>\'s Boyfriend', 0, 'LittlePinkEmperorshrimp', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1028, 1, 420, '<NAME>\'s Boyfriend', 0, 'GentleImpartialFoal', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1029, 1, 435, '<NAME>\'s Boyfriend', 0, 'SlowShyAfricanjacana', 'Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1030, 1, 429, '<NAME>\'s Boyfriend', 0, 'AdolescentDecimalClingfish', 'Air Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1031, 1, 428, '<NAME>\'s Boyfriend', 0, 'ValidDarkHoopoe', 'Spot Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1032, 1, 427, '<NAME>\'s Boyfriend', 0, 'GrizzledPresentCommongonolek', 'Roll Forward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1033, 1, 422, '<NAME>\'s Boyfriend', 0, 'DapperOrdinaryBlackbear', 'Veggie Throw Ground', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1034, 1, 447, 'Seikend', 0, 'VapidInsistentIchthyosaurs', 'Forward B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1035, 1, 438, 'Seikend', 0, 'EvenFaithfulCuttlefish', 'Neutral B in air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1036, 1, 440, 'Seikend', 0, 'SpicySlipperyArchaeocete', 'Jab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1037, 1, 439, 'Seikend', 0, 'NaturalBlankClumber', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1038, 1, 443, 'Seikend', 0, 'HatefulPitifulCirriped', 'High F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1039, 1, 441, 'Seikend', 0, 'ThreadbareDazzlingGrunion', 'Low F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1040, 1, 436, 'Seikend', 0, 'ZestyOrangeFattaileddunnart', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1041, 1, 445, 'Seikend', 0, 'ExcellentLiquidAsianporcupine', 'D Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1042, 1, 453, 'Seikend', 0, 'MeaslyPassionateButterfly', 'F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1043, 1, 444, 'Seikend', 0, 'DeficientAncientArthropods', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1044, 1, 446, 'Seikend', 0, 'VictoriousInstructiveFairyfly', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1045, 1, 442, 'Seikend', 0, 'OrderlyImpoliteAfricanwildcat', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1046, 1, 449, 'Seikend', 0, 'RingedParallelGrasshopper', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1047, 1, 456, 'Seikend', 0, 'SleepyFarAmurminnow', 'Forward B in air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1048, 1, 450, 'Seikend', 0, 'LastNaiveAmericanrobin', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1049, 1, 452, 'Seikend', 0, 'IckyVillainousHoatzin', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1050, 1, 448, 'Seikend', 0, 'BlaringWarmheartedArthropods', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1051, 1, 454, 'Seikend', 0, 'VeneratedPresentKittiwake', 'Standing Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1052, 1, 455, 'Seikend', 0, 'VariableScholarlyCooter', 'Air Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1053, 1, 437, 'Seikend', 0, 'ExemplaryDecimalFawn', 'Spot Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1054, 1, 451, 'Seikend', 0, 'OfficialFloweryKoi', 'Roll Forward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1055, 1, 457, 'Stratocaster', 0, 'MemorableFrayedDunlin', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1056, 1, 476, 'Stratocaster', 0, 'BraveCelebratedEchidna', 'Forward B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1057, 1, 467, 'Stratocaster', 0, 'BeneficialMistyAmurratsnake', 'Neutral B in air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1058, 1, 475, 'Stratocaster', 0, 'OldYoungKiwi', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1059, 1, 458, 'Stratocaster', 0, 'BriefWearyBaleenwhale', 'Jab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1060, 1, 462, 'Stratocaster', 0, 'IlliterateWhiteHogget', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1061, 1, 459, 'Stratocaster', 0, 'SatisfiedLameEmeraldtreeskink', 'High F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1062, 1, 460, 'Stratocaster', 0, 'ExemplaryGiantDesertpupfish', 'Low F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1063, 1, 461, 'Stratocaster', 0, 'SoulfulBarrenGonolek', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1064, 1, 463, 'Stratocaster', 0, 'EntireVictoriousHyrax', 'D Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1065, 1, 464, 'Stratocaster', 0, 'GoldenBouncyConure', 'F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1066, 1, 470, 'Stratocaster', 0, 'PeriodicFlippantBlueandgoldmackaw', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1067, 1, 478, 'Stratocaster', 0, 'HelplessOpulentErin', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1068, 1, 479, 'Stratocaster', 0, 'FamiliarVeneratedHorse', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1069, 1, 480, 'Stratocaster', 0, 'FrayedPopularBrontosaurus', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1070, 1, 471, 'Stratocaster', 0, 'CorruptWhisperedCommabutterfly', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1071, 1, 465, 'Stratocaster', 0, 'DirtyWeeklyGoa', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1072, 1, 469, 'Stratocaster', 0, 'KindheartedConcreteDowitcher', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1073, 1, 473, 'Stratocaster', 0, 'VerifiablePerfumedEyelashpitviper', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1074, 1, 466, 'Stratocaster', 0, 'PointedFrigidAcouchi', 'Standing Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1075, 1, 472, 'Stratocaster', 0, 'AliveSarcasticEel', 'Air Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1076, 1, 477, 'Stratocaster', 0, 'MeaslyEdibleGemsbuck', 'Roll Backward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1077, 1, 474, 'Stratocaster', 0, 'NiftyDismalGoldfish', 'Spot Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1078, 1, 468, 'Stratocaster', 0, 'JitteryVastBighorn', 'Roll Forward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1079, 1, 481, 'Aizen', 0, 'VioletClosedKid', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1080, 1, 508, 'Aizen', 0, 'ClutteredUnnaturalCutworm', 'Forward B 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1081, 1, 506, 'Aizen', 0, 'YellowishFortunateEmu', 'Forward B 3 (down)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1082, 1, 504, 'Aizen', 0, 'VelvetyZestyAzurevasesponge', 'Forward B 3 (neutral)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1083, 1, 502, 'Aizen', 0, 'MeatyBeautifulIndochinesetiger', 'Forward B 3 (up)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1084, 1, 507, 'Aizen', 0, 'HastyGreatAmericankestrel', 'Forward B 4 (down)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1085, 1, 498, 'Aizen', 0, 'TartGiantClumber', 'Forward B 4 (neutral)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1086, 1, 499, 'Aizen', 0, 'RedThatHuemul', 'Forward B 4 (up)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1087, 1, 482, 'Aizen', 0, 'YoungLinearAmazondolphin', 'Neutral B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1088, 1, 505, 'Aizen', 0, 'AncientKaleidoscopicFlyingfish', 'Neutral B in air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1089, 1, 483, 'Aizen', 0, 'AffectionateSeparateEarthworm', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1090, 1, 484, 'Aizen', 0, 'PertinentPinkIndianabat', 'Jab 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1091, 1, 486, 'Aizen', 0, 'OffensiveViciousCob', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1092, 1, 488, 'Aizen', 0, 'ScratchyGratefulEagle', 'F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1093, 1, 485, 'Aizen', 0, 'GargantuanGleamingHairstreakbutterfly', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1094, 1, 487, 'Aizen', 0, 'GleamingTightGuppy', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1095, 1, 490, 'Aizen', 0, 'ScarceRichKingfisher', 'D Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1096, 1, 491, 'Aizen', 0, 'GlitteringGaseousIbadanmalimbe', 'F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1097, 1, 489, 'Aizen', 0, 'ImperturbablePlushGhostshrimp', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1098, 1, 494, 'Aizen', 0, 'LivelyGrimyIndri', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1099, 1, 493, 'Aizen', 0, 'SpiffyEnlightenedIchneumonfly', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1100, 1, 492, 'Aizen', 0, 'HarmoniousWildBoutu', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1101, 1, 495, 'Aizen', 0, 'GlamorousBetterJenny', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1102, 1, 496, 'Aizen', 0, 'ClassicMagnificentKakapo', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1103, 1, 512, 'Aizen', 0, 'PettyCheapBlacklab', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1104, 1, 509, 'Aizen', 0, 'RevolvingAbsoluteGiraffe', 'Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1105, 1, 501, 'Aizen', 0, 'HeavyDishonestHairstreakbutterfly', 'Air Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1106, 1, 510, 'Aizen', 0, 'ColossalGentleBustard', 'Roll Back', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1107, 1, 497, 'Aizen', 0, 'AngryLavishFlyingfish', 'Spot Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1108, 1, 511, 'Aizen', 0, 'ConstantWanBream', 'Roll Forward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1109, 1, 522, 'knihT', 0, 'GleefulAnxiousHammerkop', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1110, 1, 527, 'knihT', 0, 'CarelessSpicyLadybug', 'Neutral B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1111, 1, 524, 'knihT', 0, 'TotalComposedJackal', 'Neutral B (full charge)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1112, 1, 514, 'knihT', 0, 'DaringVacantBluetonguelizard', 'Jab 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1113, 1, 521, 'knihT', 0, 'BeautifulMasculineHind', 'Jab 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1114, 1, 533, 'knihT', 0, 'OldElaborateAlligatorsnappingturtle', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1115, 1, 517, 'knihT', 0, 'MealyGrandAmericansaddlebred', 'High F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1116, 1, 538, 'knihT', 0, 'UnsteadyDizzyComet', 'Low F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1117, 1, 541, 'knihT', 0, 'ParchedWebbedAmazonparrot', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1118, 1, 519, 'knihT', 0, 'PepperyMediocreAardwolf', 'D Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1119, 1, 537, 'knihT', 0, 'PlumpAngryDugong', 'F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1120, 1, 520, 'knihT', 0, 'UnpleasantCommonAfricanhornbill', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1121, 1, 515, 'knihT', 0, 'WealthyDistantArgentineruddyduck', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1122, 1, 516, 'knihT', 0, 'RashFantasticGecko', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1123, 1, 536, 'knihT', 0, 'IgnorantDisguisedBinturong', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1124, 1, 539, 'knihT', 0, 'ReflectingInsignificantAnt', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1125, 1, 542, 'knihT', 0, 'RightInfiniteAlbino', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1126, 1, 531, 'knihT', 0, 'QuaintJovialHectorsdolphin', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1127, 1, 534, 'knihT', 0, 'ArtisticGloomyBullmastiff', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1128, 1, 535, 'knihT', 0, 'SlushyInsignificantAltiplanochinchillamouse', 'Standing Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1129, 1, 529, 'knihT', 0, 'WarmheartedSelfishCoati', 'Air Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1130, 1, 530, 'knihT', 0, 'ShadyFoolhardyBasil', 'Roll Backward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1131, 1, 532, 'knihT', 0, 'HauntingOccasionalCapybara', 'Spot Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1132, 1, 540, 'knihT', 0, 'HandyOrneryAstrangiacoral', 'Roll Forward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1133, 1, 564, 'Stratocaster', 0, 'JauntyGreenJunco', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1134, 1, 559, 'Stratocaster', 0, 'WatchfulNauticalAidi', 'Forward B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1135, 1, 562, 'Stratocaster', 0, 'ThriftyMetallicHornedtoad', 'Neutral B (charged)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1136, 1, 543, 'Stratocaster', 0, 'SameFlippantAbyssiniangroundhornbill', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1137, 1, 544, 'Stratocaster', 0, 'ElegantVelvetyGreatargus', 'Jab 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1138, 1, 546, 'Stratocaster', 0, 'ImpureHealthyCod', 'Jab 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1139, 1, 545, 'Stratocaster', 0, 'LameGlaringAmericanrobin', 'Jab 3', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1140, 1, 547, 'Stratocaster', 0, 'DeliciousCoordinatedGodwit', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1141, 1, 548, 'Stratocaster', 0, 'LavishTanDotterel', 'F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1142, 1, 553, 'Stratocaster', 0, 'PersonalGiddyIcterinewarbler', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1143, 1, 558, 'Stratocaster', 0, 'CoarseShadowyHypsilophodon', 'F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1144, 1, 560, 'Stratocaster', 0, 'OldfashionedWatchfulDromedary', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1145, 1, 561, 'Stratocaster', 0, 'PoorRaggedAlligatorgar', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1146, 1, 550, 'Stratocaster', 0, 'SecondBigheartedCrocodile', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1147, 1, 549, 'Stratocaster', 0, 'FlippantRequiredAfricanpiedkingfisher', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1148, 1, 551, 'Stratocaster', 0, 'HappyOrneryHanumanmonkey', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1149, 1, 555, 'Stratocaster', 0, 'ShoddyAppropriateAegeancat', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1150, 1, 552, 'Stratocaster', 0, 'HiddenFittingGrebe', 'Standing Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1151, 1, 563, 'Stratocaster', 0, 'TightLameLamb', 'Air Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1152, 1, 554, 'Stratocaster', 0, 'SomberLargeAss', 'Roll Backward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1153, 1, 556, 'Stratocaster', 0, 'DevotedQuerulousArgentineruddyduck', 'Spot Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1154, 1, 557, 'Stratocaster', 0, 'IgnorantFearlessElephantbeetle', 'Roll Forward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1155, 1, 566, 'Stratocaster', 0, 'InbornDamagedIndianpalmsquirrel', 'Neutral B in air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1156, 1, 565, 'Stratocaster', 0, 'AnxiousOblongBobwhite', 'Down Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1157, 1, 568, 'Stratocaster', 0, 'TatteredWarpedBushsqueaker', 'Up Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1158, 1, 567, 'Stratocaster', 0, 'AccomplishedInsidiousJohndory', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1159, 1, 581, 'mastermoo420', 0, 'MindlessMajesticCockatiel', 'Down B from ground', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1160, 1, 586, 'mastermoo420', 0, 'OrneryCalmChinesecrocodilelizard', 'Neutral B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1161, 1, 587, 'mastermoo420', 0, 'OpenUnrulyKangaroo', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1162, 1, 569, 'mastermoo420', 0, 'ShamefulNecessaryDobermanpinscher', 'Jab 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1163, 1, 576, 'mastermoo420', 0, 'RevolvingIncredibleDalmatian', 'Jab 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1164, 1, 572, 'mastermoo420', 0, 'AngelicGrimyAfricanaugurbuzzard', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1165, 1, 571, 'mastermoo420', 0, 'CorruptAmbitiousAiredaleterrier', 'F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1166, 1, 570, 'mastermoo420', 0, 'SolidShowyCoqui', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1167, 1, 579, 'mastermoo420', 0, 'HatefulIdenticalHen', 'D Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1168, 1, 578, 'mastermoo420', 0, 'CoordinatedGiganticJay', 'F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1169, 1, 573, 'mastermoo420', 0, 'SnarlingAdmirableDragonfly', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1170, 1, 584, 'mastermoo420', 0, 'IcyHollowAlaskajingle', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1171, 1, 583, 'mastermoo420', 0, 'TenseMajorCatfish', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1172, 1, 588, 'mastermoo420', 0, 'SpitefulDeterminedBuckeyebutterfly', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1173, 1, 590, 'mastermoo420', 0, 'AshamedAnnualGoldfinch', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1174, 1, 575, 'mastermoo420', 0, 'DismalGorgeousEstuarinecrocodile', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1175, 1, 577, 'mastermoo420', 0, 'TintedGlassGarpike', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1176, 1, 585, 'mastermoo420', 0, 'NastyBasicAsp', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1177, 1, 580, 'mastermoo420', 0, 'ValuableAlarmedHammerkop', 'Standing Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1178, 1, 582, 'mastermoo420', 0, 'HiddenPlasticCrossbill', 'Air Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1179, 1, 574, 'mastermoo420', 0, 'SparklingQuestionableAmericantoad', 'Roll Backward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1180, 1, 589, 'mastermoo420', 0, 'ZanyNextHermitcrab', 'Ground Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1181, 1, 591, 'mastermoo420', 0, 'EqualGenuineIberianchiffchaff', 'Roll Forward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1182, 1, 608, 'standardtoaster', 0, 'HardBlaringBrownbear', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1183, 1, 606, 'standardtoaster', 0, 'TornWideAndeancondor', 'Jab 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1184, 1, 593, 'standardtoaster', 0, 'FittingZanyHagfish', 'Jab 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1185, 1, 617, 'standardtoaster', 0, 'SociableChiefIbisbill', 'Jab 3', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1186, 1, 596, 'standardtoaster', 0, 'GlossyYearlyDassie', 'Down Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1187, 1, 605, 'standardtoaster', 0, 'MajorDefensiveDungenesscrab', 'F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1188, 1, 620, 'standardtoaster', 0, 'GrimCluelessDorking', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1189, 1, 614, 'standardtoaster', 0, 'HandyMetallicLabradorretriever', 'Down Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1190, 1, 615, 'standardtoaster', 0, 'LankyDependentGlassfrog', 'F Smash 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1191, 1, 619, 'standardtoaster', 0, 'MixedPoliticalHarlequinbug', 'Up Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1192, 1, 595, 'standardtoaster', 0, 'PreciousGenerousGoldfish', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1193, 1, 613, 'standardtoaster', 0, 'ImmenseRepentantGourami', 'Down Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1194, 1, 601, 'standardtoaster', 0, 'VengefulPerfumedAddax', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1195, 1, 604, 'standardtoaster', 0, 'ImprobableVapidGermanspitz', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1196, 1, 594, 'standardtoaster', 0, 'DishonestVapidCicada', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1197, 1, 600, 'standardtoaster', 0, 'AgreeableEssentialGrouper', 'Z Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1198, 1, 611, 'standardtoaster', 0, 'UniqueFondChrysalis', 'Dash Attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1199, 1, 612, 'standardtoaster', 0, 'BiodegradableBewitchedChupacabra', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1200, 1, 616, 'standardtoaster', 0, 'UnfitOccasionalIceblueredtopzebra', 'Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1201, 1, 599, 'standardtoaster', 0, 'IndelibleFlippantCutworm', 'Air Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1202, 1, 598, 'standardtoaster', 0, 'RemoteSentimentalAngwantibo', 'Roll Backward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1203, 1, 618, 'standardtoaster', 0, 'SentimentalConcernedBedlingtonterrier', 'Spot Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1204, 1, 597, 'standardtoaster', 0, 'SpeedyHarmoniousGalapagossealion', 'Roll Forward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1205, 1, 626, 'mastermoo420', 0, 'BasicPettyAmericanlobster', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1206, 1, 623, 'mastermoo420', 0, 'WeightySkinnyAfricanrockpython', 'Forward B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1207, 1, 634, 'mastermoo420', 0, 'ElaborateAccurateIberianmidwifetoad', 'Neutral B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1208, 1, 642, 'mastermoo420', 0, 'HarshForcefulArabianwildcat', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1209, 1, 639, 'mastermoo420', 0, 'InfiniteInnocentAcornbarnacle', 'F Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1210, 1, 622, 'mastermoo420', 0, 'PinkIllfatedIraniangroundjay', 'D Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1211, 1, 638, 'mastermoo420', 0, 'ImpressionableRecklessKouprey', 'F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1212, 1, 643, 'mastermoo420', 0, 'TatteredAffectionateAfricanelephant', 'U Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1213, 1, 621, 'mastermoo420', 0, 'DismalUntimelyGoral', 'U Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1214, 1, 630, 'mastermoo420', 0, 'FluidIcyGalah', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1215, 1, 633, 'mastermoo420', 0, 'ShinyUntriedBrontosaurus', 'D Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1216, 1, 636, 'mastermoo420', 0, 'UnderstatedCheapBellfrog', 'D Tilt', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1217, 1, 631, 'mastermoo420', 0, 'SaneMajesticIchneumonfly', 'F Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1218, 1, 625, 'mastermoo420', 0, 'SoreColorfulJavalina', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1219, 1, 635, 'mastermoo420', 0, 'NeighboringPositiveAlligator', 'U Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1220, 1, 637, 'mastermoo420', 0, 'BrokenCostlyGrison', 'Dash attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1221, 1, 632, 'mastermoo420', 0, 'HighlevelRegalLark', 'Running Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1222, 1, 629, 'mastermoo420', 0, 'SomberTenderAvocet', 'Standing Grab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1223, 1, 627, 'mastermoo420', 0, 'CircularFrenchChrysomelid', 'Air Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1224, 1, 624, 'mastermoo420', 0, 'OddInexperiencedDesertpupfish', 'Roll Backward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1225, 1, 640, 'mastermoo420', 0, 'DismalClosedAmericanpainthorse', 'Spot Dodge', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1226, 1, 628, 'mastermoo420', 0, 'ColossalEasygoingCrayfish', 'Roll Forward', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1227, 1, 641, 'mastermoo420', 0, 'ShamelessExhaustedAmericanindianhorse', 'Jab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1787, 1, 4, 'Seikend', 0, 'ElaborateMaleAustraliankestrel', 'Down B on ground', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1788, 1, 2, 'Seikend', 0, 'SmoggyBriefHyracotherium', 'Up B in air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1789, 1, 3, 'Seikend', 0, 'DangerousPessimisticAmericanredsquirrel', 'Up B on ground', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1790, 1, 1, 'Seikend', 0, 'CourteousWarmFairybluebird', 'Down B in air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1791, 1, 61, 'Strong Bad', 0, 'ThinIckyGrackle', 'Neutral B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1792, 1, 40, 'Strong Bad', 0, 'ComplexRevolvingBantamrooster', 'Up B on ground', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1793, 1, 39, 'Strong Bad', 0, 'ObedientAnimatedGuillemot', 'Up B in air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1794, 1, 66, 'Strong Bad', 0, 'HopefulNauticalArrowana', 'Neutral B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1795, 1, 154, 'standardtoaster', 0, 'AppropriateCleanJellyfish', 'High F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1796, 1, 158, 'standardtoaster', 0, 'DependentTidyGalapagospenguin', 'Low F Smash', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1797, 1, 159, 'standardtoaster', 0, 'InbornOrdinaryAffenpinscher', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1798, 1, 161, 'standardtoaster', 0, 'MadeupNiftyFerret', 'Forward B on ground', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1799, 1, 164, 'standardtoaster', 0, 'EdibleSilverFirebelliedtoad', 'Down B in air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1800, 1, 166, 'standardtoaster', 0, 'LastEducatedFurseal', 'Forward B in air (hit)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1801, 1, 200, 'Massive', 0, 'ShortLazyHammerheadshark', 'B Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1802, 1, 206, 'Massive', 0, 'HiddenSpryFerret', 'N Air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1803, 1, 254, 'standardtoaster', 0, 'SpanishWealthyAsianconstablebutterfly', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1804, 1, 249, 'standardtoaster', 0, 'BogusSandyIrishterrier', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1805, 1, 251, 'standardtoaster', 0, 'VagueUglyDartfrog', 'Up B in air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1806, 1, 256, 'standardtoaster', 0, 'RecentElaborateBellsnake', 'Jab 3 (non-rapid)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1807, 1, 259, 'standardtoaster', 0, 'QuarrelsomeCanineAmericanindianhorse', 'Jab 3 (rapid)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1808, 1, 270, 'standardtoaster', 0, 'ComplicatedEquatorialInsect', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1809, 1, 283, 'standardtoaster', 0, 'IllJovialDotterel', 'Down B on ground', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1810, 1, 339, 'Stratocaster', 0, 'RareFrigidBasenji', 'Forward B 2 (up)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1811, 1, 333, 'Stratocaster', 0, 'WellmadeUnripeCopepod', 'Forward B 2 (neutral & down)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1812, 1, 366, 'standardtoaster', 0, 'FeminineThoseDragonfly', 'Down B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1813, 1, 367, 'standardtoaster', 0, 'ExcitableShimmeringCoelacanth', 'Down B (after 3 charges)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1814, 1, 385, 'standardtoaster', 0, 'MelodicDisfiguredBedlingtonterrier', 'Jab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1815, 1, 379, 'standardtoaster', 0, 'LimpDecimalEarthworm', 'Neutral B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1816, 1, 373, 'standardtoaster', 0, 'SillyWiltedKakarikis', 'Jab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1817, 1, 381, 'standardtoaster', 0, 'PleasedClearDikdik', 'Neutral B (1-8)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1818, 1, 394, 'standardtoaster', 0, 'WelltodoFluidFrigatebird', 'Forward B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1819, 1, 395, 'standardtoaster', 0, 'ImpracticalSleepyAtlanticspadefish', 'Up B 1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1820, 1, 398, 'standardtoaster', 0, 'SlushyPeriodicEstuarinecrocodile', 'Up B 2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1821, 1, 399, 'standardtoaster', 0, 'SpiffyJoyousAustralianfurseal', 'Forward B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1822, 1, 413, '<NAME>\'s Boyfriend', 0, 'QuarrelsomeAggressiveIslandcanary', 'F Smash Golf Club', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1823, 1, 414, '<NAME>\'s Boyfriend', 0, 'SpecificShorttermBurro', 'F Smash Racket', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1824, 1, 415, '<NAME>\'s Boyfriend', 0, 'ResponsibleImaginaryGoa', 'F Smash Frying Pan', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1825, 1, 500, 'Aizen', 0, 'NaiveHeavyBallpython', 'Forward B 2 (up)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1826, 1, 503, 'Aizen', 0, 'ConstantLastAmericanblackvulture', 'Forward B 2 (neutral & down)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1827, 1, 528, 'knihT', 0, 'FlamboyantGiganticHuia', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1828, 1, 518, 'knihT', 0, 'PoshOblongBlackpanther', 'Forward B in air (smash b)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1829, 1, 526, 'knihT', 0, 'OblongDesertedAnophelesmosquito', 'Forward B on ground (smash b)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1830, 1, 525, 'knihT', 0, 'SandyNauticalEel', 'Forward B in air (tilt b)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1831, 1, 523, 'knihT', 0, 'BlandAngelicAnaconda', 'Forward B on ground (tilt b)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1832, 1, 513, 'knihT', 0, 'DisastrousFreshFerret', 'Up B in air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1833, 1, 592, 'standardtoaster', 0, 'SingleImmediateGermanshepherd', 'Up B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1834, 1, 607, 'standardtoaster', 0, 'ParallelIdealisticAnhinga', 'Neutral B (startup)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1835, 1, 603, 'standardtoaster', 0, 'PassionateFreshHogget', 'Up B in air', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1836, 1, 602, 'standardtoaster', 0, 'UnacceptableBigheartedElectriceel', 'Neutral B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1837, 1, 610, 'standardtoaster', 0, 'TiredGracefulIndigobunting', 'Forward B (end)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1838, 1, 609, 'standardtoaster', 0, 'ConsciousVacantFlea', 'Forward B (start)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1850, 1, 381, 'standardtoaster', 0, 'FelineBouncyClam', 'Forward B', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1851, 0, 25, 'Stratocaster', 0, 'GrandInferiorHammerheadshark', 'Jab 3 ', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1852, 2, 28, '', 0, 'PaleHollowLamb', 'Captain Falcon moonwalks across the stage', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1853, 0, 23, 'SmashLounge Invitational #1', 0, 'PreciousHiddenBighornedsheep', 'Laudandus demonstrating how to relentlessly edgeguard as Sheik', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1854, 0, 8, 'S@DZ25', 0, 'OilyMinorAcaciarat', 'Irish covering all recovery options', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1855, 0, 26, 'S@DZ 25', 0, 'EmbellishedFalseInvisiblerail', 'Zelda using a nair to break out of a Falcon down-throw knee combo', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1856, 0, 26, 'S@DZ 21', 0, 'AggravatingOddImperialeagle', 'Zelda 0 - death on Peach', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1857, 0, 1, 'http://www.reddit.com/r/smashbros', 0, 'ScratchyAcademicAmericanavocet', 'DJ Nintendo counter-picks Bowser!', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1858, 0, 5, '', 0, 'JollyUnawareGrasshopper', 'Westballz demonstrating how to apply pressure as Falco', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1859, 2, 23, 'Kansas City/Lawerence Smashers (Kadano)', 0, 'SecondHiddenJoey', 'Light Powershielding(20XX)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1860, 2, 23, '', 0, 'CalmPoliticalConch', 'Another example of light powershielding(Credit to Kadano) ', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1868, 2, 31, 'http://www.reddit.com/r/smashbros', 0, 'OddEmbellishedAmazontreeboa', 'A shield drop demonstrated alongside the controller inputs', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1869, 0, 14, 'WHOBO MLG Edition', 0, 'AmusedAngryAlbacoretuna', 'ARC showing off Marth\'s throw DI mixups vs Jigglypuff', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1870, 2, 7, 'Forte 2', 0, 'SatisfiedParallelIchthyostega', 'ARC dashdance baits a grab and punishes with a pivot tipper', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1871, 2, 13, 'Kadano', 0, 'EvilRecklessComet', 'Falco performs a completely intangible ledgedashstall (aka haxdash) on Yoshi\'s Story\'s side platform', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1872, 2, 7, 'WHOBO MLG Edition', 0, 'QuarrelsomeFragrantAndeancondor', 'the difference between f-trhow wavedash f-smash and f-throw pivot tipper', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1873, 2, 23, 'smashboards.com/posts/18512581', 0, 'LeadingHandsomeBernesemountaindog', 'Marth uses Z-Powershielding to increase the frame window for the powershield-projectile (reflect)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1874, 2, 23, 'smashboards.com/posts/18512581', 0, 'WelldocumentedHoarseDuiker', 'Marth uses Z-Powershielding to reflect a low laser from crouch (not possible with normal PS)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1875, 2, 33, 'smashboards.com/posts/16761069', 0, 'FancyRadiantHog', 'Sheik performs an aerial interrupt with her up aerial and retains 8 frames of grounded intangibility', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1876, 2, 7, 'Apex 2015', 0, 'CorruptWideeyedCommabutterfly', 'A collection of PewPewU pivot-tippers', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1877, 2, 1, 'Kadano', 0, 'OldDistantAmericanwigeon', 'Sheik punishes Falco\'s shield pressure with a wavedash out of shield followed by a dash attack', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1878, 0, 14, 'Kadano', 0, 'HealthyCarefreeCowbird', 'Marth\'s counter (activated)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1879, 2, 13, 'Kadano', 0, 'CloudyScaredBernesemountaindog', 'Fox\'s completely intangible firestall (up-B ledgestall) with body state & environment visibility on', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1880, 0, 14, 'Kadano', 0, 'SophisticatedPleasingCarpenterant', 'Marth comboes Captain Falcon with his Dancing Blade and converts into a kill', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1881, 2, 34, 'Kadano', 0, 'HonorableGratefulBuck', 'PC edge hog—turning around during a walk and sliding off into fast fall ledgegrab', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1882, 2, 34, 'Kadano', 0, 'ThriftyClearIndusriverdolphin', 'Sheik performs a wavedash smash turn fast fall edge hog', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1883, 2, 34, 'Kadano', 0, 'NimblePleasantIndianpangolin', 'Sheik performs a wavedash smash turn wavedash fast fall edge hog', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1884, 0, 23, 'Kadano', 0, 'PlumpBonyFlamingo', 'Sheik angles her up-B against the wall to delay her fall (but lose continuous intangibility)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1885, 0, 23, 'Kadano', 0, 'UnfortunateTanCrossbill', 'Sheik angles her up-B against the wall, making her land earlier than without the wall collision', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1886, 2, 20, 'Kadano', 0, 'AccomplishedLegitimateGopher', 'DI away prevents Captain Falcon from getting uthrow follow-ups on Falco until very high percent', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1888, 2, 27, 'Kadano', 0, 'IllinformedIndolentGaur', 'Fox frame-perfectly waveshines Marth from zero to death, near inescapable', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1889, 0, 14, 'Kadano', 0, 'DistantWhiteGrosbeak', 'Short hop double fair input window (left: instant aerial and gravity, right: one frame delay)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1890, 0, 14, 'Kadano', 0, 'GrippingEverlastingArthropods', 'Marth\'s ledgedashstall (also known as haxdash), completely intangible if executed perfectly', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1891, 2, 13, 'Kadano', 0, 'GrippingEverlastingArthropods', 'Marth doing the ledgedashstall (aka haxdash), completely intangible for every character except Peach', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1892, 2, 28, 'Kadano', 0, 'WiltedDazzlingGlassfrog', 'Marth wavedashes, moonwalks and stickywalks in that order (moonwalk part is Dash 1-26)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1893, 2, 1, 'Kadano', 0, 'SmugOilyAmericanquarterhorse', 'Captain Falcon does a frame-perfect ledgedash (wavedash from the ledge) and pivot edgehogs', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1894, 2, 11, 'Apex 2014', 0, 'ForthrightActiveKillifish', 'PPMD dash dances through Mew2king\'s needles, taking them as if they were nothing', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1895, 2, 35, 'Kadano', 0, 'FrigidShadowyCheetah', 'Running speed depends on control stick position. Useful for spacing and faking out.', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1896, 0, 23, 'Kadano', 0, 'SeparateUnhealthyIncatern', 'Sheik\'s different dash dance lengths', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1897, 2, 11, 'Kadano', 0, 'SeparateUnhealthyIncatern', 'Sheik\'s different dash dance lengths', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1898, 2, 33, 'Kadano', 0, 'TidyScaryAzurevase', 'Captain Falcon\'s aerial interrupt, using his back aerial, alternating between normal and hitbox vis.', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1899, 2, 13, 'Kadano', 0, 'EvilRecklessComet', 'Falco\'s ledgedashstall on Yoshi\'s Story\'s side platform (completely intangible)', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1900, 2, 13, 'Kadano', 0, 'HonorableHilariousBobwhite', 'Falco\'s ledgedashstall (completely intangible), use gfycat options at the bottom right to slow down', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1901, 3, 263, '', 0, 'NastyLightAnt', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1902, 3, 162, '', 0, 'IllTidyChamois', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1903, 3, 162, '', 0, 'CookedFemaleAfricanaugurbuzzard', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1904, 3, 162, '', 0, 'EasyAdorableKite', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1908, 3, 60, '', 0, 'DenseFailingAmericancrocodile', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1910, 2, 26, 'SSS 17 - S2J vs Fiction (WF)', 0, 'ConfusedMelodicGallowaycow', 'nice tech chase string from S2J', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1911, 3, 4, '', 0, 'DimIckyAztecant', '', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1912, 0, 8, 'Mayhem', 0, 'WhoppingMinorIvorybackedwoodswallow', 'Fly Amanita edge guards with SoPo', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1913, 2, 36, 'Kadano', 0, 'FailingOfficialAfricanharrierhawk', 'Demonstrating the benefits of V Canceling. Notice the left character does a V Cancel, and thus survives Fox\'s up smash. ', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (1914, 2, 37, 'https://www.reddit.com/r/smashbros/comments/2gxk0a/the_most_sacred_of_combos/', 0, 'UltimateWhirlwindAmericancrow', 'The most sacred of combos. ', 0, '2015-11-19 03:11:26', '2015-11-19 03:11:26'), (1915, 2, 38, '', 0, 'DeliriousTidyGoosefish', 'Marth demonstrating his ability to Fox Trot. Notice the animation and it\'s difference from using a full dash.', 0, '2015-11-19 03:18:01', '2015-11-19 03:18:01'); DROP TABLE IF EXISTS `gifvotes`; CREATE TABLE `gifvotes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `gifid` int(11) NOT NULL, `voterid` int(11) NOT NULL, `direction` tinyint(1) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; INSERT INTO `gifvotes` (`id`, `gifid`, `voterid`, `direction`) VALUES (1, 526, 2, 1), (2, 527, 2, 1), (3, 1875, 2, 1), (4, 513, 2, 1), (5, 8, 2, 1); DROP TABLE IF EXISTS `groups`; CREATE TABLE `groups` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `permissions` text CHARACTER SET utf8 COLLATE utf8_unicode_ci, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), UNIQUE KEY `groups_name_unique` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; DROP TABLE IF EXISTS `guide_bodies`; CREATE TABLE `guide_bodies` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; DROP TABLE IF EXISTS `guidebody`; CREATE TABLE `guidebody` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `guideid` int(11) NOT NULL, `section_num` int(11) NOT NULL, `section_head` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `section_body` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `section_foot` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `gifid` int(11) NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; DROP TABLE IF EXISTS `guides`; CREATE TABLE `guides` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `slug` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `typeid` int(11) NOT NULL, `dataid` int(11) NOT NULL, `description` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `author1_sponsor` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `author1_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `author1_twitter` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `author2_sponsor` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `author2_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `author2_twitter` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; INSERT INTO `guides` (`id`, `name`, `slug`, `typeid`, `dataid`, `description`, `author1_sponsor`, `author1_name`, `author1_twitter`, `author2_sponsor`, `author2_name`, `author2_twitter`, `created_at`, `updated_at`) VALUES (1, 'Marth -- just the tip', 'clgppumarth', 1, 14, 'Learn how to be the best Marth in town', 'clg', 'pewpewu', 'clg_pewpewu', '', '', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'); DROP TABLE IF EXISTS `locals`; CREATE TABLE `locals` ( `id` int(11) NOT NULL AUTO_INCREMENT, `region` int(11) DEFAULT NULL, `profileid` varchar(130) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `name` varchar(44) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `latitude` decimal(10,7) DEFAULT NULL, `longitude` decimal(11,7) DEFAULT NULL, `game` int(11) DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; INSERT INTO `locals` (`id`, `region`, `profileid`, `name`, `latitude`, `longitude`, `game`, `created_at`, `updated_at`) VALUES (2, 1, 'https://www.facebook.com/groups/269052529786948', 'East Coast', 37.9500000, -84.0000000, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (3, 1, 'https://www.facebook.com/groups/134497873392355', 'East Coast', 37.9470848, -83.7225060, 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (4, 1, 'https://www.facebook.com/groups/430811007000487', 'Delaware', 39.1564159, -75.5134199, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (5, 1, 'https://www.facebook.com/groups/DMVSSBM', 'Maryland / Virginia / DC', 37.0000000, -79.0145760, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (6, 1, 'https://www.facebook.com/groups/mdvasmash', 'Maryland / Virginia / DC', 37.5000000, -77.0000000, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (7, 1, 'https://www.facebook.com/groups/projectmdva', 'Maryland / Virginia / DC', 38.0000000, -76.5000000, 4, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (8, 1, 'https://www.facebook.com/groups/395469233833958', 'Maryland - College Park', 38.9875571, -76.9361836, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (9, 1, 'https://www.facebook.com/groups/489536424485533', 'Massachusetts - Fall River', 41.6855955, -71.1019620, 4, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (10, 1, 'https://www.facebook.com/groups/167824956563375', 'New England', 42.2499739, -71.2378280, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (11, 1, 'https://www.facebook.com/groups/356948471051413', 'New England', 42.2499739, -71.0000000, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (12, 1, 'https://www.facebook.com/groups/262747973827544', 'New Jersey - Rutgers University', 40.4786710, -74.4317890, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (13, 1, 'https://www.facebook.com/groups/156948507708078', 'New Jersey - South', 40.0583240, -74.4056610, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (14, 1, 'https://www.facebook.com/groups/408295942538051', 'New Jersey - Central', 39.8297280, -74.9789590, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (15, 1, 'https://www.facebook.com/groups/211900915585963', 'New Jersey / New York', 40.4636660, -74.4406130, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (16, 1, 'https://www.facebook.com/groups/350071671730817', 'New Jersey / New York', 40.5305020, -74.3389890, 4, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (17, 1, 'https://www.facebook.com/groups/1386041018274455', 'New Jersey / New York', 40.6056120, -74.2236330, 5, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (18, 1, 'https://www.facebook.com/groups/2200028280', 'New York - Ithaca / Cornell', 42.4534490, -76.4735030, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (19, 1, 'https://www.facebook.com/groups/224824577625283', 'New York - Long Island', 40.7891420, -73.1349600, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (20, 1, 'https://www.facebook.com/groups/364349146941224', 'New York - Long Island', 40.7763820, -73.2843020, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (21, 1, 'https://www.facebook.com/groups/smashingatempire', 'New York - Long Island', 40.7139560, -73.6358640, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (22, 1, 'https://www.facebook.com/groups/279511975480441', 'New York - NYC', 40.7127840, -74.0059410, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (23, 1, 'https://www.facebook.com/groups/310533642332998', 'New York - NYU', 40.7272480, -73.9954510, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (24, 1, 'https://www.facebook.com/groups/385718644870094', 'New York - Schenectady', 42.8142430, -73.9395690, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (25, 1, 'https://www.facebook.com/groups/639367622752544', 'New York - Syracuse', 43.0481220, -76.1474240, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (26, 1, 'https://www.facebook.com/groups/46230006858', 'New York - Upstate / RIT', 40.7127840, -74.0059410, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (27, 1, 'https://www.facebook.com/groups/centralPennSSB', 'Pennsylvania - Central', 41.2967480, -76.3729960, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (28, 1, 'https://www.facebook.com/groups/108078502591099', 'Pennsylvania - Philadelphia', 39.9523350, -75.1637890, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (29, 1, 'https://www.facebook.com/groups/NEOHBURGH', 'Pennsylvania - Pittsburgh / Northeast Ohio', 40.3565090, -79.9192700, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (30, 1, 'https://www.facebook.com/groups/182267851790715', 'Southern Virginia', 37.0592750, -81.5377010, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (31, 1, 'https://www.facebook.com/groups/452275474823750', 'Charlottesville, Virginia', 38.0293060, -78.4766780, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (32, 1, 'https://www.facebook.com/groups/596361677123724', 'Charlottesville, Virginia', 38.0283520, -78.4880450, 4, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (33, 1, 'https://www.facebook.com/groups/182267851790715', 'Norfolk/Virginia Beach', 36.8823350, -76.2999060, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (34, 1, 'https://www.facebook.com/groups/1386540904893386', 'Southwest Virginia', 37.4315730, -78.6568940, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (35, 1, 'https://www.facebook.com/groups/204825246197520', 'Virginia - VCU', 37.5446450, -77.4479900, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (36, 1, 'https://www.facebook.com/groups/408805205918060', 'West Virginia', 38.5976260, -80.4549030, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (37, 2, 'https://www.facebook.com/groups/269052529786948/', 'East Coast', 36.0313320, -72.6855470, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (38, 2, 'https://www.facebook.com/groups/134497873392355/', 'East Coast', 34.4522180, -73.0371090, 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (39, 2, 'https://www.facebook.com/groups/336726723087447/', 'Atlantic South General', 41.4016300, -94.9908060, 4, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (40, 2, 'https://www.facebook.com/AlabamaSmashLeague', 'Alabama', 32.3182310, -86.9022980, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (41, 2, 'https://www.facebook.com/groups/285926091523241/', 'Arkansas', 35.2010500, -91.8318330, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (42, 2, 'https://www.facebook.com/groups/304489126305123/', 'Florida', 27.6648270, -81.5157540, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (43, 2, 'https://www.facebook.com/groups/138478079554384/', 'Florida - Central Florida', 27.7127100, -81.5405270, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (44, 2, 'https://www.facebook.com/groups/456656917699611/', 'Florida - Gainesville', 29.6516340, -82.3248260, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (45, 2, 'https://www.facebook.com/groups/247383341960804/', 'Florida - Jacksonville', 30.3321840, -81.6556510, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (46, 2, 'https://www.facebook.com/groups/134182206752487/', 'Florida - Pensacola', 30.4213090, -87.2169150, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (47, 2, 'https://www.facebook.com/groups/1440737036160195/', 'Florida - South Florida 1', 27.4602270, -82.6676730, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (48, 2, 'https://www.facebook.com/pages/Smash-In-Progress/706760066011314', 'Florida - South Florida 2', 27.4504470, -82.5773760, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (49, 2, 'https://www.facebook.com/VersusGamingCenter', 'Florida - South Florida 3', 27.9064690, -81.5740650, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (50, 2, 'https://www.facebook.com/groups/159234920826366/', 'Florida - South Florida', 27.6648270, -81.5157540, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (51, 2, 'https://www.facebook.com/groups/193697467326040/', 'Florida - South West Florida', 27.6656460, -81.5116450, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (52, 2, 'https://www.facebook.com/groups/357576900984630/', 'Florida - Tallahassee', 30.4382560, -84.2807330, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (53, 2, 'https://www.facebook.com/groups/483669795064224/', 'Florida - Tampa Bay', 27.7028710, -82.5834950, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (54, 2, 'https://www.facebook.com/groups/TampaSmash/', 'Florida - Tampa Bay', 27.8366470, -82.5032040, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (55, 2, 'https://www.facebook.com/groups/125733910821001/', 'Florida - University of Florida 2', 25.7885490, -80.3796260, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (56, 2, 'https://www.facebook.com/groups/209198555783942/', 'Georgia', 32.1656220, -82.9000750, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (57, 2, 'https://www.facebook.com/groups/179381782079932/', 'Georgia', 30.3229140, -93.1854220, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (58, 2, 'https://www.facebook.com/groups/1392554534335836/', 'Georgia', 33.1947030, -84.2845670, 4, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (59, 2, 'https://www.facebook.com/groups/133034603414177/', 'Louisiana', 30.9842980, -91.9623330, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (60, 2, 'https://www.facebook.com/groups/352469348160468/', 'Louisiana', 30.0827880, -92.6747630, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (61, 2, 'https://www.facebook.com/LSUSmash', 'Louisiana - LSU', 30.4132580, -91.1800020, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (62, 2, 'https://www.facebook.com/groups/512742878766152/', 'Louisiana - New Orleans', 29.9510660, -90.0715320, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (63, 2, 'https://www.facebook.com/groups/276445842390059/', 'North Carolina', 35.7595730, -79.0193000, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (64, 2, 'https://www.facebook.com/groups/164944006930835/', 'North Carolina', 35.1934210, -77.0334180, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (65, 2, 'https://www.facebook.com/groups/290202017736245/', 'South Carolina', 33.8360810, -81.1637250, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (66, 2, 'https://www.facebook.com/groups/MiddleTNProjectM/', 'Tennessee', 35.5174910, -86.5804470, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (67, 3, 'https://www.facebook.com/groups/mwsmash/', 'Midwest General 1', 39.9097360, -93.5156250, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (68, 3, 'https://www.facebook.com/groups/257285400975347/', 'Midwest General 2', 39.9013090, -92.5872800, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (69, 3, 'https://www.facebook.com/groups/380188912048431/', 'Illinois - Champaign', 40.1164200, -88.2433830, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (70, 3, 'https://www.facebook.com/groups/126804630735563/', 'Illinois - Chicago', 41.8781140, -87.6297980, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (71, 3, 'https://www.facebook.com/groups/1399023747004983/', 'Illinois- Springfield', 39.7817210, -89.6501480, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (72, 3, 'https://www.facebook.com/groups/129015017194089/', 'Illinois South, Kentucky West, Missouri East', 37.5097260, -88.7695310, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (73, 3, 'https://www.facebook.com/groups/171453176258373/', 'Indiana - Carmel', 39.9783710, -86.1180430, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (74, 3, 'https://www.facebook.com/groups/611364705589048/', 'Indiana - Indianapolis', 39.7684030, -86.1580680, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (75, 3, 'https://www.facebook.com/groups/247658661961971/', 'Indiana - <NAME>', 41.0792730, -85.1393510, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (76, 3, 'https://www.facebook.com/groups/PurdueSSBO/', 'Indiana - Purdue', 40.4237050, -86.9211950, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (77, 3, 'https://www.facebook.com/groups/382901415171283', 'Indiana - IU Bloomington', 39.1691360, -86.5149050, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (78, 3, 'https://www.facebook.com/groups/1421302704757453/', 'Iowa', 41.8780030, -93.0977020, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (79, 3, 'https://www.facebook.com/groups/ksssb', 'Kansas', 39.0119020, -98.4842460, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (80, 3, 'https://www.facebook.com/groups/734815379867767/', 'Kansas City', 39.0997270, -94.5785670, 4, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (81, 3, 'https://www.facebook.com/groups/271575972914386/', 'Kentucky-Ohio-Indiana', 38.7883450, -84.5507810, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (82, 3, 'https://www.facebook.com/groups/umsmash/', 'Michigan', 42.2808260, -83.7430380, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (83, 3, 'https://www.facebook.com/groups/406757282795167/', 'Michigan', 42.3443350, -83.8201900, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (84, 3, 'https://www.facebook.com/groups/WestMISmash/', 'Michigan - West', 43.8028190, -86.0449220, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (85, 3, 'https://www.facebook.com/groups/258765404305007/', 'Michigan', 42.3849230, -83.5702510, 4, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (86, 3, 'https://www.facebook.com/groups/540421182680998/', 'Minnesota', 46.7295530, -94.6859000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (87, 3, 'https://www.facebook.com/groups/176623759034371/', 'Minnesota - UMM', 45.5892070, -95.9033780, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (88, 3, 'https://www.facebook.com/groups/323513011041633/', 'Missouri - St. Louis', 38.6270030, -90.1994040, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (89, 3, 'https://www.facebook.com/groups/414566191955018/', 'Missouri - St. Louis', 38.6218030, -90.2365320, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (90, 3, 'https://www.facebook.com/groups/338517279512871/', 'Missouri - Springfield', 37.2089570, -93.2922990, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (91, 3, 'https://www.facebook.com/groups/199063406858260/', 'Nebraska', 41.4925370, -99.9018130, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (92, 3, 'https://www.facebook.com/groups/105843859488387/', 'Ohio', 40.4172870, -82.9071230, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (93, 3, 'https://www.facebook.com/groups/677137102305269/', 'Ohio - Cincinnati', 39.1031180, -84.5120200, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (94, 3, 'https://www.facebook.com/groups/133757653398073/', 'Ohio - Columbus', 39.9611760, -82.9987940, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (95, 3, 'https://www.facebook.com/groups/302630169803625/', 'Ohio - Columbus', 39.9596880, -83.0074600, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (96, 3, 'https://www.facebook.com/groups/1396649643918505/', 'Ohio - Northwest', 40.8138090, -83.8256840, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (97, 3, 'https://www.facebook.com/groups/470817746279509/', 'Western PA / Northeast OH', 41.2447720, -80.4858400, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (98, 3, 'https://www.facebook.com/groups/466886533331712/', 'South Dakota', 43.9695150, -99.9018130, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (99, 3, 'https://www.facebook.com/groups/411431608918302/', 'Wisconsin', 43.0327610, -87.9071040, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (100, 4, 'https://www.facebook.com/groups/190510254334113/', 'Arizona', 33.4406090, -112.0935060, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (101, 4, 'https://www.facebook.com/groups/252928971439205/', 'Arizona', 32.1384090, -110.9179690, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (102, 4, 'https://www.facebook.com/groups/248367238515394/', 'Colorado', 39.7325380, -104.9688720, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (103, 4, 'https://www.facebook.com/groups/541859482565869/', 'Oklahoma', 35.4675600, -97.5164280, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (104, 4, 'https://www.facebook.com/groups/326887317543/', 'Texas - Amarillo', 35.2219970, -101.8312970, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (105, 4, 'https://www.facebook.com/groups/476448669077840/', 'Texas - Austin', 30.2671530, -97.7430610, 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (106, 4, 'https://www.facebook.com/groups/Austin.Melee/', 'Texas - Austin', 30.2680370, -97.7365640, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (107, 4, 'https://www.facebook.com/groups/426773497467785/', 'Texas - Austin', 30.2604020, -97.7520560, 4, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (108, 4, 'http://www.facebook.com/groups/bcsmelee', 'Texas - Bryan-College Station', 30.6275730, -96.3348200, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (109, 4, 'https://www.facebook.com/groups/205428649667016/', 'Texas - College Station', 30.6224020, -96.3410000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (110, 4, 'https://www.facebook.com/groups/350398944989752/', 'Texas - Dallas-Fort Worth', 32.7554880, -97.3307660, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (111, 4, 'https://www.facebook.com/groups/673233716043745/', 'Texas - El Paso', 31.7699560, -106.4968050, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (112, 4, 'https://www.facebook.com/groups/554204308010763/', 'Texas - Fort Worth', 32.7554880, -97.3307660, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (113, 4, 'https://www.facebook.com/groups/223986011009934/', 'Texas - Houston', 29.7601930, -95.3693900, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (114, 4, 'https://www.facebook.com/groups/197481713674782', 'Texas - San Antonio', 29.4241220, -98.4936280, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (115, 4, 'https://www.facebook.com/groups/122102801187160/', 'Texas - Rio Grande Valley', 26.1502960, -97.9767720, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (116, 4, 'https://www.facebook.com/UtahSmash', 'Utah', 40.7472570, -111.8627930, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (117, 4, 'https://www.facebook.com/groups/35208405538/', 'Utah - Provo/Orem', 40.2617130, -111.6773990, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (118, 4, 'https://www.facebook.com/groups/507726149334644/', 'New Mexico', 35.0659730, -106.6223140, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (119, 5, 'https://www.facebook.com/groups/CentralCaliSmash/', 'CA - Central Cali', 36.6331620, -119.7290040, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (120, 5, 'http://www.facebook.com/groups/276813632366412/', 'CA - NorCal', 37.7446570, -122.4371340, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (121, 5, 'https://www.facebook.com/groups/NorcalBrawl/', 'CA - NorCal', 37.3133830, -121.8988040, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (122, 5, 'https://www.facebook.com/groups/700200659991734/', 'CA - NorCal', 37.3308570, -121.8905640, 4, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (123, 5, 'https://www.facebook.com/groups/SantaCruzMelee/', 'CA - Santa Cruz', 36.9696440, -122.0224000, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (124, 5, 'https://www.facebook.com/groups/124711994367202/', 'CA - Berkeley', 37.8715930, -122.2727470, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (125, 5, 'https://www.facebook.com/groups/251905601637936/', 'CA - Humboldt', 40.7450050, -123.8695090, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (126, 5, 'https://www.facebook.com/groups/479162355483578', 'CA - Orange County', 33.7174710, -117.8311430, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (127, 5, 'https://www.facebook.com/groups/78151322382/', 'CA - San Diego', 32.7157380, -117.1610840, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (128, 5, 'http://www.facebook.com/groups/358902214188040/', 'CA - Santa Barbara', 34.4208310, -119.6981900, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (129, 5, 'https://www.facebook.com/groups/593635670694883/', 'CA - SoCal', 34.0344530, -118.4710690, 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (130, 5, 'http://www.facebook.com/groups/368704663144095/', 'CA - SoCal', 34.0299000, -118.2568360, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (131, 5, 'https://www.facebook.com/groups/SSBBsocal/', 'CA - SoCal', 34.2027160, -118.5699460, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (132, 5, 'https://www.facebook.com/groups/SSBPMsocal/', 'CA - SoCal', 33.9205720, -117.4108890, 4, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (133, 5, 'https://www.facebook.com/groups/611100575632206/', 'CA - South Bay', 37.3395920, -121.9235230, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (134, 5, 'https://www.facebook.com/groups/480597648717885/', 'CA - Thousand Oaks', 34.1705610, -118.8375940, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (135, 5, 'https://www.facebook.com/groups/MELEE702/', 'Nevada - Las Vegas', 36.1699410, -115.1398300, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (136, 5, 'https://www.facebook.com/groups/BRAWL702/', 'Nevada - Las Vegas', 36.1728030, -115.2095030, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (137, 5, 'https://www.facebook.com/groups/702PROJECTM/', 'Nevada - Las Vegas', 36.1683680, -115.0968930, 4, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (138, 5, 'https://www.facebook.com/groups/619057094778540/', 'Nevada - Reno', 39.5296330, -119.8138030, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (139, 5, 'https://www.facebook.com/groups/641344915919224/', 'Sacramento Smash', 38.5815720, -121.4944000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (140, 5, 'https://www.facebook.com/groups/245900615456533/', 'Official Washington Melee', 47.6000000, -122.3320000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (141, 5, 'https://www.facebook.com/groups/642114992487346/', 'Irvine', 33.6839470, -117.7946940, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (142, 5, 'https://www.facebook.com/groups/340535089298820/', 'Portland', 45.5234520, -122.6762070, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (143, 5, 'https://www.facebook.com/groups/283358348346303/', 'Eugene', 44.0520690, -123.0867540, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (144, 5, 'https://www.facebook.com/groups/224872027544762/', 'Corvallis', 44.5645660, -123.2620440, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (145, 5, 'https://www.facebook.com/groups/SCVSSBM/ ', 'Santa Clarita Valley', 34.3796510, -118.5305980, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (146, 1, 'https://www.facebook.com/groups/WorcesterSmashBros/', 'Worcester', 42.2625930, -71.8022930, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (147, 4, 'https://www.facebook.com/groups/350398944989752/', 'DFW', 32.7554880, -97.0000000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (148, 2, 'https://www.facebook.com/groups/731966200177831/', 'Asheville', 35.5950580, -82.5514870, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (149, 1, 'https://www.facebook.com/groups/46230006858/', 'Rochester ', 43.1610300, -77.6109220, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (150, 5, 'https://www.facebook.com/groups/790683467608502/', 'Fremont', 37.5482700, -121.9885720, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (151, 5, 'https://www.facebook.com/groups/251629451659962/', '<NAME>', 35.2827520, -120.6596160, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (152, 3, 'https://www.facebook.com/groups/124366774346574/', 'Wichita', 37.6888890, -97.3361110, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (153, 5, 'https://www.facebook.com/groups/everythingsmash/', 'CA - VENTURA COUNTY', 34.2685660, -119.2284390, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (154, 4, 'https://www.facebook.com/groups/GAMelee/', 'Atlanta', 33.7489950, -84.3879820, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (155, 5, 'https://www.facebook.com/groups/1419390711611336/', 'High Desert', 35.1440470, -106.4869710, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (156, 5, 'https://www.facebook.com/groups/619057094778540/', 'Reno', 39.5296330, -119.8138030, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (157, 5, 'https://www.facebook.com/groups/707melee/', '707', 38.2918590, -122.4580360, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (158, 3, 'https://www.facebook.com/groups/KyOhWVa.Smash/', '<NAME>', 38.5367470, -82.6829410, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (159, 2, 'https://www.facebook.com/groups/235912859946393', 'Buford', 34.1206560, -84.0043510, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (160, 3, 'https://www.facebook.com/groups/230511403809562/', 'Third Lake', 42.3739110, -88.0109120, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (161, 5, 'https://www.facebook.com/groups/279945308796732/', 'Long Beach', 33.7700500, -118.1937390, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (162, 1, 'https://www.facebook.com/groups/417873421648323/', 'Bedford, MA', 42.4906230, -71.2760090, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (163, 2, 'https://www.facebook.com/groups/159610307409216/', 'Dothan', 31.2232310, -85.3904890, 4, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (164, 5, 'https://www.facebook.com/groups/EWASmashBros/', 'Eastern Washington', 47.6520000, -117.4330000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (165, 6, 'https://www.facebook.com/groups/calgarysmash/', 'Calgary Smash Brothers Community', 51.0780000, -114.1340000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (166, 6, 'https://www.facebook.com/groups/edmontonsmash/', 'Edmonton Smash Bros Community', 53.5320000, -113.4900000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (167, 1, 'https://www.facebook.com/groups/212152128989881/', 'Smash Bros. at William & Mary', 37.2730000, -76.7140000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (168, 6, 'https://www.facebook.com/groups/SmashUK/', 'Smash UK', 51.4540000, -0.0680000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (169, 6, 'https://www.facebook.com/groups/614361821964340/', 'Solent Smash', 50.9030000, -1.3980000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (170, 6, 'https://www.facebook.com/groups/674542725954277/', 'Asker/Bærum Smash', 59.8630000, 10.4860000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (171, 5, 'http://smashboards.com/threads/osc-oregon-players-events-all-the-info-you-need.66978/', 'Oregon Smash Community', 44.0390000, -123.0760000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (172, 6, 'https://www.facebook.com/groups/194535274054492/?fref=ts', 'Smash Scotland', 55.8740000, -4.2340000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (173, 6, 'https://www.facebook.com/groups/SmashMeleeOntario/', 'GTA (Greater Toronto Area) Smash', 43.6450000, -79.3940000, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (174, 1, 'https://www.facebook.com/groups/TheBCSmashCommunity/', 'Vancouver Smash Group', 49.2700000, -123.1170000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (175, 5, 'https:/www.facebook.com/groups/TemeculaSSBM/', 'Temecula Melee', 33.5460000, -117.1390000, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (176, 1, 'https:/www.facebook.com/groups/630453227015754/', 'Midlands Smash', 52.6270000, -1.1220000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (177, 6, 'https:/www.facebook.com/groups/ssbmtl/', 'Montreal Melee', 45.4990000, -73.5660000, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (178, 5, 'https:/www.facebook.com/groups/160709990614463/', 'Melee players in Davis who actually still pl', 38.5430000, -121.7540000, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (179, 3, 'www.facebook.com/groups/310359889094549/', 'Montana Smash', 46.5840000, -112.8500000, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (180, 1, 'www.facebook.com/groups/1480028002218278/', '<NAME>', 42.6020000, -76.1860000, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (181, 1, 'www.facebook.com/groups/CornellSmash/', '<NAME> [the old Facebook listing for ', 42.4470000, -76.4900000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (182, 6, 'www.facebook.com/groups/108829072557656/', '<NAME>', -15.8150000, -47.8560000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (183, 1, 'www.facebook.com/groups/VermontMelee', '<NAME>', 44.4750000, -73.2060000, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (184, 6, 'www.facebook.com/groups/315598801891025/', '<NAME>', 45.3970000, -75.6660000, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (185, 3, 'www.facebook.com/groups/PlattevilleSmashBros/', 'Platteville Smash Bros.', 42.7330000, -90.4870000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (186, 5, 'www.facebook.com/groups/centralwashingtonsmash/', 'Central Washington Super Smash Bros', 47.4310000, -120.3370000, 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (187, 5, 'www.facebook.com/groups/centralwashingtonsmash/', 'Central Washington Smash', 47.4160000, -120.2960000, 4, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (188, 1, 'www.facebook.com/groups/SCPASmash', 'South Central PA Smash', 40.1520000, -76.5920000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (189, 1, 'm.facebook.com/groups/500077296805692/?refsrc=http%3A%2F%2Fwww.reddit.com%2Fr%2Fsmashbros%2Fwiki%2Ffacebook&refid=9&_rdr#_=_', 'Northeast PA Competitive Smash ', 40.8720000, -75.3440000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (190, 1, 'www.facebook.com/groups/SmashWichita/', 'Super Smash Bros. 4 Wichita', 37.6889000, -97.3361000, 5, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (191, 1, 'www.facebook.com/groups/NEPAsmash/', 'Northeast PA Competitive Smash', 41.2750000, -75.7890000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (192, 2, 'www.facebook.com/groups/604473126274663/', 'Memphis Area Smash', 35.1380000, -90.0710000, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (193, 2, 'www.facebook.com/groups/604473126274663/805739082814732/?notif_t=group_activity', 'Memphis Area Smash', 35.1430000, -90.0530000, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (194, 6, 'https://www.facebook.com/groups/537230349688495/', 'Smash NL', 52.3890000, 4.9110000, 2, '2016-02-02 03:17:39', '2016-02-02 03:17:39'), (195, 6, 'http://facebook.com/groups/meleegdl', 'Smash Bros. Melee Guadalajara', 20.6720000, -103.3890000, 1, '2016-02-02 03:17:51', '2016-02-02 03:17:51'), (196, 4, 'https://www.facebook.com/groups/1392852414305170/', 'West Texas Smash Bros', 32.2500000, -101.4670000, 2, '2016-02-02 03:17:54', '2016-02-02 03:17:54'), (197, 1, 'https://www.facebook.com/groups/ssb4tr', 'SSBTR', 46.3600000, -72.5710000, 5, '2016-02-02 03:17:57', '2016-02-02 03:17:57'), (198, 2, 'https://www.facebook.com/groups/280251925445617/', 'Knoxville', 35.9600000, -83.9790000, 2, '2016-02-02 03:17:59', '2016-02-02 03:17:59'), (199, 2, 'https://www.facebook.com/groups/495161043926025/', 'Chattanooga', 35.0120000, -85.3200000, 2, '2016-02-02 03:18:01', '2016-02-02 03:18:01'), (200, 1, 'https://www.facebook.com/groups/CornellSmash/', '<NAME>', 42.4450000, -76.4830000, 5, '2016-02-02 03:18:03', '2016-02-02 03:18:03'), (201, 1, 'https://www.facebook.com/groups/CornellSmash/', '<NAME>', 42.4440000, -76.4840000, 2, '2016-02-02 03:18:06', '2016-02-02 03:18:06'), (202, 1, 'https://www.facebook.com/groups/CornellSmash/', '<NAME>', 42.4450000, -76.4830000, 4, '2016-02-02 03:18:07', '2016-02-02 03:18:07'), (203, 1, 'https://www.facebook.com/groups/PghNeohSmash4/', 'Pittsburgh/Northeast Ohio Smash 4', 40.4290000, -79.9870000, 5, '2016-02-02 03:18:10', '2016-02-02 03:18:10'), (204, 1, 'www.facebook.com/groups/HYPECENTRAL', 'HYPECENTRAL - Melee & Sm4sh weekly tournamen', 43.8070000, -79.4220000, 2, '2016-02-02 03:18:30', '2016-02-02 03:18:30'), (205, 6, 'www.facebook.com/groups/HYPECENTRAL', 'HYPECENTRAL - Melee & Sm4sh weekly tournamen', 43.8070000, -79.4220000, 5, '2016-02-02 03:18:31', '2016-02-02 03:18:31'), (206, 1, '', 'Grande Prairie Smash Bros Community ', 55.1850000, -118.8120000, 2, '2016-02-02 03:18:36', '2016-02-02 03:18:36'), (207, 1, 'https://m.facebook.com/groups/395973923931639/?refsrc=http%3A%2F%2Fm.reddit.com%2Fr%2Fsmashbros%2Fwiki%2Ffacebook', 'Grande Prairie Smash Bros Community ', 55.1630000, -118.8120000, 2, '2016-02-02 03:18:38', '2016-02-02 03:18:38'), (208, 1, 'https://www.facebook.com/groups/sjsmash/', 'South Jersey Smash', 39.4880000, -75.0160000, 5, '2016-02-02 03:18:39', '2016-02-02 03:18:39'), (209, 1, 'https://www.facebook.com/groups/sjsmash/', 'South Jersey Smash', 39.4850000, -75.0160000, 2, '2016-02-02 03:18:40', '2016-02-02 03:18:40'), (210, 6, 'https://www.facebook.com/groups/1403141159988467/', 'Jupiter Smash', 41.9030000, 12.5050000, 5, '2016-02-02 03:18:42', '2016-02-02 03:18:42'), (211, 6, 'https://www.facebook.com/smashgofsg/', 'Singapore', 1.3580000, 103.8600000, 5, '2016-02-02 03:18:43', '2016-02-02 03:18:43'), (212, 1, '', 'Capital region smash', 42.9970000, -73.7810000, 2, '2016-02-02 03:18:44', '2016-02-02 03:18:44'), (213, 3, 'Facebook.com/groups/siouxcitysmash', 'Sioux City Smash', 42.5000000, -96.4060000, 2, '2016-02-02 03:18:46', '2016-02-02 03:18:46'), (214, 5, '', '<NAME>', 37.6510000, -121.0100000, 2, '2016-02-02 03:18:47', '2016-02-02 03:18:47'), (215, 1, 'https://www.facebook.com/groups/projectmontario/', 'Ontario', 43.8350000, -80.3320000, 1, '2016-02-02 03:18:48', '2016-02-02 03:18:48'), (216, 1, 'Facebook.com/Modestomelee', '<NAME>', 37.6510000, -121.0100000, 2, '2016-02-02 03:18:49', '2016-02-02 03:18:49'), (217, 3, 'https://www.facebook.com/groups/rockfordsmash/', 'Rockford IL Smash', 42.2660000, -89.1000000, 2, '2016-02-02 03:18:58', '2016-02-02 03:18:58'), (218, 1, '', 'Smash @ Dracut', 42.7390000, -71.4040000, 5, '2016-02-02 03:19:00', '2016-02-02 03:19:00'), (219, 3, 'https://www.facebook.com/groups/836513426404338/', 'Saints Competitive Gaming (S.C.G.)', 43.9810000, -94.6290000, 2, '2016-02-02 03:19:02', '2016-02-02 03:19:02'), (220, 1, 'https://www.facebook.com/groups/odussa/', 'ODU SSA', 36.8870000, -76.3060000, 2, '2016-02-02 03:19:03', '2016-02-02 03:19:03'), (221, 6, 'https://www.facebook.com/groups/smashdojopr/', '<NAME> - <NAME>', 18.2240000, -66.4730000, 5, '2016-02-02 03:19:08', '2016-02-02 03:19:08'), (222, 1, 'https://www.facebook.com/groups/314009222142108/', 'Aurora Smash Heroes', 41.7630000, -88.2190000, 2, '2016-02-02 03:19:12', '2016-02-02 03:19:12'), (223, 6, 'https://www.facebook.com/groups/uwsmashclub/', 'University of Waterloo Smash Club', 43.4720000, -80.5450000, 2, '2016-02-02 03:19:24', '2016-02-02 03:19:24'), (224, 3, 'https://www.facebook.com/groups/541374019328110/', 'SFASU Smash', 31.6210000, -94.6490000, 2, '2016-02-02 03:19:31', '2016-02-02 03:19:31'), (225, 1, 'https://www.facebook.com/groups/219940314699498/', 'Fredonia Smash Club', 42.4480000, -79.2970000, 2, '2016-02-02 03:19:33', '2016-02-02 03:19:33'), (226, 6, 'https://www.facebook.com/groups/133034603414177/', '<NAME>', 31.2030000, -92.4170000, 2, '2016-02-02 03:19:34', '2016-02-02 03:19:34'), (227, 3, 'https://www.facebook.com/NebraskaSmashBros', 'Nebraska', 41.2190000, -96.0430000, 2, '2016-02-02 03:19:42', '2016-02-02 03:19:42'), (228, 6, 'https://m.facebook.com/ggbergen/', 'GG Bergen', 60.3830000, 5.2990000, 2, '2016-02-13 03:22:29', '2016-02-13 03:22:29'), (229, 6, 'https://www.facebook.com/groups/smashbrositalia/', 'Super Smash Bros. Melee Italia', 45.4670000, 9.1900000, 2, '2016-02-13 03:22:34', '2016-02-13 03:22:34'), (230, 6, 'http://facebook.com/groups/Smashatlan/', 'Smash Melee Mazatlán', 23.2350000, -106.4230000, 2, '2016-02-13 03:22:37', '2016-02-13 03:22:37'), (231, 4, 'https://www.facebook.com/groups/1392852414305170/', 'West Texas Smash Bros', 32.2500000, -101.4780000, 5, '2016-02-13 03:22:40', '2016-02-13 03:22:40'), (232, 5, 'https://www.facebook.com/groups/970720402987175/', 'Salinas Super Smash Bros Melee', 36.6680000, -121.6570000, 2, '2016-02-13 03:22:50', '2016-02-13 03:22:50'), (233, 1, 'https://www.facebook.com/groups/victoriasmash/', 'Uvic Smash Bros. Club', 48.4600000, -123.3070000, 2, '2016-02-13 03:22:55', '2016-02-13 03:22:55'), (234, 5, 'https://www.facebook.com/groups/602316896500737/', 'North Vancouver Island Smash Community', 49.1640000, -123.9390000, 2, '2016-02-13 03:22:57', '2016-02-13 03:22:57'), (235, 1, 'https://www.facebook.com/groups/1524716234455288/', 'American University Smash Crew', 38.9390000, -77.0890000, 2, '2016-02-13 03:23:04', '2016-02-13 03:23:04'), (236, 6, 'https://www.facebook.com/groups/545296702253114/', 'Smash Barcelona', 41.3790000, 2.1660000, 2, '2016-02-13 03:23:09', '2016-02-13 03:23:09'), (237, 1, 'https://www.facebook.com/groups/1524716234455288/', 'American University Smash', 38.9370000, -77.0890000, 2, '2016-02-13 03:23:13', '2016-02-13 03:23:13'), (238, 2, 'https://www.facebook.com/groups/NLandLSC/', 'Nuevo Laredo and Laredo Smash Community', 27.5110000, -99.4800000, 5, '2016-03-02 05:03:59', '2016-03-02 05:03:59'), (239, 6, 'https://facebook.com/groups/MeleeGDL/', 'Smash Bros. Melee Guadalajara', 20.6720000, -103.3890000, 2, '2016-03-02 05:04:01', '2016-03-02 05:04:01'), (240, 3, 'https://facebook.com/groups/916631871764591/', 'Santa Fe Smash Group', 35.6630000, -105.9760000, 5, '2016-04-12 00:38:56', '2016-04-12 00:38:56'), (241, 6, 'https://www.facebook.com/groups/343477779066696/?fref=ts', 'Le French Melee', 48.8940000, 2.3570000, 2, '2016-04-12 00:39:01', '2016-04-12 00:39:01'), (242, 1, 'https://www.facebook.com/groups/santamariasmash', 'Santa Maria', 34.9230000, -120.4240000, 2, '2016-04-12 00:39:08', '2016-04-12 00:39:08'), (243, 6, 'https://www.facebook.com/groups/GreekSmashBrosMelee', 'Greek Athens Melee Scene', 37.9840000, 23.7290000, 2, '2016-06-06 23:48:55', '2016-06-06 23:48:55'), (244, 1, 'https://www.facebook.com/groups/809334862467449/', 'EWU Smash', 47.4880000, -117.5860000, 2, '2016-06-06 23:48:58', '2016-06-06 23:48:58'), (245, 1, 'https://www.facebook.com/groups/1386598461656385/', 'Smash at High Tides', 38.2880000, -76.4870000, 5, '2016-06-06 23:49:00', '2016-06-06 23:49:00'), (246, 1, 'https://www.facebook.com/groups/211269812393715/', 'Fargo/Moorhead Smash Club', 46.8620000, -96.8120000, 2, '2016-06-06 23:49:15', '2016-06-06 23:49:15'), (247, 6, 'https://www.facebook.com/groups/smashBXL', 'Smash BXL', 50.8550000, 4.3230000, 2, '2016-06-06 23:49:16', '2016-06-06 23:49:16'), (248, 1, 'https://www.facebook.com/groups/115483696626/', '<NAME>', 38.3630000, -75.5940000, 2, '2016-06-06 23:49:36', '2016-06-06 23:49:36'), (249, 6, 'https://www.facebook.com/groups/218742101607432/', '<NAME>', 46.5590000, 8.0860000, 2, '2016-06-06 23:50:00', '2016-06-06 23:50:00'), (250, 6, 'https://www.facebook.com/groups/SMASHLATAM/', '<NAME>', 8.4070000, -73.6520000, 2, '2016-06-06 23:50:02', '2016-06-06 23:50:02'), (251, 6, 'https://www.facebook.com/groups/SMASHLATAM/', '<NAME>', 6.8390000, -74.3550000, 4, '2016-06-06 23:50:06', '2016-06-06 23:50:06'), (252, 6, 'https://www.facebook.com/groups/SMASHLATAM/', '<NAME>', 7.1880000, -74.1800000, 1, '2016-06-06 23:50:07', '2016-06-06 23:50:07'), (253, 6, 'https://www.facebook.com/groups/SMASHLATAM/', '<NAME>', 6.6650000, -74.8830000, 5, '2016-06-06 23:50:07', '2016-06-06 23:50:07'), (254, 3, 'https://www.facebook.com/groups/568696659868188/', '<NAME>', 37.9600000, -91.7710000, 2, '2016-11-12 09:14:14', '2016-11-12 09:14:14'), (255, 2, 'http://www.facebook.com/groups/1071781742911676/', 'Hub City Smash', 35.6130000, -88.7860000, 2, '2016-11-12 09:14:16', '2016-11-12 09:14:16'), (256, 2, 'http://www.facebook.com/groups/1071781742911676/', 'Hub City Smash 4', 35.6390000, -88.7860000, 5, '2016-11-12 09:14:17', '2016-11-12 09:14:17'), (257, 6, 'https://www.facebook.com/groups/smashcn/', 'SmashCN', 31.2790000, 121.4980000, 5, '2016-11-12 09:14:19', '2016-11-12 09:14:19'), (258, 3, 'https://www.facebook.com/groups/SoUSmash/', 'Southern Utah Smash', 37.0870000, -113.5700000, 2, '2017-01-09 12:16:51', '2017-01-09 12:16:51'), (259, 1, 'https://www.facebook.com/groups/585036658265765/', 'Northern Louisiana Smash', 32.5380000, -93.7480000, 2, '2017-08-14 00:08:57', '2017-08-14 00:08:57'); DROP TABLE IF EXISTS `migrations`; CREATE TABLE `migrations` ( `migration` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; INSERT INTO `migrations` (`migration`, `batch`) VALUES ('2014_10_12_000000_create_users_table', 1), ('2014_10_12_100000_create_password_resets_table', 1), ('2015_06_03_054529_create_charinfo_table', 1), ('2015_06_03_054529_create_chartech_table', 1), ('2015_06_03_054529_create_framedatajson_table', 1), ('2015_06_03_054529_create_framedatamoves_table', 1), ('2015_06_03_054529_create_friends_table', 1), ('2015_06_03_054529_create_gifs_table', 1), ('2015_06_03_054529_create_gifvotes_table', 1), ('2015_06_03_054529_create_groups_table', 1), ('2015_06_03_054529_create_locals_table', 1), ('2015_06_03_054529_create_moves_table', 1), ('2015_06_03_054529_create_submissions_table', 1), ('2015_06_03_054529_create_submissionsgroup_table', 1), ('2015_06_03_054529_create_submissionstech_table', 1), ('2015_06_03_054529_create_submissionstournament_table', 1), ('2015_06_03_054529_create_submissionsvod_table', 1), ('2015_06_03_054529_create_techs_table', 1), ('2015_06_03_054529_create_throttle_table', 1), ('2015_06_03_054529_create_upcoming_table', 1), ('2015_06_03_054529_create_userinfo_table', 1), ('2015_06_03_054529_create_users_groups_table', 1), ('2015_06_03_054529_create_vods_table', 1), ('2015_06_03_054529_create_vodvotes_table', 1), ('2015_09_24_174220_create_players_table', 1), ('2015_09_27_011424_create_guides_table', 1), ('2015_10_06_004309_entrust_setup_tables', 1), ('2015_10_21_060211_create_attacks_table', 1), ('2015_11_12_012311_guidebody', 1), ('2015_11_12_014352_create_guide_bodies_table', 1); DROP TABLE IF EXISTS `moves`; CREATE TABLE `moves` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(35) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; INSERT INTO `moves` (`id`, `name`) VALUES (1, 'B Moves'), (2, 'Jab'), (3, 'Tilt'), (4, 'Smash'), (5, 'Aerials'), (6, 'Ground Options'), (7, 'Defensive Options'); DROP TABLE IF EXISTS `password_resets`; CREATE TABLE `password_resets` ( `email` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `token` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', KEY `password_resets_email_index` (`email`), KEY `password_resets_token_index` (`token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; DROP TABLE IF EXISTS `permission_role`; CREATE TABLE `permission_role` ( `permission_id` int(10) unsigned NOT NULL, `role_id` int(10) unsigned NOT NULL, PRIMARY KEY (`permission_id`,`role_id`), KEY `permission_role_role_id_foreign` (`role_id`), CONSTRAINT `permission_role_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `permission_role_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; DROP TABLE IF EXISTS `permissions`; CREATE TABLE `permissions` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `display_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `description` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), UNIQUE KEY `permissions_name_unique` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; DROP TABLE IF EXISTS `players`; CREATE TABLE `players` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `sponsor` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `rank` int(11) NOT NULL, `garpr` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `region` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; INSERT INTO `players` (`id`, `name`, `sponsor`, `desc`, `rank`, `garpr`, `region`) VALUES (1, 'PewPewU', 'CLG', '', 10, '53c646848ab65f6d52f2e09a', 'NorCal'); DROP TABLE IF EXISTS `role_user`; CREATE TABLE `role_user` ( `user_id` int(10) unsigned NOT NULL, `role_id` int(10) unsigned NOT NULL, PRIMARY KEY (`user_id`,`role_id`), KEY `role_user_role_id_foreign` (`role_id`), CONSTRAINT `role_user_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `role_user_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; INSERT INTO `role_user` (`user_id`, `role_id`) VALUES (1, 1), (1, 2), (2, 2); DROP TABLE IF EXISTS `roles`; CREATE TABLE `roles` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `display_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `description` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), UNIQUE KEY `roles_name_unique` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; INSERT INTO `roles` (`id`, `name`, `display_name`, `description`, `created_at`, `updated_at`) VALUES (1, 'moderator', 'moderator', 'For Moderating', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (2, 'contributor', 'contributor', 'For editing frame data', '0000-00-00 00:00:00', '0000-00-00 00:00:00'); DROP TABLE IF EXISTS `submissions`; CREATE TABLE `submissions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `url` varchar(300) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `source` varchar(30) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `description` varchar(300) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `pageid` int(11) NOT NULL, `dataid` int(11) NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; DROP TABLE IF EXISTS `submissionsgroup`; CREATE TABLE `submissionsgroup` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(130) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `facebook` varchar(290) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `latitude` double NOT NULL, `longitude` double NOT NULL, `region` int(11) NOT NULL DEFAULT '0', `game` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; DROP TABLE IF EXISTS `submissionstech`; CREATE TABLE `submissionstech` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(90) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `description` varchar(650) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `ssbwiki` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; DROP TABLE IF EXISTS `submissionstournament`; CREATE TABLE `submissionstournament` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(90) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `fb_id` int(11) NOT NULL, `bracket` varchar(150) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `start` date NOT NULL, `end` date NOT NULL, `first` varchar(90) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `second` varchar(90) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `third` varchar(90) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `stream` varchar(45) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `attending` int(11) NOT NULL, `location` varchar(50) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `host` varchar(65) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; DROP TABLE IF EXISTS `submissionsvod`; CREATE TABLE `submissionsvod` ( `id` int(11) NOT NULL AUTO_INCREMENT, `url` varchar(260) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `title` varchar(130) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `credit` varchar(160) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `typeid` int(11) NOT NULL, `dataid` int(11) NOT NULL, `description` varchar(260) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; DROP TABLE IF EXISTS `techs`; CREATE TABLE `techs` ( `id` int(11) NOT NULL AUTO_INCREMENT, `tech` varchar(32) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `description` varchar(400) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `smashwiki` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `inputs` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; INSERT INTO `techs` (`id`, `tech`, `description`, `smashwiki`, `inputs`, `created_at`, `updated_at`) VALUES (1, 'Wave Dash', 'A wavedash is a technique in Super Smash Bros. Melee that is performed by air dodging diagonally into the ground, causing the character to slide a short distance.', 'http://www.ssbwiki.com/wavedash', '(Jump)->immediate (Diagonal Air Dodge)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (2, 'Multi Shine', 'A double shine (or multi shine, triple shine, etc.) is the repeated use of Reflector as an attack by either Fox or Falco. It is performed by jump-cancelling a Reflector and using a second Reflector just after leaving the ground, timed so that Fox or Falco will quickly land and allow the pattern to be repeated.', 'http://www.ssbwiki.com/Double_shine', '(Down + B) , (Jump) , (Down + B)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (4, 'L Cancel', 'A technique that allows characters to act faster than usual when landing in the middle of an aerial attack.', 'http://www.ssbwiki.com/L-canceling', '(L or R or Z) within 7 frames of landing ', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (5, 'Short hop', 'The act of pressing the jump button and letting go before the character leaves the ground. This will result in a jump that is lower than a normal jump.', 'http://www.ssbwiki.com/Short_hop', '(QUICK Jump)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (6, 'Ledge Hop', 'Edge hopping is a technique used to return on-stage from the ledge. It entails dropping from the ledge (by pressing either \"back\" or \"down\" on the control stick) and immediately double-jumping.', 'http://www.ssbwiki.com/Edge_hopping', '(Down or Back) , (Jump)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (7, 'Pivot', 'Using the frame at which a character turns during a dash-dance, in which any normal ground options are available as if the character were standing still.', 'http://www.ssbwiki.com/Pivoting', '(Left) , (Right) or vice versa.', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (8, 'Wall Jump', 'A technique some characters can use to jump away from walls. Captain Falcon, Falco, Fox, Mario, Pichu, Samus, Young Link, and Sheik can all wall jump.', 'http://www.ssbwiki.com/Wall_jump', '(Away from wall) upon touching.', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (10, 'Crouch Cancel', 'By crouching before getting hit by an attack, some aspects of the attack will be weakened. Both knockback and hitstun will be lessened.', 'http://www.ssbwiki.com/Crouch_cancel', '(CROUCH) before impending attack.', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (11, 'Dash Dance', 'Dash-dancing is performed by tapping the analog stick left and right rapidly while on the ground, effectively dashing to the left and to the right alternately.', 'http://www.ssbwiki.com/Dash-dancing', '(Left), (Right)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (12, 'Meteor Cancel', 'Meteor cancelling is the act of instantly negating the downwards knockback of a meteor smash by jumping or using an up b after being hit.', 'http://www.ssbwiki.com/Meteor_smash#Meteor_cancelling', '(Jump or Up B) after being hit', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (13, 'Ledge Stall', 'A technique that allows your character to re-grab the ledge with slight invulnerability.', 'http://www.ssbwiki.com/Ledgestall', '(Character Dependent)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (16, 'Wall Tech', 'The act of teching off of a wall during hitstun', 'http://www.ssbwiki.com/tech#Wall_tech', '(L or R) before landing in falling animation', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (17, 'Jump Canceled Grab', 'Cancelling a jump before grabbing allows your character to perform a standing grab. This is a vital technique when running in for a grab because it replaces the slow dash-grab with a quicker standing grab.', 'http://www.ssbwiki.com/Jump-canceled_grab', '(Jump) followed immediately by (Z)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (18, 'Jump Canceled Up Smash', 'A jump-canceled up smash (JC up-smash) is a technique where a character interrupts a dash or run with a jump, which itself is then jump-canceled with an up-smash.', '', '(Jump) followed immediately by (Up Smash)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (19, 'Tech', 'Used to quickly recover from a falling animation before landing. You can choose to tech neutral, right roll, or left roll.', 'http://www.ssbwiki.com/tech', '(L or R or Z) upon landing', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (20, 'Directional Influence', 'Changing the angle of trajectory with the analog stick while being hit.', 'http://www.ssbwiki.com/Directional_influence', '(Direction)[hold] after being hit', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (21, 'Wave Land', 'Wavelands are wavedashes performed when jumping onto platforms to increase mobility across the stage. It can also be used when falling from an empty hop to fake out or bait opponents.', 'http://www.ssbwiki.com/wavedash#Wavelanding', '(wavedash before landing)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (22, 'Short Hop Laser', 'Shorthop lasers take advantage of canceling the ending lag of Falco\'s lasers by landing. By short hopping, firing a laser, and fast falling, Falco can fire lasers at a much faster rate than when standing. Combining this added mobility while firing lasers will help lock down and stop an opponents approach. ', 'http://supersmashbros.wikia.com/wiki/Short_hop_laser', '(Jump), (Fast Fall), (Laser)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (23, 'Power Shielding', ' Using your shield against projectiles right when an attack\'s hitbox is about to connect will reflect the projectile in the opposite direction, dealing 50% damage and knockback', 'http://www.ssbwiki.com/Powershield', '(L or R) right before an attack', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (24, 'Float Canceling', 'Float canceling is a bug relating to floating. If Peach uses an aerial attack while floating, landing during the attack (whether still floating or not) will skip landing lag entirely and result in a normal landing instead.', 'http://www.ssbwiki.com/Floating#Float_canceling', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (25, 'Jab Reset', 'Jab resets is a technique that is performed by jabbing an opponent while they are knocked down. The jab will force the opponent to stand up, where the opponent can then hit them with almost any move they desire', 'http://www.ssbwiki.com/jab_reset', '(a)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (26, 'Tech Chasing', 'tech chasing is the act of following your opponent after a knockdown. There are three options of techs, left roll, right roll, and neutral. Tech chasing is the act of punishing either of the three options with an attack', 'http://www.ssbwiki.com/Tech-chasing', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (27, 'Wave Shine', 'A wave shine is a wavedash done immediately out of a shine. It can be done by Fox and Falco.', 'http://www.ssbwiki.com/Waveshine', '(Down + B) followed by (Wave Dash)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (28, 'Moonwalk', 'A technique that allows for the character to move in the opposite direction while dashing. This move can be done by all characters, and is often used to gain backwards momentum for a jump. If done correctly, it can be crucial for edgeguarding and ledge grabbing.\n', 'http://www.ssbwiki.com/Moonwalk', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (31, 'Shield Drop', 'A technique that allows for your character to smoothly fall through a soft platform while shielding', 'http://www.ssbwiki.com/Shield_platform_dropping', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (33, 'Aerial Interrupt', 'Use an aerial attack in a way that causes you to land on a platform which would not have happened without the aerial attack. The reason is a downward shift of your character\'s environment collision box (ECB) bound to the attack or, more specifically, your character\'s bone alignment on a given frame.', 'www.ssbwiki.com/Aerial_interrupt', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (34, 'Edge Hog', 'Grabbing the ledge so other characters can\'t grab it.', 'www.ssbwiki.com/Edge-hogging', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (35, 'Run Cancel', 'During a character\'s running animation, holding down will cancel the run into a crouch.', 'www.ssbwiki.com/Dash-canceling#Crouching_.28Melee_only.29', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (36, 'V Cancel', 'V-canceling is the act of reducing the X & Y knockback velocity of a received attack by 5%. The player receiving the attack must be in the air when the collision between the hitbox and hurtbox occurs. The receiving player must press the L or R button fully within 3 frames of the attack.', 'http://www.ssbwiki.com/V-cancelling', '(L or R) within 3 frames', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (37, 'Sacred Combo', 'A Captain Falcon combo performed by knocking an opponent off-stage, and following it up with a mid-air Falcon Punch. A true Sacred Combo risks the life of the Falcon player, as they must jump so far off the ledge to land the Falcon Punch that they risk not being able to make it back to stage. ', 'http://www.ssbwiki.com/Falcon_Punch#In_Super_Smash_Bros._Melee', '', '2015-11-19 03:08:25', '2015-11-19 03:08:25'), (38, 'Fox Trot', 'A technique in all four smash games that consists of moving along the ground by repeatedly executing characters\' initial dash animation, as opposed to using their full dash. With some characters, the initial dash animation is faster than the full dash animation, which makes running faster with Fox Trotting as opposed to just dashing.', 'http://www.ssbwiki.com/Fox-trotting', '', '2015-11-19 03:14:46', '2015-11-19 03:14:46'), (39, 'Boost Grab', 'Boost grabbing is a technique in which the momentum from a character\'s dash attack is transferred into a dash grab, resulting in a longer ranged dash grab. To perform the boost grab, the player must first dash. Then, press the attack button while dashing to perform a dash attack, then press the grab button immediately within the first frame to grab. If done correctly, the dash attack will be cance', 'http://www.ssbwiki.com/Boost_grab', '', '2015-11-19 03:24:58', '2015-11-19 03:24:58'), (40, 'Wobbling', 'A technique that allows the Ice Climber to keep another player in an indefinite grab. The tech is performed by getting one Ice Climber to grab the opponent and getting the cpu ice climber to f-tlit or d-tilt the opponent. This is a majority of the reason Ice Climbers are considered high tier because one grab under the right conditions can lead to death.', 'https://www.ssbwiki.com/wobbling', '', '2017-11-30 05:22:41', '2017-11-30 05:22:41'); DROP TABLE IF EXISTS `throttle`; CREATE TABLE `throttle` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `ip_address` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `attempts` int(11) NOT NULL DEFAULT '0', `suspended` tinyint(1) NOT NULL DEFAULT '0', `banned` tinyint(1) NOT NULL DEFAULT '0', `last_attempt_at` datetime DEFAULT NULL, `suspended_at` datetime DEFAULT NULL, `banned_at` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `fk_user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; DROP TABLE IF EXISTS `upcoming`; CREATE TABLE `upcoming` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(45) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `fb_id` varchar(130) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `bracket` varchar(250) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `class` varchar(35) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT 'event-info', `start` date NOT NULL, `end` date NOT NULL, `first` varchar(90) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `second` varchar(90) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `third` varchar(90) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `stream` varchar(90) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `attending` int(11) NOT NULL, `location` varchar(90) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `host` varchar(90) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `vods` varchar(15) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; DROP TABLE IF EXISTS `userinfo`; CREATE TABLE `userinfo` ( `id` int(11) NOT NULL AUTO_INCREMENT, `image` varchar(130) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `facebook` varchar(90) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `location` varchar(130) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `twitch` varchar(90) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `userid` int(11) NOT NULL, `vod` varchar(130) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `twitter` varchar(90) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `main` int(11) NOT NULL, `sponsor` varchar(90) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `latitude` double NOT NULL, `longitude` int(11) NOT NULL, `friendcode` varchar(12) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `garpr` varchar(90) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `userid` (`userid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; DROP TABLE IF EXISTS `users`; CREATE TABLE `users` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `email` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `password` varchar(60) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `remember_token` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), UNIQUE KEY `users_email_unique` (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; INSERT INTO `users` (`id`, `name`, `email`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES (1, 'Logan', '<EMAIL>', '<PASSWORD>', '<PASSWORD>', '2015-10-09 18:55:55', '2017-08-14 00:09:11'), (2, 'schmoo', '<EMAIL>', '$2y$10$zPbpeUOyFmdoK9d8QxxV.eGSqkWXX1IgHEOLcRG/Flk7C1nyK37zy', NULL, '2015-11-25 22:45:53', '2015-11-25 22:45:53'); DROP TABLE IF EXISTS `users_groups`; CREATE TABLE `users_groups` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `group_id` int(10) unsigned NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; DROP TABLE IF EXISTS `vods`; CREATE TABLE `vods` ( `id` int(11) NOT NULL AUTO_INCREMENT, `url` varchar(260) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `title` varchar(130) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `update_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `score` int(11) NOT NULL, `credit` varchar(160) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `typeid` int(11) NOT NULL, `dataid` int(11) NOT NULL, `submitted_by` varchar(130) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `description` varchar(260) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; INSERT INTO `vods` (`id`, `url`, `title`, `update_date`, `score`, `credit`, `typeid`, `dataid`, `submitted_by`, `description`) VALUES (1, 'RBH4Z_vz1fk', 'Westballz imprisoned by destiny. . . Again', '2015-04-16 12:25:11', 0, 'GRSmash', 3, 0, '', 'RIP Westballz'), (2, 'qUiAZltrWwo', '[Falco] Multi-shine Tutorial - feat. Squid (Advanced Level) - SSBM', '2015-04-16 13:04:50', 0, 'SSBM Tutorials', 1, 0, '', 'A quick tutorial on Multi-shine with Falco'), (4, 'Kr5y0-W9YVo', 'Cort (Marth) vs PC Chris (Fox) 2', '2015-04-16 13:11:56', 0, 'raserucort', 2, 0, '', 'One of the fastest matches in Melee'), (5, 'OSxVR_QGPoI', 'PewFat', '2015-04-13 04:46:02', 0, 'SFAT', 6, 0, '', 'PewPewU and SFAT demonstrating great teams synergy many years ago'), (6, '8orJkb0LtaE', 'Shroomed - \"IM NOT YELLING\" (nsfw)', '2015-04-13 04:50:20', 0, 'ShowDown Smash', 3, 0, '', 'Shroomed going off at a recent \"Get Smashed at the Foundry event\".'), (8, 'JLuFpmoKUVQ', 'Melee Impossible - The Combo Video (TAS)', '2015-04-13 04:29:22', 0, 'antdgar2', 3, 0, '', 'Some insane tool assisted combos'), (9, 'vsr4M6r0B2Q', 'Smash Bros is a Freaking Blast', '2015-04-13 04:35:27', 0, 'The Toasty Knight', 5, 0, '', 'A PewPewU Combo Video'), (10, 'kKsEobD1pew', 'PewPewUniversity - A lesson on Sheild Stops', '2015-04-13 04:46:52', 0, 'PewPewU', 4, 0, '', 'Shield Stop'), (11, 'V3hjjNLCcMQ', 'PewPewUniversity - a lesson on Run Cancels', '2015-04-13 04:46:54', 0, 'pewpewu', 4, 0, '', 'Run Canceling'), (12, 'J_aqH9sJnbU', 'PewPewUniversity - a lesson on pivoting', '2015-04-13 04:05:54', 0, 'PewPewU', 4, 0, '', 'A quick lesson on pivoting by PewPewU'), (13, 'XhujDoRBXeY', 'PewPewUniversity - a lesson on No Impact Landing (NIL)', '2015-04-13 04:06:34', 0, 'PewPewU', 4, 0, '', 'No Impact Landing'), (14, 'ffUQu-lYanE', 'PewPewUniversity - a lesson on Jump Cancels (JC)', '2015-04-13 04:07:25', 0, 'PewPewU', 4, 0, '', 'Use Jump Cancels to speed up your grabs and smash attacks'), (15, 'mMlKbBGPalw', 'PewPewUniversity: a lesson on Applying Jump Cancels', '2015-04-13 04:07:58', 0, 'pewpewu', 4, 0, '', 'A quick tutorial on how to implement Jump Cancels'), (16, 'lFKymA7cOlY', 'PewPewUniversity - a lesson on Ledge Mechanics', '2015-04-13 04:08:49', 0, 'PewPewU', 4, 0, '', 'Learn how to use the ledge to your advantage!'), (17, 'cHdGq9n7euM', 'PewPewUniversity - a lesson on Fox Trot', '2015-04-13 04:09:38', 0, 'PewPewU', 4, 0, '', 'Learn the benefits of using a Fox Trot to properly space your character'), (18, '6NraGXDMuVw', 'PewPewUniversity - a lesson on Cactuar Dash', '2015-04-13 04:12:56', 0, 'PewPewUniversity', 4, 0, '', 'PewPewU demonstrating how to use run canceling to dash efficiently'), (19, 'GyaBMhRquZA', 'PewPewUniversity - a lesson on Edge Cancel', '2015-04-13 04:13:34', 0, 'PewPewU', 4, 0, '', 'Learn how to optimize your aerial attacks with Edge Canceling'), (20, 'aHcobQHiyYU', 'PewPewUniversity: a lesson on Shine Turnaround', '2015-04-13 04:14:12', 0, 'PewPewU', 4, 0, '', 'Learn how to use use Shine to gain advantages as Fox and Falco'), (21, 'FIGE-68RTDo', 'PewPewUniversity - Auto Cancel Aerial', '2015-04-13 04:15:04', 0, 'PewPewU', 4, 0, '', 'Use Auto Canceling to speed up your aerial approach game!'), (22, 'hjHTHYa_x1c', 'PewPewUniversity - Weight Class vs Fall Speed', '2015-04-13 04:15:50', 0, 'PewPewU', 4, 0, '', 'PewPewU describes some game mechanics in great detail! Great for new players.'), (23, 'DNXPMf2UOck', 'PewPewUniversity - Wall Tech', '2015-04-13 04:16:41', 0, 'PewPewU', 4, 0, '', 'Watch and learn how to effectively use a wall to do some stylish things'), (24, '-LdZxzGjywE', 'Hax combo video', '2015-04-13 04:32:48', 0, 'GRsmash', 5, 0, '', 'The top 10 Hax Falcon combos. Enjoy the super fast, technical gameplay.'), (25, 'HfuVQN5cwy0', '[Marth] Neutral Game Tutorial - SSBM', '2015-04-13 04:38:06', 0, 'SSBM Tutorials', 1, 0, '', 'SSBM Tutorials video guide introducing the neutral game.'), (26, '4n4s5yB7ZkE', 'Advanced How To Play (SSBM) Part 1', '2015-04-13 04:39:56', 0, 'Wak017', 1, 0, '', 'A great introduction into Technical SSBM.'), (27, 'xiZLs2doK8E', 'Advanced How To Play (SSBM) Part 2', '2015-04-13 04:40:57', 0, 'Wak017', 1, 0, '', 'Part 2 of the introductory series'), (28, 'PFmGIOcWdsM', 'Advanced How To Play (SSBM) Part 3', '2015-04-13 04:41:35', 0, 'Wak017', 1, 0, '', 'The final installment of this intro series'), (29, 'vXgpGBbh5r8', 'How Fast Is Melee?', '2015-04-13 04:43:15', 0, 'Acryte', 1, 0, '', 'A technique video demonstrating the speed at which Melee can be played'), (30, 's63pPeyWasw', '739 Mew2King Edgeguards (With Marth)', '2015-04-13 04:45:28', 0, '<NAME>', 3, 0, '', 'Enjoy this endless video of edgeguards with Marth, and just maybe you\'ll be able to pull them off when needed'), (31, 'n6vqWxTku8I', 'The Legend of FalcoMaster3000', '2015-04-13 04:48:08', 0, 'Super Smash Bros University', 3, 0, '', 'A masked vigilante showed up at a smash bros meetup with a ski mask and sunglasses. He didn\'t say a word for 9 entire hours, beat everyone there and won the bracket, gave a thumbs up and left without saying a word.'); DROP TABLE IF EXISTS `vodvotes`; CREATE TABLE `vodvotes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `vodid` int(11) NOT NULL, `voterid` int(11) NOT NULL, `direction` tinyint(1) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; INSERT INTO `vodvotes` (`id`, `vodid`, `voterid`, `direction`) VALUES (1, 27, 2, 1), (2, 2, 2, 1), (3, 25, 2, 1), (4, 28, 2, 1), (5, 29, 2, 1), (6, 26, 2, 1), (7, 4, 2, 1), (8, 2, 4, 1), (9, 27, 4, 1), (10, 28, 4, -1), (11, 29, 4, 1); -- 2018-12-10 05:35:14
<filename>app/Resources/test/source.sql -- use doctors; -- -- show tables; -- -- select * from config; -- #situation epidemiologique -- -- select name as label, count(*) as data from consultation group by name; -- -- select distinct city from person; -- -- select * from consultation; -- select count(*) as label from (select id from consultation c where c.type != 'Consultation generale' group by c.person_id)A; -- select * from consultation; -- select id from consultation c where c.type != 'Consultation generale' group by c.person_id; -- SHOW ENGINE INNODB STATUS\G; -- select * from meds; -- update meds set expdate = '2014-09-01 12:36:49' where name ='OxyContin' -- update person set gender = 'Masculin' where gender ='garcon'; -- select gender from person; -- select cnsstype as label, count(*) as data from person group by label; -- select count(*) as data from consultation where motiftype = 'CONSULTATION MEDICALE A LA DEMANDE'; -- select gender as label, count(*) as data from person p inner join consultation c on c.person_id = p.id where motiftype = 'CONSULTATION MEDICALE A LA DEMANDE' group by gender; -- select count(*) as data from person p inner join consultation c on c.person_id = p.id where motiftype = 'CONSULTATION MEDICALE A LA DEMANDE' and resident = true; -- select count(*) as data from person p inner join consultation c on c.person_id = p.id where motiftype = 'CONSULTATION MEDICALE A LA DEMANDE' and resident = true group by gender; -- select count(*) as data from consultation where motiftype = 'EXAMEN MEDICAL SYSTEMATIQUE'; -- select gender as label, count(*) as data from person p inner join consultation c on c.person_id = p.id where motiftype = 'EXAMEN MEDICAL SYSTEMATIQUE' group by gender; -- select count(*) as data from person p inner join consultation c on c.person_id = p.id where motiftype = 'EXAMEN MEDICAL SYSTEMATIQUE' and resident = true; -- select count(*) as data from person p inner join consultation c on c.person_id = p.id where motiftype = 'EXAMEN MEDICAL SYSTEMATIQUE' and resident = true group by gender; -- select count(*) as data from test where hasvisualissue = 1; -- select gender, name as label, count(*) as data from person p inner join consultation c on c.person_id = p.id where type = 'Consultation specialise' group by name, gender; -- select count(*) from consultation where chronic = 1; -- select count(*) from consultation where chronic = 0; -- select infrastructure as label, count(*) as data from consultation where type = 'Consultation specialise' group by label; -- update person set resident = 1; -- select * from meds; -- select fixedvisualissue as label, count(*) as data from test left join consultation c on c.id = test.consultation_id where hasvisualissue = 1 group by fixedvisualissue; use benlogement; SELECT name FROM university;
CREATE PROCEDURE [dbo].[sproc_UpdateArtist] ( @ArtistId int, @Name nvarchar (MAX) ) AS UPDATE [Artist] SET Name = @Name WHERE ArtistId = @ArtistId
<reponame>Shuttl-Tech/antlr_psql<filename>src/test/resources/sql/insert/82fa75d2.sql -- file:path.sql ln:21 expect:true INSERT INTO PATH_TBL VALUES ('[11,12,13,14]')
--============================================================= -- Drop Assembly Template --============================================================= IF EXISTS( SELECT * FROM sys.assemblies WHERE name = N'<assembly_name, SYSNAME, MyClass>' ) DROP ASSEMBLY <assembly_name, SYSNAME, MyClass>
<filename>Impl/agensgraph/load_datasets/disaster/load_table.sql<gh_stars>0 \c disaster COPY Earthquake(earthquake_id, time, latitude, longitude, depth, magnitude) FROM '/disaster/table/Earthquake.csv' DELIMITER ',' CSV HEADER; UPDATE Earthquake set coordinates = ST_PointFromText('Point(' || longitude || ' ' || latitude || ')', 0); CREATE INDEX Earthquake_coordinates_idx ON Earthquake USING GIST (coordinates); ALTER TABLE Earthquake DROP COlUMN latitude CASCADE; ALTER TABLE Earthquake DROP COlUMN longitude CASCADE; COPY Shelter FROM '/disaster/table/Shelter.csv' DELIMITER '|' CSV HEADER; COPY Gps(gps_id, user_id, longitude, latitude, time) FROM '/disaster/table/Gps.csv' DELIMITER ',' CSV HEADER; UPDATE Gps set coordinates = ST_PointFromText('Point(' || longitude || ' ' || latitude || ')', 0); CREATE INDEX Gps_coordinates_idx ON Gps USING GIST (coordinates); ALTER TABLE Gps DROP COlUMN latitude CASCADE; ALTER TABLE Gps DROP COlUMN longitude CASCADE; create index Earthquake_magnitude_id on Earthquake(magnitude);
-- 2021-06-19T06:33:14.878Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_UI_Element WHERE AD_UI_Element_ID=576650 ; -- 2021-06-19T06:33:14.941Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Element_Link WHERE AD_Field_ID=628837 ; -- 2021-06-19T06:33:14.947Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Field_Trl WHERE AD_Field_ID=628837 ; -- 2021-06-19T06:33:14.952Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Field WHERE AD_Field_ID=628837 ; -- 2021-06-19T06:33:14.994Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ SELECT public.db_alter_table('ExternalSystem_Config','ALTER TABLE ExternalSystem_Config DROP COLUMN IF EXISTS CamelURL') ; -- hotfix: delete all AD_Fields which are pointing to CamelUrl column delete from ad_ui_element where ad_field_id in (select ad_field_id from ad_field where ad_column_id=572727); delete from ad_field where ad_column_id=572727; -- 2021-06-19T06:33:15.038Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Column_Trl WHERE AD_Column_ID=572727 ; -- 2021-06-19T06:33:15.042Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Column WHERE AD_Column_ID=572727 ;
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; /*!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 */; CREATE TABLE `access_log` ( `log_id` mediumint(8) NOT NULL AUTO_INCREMENT, `date_time` datetime NOT NULL, `session_ID` varchar(32) NOT NULL, `IP_Address` varchar(32) NOT NULL, `hostname` varchar(50) NOT NULL, `schedule` text NOT NULL, PRIMARY KEY (`log_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC AUTO_INCREMENT=2546 ; CREATE TABLE `Bells` ( `Type` varchar(1) NOT NULL, `Day` varchar(3) NOT NULL, `Period` varchar(1) NOT NULL, `Start` time NOT NULL, `End` time NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; CREATE TABLE `Days` ( `Date` date NOT NULL, `Day` varchar(3) NOT NULL, `Type` varchar(1) NOT NULL, PRIMARY KEY (`Date`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
IF NOT EXISTS(SELECT * FROM [Information_Schema].[Tables] WHERE Table_Name = 'Roles') BEGIN CREATE TABLE [Roles] ( [Id] INT IDENTITY (1,1) NOT NULL CONSTRAINT [PK_Roles] PRIMARY KEY CLUSTERED, [Name] NVARCHAR(100) NOT NULL, [NormalizedName] NVARCHAR(100) NOT NULL CONSTRAINT [IX_Roles_NormalizedName] UNIQUE NONCLUSTERED, [ConcurrencyStamp] NVARCHAR(max) NULL, [Guid] UNIQUEIDENTIFIER NOT NULL ); END;
/* Navicat Premium Data Transfer Source Server : 本地数据库 Source Server Type : MySQL Source Server Version : 50727 Source Host : localhost:3306 Source Schema : sample_collections Target Server Type : MySQL Target Server Version : 50727 File Encoding : 65001 Date: 06/07/2020 18:03:27 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for content_comments -- ---------------------------- DROP TABLE IF EXISTS `content_comments`; CREATE TABLE `content_comments` ( `id` bigint(32) NOT NULL AUTO_INCREMENT COMMENT '评论主键id', `pid` bigint(32) NULL DEFAULT NULL COMMENT '父评论id', `resource_id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '被评论的资源id,可以是项目、资源、内容等', `type` tinyint(1) NOT NULL COMMENT '评论类型:1:对内容评论,2:回复评论', `user_id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '评论者id', `status` int(2) NOT NULL DEFAULT 1 COMMENT '状态:1:正常;2:屏蔽', `be_reviewer_id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '被评论者id', `like_num` bigint(11) NOT NULL DEFAULT 0 COMMENT '点赞的数量', `comment_content` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '评论内容', `create_time` timestamp(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间', `update_time` timestamp(0) NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP(0) COMMENT '修改时间', `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '创建者', `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '修改者', `deleted` int(2) NULL DEFAULT 0 COMMENT '是否删除 0:未删除;1:删除', PRIMARY KEY (`id`) USING BTREE, INDEX `owner_id`(`resource_id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 13 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '评论表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of content_comments -- ---------------------------- INSERT INTO `content_comments` VALUES (7, NULL, '12345678', 1, 'onnoa', 1, NULL, 0, '这是我的第一条评论', '2020-07-03 15:45:04', '2020-07-03 15:45:32', 'onnoa', NULL, 0); INSERT INTO `content_comments` VALUES (8, NULL, '12345678', 1, 'onnoa', 1, NULL, 0, '这是我的第二条评论。', '2020-07-03 15:45:51', NULL, 'onnoa', NULL, 0); INSERT INTO `content_comments` VALUES (9, NULL, '12345678', 1, 'onnoa', 1, NULL, 0, '这是我的第三条评论。', '2020-07-03 15:46:08', NULL, 'onnoa', NULL, 0); INSERT INTO `content_comments` VALUES (10, 7, '12345678', 2, 'heng', 1, 'onnoa', 0, '这是回复onnoa的第一条评论。', '2020-07-03 15:50:18', NULL, 'heng', NULL, 0); INSERT INTO `content_comments` VALUES (11, 8, '12345678', 2, 'heng', 1, 'onnoa', 0, '这是回复onnoa的第二条评论。', '2020-07-03 15:50:52', NULL, 'heng', NULL, 0); INSERT INTO `content_comments` VALUES (12, 10, '12345678', 2, 'zhang', 1, 'heng', 0, '这是回复heng的回复评论评论。', '2020-07-03 15:51:55', NULL, 'zhang', NULL, 0); -- ---------------------------- -- Table structure for sys_back_end_inter_resource -- ---------------------------- DROP TABLE IF EXISTS `sys_back_end_inter_resource`; CREATE TABLE `sys_back_end_inter_resource` ( `id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '主键', `interface_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '访问路径', `interface_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '菜单功能名称', `descr` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '描述', `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间', `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '后端资源菜单表' ROW_FORMAT = Compact; -- ---------------------------- -- Table structure for sys_front_view_resource -- ---------------------------- DROP TABLE IF EXISTS `sys_front_view_resource`; CREATE TABLE `sys_front_view_resource` ( `id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '主键', `parent_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '父级id', `path` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '菜单路径', `name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '菜单名称', `descr` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '菜单描述', `icon` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '图标', `type` int(2) NULL DEFAULT NULL COMMENT '类型:1菜单文件夹2菜单文件3按钮功能', `level` int(2) NULL DEFAULT NULL COMMENT '层级', `sort` int(3) NULL DEFAULT 1 COMMENT '排序', `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间', `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '前端菜单资源表' ROW_FORMAT = Compact; -- ---------------------------- -- Table structure for sys_front_view_resource_back_inter_resource -- ---------------------------- DROP TABLE IF EXISTS `sys_front_view_resource_back_inter_resource`; CREATE TABLE `sys_front_view_resource_back_inter_resource` ( `id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '主键', `back_end_view_url_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '后端菜单资源id', `front_view_path_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '前端菜单资源id', `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间', `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; -- ---------------------------- -- Table structure for sys_front_view_resource_role -- ---------------------------- DROP TABLE IF EXISTS `sys_front_view_resource_role`; CREATE TABLE `sys_front_view_resource_role` ( `id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '主键', `role_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '角色id', `view_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '视图菜单id', `select_type` int(2) NULL DEFAULT 1 COMMENT '1:选中2:半选中状态', `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间', `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色菜单关系表' ROW_FORMAT = Compact; -- ---------------------------- -- Table structure for sys_role -- ---------------------------- DROP TABLE IF EXISTS `sys_role`; CREATE TABLE `sys_role` ( `id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '主键id', `role_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '角色名称', `role_no` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '角色编号', `status` int(2) NULL DEFAULT 2 COMMENT '1.管理员,2普通成员,3.其他', `role_descr` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '角色描述', `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间', `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色表' ROW_FORMAT = Compact; -- ---------------------------- -- Table structure for sys_user -- ---------------------------- DROP TABLE IF EXISTS `sys_user`; CREATE TABLE `sys_user` ( `id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '主键', `username` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '用户名称', `password` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '密码<PASSWORD>', `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间', `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间', `mobile_phone` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '手机号', `last_login_time` datetime(0) NULL DEFAULT NULL COMMENT '最后登录时间', `last_login_ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '最后登录IP', `login_count` int(11) UNSIGNED NULL DEFAULT 0 COMMENT '登录次数', `real_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '真实姓名', `email` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '邮箱', `status` int(1) NULL DEFAULT NULL COMMENT '用户状态1-正常,2-禁用', `deleted` int(1) UNSIGNED NULL DEFAULT 0 COMMENT '是否可以删除用户 0-正常,1删除', `creator` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建者', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户表' ROW_FORMAT = Compact; -- ---------------------------- -- Table structure for sys_user_business -- ---------------------------- DROP TABLE IF EXISTS `sys_user_business`; CREATE TABLE `sys_user_business` ( `id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '主键', `user_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户id', `business_no` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '商户编号', `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间', `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户和商户关系表' ROW_FORMAT = Compact; -- ---------------------------- -- Table structure for sys_user_role -- ---------------------------- DROP TABLE IF EXISTS `sys_user_role`; CREATE TABLE `sys_user_role` ( `id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '主键', `role_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '角色id', `user_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户id', `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间', `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户角色关系表' ROW_FORMAT = Compact; -- ---------------------------- -- Table structure for utopa_videostream_svc_video_info -- ---------------------------- DROP TABLE IF EXISTS `videostream_svc_video_info`; CREATE TABLE `utopa_videostream_svc_video_info` ( `id` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `video_name` varchar(250) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '视频名称', `video_title` varchar(250) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '视频标题(展示给C端用户的名称,可与视频名称一致)', `origin_file_name` varchar(250) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '视频文件原来的名字', `from_sys` varchar(250) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '视频来源系统', `pics_id` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图片集ID(视频流服务提取一组图片)——视频动态封面图', `file_url` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '视频文件存放在服务器上的URL(或key),完整URL或部分URL(未包含域名等部分);视频文件夹及文件名都与ID一致(规则)', `play_url` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '视频播放地址', `cover_pic_url` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '视频静态封面图(视频播放前静态显示)', `cover_period_start` varchar(250) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '视频封面截取的时间区间,竖线分割,格式 [开始时间]|[结束时间],如:1:25|1:32', `cover_period_end` varchar(250) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '视频封面截取的时间区间,竖线分割,格式 [开始时间]|[结束时间],如:1:25|1:32', `file_size` decimal(10, 0) NOT NULL COMMENT '(自动)视频文件大小,MB为单位', `format_type` int(11) NOT NULL COMMENT '视频封装格式类型 0:其他 1:MP4', `video_width` int(11) NULL DEFAULT NULL COMMENT '(自动)视频分辨率宽', `video_height` int(11) NULL DEFAULT NULL COMMENT '(自动)视频分辨率高', `vd_bitrate` decimal(10, 0) NULL DEFAULT NULL COMMENT '(自动)视频码率', `ad_bitrate` decimal(10, 0) NULL DEFAULT NULL COMMENT '(自动)音频码率', `tl_bitrate` decimal(10, 0) NULL DEFAULT NULL COMMENT '(自动)总码率', `status` int(11) NOT NULL COMMENT '状态(0:未发布处理中 1:已发布可用 2:已发布禁用 30: 视频流服务未知异常 31: 文件上传失败 32:文件格式不正确 33:视频提取封面图失败 34:视频转码失败 )', `descr` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '描述', `memo` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '备注', `create_by` varchar(250) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建者', `create_time` timestamp(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间', `update_by` varchar(250) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '编辑者', `update_time` timestamp(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '编辑时间', `deleted` tinyint(4) NULL DEFAULT 0 COMMENT '是否已删除(0:否 1:是)', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '视频信息表(视频服务)' ROW_FORMAT = Dynamic; SET FOREIGN_KEY_CHECKS = 1;
<gh_stars>1000+ alter table SEC_ROLE add SECURITY_SCOPE varchar(255);
-- Last Vacuum and Analyze time select relname, date_trunc('second', last_vacuum) AS vacuum, date_trunc('second', last_autovacuum) AS autovacuum, date_trunc('second', last_analyze) AS analyze, date_trunc('second', last_autoanalyze) AS autoanalyze FROM pg_stat_user_tables ORDER BY last_autovacuum DESC NULLS LAST, relname ASC;
<filename>pgsql/projects/chacrm/functions/functions.sql<gh_stars>0 CREATE TYPE soi_type AS ( type_id INT, subject_id INT, object_id INT ); CREATE TYPE feature_by_fx_type AS ( feature_id INTEGER, depth INT ); CREATE OR REPLACE FUNCTION _fill_cvtermpath4node(integer, integer, integer, integer, integer) RETURNS integer AS $BODY$ DECLARE origin alias for $1; child_id alias for $2; cvid alias for $3; typeid alias for $4; depth alias for $5; cterm cvterm_relationship%ROWTYPE; exist_c int; BEGIN --- RAISE NOTICE 'depth=% root=%', depth,child_id; --- not check type_id as it may be null and not very meaningful in cvtermpath when pathdistance > 1 SELECT INTO exist_c count(*) FROM cvtermpath WHERE cv_id = cvid AND object_id = origin AND subject_id = child_id AND pathdistance = depth; IF (exist_c = 0) THEN INSERT INTO cvtermpath (object_id, subject_id, cv_id, type_id, pathdistance) VALUES(origin, child_id, cvid, typeid, depth); END IF; FOR cterm IN SELECT * FROM cvterm_relationship WHERE object_id = child_id LOOP PERFORM _fill_cvtermpath4node(origin, cterm.subject_id, cvid, cterm.type_id, depth+1); END LOOP; RETURN 1; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION _fill_cvtermpath4node2detect_cycle(integer, integer, integer, integer, integer) RETURNS integer AS $BODY$ DECLARE origin alias for $1; child_id alias for $2; cvid alias for $3; typeid alias for $4; depth alias for $5; cterm cvterm_relationship%ROWTYPE; exist_c int; ccount int; ecount int; rtn int; BEGIN EXECUTE 'SELECT * FROM tmpcvtermpath p1, tmpcvtermpath p2 WHERE p1.subject_id=p2.object_id AND p1.object_id=p2.subject_id AND p1.object_id = '|| origin || ' AND p2.subject_id = ' || child_id || 'AND ' || depth || '> 0'; GET DIAGNOSTICS ccount = ROW_COUNT; IF (ccount > 0) THEN --RAISE EXCEPTION 'FOUND CYCLE: node % on cycle path',origin; RETURN origin; END IF; EXECUTE 'SELECT * FROM tmpcvtermpath WHERE cv_id = ' || cvid || ' AND object_id = ' || origin || ' AND subject_id = ' || child_id || ' AND ' || origin || '<>' || child_id; GET DIAGNOSTICS ecount = ROW_COUNT; IF (ecount > 0) THEN --RAISE NOTICE 'FOUND TWICE (node), will check root obj % subj %',origin, child_id; SELECT INTO rtn _fill_cvtermpath4root2detect_cycle(child_id, cvid); IF (rtn > 0) THEN RETURN rtn; END IF; END IF; EXECUTE 'SELECT * FROM tmpcvtermpath WHERE cv_id = ' || cvid || ' AND object_id = ' || origin || ' AND subject_id = ' || child_id || ' AND pathdistance = ' || depth; GET DIAGNOSTICS exist_c = ROW_COUNT; IF (exist_c = 0) THEN EXECUTE 'INSERT INTO tmpcvtermpath (object_id, subject_id, cv_id, type_id, pathdistance) VALUES(' || origin || ', ' || child_id || ', ' || cvid || ', ' || typeid || ', ' || depth || ')'; END IF; FOR cterm IN SELECT * FROM cvterm_relationship WHERE object_id = child_id LOOP --RAISE NOTICE 'DOING for node, % %', origin, cterm.subject_id; SELECT INTO rtn _fill_cvtermpath4node2detect_cycle(origin, cterm.subject_id, cvid, cterm.type_id, depth+1); IF (rtn > 0) THEN RETURN rtn; END IF; END LOOP; RETURN 0; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION _fill_cvtermpath4root(integer, integer) RETURNS integer AS $BODY$ DECLARE rootid alias for $1; cvid alias for $2; ttype int; cterm cvterm_relationship%ROWTYPE; child cvterm_relationship%ROWTYPE; BEGIN SELECT INTO ttype cvterm_id FROM cvterm WHERE (name = 'isa' OR name = 'is_a'); PERFORM _fill_cvtermpath4node(rootid, rootid, cvid, ttype, 0); FOR cterm IN SELECT * FROM cvterm_relationship WHERE object_id = rootid LOOP PERFORM _fill_cvtermpath4root(cterm.subject_id, cvid); -- RAISE NOTICE 'DONE for term, %', cterm.subject_id; END LOOP; RETURN 1; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION _fill_cvtermpath4root2detect_cycle(integer, integer) RETURNS integer AS $BODY$ DECLARE rootid alias for $1; cvid alias for $2; ttype int; ccount int; cterm cvterm_relationship%ROWTYPE; child cvterm_relationship%ROWTYPE; rtn int; BEGIN SELECT INTO ttype cvterm_id FROM cvterm WHERE (name = 'isa' OR name = 'is_a'); SELECT INTO rtn _fill_cvtermpath4node2detect_cycle(rootid, rootid, cvid, ttype, 0); IF (rtn > 0) THEN RETURN rtn; END IF; FOR cterm IN SELECT * FROM cvterm_relationship WHERE object_id = rootid LOOP EXECUTE 'SELECT * FROM tmpcvtermpath p1, tmpcvtermpath p2 WHERE p1.subject_id=p2.object_id AND p1.object_id=p2.subject_id AND p1.object_id=' || rootid || ' AND p1.subject_id=' || cterm.subject_id; GET DIAGNOSTICS ccount = ROW_COUNT; IF (ccount > 0) THEN --RAISE NOTICE 'FOUND TWICE (root), will check root obj % subj %',rootid,cterm.subject_id; SELECT INTO rtn _fill_cvtermpath4node2detect_cycle(rootid, cterm.subject_id, cvid, ttype, 0); IF (rtn > 0) THEN RETURN rtn; END IF; ELSE SELECT INTO rtn _fill_cvtermpath4root2detect_cycle(cterm.subject_id, cvid); IF (rtn > 0) THEN RETURN rtn; END IF; END IF; END LOOP; RETURN 0; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION _fill_cvtermpath4soi(integer, integer) RETURNS integer AS $BODY$ DECLARE rootid alias for $1; cvid alias for $2; ttype int; cterm soi_type%ROWTYPE; BEGIN SELECT INTO ttype get_cvterm_id_for_is_a(); --RAISE NOTICE 'got ttype %',ttype; PERFORM _fill_cvtermpath4soinode(rootid, rootid, cvid, ttype, 0); FOR cterm IN SELECT tmp_type AS type_id, subject_id FROM tmpcvtr WHERE object_id = rootid LOOP PERFORM _fill_cvtermpath4soi(cterm.subject_id, cvid); END LOOP; RETURN 1; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION _fill_cvtermpath4soinode(integer, integer, integer, integer, integer) RETURNS integer AS $BODY$ DECLARE origin alias for $1; child_id alias for $2; cvid alias for $3; typeid alias for $4; depth alias for $5; cterm soi_type%ROWTYPE; exist_c int; BEGIN --RAISE NOTICE 'depth=% o=%, root=%, cv=%, t=%', depth,origin,child_id,cvid,typeid; SELECT INTO exist_c count(*) FROM cvtermpath WHERE cv_id = cvid AND object_id = origin AND subject_id = child_id AND pathdistance = depth; --- longest path IF (exist_c > 0) THEN UPDATE cvtermpath SET pathdistance = depth WHERE cv_id = cvid AND object_id = origin AND subject_id = child_id; ELSE INSERT INTO cvtermpath (object_id, subject_id, cv_id, type_id, pathdistance) VALUES(origin, child_id, cvid, typeid, depth); END IF; FOR cterm IN SELECT tmp_type AS type_id, subject_id FROM tmpcvtr WHERE object_id = child_id LOOP PERFORM _fill_cvtermpath4soinode(origin, cterm.subject_id, cvid, cterm.type_id, depth+1); END LOOP; RETURN 1; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION _get_all_object_ids(integer) RETURNS SETOF cvtermpath AS $BODY$ DECLARE leaf alias for $1; cterm cvtermpath%ROWTYPE; cterm2 cvtermpath%ROWTYPE; BEGIN FOR cterm IN SELECT * FROM cvterm_relationship WHERE subject_id = leaf LOOP RETURN NEXT cterm; FOR cterm2 IN SELECT * FROM _get_all_object_ids(cterm.object_id) LOOP RETURN NEXT cterm2; END LOOP; END LOOP; RETURN; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION _get_all_subject_ids(integer) RETURNS SETOF cvtermpath AS $BODY$ DECLARE root alias for $1; cterm cvtermpath%ROWTYPE; cterm2 cvtermpath%ROWTYPE; BEGIN FOR cterm IN SELECT * FROM cvterm_relationship WHERE object_id = root LOOP RETURN NEXT cterm; FOR cterm2 IN SELECT * FROM _get_all_subject_ids(cterm.subject_id) LOOP RETURN NEXT cterm2; END LOOP; END LOOP; RETURN; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION create_point(integer, integer) RETURNS point AS 'SELECT point ($1, $2)' LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION boxquery(integer, integer) RETURNS box AS 'SELECT box (create_point($1, $2), create_point($1, $2))' LANGUAGE 'sql' IMMUTABLE; CREATE OR REPLACE FUNCTION boxrange(integer, integer) RETURNS box AS 'SELECT box (create_point(0, $1), create_point($2,500000000))' LANGUAGE 'sql' IMMUTABLE; CREATE OR REPLACE FUNCTION cache_all_fragment_residues() RETURNS integer AS $BODY$ DECLARE r RECORD; v_residues TEXT; BEGIN FOR r IN SELECT feature_id FROM tfeature WHERE type='tiling_path_fragment' AND is_analysis=false LOOP v_residues = subsequence_by_feature(r.feature_id); RAISE NOTICE 'updating residues for fragment %', r.feature_id; UPDATE feature SET residues=v_residues ,seqlen = length(v_residues) ,md5checksum = md5(v_residues) WHERE feature_id=r.feature_id; END LOOP; RETURN 1; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION cache_all_fragment_residues(integer) RETURNS integer AS $BODY$ DECLARE v_feature_id ALIAS FOR $1; v_residues TEXT; BEGIN v_residues = subsequence_by_feature(v_feature_id); RAISE NOTICE 'updating residues for fragment %', v_feature_id; UPDATE feature SET residues=v_residues ,seqlen = length(v_residues) ,md5checksum = md5(v_residues) WHERE feature_id=v_feature_id; RETURN 1; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION chado_args_init() RETURNS integer AS $BODY$ DECLARE cvid INTEGER; pubtypeid INTEGER; BEGIN --insert CVs INSERT INTO cv(name) VALUES('sequence topology'); INSERT INTO cv(name) VALUES('GenBank feature qualifier'); --INSERT INTO cv(name) VALUES('pub relationship type'); --INSERT INTO cv(name) VALUES('pubprop type'); INSERT INTO cv(name) VALUES('GenBank division'); --insert cvterm's --SO terms SELECT cv_id INTO cvid FROM cv WHERE name = 'sequence'; INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'mature_peptide'); INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'signal_peptide'); --pub type SELECT cv_id INTO cvid FROM cv WHERE name = 'pub type'; INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'null pub'); --INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'unpublished'); --INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'paper'); INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'submitted'); --INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'other'); --INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'journal'); --sequence topology SELECT cv_id INTO cvid FROM cv WHERE name = 'sequence topology'; INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'linear'); INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'circular'); --GenBank division SELECT cv_id INTO cvid FROM cv WHERE name = 'GenBank division'; INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'PRI', 'primate sequences'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'ROD', 'rodent sequences'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'MAM', 'other mammalian sequences'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'VRT', 'other vertebrate sequences'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'INV', 'invertebrate sequences'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'PLN', 'plant, fungal, and algal sequences'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'BCT', 'bacterial sequences'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'VRL', 'viral sequences'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'PHG', 'bacteriophage sequences'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'SYN', 'synthetic sequences'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'UNA', 'unannotated sequences'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'EST', 'EST sequences (expressed sequence tags)'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'PAT', 'patent sequences'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'STS', 'STS sequences (sequence tagged sites)'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'GSS', 'GSS sequences (genome survey sequences)'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'HTG', 'HTGS sequences (high throughput genomic sequences)'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'HTC', 'HTC sequences (high throughput cDNA sequences)'); --property type SELECT cv_id INTO cvid FROM cv WHERE name = 'property type'; INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'keywords'); INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'organism'); INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'mol_type'); INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'dev_stage'); INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'chromosome'); INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'map'); --GenBank feature qualifier SELECT cv_id INTO cvid FROM cv WHERE name = 'GenBank feature qualifier'; INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'anticodon', 'Location of the anticodon of tRNA and the amino acid for which it codes'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'bound_moiety', 'Moiety bound'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'citation', 'Reference to a citation providing the claim of or evidence for a feature'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'codon', 'Specifies a codon that is different from any found in the reference genetic code'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'codon_start', 'Indicates the first base of the first complete codon in a CDS (as 1 or 2 or 3)'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'cons_splice', 'Identifies intron splice sites that do not conform to the 5''-GT... AG-3'' splice site consensus'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'db_xref', 'A database cross-reference; pointer to related information in another database. A description of all cross-references can be found at: http://www.ncbi.nlm.nih.gov/collab/db_xref.html'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'direction', 'Direction of DNA replication'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'EC_number', 'Enzyme Commission number for the enzyme product of the sequence'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'evidence', 'Value indicating the nature of supporting evidence'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'frequency', 'Frequency of the occurrence of a feature'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'function', 'Function attributed to a sequence'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'gene', 'Symbol of the gene corresponding to a sequence region (usable with all features)'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'label', 'A label used to permanently identify a feature'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'map', 'Map position of the feature in free-format text'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'mod_base', 'Abbreviation for a modified nucleotide base'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'note', 'Any comment or additional information'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'number', 'A number indicating the order of genetic elements (e.g., exons or introns) in the 5 to 3 direction'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'organism', 'Name of the organism that is the source of the sequence data in the record. '); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'partial', 'Differentiates between complete regions and partial ones'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'phenotype', 'Phenotype conferred by the feature'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'product', 'Name of a product encoded by a coding region (CDS) feature'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'pseudo', 'Indicates that this feature is a non-functional version of the element named by the feature key'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'rpt_family', 'Type of repeated sequence; Alu or Kpn, for example'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'rpt_type', 'Organization of repeated sequence'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'rpt_unit', 'Identity of repeat unit that constitutes a repeat_region'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'standard_name', 'Accepted standard name for this feature'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'transl_except', 'Translational exception: single codon, the translation of which does not conform to the reference genetic code'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'translation', 'Amino acid translation of a coding region'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'type', 'Name of a strain if different from that in the SOURCE field'); INSERT INTO cvterm(cv_id, name, definition) VALUES(cvid, 'usedin', 'Indicatesthat feature is used in a compound feature in another entry'); --feature qualifiers unique to FB INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'comment'); INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'linked_to'); INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'na_change'); INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'pr_change'); INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'reported_na_change'); INSERT INTO cvterm(cv_id, name) VALUES(cvid, 'reported_pr_change'); --insert a null pub of type 'null pub' SELECT t.cvterm_id into pubtypeid FROM cvterm t, cv WHERE t.name = 'null pub' and t.cv_id = cv.cv_id and cv.name = 'pub type'; INSERT INTO pub(uniquename, type_id) VALUES('nullpub', pubtypeid); --insert dbs --INSERT INTO db(name, contact_id) VALUES('MEDLINE', 1); INSERT INTO db(name, contact_id) VALUES('PUBMED', 1); RETURN 1; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION complement_residues(text) RETURNS text AS $BODY$SELECT (translate($1, 'acgtrymkswhbvdnxACGTRYMKSWHBVDNX', 'tgcayrkmswdvbhnxTGCAYRKMSWDVBHNX'))$BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION concat_pair(text, text) RETURNS text AS 'SELECT $1 || $2' LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION create_soi() RETURNS integer AS $BODY$ DECLARE parent soi_type%ROWTYPE; isa_id cvterm.cvterm_id%TYPE; soi_term VARCHAR := 'soi'; soi_def TEXT := 'ontology of SO feature instantiated in database'; soi_cvid INTEGER; soiterm_id INTEGER; pcount INTEGER; count INTEGER := 0; cquery TEXT; BEGIN SELECT INTO isa_id get_cvterm_id_for_is_a(); SELECT INTO soi_cvid cv_id FROM cv WHERE name = soi_term; IF (soi_cvid > 0) THEN DELETE FROM cvtermpath WHERE cv_id = soi_cvid; DELETE FROM cvterm WHERE cv_id = soi_cvid; ELSE INSERT INTO cv (name, definition) VALUES(soi_term, soi_def); END IF; SELECT INTO soi_cvid cv_id FROM cv WHERE name = soi_term; -- create a SOI term in cvterm, and add a pseudo-dbxref INSERT INTO cvterm (name, cv_id,dbxref_id) VALUES (soi_term, soi_cvid,store_dbxref('SOI',soi_term)); SELECT INTO soiterm_id cvterm_id FROM cvterm WHERE name = soi_term; CREATE TEMP TABLE tmpcvtr (tmp_type INT, type_id INT, subject_id INT, object_id INT); CREATE UNIQUE INDEX u_tmpcvtr ON tmpcvtr(subject_id, object_id); INSERT INTO tmpcvtr (tmp_type, type_id, subject_id, object_id) SELECT DISTINCT isa_id, soiterm_id, f.type_id, soiterm_id FROM feature f, cvterm t WHERE f.type_id = t.cvterm_id AND f.type_id > 0; EXECUTE 'select * from tmpcvtr where type_id = ' || soiterm_id || ';'; get diagnostics pcount = row_count; raise notice 'all types in feature %',pcount; --- do it hard way, delete any child feature type from above (NOT IN clause did not work) FOR parent IN SELECT DISTINCT 0, t.cvterm_id, 0 FROM feature c, feature_relationship fr, cvterm t WHERE t.cvterm_id = c.type_id AND c.feature_id = fr.subject_id LOOP DELETE FROM tmpcvtr WHERE type_id = soiterm_id and object_id = soiterm_id AND subject_id = parent.subject_id; END LOOP; EXECUTE 'select * from tmpcvtr where type_id = ' || soiterm_id || ';'; get diagnostics pcount = row_count; raise notice 'all types in feature after delete child %',pcount; --- create feature type relationship (store in tmpcvtr) CREATE TEMP TABLE tmproot (cv_id INTEGER not null, cvterm_id INTEGER not null, status INTEGER DEFAULT 0); cquery := 'SELECT * FROM tmproot tmp WHERE tmp.status = 0;'; ---temp use tmpcvtr to hold instantiated SO relationship for speed ---use soterm_id as type_id, will delete from tmpcvtr ---us tmproot for this as well INSERT INTO tmproot (cv_id, cvterm_id, status) SELECT DISTINCT soi_cvid, c.subject_id, 0 FROM tmpcvtr c WHERE c.object_id = soiterm_id; EXECUTE cquery; GET DIAGNOSTICS pcount = ROW_COUNT; WHILE (pcount > 0) LOOP RAISE NOTICE 'num child temp (to be inserted) in tmpcvtr: %',pcount; INSERT INTO tmpcvtr (tmp_type, type_id, subject_id, object_id) SELECT DISTINCT fr.type_id, soiterm_id, c.type_id, p.cvterm_id FROM feature c, feature_relationship fr, tmproot p, feature pf, cvterm t WHERE c.feature_id = fr.subject_id AND fr.object_id = pf.feature_id AND p.cvterm_id = pf.type_id AND t.cvterm_id = c.type_id AND p.status = 0; UPDATE tmproot SET status = 1 WHERE status = 0; INSERT INTO tmproot (cv_id, cvterm_id, status) SELECT DISTINCT soi_cvid, c.type_id, 0 FROM feature c, feature_relationship fr, tmproot tmp, feature p, cvterm t WHERE c.feature_id = fr.subject_id AND fr.object_id = p.feature_id AND tmp.cvterm_id = p.type_id AND t.cvterm_id = c.type_id AND tmp.status = 1; UPDATE tmproot SET status = 2 WHERE status = 1; EXECUTE cquery; GET DIAGNOSTICS pcount = ROW_COUNT; END LOOP; DELETE FROM tmproot; ---get transitive closure for soi PERFORM _fill_cvtermpath4soi(soiterm_id, soi_cvid); DROP TABLE tmpcvtr; DROP TABLE tmproot; RETURN 1; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION delete_analysis_features(integer, integer) RETURNS integer AS $BODY$DECLARE v_analysis_id ALIAS FOR $1; v_limit ALIAS FOR $2; tmpval INTEGER; v_feature RECORD; n_deleted INTEGER; BEGIN n_deleted = 0; FOR v_feature IN SELECT feature_id FROM analysisfeature WHERE analysis_id = v_analysis_id LIMIT v_limit LOOP RAISE NOTICE 'deleting %',v_feature.feature_id; EXECUTE 'DELETE FROM feature WHERE feature_id= ' ||v_feature.feature_id; n_deleted = n_deleted+1; END LOOP; RETURN n_deleted; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION feature_disjoint_from(integer) RETURNS SETOF feature AS $BODY$SELECT feature.* FROM feature INNER JOIN featureloc AS x ON (x.feature_id=feature.feature_id) INNER JOIN featureloc AS y ON (y.feature_id=$1) WHERE x.srcfeature_id = y.srcfeature_id AND ( x.fmax < y.fmin OR x.fmin > y.fmax ) $BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION feature_intersecting(integer) RETURNS SETOF feature AS $BODY$SELECT feature.* FROM feature INNER JOIN featureloc AS x ON (x.feature_id=feature.feature_id) INNER JOIN featureloc AS y ON (y.feature_id=$1) WHERE x.srcfeature_id = y.srcfeature_id AND (( x.fmax >= y.fmin AND x.fmin <= y.fmax ) OR ( y.fmin >= x.fmin AND y.fmin <= x.fmax )) $BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION feature_overlaps(integer) RETURNS SETOF feature AS $BODY$SELECT feature.* FROM feature INNER JOIN featureloc AS x ON (x.feature_id=feature.feature_id) INNER JOIN featureloc AS y ON (y.feature_id=$1) WHERE x.srcfeature_id = y.srcfeature_id AND ( x.fmax >= y.fmin AND x.fmin <= y.fmax ) $BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION feature_slice(integer, integer) RETURNS SETOF feature AS $BODY$SELECT feature.* FROM feature INNER JOIN featureloc USING (feature_id) WHERE boxquery($1, $2) @ boxrange(fmin,fmax)$BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION feature_slice(character varying, integer, integer) RETURNS SETOF feature AS $BODY$SELECT feature.* FROM feature INNER JOIN featureloc USING (feature_id) INNER JOIN feature AS srcf ON (srcf.feature_id = featureloc.srcfeature_id) WHERE boxquery($2, $3) @ boxrange(fmin,fmax) AND srcf.name = $1 $BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION feature_slice(integer, integer, integer) RETURNS SETOF feature AS $BODY$SELECT feature.* FROM feature INNER JOIN featureloc USING (feature_id) WHERE boxquery($2, $3) @ boxrange(fmin,fmax) AND srcfeature_id = $1 $BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION feature_subalignments(integer) RETURNS SETOF featureloc AS $BODY$ DECLARE return_data featureloc%ROWTYPE; f_id ALIAS FOR $1; feature_data feature%rowtype; featureloc_data featureloc%rowtype; s text; fmin integer; slen integer; BEGIN --RAISE NOTICE 'feature_id is %', featureloc_data.feature_id; SELECT INTO feature_data * FROM feature WHERE feature_id = f_id; FOR featureloc_data IN SELECT * FROM featureloc WHERE feature_id = f_id LOOP --RAISE NOTICE 'fmin is %', featureloc_data.fmin; return_data.feature_id = f_id; return_data.srcfeature_id = featureloc_data.srcfeature_id; return_data.is_fmin_partial = featureloc_data.is_fmin_partial; return_data.is_fmax_partial = featureloc_data.is_fmax_partial; return_data.strand = featureloc_data.strand; return_data.phase = featureloc_data.phase; return_data.residue_info = featureloc_data.residue_info; return_data.locgroup = featureloc_data.locgroup; return_data.rank = featureloc_data.rank; s = feature_data.residues; fmin = featureloc_data.fmin; slen = char_length(s); WHILE char_length(s) LOOP --RAISE NOTICE 'residues is %', s; --trim off leading match s = trim(leading '|ATCGNatcgn' from s); --if leading match detected IF slen > char_length(s) THEN return_data.fmin = fmin; return_data.fmax = featureloc_data.fmin + (slen - char_length(s)); --if the string started with a match, return it, --otherwise, trim the gaps first (ie do not return this iteration) RETURN NEXT return_data; END IF; --trim off leading gap s = trim(leading '-' from s); fmin = featureloc_data.fmin + (slen - char_length(s)); END LOOP; END LOOP; RETURN; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION featureloc_slice(character varying, integer, integer) RETURNS SETOF featureloc AS $BODY$SELECT featureloc.* FROM featureloc INNER JOIN feature AS srcf ON (srcf.feature_id = featureloc.srcfeature_id) WHERE boxquery($2, $3) @ boxrange(fmin,fmax) AND srcf.name = $1 $BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION featureloc_slice(integer, integer, integer) RETURNS SETOF featureloc AS $BODY$SELECT * FROM featureloc WHERE boxquery($2, $3) @ boxrange(fmin,fmax) AND srcfeature_id = $1 $BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION featureloc_slice(integer, integer) RETURNS SETOF featureloc AS 'SELECT * from featureloc where boxquery($1, $2) @ boxrange(fmin,fmax)' LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION featureslice(integer, integer) RETURNS SETOF featureloc AS 'SELECT * from featureloc where boxquery($1, $2) @ boxrange(fmin,fmax)' LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION fill_cvtermpath(integer) RETURNS integer AS $BODY$ DECLARE cvid alias for $1; root cvterm%ROWTYPE; BEGIN DELETE FROM cvtermpath WHERE cv_id = cvid; FOR root IN SELECT DISTINCT t.* from cvterm t LEFT JOIN cvterm_relationship r ON (t.cvterm_id = r.subject_id) INNER JOIN cvterm_relationship r2 ON (t.cvterm_id = r2.object_id) WHERE t.cv_id = cvid AND r.subject_id is null LOOP PERFORM _fill_cvtermpath4root(root.cvterm_id, root.cv_id); END LOOP; RETURN 1; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION fill_cvtermpath(character varying) RETURNS integer AS $BODY$ DECLARE cvname alias for $1; cv_id int; rtn int; BEGIN SELECT INTO cv_id cv.cv_id from cv WHERE cv.name = cvname; SELECT INTO rtn fill_cvtermpath(cv_id); RETURN rtn; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION foo(integer) RETURNS character varying AS 'SELECT name from cv' LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION get_all_object_ids(integer) RETURNS SETOF cvtermpath AS $BODY$ DECLARE leaf alias for $1; cterm cvtermpath%ROWTYPE; exist_c int; BEGIN SELECT INTO exist_c count(*) FROM cvtermpath WHERE object_id = leaf and pathdistance <= 0; IF (exist_c > 0) THEN FOR cterm IN SELECT * FROM cvtermpath WHERE subject_id = leaf AND pathdistance > 0 LOOP RETURN NEXT cterm; END LOOP; ELSE FOR cterm IN SELECT * FROM _get_all_object_ids(leaf) LOOP RETURN NEXT cterm; END LOOP; END IF; RETURN; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION get_all_subject_ids(integer) RETURNS SETOF cvtermpath AS $BODY$ DECLARE root alias for $1; cterm cvtermpath%ROWTYPE; exist_c int; BEGIN SELECT INTO exist_c count(*) FROM cvtermpath WHERE object_id = root and pathdistance <= 0; IF (exist_c > 0) THEN FOR cterm IN SELECT * FROM cvtermpath WHERE object_id = root and pathdistance > 0 LOOP RETURN NEXT cterm; END LOOP; ELSE FOR cterm IN SELECT * FROM _get_all_subject_ids(root) LOOP RETURN NEXT cterm; END LOOP; END IF; RETURN; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; -- TD CREATE OR REPLACE FUNCTION get_cv_id_for_feature() RETURNS integer AS $BODY$SELECT cv_id FROM cv WHERE name='sequence'$BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION get_cv_id_for_feature_relationsgip() RETURNS integer AS $BODY$SELECT cv_id FROM cv WHERE name='relationship'$BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION get_cv_id_for_feature_relationship() RETURNS integer AS $BODY$SELECT cv_id FROM cv WHERE name='relationship'$BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION get_cv_id_for_featureprop() RETURNS integer AS $BODY$SELECT cv_id FROM cv WHERE name='feature_property'$BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION get_cv_id_for_relation() RETURNS integer AS $BODY$SELECT cv_id FROM cv WHERE name='relationship'$BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION get_cvterm_id_for_is_a() RETURNS integer AS $BODY$SELECT cvterm_id FROM cvterm WHERE name='is_a' AND cv_id=get_cv_id_for_relation()$BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION get_cycle_cvterm_id(integer, integer) RETURNS integer AS $BODY$ DECLARE cvid alias for $1; rootid alias for $2; rtn int; BEGIN CREATE TEMP TABLE tmpcvtermpath(object_id int, subject_id int, cv_id int, type_id int, pathdistance int); CREATE INDEX tmp_cvtpath1 ON tmpcvtermpath(object_id, subject_id); SELECT INTO rtn _fill_cvtermpath4root2detect_cycle(rootid, cvid); IF (rtn > 0) THEN DROP TABLE tmpcvtermpath; RETURN rtn; END IF; DROP TABLE tmpcvtermpath; RETURN 0; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION get_cycle_cvterm_id(integer) RETURNS integer AS $BODY$ DECLARE cvid alias for $1; root cvterm%ROWTYPE; rtn int; BEGIN CREATE TEMP TABLE tmpcvtermpath(object_id int, subject_id int, cv_id int, type_id int, pathdistance int); CREATE INDEX tmp_cvtpath1 ON tmpcvtermpath(object_id, subject_id); FOR root IN SELECT DISTINCT t.* from cvterm t LEFT JOIN cvterm_relationship r ON (t.cvterm_id = r.subject_id) INNER JOIN cvterm_relationship r2 ON (t.cvterm_id = r2.object_id) WHERE t.cv_id = cvid AND r.subject_id is null LOOP SELECT INTO rtn _fill_cvtermpath4root2detect_cycle(root.cvterm_id, root.cv_id); IF (rtn > 0) THEN DROP TABLE tmpcvtermpath; RETURN rtn; END IF; END LOOP; DROP TABLE tmpcvtermpath; RETURN 0; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION get_cycle_cvterm_id(character varying) RETURNS integer AS $BODY$ DECLARE cvname alias for $1; cv_id int; rtn int; BEGIN SELECT INTO cv_id cv.cv_id from cv WHERE cv.name = cvname; SELECT INTO rtn get_cycle_cvterm_id(cv_id); RETURN rtn; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION get_cycle_cvterm_ids(integer) RETURNS SETOF integer AS $BODY$ DECLARE cvid alias for $1; root cvterm%ROWTYPE; rtn int; BEGIN FOR root IN SELECT DISTINCT t.* from cvterm t WHERE cv_id = cvid LOOP SELECT INTO rtn get_cycle_cvterm_id(cvid,root.cvterm_id); IF (rtn > 0) THEN RETURN NEXT rtn; END IF; END LOOP; RETURN; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION get_organism_id(character varying) RETURNS integer AS $BODY$ SELECT organism_id FROM organism WHERE genus=substring($1,1,position(' ' IN $1)-1) AND species=substring($1,position(' ' IN $1)+1) $BODY$ LANGUAGE 'sql' VOLATILE; -- TD CREATE OR REPLACE FUNCTION get_feature_type_id(character varying) RETURNS integer AS $BODY$ SELECT cvterm_id FROM cv INNER JOIN cvterm USING (cv_id) WHERE cvterm.name=$1 AND cv.name='sequence' $BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION get_feature_id(character varying, character varying, character varying) RETURNS integer AS $BODY$ SELECT feature_id FROM feature WHERE uniquename=$1 AND type_id=get_feature_type_id($2) AND organism_id=get_organism_id($3) $BODY$ LANGUAGE 'sql' VOLATILE; -- TD RETUTN NULL => RETURN; CREATE OR REPLACE FUNCTION get_feature_ids(text) RETURNS SETOF feature_by_fx_type AS $BODY$ DECLARE sql alias for $1; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; myrc3 feature_by_fx_type%ROWTYPE; BEGIN FOR myrc IN EXECUTE sql LOOP RETURN NEXT myrc; FOR myrc2 IN SELECT * FROM get_up_feature_ids(myrc.feature_id) LOOP RETURN NEXT myrc2; END LOOP; FOR myrc3 IN SELECT * FROM get_sub_feature_ids(myrc.feature_id) LOOP RETURN NEXT myrc3; END LOOP; END LOOP; RETURN ; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; -- TD RETUTN NULL => RETURN; CREATE OR REPLACE FUNCTION get_feature_ids_by_child_count(character varying, character varying, integer, character varying, bpchar) RETURNS SETOF feature_by_fx_type AS $BODY$ DECLARE ptype alias for $1; ctype alias for $2; ccount alias for $3; operator alias for $4; is_an alias for $5; query TEXT; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type %ROWTYPE; BEGIN query := 'SELECT DISTINCT f.feature_id FROM feature f INNER join (select count(*) as c, p.feature_id FROM feature p INNER join cvterm pt ON (p.type_id = pt.cvterm_id) INNER join feature_relationship fr ON (p.feature_id = fr.object_id) INNER join feature c ON (c.feature_id = fr.subject_id) INNER join cvterm ct ON (c.type_id = ct.cvterm_id) WHERE pt.name = ' || quote_literal(ptype) || ' AND ct.name = ' || quote_literal(ctype) || ' AND p.is_analysis = ' || quote_literal(is_an) || ' group by p.feature_id) as cq ON (cq.feature_id = f.feature_id) WHERE cq.c ' || operator || ccount || ';'; ---RAISE NOTICE '%', query; FOR myrc IN SELECT * FROM get_feature_ids(query) LOOP RETURN NEXT myrc; END LOOP; RETURN ; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; -- TD RETUTN NULL => RETURN; CREATE OR REPLACE FUNCTION get_feature_ids_by_ont(character varying, character varying) RETURNS SETOF feature_by_fx_type AS $BODY$ DECLARE aspect alias for $1; term alias for $2; query TEXT; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN query := 'SELECT DISTINCT fcvt.feature_id FROM feature_cvterm fcvt, cv, cvterm t WHERE cv.cv_id = t.cv_id AND t.cvterm_id = fcvt.cvterm_id AND cv.name = ' || quote_literal(aspect) || ' AND t.name = ' || quote_literal(term) || ';'; IF (STRPOS(term, '%') > 0) THEN query := 'SELECT DISTINCT fcvt.feature_id FROM feature_cvterm fcvt, cv, cvterm t WHERE cv.cv_id = t.cv_id AND t.cvterm_id = fcvt.cvterm_id AND cv.name = ' || quote_literal(aspect) || ' AND t.name like ' || quote_literal(term) || ';'; END IF; FOR myrc IN SELECT * FROM get_feature_ids(query) LOOP RETURN NEXT myrc; END LOOP; RETURN; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; -- TD RETUTN NULL => RETURN; CREATE OR REPLACE FUNCTION get_feature_ids_by_ont_root(character varying, character varying) RETURNS SETOF feature_by_fx_type AS $BODY$ DECLARE aspect alias for $1; term alias for $2; query TEXT; subquery TEXT; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN subquery := 'SELECT t.cvterm_id FROM cv, cvterm t WHERE cv.cv_id = t.cv_id AND cv.name = ' || quote_literal(aspect) || ' AND t.name = ' || quote_literal(term) || ';'; IF (STRPOS(term, '%') > 0) THEN subquery := 'SELECT t.cvterm_id FROM cv, cvterm t WHERE cv.cv_id = t.cv_id AND cv.name = ' || quote_literal(aspect) || ' AND t.name like ' || quote_literal(term) || ';'; END IF; query := 'SELECT DISTINCT fcvt.feature_id FROM feature_cvterm fcvt INNER JOIN (SELECT cvterm_id FROM get_it_sub_cvterm_ids(' || quote_literal(subquery) || ')) AS ont ON (fcvt.cvterm_id = ont.cvterm_id);'; FOR myrc IN SELECT * FROM get_feature_ids(query) LOOP RETURN NEXT myrc; END LOOP; RETURN; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; -- TD RETUTN NULL => RETURN; CREATE OR REPLACE FUNCTION get_feature_ids_by_property(character varying, character varying) RETURNS SETOF feature_by_fx_type AS $BODY$ DECLARE p_type alias for $1; p_val alias for $2; query TEXT; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN query := 'SELECT DISTINCT fprop.feature_id FROM featureprop fprop, cvterm t WHERE t.cvterm_id = fprop.type_id AND t.name = ' || quote_literal(p_type) || ' AND fprop.value = ' || quote_literal(p_val) || ';'; IF (STRPOS(p_val, '%') > 0) THEN query := 'SELECT DISTINCT fprop.feature_id FROM featureprop fprop, cvterm t WHERE t.cvterm_id = fprop.type_id AND t.name = ' || quote_literal(p_type) || ' AND fprop.value like ' || quote_literal(p_val) || ';'; END IF; FOR myrc IN SELECT * FROM get_feature_ids(query) LOOP RETURN NEXT myrc; END LOOP; RETURN ; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; -- TD RETUTN NULL => RETURN; CREATE OR REPLACE FUNCTION get_feature_ids_by_propval(character varying) RETURNS SETOF feature_by_fx_type AS $BODY$ DECLARE p_val alias for $1; query TEXT; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN query := 'SELECT DISTINCT fprop.feature_id FROM featureprop fprop WHERE fprop.value = ' || quote_literal(p_val) || ';'; IF (STRPOS(p_val, '%') > 0) THEN query := 'SELECT DISTINCT fprop.feature_id FROM featureprop fprop WHERE fprop.value like ' || quote_literal(p_val) || ';'; END IF; FOR myrc IN SELECT * FROM get_feature_ids(query) LOOP RETURN NEXT myrc; END LOOP; RETURN ; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; -- TD RETUTN NULL => RETURN; CREATE OR REPLACE FUNCTION get_feature_ids_by_type(character varying, bpchar) RETURNS SETOF feature_by_fx_type AS $BODY$ DECLARE gtype alias for $1; is_an alias for $2; query TEXT; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN query := 'SELECT DISTINCT f.feature_id FROM feature f, cvterm t WHERE t.cvterm_id = f.type_id AND t.name = ' || quote_literal(gtype) || ' AND f.is_analysis = ' || quote_literal(is_an) || ';'; IF (STRPOS(gtype, '%') > 0) THEN query := 'SELECT DISTINCT f.feature_id FROM feature f, cvterm t WHERE t.cvterm_id = f.type_id AND t.name like ' || quote_literal(gtype) || ' AND f.is_analysis = ' || quote_literal(is_an) || ';'; END IF; FOR myrc IN SELECT * FROM get_feature_ids(query) LOOP RETURN NEXT myrc; END LOOP; RETURN ; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; -- TD RETUTN NULL => RETURN; CREATE OR REPLACE FUNCTION get_feature_ids_by_type_name(character varying, text, bpchar) RETURNS SETOF feature_by_fx_type AS $BODY$ DECLARE gtype alias for $1; name alias for $2; is_an alias for $3; query TEXT; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN query := 'SELECT DISTINCT f.feature_id FROM feature f INNER join cvterm t ON (f.type_id = t.cvterm_id) WHERE t.name = ' || quote_literal(gtype) || ' AND (f.uniquename = ' || quote_literal(name) || ' OR f.name = ' || quote_literal(name) || ') AND f.is_analysis = ' || quote_literal(is_an) || ';'; IF (STRPOS(name, '%') > 0) THEN query := 'SELECT DISTINCT f.feature_id FROM feature f INNER join cvterm t ON (f.type_id = t.cvterm_id) WHERE t.name = ' || quote_literal(gtype) || ' AND (f.uniquename like ' || quote_literal(name) || ' OR f.name like ' || quote_literal(name) || ') AND f.is_analysis = ' || quote_literal(is_an) || ';'; END IF; FOR myrc IN SELECT * FROM get_feature_ids(query) LOOP RETURN NEXT myrc; END LOOP; RETURN ; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; -- TD RETUTN NULL => RETURN; CREATE OR REPLACE FUNCTION get_feature_ids_by_type_src(character varying, text, bpchar) RETURNS SETOF feature_by_fx_type AS $BODY$ DECLARE gtype alias for $1; src alias for $2; is_an alias for $3; query TEXT; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN query := 'SELECT DISTINCT f.feature_id FROM feature f INNER join cvterm t ON (f.type_id = t.cvterm_id) INNER join featureloc fl ON (f.feature_id = fl.feature_id) INNER join feature src ON (src.feature_id = fl.srcfeature_id) WHERE t.name = ' || quote_literal(gtype) || ' AND src.uniquename = ' || quote_literal(src) || ' AND f.is_analysis = ' || quote_literal(is_an) || ';'; IF (STRPOS(gtype, '%') > 0) THEN query := 'SELECT DISTINCT f.feature_id FROM feature f INNER join cvterm t ON (f.type_id = t.cvterm_id) INNER join featureloc fl ON (f.feature_id = fl.feature_id) INNER join feature src ON (src.feature_id = fl.srcfeature_id) WHERE t.name like ' || quote_literal(gtype) || ' AND src.uniquename = ' || quote_literal(src) || ' AND f.is_analysis = ' || quote_literal(is_an) || ';'; END IF; FOR myrc IN SELECT * FROM get_feature_ids(query) LOOP RETURN NEXT myrc; END LOOP; RETURN ; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION get_feature_relationship_type_id(character varying) RETURNS integer AS $BODY$ SELECT cvterm_id FROM cv INNER JOIN cvterm USING (cv_id) WHERE cvterm.name=$1 AND cv.name='relationship' $BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION get_featureprop_type_id(character varying) RETURNS integer AS $BODY$ SELECT cvterm_id FROM cv INNER JOIN cvterm USING (cv_id) WHERE cvterm.name=$1 AND cv.name='feature_property' $BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION get_gene_synonyms(text) RETURNS text AS $BODY$ DECLARE v_identifier alias for $1; v_gene_synonyms text := ''; v_synonyms RECORD; BEGIN FOR v_synonyms IN SELECT name FROM gene_synonym WHERE key = v_identifier and name != v_identifier LOOP -- RAISE NOTICE '%',v_synonyms.name; IF v_gene_synonyms = '' THEN v_gene_synonyms := v_synonyms.name; ELSE v_gene_synonyms := v_gene_synonyms || ', ' || v_synonyms.name; END IF; END LOOP; RETURN v_gene_synonyms; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION get_graph_above(integer) RETURNS SETOF cvtermpath AS $BODY$ DECLARE leaf alias for $1; cterm cvtermpath%ROWTYPE; cterm2 cvtermpath%ROWTYPE; BEGIN FOR cterm IN SELECT * FROM cvterm_relationship WHERE subject_id = leaf LOOP RETURN NEXT cterm; FOR cterm2 IN SELECT * FROM get_all_object_ids(cterm.object_id) LOOP RETURN NEXT cterm2; END LOOP; END LOOP; RETURN; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION get_graph_below(integer) RETURNS SETOF cvtermpath AS $BODY$ DECLARE root alias for $1; cterm cvtermpath%ROWTYPE; cterm2 cvtermpath%ROWTYPE; BEGIN FOR cterm IN SELECT * FROM cvterm_relationship WHERE object_id = root LOOP RETURN NEXT cterm; FOR cterm2 IN SELECT * FROM get_all_subject_ids(cterm.subject_id) LOOP RETURN NEXT cterm2; END LOOP; END LOOP; RETURN; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION get_it_sub_cvterm_ids(text) RETURNS SETOF cvterm AS $BODY$ DECLARE query alias for $1; cterm cvterm%ROWTYPE; cterm2 cvterm%ROWTYPE; BEGIN FOR cterm IN EXECUTE query LOOP RETURN NEXT cterm; FOR cterm2 IN SELECT subject_id as cvterm_id FROM get_all_subject_ids(cterm.cvterm_id) LOOP RETURN NEXT cterm2; END LOOP; END LOOP; RETURN; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION get_organism_id(character varying, character varying) RETURNS integer AS $BODY$ SELECT organism_id FROM organism WHERE genus=$1 AND species=$2 $BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION get_organism_id_abbrev(character varying) RETURNS integer AS $BODY$ SELECT organism_id FROM organism WHERE substr(genus,1,1)=substring($1,1,1) AND species=substring($1,position(' ' IN $1)+1) $BODY$ LANGUAGE 'sql' VOLATILE; -- TD CREATE OR REPLACE FUNCTION get_sub_feature_ids(text) RETURNS SETOF feature_by_fx_type AS $BODY$ DECLARE sql alias for $1; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN FOR myrc IN EXECUTE sql LOOP FOR myrc2 IN SELECT * FROM get_sub_feature_ids(myrc.feature_id) LOOP RETURN NEXT myrc2; END LOOP; END LOOP; RETURN ; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; -- TD CREATE OR REPLACE FUNCTION get_sub_feature_ids(integer) RETURNS SETOF feature_by_fx_type AS $BODY$ DECLARE root alias for $1; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN FOR myrc IN SELECT DISTINCT subject_id AS feature_id FROM feature_relationship WHERE object_id = root LOOP RETURN NEXT myrc; FOR myrc2 IN SELECT * FROM get_sub_feature_ids(myrc.feature_id) LOOP RETURN NEXT myrc2; END LOOP; END LOOP; RETURN ; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; -- TD CREATE OR REPLACE FUNCTION get_sub_feature_ids(integer, integer) RETURNS SETOF feature_by_fx_type AS $BODY$ DECLARE root alias for $1; depth alias for $2; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN FOR myrc IN SELECT DISTINCT subject_id AS feature_id, depth FROM feature_relationship WHERE object_id = root LOOP RETURN NEXT myrc; FOR myrc2 IN SELECT * FROM get_sub_feature_ids(myrc.feature_id,depth+1) LOOP RETURN NEXT myrc2; END LOOP; END LOOP; RETURN ; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; -- TD CREATE OR REPLACE FUNCTION get_sub_feature_ids_by_type_src(character varying, text, bpchar) RETURNS SETOF feature_by_fx_type AS $BODY$ DECLARE gtype alias for $1; src alias for $2; is_an alias for $3; query text; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN query := 'SELECT DISTINCT f.feature_id FROM feature f INNER join cvterm t ON (f.type_id = t.cvterm_id) INNER join featureloc fl ON (f.feature_id = fl.feature_id) INNER join feature src ON (src.feature_id = fl.srcfeature_id) WHERE t.name = ' || quote_literal(gtype) || ' AND src.uniquename = ' || quote_literal(src) || ' AND f.is_analysis = ' || quote_literal(is_an) || ';'; IF (STRPOS(gtype, '%') > 0) THEN query := 'SELECT DISTINCT f.feature_id FROM feature f INNER join cvterm t ON (f.type_id = t.cvterm_id) INNER join featureloc fl ON (f.feature_id = fl.feature_id) INNER join feature src ON (src.feature_id = fl.srcfeature_id) WHERE t.name like ' || quote_literal(gtype) || ' AND src.uniquename = ' || quote_literal(src) || ' AND f.is_analysis = ' || quote_literal(is_an) || ';'; END IF; FOR myrc IN SELECT * FROM get_sub_feature_ids(query) LOOP RETURN NEXT myrc; END LOOP; RETURN ; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; -- TD CREATE OR REPLACE FUNCTION get_up_feature_ids(integer) RETURNS SETOF feature_by_fx_type AS $BODY$ DECLARE leaf alias for $1; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN FOR myrc IN SELECT DISTINCT object_id AS feature_id FROM feature_relationship WHERE subject_id = leaf LOOP RETURN NEXT myrc; FOR myrc2 IN SELECT * FROM get_up_feature_ids(myrc.feature_id) LOOP RETURN NEXT myrc2; END LOOP; END LOOP; RETURN ; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; -- TD CREATE OR REPLACE FUNCTION get_up_feature_ids(text) RETURNS SETOF feature_by_fx_type AS $BODY$ DECLARE sql alias for $1; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN FOR myrc IN EXECUTE sql LOOP FOR myrc2 IN SELECT * FROM get_up_feature_ids(myrc.feature_id) LOOP RETURN NEXT myrc2; END LOOP; END LOOP; RETURN ; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; -- TD CREATE OR REPLACE FUNCTION get_up_feature_ids(integer, integer) RETURNS SETOF feature_by_fx_type AS $BODY$ DECLARE leaf alias for $1; depth alias for $2; myrc feature_by_fx_type%ROWTYPE; myrc2 feature_by_fx_type%ROWTYPE; BEGIN FOR myrc IN SELECT DISTINCT object_id AS feature_id, depth FROM feature_relationship WHERE subject_id = leaf LOOP RETURN NEXT myrc; FOR myrc2 IN SELECT * FROM get_up_feature_ids(myrc.feature_id,depth+1) LOOP RETURN NEXT myrc2; END LOOP; END LOOP; RETURN ; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION p(integer, integer) RETURNS point AS 'SELECT point ($1, $2)' LANGUAGE 'sql' VOLATILE; /* CREATE OR REPLACE FUNCTION phylonode_depth(integer) RETURNS double precision AS $BODY$DECLARE id ALIAS FOR $1; DECLARE depth FLOAT := 0; DECLARE curr_node phylonode%ROWTYPE; BEGIN SELECT INTO curr_node * FROM phylonode WHERE phylonode_id=id; depth = depth + curr_node.distance; IF curr_node.parent_phylonode_id IS NULL THEN RETURN depth; ELSE RETURN depth + phylonode_depth(curr_node.parent_phylonode_id); END IF; END $BODY$ LANGUAGE 'plpgsql' VOLATILE; */ CREATE OR REPLACE FUNCTION plpgsql_call_handler() RETURNS language_handler AS '$libdir/plpgsql', 'plpgsql_call_handler' LANGUAGE 'c' VOLATILE; CREATE OR REPLACE FUNCTION project_featureloc_up(integer, integer) RETURNS featureloc AS $BODY$DECLARE in_featureloc_id alias for $1; up_srcfeature_id alias for $2; in_featureloc featureloc%ROWTYPE; up_featureloc featureloc%ROWTYPE; nu_featureloc featureloc%ROWTYPE; nu_fmin INT; nu_fmax INT; nu_strand INT; BEGIN SELECT INTO in_featureloc featureloc.* FROM featureloc WHERE featureloc_id = in_featureloc_id; SELECT INTO up_featureloc up_fl.* FROM featureloc AS in_fl INNER JOIN featureloc AS up_fl ON (in_fl.srcfeature_id = up_fl.feature_id) WHERE in_fl.featureloc_id = in_featureloc_id AND up_fl.srcfeature_id = up_srcfeature_id; IF up_featureloc.strand IS NULL THEN RETURN NULL; END IF; IF up_featureloc.strand < 0 THEN nu_fmin = project_point_up(in_featureloc.fmax, up_featureloc.fmin,up_featureloc.fmax,-1); nu_fmax = project_point_up(in_featureloc.fmin, up_featureloc.fmin,up_featureloc.fmax,-1); nu_strand = -in_featureloc.strand; ELSE nu_fmin = project_point_up(in_featureloc.fmin, up_featureloc.fmin,up_featureloc.fmax,1); nu_fmax = project_point_up(in_featureloc.fmax, up_featureloc.fmin,up_featureloc.fmax,1); nu_strand = in_featureloc.strand; END IF; in_featureloc.fmin = nu_fmin; in_featureloc.fmax = nu_fmax; in_featureloc.strand = nu_strand; in_featureloc.srcfeature_id = up_featureloc.srcfeature_id; RETURN in_featureloc; END$BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION project_point_down(integer, integer, integer, integer) RETURNS integer AS $BODY$SELECT CASE WHEN $4<0 THEN $3-$1 ELSE $1+$2 END AS p$BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION project_point_up(integer, integer, integer, integer) RETURNS integer AS $BODY$SELECT CASE WHEN $4<0 THEN $3-$1 -- rev strand ELSE $1-$2 -- fwd strand END AS p$BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION remove_transformant_image_location(character varying, character varying) RETURNS integer AS $BODY$ DECLARE v_image_location ALIAS FOR $1; v_user ALIAS FOR $2; v_transformant_id INT; v_fragment_id INT; v_transformat_type character varying; v_image_loc_type_id INT; v_row_count INT; v_image_count INT; v_imaged_transformant_count INT; v_owner_type_id INT; v_status character varying = 'crossed'; BEGIN -- ======================================= -- Find feature id -- ======================================= SELECT INTO v_transformant_id feature_id FROM featureprop WHERE value = v_image_location; IF NOT FOUND THEN RAISE EXCEPTION 'image location % not found', v_image_location; END IF; -- ======================================= -- First determine that the feature id is -- a transformant -- ======================================= SELECT INTO v_transformat_type cvterm.name FROM feature, cvterm WHERE type_id = cvterm_id AND feature_id = v_transformant_id; IF v_transformat_type != 'transformant' THEN RAISE EXCEPTION 'feature_id is not a transformant'; END IF; SELECT INTO v_image_loc_type_id cvterm_id FROM cvterm WHERE name = 'image_location' AND is_obsolete = 0; SELECT INTO v_owner_type_id cvterm_id FROM cvterm WHERE name = 'owner' AND is_obsolete = 0; -- ======================================= -- Remove the image from featureprop -- ======================================= DELETE FROM featureprop WHERE feature_id = v_transformant_id AND value = v_image_location AND type_id = v_image_loc_type_id; GET DIAGNOSTICS v_row_count = ROW_COUNT; -- ======================================= -- Continue only if one row was deleted -- ======================================= IF v_row_count = 1 THEN -- ======================================= -- Determine number of images associated to -- the transformant -- ======================================= SELECT INTO v_image_count count(1) FROM featureprop WHERE feature_id = v_transformant_id AND type_id = v_image_loc_type_id; -- ======================================= -- Update the transformant owner status from -- "imaged" to "crossed" only if no -- image is associated to the transformant -- ======================================= IF v_image_count = 0 THEN UPDATE featureprop SET value = v_status WHERE feature_id = v_transformant_id AND type_id = (SELECT cvterm_id FROM cvterm WHERE name = 'owner' AND is_obsolete = 0) AND value ='imaged'; v_row_count = null; GET DIAGNOSTICS v_row_count = ROW_COUNT; INSERT INTO feature_status_history VALUES (v_transformant_id, v_status, v_user, now()); -- ======================================= -- Continue only if one row was updated -- ======================================= IF v_row_count = 1 THEN -- ======================================= -- Determine number of transformants associated -- to the tiling path fragment which have -- an associated image -- ======================================= SELECT INTO v_imaged_transformant_count count(1) FROM featureprop WHERE feature_id in (SELECT feature_id FROM featureprop WHERE value = (SELECT value FROM featureprop WHERE feature_id = v_transformant_id AND type_id = (SELECT cvterm_id FROM cvterm WHERE name='tiling_path_fragment_id' AND is_obsolete=0) ) AND type_id = (SELECT cvterm_id FROM cvterm WHERE name='tiling_path_fragment_id' AND is_obsolete=0) ) AND type_id = v_owner_type_id AND value = 'imaged'; -- ======================================= -- Update the fragment owner status from -- "imaged" to "transformant" only if all -- associated transformants have no association -- to an image -- ======================================= IF v_imaged_transformant_count = 0 THEN SELECT INTO v_fragment_id value FROM featureprop WHERE feature_id = v_transformant_id AND type_id = (SELECT cvterm_id FROM cvterm WHERE name='tiling_path_fragment_id' AND is_obsolete=0); UPDATE featureprop SET value = v_status WHERE feature_id = v_fragment_id AND type_id = (SELECT cvterm_id FROM cvterm WHERE name = 'owner' AND is_obsolete = 0) AND value = 'imaged'; v_row_count = null; GET DIAGNOSTICS v_row_count = ROW_COUNT; INSERT INTO feature_status_history VALUES (v_fragment_id, v_status, v_user, now()); -- ======================================= -- Continue only if one row was updated -- ======================================= IF v_row_count != 1 THEN RAISE EXCEPTION 'unable to update fragment status from imaged to transformant <transformantFeatureId:%>',v_transformant_id; END IF; END IF; ELSE RAISE EXCEPTION 'unable to update transformant status from imaged to transformant <transformantFeatureId:%>', v_transformant_id ; END IF; END IF; ELSE RAISE EXCEPTION 'unable to delete image location'; END IF; RETURN v_row_count; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION reverse_string(text) RETURNS text AS $BODY$ DECLARE reversed_string TEXT; incoming ALIAS FOR $1; BEGIN reversed_string = ''; FOR i IN REVERSE char_length(incoming)..1 loop reversed_string = reversed_string || substring(incoming FROM i FOR 1); END loop; RETURN reversed_string; END$BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION reverse_complement(text) RETURNS text AS 'SELECT reverse_string(complement_residues($1))' LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION store_analysis(character varying, character varying, character varying) RETURNS integer AS $BODY$DECLARE v_program ALIAS FOR $1; v_programversion ALIAS FOR $2; v_sourcename ALIAS FOR $3; pkval INTEGER; BEGIN SELECT INTO pkval analysis_id FROM analysis WHERE program=v_program AND programversion=v_programversion AND sourcename=v_sourcename; IF NOT FOUND THEN INSERT INTO analysis (program,programversion,sourcename) VALUES (v_program,v_programversion,v_sourcename); RETURN currval('analysis_analysis_id_seq'); END IF; RETURN pkval; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION store_analysisfeature(integer, integer, integer, integer, integer, integer, character varying, character varying, integer, boolean, integer, double precision, double precision, double precision, double precision) RETURNS integer AS $BODY$DECLARE v_srcfeature_id ALIAS FOR $1; v_fmin ALIAS FOR $2; v_fmax ALIAS FOR $3; v_strand ALIAS FOR $4; v_dbxref_id ALIAS FOR $5; v_organism_id ALIAS FOR $6; v_name ALIAS FOR $7; v_uniquename ALIAS FOR $8; v_type_id ALIAS FOR $9; v_is_analysis ALIAS FOR $10; v_analysis_id ALIAS FOR $11; v_rawscore ALIAS FOR $12; v_normscore ALIAS FOR $13; v_significance ALIAS FOR $14; v_identity ALIAS FOR $15; v_feature_id INT; v_analysisfeature_id INT; BEGIN IF v_is_analysis != 't' THEN RAISE EXCEPTION 'is_analysis must be true'; END IF; SELECT INTO v_feature_id store_feature( v_srcfeature_id, v_fmin, v_fmax, v_strand, v_dbxref_id, v_organism_id, v_name, v_uniquename, v_type_id, v_is_analysis); SELECT INTO v_analysisfeature_id analysisfeature_id FROM analysisfeature WHERE feature_id=v_feature_id AND analysis_id=v_analysis_id; IF NOT FOUND THEN INSERT INTO analysisfeature (analysis_id,feature_id, rawscore, normscore, significance, identity) VALUES ( v_analysis_id, v_feature_id, v_rawscore, v_normscore, v_significance, v_identity ); RETURN v_feature_id; ELSE UPDATE analysisfeature SET rawscore= v_rawscore, normscore= v_normscore, significance= v_significance, identity = v_identity WHERE analysisfeature_id=v_analysisfeature_id; END IF; RETURN v_feature_id; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION store_db(character varying) RETURNS integer AS $BODY$DECLARE v_name ALIAS FOR $1; v_db_id INTEGER; BEGIN SELECT INTO v_db_id db_id FROM db WHERE name=v_name; IF NOT FOUND THEN INSERT INTO db (name) VALUES (v_name); RETURN currval('db_db_id_seq'); END IF; RETURN v_db_id; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION store_dbxref(character varying, character varying) RETURNS integer AS $BODY$DECLARE v_dbname ALIAS FOR $1; v_accession ALIAS FOR $2; v_db_id INTEGER; v_dbxref_id INTEGER; BEGIN SELECT INTO v_db_id store_db(v_dbname); SELECT INTO v_dbxref_id dbxref_id FROM dbxref WHERE db_id=v_db_id AND accession=v_accession; IF NOT FOUND THEN INSERT INTO dbxref (db_id,accession) VALUES (v_db_id,v_accession); RETURN currval('dbxref_dbxref_id_seq'); END IF; RETURN v_dbxref_id; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION store_feature(integer, integer, integer, integer, integer, integer, character varying, character varying, integer, boolean) RETURNS integer AS $BODY$DECLARE v_srcfeature_id ALIAS FOR $1; v_fmin ALIAS FOR $2; v_fmax ALIAS FOR $3; v_strand ALIAS FOR $4; v_dbxref_id ALIAS FOR $5; v_organism_id ALIAS FOR $6; v_name ALIAS FOR $7; v_uniquename ALIAS FOR $8; v_type_id ALIAS FOR $9; v_is_analysis ALIAS FOR $10; v_feature_id INT; v_featureloc_id INT; BEGIN IF v_dbxref_id IS NULL THEN SELECT INTO v_feature_id feature_id FROM feature WHERE uniquename=v_uniquename AND organism_id=v_organism_id AND type_id=v_type_id; ELSE SELECT INTO v_feature_id feature_id FROM feature WHERE dbxref_id=v_dbxref_id; END IF; IF NOT FOUND THEN INSERT INTO feature ( dbxref_id , organism_id , name , uniquename , type_id , is_analysis ) VALUES ( v_dbxref_id , v_organism_id , v_name , v_uniquename , v_type_id , v_is_analysis ); v_feature_id = currval('feature_feature_id_seq'); ELSE UPDATE feature SET dbxref_id = v_dbxref_id , organism_id = v_organism_id , name = v_name , uniquename = v_uniquename , type_id = v_type_id , is_analysis = v_is_analysis WHERE feature_id=v_feature_id; END IF; PERFORM store_featureloc(v_feature_id, v_srcfeature_id, v_fmin, v_fmax, v_strand, 0, 0); RETURN v_feature_id; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION store_feature_dbxref(integer, character varying, character varying) RETURNS integer AS $BODY$DECLARE v_feature_id ALIAS FOR $1; v_dbname ALIAS FOR $2; v_accession ALIAS FOR $3; v_dbxref_id INT; v_feature_dbxref_id INT; BEGIN IF v_feature_id IS NULL THEN RAISE EXCEPTION 'feature_id cannot be null'; END IF; SELECT INTO v_dbxref_id store_dbxref(v_dbname,v_accession); SELECT INTO v_feature_dbxref_id feature_dbxref_id FROM feature_dbxref WHERE feature_id=v_feature_id AND dbxref_id=v_dbxref_id; IF NOT FOUND THEN INSERT INTO feature_dbxref ( feature_id, dbxref_id) VALUES ( v_feature_id, v_dbxref_id); END IF; RETURN v_dbxref_id; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION store_feature_synonym(integer, character varying, integer, boolean, boolean, integer) RETURNS integer AS $BODY$DECLARE v_feature_id ALIAS FOR $1; v_syn ALIAS FOR $2; v_type_id ALIAS FOR $3; v_is_current ALIAS FOR $4; v_is_internal ALIAS FOR $5; v_pub_id ALIAS FOR $6; v_synonym_id INT; v_feature_synonym_id INT; BEGIN IF v_feature_id IS NULL THEN RAISE EXCEPTION 'feature_id cannot be null'; END IF; SELECT INTO v_synonym_id synonym_id FROM synonym WHERE name=v_syn AND type_id=v_type_id; IF NOT FOUND THEN INSERT INTO synonym ( name, synonym_sgml, type_id) VALUES ( v_syn, v_syn, v_type_id); v_synonym_id = currval('synonym_synonym_id_seq'); END IF; SELECT INTO v_feature_synonym_id feature_synonym_id FROM feature_synonym WHERE feature_id=v_feature_id AND synonym_id=v_synonym_id AND pub_id=v_pub_id; IF NOT FOUND THEN INSERT INTO feature_synonym ( feature_id, synonym_id, pub_id, is_current, is_internal) VALUES ( v_feature_id, v_synonym_id, v_pub_id, v_is_current, v_is_internal); v_feature_synonym_id = currval('feature_synonym_feature_synonym_id_seq'); ELSE UPDATE feature_synonym SET is_current=v_is_current, is_internal=v_is_internal WHERE feature_synonym_id=v_feature_synonym_id; END IF; RETURN v_feature_synonym_id; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION store_featureloc(integer, integer, integer, integer, integer, integer, integer) RETURNS integer AS $BODY$DECLARE v_feature_id ALIAS FOR $1; v_srcfeature_id ALIAS FOR $2; v_fmin ALIAS FOR $3; v_fmax ALIAS FOR $4; v_strand ALIAS FOR $5; v_rank ALIAS FOR $6; v_locgroup ALIAS FOR $7; v_featureloc_id INT; BEGIN IF v_feature_id IS NULL THEN RAISE EXCEPTION 'feature_id cannot be null'; END IF; SELECT INTO v_featureloc_id featureloc_id FROM featureloc WHERE feature_id=v_feature_id AND rank=v_rank AND locgroup=v_locgroup; IF NOT FOUND THEN INSERT INTO featureloc ( feature_id, srcfeature_id, fmin, fmax, strand, rank, locgroup) VALUES ( v_feature_id, v_srcfeature_id, v_fmin, v_fmax, v_strand, v_rank, v_locgroup); v_featureloc_id = currval('featureloc_featureloc_id_seq'); ELSE UPDATE featureloc SET feature_id = v_feature_id, srcfeature_id = v_srcfeature_id, fmin = v_fmin, fmax = v_fmax, strand = v_strand, rank = v_rank, locgroup = v_locgroup WHERE featureloc_id=v_featureloc_id; END IF; RETURN v_featureloc_id; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION store_featureprop(integer, character varying, character varying, integer) RETURNS integer AS $BODY$DECLARE v_feature_id ALIAS FOR $1; v_propname ALIAS FOR $2; v_value ALIAS FOR $3; v_rank ALIAS FOR $4; v_featureprop_id INT; v_type_id INT; BEGIN IF v_feature_id IS NULL THEN RAISE EXCEPTION 'feature_id cannot be null'; END IF; SELECT INTO v_type_id cvterm_id FROM cvterm INNER JOIN cv USING (cv_id) WHERE cv.name='feature_property' AND cvterm.name=v_propname; IF NOT FOUND THEN RAISE EXCEPTION 'no such featureprop in cvterm as %', v_propname; END IF; DELETE FROM featureprop WHERE feature_id=v_feature_id AND type_id=v_type_id AND rank=v_rank; INSERT INTO featureprop ( feature_id, type_id, rank, value) VALUES ( v_feature_id, v_type_id, v_rank, v_value); v_featureprop_id = currval('featureprop_featureprop_id_seq'); RETURN v_featureprop_id; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION store_featureprop(integer, character varying, character varying) RETURNS integer AS $BODY$DECLARE v_feature_id ALIAS FOR $1; v_propname ALIAS FOR $2; v_value ALIAS FOR $3; -- TD v_rank_id ALIAS FOR $4; v_featureprop_id INT; v_type_id INT; BEGIN IF v_feature_id IS NULL THEN RAISE EXCEPTION 'feature_id cannot be null'; END IF; SELECT INTO v_type_id cvterm_id FROM cvterm INNER JOIN cv USING (cv_id) WHERE cv.name='feature_property' AND cvterm.name=v_propname; IF NOT FOUND THEN RAISE EXCEPTION 'no such featureprop in cvterm as %', v_propname; END IF; DELETE FROM featureprop WHERE feature_id=v_feature_id AND type_id=v_type_id AND rank=v_rank; INSERT INTO featureprop ( feature_id, type_id, rank, value) VALUES ( v_feature_id, v_type_id, v_rank, v_value); RETURN v_dbxref_id; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION store_featureprop(character varying, character varying, integer) RETURNS integer AS $BODY$DECLARE v_feature_id ALIAS FOR $3; v_propname ALIAS FOR $1; v_value ALIAS FOR $2; v_rank_id INT; v_featureprop_id INT; v_type_id INT; BEGIN -- check that feature id is not null IF v_feature_id IS NULL THEN RAISE EXCEPTION 'feature_id cannot be null'; END IF; -- get cvterm type id for feature property name SELECT INTO v_type_id cvterm_id FROM cvterm INNER JOIN cv USING (cv_id) WHERE cv.name='feature_property' AND cvterm.name=v_propname; IF NOT FOUND THEN RAISE EXCEPTION 'no such featureprop in cvterm as %', v_propname; END IF; -- check if property is in featureprop; otherwise insert it. SELECT INTO v_rank_id rank FROM featureprop WHERE feature_id=v_feature_id AND type_id=v_type_id AND value=v_value; IF NOT FOUND THEN SELECT INTO v_rank_id (case when max(rank) is null then 0 else max(rank) + 1 end) FROM featureprop WHERE feature_id = v_feature_id AND type_id = v_type_id; INSERT INTO featureprop ( feature_id, type_id, rank, value) VALUES ( v_feature_id, v_type_id, v_rank_id, v_value); END IF; RETURN v_rank_id; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION store_organism(character varying, character varying, character varying) RETURNS integer AS $BODY$DECLARE v_genus ALIAS FOR $1; v_species ALIAS FOR $2; v_common_name ALIAS FOR $3; v_organism_id INTEGER; BEGIN SELECT INTO v_organism_id organism_id FROM organism WHERE genus=v_genus AND species=v_species; IF NOT FOUND THEN INSERT INTO organism (genus,species,common_name) VALUES (v_genus,v_species,v_common_name); RETURN currval('organism_organism_id_seq'); ELSE UPDATE organism SET common_name=v_common_name WHERE organism_id = v_organism_id; END IF; RETURN v_organism_id; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION store_organism(character varying, character varying) RETURNS integer AS $BODY$DECLARE v_genus ALIAS FOR $1; v_species ALIAS FOR $2; v_organism_id INTEGER; BEGIN SELECT INTO v_organism_id organism_id FROM organism WHERE genus=v_genus AND species=v_species; IF NOT FOUND THEN INSERT INTO organism (genus,species_name) VALUES (v_genus,v_species_common_name); RETURN currval('organism_organism_id_seq'); END IF; RETURN v_organism_id; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION store_regtype(integer, character varying) RETURNS integer AS $BODY$DECLARE v_feature_id ALIAS FOR $1; v_regtype ALIAS FOR $2; v_f_id INT; v_row_count INT; BEGIN SELECT INTO v_f_id feature_id FROM fragment_regulatory_type WHERE feature_id = v_feature_id; IF NOT FOUND THEN INSERT INTO fragment_regulatory_type ( feature_id, regtype ) VALUES ( v_feature_id, v_regtype ); ELSE UPDATE fragment_regulatory_type SET regtype = v_regtype WHERE feature_id = v_feature_id; END IF; GET DIAGNOSTICS v_row_count = ROW_COUNT; RETURN v_row_count; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION store_transformant(integer, character varying, character varying) RETURNS integer AS $BODY$DECLARE v_fragment_id ALIAS FOR $1; v_uniquename ALIAS FOR $2; v_status ALIAS FOR $3; v_type_id INT; v_feature_id INT; v_featureloc_id INT; v_new_status CHAR; BEGIN v_feature_id = nextval('feature_feature_id_seq'); SELECT INTO v_type_id cvterm_id FROM cvterm WHERE name = 'transformant' AND is_obsolete = 0; INSERT INTO feature ( feature_id , organism_id , name , uniquename , residues , seqlen , md5checksum , type_id ) SELECT v_feature_id , organism_id , v_uniquename , v_uniquename , residues , seqlen , md5checksum , v_type_id FROM feature WHERE feature_id = v_fragment_id; v_featureloc_id = nextval('featureloc_featureloc_id_seq'); INSERT INTO featureloc ( featureloc_id , feature_id , srcfeature_id , fmin , is_fmin_partial , fmax , is_fmax_partial , strand , phase , residue_info , locgroup , rank ) SELECT v_featureloc_id , v_feature_id , srcfeature_id , fmin , is_fmin_partial , fmax , is_fmax_partial , strand , phase , residue_info , locgroup , rank FROM featureloc WHERE feature_id = v_fragment_id; SELECT INTO v_type_id cvterm_id FROM cvterm WHERE name = 'owner' AND is_obsolete = 0; IF (v_status is null) THEN v_new_status = 'gsi_ready'; INSERT INTO featureprop ( feature_id , type_id , value ) VALUES ( v_feature_id , v_type_id , v_new_status ); ELSE INSERT INTO featureprop ( feature_id , type_id , value ) VALUES ( v_feature_id , v_type_id , v_status ); END IF; SELECT INTO v_type_id cvterm_id FROM cvterm WHERE name = 'tiling_path_fragment_id' AND is_obsolete = 0; INSERT INTO featureprop ( feature_id , type_id , value ) VALUES ( v_feature_id , v_type_id , v_fragment_id ); RETURN v_feature_id; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION store_transformant_image_location(integer, character varying, integer, character varying) RETURNS integer AS $BODY$ DECLARE v_transformant_id ALIAS FOR $1; v_image_location ALIAS FOR $2; v_rank ALIAS FOR $3; v_user ALIAS FOR $4; v_fragment_id INT; v_transformat_type character varying; v_type_id INT; v_row_count INT; v_status character varying = 'imaged'; BEGIN SELECT INTO v_transformat_type cvterm.name FROM feature, cvterm WHERE type_id = cvterm_id AND feature_id = v_transformant_id; IF v_transformat_type != 'transformant' THEN RAISE EXCEPTION 'feature_id is not a transformant'; END IF; SELECT INTO v_type_id cvterm_id FROM cvterm WHERE name = 'image_location' AND is_obsolete = 0; UPDATE featureprop SET value = v_image_location WHERE feature_id = v_transformant_id AND rank = v_rank AND type_id = v_type_id; GET DIAGNOSTICS v_row_count = ROW_COUNT; IF v_row_count = 1 THEN UPDATE featureprop SET value = v_status WHERE feature_id = v_transformant_id AND type_id = (SELECT cvterm_id FROM cvterm WHERE name = 'owner' AND is_obsolete = 0); SELECT INTO v_fragment_id value FROM featureprop WHERE feature_id = v_transformant_id AND type_id = (SELECT cvterm_id FROM cvterm WHERE name='tiling_path_fragment_id' AND is_obsolete=0); UPDATE featureprop SET value = v_status WHERE feature_id = v_fragment_id AND type_id = (SELECT cvterm_id FROM cvterm WHERE name = 'owner' AND is_obsolete = 0); INSERT INTO feature_status_history VALUES (v_transformant_id, v_status, v_user, now()); INSERT INTO feature_status_history VALUES (v_fragment_id, v_status, v_user, now()); ELSE RAISE EXCEPTION 'unable to update image location'; END IF; RETURN v_row_count; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION store_transformant_image_location(integer) RETURNS integer AS $BODY$ DECLARE v_transformant_id ALIAS FOR $1; v_image_location character varying = ' '; v_type_id INT; v_rank INT; v_transformat_type character varying; BEGIN SELECT INTO v_transformat_type cvterm.name FROM feature, cvterm WHERE type_id = cvterm_id AND feature_id = v_transformant_id; IF v_transformat_type != 'transformant' THEN RAISE EXCEPTION 'feature_id is not a transformant'; END IF; SELECT INTO v_type_id cvterm_id FROM cvterm WHERE name = 'image_location' AND is_obsolete = 0; SELECT INTO v_rank (case when max(rank) is null then 0 else max(rank) + 1 end) FROM featureprop WHERE feature_id = v_transformant_id AND type_id = v_type_id; INSERT INTO featureprop(feature_id, type_id, value, rank) VALUES (v_transformant_id, v_type_id, v_image_location,v_rank); RETURN v_rank; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION subsequence(integer, integer, integer, integer) RETURNS text AS $BODY$SELECT CASE WHEN $4<0 THEN reverse_complement(substring(srcf.residues,$2+1,($3-$2))) ELSE substring(residues,$2+1,($3-$2)) END AS residues FROM feature AS srcf WHERE srcf.feature_id=$1$BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION subsequence_by_feature(integer, integer, integer) RETURNS text AS $BODY$SELECT CASE WHEN strand<0 THEN reverse_complement(substring(srcf.residues,fmin+1,(fmax-fmin))) ELSE substring(srcf.residues,fmin+1,(fmax-fmin)) END AS residues FROM feature AS srcf INNER JOIN featureloc ON (srcf.feature_id=featureloc.srcfeature_id) WHERE featureloc.feature_id=$1 AND featureloc.rank=$2 AND featureloc.locgroup=$3$BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION subsequence_by_feature(integer) RETURNS text AS 'SELECT subsequence_by_feature($1,0,0)' LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION subsequence_by_featureloc(integer) RETURNS text AS $BODY$SELECT CASE WHEN strand<0 THEN reverse_complement(substring(srcf.residues,fmin+1,(fmax-fmin))) ELSE substring(srcf.residues,fmin+1,(fmax-fmin)) END AS residues FROM feature AS srcf INNER JOIN featureloc ON (srcf.feature_id=featureloc.srcfeature_id) WHERE featureloc_id=$1$BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION subsequence_by_subfeatures(integer, integer, integer, integer) RETURNS text AS $BODY$ DECLARE v_feature_id ALIAS FOR $1; DECLARE v_rtype_id ALIAS FOR $2; DECLARE v_rank ALIAS FOR $3; DECLARE v_locgroup ALIAS FOR $4; DECLARE subseq TEXT; DECLARE seqrow RECORD; BEGIN subseq = ''; FOR seqrow IN SELECT CASE WHEN strand<0 THEN reverse_complement(substring(srcf.residues,fmin+1,(fmax-fmin))) ELSE substring(srcf.residues,fmin+1,(fmax-fmin)) END AS residues FROM feature AS srcf INNER JOIN featureloc ON (srcf.feature_id=featureloc.srcfeature_id) INNER JOIN feature_relationship AS fr ON (fr.subject_id=featureloc.feature_id) WHERE fr.object_id=v_feature_id AND fr.type_id=v_rtype_id AND featureloc.rank=v_rank AND featureloc.locgroup=v_locgroup ORDER BY fr.rank LOOP subseq = subseq || seqrow.residues; END LOOP; RETURN subseq; END $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION subsequence_by_typed_subfeatures(integer, integer, integer, integer) RETURNS text AS $BODY$ DECLARE v_feature_id ALIAS FOR $1; DECLARE v_ftype_id ALIAS FOR $2; DECLARE v_rank ALIAS FOR $3; DECLARE v_locgroup ALIAS FOR $4; DECLARE subseq TEXT; DECLARE seqrow RECORD; BEGIN subseq = ''; FOR seqrow IN SELECT CASE WHEN strand<0 THEN reverse_complement(substring(srcf.residues,fmin+1,(fmax-fmin))) ELSE substring(srcf.residues,fmin+1,(fmax-fmin)) END AS residues FROM feature AS srcf INNER JOIN featureloc ON (srcf.feature_id=featureloc.srcfeature_id) INNER JOIN feature AS subf ON (subf.feature_id=featureloc.feature_id) INNER JOIN feature_relationship AS fr ON (fr.subject_id=subf.feature_id) WHERE fr.object_id=v_feature_id AND subf.type_id=v_ftype_id AND featureloc.rank=v_rank AND featureloc.locgroup=v_locgroup ORDER BY fr.rank LOOP subseq = subseq || seqrow.residues; END LOOP; RETURN subseq; END $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION subsequence_by_subfeatures(integer, integer) RETURNS text AS 'SELECT subsequence_by_subfeatures($1,$2,0,0)' LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION subsequence_by_subfeatures(integer) RETURNS text AS $BODY$ SELECT subsequence_by_subfeatures($1,get_feature_relationship_type_id('part_of'),0,0) $BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION subsequence_by_typed_subfeatures(integer, integer) RETURNS text AS 'SELECT subsequence_by_typed_subfeatures($1,$2,0,0)' LANGUAGE 'sql' VOLATILE; /* CREATE OR REPLACE FUNCTION translate_codon(text, integer) RETURNS character AS 'SELECT aa FROM genetic_code.gencode_codon_aa WHERE codon=$1 AND gencode_id=$2' LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION translate_dna(text) RETURNS text AS 'SELECT translate_dna($1,1)' LANGUAGE 'sql' VOLATILE; */ CREATE OR REPLACE FUNCTION translate_dna(text, integer) RETURNS text AS $BODY$ DECLARE dnaseq ALIAS FOR $1; gcode ALIAS FOR $2; translation TEXT; dnaseqlen INT; codon CHAR(3); aa CHAR(1); i INT; BEGIN translation = ''; dnaseqlen = char_length(dnaseq); i=1; WHILE i+1 < dnaseqlen loop codon = substring(dnaseq,i,3); aa = translate_codon(codon,gcode); translation = translation || aa; i = i+3; END loop; RETURN translation; END$BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION order_exons(integer) RETURNS void AS $BODY$ DECLARE parent_type ALIAS FOR $1; exon_id int; part_of int; exon_type int; strand int; arow RECORD; order_by varchar; rowcount int; exon_count int; ordered_exons int; transcript_id int; BEGIN SELECT INTO part_of cvterm_id FROM cvterm WHERE name='part_of' AND cv_id IN (SELECT cv_id FROM cv WHERE name='relationship'); --SELECT INTO exon_type cvterm_id FROM cvterm WHERE name='exon' -- AND cv_id IN (SELECT cv_id FROM cv WHERE name='sequence'); --RAISE NOTICE 'part_of %, exon %',part_of,exon_type; FOR transcript_id IN SELECT feature_id FROM feature WHERE type_id = parent_type LOOP SELECT INTO rowcount count(*) FROM feature_relationship WHERE object_id = transcript_id AND rank = 0; --Dont modify this transcript if there are already numbered exons or --if there is only one exon IF rowcount = 1 THEN --RAISE NOTICE 'skipping transcript %, row count %',transcript_id,rowcount; CONTINUE; END IF; --need to reverse the order if the strand is negative SELECT INTO strand strand FROM featureloc WHERE feature_id=transcript_id; IF strand > 0 THEN order_by = 'fl.fmin'; ELSE order_by = 'fl.fmax desc'; END IF; exon_count = 0; FOR arow IN EXECUTE 'SELECT fr.*, fl.fmin, fl.fmax FROM feature_relationship fr, featureloc fl WHERE fr.object_id = '||transcript_id||' AND fr.subject_id = fl.feature_id AND fr.type_id = '||part_of||' ORDER BY '||order_by LOOP --number the exons for a given transcript UPDATE feature_relationship SET rank = exon_count WHERE feature_relationship_id = arow.feature_relationship_id; exon_count = exon_count + 1; END LOOP; END LOOP; END; $BODY$ LANGUAGE 'plpgsql' VOLATILE; CREATE OR REPLACE FUNCTION r4_map(character varying, integer) RETURNS integer AS $BODY$ select r5_start+($2-r4_start) from r4_to_r5_mapping where scaffold = $1 and r4_start <= $2 and r4_start+length > $2$BODY$ LANGUAGE 'sql' VOLATILE; CREATE OR REPLACE FUNCTION r5_map(character varying, integer) RETURNS integer AS $BODY$ select r4_start+($2-r5_start) from r4_to_r5_mapping where scaffold = $1 and r5_start <= $2 and r5_start+length > $2$BODY$ LANGUAGE 'sql' VOLATILE; -- TD CREATE OR REPLACE FUNCTION share_exons() RETURNS void AS $BODY$ DECLARE BEGIN /* Generate a table of shared exons */ CREATE temporary TABLE shared_exons AS SELECT gene.feature_id as gene_feature_id , gene.uniquename as gene_uniquename , transcript1.uniquename as transcript1 , exon1.feature_id as exon1_feature_id , exon1.uniquename as exon1_uniquename , transcript2.uniquename as transcript2 , exon2.feature_id as exon2_feature_id , exon2.uniquename as exon2_uniquename , exon1_loc.fmin /* = exon2_loc.fmin */ , exon1_loc.fmax /* = exon2_loc.fmax */ FROM feature gene JOIN cvterm gene_type ON gene.type_id = gene_type.cvterm_id JOIN cv gene_type_cv USING (cv_id) JOIN feature_relationship gene_transcript1 ON gene.feature_id = gene_transcript1.object_id JOIN feature transcript1 ON gene_transcript1.subject_id = transcript1.feature_id JOIN cvterm transcript1_type ON transcript1.type_id = transcript1_type.cvterm_id JOIN cv transcript1_type_cv ON transcript1_type.cv_id = transcript1_type_cv.cv_id JOIN feature_relationship transcript1_exon1 ON transcript1_exon1.object_id = transcript1.feature_id JOIN feature exon1 ON transcript1_exon1.subject_id = exon1.feature_id JOIN cvterm exon1_type ON exon1.type_id = exon1_type.cvterm_id JOIN cv exon1_type_cv ON exon1_type.cv_id = exon1_type_cv.cv_id JOIN featureloc exon1_loc ON exon1_loc.feature_id = exon1.feature_id JOIN feature_relationship gene_transcript2 ON gene.feature_id = gene_transcript2.object_id JOIN feature transcript2 ON gene_transcript2.subject_id = transcript2.feature_id JOIN cvterm transcript2_type ON transcript2.type_id = transcript2_type.cvterm_id JOIN cv transcript2_type_cv ON transcript2_type.cv_id = transcript2_type_cv.cv_id JOIN feature_relationship transcript2_exon2 ON transcript2_exon2.object_id = transcript2.feature_id JOIN feature exon2 ON transcript2_exon2.subject_id = exon2.feature_id JOIN cvterm exon2_type ON exon2.type_id = exon2_type.cvterm_id JOIN cv exon2_type_cv ON exon2_type.cv_id = exon2_type_cv.cv_id JOIN featureloc exon2_loc ON exon2_loc.feature_id = exon2.feature_id WHERE gene_type_cv.name = 'sequence' AND gene_type.name = 'gene' AND transcript1_type_cv.name = 'sequence' AND transcript1_type.name = 'mRNA' AND transcript2_type_cv.name = 'sequence' AND transcript2_type.name = 'mRNA' AND exon1_type_cv.name = 'sequence' AND exon1_type.name = 'exon' AND exon2_type_cv.name = 'sequence' AND exon2_type.name = 'exon' AND exon1.feature_id < exon2.feature_id AND exon1_loc.rank = 0 AND exon2_loc.rank = 0 AND exon1_loc.fmin = exon2_loc.fmin AND exon1_loc.fmax = exon2_loc.fmax ; /* Choose one of the shared exons to be the canonical representative. We pick the one with the smallest feature_id. */ CREATE temporary TABLE canonical_exon_representatives AS SELECT gene_feature_id, min(exon1_feature_id) AS canonical_feature_id, fmin FROM shared_exons GROUP BY gene_feature_id,fmin ; CREATE temporary TABLE exon_replacements AS SELECT DISTINCT shared_exons.exon2_feature_id AS actual_feature_id , canonical_exon_representatives.canonical_feature_id , canonical_exon_representatives.fmin FROM shared_exons JOIN canonical_exon_representatives USING (gene_feature_id) WHERE shared_exons.exon2_feature_id <> canonical_exon_representatives.canonical_feature_id AND shared_exons.fmin = canonical_exon_representatives.fmin ; UPDATE feature_relationship SET subject_id = ( SELECT canonical_feature_id FROM exon_replacements WHERE feature_relationship.subject_id = exon_replacements.actual_feature_id) WHERE subject_id IN ( SELECT actual_feature_id FROM exon_replacements ); UPDATE feature_relationship SET object_id = ( SELECT canonical_feature_id FROM exon_replacements WHERE feature_relationship.subject_id = exon_replacements.actual_feature_id) WHERE object_id IN ( SELECT actual_feature_id FROM exon_replacements ); UPDATE feature SET is_obsolete = true WHERE feature_id IN ( SELECT actual_feature_id FROM exon_replacements ); END; $BODY$ LANGUAGE 'plpgsql' VOLATILE;
<gh_stars>0 -- phpMyAdmin SQL Dump -- version 4.9.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Waktu pembuatan: 22 Des 2019 pada 05.40 -- Versi server: 10.4.8-MariaDB -- Versi PHP: 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: `travel_nomads` -- -- -------------------------------------------------------- -- -- Struktur dari tabel `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; -- -------------------------------------------------------- -- -- Struktur dari tabel `galleries` -- CREATE TABLE `galleries` ( `id` bigint(20) UNSIGNED NOT NULL, `travel_packages_id` int(11) NOT NULL, `image` text COLLATE utf8mb4_unicode_ci NOT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `galleries` -- INSERT INTO `galleries` (`id`, `travel_packages_id`, `image`, `deleted_at`, `created_at`, `updated_at`) VALUES (16, 14, 'assets/gambar/7taUsxdJwLucPqbk0kYNXx7tUvUsbFDKuusx9hjc.jpeg', '2019-12-21 06:27:54', '2019-12-21 05:00:47', '2019-12-21 06:27:54'), (17, 15, 'assets/gambar/VwRFHUzRpX5ytewLemr2H6jfRalPUJ3g9SCrPEL8.jpeg', '2019-12-21 06:27:51', '2019-12-21 05:03:43', '2019-12-21 06:27:51'), (18, 16, 'assets/gambar/DhAwIuDDnjR7xXYWLvUzMecOT7bBNKx7vy3ybpBK.jpeg', '2019-12-21 06:27:46', '2019-12-21 05:04:59', '2019-12-21 06:27:46'), (19, 17, 'assets/gambar/fLRHsFZ0whZ5VTlSMkxuaS86GPasKaJ019VjQhsk.jpeg', '2019-12-21 06:27:25', '2019-12-21 05:05:17', '2019-12-21 06:27:25'), (20, 14, 'assets/gallery/n1yOpp9v8dKLmqC7DoyZ7ftndH78c7Rrx0RiTKyW.jpeg', '2019-12-21 06:36:00', '2019-12-21 06:28:26', '2019-12-21 06:36:00'), (21, 15, 'assets/gallery/wXyITKCZ7zJKVgsQIeTLHZtT7cWSGB8lwvjazxH5.jpeg', '2019-12-21 06:36:06', '2019-12-21 06:28:46', '2019-12-21 06:36:06'), (22, 16, 'assets/gallery/L6ps0Jb9ciWp6oN2ZSiqO7YMi4SlBabcUD5D0bMc.jpeg', '2019-12-21 06:36:11', '2019-12-21 06:29:05', '2019-12-21 06:36:11'), (23, 17, 'assets/gallery/VIcBGlZfvs0X7wjuEMToJHQo8JuHdzCqRxdgsMAk.jpeg', '2019-12-21 06:35:55', '2019-12-21 06:29:19', '2019-12-21 06:35:55'), (24, 14, 'assets/gallery/bLp36XT0qYOpdmRSuSjCwK2iKrpp4mrH72jIK8QV.jpeg', NULL, '2019-12-21 06:36:47', '2019-12-21 06:36:47'), (25, 15, 'assets/gallery/VFl2JLDuyMW4Hq1cQWqnXefwB0vPgZiwGAtcp8er.jpeg', NULL, '2019-12-21 06:37:16', '2019-12-21 06:37:16'), (26, 16, 'assets/gallery/XLgmvi6cJkCOrfQrD2lbY5du84NT3FUWPzvpQNwi.jpeg', NULL, '2019-12-21 06:37:34', '2019-12-21 06:37:34'), (27, 17, 'assets/gallery/Hoq2bCSKuk9VB0J6T6U9wfgJdk2pbFjiBOBOEpeO.jpeg', NULL, '2019-12-21 06:37:52', '2019-12-21 06:42:35'); -- -------------------------------------------------------- -- -- Struktur dari tabel `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 untuk tabel `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, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2019_11_24_160051_create_travel_packages_table', 1), (5, '2019_11_24_161900_create_galleries_table', 2), (6, '2019_11_24_163416_create_transactions_table', 3), (7, '2019_11_24_164343_create_transaction_details_table', 4), (8, '2019_11_26_153148_add_roles_field_to_users_table', 5), (10, '2019_11_30_164844_add_username_field_to_users_table', 6); -- -------------------------------------------------------- -- -- Struktur dari tabel `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; -- -------------------------------------------------------- -- -- Struktur dari tabel `transactions` -- CREATE TABLE `transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `travel_packages_id` int(11) NOT NULL, `users_id` int(11) DEFAULT NULL, `additional_visa` int(11) NOT NULL, `transaction_total` int(11) NOT NULL, `transaction_status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `transactions` -- INSERT INTO `transactions` (`id`, `travel_packages_id`, `users_id`, `additional_visa`, `transaction_total`, `transaction_status`, `deleted_at`, `created_at`, `updated_at`) VALUES (28, 15, 1, 200, 25200, 'SUCCESS', NULL, '2019-12-21 08:28:21', '2019-12-21 08:30:38'); -- -------------------------------------------------------- -- -- Struktur dari tabel `transaction_details` -- CREATE TABLE `transaction_details` ( `id` bigint(20) UNSIGNED NOT NULL, `transactions_id` int(11) NOT NULL, `username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `nationality` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `is_visa` tinyint(1) NOT NULL, `doe_passport` date NOT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `transaction_details` -- INSERT INTO `transaction_details` (`id`, `transactions_id`, `username`, `nationality`, `is_visa`, `doe_passport`, `deleted_at`, `created_at`, `updated_at`) VALUES (37, 28, 'Raden', 'Indonesia', 0, '2024-12-21', NULL, '2019-12-21 08:28:22', '2019-12-21 08:28:22'), (38, 28, 'izal', 'Indonesia', 1, '2019-12-05', NULL, '2019-12-21 08:28:55', '2019-12-21 08:28:55'); -- -------------------------------------------------------- -- -- Struktur dari tabel `travel_packages` -- CREATE TABLE `travel_packages` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `location` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `about` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `featured_event` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `language` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `foods` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `departure_date` date NOT NULL, `duration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `price` int(11) NOT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `travel_packages` -- INSERT INTO `travel_packages` (`id`, `title`, `slug`, `location`, `about`, `featured_event`, `language`, `foods`, `departure_date`, `duration`, `type`, `price`, `deleted_at`, `created_at`, `updated_at`) VALUES (14, 'Jakarta', 'jakarta', 'Indonesia', 'Indonesia adalah negara yang indah buat Traveling', 'Traveling', 'Indonesia', 'Tahu Sumedang', '2019-12-22', '7D', 'Open Trip', 25000, NULL, '2019-12-21 04:51:05', '2019-12-21 04:55:41'), (15, 'Amsterdam', 'amsterdam', 'Belanda', 'belanda adalah negara yang menjajah Indonesia', 'Penjajah', 'Belanda', 'Batagor', '2019-12-28', '4D', 'Open Trip', 12500, NULL, '2019-12-21 04:52:13', '2019-12-21 04:56:11'), (16, 'Tokyo', 'tokyo', 'Jepang', 'jepang adalah salah satu negara yang ikut menjajah Indonesia', 'Penjajah', 'Jepang', 'Dodol Garut', '2019-12-24', '2D', 'Open Trip', 2300, NULL, '2019-12-21 04:53:31', '2019-12-21 04:56:44'), (17, 'Kuala Lumpur', 'kuala-lumpur', 'Malaysia', 'Malaysia adalah negara tetangga Indonesia', 'Tetangga', 'Melayu', 'Basreng', '2019-12-07', '2D', 'Open Trip', 4500, NULL, '2019-12-21 04:55:05', '2019-12-21 04:57:16'); -- -------------------------------------------------------- -- -- Struktur dari tabel `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, `roles` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'USER', `username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `users` -- INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `roles`, `username`) VALUES (1, '<NAME>', '<EMAIL>', '2019-12-14 10:38:09', '$2y$10$R0mI6Ue6nhUlUfamTOA2jO3TZeM.sBXI9l4/If0oIJ1lrf/GAOZo6', NULL, '2019-11-28 09:07:57', '2019-12-14 10:38:09', 'ADMIN', 'Raden'), (2, 'izal', '<EMAIL>', '2019-11-28 10:26:45', '$2y$10$G5PY6HAdGg2KJIJRjC0wfOj6J/601KaFJ95gQAdcL5VnSQIyz1DGC', NULL, '2019-11-28 10:26:24', '2019-11-28 10:26:45', 'USER', ''), (3, 'Syahrizal', '<EMAIL>', NULL, '$2y$10$u4TcLZnhok1bhTM4pStp6O0HnO42xFgeHg3xkLHUj4GhJNgQ5ZaHy', NULL, '2019-11-30 10:00:16', '2019-11-30 10:00:16', 'USER', 'izal'), (4, '<NAME>', '<EMAIL>', NULL, '$2y$10$IIr6SfSRJqjiWeWLfW0BM.gpNP5lxl7dIYADcftmeOhyagQGrthOq', NULL, '2019-11-30 10:07:43', '2019-11-30 10:07:43', 'USER', 'wijaya'), (5, 'wildan', '<EMAIL>', '2019-11-30 10:20:04', '$2y$10$Czof7KuxBB1JqQr15GxCNOrEyCy1XhL79MX3ln.5BFUv1U0KKeEhu', NULL, '2019-11-30 10:19:25', '2019-11-30 10:20:04', 'ADMIN', 'ali'), (6, 'samsul', '<EMAIL>', '2019-11-30 10:21:43', '$2y$10$sA7lWlokGB7w29HJ9He.GeiW/KRWoi2TP21Cst0Uw2Bms4PSVJxFK', NULL, '2019-11-30 10:20:56', '2019-11-30 10:21:43', 'USER', 'arif'), (8, '<NAME>', '<EMAIL>', '2019-12-09 07:25:22', '$2y$10$Yrf4UyHPU1mUENWxH2v82Ona4gQb.P1wCp/wemrHO0XL3N.Uv4Dpm', NULL, '2019-12-09 07:24:56', '2019-12-09 07:25:22', 'ADMIN', 'ole'), (9, 'didi', '<EMAIL>', NULL, '$2y$10$P1SrQ9pXyfYbb1k7cdRkwO0xfwjmd/n33rtTUo/NVGkjT0FeGuj1u', NULL, '2019-12-11 09:47:23', '2019-12-11 09:47:23', 'USER', 'kempot'), (10, 'kamin', '<EMAIL>', '2019-12-14 10:31:21', '$2y$10$94IQpJ97Gjh0NWX1Optqguf7B5NN9Gk6c6TTFV4PdCC/MKBU1Wrdy', NULL, '2019-12-11 09:48:43', '2019-12-14 10:31:21', 'ADMIN', 'ajah'), (12, '<NAME>', '<EMAIL>', '2019-12-14 10:23:05', '$2y$10$Gqt2NXRlFVPCd0oN8.pmiO5Gs.GtxJ/XS1FEtFO74O5ofywGlXrYS', NULL, '2019-12-14 10:22:43', '2019-12-14 10:23:05', 'ADMIN', 'jaka'); -- -- Indexes for dumped tables -- -- -- Indeks untuk tabel `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `galleries` -- ALTER TABLE `galleries` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indeks untuk tabel `transactions` -- ALTER TABLE `transactions` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `transaction_details` -- ALTER TABLE `transaction_details` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `travel_packages` -- ALTER TABLE `travel_packages` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- AUTO_INCREMENT untuk tabel yang dibuang -- -- -- AUTO_INCREMENT untuk tabel `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `galleries` -- ALTER TABLE `galleries` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28; -- -- AUTO_INCREMENT untuk tabel `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT untuk tabel `transactions` -- ALTER TABLE `transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29; -- -- AUTO_INCREMENT untuk tabel `transaction_details` -- ALTER TABLE `transaction_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39; -- -- AUTO_INCREMENT untuk tabel `travel_packages` -- ALTER TABLE `travel_packages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18; -- -- AUTO_INCREMENT untuk tabel `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; 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>src/SharedPipelineComponents/Datalock/DeployPeriodEnd/sql/dml/PeriodEnd.DataLock.Cleanup.Deds.DML.sql DECLARE @CollectionPeriodName varchar(8) = (SELECT [AcademicYear] FROM Reference.CollectionPeriods WHERE [Open] = 1) + '-' + (SELECT [Name] FROM Reference.CollectionPeriods WHERE [Open] = 1) DELETE FROM ${DAS_PeriodEnd.FQ}.[DataLock].[ValidationError] WHERE [CollectionPeriodName] = @CollectionPeriodName DELETE FROM ${DAS_PeriodEnd.FQ}.[DataLock].[ValidationErrorByPeriod] WHERE [CollectionPeriodName] = @CollectionPeriodName DELETE FROM ${DAS_PeriodEnd.FQ}.[DataLock].[PriceEpisodeMatch] WHERE [CollectionPeriodName] = @CollectionPeriodName DELETE FROM ${DAS_PeriodEnd.FQ}.[DataLock].[PriceEpisodePeriodMatch] WHERE [CollectionPeriodName] = @CollectionPeriodName
<filename>Banco_Dados/php_com_pdo.sql CREATE DATABASE php_com_pdo; USE php_com_pdo; CREATE TABLE tb_usuarios( id INT NOT NULL PRIMARY KEY auto_increment, nome VARCHAR(50) NOT NULL, email VARCHAR(100) NOT NULL, senha VARCHAR(32) NOT NULL )DEFAULT CHARSET=utf8; INSERT INTO tb_usuarios (nome, email, senha) values ('<NAME>', '<EMAIL>', '123456'); INSERT INTO tb_usuarios (nome, email, senha) VALUES ('<NAME>', '<EMAIL>', '654321'); INSERT INTO tb_usuarios (nome, email, senha) VALUES ('<NAME>', '<EMAIL>', '456789');
<gh_stars>0 /***************************************************************************************************************/ /* Purpose: (1) Typecast transform & Generate Simple, Balanced, Random Samples for each year for ingestion */ /* + (2) Union all the samples for the interim dataset for additional wrangling with pandas */ */ /* */ /* Author: <NAME>, Summer 2019 */ /* Date Created: Aug. 01, 2019 */ /* Last Modified: Sep. 06, 2019 */ /* */ /***************************************************************************************************************/ /*---------------------------------------------------------------------------------------------------------*/ --> NB: Latin abbreviation for NOTA BENE, meaning "note well" <-- /*---------------------------------------------------------------------------------------------------------*/ -- NB1: In this SQL script, simple random samples are balanced for outcomes (50/50 loans approved vs. loans denied). -- NB2: Script 03a applies this same logic, but for unbalanced outcomes. /*======================== 03b. Balanced Outcomes - Simple random samples for HMDA 2010-2017 =========================*/ /*--Creating schema and setting users/role for accessibility profiles--*/ CREATE EXTENSION dblink SCHEMA interim_datasets_v2; CREATE SCHEMA interim_datasets ; CREATE ROLE reporting_user WITH LOGIN PASSWORD '<PASSWORD>' ; GRANT USAGE ON SCHEMA interim_datasets TO reporting_user ; GRANT SELECT ON ALL TABLES IN SCHEMA interim_datasets TO reporting_user ; -- CREATE SCHEMA interim_datasets_v2 ; GRANT USAGE ON SCHEMA interim_datasets TO reporting_user ; GRANT SELECT ON ALL TABLES IN SCHEMA interim_datasets TO reporting_user ; /*------------*/ --> z_bz_AWS_paddleloancanoe <--- /*----------------------------------------------------- HMDA 2010 ----------------------------------------------------*/ DROP TABLE IF EXISTS interim_datasets_v2.hmda10_srandom_bal_25K ; -- WITH hm_10_ap AS --extract the raw data fields for segment of approved loans with loan type = Conventional ( SELECT hm10.action_taken_name As act, hm10.as_of_year, TRIM(LEADING '0' FROM rate_spread) As rate_spread, hm10.tract_to_msamd_income, hm10.population, hm10.agency_abbr, hm10.minority_population, hm10.number_of_owner_occupied_units, hm10.loan_amount_000s, hm10.number_of_1_to_4_family_units, hm10.hud_median_family_income, hm10.applicant_income_000s, hm10.state_abbr, hm10.property_type_name, hm10.owner_occupancy_name, hm10.msamd_name, hm10.lien_status_name, hm10.hoepa_status_name, hm10.co_applicant_sex_name, hm10.co_applicant_ethnicity_name, hm10.co_applicant_race_name_1, hm10.applicant_sex_name, hm10.applicant_race_name_1, hm10.applicant_ethnicity_name, --set Null because all denial reasons are null for approved loans NULL As denial_reason_name_1, NULL AS denial_reason_name_2, NULL AS denial_reason_name_3 FROM usa_mortgage_market.hmda_lar_2010_allrecords hm10 WHERE hm10.action_taken_name = 'Loan originated' AND hm10.loan_type_name = 'Conventional' AND ( --dropping all missing values from our dataset bc they are not missing in any systemic way hm10.as_of_year Is Not NULL AND hm10.tract_to_msamd_income Is Not Null AND hm10.population Is Not Null AND hm10.minority_population Is Not Null AND hm10.number_of_owner_occupied_units Is Not Null AND hm10.hud_median_family_income Is Not Null AND hm10.applicant_income_000s Is Not Null AND hm10.state_abbr Is Not Null AND hm10.property_type_name Is Not Null AND hm10.owner_occupancy_name Is Not Null AND hm10.msamd_name Is Not Null AND hm10.lien_status_name Is Not Null AND hm10.hoepa_status_name Is Not Null AND hm10.co_applicant_sex_name Is Not Null AND hm10.co_applicant_race_name_1 Is Not Null AND hm10.co_applicant_ethnicity_name Is Not Null AND hm10.applicant_sex_name Is Not Null AND hm10.applicant_race_name_1 Is Not Null AND hm10.applicant_ethnicity_name Is Not Null AND hm10.agency_abbr Is Not Null AND hm10.loan_amount_000s Is Not Null AND hm10.rate_spread Is Not Null AND hm10.number_of_1_to_4_family_units Is Not Null AND hm10.rate_spread != '' AND hm10.msamd_name != '' ) ORDER BY random() LIMIT 25000 --random sample of 25000, which we then use to take another random sample of 12500 (CTE: hm_10_u_raw) ) , hm_10_de AS --extract the raw data fields for segment of denied loans with loan type = Conventional ( SELECT hm10.action_taken_name As act, hm10.as_of_year, NULL as rate_spread, hm10.tract_to_msamd_income, hm10.population, hm10.agency_abbr, hm10.minority_population, hm10.number_of_owner_occupied_units, hm10.loan_amount_000s, hm10.number_of_1_to_4_family_units, hm10.hud_median_family_income, hm10.applicant_income_000s, hm10.state_abbr, hm10.property_type_name, hm10.owner_occupancy_name, hm10.msamd_name, hm10.lien_status_name, hm10.hoepa_status_name, hm10.co_applicant_sex_name, hm10.co_applicant_ethnicity_name, hm10.co_applicant_race_name_1, hm10.applicant_sex_name, hm10.applicant_race_name_1, hm10.applicant_ethnicity_name, --extract all denial reasons to concatenate in the following CTE hm10.denial_reason_name_1, hm10.denial_reason_name_2, hm10.denial_reason_name_3 FROM usa_mortgage_market.hmda_lar_2010_allrecords hm10 WHERE hm10.action_taken_name = 'Application denied by financial institution' AND hm10.loan_type_name = 'Conventional' AND ( hm10.denial_reason_name_1 Is Not Null Or denial_reason_name_2 Is not Null OR denial_reason_name_3 Is Not Null ) --dropping all missing denied loans without a denial reason AND ( --dropping all missing values from our dataset bc they are not missing in any systemic way hm10.as_of_year Is Not NULL AND hm10.tract_to_msamd_income Is Not Null AND hm10.population Is Not Null AND hm10.minority_population Is Not Null AND hm10.number_of_owner_occupied_units Is Not Null AND hm10.hud_median_family_income Is Not Null AND hm10.applicant_income_000s Is Not Null AND hm10.state_abbr Is Not Null AND hm10.property_type_name Is Not Null AND hm10.owner_occupancy_name Is Not Null AND hm10.msamd_name Is Not Null AND hm10.lien_status_name Is Not Null AND hm10.hoepa_status_name Is Not Null AND hm10.co_applicant_sex_name Is Not Null AND hm10.co_applicant_race_name_1 Is Not Null AND hm10.co_applicant_ethnicity_name Is Not Null AND hm10.applicant_sex_name Is Not Null AND hm10.applicant_race_name_1 Is Not Null AND hm10.applicant_ethnicity_name Is Not Null AND hm10.agency_abbr Is Not Null AND hm10.loan_amount_000s Is Not Null AND hm10.msamd_name != '' AND hm10.number_of_1_to_4_family_units Is Not Null ) ORDER BY random() LIMIT 25000 --random sample of 25000, which we then use to take another random sample of 12500 (CTE: hm10_u_raw) ) , hm_10_u_raw AS --UNION ALL for the two segmented CTEs to get balanced dataset of 25K ( SELECT hm_a.* FROM(SELECT * FROM hm_10_ap ORDER BY random() LIMIT 12500) hm_a UNION ALL --note that we take another random sample of 125000 of each 25K randomized sample segment SELECT hm_d.* FROM(SELECT * FROM hm_10_de ORDER BY random() LIMIT 12500) hm_d ) , hmda_2010_transform As ( SELECT --simple binary assignment of 1 or 0 , bc the WHERE clause in this CTE segments the approved/denied subset CASE WHEN hm10.act = 'Loan originated' THEN 1 ELSE 0 END As act_outc, hm10.as_of_year As action_year, --must use embedded functions to typecast this as integer because of NULL/space characters in raw data CAST( CAST( hm10.rate_spread As Varchar(5)) As NUMERIC ) As rate_spread, --NB: must be num bc of decimals --concatenating denial reasons into one feature on which we do engineering using python CONCAT_WS(', ', hm10.denial_reason_name_1, hm10.denial_reason_name_2, hm10.denial_reason_name_3) as denials, --must use embedded functions to typecast this as integer because of NULL/space characters in raw data CAST( CAST( CASE WHEN hm10.tract_to_msamd_income IS NULL THEN NULL ELSE hm10.tract_to_msamd_income END As Varchar(5)) As NUMERIC ) As tract_to_msamd_inc, --NB: must be num bc of dec hm10.population As pop, ROUND(hm10.minority_population, 2) As minority_pop_perc, hm10.number_of_owner_occupied_units As num_owoc_units, hm10.number_of_1_to_4_family_units As num_1to4_fam_units, hm10.loan_amount_000s As ln_amt_000s, hm10.hud_median_family_income As hud_med_fm_inc, --must use embedded functions all-in-one to typecast this as integer because raw data stores it as TEXT CAST( CAST( CASE WHEN hm10.applicant_income_000s IS NULL THEN NULL ELSE hm10.applicant_income_000s END As Varchar(5)) As INT ) As applic_inc_000s, CAST(hm10.state_abbr As VARCHAR(5)) As state_abbr, CAST(hm10.property_type_name As VARCHAR(108) ) As property_type_nm, CAST(hm10.owner_occupancy_name As VARCHAR(108)) As own_occ_nm, CAST(hm10.msamd_name As VARCHAR(108)) As msamd_nm, CAST(hm10.lien_status_name As VARCHAR(56)) As lien_status_nm, CAST(hm10.hoepa_status_name As VARCHAR(56)) As hoep_status_nm, CAST(hm10.co_applicant_sex_name As VARCHAR(28)) As co_appl_sex, CAST(hm10.co_applicant_race_name_1 As VARCHAR(28)) As co_appl_race, CAST(hm10.co_applicant_ethnicity_name As VARCHAR(28)) As co_appl_ethn, CAST(hm10.applicant_sex_name As VARCHAR(28)) As applic_sex, CAST(hm10.applicant_race_name_1 As VARCHAR(28)) As applic_race, CAST(hm10.applicant_ethnicity_name As VARCHAR(28)) As applic_ethn, CAST(hm10.agency_abbr As VARCHAR(28)) As agency_abbr FROM hm_10_u_raw hm10 ORDER BY random() ) , hmda_2010_union AS ( SELECT hm_a.* FROM(SELECT * FROM hmda_2010_transform WHERE act_outc = 1 ORDER BY random() LIMIT 12500) hm_a UNION ALL SELECT hm_a.* FROM(SELECT * FROM hmda_2010_transform WHERE act_outc = 0 ORDER BY random() LIMIT 12500) hm_a ) SELECT hm10_u.* INTO interim_datasets_v2.hmda10_srandom_bal_25K FROM hmda_2010_union hm10_u ORDER BY random() ; /*--------------------------- end HMDA 2010 ---------------------------*/ --> END z_bz_AWS_paddleloancanoe <--- /* ==> NB: All subsequent HMDA individual years will apply the same SQL logic from the code above, but will be stripped of comments for length */ ---> z_tn_AWS_paddleloancanoe <--- /*----------------------------------------------------- HMDA 2011 ----------------------------------------------------*/ DROP TABLE IF EXISTS interim_datasets_v2.hmda11_srandom_bal_25K ; -- WITH hm_11_ap AS --extract the raw data fields for segment of approved loans with loan type = Conventional ( SELECT hm11.action_taken_name As act, hm11.as_of_year, TRIM(LEADING '0' FROM rate_spread) As rate_spread, hm11.tract_to_msamd_income, hm11.population, hm11.agency_abbr, hm11.minority_population, hm11.number_of_owner_occupied_units, hm11.loan_amount_000s, hm11.number_of_1_to_4_family_units, hm11.hud_median_family_income, hm11.applicant_income_000s, hm11.state_abbr, hm11.property_type_name, hm11.owner_occupancy_name, hm11.msamd_name, hm11.lien_status_name, hm11.hoepa_status_name, hm11.co_applicant_sex_name, hm11.co_applicant_ethnicity_name, hm11.co_applicant_race_name_1, hm11.applicant_sex_name, hm11.applicant_race_name_1, hm11.applicant_ethnicity_name, --set Null because all denial reasons are null for approved loans NULL As denial_reason_name_1, NULL AS denial_reason_name_2, NULL AS denial_reason_name_3 FROM public.hmda_lar_2011_allrecords hm11 WHERE hm11.action_taken_name = 'Loan originated' AND hm11.loan_type_name = 'Conventional' AND ( --dropping all missing values from our dataset bc they are not missing in any systemic way hm11.as_of_year Is Not NULL AND hm11.tract_to_msamd_income Is Not Null AND hm11.population Is Not Null AND hm11.minority_population Is Not Null AND hm11.number_of_owner_occupied_units Is Not Null AND hm11.hud_median_family_income Is Not Null AND hm11.applicant_income_000s Is Not Null AND hm11.state_abbr Is Not Null AND hm11.property_type_name Is Not Null AND hm11.owner_occupancy_name Is Not Null AND hm11.msamd_name Is Not Null AND hm11.lien_status_name Is Not Null AND hm11.hoepa_status_name Is Not Null AND hm11.co_applicant_sex_name Is Not Null AND hm11.co_applicant_race_name_1 Is Not Null AND hm11.co_applicant_ethnicity_name Is Not Null AND hm11.applicant_sex_name Is Not Null AND hm11.applicant_race_name_1 Is Not Null AND hm11.applicant_ethnicity_name Is Not Null AND hm11.agency_abbr Is Not Null AND hm11.loan_amount_000s Is Not Null AND hm11.rate_spread Is Not Null AND hm11.number_of_1_to_4_family_units Is Not Null AND hm11.rate_spread != '' AND hm11.msamd_name != '' ) ORDER BY random() LIMIT 25000 --random sample of 25000, which we then use to take another random sample of 12500 (CTE: hm_11_u_raw) ) , hm_11_de AS --extract the raw data fields for segment of denied loans with loan type = Conventional ( SELECT hm11.action_taken_name As act, hm11.as_of_year, NULL as rate_spread, hm11.tract_to_msamd_income, hm11.population, hm11.agency_abbr, hm11.minority_population, hm11.number_of_owner_occupied_units, hm11.loan_amount_000s, hm11.number_of_1_to_4_family_units, hm11.hud_median_family_income, hm11.applicant_income_000s, hm11.state_abbr, hm11.property_type_name, hm11.owner_occupancy_name, hm11.msamd_name, hm11.lien_status_name, hm11.hoepa_status_name, hm11.co_applicant_sex_name, hm11.co_applicant_ethnicity_name, hm11.co_applicant_race_name_1, hm11.applicant_sex_name, hm11.applicant_race_name_1, hm11.applicant_ethnicity_name, --extract all denial reasons to concatenate in the following CTE hm11.denial_reason_name_1, hm11.denial_reason_name_2, hm11.denial_reason_name_3 FROM public.hmda_lar_2011_allrecords hm11 WHERE hm11.action_taken_name = 'Application denied by financial institution' AND hm11.loan_type_name = 'Conventional' AND ( hm11.denial_reason_name_1 Is Not Null Or denial_reason_name_2 Is not Null OR denial_reason_name_3 Is Not Null ) --dropping all missing denied loans without a denial reason AND ( --dropping all missing values from our dataset bc they are not missing in any systemic way hm11.as_of_year Is Not NULL AND hm11.tract_to_msamd_income Is Not Null AND hm11.population Is Not Null AND hm11.minority_population Is Not Null AND hm11.number_of_owner_occupied_units Is Not Null AND hm11.hud_median_family_income Is Not Null AND hm11.applicant_income_000s Is Not Null AND hm11.state_abbr Is Not Null AND hm11.property_type_name Is Not Null AND hm11.owner_occupancy_name Is Not Null AND hm11.msamd_name Is Not Null AND hm11.lien_status_name Is Not Null AND hm11.hoepa_status_name Is Not Null AND hm11.co_applicant_sex_name Is Not Null AND hm11.co_applicant_race_name_1 Is Not Null AND hm11.co_applicant_ethnicity_name Is Not Null AND hm11.applicant_sex_name Is Not Null AND hm11.applicant_race_name_1 Is Not Null AND hm11.applicant_ethnicity_name Is Not Null AND hm11.agency_abbr Is Not Null AND hm11.loan_amount_000s Is Not Null AND hm11.msamd_name != '' AND hm11.number_of_1_to_4_family_units Is Not Null ) ORDER BY random() LIMIT 25000 --random sample of 25000, which we then use to take another random sample of 12500 (CTE: hm11_u_raw) ) , hm_11_u_raw AS --UNION ALL for the two segmented CTEs to get balanced dataset of 25K ( SELECT hm_a.* FROM(SELECT * FROM hm_11_ap ORDER BY random() LIMIT 12500) hm_a UNION ALL --note that we take another random sample of 125000 of each 25K randomized sample segment SELECT hm_d.* FROM(SELECT * FROM hm_11_de ORDER BY random() LIMIT 12500) hm_d ) , hmda_2011_transform As ( SELECT --simple binary assignment of 1 or 0 , bc the WHERE clause in this CTE segments the approved/denied subset CASE WHEN hm11.act = 'Loan originated' THEN 1 ELSE 0 END As act_outc, hm11.as_of_year As action_year, --must use embedded functions to typecast this as integer because of NULL/space characters in raw data CAST( CAST( hm11.rate_spread As Varchar(5)) As NUMERIC ) As rate_spread, --NB: must be num bc of decimals --concatenating denial reasons into one feature on which we do engineering using python CONCAT_WS(', ', hm11.denial_reason_name_1, hm11.denial_reason_name_2, hm11.denial_reason_name_3) as denials, --must use embedded functions to typecast this as integer because of NULL/space characters in raw data CAST( CAST( CASE WHEN hm11.tract_to_msamd_income IS NULL THEN NULL ELSE hm11.tract_to_msamd_income END As Varchar(5)) As NUMERIC ) As tract_to_msamd_inc, --NB: must be num bc of dec hm11.population As pop, ROUND(hm11.minority_population, 2) As minority_pop_perc, hm11.number_of_owner_occupied_units As num_owoc_units, hm11.number_of_1_to_4_family_units As num_1to4_fam_units, hm11.loan_amount_000s As ln_amt_000s, hm11.hud_median_family_income As hud_med_fm_inc, --must use embedded functions all-in-one to typecast this as integer because raw data stores it as TEXT CAST( CAST( CASE WHEN hm11.applicant_income_000s IS NULL THEN NULL ELSE hm11.applicant_income_000s END As Varchar(5)) As INT ) As applic_inc_000s, CAST(hm11.state_abbr As VARCHAR(5)) As state_abbr, CAST(hm11.property_type_name As VARCHAR(118) ) As property_type_nm, CAST(hm11.owner_occupancy_name As VARCHAR(118)) As own_occ_nm, CAST(hm11.msamd_name As VARCHAR(118)) As msamd_nm, CAST(hm11.lien_status_name As VARCHAR(56)) As lien_status_nm, CAST(hm11.hoepa_status_name As VARCHAR(56)) As hoep_status_nm, CAST(hm11.co_applicant_sex_name As VARCHAR(28)) As co_appl_sex, CAST(hm11.co_applicant_race_name_1 As VARCHAR(28)) As co_appl_race, CAST(hm11.co_applicant_ethnicity_name As VARCHAR(28)) As co_appl_ethn, CAST(hm11.applicant_sex_name As VARCHAR(28)) As applic_sex, CAST(hm11.applicant_race_name_1 As VARCHAR(28)) As applic_race, CAST(hm11.applicant_ethnicity_name As VARCHAR(28)) As applic_ethn, CAST(hm11.agency_abbr As VARCHAR(28)) As agency_abbr FROM hm_11_u_raw hm11 ORDER BY random() ) , hmda_2011_union AS ( SELECT hm_a.* FROM(SELECT * FROM hmda_2011_transform WHERE act_outc = 1 ORDER BY random() LIMIT 12500) hm_a UNION ALL SELECT hm_a.* FROM(SELECT * FROM hmda_2011_transform WHERE act_outc = 0 ORDER BY random() LIMIT 12500) hm_a ) SELECT hm11_u.* INTO interim_datasets_v2.hmda11_srandom_bal_25K FROM hmda_2011_union hm11_u ORDER BY random() ; /*--------------------------- end HMDA 2011 ---------------------------*/ /*----------------------------------------------------- HMDA 2012 ----------------------------------------------------*/ DROP TABLE IF EXISTS interim_datasets_v2.hmda12_srandom_bal_25K ; -- WITH hm_12_ap AS --extract the raw data fields for segment of approved loans with loan type = Conventional ( SELECT hm12.action_taken_name As act, hm12.as_of_year, TRIM(LEADING '0' FROM rate_spread) As rate_spread, hm12.tract_to_msamd_income, hm12.population, hm12.agency_abbr, hm12.minority_population, hm12.number_of_owner_occupied_units, hm12.loan_amount_000s, hm12.number_of_1_to_4_family_units, hm12.hud_median_family_income, hm12.applicant_income_000s, hm12.state_abbr, hm12.property_type_name, hm12.owner_occupancy_name, hm12.msamd_name, hm12.lien_status_name, hm12.hoepa_status_name, hm12.co_applicant_sex_name, hm12.co_applicant_ethnicity_name, hm12.co_applicant_race_name_1, hm12.applicant_sex_name, hm12.applicant_race_name_1, hm12.applicant_ethnicity_name, --set Null because all denial reasons are null for approved loans NULL As denial_reason_name_1, NULL AS denial_reason_name_2, NULL AS denial_reason_name_3 FROM public.hmda_lar_2012_allrecords hm12 WHERE hm12.action_taken_name = 'Loan originated' AND hm12.loan_type_name = 'Conventional' AND ( --dropping all missing values from our dataset bc they are not missing in any systemic way hm12.as_of_year Is Not NULL AND hm12.tract_to_msamd_income Is Not Null AND hm12.population Is Not Null AND hm12.minority_population Is Not Null AND hm12.number_of_owner_occupied_units Is Not Null AND hm12.hud_median_family_income Is Not Null AND hm12.applicant_income_000s Is Not Null AND hm12.state_abbr Is Not Null AND hm12.property_type_name Is Not Null AND hm12.owner_occupancy_name Is Not Null AND hm12.msamd_name Is Not Null AND hm12.lien_status_name Is Not Null AND hm12.hoepa_status_name Is Not Null AND hm12.co_applicant_sex_name Is Not Null AND hm12.co_applicant_race_name_1 Is Not Null AND hm12.co_applicant_ethnicity_name Is Not Null AND hm12.applicant_sex_name Is Not Null AND hm12.applicant_race_name_1 Is Not Null AND hm12.applicant_ethnicity_name Is Not Null AND hm12.agency_abbr Is Not Null AND hm12.loan_amount_000s Is Not Null AND hm12.rate_spread Is Not Null AND hm12.number_of_1_to_4_family_units Is Not Null AND hm12.rate_spread != '' AND hm12.msamd_name != '' ) ORDER BY random() LIMIT 25000 --random sample of 25000, which we then use to take another random sample of 12500 (CTE: hm_12_u_raw) ) , hm_12_de AS --extract the raw data fields for segment of denied loans with loan type = Conventional ( SELECT hm12.action_taken_name As act, hm12.as_of_year, NULL as rate_spread, hm12.tract_to_msamd_income, hm12.population, hm12.agency_abbr, hm12.minority_population, hm12.number_of_owner_occupied_units, hm12.loan_amount_000s, hm12.number_of_1_to_4_family_units, hm12.hud_median_family_income, hm12.applicant_income_000s, hm12.state_abbr, hm12.property_type_name, hm12.owner_occupancy_name, hm12.msamd_name, hm12.lien_status_name, hm12.hoepa_status_name, hm12.co_applicant_sex_name, hm12.co_applicant_ethnicity_name, hm12.co_applicant_race_name_1, hm12.applicant_sex_name, hm12.applicant_race_name_1, hm12.applicant_ethnicity_name, --extract all denial reasons to concatenate in the following CTE hm12.denial_reason_name_1, hm12.denial_reason_name_2, hm12.denial_reason_name_3 FROM public.hmda_lar_2012_allrecords hm12 WHERE hm12.action_taken_name = 'Application denied by financial institution' AND hm12.loan_type_name = 'Conventional' AND ( hm12.denial_reason_name_1 Is Not Null Or denial_reason_name_2 Is not Null OR denial_reason_name_3 Is Not Null ) --dropping all missing denied loans without a denial reason AND ( --dropping all missing values from our dataset bc they are not missing in any systemic way hm12.as_of_year Is Not NULL AND hm12.tract_to_msamd_income Is Not Null AND hm12.population Is Not Null AND hm12.minority_population Is Not Null AND hm12.number_of_owner_occupied_units Is Not Null AND hm12.hud_median_family_income Is Not Null AND hm12.applicant_income_000s Is Not Null AND hm12.state_abbr Is Not Null AND hm12.property_type_name Is Not Null AND hm12.owner_occupancy_name Is Not Null AND hm12.msamd_name Is Not Null AND hm12.lien_status_name Is Not Null AND hm12.hoepa_status_name Is Not Null AND hm12.co_applicant_sex_name Is Not Null AND hm12.co_applicant_race_name_1 Is Not Null AND hm12.co_applicant_ethnicity_name Is Not Null AND hm12.applicant_sex_name Is Not Null AND hm12.applicant_race_name_1 Is Not Null AND hm12.applicant_ethnicity_name Is Not Null AND hm12.agency_abbr Is Not Null AND hm12.loan_amount_000s Is Not Null AND hm12.msamd_name != '' hm12.number_of_1_to_4_family_units Is Not Null ) ORDER BY random() LIMIT 25000 --random sample of 25000, which we then use to take another random sample of 12500 (CTE: hm12_u_raw) ) , hm_12_u_raw AS --UNION ALL for the two segmented CTEs to get balanced dataset of 25K ( SELECT hm_a.* FROM(SELECT * FROM hm_12_ap ORDER BY random() LIMIT 12500) hm_a UNION ALL --note that we take another random sample of 125000 of each 25K randomized sample segment SELECT hm_d.* FROM(SELECT * FROM hm_12_de ORDER BY random() LIMIT 12500) hm_d ) , hmda_2012_transform As ( SELECT --simple binary assignment of 1 or 0 , bc the WHERE clause in this CTE segments the approved/denied subset CASE WHEN hm12.act = 'Loan originated' THEN 1 ELSE 0 END As act_outc, hm12.as_of_year As action_year, --must use embedded functions to typecast this as integer because of NULL/space characters in raw data CAST( CAST( hm12.rate_spread As Varchar(5)) As NUMERIC ) As rate_spread, --NB: must be num bc of decimals --concatenating denial reasons into one feature on which we do engineering using python CONCAT_WS(', ', hm12.denial_reason_name_1, hm12.denial_reason_name_2, hm12.denial_reason_name_3) as denials, --must use embedded functions to typecast this as integer because of NULL/space characters in raw data CAST( CAST( CASE WHEN hm12.tract_to_msamd_income IS NULL THEN NULL ELSE hm12.tract_to_msamd_income END As Varchar(5)) As NUMERIC ) As tract_to_msamd_inc, --NB: must be num bc of dec hm12.population As pop, ROUND(hm12.minority_population, 2) As minority_pop_perc, hm12.number_of_owner_occupied_units As num_owoc_units, hm12.number_of_1_to_4_family_units As num_1to4_fam_units, hm12.loan_amount_000s As ln_amt_000s, hm12.hud_median_family_income As hud_med_fm_inc, --must use embedded functions all-in-one to typecast this as integer because raw data stores it as TEXT CAST( CAST( CASE WHEN hm12.applicant_income_000s IS NULL THEN NULL ELSE hm12.applicant_income_000s END As Varchar(5)) As INT ) As applic_inc_000s, CAST(hm12.state_abbr As VARCHAR(5)) As state_abbr, CAST(hm12.property_type_name As VARCHAR(128) ) As property_type_nm, CAST(hm12.owner_occupancy_name As VARCHAR(128)) As own_occ_nm, CAST(hm12.msamd_name As VARCHAR(128)) As msamd_nm, CAST(hm12.lien_status_name As VARCHAR(56)) As lien_status_nm, CAST(hm12.hoepa_status_name As VARCHAR(56)) As hoep_status_nm, CAST(hm12.co_applicant_sex_name As VARCHAR(28)) As co_appl_sex, CAST(hm12.co_applicant_race_name_1 As VARCHAR(28)) As co_appl_race, CAST(hm12.co_applicant_ethnicity_name As VARCHAR(28)) As co_appl_ethn, CAST(hm12.applicant_sex_name As VARCHAR(28)) As applic_sex, CAST(hm12.applicant_race_name_1 As VARCHAR(28)) As applic_race, CAST(hm12.applicant_ethnicity_name As VARCHAR(28)) As applic_ethn, CAST(hm12.agency_abbr As VARCHAR(28)) As agency_abbr FROM hm_12_u_raw hm12 ORDER BY random() ) , hmda_2012_union AS ( SELECT hm_a.* FROM(SELECT * FROM hmda_2012_transform WHERE act_outc = 1 ORDER BY random() LIMIT 12500) hm_a UNION ALL SELECT hm_a.* FROM(SELECT * FROM hmda_2012_transform WHERE act_outc = 0 ORDER BY random() LIMIT 12500) hm_a ) SELECT hm12_u.* INTO interim_datasets_v2.hmda12_srandom_bal_25K FROM hmda_2012_union hm12_u ORDER BY random() ; /*--------------------------- end HMDA 2012 ---------------------------*/ /*----------------------------------------------------- HMDA 2013 ----------------------------------------------------*/ DROP TABLE IF EXISTS interim_datasets_v2.hmda13_srandom_bal_25K ; -- WITH hm_13_ap AS --extract the raw data fields for segment of approved loans with loan type = Conventional ( SELECT hm13.action_taken_name As act, hm13.as_of_year, TRIM(LEADING '0' FROM rate_spread) As rate_spread, hm13.tract_to_msamd_income, hm13.population, hm13.agency_abbr, hm13.minority_population, hm13.number_of_owner_occupied_units, hm13.loan_amount_000s, hm13.number_of_1_to_4_family_units, hm13.hud_median_family_income, hm13.applicant_income_000s, hm13.state_abbr, hm13.property_type_name, hm13.owner_occupancy_name, hm13.msamd_name, hm13.lien_status_name, hm13.hoepa_status_name, hm13.co_applicant_sex_name, hm13.co_applicant_ethnicity_name, hm13.co_applicant_race_name_1, hm13.applicant_sex_name, hm13.applicant_race_name_1, hm13.applicant_ethnicity_name, --set Null because all denial reasons are null for approved loans NULL As denial_reason_name_1, NULL AS denial_reason_name_2, NULL AS denial_reason_name_3 FROM public.hmda_lar_2013_allrecords hm13 WHERE hm13.action_taken_name = 'Loan originated' AND hm13.loan_type_name = 'Conventional' AND ( --dropping all missing values from our dataset bc they are not missing in any systemic way hm13.as_of_year Is Not NULL AND hm13.tract_to_msamd_income Is Not Null AND hm13.population Is Not Null AND hm13.minority_population Is Not Null AND hm13.number_of_owner_occupied_units Is Not Null AND hm13.hud_median_family_income Is Not Null AND hm13.applicant_income_000s Is Not Null AND hm13.state_abbr Is Not Null AND hm13.property_type_name Is Not Null AND hm13.owner_occupancy_name Is Not Null AND hm13.msamd_name Is Not Null AND hm13.lien_status_name Is Not Null AND hm13.hoepa_status_name Is Not Null AND hm13.co_applicant_sex_name Is Not Null AND hm13.co_applicant_race_name_1 Is Not Null AND hm13.co_applicant_ethnicity_name Is Not Null AND hm13.applicant_sex_name Is Not Null AND hm13.applicant_race_name_1 Is Not Null AND hm13.applicant_ethnicity_name Is Not Null AND hm13.agency_abbr Is Not Null AND hm13.loan_amount_000s Is Not Null AND hm13.rate_spread Is Not Null AND hm13.number_of_1_to_4_family_units Is Not Null AND hm13.rate_spread != '' AND hm12.msamd_name != '' ) ORDER BY random() LIMIT 25000 --random sample of 25000, which we then use to take another random sample of 12500 (CTE: hm_13_u_raw) ) , hm_13_de AS --extract the raw data fields for segment of denied loans with loan type = Conventional ( SELECT hm13.action_taken_name As act, hm13.as_of_year, NULL as rate_spread, hm13.tract_to_msamd_income, hm13.population, hm13.agency_abbr, hm13.minority_population, hm13.number_of_owner_occupied_units, hm13.loan_amount_000s, hm13.number_of_1_to_4_family_units, hm13.hud_median_family_income, hm13.applicant_income_000s, hm13.state_abbr, hm13.property_type_name, hm13.owner_occupancy_name, hm13.msamd_name, hm13.lien_status_name, hm13.hoepa_status_name, hm13.co_applicant_sex_name, hm13.co_applicant_ethnicity_name, hm13.co_applicant_race_name_1, hm13.applicant_sex_name, hm13.applicant_race_name_1, hm13.applicant_ethnicity_name, --extract all denial reasons to concatenate in the following CTE hm13.denial_reason_name_1, hm13.denial_reason_name_2, hm13.denial_reason_name_3 FROM public.hmda_lar_2013_allrecords hm13 WHERE hm13.action_taken_name = 'Application denied by financial institution' AND hm13.loan_type_name = 'Conventional' AND ( hm13.denial_reason_name_1 Is Not Null Or denial_reason_name_2 Is not Null OR denial_reason_name_3 Is Not Null ) --dropping all missing denied loans without a denial reason AND ( --dropping all missing values from our dataset bc they are not missing in any systemic way hm13.as_of_year Is Not NULL AND hm13.tract_to_msamd_income Is Not Null AND hm13.population Is Not Null AND hm13.minority_population Is Not Null AND hm13.number_of_owner_occupied_units Is Not Null AND hm13.hud_median_family_income Is Not Null AND hm13.applicant_income_000s Is Not Null AND hm13.state_abbr Is Not Null AND hm13.property_type_name Is Not Null AND hm13.owner_occupancy_name Is Not Null AND hm13.msamd_name Is Not Null AND hm13.lien_status_name Is Not Null AND hm13.hoepa_status_name Is Not Null AND hm13.co_applicant_sex_name Is Not Null AND hm13.co_applicant_race_name_1 Is Not Null AND hm13.co_applicant_ethnicity_name Is Not Null AND hm13.applicant_sex_name Is Not Null AND hm13.applicant_race_name_1 Is Not Null AND hm13.applicant_ethnicity_name Is Not Null AND hm13.agency_abbr Is Not Null AND hm13.loan_amount_000s Is Not Null AND hm13.msamd_name != '' AND hm13.number_of_1_to_4_family_units Is Not Null ) ORDER BY random() LIMIT 25000 --random sample of 25000, which we then use to take another random sample of 12500 (CTE: hm13_u_raw) ) , hm_13_u_raw AS --UNION ALL for the two segmented CTEs to get balanced dataset of 25K ( SELECT hm_a.* FROM(SELECT * FROM hm_13_ap ORDER BY random() LIMIT 12500) hm_a UNION ALL --note that we take another random sample of 125000 of each 25K randomized sample segment SELECT hm_d.* FROM(SELECT * FROM hm_13_de ORDER BY random() LIMIT 12500) hm_d ) , hmda_2013_transform As ( SELECT --simple binary assignment of 1 or 0 , bc the WHERE clause in this CTE segments the approved/denied subset CASE WHEN hm13.act = 'Loan originated' THEN 1 ELSE 0 END As act_outc, hm13.as_of_year As action_year, --must use embedded functions to typecast this as integer because of NULL/space characters in raw data CAST( CAST( hm13.rate_spread As Varchar(5)) As NUMERIC ) As rate_spread, --NB: must be num bc of decimals --concatenating denial reasons into one feature on which we do engineering using python CONCAT_WS(', ', hm13.denial_reason_name_1, hm13.denial_reason_name_2, hm13.denial_reason_name_3) as denials, --must use embedded functions to typecast this as integer because of NULL/space characters in raw data CAST( CAST( CASE WHEN hm13.tract_to_msamd_income IS NULL THEN NULL ELSE hm13.tract_to_msamd_income END As Varchar(5)) As NUMERIC ) As tract_to_msamd_inc, --NB: must be num bc of dec hm13.population As pop, ROUND(hm13.minority_population, 2) As minority_pop_perc, hm13.number_of_owner_occupied_units As num_owoc_units, hm13.number_of_1_to_4_family_units As num_1to4_fam_units, hm13.loan_amount_000s As ln_amt_000s, hm13.hud_median_family_income As hud_med_fm_inc, --must use embedded functions all-in-one to typecast this as integer because raw data stores it as TEXT CAST( CAST( CASE WHEN hm13.applicant_income_000s IS NULL THEN NULL ELSE hm13.applicant_income_000s END As Varchar(5)) As INT ) As applic_inc_000s, CAST(hm13.state_abbr As VARCHAR(5)) As state_abbr, CAST(hm13.property_type_name As VARCHAR(128) ) As property_type_nm, CAST(hm13.owner_occupancy_name As VARCHAR(128)) As own_occ_nm, CAST(hm13.msamd_name As VARCHAR(128)) As msamd_nm, CAST(hm13.lien_status_name As VARCHAR(56)) As lien_status_nm, CAST(hm13.hoepa_status_name As VARCHAR(56)) As hoep_status_nm, CAST(hm13.co_applicant_sex_name As VARCHAR(28)) As co_appl_sex, CAST(hm13.co_applicant_race_name_1 As VARCHAR(28)) As co_appl_race, CAST(hm13.co_applicant_ethnicity_name As VARCHAR(28)) As co_appl_ethn, CAST(hm13.applicant_sex_name As VARCHAR(28)) As applic_sex, CAST(hm13.applicant_race_name_1 As VARCHAR(28)) As applic_race, CAST(hm13.applicant_ethnicity_name As VARCHAR(28)) As applic_ethn, CAST(hm13.agency_abbr As VARCHAR(28)) As agency_abbr FROM hm_13_u_raw hm13 ORDER BY random() ) , hmda_2013_union AS ( SELECT hm_a.* FROM(SELECT * FROM hmda_2013_transform WHERE act_outc = 1 ORDER BY random() LIMIT 12500) hm_a UNION ALL SELECT hm_a.* FROM(SELECT * FROM hmda_2013_transform WHERE act_outc = 0 ORDER BY random() LIMIT 12500) hm_a ) SELECT hm13_u.* INTO interim_datasets_v2.hmda13_srandom_bal_25K FROM hmda_2013_union hm13_u ORDER BY random() ; /*--------------------------- end HMDA 2013 ---------------------------*/ /*---------------------------------- Union 2011-2013 ----------------------------------*/ ; WITH hmda_union_2011_to_2013 AS ( SELECT hm11.* FROM interim_datasets_v2.hmda11_srandom_bal_25k hm11 UNION ALL SELECT hm12.* FROM interim_datasets_v2.hmda12_srandom_bal_25K hm12 UNION ALL SELECT hm13.* FROM interim_datasets_v2.hmda13_srandom_bal_25K hm13 ) SELECT hm_u.* INTO interim_datasets_v2.hmda_2011_to_2013_union_srandom_bal_75k FROM hmda_union_2011_to_2013 hm_u ; /*-------------------------------------------------------------------------------------*/ --> END z_tn_AWS_paddleloancanoe <--- --> z_bz_AWS_paddleloancanoe <--- -- CREATE EXTENSION dblink; CREATE SCHEMA raw_datasets ; CREATE ROLE reporting_user WITH LOGIN PASSWORD '<PASSWORD>' ; GRANT USAGE ON SCHEMA raw_datasets TO reporting_user ; GRANT SELECT ON ALL TABLES IN SCHEMA raw_datasets TO reporting_user ; -- /*----------------------------------------------------- HMDA 2014 ----------------------------------------------------*/ DROP TABLE IF EXISTS interim_datasets_v2.hmda14_srandom_bal_25K ; -- WITH hm_14_ap AS --extract the raw data fields for segment of approved loans with loan type = Conventional ( SELECT hm14.action_taken_name As act, hm14.as_of_year, TRIM(LEADING '0' FROM rate_spread) As rate_spread, hm14.tract_to_msamd_income, hm14.population, hm14.agency_abbr, hm14.minority_population, hm14.number_of_owner_occupied_units, hm14.loan_amount_000s, hm14.number_of_1_to_4_family_units, hm14.hud_median_family_income, hm14.applicant_income_000s, hm14.state_abbr, hm14.property_type_name, hm14.owner_occupancy_name, hm14.msamd_name, hm14.lien_status_name, hm14.hoepa_status_name, hm14.co_applicant_sex_name, hm14.co_applicant_ethnicity_name, hm14.co_applicant_race_name_1, hm14.applicant_sex_name, hm14.applicant_race_name_1, hm14.applicant_ethnicity_name, --set Null because all denial reasons are null for approved loans NULL As denial_reason_name_1, NULL AS denial_reason_name_2, NULL AS denial_reason_name_3 FROM usa_mortgage_market.hmda_lar_2014_allrecords hm14 WHERE hm14.action_taken_name = 'Loan originated' AND hm14.loan_type_name = 'Conventional' AND ( --dropping all missing values from our dataset bc they are not missing in any systemic way hm14.as_of_year Is Not NULL AND hm14.tract_to_msamd_income Is Not Null AND hm14.population Is Not Null AND hm14.minority_population Is Not Null AND hm14.number_of_owner_occupied_units Is Not Null AND hm14.hud_median_family_income Is Not Null AND hm14.applicant_income_000s Is Not Null AND hm14.state_abbr Is Not Null AND hm14.property_type_name Is Not Null AND hm14.owner_occupancy_name Is Not Null AND hm14.msamd_name Is Not Null AND hm14.lien_status_name Is Not Null AND hm14.hoepa_status_name Is Not Null AND hm14.co_applicant_sex_name Is Not Null AND hm14.co_applicant_race_name_1 Is Not Null AND hm14.co_applicant_ethnicity_name Is Not Null AND hm14.applicant_sex_name Is Not Null AND hm14.applicant_race_name_1 Is Not Null AND hm14.applicant_ethnicity_name Is Not Null AND hm14.agency_abbr Is Not Null AND hm14.loan_amount_000s Is Not Null AND hm14.rate_spread Is Not Null AND hm14.number_of_1_to_4_family_units Is Not Null AND hm14.rate_spread != '' AND hm14.applicant_income_000s != '' AND hm14.msamd_name != '' ) ORDER BY random() LIMIT 25000 --random sample of 25000, which we then use to take another random sample of 12500 (CTE: hm_14_u_raw) ) , hm_14_de AS --extract the raw data fields for segment of denied loans with loan type = Conventional ( SELECT hm14.action_taken_name As act, hm14.as_of_year, NULL as rate_spread, hm14.tract_to_msamd_income, hm14.population, hm14.agency_abbr, hm14.minority_population, hm14.number_of_owner_occupied_units, hm14.loan_amount_000s, hm14.number_of_1_to_4_family_units, hm14.hud_median_family_income, hm14.applicant_income_000s, hm14.state_abbr, hm14.property_type_name, hm14.owner_occupancy_name, hm14.msamd_name, hm14.lien_status_name, hm14.hoepa_status_name, hm14.co_applicant_sex_name, hm14.co_applicant_ethnicity_name, hm14.co_applicant_race_name_1, hm14.applicant_sex_name, hm14.applicant_race_name_1, hm14.applicant_ethnicity_name, --extract all denial reasons to concatenate in the following CTE hm14.denial_reason_name_1, hm14.denial_reason_name_2, hm14.denial_reason_name_3 FROM usa_mortgage_market.hmda_lar_2014_allrecords hm14 WHERE hm14.action_taken_name = 'Application denied by financial institution' AND hm14.loan_type_name = 'Conventional' AND ( hm14.denial_reason_name_1 Is Not Null Or denial_reason_name_2 Is not Null OR denial_reason_name_3 Is Not Null ) --dropping all missing denied loans without a denial reason AND ( --dropping all missing values from our dataset bc they are not missing in any systemic way hm14.as_of_year Is Not NULL AND hm14.tract_to_msamd_income Is Not Null AND hm14.population Is Not Null AND hm14.minority_population Is Not Null AND hm14.number_of_owner_occupied_units Is Not Null AND hm14.hud_median_family_income Is Not Null AND hm14.applicant_income_000s Is Not Null AND hm14.state_abbr Is Not Null AND hm14.property_type_name Is Not Null AND hm14.owner_occupancy_name Is Not Null AND hm14.msamd_name Is Not Null AND hm14.lien_status_name Is Not Null AND hm14.hoepa_status_name Is Not Null AND hm14.co_applicant_sex_name Is Not Null AND hm14.co_applicant_race_name_1 Is Not Null AND hm14.co_applicant_ethnicity_name Is Not Null AND hm14.applicant_sex_name Is Not Null AND hm14.applicant_race_name_1 Is Not Null AND hm14.applicant_ethnicity_name Is Not Null AND hm14.agency_abbr Is Not Null AND hm14.loan_amount_000s Is Not Null AND hm14.applicant_income_000s != '' AND hm14.number_of_1_to_4_family_units Is Not Null AND hm14.msamd_name != '' ) ORDER BY random() LIMIT 25000 --random sample of 25000, which we then use to take another random sample of 12500 (CTE: hm14_u_raw) ) , hm_14_u_raw AS --UNION ALL for the two segmented CTEs to get balanced dataset of 25K ( SELECT hm_a.* FROM(SELECT * FROM hm_14_ap ORDER BY random() LIMIT 12500) hm_a UNION ALL --note that we take another random sample of 125000 of each 25K randomized sample segment SELECT hm_d.* FROM(SELECT * FROM hm_14_de ORDER BY random() LIMIT 12500) hm_d ) , hmda_2014_transform As ( SELECT --simple binary assignment of 1 or 0 , bc the WHERE clause in this CTE segments the approved/denied subset CASE WHEN hm14.act = 'Loan originated' THEN 1 ELSE 0 END As act_outc, hm14.as_of_year As action_year, --must use embedded functions to typecast this as integer because of NULL/space characters in raw data CAST( CAST( hm14.rate_spread As Varchar(5)) As NUMERIC ) As rate_spread, --NB: must be num bc of decimals --concatenating denial reasons into one feature on which we do engineering using python CONCAT_WS(', ', hm14.denial_reason_name_1, hm14.denial_reason_name_2, hm14.denial_reason_name_3) as denials, --must use embedded functions to typecast this as integer because of NULL/space characters in raw data CAST( CAST( CASE WHEN hm14.tract_to_msamd_income IS NULL THEN NULL ELSE hm14.tract_to_msamd_income END As Varchar(5)) As NUMERIC ) As tract_to_msamd_inc, --NB: must be num bc of dec hm14.population As pop, ROUND(hm14.minority_population, 2) As minority_pop_perc, hm14.number_of_owner_occupied_units As num_owoc_units, hm14.number_of_1_to_4_family_units As num_1to4_fam_units, hm14.loan_amount_000s As ln_amt_000s, hm14.hud_median_family_income As hud_med_fm_inc, --must use embedded functions all-in-one to typecast this as integer because raw data stores it as TEXT CAST( CAST( CASE WHEN hm14.applicant_income_000s = '' THEN NULL ELSE hm14.applicant_income_000s END As Varchar(5)) As INT ) As applic_inc_000s, CAST(hm14.state_abbr As VARCHAR(5)) As state_abbr, CAST(hm14.property_type_name As VARCHAR(128) ) As property_type_nm, CAST(hm14.owner_occupancy_name As VARCHAR(128)) As own_occ_nm, CAST(hm14.msamd_name As VARCHAR(128)) As msamd_nm, CAST(hm14.lien_status_name As VARCHAR(56)) As lien_status_nm, CAST(hm14.hoepa_status_name As VARCHAR(56)) As hoep_status_nm, CAST(hm14.co_applicant_sex_name As VARCHAR(28)) As co_appl_sex, CAST(hm14.co_applicant_race_name_1 As VARCHAR(28)) As co_appl_race, CAST(hm14.co_applicant_ethnicity_name As VARCHAR(28)) As co_appl_ethn, CAST(hm14.applicant_sex_name As VARCHAR(28)) As applic_sex, CAST(hm14.applicant_race_name_1 As VARCHAR(28)) As applic_race, CAST(hm14.applicant_ethnicity_name As VARCHAR(28)) As applic_ethn, CAST(hm14.agency_abbr As VARCHAR(28)) As agency_abbr FROM hm_14_u_raw hm14 ORDER BY random() ) , hmda_2014_union AS ( SELECT hm_a.* FROM(SELECT * FROM hmda_2014_transform WHERE act_outc = 1 ORDER BY random() LIMIT 12500) hm_a UNION ALL SELECT hm_a.* FROM(SELECT * FROM hmda_2014_transform WHERE act_outc = 0 ORDER BY random() LIMIT 12500) hm_a ) SELECT hm14_u.* INTO interim_datasets_v2.hmda14_srandom_bal_25K FROM hmda_2014_union hm14_u ORDER BY random() ; /*--------------------------- end HMDA 2014 ---------------------------*/ /*----------------------------------------------------- HMDA 2015 ----------------------------------------------------*/ DROP TABLE IF EXISTS interim_datasets_v2.hmda15_srandom_bal_25K ; -- WITH hm_15_ap AS --extract the raw data fields for segment of approved loans with loan type = Conventional ( SELECT hm15.action_taken_name As act, hm15.as_of_year, TRIM(LEADING '0' FROM rate_spread) As rate_spread, hm15.tract_to_msamd_income, hm15.population, hm15.agency_abbr, hm15.minority_population, hm15.number_of_owner_occupied_units, hm15.loan_amount_000s, hm15.number_of_1_to_4_family_units, hm15.hud_median_family_income, hm15.applicant_income_000s, hm15.state_abbr, hm15.property_type_name, hm15.owner_occupancy_name, hm15.msamd_name, hm15.lien_status_name, hm15.hoepa_status_name, hm15.co_applicant_sex_name, hm15.co_applicant_ethnicity_name, hm15.co_applicant_race_name_1, hm15.applicant_sex_name, hm15.applicant_race_name_1, hm15.applicant_ethnicity_name, --set Null because all denial reasons are null for approved loans NULL As denial_reason_name_1, NULL AS denial_reason_name_2, NULL AS denial_reason_name_3 FROM usa_mortgage_market.hmda_lar_2015_allrecords hm15 WHERE hm15.action_taken_name = 'Loan originated' AND hm15.loan_type_name = 'Conventional' AND ( --dropping all missing values from our dataset bc they are not missing in any systemic way hm15.as_of_year Is Not NULL AND hm15.tract_to_msamd_income Is Not Null AND hm15.population Is Not Null AND hm15.minority_population Is Not Null AND hm15.number_of_owner_occupied_units Is Not Null AND hm15.hud_median_family_income Is Not Null AND hm15.applicant_income_000s Is Not Null AND hm15.state_abbr Is Not Null AND hm15.property_type_name Is Not Null AND hm15.owner_occupancy_name Is Not Null AND hm15.msamd_name Is Not Null AND hm15.lien_status_name Is Not Null AND hm15.hoepa_status_name Is Not Null AND hm15.co_applicant_sex_name Is Not Null AND hm15.co_applicant_race_name_1 Is Not Null AND hm15.co_applicant_ethnicity_name Is Not Null AND hm15.applicant_sex_name Is Not Null AND hm15.applicant_race_name_1 Is Not Null AND hm15.applicant_ethnicity_name Is Not Null AND hm15.agency_abbr Is Not Null AND hm15.loan_amount_000s Is Not Null AND hm15.rate_spread Is Not Null AND hm15.number_of_1_to_4_family_units Is Not Null AND hm15.rate_spread != '' AND hm15.msamd_name != '' ) ORDER BY random() LIMIT 25000 --random sample of 25000, which we then use to take another random sample of 12500 (CTE: hm_15_u_raw) ) , hm_15_de AS --extract the raw data fields for segment of denied loans with loan type = Conventional ( SELECT hm15.action_taken_name As act, hm15.as_of_year, NULL as rate_spread, hm15.tract_to_msamd_income, hm15.population, hm15.agency_abbr, hm15.minority_population, hm15.number_of_owner_occupied_units, hm15.loan_amount_000s, hm15.number_of_1_to_4_family_units, hm15.hud_median_family_income, hm15.applicant_income_000s, hm15.state_abbr, hm15.property_type_name, hm15.owner_occupancy_name, hm15.msamd_name, hm15.lien_status_name, hm15.hoepa_status_name, hm15.co_applicant_sex_name, hm15.co_applicant_ethnicity_name, hm15.co_applicant_race_name_1, hm15.applicant_sex_name, hm15.applicant_race_name_1, hm15.applicant_ethnicity_name, --extract all denial reasons to concatenate in the following CTE hm15.denial_reason_name_1, hm15.denial_reason_name_2, hm15.denial_reason_name_3 FROM usa_mortgage_market.hmda_lar_2015_allrecords hm15 WHERE hm15.action_taken_name = 'Application denied by financial institution' AND hm15.loan_type_name = 'Conventional' AND ( hm15.denial_reason_name_1 Is Not Null Or denial_reason_name_2 Is not Null OR denial_reason_name_3 Is Not Null ) --dropping all missing denied loans without a denial reason AND ( --dropping all missing values from our dataset bc they are not missing in any systemic way hm15.as_of_year Is Not NULL AND hm15.tract_to_msamd_income Is Not Null AND hm15.population Is Not Null AND hm15.minority_population Is Not Null AND hm15.number_of_owner_occupied_units Is Not Null AND hm15.hud_median_family_income Is Not Null AND hm15.applicant_income_000s Is Not Null AND hm15.state_abbr Is Not Null AND hm15.property_type_name Is Not Null AND hm15.owner_occupancy_name Is Not Null AND hm15.msamd_name Is Not Null AND hm15.lien_status_name Is Not Null AND hm15.hoepa_status_name Is Not Null AND hm15.co_applicant_sex_name Is Not Null AND hm15.co_applicant_race_name_1 Is Not Null AND hm15.co_applicant_ethnicity_name Is Not Null AND hm15.applicant_sex_name Is Not Null AND hm15.applicant_race_name_1 Is Not Null AND hm15.applicant_ethnicity_name Is Not Null AND hm15.agency_abbr Is Not Null AND hm15.number_of_1_to_4_family_units Is Not Null AND hm15.loan_amount_000s Is Not Null AND hm15.msamd_name != '' ) ORDER BY random() LIMIT 25000 --random sample of 25000, which we then use to take another random sample of 12500 (CTE: hm15_u_raw) ) , hm_15_u_raw AS --UNION ALL for the two segmented CTEs to get balanced dataset of 25K ( SELECT hm_a.* FROM(SELECT * FROM hm_15_ap ORDER BY random() LIMIT 12500) hm_a UNION ALL --note that we take another random sample of 125000 of each 25K randomized sample segment SELECT hm_d.* FROM(SELECT * FROM hm_15_de ORDER BY random() LIMIT 12500) hm_d ) , hmda_2015_transform As ( SELECT --simple binary assignment of 1 or 0 , bc the WHERE clause in this CTE segments the approved/denied subset CASE WHEN hm15.act = 'Loan originated' THEN 1 ELSE 0 END As act_outc, hm15.as_of_year As action_year, --must use embedded functions to typecast this as integer because of NULL/space characters in raw data CAST( CAST( hm15.rate_spread As Varchar(5)) As NUMERIC ) As rate_spread, --NB: must be num bc of decimals --concatenating denial reasons into one feature on which we do engineering using python CONCAT_WS(', ', hm15.denial_reason_name_1, hm15.denial_reason_name_2, hm15.denial_reason_name_3) as denials, --must use embedded functions to typecast this as integer because of NULL/space characters in raw data CAST( CAST( CASE WHEN hm15.tract_to_msamd_income IS NULL THEN NULL ELSE hm15.tract_to_msamd_income END As Varchar(5)) As NUMERIC ) As tract_to_msamd_inc, --NB: must be num bc of dec hm15.population As pop, ROUND(hm15.minority_population, 2) As minority_pop_perc, hm15.number_of_owner_occupied_units As num_owoc_units, hm15.number_of_1_to_4_family_units As num_1to4_fam_units, hm15.loan_amount_000s As ln_amt_000s, hm15.hud_median_family_income As hud_med_fm_inc, --must use embedded functions all-in-one to typecast this as integer because raw data stores it as TEXT CAST( CAST( CASE WHEN hm15.applicant_income_000s IS NULL THEN NULL ELSE hm15.applicant_income_000s END As Varchar(5)) As INT ) As applic_inc_000s, CAST(hm15.state_abbr As VARCHAR(5)) As state_abbr, CAST(hm15.property_type_name As VARCHAR(128) ) As property_type_nm, CAST(hm15.owner_occupancy_name As VARCHAR(128)) As own_occ_nm, CAST(hm15.msamd_name As VARCHAR(128)) As msamd_nm, CAST(hm15.lien_status_name As VARCHAR(56)) As lien_status_nm, CAST(hm15.hoepa_status_name As VARCHAR(56)) As hoep_status_nm, CAST(hm15.co_applicant_sex_name As VARCHAR(28)) As co_appl_sex, CAST(hm15.co_applicant_race_name_1 As VARCHAR(28)) As co_appl_race, CAST(hm15.co_applicant_ethnicity_name As VARCHAR(28)) As co_appl_ethn, CAST(hm15.applicant_sex_name As VARCHAR(28)) As applic_sex, CAST(hm15.applicant_race_name_1 As VARCHAR(28)) As applic_race, CAST(hm15.applicant_ethnicity_name As VARCHAR(28)) As applic_ethn, CAST(hm15.agency_abbr As VARCHAR(28)) As agency_abbr FROM hm_15_u_raw hm15 ORDER BY random() ) , hmda_2015_union AS ( SELECT hm_a.* FROM(SELECT * FROM hmda_2015_transform WHERE act_outc = 1 ORDER BY random() LIMIT 12500) hm_a UNION ALL SELECT hm_a.* FROM(SELECT * FROM hmda_2015_transform WHERE act_outc = 0 ORDER BY random() LIMIT 12500) hm_a ) SELECT hm15_u.* INTO interim_datasets_v2.hmda15_srandom_bal_25K FROM hmda_2015_union hm15_u ORDER BY random() ; /*--------------------------- end HMDA 2015 ---------------------------*/ /*---------------------------------- Union 2014-2015 ----------------------------------*/ DROP TABLE IF EXISTS interim_datasets_v2.hmda_2014_2015_union_srandom_bal_50k; ; WITH hmda_union_2014_2015 AS ( SELECT hm14.* FROM interim_datasets_v2.hmda14_srandom_bal_25k hm14 UNION ALL SELECT hm15.* FROM interim_datasets_v2.hmda15_srandom_bal_25K hm15 ) SELECT hm_u.* INTO interim_datasets_v2.hmda_2014_2015_union_srandom_bal_50k FROM hmda_union_2014_2015 hm_u ; /*-------------------------------------------------------------------------------------*/ --> END z_bz_AWS_paddleloancanoe <--- --> z_ak_AWS_paddleloancanoe <--- /*----------------------------------------------------- HMDA 2016 ----------------------------------------------------*/ DROP TABLE IF EXISTS interim_datasets_v2.hmda16_srandom_bal_25K ; -- WITH hm_16_ap AS --extract the raw data fields for segment of approved loans with loan type = Conventional ( SELECT hm16.action_taken_name As act, hm16.as_of_year, TRIM(LEADING '0' FROM rate_spread) As rate_spread, hm16.tract_to_msamd_income, hm16.population, hm16.agency_abbr, hm16.minority_population, hm16.number_of_owner_occupied_units, hm16.loan_amount_000s, hm16.number_of_1_to_4_family_units, hm16.hud_median_family_income, hm16.applicant_income_000s, hm16.state_abbr, hm16.property_type_name, hm16.owner_occupancy_name, hm16.msamd_name, hm16.lien_status_name, hm16.hoepa_status_name, hm16.co_applicant_sex_name, hm16.co_applicant_ethnicity_name, hm16.co_applicant_race_name_1, hm16.applicant_sex_name, hm16.applicant_race_name_1, hm16.applicant_ethnicity_name, --set Null because all denial reasons are null for approved loans NULL As denial_reason_name_1, NULL AS denial_reason_name_2, NULL AS denial_reason_name_3 FROM public.hmda_lar_2016_allrecords hm16 WHERE hm16.action_taken_name = 'Loan originated' AND hm16.loan_type_name = 'Conventional' AND ( --dropping all missing values from our dataset bc they are not missing in any systemic way hm16.as_of_year Is Not NULL AND hm16.tract_to_msamd_income Is Not Null AND hm16.population Is Not Null AND hm16.minority_population Is Not Null AND hm16.number_of_owner_occupied_units Is Not Null AND hm16.hud_median_family_income Is Not Null AND hm16.applicant_income_000s Is Not Null AND hm16.state_abbr Is Not Null AND hm16.property_type_name Is Not Null AND hm16.owner_occupancy_name Is Not Null AND hm16.msamd_name Is Not Null AND hm16.lien_status_name Is Not Null AND hm16.hoepa_status_name Is Not Null AND hm16.co_applicant_sex_name Is Not Null AND hm16.co_applicant_race_name_1 Is Not Null AND hm16.co_applicant_ethnicity_name Is Not Null AND hm16.applicant_sex_name Is Not Null AND hm16.applicant_race_name_1 Is Not Null AND hm16.applicant_ethnicity_name Is Not Null AND hm16.agency_abbr Is Not Null AND hm16.loan_amount_000s Is Not Null AND hm16.rate_spread Is Not Null AND hm16.number_of_1_to_4_family_units Is Not Null AND hm16.rate_spread != '' AND hm16.applicant_income_000s != '' AND hm16.msamd_name != '' ) ORDER BY random() LIMIT 25000 --random sample of 25000, which we then use to take another random sample of 12500 (CTE: hm_16_u_raw) ) , hm_16_de AS --extract the raw data fields for segment of denied loans with loan type = Conventional ( SELECT hm16.action_taken_name As act, hm16.as_of_year, NULL as rate_spread, hm16.tract_to_msamd_income, hm16.population, hm16.agency_abbr, hm16.minority_population, hm16.number_of_owner_occupied_units, hm16.loan_amount_000s, hm16.number_of_1_to_4_family_units, hm16.hud_median_family_income, hm16.applicant_income_000s, hm16.state_abbr, hm16.property_type_name, hm16.owner_occupancy_name, hm16.msamd_name, hm16.lien_status_name, hm16.hoepa_status_name, hm16.co_applicant_sex_name, hm16.co_applicant_ethnicity_name, hm16.co_applicant_race_name_1, hm16.applicant_sex_name, hm16.applicant_race_name_1, hm16.applicant_ethnicity_name, --extract all denial reasons to concatenate in the following CTE hm16.denial_reason_name_1, hm16.denial_reason_name_2, hm16.denial_reason_name_3 FROM public.hmda_lar_2016_allrecords hm16 WHERE hm16.action_taken_name = 'Application denied by financial institution' AND hm16.loan_type_name = 'Conventional' AND ( hm16.denial_reason_name_1 Is Not Null Or denial_reason_name_2 Is not Null OR denial_reason_name_3 Is Not Null ) --dropping all missing denied loans without a denial reason AND ( --dropping all missing values from our dataset bc they are not missing in any systemic way hm16.as_of_year Is Not NULL AND hm16.tract_to_msamd_income Is Not Null AND hm16.population Is Not Null AND hm16.minority_population Is Not Null AND hm16.number_of_owner_occupied_units Is Not Null AND hm16.hud_median_family_income Is Not Null AND hm16.applicant_income_000s Is Not Null AND hm16.state_abbr Is Not Null AND hm16.property_type_name Is Not Null AND hm16.owner_occupancy_name Is Not Null AND hm16.msamd_name Is Not Null AND hm16.lien_status_name Is Not Null AND hm16.hoepa_status_name Is Not Null AND hm16.co_applicant_sex_name Is Not Null AND hm16.co_applicant_race_name_1 Is Not Null AND hm16.co_applicant_ethnicity_name Is Not Null AND hm16.applicant_sex_name Is Not Null AND hm16.applicant_race_name_1 Is Not Null AND hm16.applicant_ethnicity_name Is Not Null AND hm16.agency_abbr Is Not Null AND hm16.loan_amount_000s Is Not Null AND hm16.applicant_income_000s != '' AND hm16.number_of_1_to_4_family_units Is Not Null AND hm16.msamd_name != '' ) ORDER BY random() LIMIT 25000 --random sample of 25000, which we then use to take another random sample of 12500 (CTE: hm16_u_raw) ) , hm_16_u_raw AS --UNION ALL for the two segmented CTEs to get balanced dataset of 25K ( SELECT hm_a.* FROM(SELECT * FROM hm_16_ap ORDER BY random() LIMIT 12500) hm_a UNION ALL --note that we take another random sample of 125000 of each 25K randomized sample segment SELECT hm_d.* FROM(SELECT * FROM hm_16_de ORDER BY random() LIMIT 12500) hm_d ) , hmda_2016_transform As ( SELECT --simple binary assignment of 1 or 0 , bc the WHERE clause in this CTE segments the approved/denied subset CASE WHEN hm16.act = 'Loan originated' THEN 1 ELSE 0 END As act_outc, hm16.as_of_year As action_year, --must use embedded functions to typecast this as integer because of NULL/space characters in raw data CAST( CAST( hm16.rate_spread As Varchar(5)) As NUMERIC ) As rate_spread, --NB: must be num bc of decimals --concatenating denial reasons into one feature on which we do engineering using python CONCAT_WS(', ', hm16.denial_reason_name_1, hm16.denial_reason_name_2, hm16.denial_reason_name_3) as denials, --must use embedded functions to typecast this as integer because of NULL/space characters in raw data CAST( CAST( CASE WHEN hm16.tract_to_msamd_income IS NULL THEN NULL ELSE hm16.tract_to_msamd_income END As Varchar(5)) As NUMERIC ) As tract_to_msamd_inc, --NB: must be num bc of dec hm16.population As pop, ROUND(hm16.minority_population, 2) As minority_pop_perc, hm16.number_of_owner_occupied_units As num_owoc_units, hm16.number_of_1_to_4_family_units As num_1to4_fam_units, hm16.loan_amount_000s As ln_amt_000s, hm16.hud_median_family_income As hud_med_fm_inc, --must use embedded functions all-in-one to typecast this as integer because raw data stores it as TEXT CAST( CAST( CASE WHEN hm16.applicant_income_000s = '' THEN NULL ELSE hm16.applicant_income_000s END As Varchar(5)) As INT ) As applic_inc_000s, CAST(hm16.state_abbr As VARCHAR(5)) As state_abbr, CAST(hm16.property_type_name As VARCHAR(128) ) As property_type_nm, CAST(hm16.owner_occupancy_name As VARCHAR(128)) As own_occ_nm, CAST(hm16.msamd_name As VARCHAR(128)) As msamd_nm, CAST(hm16.lien_status_name As VARCHAR(56)) As lien_status_nm, CAST(hm16.hoepa_status_name As VARCHAR(56)) As hoep_status_nm, CAST(hm16.co_applicant_sex_name As VARCHAR(28)) As co_appl_sex, CAST(hm16.co_applicant_race_name_1 As VARCHAR(28)) As co_appl_race, CAST(hm16.co_applicant_ethnicity_name As VARCHAR(28)) As co_appl_ethn, CAST(hm16.applicant_sex_name As VARCHAR(28)) As applic_sex, CAST(hm16.applicant_race_name_1 As VARCHAR(28)) As applic_race, CAST(hm16.applicant_ethnicity_name As VARCHAR(28)) As applic_ethn, CAST(hm16.agency_abbr As VARCHAR(28)) As agency_abbr FROM hm_16_u_raw hm16 ORDER BY random() ) , hmda_2016_union AS ( SELECT hm_a.* FROM(SELECT * FROM hmda_2016_transform WHERE act_outc = 1 ORDER BY random() LIMIT 12500) hm_a UNION ALL SELECT hm_a.* FROM(SELECT * FROM hmda_2016_transform WHERE act_outc = 0 ORDER BY random() LIMIT 12500) hm_a ) SELECT hm16_u.* INTO interim_datasets_v2.hmda16_srandom_bal_25K FROM hmda_2016_union hm16_u ORDER BY random() ; /*--------------------------- end HMDA 2016 ---------------------------*/ /*----------------------------------------------------- HMDA 2017 ----------------------------------------------------*/ DROP TABLE IF EXISTS interim_datasets_v2.hmda17_srandom_bal_25K ; -- WITH hm_17_ap AS --extract the raw data fields for segment of approved loans with loan type = Conventional ( SELECT hm17.action_taken_name As act, hm17.as_of_year, TRIM(LEADING '0' FROM rate_spread) As rate_spread, hm17.tract_to_msamd_income, hm17.population, hm17.agency_abbr, hm17.minority_population, hm17.number_of_owner_occupied_units, hm17.loan_amount_000s, hm17.number_of_1_to_4_family_units, hm17.hud_median_family_income, hm17.applicant_income_000s, hm17.state_abbr, hm17.property_type_name, hm17.owner_occupancy_name, hm17.msamd_name, hm17.lien_status_name, hm17.hoepa_status_name, hm17.co_applicant_sex_name, hm17.co_applicant_ethnicity_name, hm17.co_applicant_race_name_1, hm17.applicant_sex_name, hm17.applicant_race_name_1, hm17.applicant_ethnicity_name, --set Null because all denial reasons are null for approved loans NULL As denial_reason_name_1, NULL AS denial_reason_name_2, NULL AS denial_reason_name_3 FROM public.hmda_lar_2017_allrecords hm17 WHERE hm17.action_taken_name = 'Loan originated' AND hm17.loan_type_name = 'Conventional' AND ( --dropping all missing values from our dataset bc they are not missing in any systemic way hm17.as_of_year Is Not NULL AND hm17.tract_to_msamd_income Is Not Null AND hm17.population Is Not Null AND hm17.minority_population Is Not Null AND hm17.number_of_owner_occupied_units Is Not Null AND hm17.hud_median_family_income Is Not Null AND hm17.applicant_income_000s Is Not Null AND hm17.state_abbr Is Not Null AND hm17.property_type_name Is Not Null AND hm17.owner_occupancy_name Is Not Null AND hm17.msamd_name Is Not Null AND hm17.lien_status_name Is Not Null AND hm17.hoepa_status_name Is Not Null AND hm17.co_applicant_sex_name Is Not Null AND hm17.co_applicant_race_name_1 Is Not Null AND hm17.co_applicant_ethnicity_name Is Not Null AND hm17.applicant_sex_name Is Not Null AND hm17.applicant_race_name_1 Is Not Null AND hm17.applicant_ethnicity_name Is Not Null AND hm17.agency_abbr Is Not Null AND hm17.loan_amount_000s Is Not Null AND hm17.rate_spread Is Not Null AND hm17.number_of_1_to_4_family_units Is Not Null AND hm17.rate_spread != '' AND hm17.applicant_income_000s != '' AND hm17.msamd_name != '' ) ORDER BY random() LIMIT 25000 --random sample of 25000, which we then use to take another random sample of 12500 (CTE: hm_17_u_raw) ) , hm_17_de AS --extract the raw data fields for segment of denied loans with loan type = Conventional ( SELECT hm17.action_taken_name As act, hm17.as_of_year, NULL as rate_spread, hm17.tract_to_msamd_income, hm17.population, hm17.agency_abbr, hm17.minority_population, hm17.number_of_owner_occupied_units, hm17.loan_amount_000s, hm17.number_of_1_to_4_family_units, hm17.hud_median_family_income, hm17.applicant_income_000s, hm17.state_abbr, hm17.property_type_name, hm17.owner_occupancy_name, hm17.msamd_name, hm17.lien_status_name, hm17.hoepa_status_name, hm17.co_applicant_sex_name, hm17.co_applicant_ethnicity_name, hm17.co_applicant_race_name_1, hm17.applicant_sex_name, hm17.applicant_race_name_1, hm17.applicant_ethnicity_name, --extract all denial reasons to concatenate in the following CTE hm17.denial_reason_name_1, hm17.denial_reason_name_2, hm17.denial_reason_name_3 FROM public.hmda_lar_2017_allrecords hm17 WHERE hm17.action_taken_name = 'Application denied by financial institution' AND hm17.loan_type_name = 'Conventional' AND ( hm17.denial_reason_name_1 Is Not Null Or denial_reason_name_2 Is not Null OR denial_reason_name_3 Is Not Null ) --dropping all missing denied loans without a denial reason AND ( --dropping all missing values from our dataset bc they are not missing in any systemic way hm17.as_of_year Is Not NULL AND hm17.tract_to_msamd_income Is Not Null AND hm17.population Is Not Null AND hm17.minority_population Is Not Null AND hm17.number_of_owner_occupied_units Is Not Null AND hm17.hud_median_family_income Is Not Null AND hm17.applicant_income_000s Is Not Null AND hm17.state_abbr Is Not Null AND hm17.property_type_name Is Not Null AND hm17.owner_occupancy_name Is Not Null AND hm17.msamd_name Is Not Null AND hm17.lien_status_name Is Not Null AND hm17.hoepa_status_name Is Not Null AND hm17.co_applicant_sex_name Is Not Null AND hm17.co_applicant_race_name_1 Is Not Null AND hm17.co_applicant_ethnicity_name Is Not Null AND hm17.applicant_sex_name Is Not Null AND hm17.applicant_race_name_1 Is Not Null AND hm17.applicant_ethnicity_name Is Not Null AND hm17.agency_abbr Is Not Null AND hm17.loan_amount_000s Is Not Null AND hm17.applicant_income_000s != '' AND hm17.number_of_1_to_4_family_units Is Not Null AND hm17.msamd_name != '' ) ORDER BY random() LIMIT 25000 --random sample of 25000, which we then use to take another random sample of 12500 (CTE: hm17_u_raw) ) , hm_17_u_raw AS --UNION ALL for the two segmented CTEs to get balanced dataset of 25K ( SELECT hm_a.* FROM(SELECT * FROM hm_17_ap ORDER BY random() LIMIT 12500) hm_a UNION ALL --note that we take another random sample of 125000 of each 25K randomized sample segment SELECT hm_d.* FROM(SELECT * FROM hm_17_de ORDER BY random() LIMIT 12500) hm_d ) , hmda_2017_transform As ( SELECT --simple binary assignment of 1 or 0 , bc the WHERE clause in this CTE segments the approved/denied subset CASE WHEN hm17.act = 'Loan originated' THEN 1 ELSE 0 END As act_outc, hm17.as_of_year As action_year, --must use embedded functions to typecast this as integer because of NULL/space characters in raw data CAST( CAST( hm17.rate_spread As Varchar(5)) As NUMERIC ) As rate_spread, --NB: must be num bc of decimals --concatenating denial reasons into one feature on which we do engineering using python CONCAT_WS(', ', hm17.denial_reason_name_1, hm17.denial_reason_name_2, hm17.denial_reason_name_3) as denials, --must use embedded functions to typecast this as integer because of NULL/space characters in raw data CAST( CAST( CASE WHEN hm17.tract_to_msamd_income IS NULL THEN NULL ELSE hm17.tract_to_msamd_income END As Varchar(5)) As NUMERIC ) As tract_to_msamd_inc, --NB: must be num bc of dec hm17.population As pop, ROUND(hm17.minority_population, 2) As minority_pop_perc, hm17.number_of_owner_occupied_units As num_owoc_units, hm17.number_of_1_to_4_family_units As num_1to4_fam_units, hm17.loan_amount_000s As ln_amt_000s, hm17.hud_median_family_income As hud_med_fm_inc, --must use embedded functions all-in-one to typecast this as integer because raw data stores it as TEXT CAST( CAST( CASE WHEN hm17.applicant_income_000s = '' THEN NULL ELSE hm17.applicant_income_000s END As Varchar(5)) As INT ) As applic_inc_000s, CAST(hm17.state_abbr As VARCHAR(5)) As state_abbr, CAST(hm17.property_type_name As VARCHAR(128) ) As property_type_nm, CAST(hm17.owner_occupancy_name As VARCHAR(128)) As own_occ_nm, CAST(hm17.msamd_name As VARCHAR(128)) As msamd_nm, CAST(hm17.lien_status_name As VARCHAR(56)) As lien_status_nm, CAST(hm17.hoepa_status_name As VARCHAR(56)) As hoep_status_nm, CAST(hm17.co_applicant_sex_name As VARCHAR(28)) As co_appl_sex, CAST(hm17.co_applicant_race_name_1 As VARCHAR(28)) As co_appl_race, CAST(hm17.co_applicant_ethnicity_name As VARCHAR(28)) As co_appl_ethn, CAST(hm17.applicant_sex_name As VARCHAR(28)) As applic_sex, CAST(hm17.applicant_race_name_1 As VARCHAR(28)) As applic_race, CAST(hm17.applicant_ethnicity_name As VARCHAR(28)) As applic_ethn, CAST(hm17.agency_abbr As VARCHAR(28)) As agency_abbr FROM hm_17_u_raw hm17 ORDER BY random() ) , hmda_2017_union AS ( SELECT hm_a.* FROM(SELECT * FROM hmda_2017_transform WHERE act_outc = 1 ORDER BY random() LIMIT 12500) hm_a UNION ALL SELECT hm_a.* FROM(SELECT * FROM hmda_2017_transform WHERE act_outc = 0 ORDER BY random() LIMIT 12500) hm_a ) SELECT hm17_u.* INTO interim_datasets_v2.hmda17_srandom_bal_25K FROM hmda_2017_union hm17_u ORDER BY random() ; /*--------------------------- end HMDA 2017 ---------------------------*/ /*---------------------------------- Union 2016-2017 ----------------------------------*/ ; WITH hmda_union_2016_2017 AS ( SELECT hm16.* FROM interim_datasets_v2.hmda16_srandom_bal_25k hm16 UNION ALL SELECT hm17.* FROM interim_datasets_v2.hmda17_srandom_bal_25K hm17 ) SELECT hm_u.* INTO interim_datasets_v2.hmda_2016_2017_union_srandom_bal_50k FROM hmda_union_2016_2017 hm_u ; /*-------------------------------------------------------------------------------------*/ --> END z_ak_AWS_paddleloancanoe <--- /* Lastly, we use pg_catalogue (or dblink_connect across pgsql databases) to ingest the UNION tbls into one pgsql db */ --> hmda 2011-2013 from pgsql AWS RDS "z_tn_AWS_paddleloancanoe" create table interim_datasets.hmda_lar_union_ii_2011_to_2013_simplerand_bal75k ( action_taken integer, action_year integer, tract_to_masamd_income numeric(1000,2), population integer, min_pop_perc numeric(1000,2), num_owoc_units integer, num_1to4_fam_units integer, ln_amt_000s integer, hud_med_fm_inc integer, applic_inc_000s integer, own_occ_nm varchar, ln_type_nm varchar(56), lien_status_nm varchar(56), hoep_status_nm varchar(56), co_appl_sex varchar(28), co_appl_race varchar(28), co_appl_ethn varchar(28), applic_sex varchar(28), applic_race varchar(28), applic_ethn varchar(28), agency_abbr varchar(28) ) ; set search_path = "pg_catalog" ; set search_path = "interim_datasets" ; SELECT CAST(reltuples as INT) as rows FROM pg_catalog.pg_class C LEFT JOIN pg_catalog.pg_namespace N ON (N.oid = C.relnamespace) WHERE (relkind = 'r' OR relkind = 'v') AND nspname LIKE 'interim#_datasets' ESCAPE '#' AND relname LIKE 'hmda#_lar#_union#_ii#_2011#_to#_2013#_simplerand#_bal75k' ESCAPE '#' ; ---> end of hmda 2011-2013 --> hmda 2016-2017 from pgsql AWS RDS "z_ak_AWS_paddleloancanoe" create table interim_datasets.hmda_lar_union_ii_2016_to_2017_simplerand_bal75k ( action_taken integer, action_year integer, tract_to_masamd_income numeric(1000,2), population integer, min_pop_perc numeric(1000,2), num_owoc_units integer, num_1to4_fam_units integer, ln_amt_000s integer, hud_med_fm_inc integer, applic_inc_000s integer, own_occ_nm varchar, ln_type_nm varchar(56), lien_status_nm varchar(56), hoep_status_nm varchar(56), co_appl_sex varchar(28), co_appl_race varchar(28), co_appl_ethn varchar(28), applic_sex varchar(28), applic_race varchar(28), applic_ethn varchar(28), agency_abbr varchar(28) ) ; set search_path = "pg_catalog" ; set search_path = "interim_datasets" ; SELECT CAST(reltuples as INT) as rows FROM pg_catalog.pg_class C LEFT JOIN pg_catalog.pg_namespace N ON (N.oid = C.relnamespace) WHERE (relkind = 'r' OR relkind = 'v') AND nspname LIKE 'interim#_datasets' ESCAPE '#' AND relname LIKE 'hmda#_lar#_union#_ii#_2016#_to#_2017#_simplerand#_bal50k' ESCAPE '#' ; ---> end of hmda 2016-2017 /*------------------------------------------ UNION ALL 2010-2017 ------------------------------------------*/ ; WITH hmda_union_2010_2017 AS ( SELECT hm10.* FROM interim_datasets_v2.hmda10_srandom_bal_25K hm10 UNION ALL SELECT hm11_13.* FROM interim_datasets_v2.hmda_2011_to_2013_union_srandom_bal_75k hm11_13 UNION ALL SELECT hm14_15.* FROM interim_datasets_v2.hmda_2014_2015_union_srandom_bal_50k hm14_15 UNION ALL SELECT hm16_17.* FROM interim_datasets_v2.hmda_2016_2017_union_srandom_bal_50k hm16_17 ) SELECT hm_u.* INTO interim_datasets_v2.interim_hmda_2010_2017_simplerand_balanced200k FROM hmda_union_2010_2017 hm_u ; /*---------------------------------------------------------------------------------------------------------*/ /*----------------*/ /*** =========================================== END 03b - SQL Script ============================================ ***/
<reponame>adhilahamed333/campus -- phpMyAdmin SQL Dump -- version 4.9.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Jul 21, 2020 at 09:32 AM -- Server version: 10.4.11-MariaDB -- PHP Version: 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 */; -- -- Database: `campus` -- -- -------------------------------------------------------- -- -- Table structure for table `admin` -- CREATE TABLE `admin` ( `admin_id` int(11) NOT NULL, `admin_name` varchar(50) NOT NULL, `admin_email` varchar(100) NOT NULL, `admin_password` varchar(100) NOT NULL, `admin_type` int(11) NOT NULL COMMENT '1-admin' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `admin` -- INSERT INTO `admin` (`admin_id`, `admin_name`, `admin_email`, `admin_password`, `admin_type`) VALUES (1, 'admin', '<EMAIL>', '<PASSWORD>', 1); -- -------------------------------------------------------- -- -- Table structure for table `course` -- CREATE TABLE `course` ( `course_id` int(10) NOT NULL, `semester` varchar(100) NOT NULL, `branch` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `course_name` varchar(100) NOT NULL, `slot` varchar(100) NOT NULL, `credits` int(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `course` -- INSERT INTO `course` (`course_id`, `semester`, `branch`, `code`, `course_name`, `slot`, `credits`) VALUES (14, 'S1', 'CSE', 'MA101', 'CALCULUS', 'A', 4), (15, 'S1', 'CSE', 'PH100', 'ENGINEERING PHYSICS', 'B', 4), (16, 'S2', 'CSE', 'PH100', 'ENGINEERING PHYSICS', 'B', 4), (17, 'S1', 'CSE', 'CY100', 'ENGINEERING CHEMISTRY', 'B', 4), (18, 'S2', 'CSE', 'CY100', 'ENGINEERING CHEMISTRY', 'B', 4), (19, 'S1', 'CSE', 'BE100', 'ENGINEERING MECHANICS', 'C', 4), (20, 'S2', 'CSE', 'BE100', 'ENGINEERING MECHANICS', 'C', 4), (21, 'S1', 'CSE', 'BE110', 'ENGINEERING GRAPHICS', 'C', 4), (22, 'S2', 'CSE', 'BE110', 'ENGINEERING GRAPHICS', 'C', 4), (23, 'S1', 'CSE', 'BE101', 'INTRODUCTION TO ELECTRICAL ENGINEERING', 'D', 3), (24, 'S1', 'CSE', 'BE103', 'INTRODUCTION TO SUSTAINABLE ENGINEERING', 'E', 3), (25, 'S2', 'CSE', 'EC100', 'BASICS OF ELECTRONICS ENGINEERING', 'F', 3), (26, 'S1', 'CSE', 'PH110', 'ENGINEERING PHYSICS LAB', 'S', 1), (27, 'S2', 'CSE', 'PH100', 'ENGINEERING PHYSICS LAB', 'S', 1), (28, 'S1', 'CSE', 'CY110', 'ENGINEERING CHEMISTRY LAB', 'S', 1), (29, 'S2', 'CSE', 'CY100', 'ENGINEERING CHEMISTRY LAB', 'S', 1), (30, 'S2', 'CSE', 'EC110', 'ELECTRONICS WORKSHOP', 'T', 1), (31, 'S3', 'CSE', 'MA201', 'LINEAR ALGEBRA AND COMPLEX ANALYSIS', 'A', 4), (32, 'S3', 'CSE', 'CS201', 'DISCRETE COMPUTATIONAL STRUCTURES', 'B', 4), (33, 'S3', 'CSE', 'CS203', 'SWITCHING THEORY AND LOGIC DESIGN', 'C', 4), (34, 'S3', 'CSE', 'CS205', 'DATA STRUCTURES', 'D', 4), (35, 'S3', 'CSE', 'CS207', 'ELECTRONIC DEVICES AND CIRCUITS', 'E', 3), (36, 'S3', 'CSE', 'HS210', 'LIFE SKILLS', 'F', 3), (37, 'S4', 'CSE', 'HS210', 'LIFE SKILLS', 'F', 3), (38, 'S3', 'CSE', 'HS200', 'BUSINESS ECONOMICS', 'F', 3), (39, 'S4', 'CSE', 'HS200', 'BUSINESS ECONOMICS', 'F', 3), (40, 'S3', 'CSE', 'CS231', 'DATA STRUCTURES LAB', 'S', 1), (41, 'S3', 'CSE', 'CS233', 'ELECTRONICS CIRCUITS LAB', 'T', 1), (42, 'S4', 'CSE', 'MA202', 'PROBABILITY DISTRIBUTIONS, TRANSFORMS AND NUMERICAL METHODS', 'A', 4), (43, 'S4', 'CSE', 'CS202', 'COMPUTER ORGANIZATION AND ARCHITECTURE', 'B', 4), (44, 'S4', 'CSE', 'CS204', 'OPERATING SYSTEMS', 'C', 4), (45, 'S4', 'CSE', 'CS206', 'OBJECT ORIENTED DESIGN AND PROGRAMMING', 'D', 3), (46, 'S4', 'CSE', 'CS208', 'PRINCIPLES OF DATABASE DESIGN', 'E', 3), (47, 'S4', 'CSE', 'CS232', 'FREE AND OPEN SOURCE SOFTWARE LAB', 'S', 1), (48, 'S4', 'CSE', 'CS234', 'DIGITAL SYSTEMS LAB', 'T', 1), (49, 'S5', 'CSE', 'CS301', 'THEORY OF COMPUTATION', 'A', 4), (50, 'S5', 'CSE', 'CS303', 'SYSTEM SOFTWARE', 'B', 3), (51, 'S5', 'CSE', 'CS305', 'MICROPROCESSORS AND MICROCONTROLLERS', 'C', 3), (52, 'S5', 'CSE', 'CS307', 'DATA COMMUNICATION', 'D', 3), (53, 'S5', 'CSE', 'CS309', 'GRAPH THEORY AND COMBINATORICS', 'E', 3), (54, 'S5', 'CSE', 'CS361', 'SOFT COMPUTING', 'F', 3), (55, 'S5', 'CSE', 'CS363', 'SIGNALS AND SYSTEMS', 'F', 3), (56, 'S5', 'CSE', 'CS365', 'OPTIMIZATION TECHNIQUES', 'F', 3), (57, 'S5', 'CSE', 'CS367', 'LOGIC FOR COMPUTER SCIENCE', 'F', 3), (58, 'S5', 'CSE', 'CS369', 'DIGITAL SYSTEM TESTING AND TESTABLE DESIGN', 'F', 3), (59, 'S5', 'CSE', 'CS341', 'DESIGN PROJECT', 'S', 2), (60, 'S5', 'CSE', 'CS331', 'SYSTEM SOFTWARE LAB', 'T', 1), (61, 'S5', 'CSE', 'CS333', 'APPLICATION SOFTWARE DEVELOPMENT LAB', 'U', 1), (62, 'S6', 'CSE', 'CS302', 'DESIGN AND ANALYSIS OF ALGORITHMS', 'A', 4), (63, 'S6', 'CSE', 'CS304', 'COMPILER DESIGN', 'B', 3), (64, 'S6', 'CSE', 'CS306', 'COMPUTER NETWORKS', 'C', 3), (65, 'S6', 'CSE', 'CS308', 'SOFWARE ENGINEERING AND PROJECT MANAGEMENT', 'D', 3), (66, 'S6', 'CSE', 'HS300', 'PRINCIPLES OF MANAGEMENT', 'E', 3), (67, 'S6', 'CSE', 'CS362', 'COMPUTER VISION', 'F', 3), (68, 'S6', 'CSE', 'CS364', 'MOBILE COMPUTING', 'F', 3), (69, 'S6', 'CSE', 'CS366', 'NATURAL LANGUAGE PROCESSING', 'F', 3), (70, 'S6', 'CSE', 'CS368', 'WEB TECHNOLOGIES', 'F', 3), (71, 'S6', 'CSE', 'CS372', 'HIGH PERFORMANCE COMPUTING', 'F', 3), (72, 'S6', 'CSE', 'CS334', 'NETWORK PROGRAMMING LAB', 'T', 1), (73, 'S6', 'CSE', 'CS332', 'MICROPROCESSOR LAB', 'S', 1), (74, 'S6', 'CSE', 'CS352', 'COMPREHENSIVE EXAM', 'U', 2), (75, 'S7', 'CSE', 'CS401', 'COMPUTER GRAPHICS', 'A', 4), (76, 'S7', 'CSE', 'CS403', 'PROGRAMMING PARADIGMS', 'B', 3), (77, 'S7', 'CSE', 'CS405', 'COMPUTER SYSTEM ARCHITECTURE', 'C', 3), (78, 'S7', 'CSE', 'CS407', 'DISTRIBUTED COMPUTING', 'D', 3), (79, 'S7', 'CSE', 'CS409', 'CRYPTOGRAPHY AND NETWORK SECURITY', 'E', 3), (80, 'S7', 'CSE', 'CS461', 'COMPUTATIONAL GEOMETRY', 'F', 3), (81, 'S7', 'CSE', 'CS463', 'DIGITAL IMAGE PROCESSING', 'F', 3), (82, 'S7', 'CSE', 'CS465', 'BIO INFORMATICS', 'F', 3), (83, 'S7', 'CSE', 'CS467', 'MACHINE LEARNING', 'F', 3), (84, 'S7', 'CSE', 'CS469', 'COMPUTATIONAL COMPLEXITY', 'F', 3), (85, 'S7', 'CSE', 'CS451', 'SEMINAR & PROJECT PRELIMINARY', 'S', 2), (86, 'S7', 'CSE', 'CS431', 'COMPILER DESIGN LAB', 'T', 1), (87, 'S8', 'CSE', 'CS402', 'DATA MINING AND WAREHOUSING', 'A', 3), (88, 'S8', 'CSE', 'CS404', 'EMBEDDED SYSTEMS', 'B', 3), (89, 'S8', 'CSE', 'CS462', 'FUZZY SET THEORY AND APPLICATIONS', 'C', 3), (90, 'S8', 'CSE', 'CS464', 'ARTIFICIAL INTELLIGENCE', 'C', 3), (91, 'S8', 'CSE', 'CS466', 'DATA SCIENCE', 'C', 3), (92, 'S8', 'CSE', 'CS468', 'CLOUD COMPUTING', 'C', 3), (93, 'S8', 'CSE', 'CS472', 'PRINCIPLES OF INFORMATION SECURITY', 'C', 3), (94, 'S8', 'CSE', 'CS492', 'PROJECT', 'NO SLOT', 5), (95, 'S8', 'CSE', 'ME482 ', 'ENERGY CONSERVATION AND MANAGEMENT', 'D', 3), (96, 'S8', 'CSE', 'IT482 ', 'INFORMATION STORAGE MANAGEMENT', 'D', 3), (97, 'S8', 'CSE', 'IE488', ' TOTAL QUALITY MANAGEMENT', 'D', 3), (98, 'S8', 'CSE', 'EE488', ' INDUSTRIAL AUTOMATION', 'D', 3), (99, 'S8', 'CSE', 'EC482', ' BIOMEDICAL ENGINEERING', 'D', 3), (100, 'S8', 'CSE', 'CS488', ' C # AND .NET PROGRAMMING', 'D', 3), (101, 'S8', 'CSE', 'CE488', ' DISASTER MANAGEMENT', 'D', 3), (102, 'S8', 'CSE', 'AE482', ' INDUSTRIAL INSTRUMENTATION', 'D', 3); -- -------------------------------------------------------- -- -- Table structure for table `credits` -- CREATE TABLE `credits` ( `id` int(10) NOT NULL, `std_id` int(10) NOT NULL, `first_sem` int(20) NOT NULL, `sec_sem` int(20) NOT NULL, `third_sem` int(20) NOT NULL, `forth_sem` int(20) NOT NULL, `fifth_sem` int(20) NOT NULL, `sixth_sem` int(20) NOT NULL, `seventh_sem` int(20) NOT NULL, `eighth_sem` int(20) NOT NULL, `cgpa` decimal(10,0) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `credits` -- INSERT INTO `credits` (`id`, `std_id`, `first_sem`, `sec_sem`, `third_sem`, `forth_sem`, `fifth_sem`, `sixth_sem`, `seventh_sem`, `eighth_sem`, `cgpa`) VALUES (1, 1, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (2, 2, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (3, 17, 18, 16, 19, 15, 14, 15, 11, 10, '0'), (4, 4, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (5, 5, 24, 23, 24, 23, 23, 20, 22, 0, '0'), (6, 64, 12, 23, 0, 0, 0, 0, 0, 0, '0'), (7, 7, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (8, 8, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (9, 9, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (10, 10, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (11, 11, 17, 20, 24, 23, 20, 20, 16, 0, '0'), (12, 12, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (13, 13, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (14, 14, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (15, 15, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (16, 16, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (18, 18, 24, 23, 18, 20, 20, 17, 16, 0, '0'), (20, 20, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (21, 82, 23, 34, 23, 23, 0, 0, 0, 0, '0'), (22, 85, 24, 24, 24, 24, 0, 0, 0, 0, '0'), (23, 23, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (24, 24, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (25, 25, 24, 23, 24, 23, 23, 20, 22, 0, '0'), (26, 26, 24, 23, 24, 23, 23, 20, 22, 0, '0'), (27, 27, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (28, 28, 24, 23, 24, 23, 17, 20, 19, 0, '0'), (29, 29, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (30, 30, 24, 23, 24, 20, 20, 16, 19, 0, '0'), (31, 31, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (32, 32, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (33, 33, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (34, 34, 24, 23, 24, 23, 23, 20, 19, 0, '0'), (35, 35, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (36, 36, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (37, 37, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (38, 38, 24, 23, 24, 23, 23, 23, 19, 0, '0'), (39, 39, 24, 23, 24, 23, 23, 23, 16, 0, '0'), (40, 40, 24, 23, 24, 23, 23, 23, 16, 0, '0'), (41, 41, 24, 23, 24, 23, 20, 20, 16, 0, '0'), (42, 42, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (43, 43, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (44, 44, 24, 23, 14, 20, 14, 16, 13, 0, '0'), (45, 45, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (46, 46, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (47, 47, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (48, 48, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (49, 49, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (50, 50, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (51, 51, 24, 23, 24, 23, 23, 23, 22, 0, '0'), (54, 77, 23, 23, 0, 0, 0, 0, 0, 0, '0'); -- -------------------------------------------------------- -- -- Table structure for table `due_amount` -- CREATE TABLE `due_amount` ( `id` int(10) NOT NULL, `due_id` varchar(10) NOT NULL, `student_id` varchar(10) NOT NULL, `amount` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `due_amount` -- INSERT INTO `due_amount` (`id`, `due_id`, `student_id`, `amount`) VALUES (1, '1', '1', '10'), (5, '1', '2', '0'), (9, '2', '79', '250'), (10, '1', '77', '0'), (12, '1', '3', '0'); -- -------------------------------------------------------- -- -- Table structure for table `due_dept` -- CREATE TABLE `due_dept` ( `dept_id` int(10) NOT NULL, `department` varchar(100) NOT NULL, `department_id` varchar(100) NOT NULL, `staffincharge` varchar(100) NOT NULL, `password` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `due_dept` -- INSERT INTO `due_dept` (`dept_id`, `department`, `department_id`, `staffincharge`, `password`) VALUES (1, 'SOFTWARE LAB', 'SR-101', 'SUBHASH', 'Subhash@123'), (4, 'P T A', 'SR-102', 'YOSAF MOULAVI', 'Moulavi@123'), (5, 'CCF', 'SR-103', 'BAIJU', 'Baiju@123'), (6, 'SEMINAR HALL', 'SR-103', 'BAIJU', 'Baiju@123'), (7, 'COMMON FINE', 'KTU-F25435', 'ANJU SUKUMAR', 'Anju@123'), (8, 'CENTRAL LIBRARY', 'SR-104', 'SATHEESH', 'Satheesh@123'), (9, 'COOPERATIVE SOCIETY', 'SR-105', 'SHINY', 'Shiny@123'), (10, 'HOSTEL', 'SR-106', 'NIDHIN', 'Nidhin@123'), (11, 'MESS', 'SR-106', 'NIDHIN', 'Nidhin@123'), (12, 'SERGEANT', 'SR-107', 'BIJU', 'Biju@123'), (13, 'CGPC', 'KTU-F2782', '<NAME>', 'Dileesh@123'), (14, 'BUS', 'SR-108', 'ABHIJITH', 'Abhijith@123'); -- -------------------------------------------------------- -- -- Table structure for table `due_type` -- CREATE TABLE `due_type` ( `id` int(5) NOT NULL, `type` varchar(30) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `due_type` -- INSERT INTO `due_type` (`id`, `type`) VALUES (1, 'Software Lab'), (2, 'PTA'), (3, 'CCF'), (4, 'Seminar Hall'), (5, 'Central Library'), (6, 'Corporate Society'), (7, 'Hostel'), (8, 'Mess'), (9, 'Sergant'), (10, 'CGPC'), (11, 'Bus'); -- -------------------------------------------------------- -- -- Table structure for table `hod` -- CREATE TABLE `hod` ( `hod_id` int(10) NOT NULL, `department` varchar(100) NOT NULL, `hod_name` varchar(100) NOT NULL, `user_id` varchar(50) NOT NULL, `password` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `hod` -- INSERT INTO `hod` (`hod_id`, `department`, `hod_name`, `user_id`, `password`) VALUES (1, 'CSE', 'Dr. <NAME>', '<PASSWORD>', '<PASSWORD>'), (2, 'IT', 'Dr. <NAME>', 'sangeetha', 'Sangeetha123'), (4, 'EEE', 'Dr. CHANDRABOSE', 'chandrabose', 'chandra123'), (5, 'ME', 'Dr. BINDHUKUMAR', 'bindhukumar', 'bindhu123'), (6, 'ECE', 'Dr. <NAME>', 'harispa', 'haris123'); -- -------------------------------------------------------- -- -- Table structure for table `semsubjects` -- CREATE TABLE `semsubjects` ( `stud_id` int(11) NOT NULL, `subb_id` int(20) NOT NULL, `sub1` varchar(20) NOT NULL, `sub2` varchar(20) NOT NULL, `sub3` varchar(20) NOT NULL, `sub4` varchar(20) NOT NULL, `sub5` varchar(20) NOT NULL, `sub6` varchar(20) NOT NULL, `sub7` varchar(20) NOT NULL, `sub8` varchar(20) NOT NULL, `sub9` varchar(20) NOT NULL, `sub10` varchar(20) NOT NULL, `sem` varchar(20) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `semsubjects` -- INSERT INTO `semsubjects` (`stud_id`, `subb_id`, `sub1`, `sub2`, `sub3`, `sub4`, `sub5`, `sub6`, `sub7`, `sub8`, `sub9`, `sub10`, `sem`) VALUES (82, 6, '49', '50', '54', '55', '58', '59', '', '', '', '', 'S5'), (82, 7, '49', '50', '51', '54', '55', '56', '', '', '', '', 'S5'), (85, 8, '49', '54', '58', '', '', '', '', '', '', '', 'S5'), (77, 9, '31', '32', '33', '34', '35', '38', '40', '41', '', '', 'S3'); -- -------------------------------------------------------- -- -- Table structure for table `sem_display_date` -- CREATE TABLE `sem_display_date` ( `id` int(11) NOT NULL, `date` varchar(50) NOT NULL, `end_date` varchar(40) NOT NULL, `staff_id` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `sem_display_date` -- INSERT INTO `sem_display_date` (`id`, `date`, `end_date`, `staff_id`) VALUES (16, '2020-07-16', '2020-07-30', '8'), (17, '2020-07-16', '2020-07-30', '8'), (18, '2020-07-20', '2020-07-11', '8'), (19, '2020-07-16', '2020-07-27', '8'), (20, '2020-07-16', '2020-07-29', '17'); -- -------------------------------------------------------- -- -- Table structure for table `sem_reg` -- CREATE TABLE `sem_reg` ( `sem_reg_id` int(10) NOT NULL, `std_id` int(10) NOT NULL, `course_id` varchar(100) NOT NULL, `hod_status` varchar(10) NOT NULL DEFAULT '0', `status` varchar(10) NOT NULL DEFAULT 'pending', `advisor_id` int(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `sem_reg` -- INSERT INTO `sem_reg` (`sem_reg_id`, `std_id`, `course_id`, `hod_status`, `status`, `advisor_id`) VALUES (10, 82, 'S5', '0', 'approved', 17), (11, 85, 'S5', '0', 'approved', 17); -- -------------------------------------------------------- -- -- Table structure for table `staff` -- CREATE TABLE `staff` ( `s_id` int(10) NOT NULL, `name` varchar(100) NOT NULL, `ktu_id` varchar(10) NOT NULL, `department` varchar(100) NOT NULL, `advisor` varchar(100) NOT NULL, `username` varchar(100) NOT NULL, `password` varchar(100) NOT NULL, `status` int(10) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `staff` -- INSERT INTO `staff` (`s_id`, `name`, `ktu_id`, `department`, `advisor`, `username`, `password`, `status`) VALUES (8, '<NAME>', 'KTU-F39330', 'CSE', 'First Year', 'KTU-F39330', 'sankara@123', 0), (9, '<NAME>', 'KTU-F437', 'CSE', 'Second Year', 'KTU-F437', 'philumon@123', 0), (14, '<NAME>', 'KTU-F27260', 'CSE', 'Third Year', 'KTU-F27260', 'pillai@123', 0), (15, '<NAME>', 'KTU-F25435', 'CSE', 'Forth Year', 'KTU-F25435', 'anju@123', 0), (16, '<NAME>', 'KTU-F15171', 'CSE', 'Forth Year', 'KTU-F15171', 'deepa@123', 0), (17, '<NAME>', 'KTU-F2782', 'CSE', 'Second Year', 'KTU-F2782', 'dileesh@123', 0), (18, '<NAME>', 'KTU-F35965', 'CSE', 'First Year', 'KTU-F35965', 'liya@123', 0), (19, '<NAME>', 'KTU-F22331', 'CSE', 'Third Year', 'KTU-F22331', 'jabin@123', 0); -- -------------------------------------------------------- -- -- Table structure for table `stdpersonal` -- CREATE TABLE `stdpersonal` ( `std2_id` int(10) NOT NULL, `std_id` int(10) NOT NULL, `phone` varchar(50) NOT NULL, `address` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `category` varchar(100) NOT NULL, `fath_moth` varchar(100) NOT NULL, `occupationfath_moth` varchar(100) NOT NULL, `phnofath_moth` varchar(100) NOT NULL, `emailfath_moth` varchar(100) NOT NULL, `lgname` varchar(100) NOT NULL, `lgrelation` varchar(100) NOT NULL, `lgoccupation` varchar(100) NOT NULL, `lgphone` varchar(100) NOT NULL, `admission_no` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `stdpersonal` -- INSERT INTO `stdpersonal` (`std2_id`, `std_id`, `phone`, `address`, `email`, `category`, `fath_moth`, `occupationfath_moth`, `phnofath_moth`, `emailfath_moth`, `lgname`, `lgrelation`, `lgoccupation`, `lgphone`, `admission_no`) VALUES (64, 77, '8767563456', 'akshsshs sbshshsh', '<EMAIL>', 'wrer', 'rweter', 'reyreyr', '9876543211', '<EMAIL>', 'reryer', 'reyreyr', 'dgdfgdf', '9876543210', '7323'), (65, 0, '', '', '', '', '', '', '', '', '', '', '', '', '7456'), (66, 79, '123333', 'qwq', '<EMAIL>', 'aaa', 'aaa', 'aaa', 'aa', 'aa', 'aa', 'aa', 'aa', 'aa', '7425'), (67, 0, '', '', '', '', '', '', '', '', '', '', '', '', '7509'), (68, 0, '', '', '', '', '', '', '', '', '', '', '', '', '7943'), (69, 82, '8767563456', 'akshsshs sbshshsh', '<EMAIL>', 'wrer', 'rweter', 'reyreyr', '9876543211', '<EMAIL>', 'reryer', 'reyreyr', 'dgdfgdf', '7593044784', '8252'), (70, 0, '', '', '', '', '', '', '', '', '', '', '', '', '8365'), (71, 0, '', '', '', '', '', '', '', '', '', '', '', '', '8907'), (72, 85, '9876543210', 'akshsshs sbshshsh', '<EMAIL>', 'wrer', 'rweter', 'reyreyr', '9876543211', '<EMAIL>', 'reryer', 'reyreyr', 'dgdfgdf', '9876543210', '8001'), (73, 0, '', '', '', '', '', '', '', '', '', '', '', '', '8765'), (74, 0, '', '', '', '', '', '', '', '', '', '', '', '', '9621'), (75, 0, '', '', '', '', '', '', '', '', '', '', '', '', '9567'), (76, 0, '', '', '', '', '', '', '', '', '', '', '', '', '9167'), (77, 0, '', '', '', '', '', '', '', '', '', '', '', '', '9992'), (78, 0, '', '', '', '', '', '', '', '', '', '', '', '', '9965'); -- -------------------------------------------------------- -- -- Table structure for table `stdreg` -- CREATE TABLE `stdreg` ( `std_id` int(10) NOT NULL, `std_name` varchar(100) NOT NULL, `dob` date NOT NULL, `admission_no` varchar(100) NOT NULL, `Course` varchar(50) NOT NULL, `branch` varchar(100) NOT NULL, `dateofjoining` date NOT NULL, `dateofleaving` date NOT NULL, `universityregno` varchar(100) NOT NULL, `semester` varchar(50) NOT NULL, `std_credits` varchar(10) NOT NULL, `password` varchar(100) NOT NULL, `staff_id` int(10) NOT NULL, `aprove` int(5) NOT NULL DEFAULT 0, `due` varchar(50) NOT NULL, `due_amount` varchar(20) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `stdreg` -- INSERT INTO `stdreg` (`std_id`, `std_name`, `dob`, `admission_no`, `Course`, `branch`, `dateofjoining`, `dateofleaving`, `universityregno`, `semester`, `std_credits`, `password`, `staff_id`, `aprove`, `due`, `due_amount`) VALUES (1, '<NAME>', '1998-08-05', ' 6328', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS001', 'S8', '', 'Abhinav@123', 15, 0, '', ''), (2, '<NAME>', '1998-07-09', '6079', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS002', 'S8', '', 'Adhil@123', 15, 0, '', ''), (3, '<NAME>', '1998-04-23', '6323', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS003', 'S8', '', 'Adhithye@123', 15, 0, '', ''), (4, '<NAME>', '1997-05-08', '6344', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS004', 'S8', '', 'Aghil@123', 15, 0, '', ''), (5, '<NAME>', '1998-01-30', '6099', 'B.Tech', 'CSE', '2016-12-03', '2020-07-31', 'IDK16CS009', 'S8', '', 'Alfathima@123', 15, 0, '', ''), (6, '<NAME>', '1997-09-09', '6245', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS010', 'S8', '', 'Amalbaby@123', 15, 0, '', ''), (7, '<NAME>', '1998-04-17', '6248', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS011', 'S8', '', 'Ammar@123', 15, 0, '', ''), (8, '<NAME>', '1998-08-11', '6095', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS012', 'S8', '', 'Amrutha@123', 15, 0, '', ''), (9, '<NAME>', '1998-07-12', '6306', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS013', 'S8', '', 'Anandu@123', 15, 0, '', ''), (10, '<NAME>', '1998-08-18', '6392', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS016', 'S8', '', 'Anjana@123', 15, 0, '', ''), (11, '<NAME>', '1998-06-07', '6276', 'B.Tech', 'CSE', '2016-12-03', '2020-07-31', 'IDK16CS019', 'S8', '', 'Anumol@123', 15, 0, '', ''), (12, '<NAME>', '1998-09-23', '6280', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS022', 'S8', '', 'Arya@123', 15, 0, '', ''), (13, '<NAME>', '1998-04-01', '6124', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS23', 'S8', '', 'Aswathy@123', 15, 0, '', ''), (14, '<NAME>', '1998-08-11', '6174', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS024', 'S8', '', 'Athul@1223', 15, 0, '', ''), (15, '<NAME>', '1998-06-25', '6337', 'B.Tech', 'CSE', '2016-12-02', '2020-07-31', 'IDK16CS025', 'S8', '', 'Athulya@123', 15, 0, '', ''), (16, '<NAME>', '1998-08-27', '6507', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS027', 'S8', '', 'Dona@123', 15, 0, '', ''), (17, '<NAME>', '1998-01-31', '6083', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS028', 'S8', '', 'Hamitha@123', 15, 0, '', ''), (18, '<NAME>', '1998-04-26', '6192', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS029', 'S8', '', 'Hari@123', 15, 0, '', ''), (19, '<NAME>', '1997-07-18', '6420', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS030', 'S8', '', 'Jamshi@123', 15, 0, '', ''), (20, '<NAME>', '1998-06-09', '6351', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS031', 'S8', '', 'Jesna@123', 15, 0, '', ''), (21, '<NAME>', '1998-08-26', '6191', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS032', 'S8', '', 'Jeswin@123', 15, 0, '', ''), (22, '<NAME>', '1998-05-05', '6180', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS033', 'S8', '', 'Milan@123', 15, 0, '', ''), (23, '<NAME>', '1997-08-01', '6210', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS034', 'S8', '', 'Joset@123', 15, 0, '', ''), (24, '<NAME>', '1998-02-02', '6204', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS035', 'S8', '', 'Kanchana@123', 15, 0, '', ''), (25, '<NAME>', '1997-02-13', '6195', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS036', 'S8', '', 'Krishna@123', 15, 0, '', ''), (26, '<NAME>', '1997-12-20', '6391', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS037', 'S8', '', 'Lakshmi@123', 15, 0, '', ''), (27, '<NAME>', '1997-09-28', '6113', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS039', 'S8', '', 'Meenakshi@123', 15, 0, '', ''), (28, '<NAME>', '1997-07-06', '6358', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS040', 'S8', '', 'Irfan@123', 15, 0, '', ''), (29, '<NAME>', '1998-09-05', '6154', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS041', 'S8', '', 'Nnadu@123', 15, 0, '', ''), (30, '<NAME>', '1998-03-29', '6457', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS042', 'S8', '', 'Nidhin@123', 15, 0, '', ''), (31, '<NAME>', '1998-06-30', '6371', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS044', 'S8', '', 'Rajalakshmi@123', 15, 0, '', ''), (32, '<NAME>', '1998-12-26', '6320', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS45', 'S8', '', 'Rawoof@123', 15, 0, '', ''), (33, '<NAME>', '1998-03-16', '6179', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS046', 'S8', '', 'Remi@123', 15, 0, '', ''), (34, '<NAME>', '1998-09-17', '6267', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS048', 'S8', '', 'Rohith@123', 15, 0, '', ''), (35, '<NAME>', '1997-10-10', '6127', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS049', 'S8', '', 'Roniya@123', 15, 0, '', ''), (36, '<NAME>', '1998-02-20', '6460', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS050', 'S8', '', 'Sajid@123', 15, 0, '', ''), (37, '<NAME>', '1998-04-04', '6141', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS051', 'S8', '', 'Sandra@123', 15, 0, '', ''), (38, '<NAME>', '1998-12-31', '6342', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS052', 'S8', '', 'Sandrap@123', 15, 0, '', ''), (39, '<NAME>', '1997-11-12', '6225', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS053', 'S8', '', 'Sinesha@123', 15, 0, '', ''), (40, '<NAME>', '1998-10-18', '6170', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS054', 'S8', '', 'Snesha@123', 15, 0, '', ''), (41, '<NAME>', '1998-02-19', '6176', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS055', 'S8', '', 'Sonia@123', 15, 0, '', ''), (42, '<NAME>', '1998-12-13', '6508', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS056', 'S8', '', 'Swathi@123', 15, 0, '', ''), (43, '<NAME>', '1998-07-21', '6495', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS058', 'S8', '', 'Syam@123', 15, 0, '', ''), (44, '<NAME>', '1997-04-15', '6467', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS061', 'S8', '', 'Vishnupv2123', 15, 0, '', ''), (45, '<NAME>', '1997-05-31', '6394', 'B.Tech', 'CSE', '2016-08-03', '2020-07-31', 'IDK16CS062', 'S8', '', 'Vishnu@123', 15, 0, '', ''), (46, '<NAME>', '1998-06-07', '6449', 'B.Tech', 'CSE', '2016-08-03', '2020-07-30', 'IDK16IT042', 'S8', '', 'Rahul@123', 15, 0, '', ''), (47, '<NAME>', '1996-11-14', '6546', 'B.Tech', 'CSE', '2017-08-01', '2020-07-31', 'LIDK16CS063', 'S8', '', 'Ajesh@123', 15, 0, '', ''), (48, '<NAME>', '1996-12-12', '6555', 'B.Tech', 'CSE', '2017-08-01', '2020-07-31', 'LIDK16CS064', 'S8', '', 'Anjali@123', 15, 0, '', ''), (49, '<NAME>', '1996-12-23', '6994', 'B.Tech', 'CSE', '2017-08-01', '1996-07-31', 'LIDK16CS065', 'S8', '', 'Anusha2123', 15, 0, '', ''), (50, '<NAME>', '1996-06-14', '6948', 'B.Tech', 'CSE', '2017-08-01', '2020-07-31', 'LIDK16CS066', 'S8', '', 'Jisha@123', 15, 0, '', ''), (51, '<NAME>', '1996-12-25', '6953', 'B.Tech', 'CSE', '2017-08-01', '2020-07-31', 'LIDK16CS067', 'S8', '', 'Neha@123', 15, 0, '', ''), (77, '<NAME>', '2001-01-01', '7323', 'B.Tech', 'CSE', '2019-08-01', '2023-07-31', 'IDK19CS001', 'S3', '46', 'Aparna@123', 8, 0, '', ''), (78, '<NAME>', '2001-02-02', '7456', 'B.Tech', 'CSE', '2019-08-01', '2023-07-31', 'IDK19CS002', 'S2', '', 'Christy@123', 8, 0, '', ''), (79, '<NAME>', '2001-03-03', '7425', 'B.Tech', 'CSE', '2019-08-01', '2023-07-31', 'IDK19CS003', 'S2', '', 'Deviak@123', 8, 0, '', ''), (80, '<NAME>', '2001-04-14', '7509', 'B.Tech', 'CSE', '2019-08-01', '2023-07-31', 'IDK19CS004', 'S2', '', 'Nevin123', 8, 0, '', ''), (81, '<NAME>', '2001-03-05', '7943', 'B.Tech', 'CSE', '2019-08-01', '2023-07-31', 'IDK19CS005', 'S2', '', 'Srarh@123', 8, 0, '', ''), (82, '<NAME>', '2000-09-11', '8252', 'B.Tech', 'CSE', '2018-08-02', '2022-07-31', 'IDK18CS001', 'S5', '103', 'Akash@123', 17, 0, '', ''), (83, '<NAME>', '2000-12-22', '8365', 'B.Tech', 'CSE', '2018-08-02', '2022-07-31', 'IDK18CS002', 'S4', '', 'Cathrine123', 17, 0, '', ''), (84, '<NAME>', '2000-10-30', '8907', 'B.Tech', 'CSE', '2018-08-02', '2022-07-31', 'IDK18CS003', 'S4', '', 'Maneesh123', 17, 0, '', ''), (85, '<NAME>', '2000-08-04', '8001', 'B.Tech', 'CSE', '2018-08-02', '2022-07-31', 'IDK18CS004', 'S4', '96', 'Pravwen123', 17, 0, '', ''), (86, '<NAME>', '2000-07-05', '8765', 'B.Tech', 'CSE', '2018-08-02', '2022-07-31', 'IDK18CS005', 'S4', '', 'Reshma123', 17, 0, '', ''), (87, '<NAME>', '1997-01-01', '9621', 'B.Tech', 'CSE', '2017-08-01', '2021-07-31', 'IDK17CS001', 'S6', '', 'Abhi@123', 19, 0, '', ''), (88, '<NAME>', '1997-02-02', '9567', 'B.Tech', 'CSE', '2017-08-01', '2021-07-31', 'IDK17CS002', 'S6', '', 'Bibin@123', 19, 0, '', ''), (89, '<NAME>', '1997-03-03', '9167', 'B.Tech', 'CSE', '2017-08-01', '2021-07-31', 'IDK17CS003', 'S6', '', 'Felix123', 19, 0, '', ''), (90, '<NAME>', '1997-04-04', '9992', 'B.Tech', 'CSE', '2017-08-01', '2021-07-31', 'IDK17CS004', 'S6', '', 'Nikhil123', 19, 0, '', ''), (91, '<NAME>', '1997-05-05', '9965', 'B.Tech', 'CSE', '2017-08-01', '2021-07-31', 'IDK17CS005', 'S6', '', 'Zahara123', 19, 0, '', ''); -- -- Indexes for dumped tables -- -- -- Indexes for table `admin` -- ALTER TABLE `admin` ADD PRIMARY KEY (`admin_id`); -- -- Indexes for table `course` -- ALTER TABLE `course` ADD PRIMARY KEY (`course_id`); -- -- Indexes for table `credits` -- ALTER TABLE `credits` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `std_id` (`std_id`); -- -- Indexes for table `due_amount` -- ALTER TABLE `due_amount` ADD PRIMARY KEY (`id`); -- -- Indexes for table `due_dept` -- ALTER TABLE `due_dept` ADD PRIMARY KEY (`dept_id`); -- -- Indexes for table `due_type` -- ALTER TABLE `due_type` ADD PRIMARY KEY (`id`); -- -- Indexes for table `hod` -- ALTER TABLE `hod` ADD PRIMARY KEY (`hod_id`); -- -- Indexes for table `semsubjects` -- ALTER TABLE `semsubjects` ADD PRIMARY KEY (`subb_id`); -- -- Indexes for table `sem_display_date` -- ALTER TABLE `sem_display_date` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sem_reg` -- ALTER TABLE `sem_reg` ADD PRIMARY KEY (`sem_reg_id`); -- -- Indexes for table `staff` -- ALTER TABLE `staff` ADD PRIMARY KEY (`s_id`); -- -- Indexes for table `stdpersonal` -- ALTER TABLE `stdpersonal` ADD PRIMARY KEY (`std2_id`), ADD UNIQUE KEY `admission_no` (`admission_no`); -- -- Indexes for table `stdreg` -- ALTER TABLE `stdreg` ADD PRIMARY KEY (`std_id`), ADD UNIQUE KEY `admission_no` (`admission_no`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admin` -- ALTER TABLE `admin` MODIFY `admin_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `course` -- ALTER TABLE `course` MODIFY `course_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=103; -- -- AUTO_INCREMENT for table `credits` -- ALTER TABLE `credits` MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=55; -- -- AUTO_INCREMENT for table `due_amount` -- ALTER TABLE `due_amount` MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `due_dept` -- ALTER TABLE `due_dept` MODIFY `dept_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- AUTO_INCREMENT for table `due_type` -- ALTER TABLE `due_type` MODIFY `id` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT for table `hod` -- ALTER TABLE `hod` MODIFY `hod_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `semsubjects` -- ALTER TABLE `semsubjects` MODIFY `subb_id` int(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT for table `sem_display_date` -- ALTER TABLE `sem_display_date` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; -- -- AUTO_INCREMENT for table `sem_reg` -- ALTER TABLE `sem_reg` MODIFY `sem_reg_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- AUTO_INCREMENT for table `staff` -- ALTER TABLE `staff` MODIFY `s_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20; -- -- AUTO_INCREMENT for table `stdpersonal` -- ALTER TABLE `stdpersonal` MODIFY `std2_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=79; -- -- AUTO_INCREMENT for table `stdreg` -- ALTER TABLE `stdreg` MODIFY `std_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=92; 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 */;
-- phpMyAdmin SQL Dump -- version 4.1.6 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Jan 20, 2016 at 06:01 AM -- Server version: 5.6.16 -- PHP Version: 5.5.9 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 utf8 */; -- -- Database: `fresh_code_db` -- -- -------------------------------------------------------- -- -- Table structure for table `cd_admins` -- CREATE TABLE IF NOT EXISTS `cd_admins` ( `id` int(11) NOT NULL AUTO_INCREMENT, `first_name` varchar(255) NOT NULL, `last_name` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `password` text NOT NULL, `dob` varchar(255) NOT NULL, `gender` varchar(255) NOT NULL, `type` varchar(255) NOT NULL, `created_dated` datetime NOT NULL, `modified_date` datetime NOT NULL, `login_activity` datetime NOT NULL, `status` int(11) NOT NULL, `verification_code` text NOT NULL, `access_module` text NOT NULL, `location_access` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; -- -- Dumping data for table `cd_admins` -- INSERT INTO `cd_admins` (`id`, `first_name`, `last_name`, `email`, `password`, `dob`, `gender`, `type`, `created_dated`, `modified_date`, `login_activity`, `status`, `verification_code`, `access_module`, `location_access`) VALUES (1, 'admin', 'wowrooms', '<EMAIL>', '202cb962ac59075b964b07152d234b70', '', '', 'super', '2015-06-12 13:09:43', '2015-08-15 11:34:38', '0000-00-00 00:00:00', 1, '', '', ''), (3, 'Admin1', 'Admin', '<EMAIL>', '21232f297a57a5a743894a0e4a801fc3', '', '', 'super', '0000-00-00 00:00:00', '2015-10-09 14:15:11', '0000-00-00 00:00:00', 1, '', '', ''), (5, 'gthr', 'hgj', '<EMAIL>', '827ccb0eea8a706c4c34a16891f84e7b', '', '', '', '2015-10-09 14:15:51', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', '', ''); -- -------------------------------------------------------- -- -- Table structure for table `cd_banners` -- CREATE TABLE IF NOT EXISTS `cd_banners` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `heading` varchar(255) NOT NULL, `description` text NOT NULL, `image` varchar(255) NOT NULL, `order` int(11) NOT NULL, `status` int(11) NOT NULL, `created_date` datetime NOT NULL, `modified_date` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `cd_cities` -- CREATE TABLE IF NOT EXISTS `cd_cities` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `latitude` varchar(255) NOT NULL, `longitude` varchar(255) NOT NULL, `state_code` varchar(255) NOT NULL, `city_code` varchar(255) NOT NULL, `image` varchar(255) NOT NULL, `state_id` int(11) NOT NULL, `meta_description` text NOT NULL, `meta_content` text NOT NULL, `meta_title` text NOT NULL, `meta_keyword` text NOT NULL, `show_header` int(11) NOT NULL, `show_footer` int(11) NOT NULL, `title` text NOT NULL, `slug` varchar(255) NOT NULL, `created_date` datetime NOT NULL, `modified_date` datetime NOT NULL, `status` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=160 ; -- -- Dumping data for table `cd_cities` -- INSERT INTO `cd_cities` (`id`, `name`, `latitude`, `longitude`, `state_code`, `city_code`, `image`, `state_id`, `meta_description`, `meta_content`, `meta_title`, `meta_keyword`, `show_header`, `show_footer`, `title`, `slug`, `created_date`, `modified_date`, `status`) VALUES (1, 'Delhi', '', '', '', 'DL', '', 1, '', '', '', '', 0, 0, 'Delhi', 'south-delhi', '2015-07-17 11:50:20', '2015-08-31 16:23:29', 1), (2, 'East Delhi', '', '', '', 'DL', '', 1, '', '', '', '', 0, 0, 'East Delhi', 'east-delhi', '2015-07-17 11:51:13', '2015-08-31 16:23:52', 0), (3, 'West Delhi', '', '', '', 'West Delhi', '', 1, '', '', '', '', 1, 1, 'West Delhi', 'west-delhi', '2015-07-17 11:51:42', '2015-08-31 16:23:46', 0), (4, 'Central Delhi', '', '', '', 'DL', '', 1, '', '', '', '', 1, 1, 'Central Delhi', 'central-delhi', '2015-07-17 11:52:16', '2015-08-31 16:24:04', 0), (5, 'North Delhi', '', '', '', '', '', 1, '', '', '', '', 0, 0, 'North Delhi', 'north-delhi', '2015-07-17 11:52:44', '0000-00-00 00:00:00', 0), (6, 'Gurgaon', '', '', '', 'Gurgaon', '', 9, '', '', '', '', 1, 1, 'Gurgaon', 'gurgaon', '2015-07-17 11:53:23', '2015-08-05 09:26:43', 1), (7, 'Manesar', '', '', '', '', '', 9, '', '', '', '', 0, 0, 'Manesar', 'manesar', '2015-07-17 11:54:32', '0000-00-00 00:00:00', 1), (8, 'Dharuhera', '', '', '', '', '', 9, '', '', '', '', 0, 0, 'Dharuhera', 'dharuhera', '2015-07-17 11:58:09', '0000-00-00 00:00:00', 1), (9, 'Bhiwadi', '', '', '', '', '', 23, '', '', '', '', 0, 0, 'Bhiwadi', 'bhiwadi', '2015-07-17 12:00:12', '0000-00-00 00:00:00', 1), (10, 'Faridabad', '', '', '', '', '', 9, '', '', '', '', 0, 0, 'Faridabad', 'faridabad', '2015-07-17 12:01:34', '0000-00-00 00:00:00', 1), (11, 'Palwal', '', '', '', '', '', 9, '', '', '', '', 0, 0, 'Palwal', 'palwal', '2015-07-17 12:02:25', '0000-00-00 00:00:00', 1), (12, 'Noida', '', '', '', '', '', 27, '', '', '', '', 0, 0, 'Noida', 'noida', '2015-07-17 12:03:57', '0000-00-00 00:00:00', 1), (13, 'Greater Noida', '', '', '', '', '', 27, '', '', '', '', 0, 0, 'Greater Noida', 'greater-noida', '2015-07-17 12:04:31', '0000-00-00 00:00:00', 1), (14, 'Ghaziabad', '', '', '', '', '', 27, '', '', '', '', 0, 0, 'Ghaziabad', 'ghaziabad', '2015-07-17 12:06:08', '0000-00-00 00:00:00', 1), (15, 'Neemrana', '', '', '', '', '', 23, '', '', '', '', 0, 0, 'Neemrana', 'neemrana', '2015-07-17 12:08:24', '0000-00-00 00:00:00', 1), (16, 'Panchkula', '', '', '', '', '', 9, '', '', '', '', 0, 0, 'Panchkula', 'panchkula', '2015-07-17 12:12:23', '0000-00-00 00:00:00', 1), (17, 'Mohali', '', '', '', '', '', 22, '', '', '', '', 0, 0, 'Mohali', 'mohali', '2015-07-17 12:15:17', '0000-00-00 00:00:00', 1), (18, 'Zirakpur', '', '', '', '', '', 22, '', '', '', '', 0, 0, 'Zirakpur', 'zirakpur', '2015-07-17 12:16:55', '0000-00-00 00:00:00', 1), (19, 'Patiala', '', '', '', '', '', 22, '', '', '', '', 0, 0, 'Patiala', 'patiala', '2015-07-17 12:19:36', '0000-00-00 00:00:00', 1), (20, 'Bathinda', '', '', '', '', '', 22, '', '', '', '', 0, 0, 'Bathinda', 'bathinda', '2015-07-17 12:23:16', '0000-00-00 00:00:00', 1), (21, '<NAME>', '', '', '', '', '', 22, '', '', '', '', 0, 0, '<NAME>', 'mandi-gobindgarh', '2015-07-17 12:28:44', '0000-00-00 00:00:00', 1), (22, 'Ludhiana', '', '', '', '', '', 22, '', '', '', '', 0, 0, 'Ludhiana', 'ludhiana', '2015-07-17 12:29:50', '0000-00-00 00:00:00', 1), (23, 'Jalandhar', '', '', '', '', '', 22, '', '', '', '', 0, 0, 'Jalandhar', 'jalandhar', '2015-07-17 12:31:22', '0000-00-00 00:00:00', 1), (24, 'Amritsar', '', '', '', '', '', 22, '', '', '', '', 0, 0, 'Amritsar', 'amritsar', '2015-07-17 12:32:48', '0000-00-00 00:00:00', 1), (25, 'Jammu ', '', '', '', '', '', 11, '', '', '', '', 0, 0, 'Jammu ', 'jammu-and-kashmir', '2015-07-17 12:36:06', '2015-07-17 12:36:31', 1), (26, 'Srinagar', '', '', '', '', '', 11, '', '', '', '', 0, 0, 'Srinagar', 'srinagar', '2015-07-17 12:39:02', '0000-00-00 00:00:00', 1), (27, 'Dharamshala', '', '', '', '', '', 10, '', '', '', '', 0, 0, 'Dharamshala', 'dharamshala', '2015-07-17 12:41:18', '0000-00-00 00:00:00', 1), (28, 'Una/Baddi', '', '', '', '', '', 10, '', '', '', '', 0, 0, 'Una/Baddi', 'unabaddi', '2015-07-17 12:42:18', '0000-00-00 00:00:00', 1), (29, 'Shimla', '', '', '', '', '', 10, '', '', '', '', 0, 0, 'Shimla', 'shimla', '2015-07-17 12:44:05', '0000-00-00 00:00:00', 1), (30, 'Manali', '', '', '', '', '', 10, '', '', '', '', 0, 0, 'Manali', 'manali', '2015-07-17 12:44:47', '0000-00-00 00:00:00', 1), (31, 'Jaipur', '', '', '', '', '', 23, '', '', '', '', 0, 0, 'Jaipur', 'jaipur', '2015-07-17 12:45:42', '2015-07-24 10:29:04', 1), (32, 'Jodhpur ', '', '', '', '', '', 23, '', '', '', '', 0, 0, 'Jodhpur ', 'jodhpur', '2015-07-17 12:46:54', '0000-00-00 00:00:00', 1), (33, 'Udaipur', '', '', '', '', '', 23, '', '', '', '', 0, 0, 'Udaipur', 'udaipur', '2015-07-17 12:47:46', '0000-00-00 00:00:00', 1), (34, 'Ajmer', '', '', '', '', '', 23, '', '', '', '', 0, 0, 'Ajmer', 'ajmer', '2015-07-17 12:48:38', '0000-00-00 00:00:00', 1), (35, 'Pushkar', '', '', '', '', '', 23, '', '', '', '', 0, 0, 'Pushkar', 'pushkar', '2015-07-17 12:49:33', '0000-00-00 00:00:00', 1), (36, 'Jaisalmer ', '', '', '', '', '', 23, '', '', '', '', 0, 0, 'Jaisalmer ', 'jaisalmer', '2015-07-17 12:50:53', '0000-00-00 00:00:00', 1), (37, 'Dehradun', '', '', '', '', '', 28, '', '', '', '', 0, 0, 'Dehradun', 'dehradun', '2015-07-17 12:56:37', '0000-00-00 00:00:00', 1), (38, 'Mussoorie', '', '', '', '', '', 28, '', '', '', '', 0, 0, 'Mussoorie', 'mussoorie', '2015-07-17 12:58:10', '0000-00-00 00:00:00', 1), (39, 'Nainital ', '', '', '', '', '', 28, '', '', '', '', 0, 0, 'Nainital ', 'nainital', '2015-07-17 12:59:36', '0000-00-00 00:00:00', 1), (40, 'Haridwar', '', '', '', '', '', 28, '', '', '', '', 0, 0, 'Haridwar', 'haridwar', '2015-07-17 13:00:34', '0000-00-00 00:00:00', 1), (41, 'Rudrapur', '', '', '', '', '', 28, '', '', '', '', 0, 0, 'Rudrapur', 'rudrapur', '2015-07-17 13:01:54', '2015-07-17 13:03:27', 1), (42, 'Rishikesh', '', '', '', '', '', 28, '', '', '', '', 0, 0, 'Rishikesh', 'rishikesh', '2015-07-17 13:05:19', '0000-00-00 00:00:00', 1), (43, 'Saharanpur', '', '', '', '', '', 27, '', '', '', '', 0, 0, 'Saharanpur', 'saharanpur', '2015-07-17 13:06:14', '0000-00-00 00:00:00', 1), (44, 'Roorkee', '', '', '', '', '', 28, '', '', '', '', 0, 0, 'Roorkee', 'roorkee', '2015-07-17 13:07:24', '0000-00-00 00:00:00', 1), (45, 'Lucknow', '', '', '', '', '', 27, '', '', '', '', 0, 0, 'Lucknow', 'lucknow', '2015-07-17 13:08:32', '0000-00-00 00:00:00', 1), (46, 'Varanasi', '', '', '', '', '', 27, '', '', '', '', 0, 0, 'Varanasi', 'varanasi', '2015-07-17 13:10:10', '0000-00-00 00:00:00', 1), (47, 'Allahabad', '', '', '', 'AL', '', 27, '', '', '', '', 0, 0, 'Allahabad', 'allahabad', '2015-07-17 13:10:59', '2015-08-03 11:17:39', 1), (48, 'Kanpur', '', '', '', '', '', 27, '', '', '', '', 0, 0, 'Kanpur', 'kanpur', '2015-07-17 13:11:54', '0000-00-00 00:00:00', 1), (49, 'Agra', '', '', '', '', '', 27, '', '', '', '', 0, 0, 'Agra', 'agra', '2015-07-17 13:12:34', '0000-00-00 00:00:00', 1), (50, 'Jhansi', '', '', '', '', '', 27, '', '', '', '', 0, 0, 'Jhansi', 'jhansi', '2015-07-17 13:12:59', '0000-00-00 00:00:00', 1), (51, 'Meerut', '', '', '', '', '', 27, '', '', '', '', 0, 0, 'Meerut', 'meerut', '2015-07-17 13:13:55', '0000-00-00 00:00:00', 1), (52, 'South Bangalore', '', '', '', '', '', 13, '', '', '', '', 0, 0, 'South Bangalore', 'south-bangalore', '2015-07-17 13:15:36', '0000-00-00 00:00:00', 1), (53, 'East Banglore', '', '', '', '', '', 13, '', '', '', '', 0, 0, 'East Banglore', 'east-banglore', '2015-07-17 13:16:02', '0000-00-00 00:00:00', 1), (54, 'North Banglore', '', '', '', '', '', 13, '', '', '', '', 0, 0, 'North Banglore', 'north-banglore', '2015-07-17 13:18:04', '0000-00-00 00:00:00', 1), (55, 'Central Banglore', '', '', '', '', '', 13, '', '', '', '', 0, 0, 'Central Banglore', 'central-banglore', '2015-07-17 13:20:16', '0000-00-00 00:00:00', 1), (56, 'West Banglore', '', '', '', '', '', 13, '', '', '', '', 0, 0, 'West Banglore', 'west-banglore', '2015-07-17 13:20:53', '0000-00-00 00:00:00', 1), (57, 'Blore Extention', '', '', '', '', '', 13, '', '', '', '', 0, 0, 'Blore Extention', 'blore-extention', '2015-07-17 13:22:39', '0000-00-00 00:00:00', 1), (58, 'Mysore', '', '', '', '', '', 13, '', '', '', '', 0, 0, 'Mysore', 'mysore', '2015-07-17 13:25:46', '0000-00-00 00:00:00', 1), (59, 'Hosur', '', '', '', '', '', 25, '', '', '', '', 0, 0, 'Hosur', 'hosur', '2015-07-17 13:27:01', '0000-00-00 00:00:00', 1), (60, 'Mangalore', '', '', '', '', '', 13, '', '', '', '', 0, 0, 'Mangalore', 'mangalore', '2015-07-17 13:27:49', '0000-00-00 00:00:00', 1), (61, 'Hubli', '', '', '', '', '', 13, '', '', '', '', 0, 0, 'Hubli', 'hubli', '2015-07-17 13:28:25', '0000-00-00 00:00:00', 1), (62, 'Davangere', '', '', '', '', '', 13, '', '', '', '', 0, 0, 'Davangere', 'davangere', '2015-07-17 13:30:36', '0000-00-00 00:00:00', 1), (63, 'Belgaum', '', '', '', '', '', 13, '', '', '', '', 0, 0, 'Belgaum', 'belgaum', '2015-07-17 13:32:06', '0000-00-00 00:00:00', 1), (64, 'Chennai ', '', '', '', '', '', 25, '', '', '', '', 0, 0, 'Chennai ', 'chennai', '2015-07-17 13:33:24', '0000-00-00 00:00:00', 1), (65, 'Mahabalipuram', '', '', '', '', '', 25, '', '', '', '', 0, 0, 'Mahabalipuram', 'mahabalipuram', '2015-07-17 13:34:13', '2015-07-17 13:37:40', 1), (66, 'Vellore', '', '', '', '', '', 25, '', '', '', '', 0, 0, 'Vellore', 'vellore', '2015-07-17 13:38:22', '0000-00-00 00:00:00', 1), (67, 'Tiruchirappalli', '', '', '', '', '', 25, '', '', '', '', 0, 0, 'Tiruchirappalli', 'tiruchirappalli', '2015-07-17 13:39:09', '0000-00-00 00:00:00', 1), (68, 'Madurai', '', '', '', '', '', 25, '', '', '', '', 0, 0, 'Madurai', 'madurai', '2015-07-17 13:39:57', '0000-00-00 00:00:00', 1), (69, 'Thoothukudi', '', '', '', '', '', 25, '', '', '', '', 0, 0, 'Thoothukudi', 'thoothukudi', '2015-07-17 13:42:47', '0000-00-00 00:00:00', 1), (70, 'Coimbatore', '', '', '', '', '', 25, '', '', '', '', 0, 0, 'Coimbatore', 'coimbatore', '2015-07-17 13:43:27', '0000-00-00 00:00:00', 1), (71, 'Kanchipuram', '', '', '', '', '', 25, '', '', '', '', 0, 0, 'Kanchipuram', 'kanchipuram', '2015-07-17 13:47:38', '0000-00-00 00:00:00', 1), (72, 'Salem', '', '', '', '', '', 25, '', '', '', '', 0, 0, 'Salem', 'salem', '2015-07-17 13:48:23', '0000-00-00 00:00:00', 1), (73, 'Erode', '', '', '', '', '', 25, '', '', '', '', 0, 0, 'Erode', 'erode', '2015-07-17 13:49:45', '0000-00-00 00:00:00', 1), (74, 'Namakkal', '', '', '', '', '', 25, '', '', '', '', 0, 0, 'Namakkal', 'namakkal', '2015-07-17 13:51:01', '0000-00-00 00:00:00', 1), (75, 'Kanyakumari', '', '', '', '', '', 25, '', '', '', '', 0, 0, 'Kanyakumari', 'kanyakumari', '2015-07-17 13:51:50', '0000-00-00 00:00:00', 1), (76, 'Puducherry ', '', '', '', '', '', 25, '', '', '', '', 0, 0, 'Puducherry ', 'puducherry', '2015-07-17 13:53:01', '2015-07-17 13:55:00', 1), (77, 'Hyderabad', '', '', '', '', '', 2, '', '', '', '', 0, 0, 'Hyderabad', 'hyderabad', '2015-07-17 13:57:37', '0000-00-00 00:00:00', 1), (78, 'Sikandrabad', '', '', '', '', '', 27, '', '', '', '', 0, 0, 'Sikandrabad', 'sikandrabad', '2015-07-17 13:59:16', '0000-00-00 00:00:00', 1), (79, 'Vijayawada', '', '', '', '', '', 2, '', '', '', '', 0, 0, 'Vijayawada', 'vijayawada', '2015-07-17 14:00:09', '0000-00-00 00:00:00', 1), (80, 'Vishakhapattnam', '', '', '', '', '', 2, '', '', '', '', 0, 0, 'Vishakhapattnam', 'vishakhapattnam', '2015-07-17 14:01:21', '0000-00-00 00:00:00', 1), (81, 'Vijaynagar', '', '', '', '', '', 13, '', '', '', '', 0, 0, 'Vijaynagar', 'vijaynagar', '2015-07-17 14:02:25', '0000-00-00 00:00:00', 1), (82, 'Kurnool', '', '', '', '', '', 2, '', '', '', '', 0, 0, 'Kurnool', 'kurnool', '2015-07-17 14:03:02', '0000-00-00 00:00:00', 1), (83, 'Warangal ', '', '', '', '', '', 2, '', '', '', '', 0, 0, 'Warangal ', 'warangal', '2015-07-17 14:06:34', '0000-00-00 00:00:00', 1), (84, 'Guntur', '', '', '', '', '', 2, '', '', '', '', 0, 0, 'Guntur', 'guntur', '2015-07-17 14:07:56', '2015-07-17 14:09:32', 1), (85, 'Nellore', '', '', '', '', '', 2, '', '', '', '', 0, 0, 'Nellore', 'nellore', '2015-07-17 14:09:46', '0000-00-00 00:00:00', 1), (86, 'Chittur', '', '', '', '', '', 2, '', '', '', '', 0, 0, 'Chittur', 'chittur', '2015-07-17 14:10:45', '0000-00-00 00:00:00', 1), (87, 'Rajahmundry', '', '', '', '', '', 2, '', '', '', '', 0, 0, 'Rajahmundry', 'rajahmundry', '2015-07-17 14:11:35', '2015-07-17 14:12:29', 1), (88, 'Tirupati', '', '', '', '', '', 2, '', '', '', '', 0, 0, 'Tirupati', 'tirupati', '2015-07-17 14:12:48', '0000-00-00 00:00:00', 1), (89, 'Kakinada', '', '', '', '', '', 2, '', '', '', '', 0, 0, 'Kakinada', 'kakinada', '2015-07-17 14:13:21', '2015-07-17 14:13:56', 1), (90, 'Thiruvananthapuram', '', '', '', '', '', 14, '', '', '', '', 0, 0, 'Thiruvananthapuram', 'thiruvananthapuram', '2015-07-17 14:14:58', '2015-07-17 14:15:50', 1), (91, 'Kochi', '', '', '', '', '', 14, '', '', '', '', 0, 0, 'Kochi', 'kochi', '2015-07-17 14:16:34', '0000-00-00 00:00:00', 1), (92, 'Ernakulam', '', '', '', '', '', 14, '', '', '', '', 0, 0, 'Ernakulam', 'ernakulam', '2015-07-17 14:18:23', '0000-00-00 00:00:00', 1), (93, 'Kozhikode', '', '', '', '', '', 14, '', '', '', '', 0, 0, 'Kozhikode', 'kozhikode', '2015-07-17 14:19:03', '0000-00-00 00:00:00', 1), (94, 'Malappuram', '', '', '', '', '', 14, '', '', '', '', 0, 0, 'Malappuram', 'malappuram', '2015-07-17 14:19:53', '0000-00-00 00:00:00', 1), (95, 'Thrissur', '', '', '', '', '', 14, '', '', '', '', 0, 0, 'Thrissur', 'thrissur', '2015-07-17 14:20:54', '0000-00-00 00:00:00', 1), (96, 'Kollam', '', '', '', '', '', 14, '', '', '', '', 0, 0, 'Kollam', 'kollam', '2015-07-17 14:21:27', '0000-00-00 00:00:00', 1), (97, 'Karunagappalli ', '', '', '', '', '', 14, '', '', '', '', 0, 0, 'Karunagappalli ', 'karunagappalli', '2015-07-17 14:23:03', '2015-07-17 14:24:06', 1), (98, 'South Mumbai', '', '', '', '', '', 16, '', '', '', '', 0, 0, 'South Mumbai', 'south-mumbai', '2015-07-17 14:25:18', '0000-00-00 00:00:00', 1), (99, 'Central Mumbai', '', '', '', '', '', 16, '', '', '', '', 0, 0, 'Central Mumbai', 'central-mumbai', '2015-07-17 14:25:41', '0000-00-00 00:00:00', 1), (100, 'North Mumbai ', '', '', '', '', '', 16, '', '', '', '', 0, 0, 'North Mumbai ', 'north-mumbai-navi-mumbai', '2015-07-17 14:26:08', '2015-07-17 14:26:24', 1), (101, '<NAME>', '', '', '', '', '', 16, '', '', '', '', 0, 0, '<NAME>', 'navi-mumbai', '2015-07-17 14:26:44', '0000-00-00 00:00:00', 1), (102, 'Thane', '', '', '', '', '', 16, '', '', '', '', 0, 0, 'Thane', 'thane', '2015-07-17 14:27:13', '0000-00-00 00:00:00', 1), (103, 'Raigarh', '', '', '', '', '', 6, '', '', '', '', 0, 0, 'Raigarh', 'raigarh', '2015-07-17 14:28:17', '2015-07-17 14:29:07', 1), (104, 'Pune', '', '', '', '', '', 16, '', '', '', '', 0, 0, 'Pune', 'pune', '2015-07-17 14:30:10', '0000-00-00 00:00:00', 1), (105, 'Nashik ', '', '', '', '', '', 16, '', '', '', '', 0, 0, 'Nashik ', 'nashik', '2015-07-17 14:30:47', '0000-00-00 00:00:00', 1), (106, 'Aurangabad', '', '', '', '', '', 16, '', '', '', '', 0, 0, 'Aurangabad', 'aurangabad', '2015-07-17 14:31:27', '0000-00-00 00:00:00', 1), (107, 'Nagpur', '', '', '', '', '', 16, '', '', '', '', 0, 0, 'Nagpur', 'nagpur', '2015-07-17 14:32:00', '0000-00-00 00:00:00', 1), (108, 'Shirdi', '', '', '', '', '', 16, '', '', '', '', 0, 0, 'Shirdi', 'shirdi', '2015-07-17 14:33:28', '0000-00-00 00:00:00', 1), (109, 'Solapur', '', '', '', '', '', 16, '', '', '', '', 0, 0, 'Solapur', 'solapur', '2015-07-17 14:34:27', '2015-07-17 14:34:59', 1), (110, 'Nanded', '', '', '', '', '', 16, '', '', '', '', 0, 0, 'Nanded', 'nanded', '2015-07-17 14:35:44', '0000-00-00 00:00:00', 1), (111, 'Sangli', '', '', '', '', '', 16, '', '', '', '', 0, 0, 'Sangli', 'sangli', '2015-07-17 14:36:41', '0000-00-00 00:00:00', 1), (112, 'Amravati', '', '', '', '', '', 16, '', '', '', '', 0, 0, 'Amravati', 'amravati', '2015-07-17 14:37:27', '0000-00-00 00:00:00', 1), (113, 'Jalgaon', '', '', '', '', '', 16, '', '', '', '', 0, 0, 'Jalgaon', 'jalgaon', '2015-07-17 14:38:17', '0000-00-00 00:00:00', 1), (114, 'Kolhapur', '', '', '', '', '', 16, '', '', '', '', 0, 0, 'Kolhapur', 'kolhapur', '2015-07-17 14:39:03', '0000-00-00 00:00:00', 1), (115, 'Panaji', '', '', '', '', '', 7, '', '', '', '', 0, 0, 'Panaji', 'panaji', '2015-07-17 14:40:40', '0000-00-00 00:00:00', 1), (116, 'Margao', '', '', '', '', '', 7, '', '', '', '', 0, 0, 'Margao', 'margao', '2015-07-17 14:41:25', '0000-00-00 00:00:00', 1), (117, '<NAME>', '', '', '', '', '', 7, '', '', '', '', 0, 0, '<NAME>', 'vasco-da-gama', '2015-07-17 14:42:16', '2015-07-17 14:42:27', 1), (118, 'North Goa', '', '', '', '', '', 7, '', '', '', '', 0, 0, 'North Goa', 'north-goa', '2015-07-17 14:42:48', '0000-00-00 00:00:00', 1), (119, 'South Goa', '', '', '', '', '', 7, '', '', '', '', 0, 0, 'South Goa', 'south-goa', '2015-07-17 14:43:02', '0000-00-00 00:00:00', 1), (120, 'Ahmedabad', '', '', '', '', '', 8, '', '', '', '', 0, 0, 'Ahmedabad', 'ahmedabad', '2015-07-17 14:43:25', '0000-00-00 00:00:00', 1), (121, 'Surat', '', '', '', '', '', 8, '', '', '', '', 0, 0, 'Surat', 'surat', '2015-07-17 14:44:34', '2015-07-17 14:44:48', 1), (122, 'Baroda', '', '', '', '', '', 8, '', '', '', '', 0, 0, 'Baroda', 'baroda', '2015-07-17 14:45:17', '0000-00-00 00:00:00', 1), (123, 'Kutch', '', '', '', '', '', 8, '', '', '', '', 0, 0, 'Kutch', 'kutch', '2015-07-17 14:45:45', '0000-00-00 00:00:00', 1), (124, 'Morbi', '', '', '', '', '', 8, '', '', '', '', 0, 0, 'Morbi', 'morbi', '2015-07-17 14:46:13', '0000-00-00 00:00:00', 1), (125, 'Rajkot', '', '', '', '', '', 8, '', '', '', '', 0, 0, 'Rajkot', 'rajkot', '2015-07-17 14:46:32', '0000-00-00 00:00:00', 1), (126, 'Indore', '', '', '', '', '', 15, '', '', '', '', 0, 0, 'Indore', 'indore', '2015-07-17 14:47:06', '0000-00-00 00:00:00', 1), (127, 'Bhopal', '', '', '', '', '', 15, '', '', '', '', 0, 0, 'Bhopal', 'bhopal', '2015-07-17 14:47:26', '0000-00-00 00:00:00', 1), (128, 'Gwalior', '', '', '', '', '', 15, '', '', '', '', 0, 0, 'Gwalior', 'gwalior', '2015-07-17 14:47:50', '0000-00-00 00:00:00', 1), (129, 'Panchmadi', '', '', '', '', '', 15, '', '', '', '', 0, 0, 'Panchmadi', 'panchmadi', '2015-07-17 14:48:05', '0000-00-00 00:00:00', 1), (130, 'Ujjain', '', '', '', '', '', 15, '', '', '', '', 0, 0, 'Ujjain', 'ujjain', '2015-07-17 14:48:22', '0000-00-00 00:00:00', 1), (131, 'Jabalpur', '', '', '', '', '', 15, '', '', '', '', 0, 0, 'Jabalpur', 'jabalpur', '2015-07-17 14:48:41', '0000-00-00 00:00:00', 1), (132, 'Raipur', '', '', '', '', '', 6, '', '', '', '', 0, 0, 'Raipur', 'raipur', '2015-07-17 14:49:16', '0000-00-00 00:00:00', 1), (133, 'Bhilai', '', '', '', '', '', 6, '', '', '', '', 0, 0, 'Bhilai', 'bhilai', '2015-07-17 14:49:50', '0000-00-00 00:00:00', 1), (134, 'North Kolkota', '', '', '', '', '', 29, '', '', '', '', 0, 0, 'North Kolkota', 'north-kolkota', '2015-07-17 14:51:21', '0000-00-00 00:00:00', 1), (135, 'South Kolkata', '', '', '', '', '', 29, '', '', '', '', 0, 0, 'South Kolkata', 'south-kolkata', '2015-07-17 14:51:51', '0000-00-00 00:00:00', 1), (136, 'Asansol', '', '', '', '', '', 29, '', '', '', '', 0, 0, 'Asansol', 'asansol', '2015-07-17 14:54:16', '0000-00-00 00:00:00', 1), (137, 'Brahmapur', '', '', '', '', '', 21, '', '', '', '', 0, 0, 'Brahmapur', 'brahmapur', '2015-07-17 14:55:15', '0000-00-00 00:00:00', 1), (138, 'Durgapur', '', '', '', '', '', 29, '', '', '', '', 0, 0, 'Durgapur', 'durgapur', '2015-07-17 14:56:55', '0000-00-00 00:00:00', 1), (139, 'Silliguri', '', '', '', '', '', 29, '', '', '', '', 0, 0, 'Silliguri', 'silliguri', '2015-07-17 14:57:13', '0000-00-00 00:00:00', 1), (140, 'Darjeeling', '', '', '', '', '', 29, '', '', '', '', 0, 0, 'Darjeeling', 'darjeeling', '2015-07-17 14:57:54', '0000-00-00 00:00:00', 1), (141, 'Kharagpur', '', '', '', '', '', 29, '', '', '', '', 0, 0, 'Kharagpur', 'kharagpur', '2015-07-17 14:58:32', '0000-00-00 00:00:00', 1), (142, 'Farakka', '', '', '', '', '', 29, '', '', '', '', 0, 0, 'Farakka', 'farakka', '2015-07-17 14:59:17', '0000-00-00 00:00:00', 1), (143, 'Jalpaiguri', '', '', '', '', '', 29, '', '', '', '', 0, 0, 'Jalpaiguri', 'jalpaiguri', '2015-07-17 14:59:51', '0000-00-00 00:00:00', 1), (144, 'Haldia', '', '', '', '', '', 29, '', '', '', '', 0, 0, 'Haldia', 'haldia', '2015-07-17 15:00:31', '0000-00-00 00:00:00', 1), (145, 'Ranchi', '', '', '', '', '', 12, '', '', '', '', 0, 0, 'Ranchi', 'ranchi', '2015-07-17 15:03:53', '0000-00-00 00:00:00', 1), (146, 'Jamshedpur', '', '', '', '', '', 12, '', '', '', '', 0, 0, 'Jamshedpur', 'jamshedpur', '2015-07-17 15:04:44', '0000-00-00 00:00:00', 1), (147, 'Dhanbad', '', '', '', '', '', 12, '', '', '', '', 0, 0, 'Dhanbad', 'dhanbad', '2015-07-17 15:08:53', '0000-00-00 00:00:00', 1), (148, 'Bhubneshwar', '', '', '', '', '', 21, '', '', '', '', 0, 0, 'Bhubneshwar', 'bhubneshwar', '2015-07-17 15:11:09', '0000-00-00 00:00:00', 1), (149, 'Cuttack', '', '', '', '', '', 21, '', '', '', '', 0, 0, 'Cuttack', 'cuttack', '2015-07-17 15:11:44', '0000-00-00 00:00:00', 1), (150, 'Rourkela', '', '', '', '', '', 21, '', '', '', '', 0, 0, 'Rourkela', 'rourkela', '2015-07-17 15:12:35', '0000-00-00 00:00:00', 1), (151, 'Puri', '', '', '', '', '', 21, '', '', '', '', 0, 0, 'Puri', 'puri', '2015-07-17 15:13:12', '0000-00-00 00:00:00', 1), (152, 'Chandipur', '', '', '', '', '', 21, '', '', '', '', 0, 0, 'Chandipur', 'chandipur', '2015-07-17 15:13:48', '0000-00-00 00:00:00', 1), (153, 'Sambalpur', '', '', '', '', 'Lighthouse3.jpg', 21, '', '', '', '', 0, 0, 'Sambalpur', 'sambalpur', '2015-07-17 15:17:18', '0000-00-00 00:00:00', 1), (154, 'Barhmapur', '', '', '', '', '', 21, '', '', '', '', 0, 0, 'Barhmapur', 'barhmapur', '2015-07-17 15:18:06', '0000-00-00 00:00:00', 1), (155, 'Patna', '', '', '', '', '', 5, '', '', '', '', 0, 0, 'Patna', 'patna', '2015-07-17 15:18:33', '0000-00-00 00:00:00', 1), (156, 'Begusarai', '', '', '', '', '', 5, '', '', '', '', 0, 0, 'Begusarai', 'begusarai', '2015-07-17 15:19:07', '0000-00-00 00:00:00', 1), (157, 'Gaya', '', '', '', '', '', 5, '', '', '', '', 0, 0, 'Gaya', 'gaya', '2015-07-17 15:19:37', '0000-00-00 00:00:00', 1), (158, 'Purnea', '', '', '', '', '', 5, '', '', '', '', 0, 0, 'Purnea', 'purnea', '2015-07-17 15:20:07', '0000-00-00 00:00:00', 1), (159, 'Muzffarpur', '', '', '', '', '', 5, '', '', '', '', 0, 0, 'Muzffarpur', 'muzffarpur', '2015-07-17 15:20:36', '0000-00-00 00:00:00', 1); -- -------------------------------------------------------- -- -- Table structure for table `cd_countries` -- CREATE TABLE IF NOT EXISTS `cd_countries` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) DEFAULT NULL, `order` int(11) DEFAULT NULL, `status` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=268 ; -- -- Dumping data for table `cd_countries` -- INSERT INTO `cd_countries` (`id`, `name`, `order`, `status`) VALUES (1, 'Afghanistan', 1000, 1), (2, 'Albania', 1000, 1), (3, 'Algeria', 1000, 1), (4, 'American Samoa', 1000, 1), (5, 'Andorra', 1000, 1), (6, 'Angola', 1000, 1), (7, 'Anguilla', 1000, 1), (8, 'Antarctica', 1000, 1), (9, 'Antigua and Barbuda', 1000, 1), (10, 'Arctic Ocean', 1000, 1), (11, 'Argentina', 1000, 1), (12, 'Armenia', 1000, 1), (13, 'Aruba', 1000, 1), (14, 'Ashmore & Cartier Islands', 1000, 1), (15, 'Atlantic Ocean', 1000, 1), (16, 'Australia', 1000, 1), (17, 'Austria', 1000, 1), (18, 'Azerbaijan', 1000, 1), (19, 'Bahamas', 1000, 1), (20, 'Bahrain', 1000, 1), (21, 'Baker Island', 1000, 1), (22, 'Bangladesh', 1000, 1), (23, 'Barbados', 1000, 1), (24, 'Bassas da India', 1000, 1), (25, 'Belarus', 1000, 1), (26, 'Belgium', 1000, 1), (27, 'Belize', 1000, 1), (28, 'Benin', 1000, 1), (29, 'Bermuda', 1000, 1), (30, 'Bhutan', 1000, 1), (31, 'Bolivia', 1000, 1), (32, 'Bosnia and Herzegovina', 1000, 1), (33, 'Botswana', 1000, 1), (34, 'Bouvet Island', 1000, 1), (35, 'Brazil', 1000, 1), (36, 'BritishIndianOcean', 1000, 1), (37, 'British Virgin Islands', 1000, 1), (38, 'Brunei', 1000, 1), (39, 'Bulgaria', 1000, 1), (40, 'Burkina Faso', 1000, 1), (41, 'Burma', 1000, 1), (42, 'Burundi', 1000, 1), (43, 'Cambodia', 1000, 1), (44, 'Cameroon', 1000, 1), (45, 'Canada', 1000, 1), (46, 'Cape Verde', 1000, 1), (47, 'Cayman Islands', 1000, 1), (48, 'Central African Republic', 1000, 1), (49, 'Chad', 1000, 1), (50, 'Chile', 1000, 1), (51, 'China', 1000, 1), (52, 'Christmas Island', 1000, 1), (53, 'Clipperton Island', 1000, 1), (54, 'Cocos (Keeling) Islands', 1000, 1), (55, 'Colombia', 1000, 1), (56, 'Comoros', 1000, 1), (57, 'Congo, Democratic Republic', 1000, 1), (58, 'Congo, Republic', 1000, 1), (59, 'Cook Islands', 1000, 1), (60, 'Coral Sea Islands', 1000, 1), (61, 'Costa Rica', 1000, 1), (62, 'Cote d''Ivoire', 1000, 1), (63, 'Croatia', 1000, 1), (64, 'Cuba', 1000, 1), (65, 'Cyprus', 1000, 1), (66, 'Czech Republic', 1000, 1), (67, 'Denmark', 1000, 1), (68, 'Djibouti', 1000, 1), (69, 'Dominica', 1000, 1), (70, 'Dominican Republic', 1000, 1), (71, 'Ecuador', 1000, 1), (72, 'Egypt', 1000, 1), (73, 'El Salvador', 1000, 1), (74, 'Equatorial Guinea', 1000, 1), (75, 'Eritrea', 1000, 1), (76, 'Estonia', 1000, 1), (77, 'Ethiopia', 1000, 1), (78, 'Europa Island', 1000, 1), (79, 'Falkland Islands', 1000, 1), (80, 'Faroe Islands', 1000, 1), (81, 'Fiji', 1000, 1), (82, 'Finland', 1000, 1), (83, 'France', 1000, 1), (84, 'French Guiana', 1000, 1), (85, 'French Polynesia', 1000, 1), (86, 'French Southern', 1000, 1), (87, 'Gabon', 1000, 1), (88, 'Gambia', 1000, 1), (89, 'Gaza Strip', 1000, 1), (90, 'Georgia', 1000, 1), (91, 'Germany', 1000, 1), (92, 'Ghana', 1000, 1), (93, 'Gibraltar', 1000, 1), (94, 'Glorioso Islands', 1000, 1), (95, 'Greece', 1000, 1), (96, 'Greenland', 1000, 1), (97, 'Grenada', 1000, 1), (98, 'Guadeloupe', 1000, 1), (99, 'Guam', 1000, 1), (100, 'Guatemala', 1000, 1), (101, 'Guernsey', 1000, 1), (102, 'Guinea', 1000, 1), (103, 'Guinea-Bissau', 1000, 1), (104, 'Guyana', 1000, 1), (105, 'Haiti', 1000, 1), (106, 'Heard Island', 1000, 1), (107, 'Holy See (Vatican City)', 1000, 1), (108, 'Honduras', 1000, 1), (109, 'Hong Kong', 1000, 1), (110, 'Howland Island', 1000, 1), (111, 'Hungary', 1000, 1), (112, 'Iceland', 1000, 1), (113, 'India', 1000, 1), (114, 'Indian Ocean', 1000, 1), (115, 'Indonesia', 1000, 1), (116, 'Iran', 1000, 1), (117, 'Iraq', 1000, 1), (118, 'Ireland', 1000, 1), (119, 'Israel', 1000, 1), (120, 'Italy', 1000, 1), (121, 'Jamaica', 1000, 1), (122, '<NAME>', 1000, 1), (123, 'Japan', 1000, 1), (124, 'Jarvis Island', 1000, 1), (125, 'Jersey', 1000, 1), (126, '<NAME>', 1000, 1), (127, 'Jordan', 1000, 1), (128, 'Juan de Nova Island', 1000, 1), (129, 'Kazakhstan', 1000, 1), (130, 'Kenya', 1000, 1), (131, '<NAME>', 1000, 1), (132, 'Kiribati', 1000, 1), (133, 'North Korea', 1000, 1), (134, 'South Korea', 1000, 1), (135, 'Kuwait', 1000, 1), (136, 'Kyrgyzstan', 1000, 1), (137, 'Laos', 1000, 1), (138, 'Latvia', 1000, 1), (139, 'Lebanon', 1000, 1), (140, 'Lesotho', 1000, 1), (141, 'Liberia', 1000, 1), (142, 'Libya', 1000, 1), (143, 'Liechtenstein', 1000, 1), (144, 'Lithuania', 1000, 1), (145, 'Luxembourg', 1000, 1), (146, 'Macau', 1000, 1), (147, 'Macedonia', 1000, 1), (148, 'Madagascar', 1000, 1), (149, 'Malawi', 1000, 1), (150, 'Malaysia', 1000, 1), (151, 'Maldives', 1000, 1), (152, 'Mali', 1000, 1), (153, 'Malta', 1000, 1), (154, '<NAME>', 1000, 1), (155, '<NAME>', 1000, 1), (156, 'Martinique', 1000, 1), (157, 'Mauritania', 1000, 1), (158, 'Mauritius', 1000, 1), (159, 'Mayotte', 1000, 1), (160, 'Mexico', 1000, 1), (161, 'Micronesia', 1000, 1), (162, 'Midway Islands', 1000, 1), (163, 'Moldova', 1000, 1), (164, 'Monaco', 1000, 1), (165, 'Mongolia', 1000, 1), (166, 'Montserrat', 1000, 1), (167, 'Morocco', 1000, 1), (168, 'Mozambique', 1000, 1), (169, 'Namibia', 1000, 1), (170, 'Nauru', 1000, 1), (171, 'Navassa Island', 1000, 1), (172, 'Nepal', 1000, 1), (173, 'Netherlands', 1000, 1), (174, 'Netherlands Antilles', 1000, 1), (175, 'New Caledonia', 1000, 1), (176, 'New Zealand', 1000, 1), (177, 'Nicaragua', 1000, 1), (178, 'Niger', 1000, 1), (179, 'Nigeria', 1000, 1), (180, 'Niue', 1000, 1), (181, 'Norfolk Island', 1000, 1), (182, 'Northern Mariana Islands', 1000, 1), (183, 'Norway', 1000, 1), (184, 'Oman', 1000, 1), (185, 'Pacific Ocean', 1000, 1), (186, 'Pakistan', 1000, 1), (187, 'Palau', 1000, 1), (188, 'Palmyra Atoll', 1000, 1), (189, 'Panama', 1000, 1), (190, 'Papua New Guinea', 1000, 1), (191, 'Paracel Islands', 1000, 1), (192, 'Paraguay', 1000, 1), (193, 'Peru', 1000, 1), (194, 'Philippines', 1000, 1), (195, 'Pitcairn Islands', 1000, 1), (196, 'Poland', 1000, 1), (197, 'Portugal', 1000, 1), (198, 'Puerto Rico', 1000, 1), (199, 'Qatar', 1000, 1), (200, 'Reunion', 1000, 1), (201, 'Romania', 1000, 1), (202, 'Russia', 1000, 1), (203, 'Rwanda', 1000, 1), (204, '<NAME>', 1000, 1), (205, '<NAME>', 1000, 1), (206, '<NAME>', 1000, 1), (207, '<NAME> Miquelon', 1000, 1), (208, '<NAME>', 1000, 1), (209, 'Samoa', 1000, 1), (210, '<NAME>', 1000, 1), (211, '<NAME> Principe', 1000, 1), (212, '<NAME>', 1000, 1), (213, 'Senegal', 1000, 1), (214, 'Seychelles', 1000, 1), (215, '<NAME>', 1000, 1), (216, 'Singapore', 1000, 1), (217, 'Slovakia', 1000, 1), (218, 'Slovenia', 1000, 1), (219, 'Solomon Islands', 1000, 1), (220, 'Somalia', 1000, 1), (221, 'South Africa', 1000, 1), (222, 'South Georgia', 1000, 1), (223, 'Southern Ocean', 1000, 1), (224, 'Spain', 1000, 1), (225, 'Spratly Islands', 1000, 1), (226, 'Sri Lanka', 1000, 1), (227, 'Sudan', 1000, 1), (228, 'Suriname', 1000, 1), (229, 'Svalbard', 1000, 1), (230, 'Swaziland', 1000, 1), (231, 'Sweden', 1000, 1), (232, 'Switzerland', 1000, 1), (233, 'Syria', 1000, 1), (234, 'Taiwan', 1000, 1), (235, 'Tajikistan', 1000, 1), (236, 'Tanzania', 1000, 1), (237, 'Thailand', 1000, 1), (238, 'Togo', 1000, 1), (239, 'Tokelau', 1000, 1), (240, 'Tonga', 1000, 1), (241, 'Trinidad and Tobago', 1000, 1), (242, 'Tromelin Island', 1000, 1), (243, 'Tunisia', 1000, 1), (244, 'Turkey', 1000, 1), (245, 'Turkmenistan', 1000, 1), (246, 'Turks and Caicos Islands', 1000, 1), (247, 'Tuvalu', 1000, 1), (248, 'Uganda', 1000, 1), (249, 'Ukraine', 1000, 1), (250, 'United Arab Emirates', 1000, 1), (251, 'United Kingdom', 1000, 1), (252, 'United States', 1000, 1), (253, 'Uruguay', 1000, 1), (254, 'Uzbekistan', 1000, 1), (255, 'Vanuatu', 1000, 1), (256, 'Venezuela', 1000, 1), (257, 'Vietnam', 1000, 1), (258, 'Virgin Islands', 1000, 1), (259, 'Wake Island', 1000, 1), (260, 'Wallis and Futuna', 1000, 1), (261, 'West Bank', 1000, 1), (262, 'Western Sahara', 1000, 1), (263, 'World', 1000, 1), (264, 'Yemen', 1000, 1), (265, 'Yugoslavia', 1000, 1), (266, 'Zambia', 1000, 1), (267, 'Zimbabwe', 1000, 1); -- -------------------------------------------------------- -- -- Table structure for table `cd_faqs` -- CREATE TABLE IF NOT EXISTS `cd_faqs` ( `id` int(11) NOT NULL AUTO_INCREMENT, `question` text NOT NULL, `ans` text NOT NULL, `step_types` varchar(255) NOT NULL, `created_date` datetime NOT NULL, `modified_date` datetime NOT NULL, `status` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ; -- -- Dumping data for table `cd_faqs` -- INSERT INTO `cd_faqs` (`id`, `question`, `ans`, `step_types`, `created_date`, `modified_date`, `status`) VALUES (1, 'I don’t have some of the mandatory documents right now, what should I do?', 'You can skip this step for now and come back later to complete it. However, you can continue with other steps now.', '5', '2015-07-04 00:00:00', '2015-07-08 07:45:57', 1), (2, 'Do I need to take the Evaluation quiz?', 'Yes, it is a mandatory step.', '2', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1), (3, 'I don''t have access to my phone right now, what should I do?', 'You can skip this step for now and come back later to complete it. However, you can continue with other steps now.', '2', '2015-07-04 00:00:00', '2015-07-08 07:46:17', 1), (4, 'I did not receive the PIN code, what should I do?', 'Please enter only a valid 10 digit mobile number starting with 9, 8 or 7. SMS with PIN code might take few minutes.', '2', '0000-00-00 00:00:00', '2015-07-08 07:46:28', 1), (5, 'I don’t have some of the mandatory documents right now, what should I do?', 'You can skip this step for now and come back later to complete it. However, you can continue with other steps now.', '2', '2015-07-04 00:00:00', '2015-07-08 07:47:11', 1), (6, 'I don’t have current account, what should I do?', 'Enter and save rest of the information. Open current account against your company name and update later.', '3', '2015-07-06 00:00:00', '0000-00-00 00:00:00', 1); -- -------------------------------------------------------- -- -- Table structure for table `cd_pages` -- CREATE TABLE IF NOT EXISTS `cd_pages` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `html_title` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `heading` varchar(255) NOT NULL, `meta_title` varchar(255) NOT NULL, `meta_keyword` varchar(255) NOT NULL, `meta_description` varchar(255) NOT NULL, `images` varchar(255) NOT NULL, `content` text NOT NULL, `createtime` varchar(255) NOT NULL, `modifytime` varchar(255) NOT NULL, `position` int(11) NOT NULL, `status` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ; -- -- Dumping data for table `cd_pages` -- INSERT INTO `cd_pages` (`id`, `title`, `html_title`, `slug`, `heading`, `meta_title`, `meta_keyword`, `meta_description`, `images`, `content`, `createtime`, `modifytime`, `position`, `status`) VALUES (1, 'Policy page', 'Privacy Policy', 'privacy-policy', 'Privacy Policy', 'Privacy Policy', 'Privacy Policy', 'Privacy Policy', '', '<h4>\r\n Notification of Copyright Infringement:</h4>\r\n<p>\r\n &nbsp;</p>\r\n<p>\r\n WOW Rooms respects the intellectual property rights of others and expects its users to do the same.</p>\r\n<p>\r\n &nbsp;</p>\r\n<p>\r\n It is WOW Rooms policy, in appropriate circumstances and at its discretion, to disable and/or terminate the account or access of users who repeatedly infringe or are repeatedly charged with infringing the copyrights or other intellectual property rights of others.</p>\r\n<p>\r\n WOW Rooms will respond expeditiously to claims of copyright infringement committed using the WOW Rooms website and mobile application (the &quot;Site and Application&quot;) that are reported to WOW Rooms&rsquo; Designated Copyright Agent, identified in the sample notice below.</p>\r\n<p>\r\n If you are a copyright owner, or are authorized to act on behalf of one, or authorized to act under any exclusive right under copyright, please report alleged copyright infringements taking place on or through the Site and Application to <EMAIL></p>\r\n<p>\r\n Deliver this Notice, with all items completed, to WOW Rooms Designated Copyright Team.</p>\r\n<p>\r\n WOW Copyrights Team<br />\r\n Our Delhi Office Address:<br />\r\n CUG- 1F, 1st Floor Jumbo House l<br />\r\n 15 Dr <NAME>, <NAME> , Okhla<br />\r\n New Delhi 110020</p>\r\n<p>\r\n For queries you can reach out to us at <EMAIL></p>\r\n', '1433478812', '1437132802', 5, 1), (2, 'About us', 'About us', 'about-us', 'About us', 'About us', 'About us', 'About us', '', '<p>\r\n About us</p>\r\n', '1437130964', '1437132716', 2, 1); INSERT INTO `cd_pages` (`id`, `title`, `html_title`, `slug`, `heading`, `meta_title`, `meta_keyword`, `meta_description`, `images`, `content`, `createtime`, `modifytime`, `position`, `status`) VALUES (3, 'Terms & conditions', 'Terms & conditions', 'terms-conditions', 'Terms & conditions', 'Terms & conditions', 'Terms & conditions', 'Terms & conditions', '', '<p>\r\n WOW Rooms private limited provides accommodations to rent with guests seeking to rent such accommodations (collectively, the &quot;Services&quot;), which Services are accessible at www.WOWrooms.com and any other websites through which WOW makes the Services available (collectively, the &quot;Site&quot;) and as an application for mobile devices (the &quot;Application&quot;). By using the Site and Application, you agree to comply with and be legally bound by the terms and conditions of these Terms of Service (&quot;Terms&quot;), whether or not you become a registered user of the Services. These Terms govern your access to and use of the Site, Application and Services and all Collective Content (defined below), and your participation in the Referral Program (defined below), and constitute a binding legal agreement between you and WOW. Please read carefully these Terms and our Privacy Policy, which may be found at http://www.WOWrooms.com/terms, and which is incorporated by reference into these Terms. If you do not agree to these Terms, you have no right to obtain information from or otherwise continue using the Site or Application. Failure to use the Site and Application in accordance with these Terms may subject you to civil and criminal penalties.</p>\r\n<p>\r\n THE SITE, APPLICATION AND SERVICES COMPRISE AN ONLINE PLATFORM THROUGH WHICH HOSTS (DEFINED BELOW) MAY CREATE LISTINGS (DEFINED BELOW) FOR ACCOMMODATIONS (DEFINED BELOW) AND GUESTS (DEFINED BELOW) MAY LEARN ABOUT AND BOOK ACCOMMODATIONS. YOU UNDERSTAND AND AGREE THAT WOW IS NOT A PARTY TO ANY AGREEMENTS ENTERED INTO BETWEEN HOSTS AND GUESTS, NOR IS WOW A REAL ESTATE BROKER, AGENT OR INSURER. WOW HAS NO CONTROL OVER THE CONDUCT OF HOSTS, GUESTS AND OTHER USERS OF THE SITE, APPLICATION AND SERVICES OR ANY ACCOMMODATIONS, AND DISCLAIMS ALL LIABILITY IN THIS REGARD.</p>\r\n<h4 class="red_heading">\r\n Key Terms</h4>\r\n<p>\r\n WOW Content means all Content that WOW makes available through the Site, Application, or Services, including any Content licensed from a third party, but excluding Member Content.</p>\r\n<p>\r\n Collective Content means Member Content and WOW Content.</p>\r\n<p>\r\n Content means text, graphics, images, music, software (excluding the Application), audio, video, information or other materials.</p>\r\n<p>\r\n Guest means a Member who requests a booking of an Accommodation via the Site, Application or Services, or a Member who stays at an Accommodation and is not the Host for such Accommodation.</p>\r\n<p>\r\n Host means a Member who creates a Listing via the Site, Application and Services.</p>\r\n<p>\r\n Listing means an Accommodation that is listed by a Host as available for rental via the Site, Application, and Services.</p>\r\n<p>\r\n Member means a person who completes WOW&rsquo;s account registration process, including, but not limited to Hosts and Guests, as described under &quot;Account Registration&quot; below.</p>\r\n<p>\r\n Member Content means all Content that a Member posts, uploads, publishes, submits or transmits to be made available through the Site, Application or Services.</p>\r\n<p>\r\n Tax or &quot;Taxes&quot; mean any sales taxes, value added taxes (VAT), goods and services taxes (GST) and other similar municipal, state and national indirect or other withholding and personal or corporate income taxes.</p>\r\n<p>\r\n Certain areas of the Site and Application (and your access to or use of certain aspects of the Services or Collective Content) may have different terms and conditions posted or may require you to agree with and accept additional terms and conditions. If there is a conflict between these Terms and terms and conditions posted for a specific area of the Site, Application, Services, or Collective Content, the latter terms and conditions will take precedence with respect to your use of or access to that area of the Site, Application, Services, or Collective Content.</p>\r\n<p>\r\n YOU ACKNOWLEDGE AND AGREE THAT, BY ACCESSING OR USING THE SITE, APPLICATION OR SERVICES OR BY DOWNLOADING OR POSTING ANY CONTENT FROM OR ON THE SITE, VIA THE APPLICATION OR THROUGH THE SERVICES, OR BY PARTICIPATING IN THE REFERRAL PROGRAM, YOU ARE INDICATING THAT YOU HAVE READ, AND THAT YOU UNDERSTAND AND AGREE TO BE BOUND BY THESE TERMS, WHETHER OR NOT YOU HAVE REGISTERED WITH THE SITE AND APPLICATION. IF YOU DO NOT AGREE TO THESE TERMS, THEN YOU HAVE NO RIGHT TO ACCESS OR USE THE SITE, APPLICATION, SERVICES, OR COLLECTIVE CONTENT OR TO PARTICIPATE IN THE REFERRAL PROGRAM.</p>\r\n<p>\r\n If you accept or agree to these Terms on behalf of a company or other legal entity, you represent and warrant that you have the authority to bind that company or other legal entity to these Terms and, in such event, &quot;you&quot; and &quot;your&quot; will refer and apply to that company or other legal entity.</p>\r\n<h4 class="red_heading">\r\n Modification</h4>\r\n<p>\r\n WOW reserves the right, at its sole discretion, to modify the Site, Application or Services or to modify these Terms, including the Service Fees, at any time and without prior notice. If we modify these Terms, we will post the modification on the Site or via the Application or provide you with notice of the modification. We will also update the &quot;Last Updated Date&quot; at the top of these Terms. By continuing to access or use the Site, Application or Services after we have posted a modification on the Site or via the Application or have provided you with notice of a modification, you are indicating that you agree to be bound by the modified Terms. If the modified Terms are not acceptable to you, your only recourse is to cease using the Site, Application and Services.</p>\r\n<h4 class="red_heading">\r\n Eligibility</h4>\r\n<p>\r\n The Site, Application and Services are intended solely for persons who are 18 or older. Any access to or use of the Site, Application or Services by anyone under 18 is expressly prohibited. By accessing or using the Site, Application or Services you represent and warrant that you are 18 or older.</p>\r\n<h4 class="red_heading">\r\n How the Site, Application and Services Work</h4>\r\n<p>\r\n The Site, Application and Services can be used to facilitate the listing and booking of residential and other properties (&quot;Accommodations&quot;). Such Accommodations are included in Listings on the Site, Application and Services by Hosts. You may view Listings as an unregistered visitor to the Site, Application and Services; however, if you wish to book an Accommodation or create a Listing, you must first register to create an WOW Account (defined below).</p>\r\n<p>\r\n As stated above, WOW makes available a platform or marketplace with related technology for Guests and Hosts to meet online and arrange for bookings of Accommodations. WOW is not an owner or operator of properties, including, but not limited to, hotel rooms, motel rooms, other lodgings or Accommodations, nor is it a provider of properties, including, but not limited to, hotel rooms, motel rooms, other lodgings or Accommodations and WOW does not own, sell, resell, furnish, provide, rent, re-rent, manage and/or control properties, including, but not limited to, hotel rooms, motel rooms, other lodgings or Accommodations or transportation or travel services and WOW&rsquo;s role is solely to facilitate the availability of the Site, Application and Services. Similarly, WOW is not a contracting agent or representative of any Host. Instead, WOW&rsquo;s role is solely to facilitate the availability of the Site, Application and Services for Members and to provide services related thereto.</p>\r\n<p>\r\n PLEASE NOTE THAT, AS STATED ABOVE, THE SITE, APPLICATION AND SERVICES ARE INTENTED TO BE USED TO FACILIATE THE BOOKING OF ACCOMODATIONS. WOW CANNOT AND DOES NOT CONTROL THE CONTENT CONTAINED IN ANY LISTINGS AND THE CONDITION, LEGALITY OR SUITABILITY OF ANY ACCOMMODATIONS. WOW IS NOT RESPONSIBLE FOR AND DISCLAIMS ANY AND ALL LIABILITY RELATED TO ANY AND ALL LISTINGS AND ACCOMMODATIONS. ACCORDINGLY, ANY BOOKINGS WILL BE MADE AT THE GUEST&rsquo;S OWN RISK.</p>\r\n<h4 class="red_heading">\r\n Account Registration</h4>\r\n<p>\r\n In order to access certain features of the Site and Application, and to book an Accommodation or create a Listing, you must register to create an account (&quot;WOW Account&quot;) and become a Member. You may register to join the Services directly via the Site or Application or as described in this section.</p>\r\n<p>\r\n You can also register to join by logging into your account with certain third party social networking sites (&quot;SNS&quot;) (including, but not limited to, Facebook); each such account, a &quot;Third Party Account&quot;, via our Site or Application, as described below. As part of the functionality of the Site, Application and Services, you may link your WOW Account with Third Party Accounts, by either: (i) providing your Third Party Account login information to WOW through the Site, Services or Application; or (ii) allowing WOW to access your Third Party Account, as is permitted under the applicable terms and conditions that govern your use of each Third Party Account. You represent that you are entitled to disclose your Third Party Account login information to WOW and/or grant WOW access to your Third Party Account (including, but not limited to, for use for the purposes described herein), without breach by you of any of the terms and conditions that govern your use of the applicable Third Party Account and without obligating WOW to pay any fees or making WOW subject to any usage limitations imposed by such third party service providers. By granting WOW access to any Third Party Accounts, you understand that WOW will access, make available and store (if applicable) any Content that you have provided to and stored in your Third Party Account (&quot;SNS Content&quot;) so that it is available on and through the Site, Services and Application via your WOW Account and WOW Account profile page. Unless otherwise specified in these Terms, all SNS Content, if any, shall be considered to be Member Content for all purposes of these Terms. Depending on the Third Party Accounts you choose and subject to the privacy settings that you have set in such Third Party Accounts, personally identifiable information that you post to your Third Party Accounts will be available on and through your WOW Account on the Site, Services and Application. Please note that if a Third Party Account or associated service becomes unavailable or WOW&rsquo;s access to such Third Party Account is terminated by the third party service provider, then SNS Content will no longer be available on and through the Site, Services and Application. You have the ability to disable the connection between your WOW Account and your Third Party Accounts, at any time, by accessing the &quot;Settings&quot; section of the Site and Application.</p>\r\n<p>\r\n PLEASE NOTE THAT YOUR RELATIONSHIP WITH THE THIRD PARTY SERVICE PROVIDERS ASSOCIATED WTH YOUR THIRD PARTY ACCOUNTS IS GOVERNED SOLELY BY YOUR AGREEMENT(S) WITH SUCH THIRD PARTY SERVICE PROVIDERS. WOW makes no effort to review any SNS Content for any purpose, including but not limited to, for accuracy, legality or non-infringement and WOW is not responsible for any SNS Content.</p>\r\n<p>\r\n We will create your WOW Account and your WOW Account profile page for your use of the Site and Application based upon the personal information you provide to us or that we obtain via an SNS as described above. You may not have more than one (1) active WOW Account. You agree to provide accurate, current and complete information during the registration process and to update such information to keep it accurate, current and complete. WOW reserves the right to suspend or terminate your WOW Account and your access to the Site, Application and Services if you create more than one (1) WOW Account or if any information provided during the registration process or thereafter proves to be inaccurate, not current or incomplete. You are responsible for safeguarding your password. You agree that you will not disclose your password to any third party and that you will take sole responsibility for any activities or actions under your WOW Account, whether or not you have authorized such activities or actions. You will immediately notify WOW of any unauthorized use of your WOW Account.</p>\r\n<h4 class="red_heading">\r\n Account Registration</h4>\r\n<p>\r\n As a Member, you may create Listings. To this end, you will be asked a variety of questions about the Accommodation to be listed, including, but not limited to, the location, capacity, size, features, availability of the Accommodation and pricing and related rules and financial terms. In order to be featured in Listings via the Site, Application and Services, all Accommodations must have valid physical addresses. Listings will be made publicly available via the Site, Application and Services. Other Members will be able to book your Accommodation via the Site, Application and Services based upon the information provided in your Listing. You understand and agree that once a Guest requests a booking of your Accommodation, the price for such booking may not be altered.</p>\r\n<p>\r\n You acknowledge and agree that you are solely responsible for any and all Listings you post. Accordingly, you represent and warrant that any Listing you post and the booking of, or Guest stay at, an Accommodation in a Listing you post (i) will not breach any agreements you have entered into with any third parties and (ii) will (a) be in compliance with all applicable laws, Tax requirements, and rules and regulations that may apply to any Accommodation included in a Listing you post, including, but not limited to, zoning laws and laws governing rentals of residential and other properties and (b) not conflict with the rights of third parties. Please note that WOW assumes no responsibility for a Host&rsquo;s compliance with any applicable laws, rules and regulations.</p>\r\n<p>\r\n You understand and agree that WOW does not act as an insurer or as a contracting agent for, or representative of, you as a Host, and if a Guest requests a booking of your Accommodation and stays at your Accommodation, any agreement you enter into with such Guest is between you and the Guest and WOW is not a party thereto. Please note that WOW reserves the right, at any time and without prior notice, to remove or disable access to any Listing for any reason, including Listings that WOW, in its sole discretion, considers to be objectionable for any reason, in violation of these Terms or otherwise harmful to the Site, Application or Services.</p>\r\n<p>\r\n When you create a Listing, you may also choose to include certain requirements which must be met by the Members who are eligible to request a booking of your Accommodation, including, but not limited to, requiring Members to have a profile picture or verified phone number, in order to book your Accommodation. Any Member wishing to book Accommodations included in Listings with such requirements must meet these requirements. More information on how to set such requirements is available via the &quot;Hosting&quot; section of the Site, Application and Services.</p>\r\n<p>\r\n If you are a Host, WOW makes certain tools available to you to help you to make informed decisions about which Members you choose to confirm for booking for your Accommodation. You acknowledge and agree that, as a Host, you are responsible for your own acts and omissions and are also responsible for the acts and omissions of any individuals who reside at or are otherwise present at the Accommodation at your request or invitation, excluding the Guest (and the individuals the Guest invites to the Accommodation, if applicable.)</p>\r\n<p>\r\n WOW recommends that Hosts obtain appropriate insurance for their Accommodations. Please review any insurance policy that you may have for your Accommodation carefully, and in particular please make sure that you are familiar with and understand any exclusions to, and any deductibles that may apply for, such insurance policy, including, but not limited to, whether or not your insurance policy will cover the actions or inactions of Guests (and the individuals the Guest invites to the Accommodation, if applicable) while at your Accommodation.</p>\r\n<h4 class="red_heading">\r\n No Endorsement</h4>\r\n<p>\r\n WOW does not endorse any Members or any Accommodations. In addition, although these Terms require Members to provide accurate information, we do not attempt to confirm, and do not confirm, any Member&rsquo;s purported identity. You are responsible for determining the identity and suitability of others who you contact via the Site, Application and Services. Except as provided in the WOW Host Guarantee Terms and Conditions (&quot;WOW Host Guarantee&quot;), which is an agreement between WOW and Hosts, we will not be responsible for any damage or harm resulting from your interactions with other Members. (Please see WOW&rsquo;s Host Guarantee Terms and Conditions at www.WOWrooms.com/terms for information about the WOW Host Guarantee.) By using the Site, Application or Services, you agree that any legal remedy or liability that you seek to obtain for actions or omissions of other Members or other third parties will be limited to a claim against the particular Members or other third parties who caused you harm and you agree not to attempt to impose liability on, or seek any legal remedy from WOW with respect to such actions or omissions. Accordingly, we encourage you to communicate directly with other Members on the Site and Services regarding any bookings or Listings made by you.</p>\r\n<h4 class="red_heading">\r\n Bookings and Financial Terms for Hosts</h4>\r\n<p>\r\n If you are a Host and a booking is requested for your Accommodation via the Site, Application and Services, you will be required to either confirm or reject the booking within 24 hours of when the booking is requested (as determined by WOW in its sole discretion) or the booking request will be automatically cancelled. When a booking is requested via the Site, Application and Services, we will share with you (i) the first and last name of the Guest who has requested the booking, (ii) a link to the Guest&rsquo;s WOW Account profile page, (iii) the names of any members of an SNS with whom you are &quot;friends&quot; or associated on the SNS if such individuals are also &quot;friends&quot; or associated with the Guest on such SNS, and (iv) an indication that the name that the Guest provided to WOW when the Guest became a Member matches the name that the Guest provided to the SNSs to which the Guest has linked his or her WOW Account, so that you can view such information before confirming or rejecting the booking. If you are unable to confirm or decide to reject a booking of an Accommodation within such 24 hour period, any amounts collected by WOW for the requested booking will be refunded to the applicable Guest&rsquo;s credit or debit card and any pre-authorization of such credit or debit card will be released. When you confirm a booking requested by a Guest, WOW will send you an email, text message or message via the Application confirming such booking, depending on the selections you make via the Site, Application and Services.</p>\r\n<p>\r\n The fees displayed in each Listing are comprised of the Accommodation Fees (defined below) and the Guest Fees (defined below.) Where applicable, Taxes may be charged in addition to the Accommodation Fees and Guest Fees. The Accommodation Fees, the Guest Fees and applicable Taxes are collectively referred to in these Terms as the &quot;Total Fees&quot;. The amounts due and payable by a Guest solely relating to a Host&rsquo;s Accommodation are the &quot;Accommodation Fees&quot;. Please note that it is the Host and not WOW which determines the Accommodation Fees. The Accommodation Fee may include a cleaning fee, at the Host&rsquo;s discretion. WOW charges a fee to Guests based upon a percentage of applicable Accommodation Fees which are the &quot;Guest Fees&quot;. The Guest Fees are added to the Accommodation Fees to calculate the Total Fees (which will also include applicable Taxes) displayed in the applicable Listing. WOW will collect the Total Fees at the time of booking confirmation (i.e. when the Host confirms the booking within 24 hours of the booking request) and will remit the Accommodation Fees (less WOW&rsquo;s Host Fees (defined below)) to the Host within 24 hours of when the Guest arrives at the applicable Accommodation.</p>\r\n<p>\r\n Please note that WOW does not currently charge fees for the creation of Listings. However, you acknowledge and agree that WOW reserves the right, in its sole discretion, to charge you for and collect fees from you for the creation of Listings. Please note that WOW will provide notice of any Listing fee collection via the Site, Application and Services, prior to implementing such a Listing fee feature.</p>\r\n<h4 class="red_heading">\r\n Bookings and Financial Terms for Guests</h4>\r\n<p>\r\n The Hosts, not WOW, are solely responsible for honoring any confirmed bookings and making available any Accommodations reserved through the Site, Application and Services. If you, as a Guest, choose to enter into a transaction with a Host for the booking of an Accommodation, you agree and understand that you will be required to enter into an agreement with the Host and you agree to accept any terms, conditions, rules and restrictions associated with such Accommodation imposed by the Host. You acknowledge and agree that you, and not WOW, will be responsible for performing the obligations of any such agreements, and WOW is not a party to such agreements and disclaims all liability arising from or related to any such agreements.</p>\r\n<p>\r\n Listings for Accommodations will specify the Total Fees. As noted above, the Host is required to either confirm or reject the booking within 24 hours of when the booking is requested (as determined by WOW in its sole discretion) or the requested booking will be automatically cancelled. If a requested booking is cancelled (i.e. not confirmed by the applicable Host), any amounts collected by WOW will be refunded to such Guest, depending on the selections the Guest makes via the Site and Application, and any pre-authorization of such Guest&rsquo;s credit or debit card will be released, if applicable.</p>\r\n<p>\r\n You agree to pay WOW for the Total Fees for any booking requested in connection with your WOW Account if the applicable Host confirms such requested bookings. In order to establish a booking pending the applicable Host&rsquo;s confirmation of your requested booking, you understand and agree that WOW reserves the right, in its sole discretion, to (i) obtain a pre-authorization via your credit or debit card for the Total Fees or (ii) charge your credit or debit card a nominal amount, not to exceed fifty rupees (INR 50), or a similar sum in the currency in which you are transacting ( e.g. one euro or one British pound) to verify your credit or debit card. Once WOW receives confirmation of your booking from the applicable Host, WOW will collect the Total Fees in accordance with the terms and conditions of these Terms and the pricing terms set forth in the applicable Listing. Please note that WOW cannot control any fees that may be charged to a Guest by his or her bank related to WOW&rsquo;s collection of the Total Fees, and WOW disclaims all liability in this regard.</p>\r\n<p>\r\n In connection with your requested booking, you will be asked to provide customary billing information such as name, billing address and credit or debit card information either to WOW or its third party payment processor. You agree to pay WOW for any confirmed bookings made in connection with your WOW Account in accordance with these Terms by one of the methods described on the Site or Application &ndash; e.g. by PayPal or credit or debit card. You hereby authorize the collection of such amounts by charging the credit or debit card provided as part of requesting the booking, either directly by WOW or indirectly, via a third party online payment processor or by one of the payment methods described on the Site or Application. You also authorize WOW to charge your credit or debit card in the event of damage caused at an Accommodation as contemplated under &quot;Damage to Accommodations&quot; below and for Security Deposits, if applicable. If you are directed to WOW&rsquo;s third party payment processor, you may be subject to terms and conditions governing use of that third party&rsquo;s service and that third party&rsquo;s personal information collection practices. Please review such terms and conditions and privacy policy before using the services.Once your confirmed booking transaction is complete you will receive a confirmation email summarizing your confirmed booking.</p>\r\n<h4 class="red_heading">\r\n Security Deposits</h4>\r\n<p>\r\n Hosts may choose to include security deposits in their Listings (&quot;Security Deposits&quot;). Each Listing will describe whether a Security Deposit is required for the applicable Accommodation. If a Security Deposit is included in a Listing for a confirmed booking of Accommodation, WOW will use its commercially reasonable efforts to obtain a pre-authorization of the Guest&rsquo;s credit or debit card in the amount the Host determines for the Security Deposit within a reasonable time prior to the Guest&rsquo;s check-in at the applicable Host&rsquo;s Accommodation. WOW will also use its commercially reasonable efforts to address Hosts&rsquo; requests and claims related to Security Deposits, but WOW is not responsible for administering or accepting any claims by Hosts related to Security Deposits, and disclaims any and all liability in this regard.</p>\r\n<h4 class="red_heading">\r\n Service Fees</h4>\r\n<p>\r\n In consideration for providing the Services, WOW collects service fees from Hosts and Guests (&quot;Service Fees&quot;). Service Fees are made up of two (2) components: (i) Guest Fees and (ii) a fee that is charged to the Host based upon a percentage of the amount of the Accommodation Fees (&quot;Host Fees&quot;). Where applicable, Taxes may also be charged in addition to the Host Fees. Host Fees are deducted from the Accommodation Fees before remitting the Accommodation Fees to the Host, within 24 hours of when the Guest arrives at the applicable Accommodation. Guest Fees are, as noted above, included in the Total Fees.</p>\r\n<p>\r\n Balances will be remitted to Hosts via check, PayPal, direct deposit or other payment methods described on the Site or via the Application, in the Host&rsquo;s currency of choice, depending upon the selections the Host makes via the Site, Application and Services. Please note that for any payments by WOW in currencies other than INDIAN RUPEES, WOW may deduct foreign currency processing costs from such payments. Except as otherwise provided herein, Service Fees are non-refundable.</p>\r\n<h4 class="red_heading">\r\n Cancellations and Refunds</h4>\r\n<p>\r\n If, as a Guest, you cancel your requested booking before the requested booking is confirmed by a Host, WOW will refund any Accommodation Fees collected for such requested booking within a commercially reasonable time. If, as a Guest, you wish to cancel a confirmed booking made via the Site, Application and Services, the cancellation policy of the Host contained in the applicable Listing will apply to such cancellation. Also, the refund will be made to the customer&#39;s account.</p>\r\n<p>\r\n If a Host cancels a confirmed booking made via the Site, Services, and Application, (i) WOW will refund the Total Fees for such booking to the applicable Guest within a commercially reasonable time of the cancellation and (ii) the Guest will receive an email or other communication from WOW containing alternative Listings and other related information. If the Guest requests a booking from one of the alternative Listings and the Host associated with such alternative Listing confirms the Guest&rsquo;s requested booking, then the Guest agrees to pay WOW the Total Fees relating to the confirmed booking for the Accommodation in the alternative Listing, in accordance with these Terms. If a Host cancelled a confirmed booking and you, as a Guest, have not received an email or other communication from WOW, please contact WOW at http://www.WOWrooms.com/home/contact.</p>\r\n<h4 class="red_heading">\r\n Donations</h4>\r\n<p>\r\n Some Hosts may pledge to donate a portion of the funds they receive from confirmed bookings made via the Site, Application and Services to a particular cause or charity. We do not control, and will not take any responsibility or liability for, whether the Host does in fact make the donation he or she pledged to make.</p>\r\n<h4 class="red_heading">\r\n Taxes</h4>\r\n<p>\r\n You understand and agree that you are solely responsible for determining your applicable Tax reporting requirements in consultation with your tax advisors. WOW cannot and does not offer Tax-related advice to any Members of the Site, Application and Services. Additionally, please note that each Host is responsible for determining local indirect Taxes and for including any applicable Taxes to be collected or obligations relating to applicable Taxes in Listings. Where applicable, or based upon request from a Host, WOW may issue a valid VAT invoice to such Host.</p>\r\n<h4 class="red_heading">\r\n Damage to Accommodations</h4>\r\n<p>\r\n As a Guest, you are responsible for leaving the Accommodation in the condition it was in when you arrived. You acknowledge and agree that, as a Guest, you are responsible for your own acts and omissions and are also responsible for the acts and omissions of any individuals who you invite to, or otherwise provide access to, the Accommodation. In the event that a Host claims otherwise and provides evidence of damage, including but not limited to, photographs, you agree to pay the cost of replacing the damaged items with equivalent items. After being notified of the claim and given forty eight (48) hours to respond, the payment will be charged to and taken from the credit or debit card on file in your WOW Account. WOW also reserves the right to charge the credit or debit card on file in your WOW Account, or otherwise collect payment from you and pursue any avenues available to WOW in this regard, including using Security Deposits, in situations in which you have been determined, in WOW&rsquo;s sole discretion, to have damaged any Accommodation, including, but not limited to, in relation to any payment requests made by Hosts under the WOW Host Guarantee, and in relation to any payments made by WOW to Hosts. If we are unable to charge the credit or debit card on file or otherwise collect payment from you, you agree to remit payment for any damage to the Accommodation to the applicable Host or to WOW (if applicable).</p>\r\n<p>\r\n Both Guests and Hosts agree to cooperate with and assist WOW in good faith, and to provide WOW with such information and take such actions as may be reasonably requested by WOW, in connection with any complaints or claims made by Members relating to Accommodations or any personal or other property located at an Accommodation (including, without limitation, payment requests made under the WOW Host Guarantee) or with respect to any investigation undertaken by WOW or a representative of WOW regarding use or abuse of the Site, Application or the Services. If you are a Guest, upon WOW&rsquo;s reasonable request, and to the extent you are reasonably able to do so, you agree to participate in mediation or similar resolution process with a Host, at no cost to you, which process will be conducted by WOW or a third party selected by WOW, with respect to losses for which the Host is requesting payment from WOW under the WOW Host Guarantee.</p>\r\n<p>\r\n If you are a Guest, you understand and agree that WOW reserves the right, in its sole discretion, to make a claim under your homeowner&rsquo;s, renter&rsquo;s or other insurance policy related to any damage or loss that you may have caused or been responsible for to an Accommodation or any personal or other property located at an Accommodation. You agree to cooperate with and assist WOW in good faith, and to provide WOW with such information as may be reasonably requested by WOW in order to make a claim under your homeowner&rsquo;s, renter&rsquo;s or other insurance policy, including, but not limited to, executing documents and taking such further acts as WOW may reasonably request to assist WOW in accomplishing the foregoing.</p>\r\n<h4 class="red_heading">\r\n Member Conduct</h4>\r\n<p>\r\n We may, in our sole discretion, permit Members to post, upload, publish, submit or transmit Member Content. By making available any Member Content on or through the Site, Application and Services, you hereby grant to WOW a worldwide, irrevocable, perpetual, non-exclusive, transferable, royalty-free license, with the right to sublicense, to use, view, copy, adapt, modify, distribute, license, sell, transfer, publicly display, publicly perform, transmit, stream, broadcast, access, view, and otherwise exploit such Member Content only on, through, or by means of the Site, Application and Services. WOW does not claim any ownership rights in any such Member Content and nothing in these Terms will be deemed to restrict any rights that you may have to use and exploit any such Member Content.</p>\r\n<p>\r\n You acknowledge and agree that you are solely responsible for all Member Content that you make available through the Site, Application and Services. Accordingly, you represent and warrant that: (i) you either are the sole and exclusive owner of all Member Content that you make available through the Site, Application and Services or you have all rights, licenses, consents and releases that are necessary to grant to WOW the rights in such Member Content, as contemplated under these Terms; and (ii) neither the Member Content nor your posting, uploading, publication, submission or transmittal of the Member Content or WOW&rsquo;s use of the Member Content (or any portion thereof) on, through or by means of the Site, Application and the Services will infringe, misappropriate or violate a third party&rsquo;s patent, copyright, trademark, trade secret, moral rights or other proprietary or intellectual property rights, or rights of publicity or privacy, or result in the violation of any applicable law or regulation.</p>\r\n<h4 class="red_heading">\r\n Links</h4>\r\n<p>\r\n The Site, Application and Services may contain links to third-party websites or resources. You acknowledge and agree that WOW is not responsible or liable for: (i) the availability or accuracy of such websites or resources; or (ii) the content, products, or services on or available from such websites or resources. Links to such websites or resources do not imply any endorsement by WOW of such websites or resources or the content, products, or services available from such websites or resources. You acknowledge sole responsibility for and assume all risk arising from your use of any such websites or resources or the Content, products or services on or available from such websites or resources.</p>\r\n<h4 class="red_heading">\r\n Proprietary Rights Notices</h4>\r\n<p>\r\n All trademarks, service marks, logos, trade names and any other proprietary designations of WOW used herein are trademarks or registered trademarks of WOW. Any other trademarks, service marks, logos, trade names and any other proprietary designations are the trademarks or registered trademarks of their respective parties.</p>\r\n<h4 class="red_heading">\r\n Feedback</h4>\r\n<p>\r\n We welcome and encourage you to provide feedback, comments and suggestions for improvements to the Site, Application and Services (&quot;Feedback&quot;). You may submit Feedback by emailing us at <EMAIL> or through the Contact (www.WOWrooms.com/contact) section of the Site and Application. You acknowledge and agree that all Feedback will be the sole and exclusive property of WOW and you hereby irrevocably assign to WOW and agree to irrevocably assign to WOW all of your right, title, and interest in and to all Feedback, including without limitation all worldwide patent, copyright, trade secret, moral and other proprietary or intellectual property rights therein. At WOW&rsquo;s request and expense, you will execute documents and take such further acts as WOW may reasonably request to assist WOW to acquire, perfect, and maintain its intellectual property rights and other legal protections for the Feedback.</p>\r\n<h4 class="red_heading">\r\n Copyright Policy</h4>\r\n<p>\r\n WOW respects copyright law and expects its users to do the same. It is WOW&rsquo;s policy to terminate in appropriate circumstances the WOW Accounts of Members or other account holders who repeatedly infringe or are believed to be repeatedly infringing the rights of copyright holders. Please see WOW&rsquo;s Copyright Policy at www.WOWrooms.com/terms for further information.</p>\r\n<h4 class="red_heading">\r\n Termination and WOW Account Cancellation</h4>\r\n<p>\r\n We may, in our discretion and without liability to you, with or without cause, with or without prior notice and at any time: (a) terminate these Terms or your access to our Site, Application and Services, and (b) deactivate or cancel your WOW Account. Upon termination we will promptly pay you any amounts we reasonably determine we owe you in our discretion, which we are legally obligated to pay you. In the event WOW terminates these Terms, or your access to our Site, Application and Services or deactivates or cancels your WOW Account you will remain liable for all amounts due hereunder. You may cancel your WOW Account at any time via the &quot;Cancel Account&quot; feature of the Services or by sending an email to <EMAIL>. Please note that if your WOW Account is cancelled, we do not have an obligation to delete or return to you any Content you have posted to the Site, Application and Services, including, but not limited to, any reviews or Feedback.</p>\r\n<h4 class="red_heading">\r\n Disclaimers</h4>\r\n<p>\r\n IF YOU CHOOSE TO USE THE SITE, APPLICATION , SERVICES AND PARTICIPATE IN THE REFERRAL PROGRAM, YOU DO SO AT YOUR SOLE RISK. YOU ACKNOWLEDGE AND AGREE THAT WOW DOES NOT CONDUCT BACKGROUND CHECKS ON ANY MEMBER, INCLUDING, BUT NOT LIMITED TO, GUESTS AND HOSTS. THE SITE, APPLICATION, SERVICES, COLLECTIVE CONTENT AND REFERRAL PROGRAM ARE PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT LIMITING THE FOREGOING, WOW EXPLICITLY DISCLAIMS ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT, AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. WOW MAKES NO WARRANTY THAT THE SITE, APPLICATION, SERVICES, COLLECTIVE CONTENT, INCLUDING, BUT NOT LIMITED TO, THE LISTINGS OR ANY ACCOMMODATIONS, OR THE REFERRAL PROGRAM WILL MEET YOUR REQUIREMENTS OR BE AVAILABLE ON AN UNINTERRUPTED, SECURE, OR ERROR-FREE BASIS. WOW MAKES NO WARRANTY REGARDING THE QUALITY OF ANY LISTINGS, ACCOMMODATIONS, YOUR ACCRUAL OF WOW TRAVEL CREDITS, THE SERVICES OR COLLECTIVE CONTENT OR THE ACCURACY, TIMELINESS, TRUTHFULNESS, COMPLETENESS OR RELIABILITY OF ANY COLLECTIVE CONTENT OBTAINED THROUGH THE SITE, APPLICATION, SERVICES OR REFERRAL PROGRAM.</p>\r\n<p>\r\n NO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM WOW OR THROUGH THE SITE, APPLICATION, SERVICES OR COLLECTIVE CONTENT, WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.</p>\r\n<p>\r\n YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE SITE, APPLICATION OR SERVICES AND WITH OTHER PERSONS WITH WHOM YOU COMMUNICATE OR INTERACT AS A RESULT OF YOUR USE OF THE SITE, APPLICATION OR SERVICES, INCLUDING, BUT NOT LIMITED TO, ANY HOSTS OR GUESTS. YOU UNDERSTAND THAT WOW DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE SITE, APPLICATION OR SERVICES OR TO REVIEW OR VISIT ANY ACCOMMODATIONS. WOW MAKES NO REPRESENTATIONS OR WARRANTIES AS TO THE CONDUCT OF USERS OF THE SITE, APPLICATION OR SERVICES OR THEIR COMPATIBILITY WITH ANY CURRENT OR FUTURE USERS OF THE SITE, APPLICATION OR SERVICES. YOU AGREE TO TAKE REASONABLE PRECAUTIONS IN ALL COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE SITE, APPLICATION OR SERVICES AND WITH OTHER PERSONS WITH WHOM YOU COMMUNICATE OR INTERACT AS A RESULT OF YOUR USE OF THE SITE, APPLICATION OR SERVICES, INCLUDING, BUT NOT LIMITED TO, GUESTS AND HOSTS, PARTICULARLY IF YOU DECIDE TO MEET OFFLINE OR IN PERSON.</p>\r\n<h4 class="red_heading">\r\n Limitation of Liability</h4>\r\n<p>\r\n YOU ACKNOWLEDGE AND AGREE THAT, TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE ENTIRE RISK ARISING OUT OF YOUR ACCESS TO AND USE OF THE SITE, APPLICATION, SERVICES AND COLLECTIVE CONTENT, AND YOUR LISTING OR BOOKING OF ANY ACCOMMODATIONS VIA THE SITE, APPLICATION AND SERVICES, AND YOUR PARTICIPATION IN THE REFERRAL PROGRAM REMAINS WITH YOU. NEITHER WOW NOR ANY OTHER PARTY INVOLVED IN CREATING, PRODUCING, OR DELIVERING THE SITE, APPLICATION, SERVICES, COLLECTIVE CONTENT OR THE REFERRAL PROGRAM WILL BE LIABLE FOR ANY INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, LOSS OF DATA OR LOSS OF GOODWILL, SERVICE INTERRUPTION, COMPUTER DAMAGE OR SYSTEM FAILURE OR THE COST OF SUBSTITUTE PRODUCTS OR SERVICES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THESE TERMS, FROM THE USE OF OR INABILITY TO USE THE SITE, APPLICATION, SERVICES OR COLLECTIVE CONTENT, FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE SITE, APPLICATION, OR SERVICES OR OTHER PERSONS WITH WHOM YOU COMMUNICATE OR INTERACT AS A RESULT OF YOUR USE OF THE SITE, APPLICATION, SERVICES, OR YOUR PARTICIPATION IN THE REFERRAL PROGRAM OR FROM YOUR LISTING OR BOOKING OF ANY ACCOMMODATION VIA THE SITE, APPLICATION AND SERVICES, WHETHER BASED ON WARRANTY, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY, AND WHETHER OR NOT WOW HAS BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGE, EVEN IF A LIMITED REMEDY SET FORTH HEREIN IS FOUND TO HAVE FAILED OF ITS ESSENTIAL PURPOSE.</p>\r\n<p>\r\n EXCEPT FOR OUR OBLIGATIONS TO PAY AMOUNTS TO APPLICABLE HOSTS PURSUANT TO AN APPROVED PAYMENT REQUEST UNDER THE WOW HOST GUARANTEE, IN NO EVENT WILL WOW&rsquo;S AGGREGATE LIABILITY ARISING OUT OF OR IN CONNECTION WITH THESE TERMS AND YOUR USE OF THE SITE, APPLICATION AND SERVICES INCLUDING, BUT NOT LIMITED TO, FROM YOUR LISTING OR BOOKING OF ANY ACCOMMODATION VIA THE SITE, APPLICATION AND SERVICES, OR FROM THE USE OF OR INABILITY TO USE THE SITE, APPLICATION, SERVICES, OR COLLECTIVE CONTENT OR YOUR PARTICIPATION IN THE REFERRAL PROGRAM AND IN CONNECTION WITH ANY ACCOMMODATION OR INTERACTIONS WITH ANY OTHER MEMBERS, EXCEED THE AMOUNTS YOU HAVE PAID OR OWE FOR BOOKINGS VIA THE SITE, APPLICATION AND SERVICES AS A GUEST IN THE TWELVE (12) MONTH PERIOD PRIOR TO THE EVENT GIVING RISE TO THE LIABILITY, OR IF YOU ARE A HOST, THE AMOUNTS PAID BY WOW TO YOU IN THE TWELVE (12) MONTH PERIOD PRIOR TO THE EVENT GIVING RISE TO THE LIABILITY, OR ONE THOUSAND RUPEES (INR1000), IF NO SUCH PAYMENTS HAVE BEEN MADE, AS APPLICABLE. THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN WOW AND YOU. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, SO THE ABOVE LIMITATION MAY NOT APPLY TO YOU.</p>\r\n<h4 class="red_heading">\r\n Indemnification</h4>\r\n<p>\r\n You agree to release, defend, indemnify, and hold WOW and its affiliates and subsidiaries, and their officers, directors, employees and agents, harmless from and against any claims, liabilities, damages, losses, and expenses, including, without limitation, reasonable legal and accounting fees, arising out of or in any way connected with (a) your access to or use of the Site, Application, Services, or Collective Content or your violation of these Terms; (b) your Member Content; (c) your (i) interaction with any Member, (ii) booking of an Accommodation, (iii) creation of a Listing or (iv) the use, condition or rental of an Accommodation by you, including, but not limited to any injuries, losses, or damages (compensatory, direct, incidental, consequential or otherwise) of any kind arising in connection with or as a result of a rental, booking or use of a Accommodation and (d) your participation in the Referral Program or your accrual of any WOW Travel Credits.</p>\r\n<h4 class="red_heading">\r\n Reporting Misconduct</h4>\r\n<p>\r\n If you stay with or host anyone who you feel is acting or has acted inappropriately, including but not limited to, anyone who (i) engages in offensive, violent or sexually inappropriate behavior, (ii) you suspect of stealing from you, or (iii) engages in any other disturbing conduct, you should immediately report such person to the appropriate authorities and then to WOW by contacting us with your police station and report number at <EMAIL>; provided that your report will not obligate us to take any action beyond that required by law (if any) or cause us to incur any liability to you.</p>\r\n<h4 class="red_heading">\r\n Entire Agreement</h4>\r\n<p>\r\n These Terms constitute the entire and exclusive understanding and agreement between WOW and you regarding the Site, Application, Services, Collective Content, Referral Program, and any bookings or Listings of Accommodations made via the Site, Application and Services, and these Terms supersede and replace any and all prior oral or written understandings or agreements between WOW and you regarding bookings or listings of Accommodations, the Site, Application, Services, Collective Content and Referral Program.</p>\r\n<h4 class="red_heading">\r\n Assignment</h4>\r\n<p>\r\n You may not assign or transfer these Terms, by operation of law or otherwise, without WOW&rsquo;s prior written consent. Any attempt by you to assign or transfer these Terms, without such consent, will be null and of no effect. WOW may assign or transfer these Terms, at its sole discretion, without restriction. Subject to the foregoing, these Terms will bind and inure to the benefit of the parties, their successors and permitted assigns.</p>\r\n<h4 class="red_heading">\r\n Notices</h4>\r\n<p>\r\n Any notices or other communications permitted or required hereunder, including those regarding modifications to these Terms, will be in writing and given by WOW (i) via email (in each case to the address that you provide) or (ii) by posting to the Site or via the Application. For notices made by e-mail, the date of receipt will be deemed the date on which such notice is transmitted.</p>\r\n<h4 class="red_heading">\r\n Controlling Law and Jurisdiction</h4>\r\n<p>\r\n These Terms will be interpreted in accordance with the laws of the Jurisdiction of Kota District Rajasthan where the registered office of WOW is present, without regard to its conflict-of-law provisions. You and we agree to submit to the personal jurisdiction of a court located in New Delhi, India for any actions for which the parties retain the right to seek injunctive or other equitable relief in a court of competent jurisdiction to prevent the actual or threatened infringement, misappropriation or violation of a party&rsquo;s copyrights, trademarks, trade secrets, patents, or other intellectual property rights, as set forth in the Dispute Resolution provision below.</p>\r\n<h4 class="red_heading">\r\n Dispute Resolution</h4>\r\n<p>\r\n You and WOW agree that any dispute, claim or controversy arising out of or relating to these Terms or the breach, termination, enforcement, interpretation or validity thereof, or to the use of the Services or use of the Site or Application (collectively, &quot;Disputes&quot;) will be settled by binding arbitration , except that each party retains the right to seek injunctive or other equitable relief in a court of competent jurisdiction to prevent the actual or threatened infringement, misappropriation or violation of a party&rsquo;s copyrights, trademarks, trade secrets, patents, or other intellectual property rights. You acknowledge and agree that you and WOW are each waiving the right to a trial by jury or to participate as a plaintiff or class member in any purported class action or representative proceeding. Further, unless both you and WOW otherwise agree in writing, the arbitrator may not consolidate more than one person&#39;s claims, and may not otherwise preside over any form of any class or representative proceeding. If this specific paragraph is held unenforceable, then the entirety of this &quot;Dispute Resolution&quot; section will be deemed void. Except as provided in the preceding sentence, this &quot;Dispute Resolution&quot; section will survive any termination of these Terms.</p>\r\n<p>\r\n Arbitration Rules and Governing Law. The arbitration will be administered by the Judicial Courts in accordance with the Indian Laws.</p>\r\n<p>\r\n Changes. Notwithstanding the provisions of the &quot;Modification&quot; section above, if WOW changes this &quot;Dispute Resolution&quot; section after the date you first accepted these Terms (or accepted any subsequent changes to these Terms), you may reject any such change by sending us written notice (including by email to <EMAIL> within 30 days of the date such change became effective, as indicated in the &quot;Last Updated Date&quot; above or in the date of WOW&rsquo;s email to you notifying you of such change. By rejecting any change, you are agreeing that you will arbitrate any Dispute between you and WOW in accordance with the provisions of this &quot;Dispute Resolution&quot; section as of the date you first accepted these Terms (or accepted any subsequent changes to these Terms).</p>\r\n<h4 class="red_heading">\r\n General</h4>\r\n<p>\r\n The failure of WOW to enforce any right or provision of these Terms will not constitute a waiver of future enforcement of that right or provision. The waiver of any such right or provision will be effective only if in writing and signed by a duly authorized representative of WOW. Except as expressly set forth in these Terms, the exercise by either party of any of its remedies under these Terms will be without prejudice to its other remedies under these Terms or otherwise. If for any reason an arbitrator or a court of competent jurisdiction finds any provision of these Terms invalid or unenforceable, that provision will be enforced to the maximum extent permissible and the other provisions of these Terms will remain in full force and effect.</p>\r\n<h4 class="red_heading">\r\n Contacting WOW</h4>\r\n<p>\r\n If you have any questions about these Terms or any App Store Sourced Application, please contact WOW at <EMAIL></p>\r\n', '1438176715', '1438231344', 3, 1); INSERT INTO `cd_pages` (`id`, `title`, `html_title`, `slug`, `heading`, `meta_title`, `meta_keyword`, `meta_description`, `images`, `content`, `createtime`, `modifytime`, `position`, `status`) VALUES (4, 'faq', 'FAQ', 'faq', 'FAQ', 'FAQ', 'FAQ', 'FAQ', '', '<p></p>', '1438341644', '', 4, 1), (5, 'Contact us', 'Contact us', 'contact-us', 'contact us', 'contact us', 'contact us', 'contact us', '', '<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the i </p>', '1438346975', '1438417290', 5, 1), (6, 'Careers', 'Careers', 'careers', 'careers', 'Careers', 'Careers', 'Careers', '', '<p></p>', '1438760059', '1438762770', 6, 1); -- -------------------------------------------------------- -- -- Table structure for table `cd_settings` -- CREATE TABLE IF NOT EXISTS `cd_settings` ( `id` int(11) NOT NULL AUTO_INCREMENT, `website_title` varchar(255) NOT NULL, `site_logo_image` text NOT NULL, `site_favicon_icon` text NOT NULL, `download_app_url` text NOT NULL, `booking_manager_email` varchar(255) NOT NULL, `booking_manger_phone` varchar(255) NOT NULL, `hotel_room_manager_email` varchar(255) NOT NULL, `from_email` varchar(255) NOT NULL, `contact_email` varchar(255) NOT NULL, `linkedin_url` text NOT NULL, `email` varchar(255) NOT NULL, `address` text NOT NULL, `address2` text NOT NULL, `city` varchar(255) NOT NULL, `pincode` varchar(10) NOT NULL, `contact_no` varchar(20) NOT NULL, `wow_disscount` varchar(255) NOT NULL, `fb_url` text NOT NULL, `twitter_url` text NOT NULL, `google_plus_url` text NOT NULL, `you_tube` text NOT NULL, `created_date` datetime NOT NULL, `modified_date` datetime NOT NULL, `status` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; -- -- Dumping data for table `cd_settings` -- INSERT INTO `cd_settings` (`id`, `website_title`, `site_logo_image`, `site_favicon_icon`, `download_app_url`, `booking_manager_email`, `booking_manger_phone`, `hotel_room_manager_email`, `from_email`, `contact_email`, `linkedin_url`, `email`, `address`, `address2`, `city`, `pincode`, `contact_no`, `wow_disscount`, `fb_url`, `twitter_url`, `google_plus_url`, `you_tube`, `created_date`, `modified_date`, `status`) VALUES (1, '1888zerotax', '9bea8ece82924c52fcd9375cb3e22143.png', '90cbc82e9ff1e5d22c92489e72d81259.png', '', '', '', '', '<EMAIL>', '', '', '', '', '', '', '', '', '', '', '', '', '', '2015-06-15 14:39:56', '2015-10-12 10:21:18', 1); -- -------------------------------------------------------- -- -- Table structure for table `cd_states` -- CREATE TABLE IF NOT EXISTS `cd_states` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) DEFAULT NULL, `state_code` varchar(255) NOT NULL, `country_id` int(11) DEFAULT NULL, `status` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `state_fk1` (`country_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=39 ; -- -- Dumping data for table `cd_states` -- INSERT INTO `cd_states` (`id`, `name`, `state_code`, `country_id`, `status`) VALUES (1, 'Delhi', 'DL', 113, 1), (2, 'Andhra Pradesh', 'AP', 113, 1), (3, 'Arunachal Pradesh', 'AR', 113, 1), (4, 'Assam', 'AS', 113, 1), (5, 'Bihar', 'BR', 113, 1), (6, 'Chhattisgarh', 'CT', 113, 1), (7, 'Goa', 'GA', 113, 1), (8, 'Gujarat', 'GJ', 113, 1), (9, 'Haryana', 'HR', 113, 1), (10, 'H<NAME>', 'HP', 113, 1), (11, '<NAME>', 'JK', 113, 1), (12, 'Jharkhand', 'JH', 113, 1), (13, 'Karnataka', 'KA', 113, 1), (14, 'Kerala', 'KL', 113, 1), (15, 'Madhya Pradesh', 'MP', 113, 1), (16, 'Maharashtra', 'MH', 113, 1), (17, 'Manipur', 'MN', 113, 1), (18, 'Meghalaya', 'ML', 113, 1), (19, 'Mizoram', 'MZ', 113, 1), (20, 'Nagaland', 'NL', 113, 1), (21, 'Orissa', 'OR', 113, 1), (22, 'Punjab', 'PB', 113, 1), (23, 'Rajasthan', 'RJ', 113, 1), (24, 'Sikkim', 'SK', 113, 1), (25, 'Tamil Nadu', 'TN', 113, 1), (26, 'Tripura', 'TR', 113, 1), (27, 'Uttar Pradesh', 'UP', 113, 1), (28, 'Uttarakhand', 'UK', 113, 1), (29, 'West Bengal', 'WB', 113, 1), (30, 'Andaman and Nicobar', 'AN', 113, 1), (31, 'Chandigarh', 'CH', 113, 1), (32, 'Dadra and Nagar Have', 'DN', 113, 1), (33, 'Daman and Diu', 'DD', 113, 1), (34, 'Lakshadweep', 'LD', 113, 1), (35, 'National Capital Ter', '', 113, 1), (36, 'Pondicherry', 'PY', 113, 1), (37, 'Andaman and Nicobar Islands', 'ANI', 113, 1), (38, 'Uttaranchal', 'UT', 113, 1); -- -------------------------------------------------------- -- -- Table structure for table `cd_users` -- CREATE TABLE IF NOT EXISTS `cd_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `first_name` varchar(100) NOT NULL, `last_name` varchar(100) NOT NULL, `email` varchar(255) NOT NULL, `password` text NOT NULL, `phone` varchar(20) NOT NULL, `status` int(11) NOT NULL, `state_id` int(11) NOT NULL, `city_id` int(11) NOT NULL, `pincode` int(11) NOT NULL, `verification_code` text NOT NULL, `ip` varchar(255) NOT NULL, `one_time_verify_pin` varchar(255) NOT NULL, `mobile_verify` int(11) NOT NULL, `created` bigint(20) NOT NULL, `modified` bigint(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `cd_user_types` -- CREATE TABLE IF NOT EXISTS `cd_user_types` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `status` int(2) NOT NULL, `created_date` datetime NOT NULL, `modified_date` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; /*!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 */;
-- CreateTable CREATE TABLE "users" ( "userId" TEXT NOT NULL, "name" TEXT NOT NULL, "email" TEXT NOT NULL, "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, "updatedAt" TIMESTAMP(3) NOT NULL, "isAdmin" BOOLEAN NOT NULL DEFAULT false, CONSTRAINT "users_pkey" PRIMARY KEY ("userId") ); -- CreateTable CREATE TABLE "products" ( "productId" TEXT NOT NULL, "name" TEXT NOT NULL, "quantity" INTEGER NOT NULL DEFAULT 1, "price" DOUBLE PRECISION NOT NULL, "brand" TEXT NOT NULL, "description" TEXT NOT NULL, "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, "updatedAt" TIMESTAMP(3) NOT NULL, CONSTRAINT "products_pkey" PRIMARY KEY ("productId") ); -- CreateTable CREATE TABLE "payments" ( "paymentId" TEXT NOT NULL, "userId" TEXT NOT NULL, "total" DOUBLE PRECISION NOT NULL, "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, "updatedAt" TIMESTAMP(3) NOT NULL, CONSTRAINT "payments_pkey" PRIMARY KEY ("paymentId") ); -- CreateTable CREATE TABLE "orders" ( "orderId" TEXT NOT NULL, "userId" TEXT NOT NULL, "productsId" TEXT[], "Payment" JSONB NOT NULL, "paymentId" TEXT NOT NULL, "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, "updatedAt" TIMESTAMP(3) NOT NULL, CONSTRAINT "orders_pkey" PRIMARY KEY ("orderId") ); -- CreateIndex CREATE UNIQUE INDEX "users_email_key" ON "users"("email");
<gh_stars>0 create proc sp_Consulta2 as select Nombre from Producto go
-- Import raw CSV files from S3 into base tables -- https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/PostgreSQL.Procedural.Importing.html CREATE schema if not exists raw; -- AUTHORIZATION template_app_user ------------------------------------------------------------------------------- -- customers drop table if exists raw.customers; CREATE TABLE raw.customers ( id text, first_name text null, last_name text null, email text null, gender text null, _row_ int null ); COPY raw.customers FROM 'C:\Users\Public\data\template-data-pipeline\raw\customers.csv' CSV HEADER; select * from raw.customers limit 100 ; ------------------------------------------------------------------------------- -- locations drop table if exists raw.locations; CREATE TABLE raw.locations ( id text, city text null, state text null, zip text null, _row_ int null ); COPY raw.locations FROM 'C:\Users\Public\data\template-data-pipeline\raw\locations.csv' CSV HEADER; select * from raw.locations limit 100 ; ------------------------------------------------------------------------------- -- orders_2017 drop table if exists raw.orders_2017; CREATE TABLE raw.orders_2017 ( id text, "date" date null, amount text null, customer_id text null, location_id text null ); copy raw.orders_2017 FROM 'C:\Users\Public\data\template-data-pipeline\raw\orders_2017.csv' CSV HEADER; select * from raw.orders_2017 limit 100 ; ------------------------------------------------------------------------------- -- orders_2018 drop table if exists raw.orders_2018; CREATE TABLE raw.orders_2018 ( id text, "date" date null, amount text null, customer_id text null, location_id text null ); copy raw.orders_2018 FROM 'C:\Users\Public\data\template-data-pipeline\raw\orders_2018.csv' CSV HEADER; select * from raw.orders_2018 limit 100 ; ------------------------------------------------------------------------------- -- orders_2019 drop table if exists raw.orders_2019; CREATE TABLE raw.orders_2019 ( id text, "date" date null, amount text null, customer_id text null, location_id text null ); copy raw.orders_2019 FROM 'C:\Users\Public\data\template-data-pipeline\raw\orders_2019.csv' CSV HEADER; select * from raw.orders_2019 limit 100 ;
<filename>models/schema.sql DROP DATABASE IF EXISTS currentdb; CREATE DATABASE currentdb;
SELECT FirstName FROM Employees WHERE (DepartmentID = 3 OR DepartmentID = 10) AND HireDate BETWEEN '19950101' AND '20051231'
<gh_stars>1-10 create database if not exists sensor; use sensor; CREATE TABLE `log` ( `ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `topic` varchar(80) NOT NULL, `val` float NOT NULL, PRIMARY KEY (`ts`,`topic`), KEY `topic` (`topic`) );
/* Revising Aggregations - Averages */ SELECT AVG(POPULATION) FROM CITY WHERE DISTRICT = 'California'; /* Weather Observation Station 13 */ SELECT ROUND(SUM(LAT_N), 4) FROM STATION WHERE 38.7880 < LAT_N AND LAT_N < 137.2345; /* Average Population of Each Continent */ SELECT COUNTRY.CONTINENT, FLOOR(AVG(CITY.POPULATION)) FROM CITY INNER JOIN COUNTRY ON CITY.COUNTRYCODE = COUNTRY.CODE GROUP BY COUNTRY.CONTINENT; /* Revising Aggregations - The Sum Function */ SELECT SUM(POPULATION) FROM CITY WHERE DISTRICT = 'California'; /* Weather Observation Station 14 */ SELECT ROUND(MAX(LAT_N), 4) FROM STATION WHERE LAT_N < 137.2345;
<gh_stars>1-10 truncate game_titles restart identity cascade;
<reponame>codename-co/stack -- -- ■ GLOBAL PARAMETERS -- BEGIN; -- ✨ Table definition CREATE TABLE IF NOT EXISTS parameters ( name TEXT PRIMARY KEY NOT NULL, value TEXT NOT NULL, description TEXT ); -- 📖 Documentation COMMENT ON TABLE parameters IS 'Global parameters'; COMMENT ON COLUMN parameters.value IS 'Parameter value'; COMMENT ON COLUMN parameters.description IS 'Parameter description'; CREATE OR REPLACE FUNCTION param( name TEXT ) RETURNS TEXT AS $$ SELECT value FROM swag.parameters WHERE name = $1; $$ LANGUAGE SQL STABLE; -- 📖 Documentation COMMENT ON FUNCTION param (TEXT) IS 'Get a parameter value by name.'; COMMIT;
BEGIN; -- The field num_pages is remaned into pages -- Rename the column ALTER TABLE north_app_book RENAME COLUMN num_pages TO pages; -- Create compatibility view for N-1 code ALTER TABLE north_app_book RENAME TO north_app_book_wip; CREATE VIEW north_app_book AS SELECT *, pages AS num_pages FROM north_app_book_wip; COMMIT;
DROP TABLE plaid_links; ALTER TABLE plaid_links_copy RENAME TO plaid_links;
<reponame>TodorovicSrdjan/PMF -- 1 create table arhiva_prolaznih_vremena ( id int identity(1,1), id_vozaca int, id_etape int, redni_broj_staze int, vreme_starta datetime, vreme_prolaska_kroz_cilj datetime, primary key (id), foreign key (id_vozaca) references vozaci(id_vozaca), foreign key (id_etape, redni_broj_staze) references etape(id_etape, redni_broj_staze), ) create trigger upis_u_prolazna_vremena on prolazna_vremena instead of insert as begin declare @id_vozaca int declare @id_etape int declare @redni_broj_staze int declare @vreme_starta datetime declare @vreme_prolaska_kroz_cilj datetime -- Napravi kursor kroz vrednosti koje je potrebno upisati u tabelu declare kursorKrozProlazna_vremena cursor for select id_vozaca, id_etape, redni_broj_staze, vreme_starta, vreme_prolaska_kroz_cilj from inserted open kursorKrozProlazna_vremena -- Otovri kursor za citanje FETCH NEXT FROM kursorKrozProlazna_vremena INTO @id_vozaca, @id_etape, @redni_broj_staze, @vreme_starta, @vreme_prolaska_kroz_cilj -- za svaki red u tabeli "inserted" WHILE @@FETCH_STATUS = 0 BEGIN -- Ako nove vrednosti koje treba upisati za vozaca, etapu i stazu VEC postoje u tabeli "prolazna vremena" if exists (select * from prolazna_vremena where id_vozaca = @id_vozaca and id_etape = @id_etape and redni_broj_staze = @redni_broj_staze) begin -- stare vrednosti upisi u arhivu insert into arhiva_prolaznih_vremena select * from prolazna_vremena where id_vozaca = @id_vozaca and id_etape = @id_etape and redni_broj_staze = @redni_broj_staze --stare vrednosti promeni novim vrednostima update prolazna_vremena set vreme_starta = @vreme_starta, vreme_prolaska_kroz_cilj = @vreme_prolaska_kroz_cilj where id_vozaca = @id_vozaca and id_etape = @id_etape and redni_broj_staze = @redni_broj_staze end else begin -- Ako nove vrednosti koje treba upisati za vozaca, etapu i stazu NE postoje u tabeli "prolazna vremena" samo ih upisi u tabelu insert into prolazna_vremena values (@id_vozaca, @id_etape, @redni_broj_staze, @vreme_starta, @vreme_prolaska_kroz_cilj) end FETCH NEXT FROM kursorKrozProlazna_vremena INTO @id_vozaca, @id_etape, @redni_broj_staze, @vreme_starta, @vreme_prolaska_kroz_cilj END CLOSE kursorKrozProlazna_vremena DEALLOCATE kursorKrozProlazna_vremena end -- 2. create function Plasman (@id_vozaca int, @id_etape int, @redni_broj_staze int, @godina int) returns int as begin declare @plasman int /* Pronadji tip vozila za prosledjenog vozaca */ declare @id_tipa int select @id_tipa = v2.id_tipa from vozaci v1 join vozila v2 on v1.id_vozila = v2.id_vozila where v1.id_vozaca = @id_vozaca /* Pronadji ostvareno vreme za prosledjenog vozaca, etapu i stazu */ declare @ostvareno_vreme int select @ostvareno_vreme = datediff(MILLISECOND, vreme_starta, vreme_prolaska_kroz_cilj) from prolazna_vremena where id_etape = @id_etape and redni_broj_staze = @redni_broj_staze and id_vozaca = @id_vozaca /* Ideja je da pronadjemo koliko vozaca na prosledjenoj etapi sa id-em @id_etape i stazi sa rednim brojem @redni_broj_staze imaju bolje vreme od vozaca sa id-em @id_vozaca Ugnjezdeni upit TMP (videti seldeci upit) sadrzi sva prolazna vremena ostvarena u prosledjenoj godini @godina, za tip vozila koji je isti kao tip vozila prosledjenog vozaca (@id_tipa oredjenog iznad) na prosledjenoj etapi @etapa i na stazi @redni_broj_staze. Ako pogledamo where deo, vidimo da ce u rezultatu ostati oni vozaci koji su brzi od @ostvareno_vreme koje predstavlja vreme za prosledjenog vozaca, zato je dovoljno prebrojati koliko takvih vozaca ima, sto predstavlja generalni plasman. */ select @plasman = count(*) + 1 from ( /* -- Pronadji prolazna vremena za sva vozila koja su @id_tipa i ostavi samo ona prolazna vremena koja su -- ostvarena za prosledjeni @id_etape i na stazi @redni_broj_staze -- u rezultujucem upitu ostavljamo samo id_vozaca i ostavreno vreme jer smo u where delu filtrirali -- rezultate samo za trazenu etapu i stazu */ select pv.id_vozaca, datediff(MILLISECOND, pv.vreme_starta, pv.vreme_prolaska_kroz_cilj) ostvareno_vreme from prolazna_vremena pv join vozaci v on pv.id_vozaca = v.id_vozaca -- prolazna vremena spajamo za vozacima jer se kod vozaca nalazi id_vozila pomocu kojeg mozemo vozaca spojiti sa njegovim vozilom join vozila on v.id_vozila = vozila.id_vozila -- kada vozaca spojimo sa njegovim vozilom, mozemo doci do tipa njegovog vozila, kako bi u where delu mogli da ostavimo samo ona vremena koja su ostvarila vozila sa tipom @id_tipa koji smo gore odredili where datepart(year, pv.vreme_prolaska_kroz_cilj) = @godina and vozila.id_tipa = @id_tipa and pv.id_etape = @id_etape and redni_broj_staze = @redni_broj_staze ) as TMP where TMP.id_vozaca != @id_vozaca and @ostvareno_vreme > TMP.ostvareno_vreme return @plasman end -- 3. /* Ukoliko je rekord oboren funkcija vraca 1, u suprotnom vraca -1 */ create function DaLiJeOborenRekord (@id_vozaca int, @id_etape int, @redni_broj_staze int) returns int as begin /* Prvo cemo pronaci kada je ostvareno vreme za prosledjenog vozaca, etapu, stazu i vreme kada je ostvareno */ declare @ostvareno_vreme int -- ostvareno vreme prosledjenog vozaca declare @kada_je_ostvareno_vreme datetime -- kog datum je ostvario prolazno vreme select @ostvareno_vreme = datediff(MILLISECOND, vreme_starta, vreme_prolaska_kroz_cilj), @kada_je_ostvareno_vreme = vreme_prolaska_kroz_cilj from prolazna_vremena where id_etape = @id_etape and redni_broj_staze = @redni_broj_staze and id_vozaca = @id_vozaca /* Pronadji tip vozila za prosledjenog vozaca */ declare @id_tipa int select @id_tipa = v2.id_tipa from vozaci v1 join vozila v2 on v1.id_vozila = v2.id_vozila where v1.id_vozaca = @id_vozaca /* Ako je ostvareno vreme null, znaci da vozac nije zavrsio trku pa cemo vratiti -1 */ if @ostvareno_vreme is null begin return -1 end /* Provericemo koliko vozaca ima bolje vreme od @ostvareno_vreme sli da je ostvareno pre @kada_je_ostvareno_vreme */ declare @koliko_njih_je_bolje_u_proslosti int /* Spajamo prolazna vremena za vozacima a zatim sve sa vozilima, sa ciljem da za svako prolazno vreme dobijemo informaciju koji tip vozila je ostvario prolazno vreme. Ovo spajanje ima za cilj da u prolaznim vremenima ostavimo samo ona koja su ostvarila vozila sa tipom @id_tipa koji smo odredili iznad */ select @koliko_njih_je_bolje_u_proslosti = count(*) from prolazna_vremena pv join vozaci v on pv.id_vozaca = v.id_vozaca join vozila on v.id_vozila = vozila.id_vozila where vozila.id_tipa = @id_tipa and pv.id_etape = @id_etape and pv.redni_broj_staze = @redni_broj_staze and datediff(MILLISECOND, vreme_starta, vreme_prolaska_kroz_cilj) < @ostvareno_vreme and pv.vreme_prolaska_kroz_cilj < @kada_je_ostvareno_vreme -- Ako nema boljih vremena vrati 1, u suprotnom vrati -1 if @koliko_njih_je_bolje_u_proslosti = 0 begin return 1 end return -1 end -- 4. /* Procedura ce kursorom proci kroz sva prolazna vremena, i za svako prolazno vreme proveriti da li je ono najbolje u godini kada je ostvareno, kao i da li je njime oboren rekord */ create procedure ApsolutniPobednik as begin declare @id_vozaca int declare @id_etape int declare @redni_broj_staze int declare @vreme_starta datetime declare @vreme_prolaska_kroz_cilj datetime -- Napravi kursor kroz vrednosti koje je potrebno upisati u tabelu declare kursorKrozProlazna_vremena cursor for select id_vozaca, id_etape, redni_broj_staze, vreme_starta, vreme_prolaska_kroz_cilj from prolazna_vremena open kursorKrozProlazna_vremena -- Otovri kursor za citanje FETCH NEXT FROM kursorKrozProlazna_vremena INTO @id_vozaca, @id_etape, @redni_broj_staze, @vreme_starta, @vreme_prolaska_kroz_cilj -- za svaki red u tabeli prolazna_vremena proveri da li je ono vozacu dolelo prvo mesto u generalnom plasmanu i da li je to ujedno i rekord staze WHILE @@FETCH_STATUS = 0 BEGIN -- Ako si prvi i ako si ostvario rekord if ( dbo.Plasman(@id_vozaca, @id_etape, @redni_broj_staze, datepart(year, @vreme_prolaska_kroz_cilj)) = 1 and dbo.DaLiJeOborenRekord(@id_vozaca, @id_etape, @redni_broj_staze) = 1 ) begin -- pronadji ime za @id_vozaca declare @ime varchar(50) select @ime = ime from vozaci where id_vozaca = @id_vozaca print concat(@ime, ',', @id_etape, ',', @redni_broj_staze, ', ', datepart(year, @vreme_prolaska_kroz_cilj)) end FETCH NEXT FROM kursorKrozProlazna_vremena INTO @id_vozaca, @id_etape, @redni_broj_staze, @vreme_starta, @vreme_prolaska_kroz_cilj END CLOSE kursorKrozProlazna_vremena DEALLOCATE kursorKrozProlazna_vremena end -- Poziv exec ApsolutniPobednik
<reponame>chengwenxin/sqlite-parser -- original: indexexpr1.test -- credit: http://www.sqlite.org/src/tree?ci=trunk&name=test CREATE TABLE t1(a,b,c); INSERT INTO t1(a,b,c) /* 123456789 123456789 123456789 123456789 123456789 123456789 */ VALUES('In_the_beginning_was_the_Word',1,1), ('and_the_Word_was_with_God',1,2), ('and_the_Word_was_God',1,3), ('The_same_was_in_the_beginning_with_God',2,1), ('All_things_were_made_by_him',3,1), ('and_without_him_was_not_any_thing_made_that_was_made',3,2); CREATE INDEX t1a1 ON t1(substr(a,1,12)) ;SELECT b, c, '|' FROM t1 WHERE substr(a,1,12)=='and_the_Word' ORDER BY b, c ;EXPLAIN QUERY PLAN SELECT b, c, '|' FROM t1 WHERE substr(a,1,12)=='and_the_Word' ORDER BY b, c ;SELECT b, c, '|' FROM t1 WHERE 'and_the_Word'==substr(a,1,12) ORDER BY b, c ;EXPLAIN QUERY PLAN SELECT b, c, '|' FROM t1 WHERE 'and_the_Word'==substr(a,1,12) ORDER BY b, c ;CREATE INDEX t1ba ON t1(b,substr(a,2,3),c); SELECT c FROM t1 WHERE b=1 AND substr(a,2,3)='nd_' ORDER BY c ;EXPLAIN QUERY PLAN SELECT c FROM t1 WHERE b=1 AND substr(a,2,3)='nd_' ORDER BY c ;SELECT rowid, substr(a,b,3), '|' FROM t1 ORDER BY 2 ;CREATE INDEX t1abx ON t1(substr(a,b,3)); SELECT rowid FROM t1 WHERE substr(a,b,3)<='and' ORDER BY +rowid ;EXPLAIN QUERY PLAN SELECT rowid FROM t1 WHERE substr(a,b,3)<='and' ORDER BY +rowid ;SELECT rowid FROM t1 WHERE +substr(a,b,3)<='and' ORDER BY +rowid ;SELECT rowid FROM t1 WHERE substr(a,b,3) IN ('and','l_t','xyz') ORDER BY +rowid ;EXPLAIN QUERY PLAN SELECT rowid FROM t1 WHERE substr(a,b,3) IN ('and','l_t','xyz') ORDER BY +rowid ;ALTER TABLE t1 ADD COLUMN d; UPDATE t1 SET d=length(a); CREATE INDEX t1a2 ON t1(SUBSTR(a, 27, 3)) WHERE d>=29; SELECT rowid, b, c FROM t1 WHERE substr(a,27,3)=='ord' AND d>=29 ;EXPLAIN QUERY PLAN SELECT rowid, b, c FROM t1 WHERE substr(a,27,3)=='ord' AND d>=29 ;CREATE INDEX t1alen ON t1(length(a)); SELECT length(a) FROM t1 ORDER BY length(a) ;EXPLAIN QUERY PLAN SELECT length(a) FROM t1 ORDER BY length(a) ;SELECT length(a) FROM t1 ORDER BY length(a) DESC ;EXPLAIN QUERY PLAN SELECT length(a) FROM t1 ORDER BY length(a) DESC ;DROP TABLE t1; CREATE TABLE t1(id ANY PRIMARY KEY, a,b,c) WITHOUT ROWID; INSERT INTO t1(id,a,b,c) VALUES(1,'In_the_beginning_was_the_Word',1,1), (2,'and_the_Word_was_with_God',1,2), (3,'and_the_Word_was_God',1,3), (4,'The_same_was_in_the_beginning_with_God',2,1), (5,'All_things_were_made_by_him',3,1), (6,'and_without_him_was_not_any_thing_made_that_was_made',3,2); CREATE INDEX t1a1 ON t1(substr(a,1,12)) ;SELECT b, c, '|' FROM t1 WHERE substr(a,1,12)=='and_the_Word' ORDER BY b, c ;EXPLAIN QUERY PLAN SELECT b, c, '|' FROM t1 WHERE substr(a,1,12)=='and_the_Word' ORDER BY b, c ;SELECT b, c, '|' FROM t1 WHERE 'and_the_Word'==substr(a,1,12) ORDER BY b, c ;EXPLAIN QUERY PLAN SELECT b, c, '|' FROM t1 WHERE 'and_the_Word'==substr(a,1,12) ORDER BY b, c ;CREATE INDEX t1ba ON t1(b,substr(a,2,3),c); SELECT c FROM t1 WHERE b=1 AND substr(a,2,3)='nd_' ORDER BY c ;EXPLAIN QUERY PLAN SELECT c FROM t1 WHERE b=1 AND substr(a,2,3)='nd_' ORDER BY c ;SELECT id, substr(a,b,3), '|' FROM t1 ORDER BY 2 ;CREATE INDEX t1abx ON t1(substr(a,b,3)); SELECT id FROM t1 WHERE substr(a,b,3)<='and' ORDER BY +id ;EXPLAIN QUERY PLAN SELECT id FROM t1 WHERE substr(a,b,3)<='and' ORDER BY +id ;SELECT id FROM t1 WHERE +substr(a,b,3)<='and' ORDER BY +id ;SELECT id FROM t1 WHERE substr(a,b,3) IN ('and','l_t','xyz') ORDER BY +id ;EXPLAIN QUERY PLAN SELECT id FROM t1 WHERE substr(a,b,3) IN ('and','l_t','xyz') ORDER BY +id ;ALTER TABLE t1 ADD COLUMN d; UPDATE t1 SET d=length(a); CREATE INDEX t1a2 ON t1(SUBSTR(a, 27, 3)) WHERE d>=29; SELECT id, b, c FROM t1 WHERE substr(a,27,3)=='ord' AND d>=29 ;EXPLAIN QUERY PLAN SELECT id, b, c FROM t1 WHERE substr(a,27,3)=='ord' AND d>=29 ;CREATE TABLE t3(a,b,c); WITH RECURSIVE c(x) AS (VALUES(1) UNION SELECT x+1 FROM c WHERE x<30) INSERT INTO t3(a,b,c) SELECT x, printf('ab%04xyz',x), random() FROM c; CREATE UNIQUE INDEX t3abc ON t3(CAST(a AS text), b, substr(c,1,3)); SELECT a FROM t3 WHERE CAST(a AS text)<='10' ORDER BY +a; PRAGMA integrity_check ;CREATE TABLE t5(a); CREATE TABLE cnt(x); WITH RECURSIVE c(x) AS (VALUES(1) UNION ALL SELECT x+1 FROM c WHERE x<5) INSERT INTO cnt(x) SELECT x FROM c; INSERT INTO t5(a) SELECT printf('abc%03dxyz',x) FROM cnt; CREATE INDEX t5ax ON t5( substr(a,4,3) ) ;-- The use of the "k" alias in the WHERE clause is technically -- illegal, but SQLite allows it for historical reasons. In this -- test and the next, verify that "k" can be used by the t5ax index SELECT substr(a,4,3) AS k FROM cnt, t5 WHERE k=printf('%03d',x) ;EXPLAIN QUERY PLAN SELECT substr(a,4,3) AS k FROM cnt, t5 WHERE k=printf('%03d',x) ;DROP TABLE IF EXISTS t4; CREATE TABLE t4(a,b,c,d,e,f,g,h,i); CREATE INDEX t4all ON t4(a,b,c<d,e,f,i,h); INSERT INTO t4 VALUES(1,2,3,4,5,6,7,8,9); ANALYZE; DELETE FROM sqlite_stat1; INSERT INTO sqlite_stat1 VALUES('t4','t4all','600000 160000 40000 10000 2000 600 100 40 10'); ANALYZE sqlite_master; SELECT i FROM t4 WHERE e=5 ;DROP TABLE IF EXISTS t7; CREATE TABLE t7(a,b,c); INSERT INTO t7(a,b,c) VALUES(1,2,2),('abc','def','def'),(4,5,6); CREATE INDEX t7b ON t7(+b); CREATE INDEX t7c ON t7(+c); SELECT *, '|' FROM t7 WHERE +b=+c ORDER BY +a ;CREATE TABLE t71(a,b,c); CREATE INDEX t71bc ON t71(b+c); CREATE TABLE t72(x,y,z); CREATE INDEX t72yz ON t72(y+z); INSERT INTO t71(a,b,c) VALUES(1,11,2),(2,7,15),(3,5,4); INSERT INTO t72(x,y,z) VALUES(1,10,3),(2,8,14),(3,9,9); SELECT a, x, '|' FROM t71, t72 WHERE b+c=y+z ORDER BY +a, +x ;DROP TABLE IF EXISTS t8; CREATE TABLE t8(a INTEGER PRIMARY KEY, b TEXT); CREATE UNIQUE INDEX t8bx ON t8(substr(b,2,4) COLLATE nocase); INSERT INTO t8(a,b) VALUES(1,'Alice'),(2,'Bartholemew'),(3,'Cynthia'); SELECT * FROM t8 WHERE substr(b,2,4)='ARTH' COLLATE nocase ;CREATE TABLE t9(a,b,c,d); CREATE UNIQUE INDEX t9x1 ON t9(c,abs(d),b); INSERT INTO t9(rowid,a,b,c,d) VALUES(1,2,3,4,5); INSERT INTO t9(rowid,a,b,c,d) VALUES(2,NULL,NULL,NULL,NULL); INSERT INTO t9(rowid,a,b,c,d) VALUES(3,NULL,NULL,NULL,NULL); INSERT INTO t9(rowid,a,b,c,d) VALUES(4,5,6,7,8); PRAGMA integrity_check ;DROP TABLE IF EXISTS t0; CREATE TABLE t0(a,b,t); CREATE INDEX i ON t0(a in(0,1)); INSERT INTO t0 VALUES(0,1,2),(2,3,4),(5,6,7); UPDATE t0 SET b=99 WHERE (a in(0,1))=0; SELECT *, '|' FROM t0 ORDER BY +a ;UPDATE t0 SET b=88 WHERE (a in(0,1))=1; SELECT *, '|' FROM t0 ORDER BY +a;
<gh_stars>10-100 CREATE INDEX foo_b_idx ON foo (b, c, d) PARTITION BY LIST (b) ( PARTITION baz VALUES IN ('baz'), PARTITION default VALUES IN (DEFAULT) )
IF OBJECT_ID('tempdb..#Devices') IS NOT NULL DROP TABLE #Devices; IF OBJECT_ID('tempdb..#UpdatedPrinterList') IS NOT NULL DROP TABLE #UpdatedPrinterList; CREATE TABLE #Devices ( DeviceID INT NOT NULL IDENTITY PRIMARY KEY ,DeviceType NVARCHAR(10) ,DeviceName NVARCHAR(100) ); INSERT #Devices (DeviceType, DeviceName) SELECT x.DeviceType, x.PrinterName FROM (VALUES ('PRINTER', 'Lexmark') ,('PRINTER', 'Epson') ,('SCANNER', 'Dell') ,('PRINTER', 'Brother') ,('MOUSE', 'Logitech') ,('PRINTER','Xerox') ) x (DeviceType, PrinterName); SELECT * FROM #Devices; CREATE TABLE #UpdatedPrinterList (PrinterID INT, PrinterName NVARCHAR(100)); INSERT #UpdatedPrinterList (PrinterID, PrinterName) VALUES (1, 'Lexmark'), (2, 'EPSON INC'), (6, 'Xerox'), (7, 'HP'); SELECT * FROM #UpdatedPrinterList; SET IDENTITY_INSERT #Devices ON; -- Option 1: "where" clause on the NOT MATCHED line MERGE #Devices tgt USING #UpdatedPrinterList src ON tgt.DeviceID = src.PrinterID WHEN MATCHED THEN UPDATE SET DeviceName = src.PrinterName WHEN NOT MATCHED BY SOURCE AND DeviceType = 'PRINTER' THEN DELETE WHEN NOT MATCHED BY TARGET THEN INSERT (DeviceID, DeviceType, DeviceName) VALUES (src.PrinterID, 'PRINTER', src.PrinterName); -- Option 2: update a pre-filtered CTE ;WITH tgt AS ( SELECT * FROM #Devices WHERE DeviceType = 'PRINTER' ) MERGE tgt USING #UpdatedPrinterList src ON tgt.DeviceID = src.PrinterID WHEN MATCHED THEN UPDATE SET DeviceName = src.PrinterName WHEN NOT MATCHED BY SOURCE THEN DELETE WHEN NOT MATCHED BY TARGET THEN INSERT (DeviceID, DeviceType, DeviceName) VALUES (src.PrinterID, 'PRINTER', src.PrinterName); SELECT * FROM #Devices; SET IDENTITY_INSERT #Devices OFF;
<reponame>danadel/sakai -- LSNBLDR-227 alter table lesson_builder_groups add siteId varchar2(250 char); -- alter table lesson_builder_items modify description clob; alter table lesson_builder_items add temp clob; update lesson_builder_items set temp=description; alter table lesson_builder_items drop column description; alter table lesson_builder_items rename column temp to description; -- alter table lesson_builder_items modify groups clob; alter table lesson_builder_items add temp clob; update lesson_builder_items set temp=groups; alter table lesson_builder_items drop column groups; alter table lesson_builder_items rename column temp to groups; create table lesson_builder_properties ( id number(19,0) not null, attribute varchar2(255 char) not null unique, value clob, primary key (id) ); create index lb_item_gb on lesson_builder_items(gradebookid); create index lb_item_altgb on lesson_builder_items(altGradebook); create index lb_prop_idx on lesson_builder_properties(attribute); create index lb_group_site on lesson_builder_groups(siteId); -- end LSNBLDR-227 -- BLTI-238 ALTER TABLE lti_mapping MODIFY ( matchpattern VARCHAR2(255) ); ALTER TABLE lti_mapping MODIFY ( launch VARCHAR2(255) ); ALTER TABLE lti_content MODIFY ( title VARCHAR2(255) ); ALTER TABLE lti_tools MODIFY ( title VARCHAR2(255) ); ALTER TABLE lti_tools MODIFY ( launch VARCHAR2(1024) ); ALTER TABLE lti_tools MODIFY ( consumerkey VARCHAR2(255) ); ALTER TABLE lti_tools MODIFY ( secret VARCHAR2(255) ); -- end BLTI-238 -- SAM-973 alter table SAM_ITEMGRADING_T add ISCORRECT number(1,0); -- end SAM-973
CREATE PROCEDURE [sec].[SecureItems_Delete] @ItemKey NVARCHAR(100) AS Begin DELETE FROM [sec].[SecureItems] WHERE ItemKey = @ItemKey; End
<reponame>kids-cademy/atlas.studio -- Drop not longer used columns, and related indices, from taxon meta table. ALTER TABLE `atlas`.`taxonmeta` DROP `name`, DROP COLUMN `display`, DROP INDEX `UQ_TAXONOMYMETA_NAME`, DROP INDEX `UQ_TAXONMETA_DISPLAY`;
<gh_stars>1-10 ------------------------------------------------------------------------------- -- meeting room ------------------------------------------------------------------------------- CREATE TABLE MEETING_ROOM( ID BIGINT auto_increment, NAME VARCHAR(200), PEOPLE INTEGER, CONSTRAINT PK_MEETING_ROOM PRIMARY KEY(ID) ) engine=innodb;
<filename>sql_scripts/epitope_tables/create_table_n_indexes/create_sars_cov_2.sql<gh_stars>1-10 -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT ORF1ab polyprotein -- 2697049 can be replaced with the virus taxon id, while orf1ab_polyprotein can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_orf1ab_polyprotein ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_orf1ab_polyprotein OWNER TO geco; CREATE INDEX epi_2697049_orf1ab_polyprotein__cell_type ON public.epitope_2697049_orf1ab_polyprotein USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__epi_an_start ON public.epitope_2697049_orf1ab_polyprotein USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__epi_an_nstop ON public.epitope_2697049_orf1ab_polyprotein USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__epi_frag_an_start ON public.epitope_2697049_orf1ab_polyprotein USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__epi_frag_an_stop ON public.epitope_2697049_orf1ab_polyprotein USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__host_tax_id ON public.epitope_2697049_orf1ab_polyprotein USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__host_tax_name ON public.epitope_2697049_orf1ab_polyprotein USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__iedb_id ON public.epitope_2697049_orf1ab_polyprotein USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__is_linear ON public.epitope_2697049_orf1ab_polyprotein USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__mhc_allele ON public.epitope_2697049_orf1ab_polyprotein USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__mhc_class_lower ON public.epitope_2697049_orf1ab_polyprotein USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__product_lower ON public.epitope_2697049_orf1ab_polyprotein USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__response_freq_pos ON public.epitope_2697049_orf1ab_polyprotein USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__seq_aa_alt ON public.epitope_2697049_orf1ab_polyprotein USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__seq_aa_orig ON public.epitope_2697049_orf1ab_polyprotein USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__start_aa_orig ON public.epitope_2697049_orf1ab_polyprotein USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__taxon_id ON public.epitope_2697049_orf1ab_polyprotein USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__taxon_name_lower ON public.epitope_2697049_orf1ab_polyprotein USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__variant_aa_length ON public.epitope_2697049_orf1ab_polyprotein USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__variant_aa_type ON public.epitope_2697049_orf1ab_polyprotein USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__vir_n_host_tax_id ON public.epitope_2697049_orf1ab_polyprotein USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__vir_host_cell_type ON public.epitope_2697049_orf1ab_polyprotein USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__vir_host_epi_start ON public.epitope_2697049_orf1ab_polyprotein USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__virus_host_epi_stop ON public.epitope_2697049_orf1ab_polyprotein USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__virus_host_is_linear ON public.epitope_2697049_orf1ab_polyprotein USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__vir_host_mhc_allele ON public.epitope_2697049_orf1ab_polyprotein USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__vir_host_product ON public.epitope_2697049_orf1ab_polyprotein USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1ab_polyprotein__vir_host_resp_freq ON public.epitope_2697049_orf1ab_polyprotein USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NSP12 (RNA-dependent RNA polymerase) -- 2697049 can be replaced with the virus taxon id, while nsp12_rna_dependent_rna_poly can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_nsp12_rna_dependent_rna_poly ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_nsp12_rna_dependent_rna_poly OWNER TO geco; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__cell_type ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__epi_an_start ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__epi_an_nstop ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__epi_frag_an_start ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__epi_frag_an_stop ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__host_tax_id ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__host_tax_name ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__iedb_id ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__is_linear ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__mhc_allele ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__mhc_class_lower ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__product_lower ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__response_freq_pos ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__seq_aa_alt ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__seq_aa_orig ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__start_aa_orig ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__taxon_id ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__taxon_name_lower ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__variant_aa_length ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__variant_aa_type ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__vir_n_host_tax_id ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__vir_host_cell_type ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__vir_host_epi_start ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__virus_host_epi_stop ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__virus_host_is_linear ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__vir_host_mhc_allele ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__vir_host_product ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp12_rna_dependent_rna_poly__vir_host_resp_freq ON public.epitope_2697049_nsp12_rna_dependent_rna_poly USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NSP13 (helicase) -- 2697049 can be replaced with the virus taxon id, while nsp13_helicase can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_nsp13_helicase ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_nsp13_helicase OWNER TO geco; CREATE INDEX epi_2697049_nsp13_helicase__cell_type ON public.epitope_2697049_nsp13_helicase USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__epi_an_start ON public.epitope_2697049_nsp13_helicase USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__epi_an_nstop ON public.epitope_2697049_nsp13_helicase USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__epi_frag_an_start ON public.epitope_2697049_nsp13_helicase USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__epi_frag_an_stop ON public.epitope_2697049_nsp13_helicase USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__host_tax_id ON public.epitope_2697049_nsp13_helicase USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__host_tax_name ON public.epitope_2697049_nsp13_helicase USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__iedb_id ON public.epitope_2697049_nsp13_helicase USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__is_linear ON public.epitope_2697049_nsp13_helicase USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__mhc_allele ON public.epitope_2697049_nsp13_helicase USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__mhc_class_lower ON public.epitope_2697049_nsp13_helicase USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__product_lower ON public.epitope_2697049_nsp13_helicase USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__response_freq_pos ON public.epitope_2697049_nsp13_helicase USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__seq_aa_alt ON public.epitope_2697049_nsp13_helicase USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__seq_aa_orig ON public.epitope_2697049_nsp13_helicase USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__start_aa_orig ON public.epitope_2697049_nsp13_helicase USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__taxon_id ON public.epitope_2697049_nsp13_helicase USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__taxon_name_lower ON public.epitope_2697049_nsp13_helicase USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__variant_aa_length ON public.epitope_2697049_nsp13_helicase USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__variant_aa_type ON public.epitope_2697049_nsp13_helicase USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__vir_n_host_tax_id ON public.epitope_2697049_nsp13_helicase USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__vir_host_cell_type ON public.epitope_2697049_nsp13_helicase USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__vir_host_epi_start ON public.epitope_2697049_nsp13_helicase USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__virus_host_epi_stop ON public.epitope_2697049_nsp13_helicase USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__virus_host_is_linear ON public.epitope_2697049_nsp13_helicase USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__vir_host_mhc_allele ON public.epitope_2697049_nsp13_helicase USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__vir_host_product ON public.epitope_2697049_nsp13_helicase USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp13_helicase__vir_host_resp_freq ON public.epitope_2697049_nsp13_helicase USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NSP14 (3'-to-5' exonuclease) -- 2697049 can be replaced with the virus taxon id, while nsp14_3_to_5_exonuclease can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_nsp14_3_to_5_exonuclease ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_nsp14_3_to_5_exonuclease OWNER TO geco; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__cell_type ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__epi_an_start ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__epi_an_nstop ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__epi_frag_an_start ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__epi_frag_an_stop ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__host_tax_id ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__host_tax_name ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__iedb_id ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__is_linear ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__mhc_allele ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__mhc_class_lower ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__product_lower ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__response_freq_pos ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__seq_aa_alt ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__seq_aa_orig ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__start_aa_orig ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__taxon_id ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__taxon_name_lower ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__variant_aa_length ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__variant_aa_type ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__vir_n_host_tax_id ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__vir_host_cell_type ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__vir_host_epi_start ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__virus_host_epi_stop ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__virus_host_is_linear ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__vir_host_mhc_allele ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__vir_host_product ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp14_3_to_5_exonuclease__vir_host_resp_freq ON public.epitope_2697049_nsp14_3_to_5_exonuclease USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NSP15 (endoRNAse) -- 2697049 can be replaced with the virus taxon id, while nsp15_endornase can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_nsp15_endornase ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_nsp15_endornase OWNER TO geco; CREATE INDEX epi_2697049_nsp15_endornase__cell_type ON public.epitope_2697049_nsp15_endornase USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__epi_an_start ON public.epitope_2697049_nsp15_endornase USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__epi_an_nstop ON public.epitope_2697049_nsp15_endornase USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__epi_frag_an_start ON public.epitope_2697049_nsp15_endornase USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__epi_frag_an_stop ON public.epitope_2697049_nsp15_endornase USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__host_tax_id ON public.epitope_2697049_nsp15_endornase USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__host_tax_name ON public.epitope_2697049_nsp15_endornase USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__iedb_id ON public.epitope_2697049_nsp15_endornase USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__is_linear ON public.epitope_2697049_nsp15_endornase USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__mhc_allele ON public.epitope_2697049_nsp15_endornase USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__mhc_class_lower ON public.epitope_2697049_nsp15_endornase USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__product_lower ON public.epitope_2697049_nsp15_endornase USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__response_freq_pos ON public.epitope_2697049_nsp15_endornase USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__seq_aa_alt ON public.epitope_2697049_nsp15_endornase USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__seq_aa_orig ON public.epitope_2697049_nsp15_endornase USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__start_aa_orig ON public.epitope_2697049_nsp15_endornase USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__taxon_id ON public.epitope_2697049_nsp15_endornase USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__taxon_name_lower ON public.epitope_2697049_nsp15_endornase USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__variant_aa_length ON public.epitope_2697049_nsp15_endornase USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__variant_aa_type ON public.epitope_2697049_nsp15_endornase USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__vir_n_host_tax_id ON public.epitope_2697049_nsp15_endornase USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__vir_host_cell_type ON public.epitope_2697049_nsp15_endornase USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__vir_host_epi_start ON public.epitope_2697049_nsp15_endornase USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__virus_host_epi_stop ON public.epitope_2697049_nsp15_endornase USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__virus_host_is_linear ON public.epitope_2697049_nsp15_endornase USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__vir_host_mhc_allele ON public.epitope_2697049_nsp15_endornase USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__vir_host_product ON public.epitope_2697049_nsp15_endornase USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp15_endornase__vir_host_resp_freq ON public.epitope_2697049_nsp15_endornase USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NSP16 (2'-O-ribose methyltransferase) -- 2697049 can be replaced with the virus taxon id, while nsp16_2_o_ribose_methyltrans can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_nsp16_2_o_ribose_methyltrans ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_nsp16_2_o_ribose_methyltrans OWNER TO geco; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__cell_type ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__epi_an_start ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__epi_an_nstop ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__epi_frag_an_start ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__epi_frag_an_stop ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__host_tax_id ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__host_tax_name ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__iedb_id ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__is_linear ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__mhc_allele ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__mhc_class_lower ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__product_lower ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__response_freq_pos ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__seq_aa_alt ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__seq_aa_orig ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__start_aa_orig ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__taxon_id ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__taxon_name_lower ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__variant_aa_length ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__variant_aa_type ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__vir_n_host_tax_id ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__vir_host_cell_type ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__vir_host_epi_start ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__virus_host_epi_stop ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__virus_host_is_linear ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__vir_host_mhc_allele ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__vir_host_product ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp16_2_o_ribose_methyltrans__vir_host_resp_freq ON public.epitope_2697049_nsp16_2_o_ribose_methyltrans USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT ORF1a polyprotein -- 2697049 can be replaced with the virus taxon id, while orf1a_polyprotein can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_orf1a_polyprotein ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_orf1a_polyprotein OWNER TO geco; CREATE INDEX epi_2697049_orf1a_polyprotein__cell_type ON public.epitope_2697049_orf1a_polyprotein USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__epi_an_start ON public.epitope_2697049_orf1a_polyprotein USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__epi_an_nstop ON public.epitope_2697049_orf1a_polyprotein USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__epi_frag_an_start ON public.epitope_2697049_orf1a_polyprotein USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__epi_frag_an_stop ON public.epitope_2697049_orf1a_polyprotein USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__host_tax_id ON public.epitope_2697049_orf1a_polyprotein USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__host_tax_name ON public.epitope_2697049_orf1a_polyprotein USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__iedb_id ON public.epitope_2697049_orf1a_polyprotein USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__is_linear ON public.epitope_2697049_orf1a_polyprotein USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__mhc_allele ON public.epitope_2697049_orf1a_polyprotein USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__mhc_class_lower ON public.epitope_2697049_orf1a_polyprotein USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__product_lower ON public.epitope_2697049_orf1a_polyprotein USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__response_freq_pos ON public.epitope_2697049_orf1a_polyprotein USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__seq_aa_alt ON public.epitope_2697049_orf1a_polyprotein USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__seq_aa_orig ON public.epitope_2697049_orf1a_polyprotein USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__start_aa_orig ON public.epitope_2697049_orf1a_polyprotein USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__taxon_id ON public.epitope_2697049_orf1a_polyprotein USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__taxon_name_lower ON public.epitope_2697049_orf1a_polyprotein USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__variant_aa_length ON public.epitope_2697049_orf1a_polyprotein USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__variant_aa_type ON public.epitope_2697049_orf1a_polyprotein USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__vir_n_host_tax_id ON public.epitope_2697049_orf1a_polyprotein USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__vir_host_cell_type ON public.epitope_2697049_orf1a_polyprotein USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__vir_host_epi_start ON public.epitope_2697049_orf1a_polyprotein USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__virus_host_epi_stop ON public.epitope_2697049_orf1a_polyprotein USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__virus_host_is_linear ON public.epitope_2697049_orf1a_polyprotein USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__vir_host_mhc_allele ON public.epitope_2697049_orf1a_polyprotein USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__vir_host_product ON public.epitope_2697049_orf1a_polyprotein USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf1a_polyprotein__vir_host_resp_freq ON public.epitope_2697049_orf1a_polyprotein USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NSP1 (leader protein) -- 2697049 can be replaced with the virus taxon id, while nsp1_leader_protein can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_nsp1_leader_protein ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_nsp1_leader_protein OWNER TO geco; CREATE INDEX epi_2697049_nsp1_leader_protein__cell_type ON public.epitope_2697049_nsp1_leader_protein USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__epi_an_start ON public.epitope_2697049_nsp1_leader_protein USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__epi_an_nstop ON public.epitope_2697049_nsp1_leader_protein USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__epi_frag_an_start ON public.epitope_2697049_nsp1_leader_protein USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__epi_frag_an_stop ON public.epitope_2697049_nsp1_leader_protein USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__host_tax_id ON public.epitope_2697049_nsp1_leader_protein USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__host_tax_name ON public.epitope_2697049_nsp1_leader_protein USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__iedb_id ON public.epitope_2697049_nsp1_leader_protein USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__is_linear ON public.epitope_2697049_nsp1_leader_protein USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__mhc_allele ON public.epitope_2697049_nsp1_leader_protein USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__mhc_class_lower ON public.epitope_2697049_nsp1_leader_protein USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__product_lower ON public.epitope_2697049_nsp1_leader_protein USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__response_freq_pos ON public.epitope_2697049_nsp1_leader_protein USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__seq_aa_alt ON public.epitope_2697049_nsp1_leader_protein USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__seq_aa_orig ON public.epitope_2697049_nsp1_leader_protein USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__start_aa_orig ON public.epitope_2697049_nsp1_leader_protein USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__taxon_id ON public.epitope_2697049_nsp1_leader_protein USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__taxon_name_lower ON public.epitope_2697049_nsp1_leader_protein USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__variant_aa_length ON public.epitope_2697049_nsp1_leader_protein USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__variant_aa_type ON public.epitope_2697049_nsp1_leader_protein USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__vir_n_host_tax_id ON public.epitope_2697049_nsp1_leader_protein USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__vir_host_cell_type ON public.epitope_2697049_nsp1_leader_protein USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__vir_host_epi_start ON public.epitope_2697049_nsp1_leader_protein USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__virus_host_epi_stop ON public.epitope_2697049_nsp1_leader_protein USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__virus_host_is_linear ON public.epitope_2697049_nsp1_leader_protein USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__vir_host_mhc_allele ON public.epitope_2697049_nsp1_leader_protein USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__vir_host_product ON public.epitope_2697049_nsp1_leader_protein USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp1_leader_protein__vir_host_resp_freq ON public.epitope_2697049_nsp1_leader_protein USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NSP2 -- 2697049 can be replaced with the virus taxon id, while nsp2 can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_nsp2 ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_nsp2 OWNER TO geco; CREATE INDEX epi_2697049_nsp2__cell_type ON public.epitope_2697049_nsp2 USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__epi_an_start ON public.epitope_2697049_nsp2 USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__epi_an_nstop ON public.epitope_2697049_nsp2 USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__epi_frag_an_start ON public.epitope_2697049_nsp2 USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__epi_frag_an_stop ON public.epitope_2697049_nsp2 USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__host_tax_id ON public.epitope_2697049_nsp2 USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__host_tax_name ON public.epitope_2697049_nsp2 USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__iedb_id ON public.epitope_2697049_nsp2 USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__is_linear ON public.epitope_2697049_nsp2 USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__mhc_allele ON public.epitope_2697049_nsp2 USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__mhc_class_lower ON public.epitope_2697049_nsp2 USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__product_lower ON public.epitope_2697049_nsp2 USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__response_freq_pos ON public.epitope_2697049_nsp2 USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__seq_aa_alt ON public.epitope_2697049_nsp2 USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__seq_aa_orig ON public.epitope_2697049_nsp2 USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__start_aa_orig ON public.epitope_2697049_nsp2 USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__taxon_id ON public.epitope_2697049_nsp2 USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__taxon_name_lower ON public.epitope_2697049_nsp2 USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__variant_aa_length ON public.epitope_2697049_nsp2 USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__variant_aa_type ON public.epitope_2697049_nsp2 USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__vir_n_host_tax_id ON public.epitope_2697049_nsp2 USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__vir_host_cell_type ON public.epitope_2697049_nsp2 USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__vir_host_epi_start ON public.epitope_2697049_nsp2 USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__virus_host_epi_stop ON public.epitope_2697049_nsp2 USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__virus_host_is_linear ON public.epitope_2697049_nsp2 USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__vir_host_mhc_allele ON public.epitope_2697049_nsp2 USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__vir_host_product ON public.epitope_2697049_nsp2 USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp2__vir_host_resp_freq ON public.epitope_2697049_nsp2 USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NSP3 -- 2697049 can be replaced with the virus taxon id, while nsp3 can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_nsp3 ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_nsp3 OWNER TO geco; CREATE INDEX epi_2697049_nsp3__cell_type ON public.epitope_2697049_nsp3 USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__epi_an_start ON public.epitope_2697049_nsp3 USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__epi_an_nstop ON public.epitope_2697049_nsp3 USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__epi_frag_an_start ON public.epitope_2697049_nsp3 USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__epi_frag_an_stop ON public.epitope_2697049_nsp3 USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__host_tax_id ON public.epitope_2697049_nsp3 USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__host_tax_name ON public.epitope_2697049_nsp3 USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__iedb_id ON public.epitope_2697049_nsp3 USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__is_linear ON public.epitope_2697049_nsp3 USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__mhc_allele ON public.epitope_2697049_nsp3 USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__mhc_class_lower ON public.epitope_2697049_nsp3 USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__product_lower ON public.epitope_2697049_nsp3 USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__response_freq_pos ON public.epitope_2697049_nsp3 USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__seq_aa_alt ON public.epitope_2697049_nsp3 USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__seq_aa_orig ON public.epitope_2697049_nsp3 USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__start_aa_orig ON public.epitope_2697049_nsp3 USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__taxon_id ON public.epitope_2697049_nsp3 USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__taxon_name_lower ON public.epitope_2697049_nsp3 USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__variant_aa_length ON public.epitope_2697049_nsp3 USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__variant_aa_type ON public.epitope_2697049_nsp3 USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__vir_n_host_tax_id ON public.epitope_2697049_nsp3 USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__vir_host_cell_type ON public.epitope_2697049_nsp3 USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__vir_host_epi_start ON public.epitope_2697049_nsp3 USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__virus_host_epi_stop ON public.epitope_2697049_nsp3 USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__virus_host_is_linear ON public.epitope_2697049_nsp3 USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__vir_host_mhc_allele ON public.epitope_2697049_nsp3 USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__vir_host_product ON public.epitope_2697049_nsp3 USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp3__vir_host_resp_freq ON public.epitope_2697049_nsp3 USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NSP4 -- 2697049 can be replaced with the virus taxon id, while nsp4 can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_nsp4 ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_nsp4 OWNER TO geco; CREATE INDEX epi_2697049_nsp4__cell_type ON public.epitope_2697049_nsp4 USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__epi_an_start ON public.epitope_2697049_nsp4 USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__epi_an_nstop ON public.epitope_2697049_nsp4 USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__epi_frag_an_start ON public.epitope_2697049_nsp4 USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__epi_frag_an_stop ON public.epitope_2697049_nsp4 USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__host_tax_id ON public.epitope_2697049_nsp4 USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__host_tax_name ON public.epitope_2697049_nsp4 USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__iedb_id ON public.epitope_2697049_nsp4 USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__is_linear ON public.epitope_2697049_nsp4 USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__mhc_allele ON public.epitope_2697049_nsp4 USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__mhc_class_lower ON public.epitope_2697049_nsp4 USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__product_lower ON public.epitope_2697049_nsp4 USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__response_freq_pos ON public.epitope_2697049_nsp4 USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__seq_aa_alt ON public.epitope_2697049_nsp4 USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__seq_aa_orig ON public.epitope_2697049_nsp4 USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__start_aa_orig ON public.epitope_2697049_nsp4 USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__taxon_id ON public.epitope_2697049_nsp4 USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__taxon_name_lower ON public.epitope_2697049_nsp4 USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__variant_aa_length ON public.epitope_2697049_nsp4 USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__variant_aa_type ON public.epitope_2697049_nsp4 USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__vir_n_host_tax_id ON public.epitope_2697049_nsp4 USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__vir_host_cell_type ON public.epitope_2697049_nsp4 USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__vir_host_epi_start ON public.epitope_2697049_nsp4 USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__virus_host_epi_stop ON public.epitope_2697049_nsp4 USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__virus_host_is_linear ON public.epitope_2697049_nsp4 USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__vir_host_mhc_allele ON public.epitope_2697049_nsp4 USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__vir_host_product ON public.epitope_2697049_nsp4 USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp4__vir_host_resp_freq ON public.epitope_2697049_nsp4 USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NSP5 (3C-like proteinase) -- 2697049 can be replaced with the virus taxon id, while nsp5_3c_like_proteinase can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_nsp5_3c_like_proteinase ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_nsp5_3c_like_proteinase OWNER TO geco; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__cell_type ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__epi_an_start ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__epi_an_nstop ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__epi_frag_an_start ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__epi_frag_an_stop ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__host_tax_id ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__host_tax_name ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__iedb_id ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__is_linear ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__mhc_allele ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__mhc_class_lower ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__product_lower ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__response_freq_pos ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__seq_aa_alt ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__seq_aa_orig ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__start_aa_orig ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__taxon_id ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__taxon_name_lower ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__variant_aa_length ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__variant_aa_type ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__vir_n_host_tax_id ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__vir_host_cell_type ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__vir_host_epi_start ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__virus_host_epi_stop ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__virus_host_is_linear ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__vir_host_mhc_allele ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__vir_host_product ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp5_3c_like_proteinase__vir_host_resp_freq ON public.epitope_2697049_nsp5_3c_like_proteinase USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NSP6 -- 2697049 can be replaced with the virus taxon id, while nsp6 can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_nsp6 ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_nsp6 OWNER TO geco; CREATE INDEX epi_2697049_nsp6__cell_type ON public.epitope_2697049_nsp6 USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__epi_an_start ON public.epitope_2697049_nsp6 USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__epi_an_nstop ON public.epitope_2697049_nsp6 USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__epi_frag_an_start ON public.epitope_2697049_nsp6 USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__epi_frag_an_stop ON public.epitope_2697049_nsp6 USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__host_tax_id ON public.epitope_2697049_nsp6 USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__host_tax_name ON public.epitope_2697049_nsp6 USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__iedb_id ON public.epitope_2697049_nsp6 USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__is_linear ON public.epitope_2697049_nsp6 USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__mhc_allele ON public.epitope_2697049_nsp6 USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__mhc_class_lower ON public.epitope_2697049_nsp6 USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__product_lower ON public.epitope_2697049_nsp6 USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__response_freq_pos ON public.epitope_2697049_nsp6 USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__seq_aa_alt ON public.epitope_2697049_nsp6 USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__seq_aa_orig ON public.epitope_2697049_nsp6 USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__start_aa_orig ON public.epitope_2697049_nsp6 USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__taxon_id ON public.epitope_2697049_nsp6 USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__taxon_name_lower ON public.epitope_2697049_nsp6 USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__variant_aa_length ON public.epitope_2697049_nsp6 USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__variant_aa_type ON public.epitope_2697049_nsp6 USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__vir_n_host_tax_id ON public.epitope_2697049_nsp6 USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__vir_host_cell_type ON public.epitope_2697049_nsp6 USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__vir_host_epi_start ON public.epitope_2697049_nsp6 USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__virus_host_epi_stop ON public.epitope_2697049_nsp6 USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__virus_host_is_linear ON public.epitope_2697049_nsp6 USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__vir_host_mhc_allele ON public.epitope_2697049_nsp6 USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__vir_host_product ON public.epitope_2697049_nsp6 USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp6__vir_host_resp_freq ON public.epitope_2697049_nsp6 USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NSP7 -- 2697049 can be replaced with the virus taxon id, while nsp7 can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_nsp7 ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_nsp7 OWNER TO geco; CREATE INDEX epi_2697049_nsp7__cell_type ON public.epitope_2697049_nsp7 USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__epi_an_start ON public.epitope_2697049_nsp7 USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__epi_an_nstop ON public.epitope_2697049_nsp7 USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__epi_frag_an_start ON public.epitope_2697049_nsp7 USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__epi_frag_an_stop ON public.epitope_2697049_nsp7 USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__host_tax_id ON public.epitope_2697049_nsp7 USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__host_tax_name ON public.epitope_2697049_nsp7 USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__iedb_id ON public.epitope_2697049_nsp7 USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__is_linear ON public.epitope_2697049_nsp7 USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__mhc_allele ON public.epitope_2697049_nsp7 USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__mhc_class_lower ON public.epitope_2697049_nsp7 USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__product_lower ON public.epitope_2697049_nsp7 USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__response_freq_pos ON public.epitope_2697049_nsp7 USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__seq_aa_alt ON public.epitope_2697049_nsp7 USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__seq_aa_orig ON public.epitope_2697049_nsp7 USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__start_aa_orig ON public.epitope_2697049_nsp7 USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__taxon_id ON public.epitope_2697049_nsp7 USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__taxon_name_lower ON public.epitope_2697049_nsp7 USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__variant_aa_length ON public.epitope_2697049_nsp7 USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__variant_aa_type ON public.epitope_2697049_nsp7 USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__vir_n_host_tax_id ON public.epitope_2697049_nsp7 USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__vir_host_cell_type ON public.epitope_2697049_nsp7 USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__vir_host_epi_start ON public.epitope_2697049_nsp7 USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__virus_host_epi_stop ON public.epitope_2697049_nsp7 USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__virus_host_is_linear ON public.epitope_2697049_nsp7 USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__vir_host_mhc_allele ON public.epitope_2697049_nsp7 USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__vir_host_product ON public.epitope_2697049_nsp7 USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp7__vir_host_resp_freq ON public.epitope_2697049_nsp7 USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NSP8 -- 2697049 can be replaced with the virus taxon id, while nsp8 can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_nsp8 ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_nsp8 OWNER TO geco; CREATE INDEX epi_2697049_nsp8__cell_type ON public.epitope_2697049_nsp8 USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__epi_an_start ON public.epitope_2697049_nsp8 USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__epi_an_nstop ON public.epitope_2697049_nsp8 USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__epi_frag_an_start ON public.epitope_2697049_nsp8 USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__epi_frag_an_stop ON public.epitope_2697049_nsp8 USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__host_tax_id ON public.epitope_2697049_nsp8 USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__host_tax_name ON public.epitope_2697049_nsp8 USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__iedb_id ON public.epitope_2697049_nsp8 USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__is_linear ON public.epitope_2697049_nsp8 USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__mhc_allele ON public.epitope_2697049_nsp8 USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__mhc_class_lower ON public.epitope_2697049_nsp8 USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__product_lower ON public.epitope_2697049_nsp8 USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__response_freq_pos ON public.epitope_2697049_nsp8 USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__seq_aa_alt ON public.epitope_2697049_nsp8 USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__seq_aa_orig ON public.epitope_2697049_nsp8 USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__start_aa_orig ON public.epitope_2697049_nsp8 USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__taxon_id ON public.epitope_2697049_nsp8 USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__taxon_name_lower ON public.epitope_2697049_nsp8 USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__variant_aa_length ON public.epitope_2697049_nsp8 USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__variant_aa_type ON public.epitope_2697049_nsp8 USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__vir_n_host_tax_id ON public.epitope_2697049_nsp8 USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__vir_host_cell_type ON public.epitope_2697049_nsp8 USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__vir_host_epi_start ON public.epitope_2697049_nsp8 USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__virus_host_epi_stop ON public.epitope_2697049_nsp8 USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__virus_host_is_linear ON public.epitope_2697049_nsp8 USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__vir_host_mhc_allele ON public.epitope_2697049_nsp8 USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__vir_host_product ON public.epitope_2697049_nsp8 USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp8__vir_host_resp_freq ON public.epitope_2697049_nsp8 USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NSP9 -- 2697049 can be replaced with the virus taxon id, while nsp9 can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_nsp9 ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_nsp9 OWNER TO geco; CREATE INDEX epi_2697049_nsp9__cell_type ON public.epitope_2697049_nsp9 USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__epi_an_start ON public.epitope_2697049_nsp9 USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__epi_an_nstop ON public.epitope_2697049_nsp9 USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__epi_frag_an_start ON public.epitope_2697049_nsp9 USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__epi_frag_an_stop ON public.epitope_2697049_nsp9 USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__host_tax_id ON public.epitope_2697049_nsp9 USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__host_tax_name ON public.epitope_2697049_nsp9 USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__iedb_id ON public.epitope_2697049_nsp9 USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__is_linear ON public.epitope_2697049_nsp9 USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__mhc_allele ON public.epitope_2697049_nsp9 USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__mhc_class_lower ON public.epitope_2697049_nsp9 USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__product_lower ON public.epitope_2697049_nsp9 USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__response_freq_pos ON public.epitope_2697049_nsp9 USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__seq_aa_alt ON public.epitope_2697049_nsp9 USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__seq_aa_orig ON public.epitope_2697049_nsp9 USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__start_aa_orig ON public.epitope_2697049_nsp9 USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__taxon_id ON public.epitope_2697049_nsp9 USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__taxon_name_lower ON public.epitope_2697049_nsp9 USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__variant_aa_length ON public.epitope_2697049_nsp9 USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__variant_aa_type ON public.epitope_2697049_nsp9 USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__vir_n_host_tax_id ON public.epitope_2697049_nsp9 USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__vir_host_cell_type ON public.epitope_2697049_nsp9 USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__vir_host_epi_start ON public.epitope_2697049_nsp9 USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__virus_host_epi_stop ON public.epitope_2697049_nsp9 USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__virus_host_is_linear ON public.epitope_2697049_nsp9 USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__vir_host_mhc_allele ON public.epitope_2697049_nsp9 USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__vir_host_product ON public.epitope_2697049_nsp9 USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp9__vir_host_resp_freq ON public.epitope_2697049_nsp9 USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NSP10 -- 2697049 can be replaced with the virus taxon id, while nsp10 can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_nsp10 ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_nsp10 OWNER TO geco; CREATE INDEX epi_2697049_nsp10__cell_type ON public.epitope_2697049_nsp10 USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__epi_an_start ON public.epitope_2697049_nsp10 USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__epi_an_nstop ON public.epitope_2697049_nsp10 USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__epi_frag_an_start ON public.epitope_2697049_nsp10 USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__epi_frag_an_stop ON public.epitope_2697049_nsp10 USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__host_tax_id ON public.epitope_2697049_nsp10 USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__host_tax_name ON public.epitope_2697049_nsp10 USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__iedb_id ON public.epitope_2697049_nsp10 USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__is_linear ON public.epitope_2697049_nsp10 USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__mhc_allele ON public.epitope_2697049_nsp10 USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__mhc_class_lower ON public.epitope_2697049_nsp10 USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__product_lower ON public.epitope_2697049_nsp10 USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__response_freq_pos ON public.epitope_2697049_nsp10 USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__seq_aa_alt ON public.epitope_2697049_nsp10 USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__seq_aa_orig ON public.epitope_2697049_nsp10 USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__start_aa_orig ON public.epitope_2697049_nsp10 USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__taxon_id ON public.epitope_2697049_nsp10 USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__taxon_name_lower ON public.epitope_2697049_nsp10 USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__variant_aa_length ON public.epitope_2697049_nsp10 USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__variant_aa_type ON public.epitope_2697049_nsp10 USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__vir_n_host_tax_id ON public.epitope_2697049_nsp10 USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__vir_host_cell_type ON public.epitope_2697049_nsp10 USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__vir_host_epi_start ON public.epitope_2697049_nsp10 USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__virus_host_epi_stop ON public.epitope_2697049_nsp10 USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__virus_host_is_linear ON public.epitope_2697049_nsp10 USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__vir_host_mhc_allele ON public.epitope_2697049_nsp10 USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__vir_host_product ON public.epitope_2697049_nsp10 USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp10__vir_host_resp_freq ON public.epitope_2697049_nsp10 USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NSP11 -- 2697049 can be replaced with the virus taxon id, while nsp11 can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_nsp11 ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_nsp11 OWNER TO geco; CREATE INDEX epi_2697049_nsp11__cell_type ON public.epitope_2697049_nsp11 USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__epi_an_start ON public.epitope_2697049_nsp11 USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__epi_an_nstop ON public.epitope_2697049_nsp11 USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__epi_frag_an_start ON public.epitope_2697049_nsp11 USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__epi_frag_an_stop ON public.epitope_2697049_nsp11 USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__host_tax_id ON public.epitope_2697049_nsp11 USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__host_tax_name ON public.epitope_2697049_nsp11 USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__iedb_id ON public.epitope_2697049_nsp11 USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__is_linear ON public.epitope_2697049_nsp11 USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__mhc_allele ON public.epitope_2697049_nsp11 USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__mhc_class_lower ON public.epitope_2697049_nsp11 USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__product_lower ON public.epitope_2697049_nsp11 USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__response_freq_pos ON public.epitope_2697049_nsp11 USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__seq_aa_alt ON public.epitope_2697049_nsp11 USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__seq_aa_orig ON public.epitope_2697049_nsp11 USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__start_aa_orig ON public.epitope_2697049_nsp11 USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__taxon_id ON public.epitope_2697049_nsp11 USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__taxon_name_lower ON public.epitope_2697049_nsp11 USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__variant_aa_length ON public.epitope_2697049_nsp11 USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__variant_aa_type ON public.epitope_2697049_nsp11 USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__vir_n_host_tax_id ON public.epitope_2697049_nsp11 USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__vir_host_cell_type ON public.epitope_2697049_nsp11 USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__vir_host_epi_start ON public.epitope_2697049_nsp11 USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__virus_host_epi_stop ON public.epitope_2697049_nsp11 USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__virus_host_is_linear ON public.epitope_2697049_nsp11 USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__vir_host_mhc_allele ON public.epitope_2697049_nsp11 USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__vir_host_product ON public.epitope_2697049_nsp11 USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_nsp11__vir_host_resp_freq ON public.epitope_2697049_nsp11 USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT Spike (surface glycoprotein) -- 2697049 can be replaced with the virus taxon id, while spike_surface_glycoprotein can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_spike_surface_glycoprotein ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_spike_surface_glycoprotein OWNER TO geco; CREATE INDEX epi_2697049_spike_surface_glycoprotein__cell_type ON public.epitope_2697049_spike_surface_glycoprotein USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__epi_an_start ON public.epitope_2697049_spike_surface_glycoprotein USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__epi_an_nstop ON public.epitope_2697049_spike_surface_glycoprotein USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__epi_frag_an_start ON public.epitope_2697049_spike_surface_glycoprotein USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__epi_frag_an_stop ON public.epitope_2697049_spike_surface_glycoprotein USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__host_tax_id ON public.epitope_2697049_spike_surface_glycoprotein USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__host_tax_name ON public.epitope_2697049_spike_surface_glycoprotein USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__iedb_id ON public.epitope_2697049_spike_surface_glycoprotein USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__is_linear ON public.epitope_2697049_spike_surface_glycoprotein USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__mhc_allele ON public.epitope_2697049_spike_surface_glycoprotein USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__mhc_class_lower ON public.epitope_2697049_spike_surface_glycoprotein USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__product_lower ON public.epitope_2697049_spike_surface_glycoprotein USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__response_freq_pos ON public.epitope_2697049_spike_surface_glycoprotein USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__seq_aa_alt ON public.epitope_2697049_spike_surface_glycoprotein USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__seq_aa_orig ON public.epitope_2697049_spike_surface_glycoprotein USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__start_aa_orig ON public.epitope_2697049_spike_surface_glycoprotein USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__taxon_id ON public.epitope_2697049_spike_surface_glycoprotein USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__taxon_name_lower ON public.epitope_2697049_spike_surface_glycoprotein USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__variant_aa_length ON public.epitope_2697049_spike_surface_glycoprotein USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__variant_aa_type ON public.epitope_2697049_spike_surface_glycoprotein USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__vir_n_host_tax_id ON public.epitope_2697049_spike_surface_glycoprotein USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__vir_host_cell_type ON public.epitope_2697049_spike_surface_glycoprotein USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__vir_host_epi_start ON public.epitope_2697049_spike_surface_glycoprotein USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__virus_host_epi_stop ON public.epitope_2697049_spike_surface_glycoprotein USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__virus_host_is_linear ON public.epitope_2697049_spike_surface_glycoprotein USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__vir_host_mhc_allele ON public.epitope_2697049_spike_surface_glycoprotein USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__vir_host_product ON public.epitope_2697049_spike_surface_glycoprotein USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_spike_surface_glycoprotein__vir_host_resp_freq ON public.epitope_2697049_spike_surface_glycoprotein USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NS3 (ORF3a protein) -- 2697049 can be replaced with the virus taxon id, while ns3_orf3a_protein can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_ns3_orf3a_protein ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_ns3_orf3a_protein OWNER TO geco; CREATE INDEX epi_2697049_ns3_orf3a_protein__cell_type ON public.epitope_2697049_ns3_orf3a_protein USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__epi_an_start ON public.epitope_2697049_ns3_orf3a_protein USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__epi_an_nstop ON public.epitope_2697049_ns3_orf3a_protein USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__epi_frag_an_start ON public.epitope_2697049_ns3_orf3a_protein USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__epi_frag_an_stop ON public.epitope_2697049_ns3_orf3a_protein USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__host_tax_id ON public.epitope_2697049_ns3_orf3a_protein USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__host_tax_name ON public.epitope_2697049_ns3_orf3a_protein USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__iedb_id ON public.epitope_2697049_ns3_orf3a_protein USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__is_linear ON public.epitope_2697049_ns3_orf3a_protein USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__mhc_allele ON public.epitope_2697049_ns3_orf3a_protein USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__mhc_class_lower ON public.epitope_2697049_ns3_orf3a_protein USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__product_lower ON public.epitope_2697049_ns3_orf3a_protein USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__response_freq_pos ON public.epitope_2697049_ns3_orf3a_protein USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__seq_aa_alt ON public.epitope_2697049_ns3_orf3a_protein USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__seq_aa_orig ON public.epitope_2697049_ns3_orf3a_protein USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__start_aa_orig ON public.epitope_2697049_ns3_orf3a_protein USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__taxon_id ON public.epitope_2697049_ns3_orf3a_protein USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__taxon_name_lower ON public.epitope_2697049_ns3_orf3a_protein USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__variant_aa_length ON public.epitope_2697049_ns3_orf3a_protein USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__variant_aa_type ON public.epitope_2697049_ns3_orf3a_protein USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__vir_n_host_tax_id ON public.epitope_2697049_ns3_orf3a_protein USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__vir_host_cell_type ON public.epitope_2697049_ns3_orf3a_protein USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__vir_host_epi_start ON public.epitope_2697049_ns3_orf3a_protein USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__virus_host_epi_stop ON public.epitope_2697049_ns3_orf3a_protein USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__virus_host_is_linear ON public.epitope_2697049_ns3_orf3a_protein USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__vir_host_mhc_allele ON public.epitope_2697049_ns3_orf3a_protein USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__vir_host_product ON public.epitope_2697049_ns3_orf3a_protein USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns3_orf3a_protein__vir_host_resp_freq ON public.epitope_2697049_ns3_orf3a_protein USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT E (envelope protein) -- 2697049 can be replaced with the virus taxon id, while e_envelope_protein can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_e_envelope_protein ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_e_envelope_protein OWNER TO geco; CREATE INDEX epi_2697049_e_envelope_protein__cell_type ON public.epitope_2697049_e_envelope_protein USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__epi_an_start ON public.epitope_2697049_e_envelope_protein USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__epi_an_nstop ON public.epitope_2697049_e_envelope_protein USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__epi_frag_an_start ON public.epitope_2697049_e_envelope_protein USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__epi_frag_an_stop ON public.epitope_2697049_e_envelope_protein USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__host_tax_id ON public.epitope_2697049_e_envelope_protein USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__host_tax_name ON public.epitope_2697049_e_envelope_protein USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__iedb_id ON public.epitope_2697049_e_envelope_protein USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__is_linear ON public.epitope_2697049_e_envelope_protein USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__mhc_allele ON public.epitope_2697049_e_envelope_protein USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__mhc_class_lower ON public.epitope_2697049_e_envelope_protein USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__product_lower ON public.epitope_2697049_e_envelope_protein USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__response_freq_pos ON public.epitope_2697049_e_envelope_protein USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__seq_aa_alt ON public.epitope_2697049_e_envelope_protein USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__seq_aa_orig ON public.epitope_2697049_e_envelope_protein USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__start_aa_orig ON public.epitope_2697049_e_envelope_protein USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__taxon_id ON public.epitope_2697049_e_envelope_protein USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__taxon_name_lower ON public.epitope_2697049_e_envelope_protein USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__variant_aa_length ON public.epitope_2697049_e_envelope_protein USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__variant_aa_type ON public.epitope_2697049_e_envelope_protein USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__vir_n_host_tax_id ON public.epitope_2697049_e_envelope_protein USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__vir_host_cell_type ON public.epitope_2697049_e_envelope_protein USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__vir_host_epi_start ON public.epitope_2697049_e_envelope_protein USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__virus_host_epi_stop ON public.epitope_2697049_e_envelope_protein USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__virus_host_is_linear ON public.epitope_2697049_e_envelope_protein USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__vir_host_mhc_allele ON public.epitope_2697049_e_envelope_protein USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__vir_host_product ON public.epitope_2697049_e_envelope_protein USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_e_envelope_protein__vir_host_resp_freq ON public.epitope_2697049_e_envelope_protein USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT M (membrane glycoprotein) -- 2697049 can be replaced with the virus taxon id, while m_membrane_glycoprotein can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_m_membrane_glycoprotein ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_m_membrane_glycoprotein OWNER TO geco; CREATE INDEX epi_2697049_m_membrane_glycoprotein__cell_type ON public.epitope_2697049_m_membrane_glycoprotein USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__epi_an_start ON public.epitope_2697049_m_membrane_glycoprotein USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__epi_an_nstop ON public.epitope_2697049_m_membrane_glycoprotein USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__epi_frag_an_start ON public.epitope_2697049_m_membrane_glycoprotein USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__epi_frag_an_stop ON public.epitope_2697049_m_membrane_glycoprotein USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__host_tax_id ON public.epitope_2697049_m_membrane_glycoprotein USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__host_tax_name ON public.epitope_2697049_m_membrane_glycoprotein USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__iedb_id ON public.epitope_2697049_m_membrane_glycoprotein USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__is_linear ON public.epitope_2697049_m_membrane_glycoprotein USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__mhc_allele ON public.epitope_2697049_m_membrane_glycoprotein USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__mhc_class_lower ON public.epitope_2697049_m_membrane_glycoprotein USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__product_lower ON public.epitope_2697049_m_membrane_glycoprotein USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__response_freq_pos ON public.epitope_2697049_m_membrane_glycoprotein USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__seq_aa_alt ON public.epitope_2697049_m_membrane_glycoprotein USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__seq_aa_orig ON public.epitope_2697049_m_membrane_glycoprotein USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__start_aa_orig ON public.epitope_2697049_m_membrane_glycoprotein USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__taxon_id ON public.epitope_2697049_m_membrane_glycoprotein USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__taxon_name_lower ON public.epitope_2697049_m_membrane_glycoprotein USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__variant_aa_length ON public.epitope_2697049_m_membrane_glycoprotein USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__variant_aa_type ON public.epitope_2697049_m_membrane_glycoprotein USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__vir_n_host_tax_id ON public.epitope_2697049_m_membrane_glycoprotein USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__vir_host_cell_type ON public.epitope_2697049_m_membrane_glycoprotein USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__vir_host_epi_start ON public.epitope_2697049_m_membrane_glycoprotein USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__virus_host_epi_stop ON public.epitope_2697049_m_membrane_glycoprotein USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__virus_host_is_linear ON public.epitope_2697049_m_membrane_glycoprotein USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__vir_host_mhc_allele ON public.epitope_2697049_m_membrane_glycoprotein USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__vir_host_product ON public.epitope_2697049_m_membrane_glycoprotein USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_m_membrane_glycoprotein__vir_host_resp_freq ON public.epitope_2697049_m_membrane_glycoprotein USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NS6 (ORF6 protein) -- 2697049 can be replaced with the virus taxon id, while ns6_orf6_protein can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_ns6_orf6_protein ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_ns6_orf6_protein OWNER TO geco; CREATE INDEX epi_2697049_ns6_orf6_protein__cell_type ON public.epitope_2697049_ns6_orf6_protein USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__epi_an_start ON public.epitope_2697049_ns6_orf6_protein USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__epi_an_nstop ON public.epitope_2697049_ns6_orf6_protein USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__epi_frag_an_start ON public.epitope_2697049_ns6_orf6_protein USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__epi_frag_an_stop ON public.epitope_2697049_ns6_orf6_protein USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__host_tax_id ON public.epitope_2697049_ns6_orf6_protein USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__host_tax_name ON public.epitope_2697049_ns6_orf6_protein USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__iedb_id ON public.epitope_2697049_ns6_orf6_protein USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__is_linear ON public.epitope_2697049_ns6_orf6_protein USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__mhc_allele ON public.epitope_2697049_ns6_orf6_protein USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__mhc_class_lower ON public.epitope_2697049_ns6_orf6_protein USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__product_lower ON public.epitope_2697049_ns6_orf6_protein USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__response_freq_pos ON public.epitope_2697049_ns6_orf6_protein USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__seq_aa_alt ON public.epitope_2697049_ns6_orf6_protein USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__seq_aa_orig ON public.epitope_2697049_ns6_orf6_protein USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__start_aa_orig ON public.epitope_2697049_ns6_orf6_protein USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__taxon_id ON public.epitope_2697049_ns6_orf6_protein USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__taxon_name_lower ON public.epitope_2697049_ns6_orf6_protein USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__variant_aa_length ON public.epitope_2697049_ns6_orf6_protein USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__variant_aa_type ON public.epitope_2697049_ns6_orf6_protein USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__vir_n_host_tax_id ON public.epitope_2697049_ns6_orf6_protein USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__vir_host_cell_type ON public.epitope_2697049_ns6_orf6_protein USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__vir_host_epi_start ON public.epitope_2697049_ns6_orf6_protein USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__virus_host_epi_stop ON public.epitope_2697049_ns6_orf6_protein USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__virus_host_is_linear ON public.epitope_2697049_ns6_orf6_protein USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__vir_host_mhc_allele ON public.epitope_2697049_ns6_orf6_protein USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__vir_host_product ON public.epitope_2697049_ns6_orf6_protein USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns6_orf6_protein__vir_host_resp_freq ON public.epitope_2697049_ns6_orf6_protein USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NS7a (ORF7a protein) -- 2697049 can be replaced with the virus taxon id, while ns7a_orf7a_protein can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_ns7a_orf7a_protein ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_ns7a_orf7a_protein OWNER TO geco; CREATE INDEX epi_2697049_ns7a_orf7a_protein__cell_type ON public.epitope_2697049_ns7a_orf7a_protein USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__epi_an_start ON public.epitope_2697049_ns7a_orf7a_protein USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__epi_an_nstop ON public.epitope_2697049_ns7a_orf7a_protein USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__epi_frag_an_start ON public.epitope_2697049_ns7a_orf7a_protein USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__epi_frag_an_stop ON public.epitope_2697049_ns7a_orf7a_protein USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__host_tax_id ON public.epitope_2697049_ns7a_orf7a_protein USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__host_tax_name ON public.epitope_2697049_ns7a_orf7a_protein USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__iedb_id ON public.epitope_2697049_ns7a_orf7a_protein USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__is_linear ON public.epitope_2697049_ns7a_orf7a_protein USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__mhc_allele ON public.epitope_2697049_ns7a_orf7a_protein USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__mhc_class_lower ON public.epitope_2697049_ns7a_orf7a_protein USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__product_lower ON public.epitope_2697049_ns7a_orf7a_protein USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__response_freq_pos ON public.epitope_2697049_ns7a_orf7a_protein USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__seq_aa_alt ON public.epitope_2697049_ns7a_orf7a_protein USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__seq_aa_orig ON public.epitope_2697049_ns7a_orf7a_protein USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__start_aa_orig ON public.epitope_2697049_ns7a_orf7a_protein USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__taxon_id ON public.epitope_2697049_ns7a_orf7a_protein USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__taxon_name_lower ON public.epitope_2697049_ns7a_orf7a_protein USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__variant_aa_length ON public.epitope_2697049_ns7a_orf7a_protein USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__variant_aa_type ON public.epitope_2697049_ns7a_orf7a_protein USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__vir_n_host_tax_id ON public.epitope_2697049_ns7a_orf7a_protein USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__vir_host_cell_type ON public.epitope_2697049_ns7a_orf7a_protein USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__vir_host_epi_start ON public.epitope_2697049_ns7a_orf7a_protein USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__virus_host_epi_stop ON public.epitope_2697049_ns7a_orf7a_protein USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__virus_host_is_linear ON public.epitope_2697049_ns7a_orf7a_protein USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__vir_host_mhc_allele ON public.epitope_2697049_ns7a_orf7a_protein USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__vir_host_product ON public.epitope_2697049_ns7a_orf7a_protein USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7a_orf7a_protein__vir_host_resp_freq ON public.epitope_2697049_ns7a_orf7a_protein USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NS7b (ORF7b) -- 2697049 can be replaced with the virus taxon id, while ns7b_orf7b can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_ns7b_orf7b ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_ns7b_orf7b OWNER TO geco; CREATE INDEX epi_2697049_ns7b_orf7b__cell_type ON public.epitope_2697049_ns7b_orf7b USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__epi_an_start ON public.epitope_2697049_ns7b_orf7b USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__epi_an_nstop ON public.epitope_2697049_ns7b_orf7b USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__epi_frag_an_start ON public.epitope_2697049_ns7b_orf7b USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__epi_frag_an_stop ON public.epitope_2697049_ns7b_orf7b USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__host_tax_id ON public.epitope_2697049_ns7b_orf7b USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__host_tax_name ON public.epitope_2697049_ns7b_orf7b USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__iedb_id ON public.epitope_2697049_ns7b_orf7b USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__is_linear ON public.epitope_2697049_ns7b_orf7b USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__mhc_allele ON public.epitope_2697049_ns7b_orf7b USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__mhc_class_lower ON public.epitope_2697049_ns7b_orf7b USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__product_lower ON public.epitope_2697049_ns7b_orf7b USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__response_freq_pos ON public.epitope_2697049_ns7b_orf7b USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__seq_aa_alt ON public.epitope_2697049_ns7b_orf7b USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__seq_aa_orig ON public.epitope_2697049_ns7b_orf7b USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__start_aa_orig ON public.epitope_2697049_ns7b_orf7b USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__taxon_id ON public.epitope_2697049_ns7b_orf7b USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__taxon_name_lower ON public.epitope_2697049_ns7b_orf7b USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__variant_aa_length ON public.epitope_2697049_ns7b_orf7b USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__variant_aa_type ON public.epitope_2697049_ns7b_orf7b USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__vir_n_host_tax_id ON public.epitope_2697049_ns7b_orf7b USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__vir_host_cell_type ON public.epitope_2697049_ns7b_orf7b USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__vir_host_epi_start ON public.epitope_2697049_ns7b_orf7b USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__virus_host_epi_stop ON public.epitope_2697049_ns7b_orf7b USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__virus_host_is_linear ON public.epitope_2697049_ns7b_orf7b USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__vir_host_mhc_allele ON public.epitope_2697049_ns7b_orf7b USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__vir_host_product ON public.epitope_2697049_ns7b_orf7b USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns7b_orf7b__vir_host_resp_freq ON public.epitope_2697049_ns7b_orf7b USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT NS8 (ORF8 protein) -- 2697049 can be replaced with the virus taxon id, while ns8_orf8_protein can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_ns8_orf8_protein ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_ns8_orf8_protein OWNER TO geco; CREATE INDEX epi_2697049_ns8_orf8_protein__cell_type ON public.epitope_2697049_ns8_orf8_protein USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__epi_an_start ON public.epitope_2697049_ns8_orf8_protein USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__epi_an_nstop ON public.epitope_2697049_ns8_orf8_protein USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__epi_frag_an_start ON public.epitope_2697049_ns8_orf8_protein USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__epi_frag_an_stop ON public.epitope_2697049_ns8_orf8_protein USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__host_tax_id ON public.epitope_2697049_ns8_orf8_protein USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__host_tax_name ON public.epitope_2697049_ns8_orf8_protein USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__iedb_id ON public.epitope_2697049_ns8_orf8_protein USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__is_linear ON public.epitope_2697049_ns8_orf8_protein USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__mhc_allele ON public.epitope_2697049_ns8_orf8_protein USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__mhc_class_lower ON public.epitope_2697049_ns8_orf8_protein USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__product_lower ON public.epitope_2697049_ns8_orf8_protein USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__response_freq_pos ON public.epitope_2697049_ns8_orf8_protein USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__seq_aa_alt ON public.epitope_2697049_ns8_orf8_protein USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__seq_aa_orig ON public.epitope_2697049_ns8_orf8_protein USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__start_aa_orig ON public.epitope_2697049_ns8_orf8_protein USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__taxon_id ON public.epitope_2697049_ns8_orf8_protein USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__taxon_name_lower ON public.epitope_2697049_ns8_orf8_protein USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__variant_aa_length ON public.epitope_2697049_ns8_orf8_protein USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__variant_aa_type ON public.epitope_2697049_ns8_orf8_protein USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__vir_n_host_tax_id ON public.epitope_2697049_ns8_orf8_protein USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__vir_host_cell_type ON public.epitope_2697049_ns8_orf8_protein USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__vir_host_epi_start ON public.epitope_2697049_ns8_orf8_protein USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__virus_host_epi_stop ON public.epitope_2697049_ns8_orf8_protein USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__virus_host_is_linear ON public.epitope_2697049_ns8_orf8_protein USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__vir_host_mhc_allele ON public.epitope_2697049_ns8_orf8_protein USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__vir_host_product ON public.epitope_2697049_ns8_orf8_protein USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_ns8_orf8_protein__vir_host_resp_freq ON public.epitope_2697049_ns8_orf8_protein USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT N (nucleocapsid phosphoprotein) -- 2697049 can be replaced with the virus taxon id, while n_nucleocapsid_phosphoprotei can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_n_nucleocapsid_phosphoprotei ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_n_nucleocapsid_phosphoprotei OWNER TO geco; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__cell_type ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__epi_an_start ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__epi_an_nstop ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__epi_frag_an_start ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__epi_frag_an_stop ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__host_tax_id ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__host_tax_name ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__iedb_id ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__is_linear ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__mhc_allele ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__mhc_class_lower ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__product_lower ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__response_freq_pos ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__seq_aa_alt ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__seq_aa_orig ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__start_aa_orig ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__taxon_id ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__taxon_name_lower ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__variant_aa_length ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__variant_aa_type ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__vir_n_host_tax_id ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__vir_host_cell_type ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__vir_host_epi_start ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__virus_host_epi_stop ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__virus_host_is_linear ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__vir_host_mhc_allele ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__vir_host_product ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_n_nucleocapsid_phosphoprotei__vir_host_resp_freq ON public.epitope_2697049_n_nucleocapsid_phosphoprotei USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; -- CREATE TABLES 'N INDEXES OF VIR sars_cov_2 and PROT ORF10 protein -- 2697049 can be replaced with the virus taxon id, while orf10_protein can be long 28 chars max to comply -- with postgres limit on DB object names (max 63 chars allowed) on views, tables, constraints and indexes. CREATE TABLE public.epitope_2697049_orf10_protein ( iedb_epitope_id int4 NULL, epitope_iri varchar NULL, cell_type varchar NULL, mhc_class varchar NULL, mhc_allele varchar NULL, response_frequency_pos float4 NULL, epi_annotation_start int4 NULL, epi_annotation_stop int4 NULL, is_linear bool NULL, assay_type varchar NULL, epi_fragment_sequence varchar NULL, epi_frag_annotation_start int4 NULL, epi_frag_annotation_stop int4 NULL, taxon_id int4 NULL, taxon_name varchar NULL, host_taxon_id int4 NULL, host_taxon_name varchar NULL, sequence_id int4 NULL, product varchar NULL, aminoacid_variant_id int4 NULL, start_aa_original int4 NULL, sequence_aa_original varchar NOT NULL, sequence_aa_alternative varchar NOT NULL, variant_aa_length int4 NOT NULL, variant_aa_type varchar NOT NULL ); ALTER TABLE public.epitope_2697049_orf10_protein OWNER TO geco; CREATE INDEX epi_2697049_orf10_protein__cell_type ON public.epitope_2697049_orf10_protein USING btree ((cell_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__epi_an_start ON public.epitope_2697049_orf10_protein USING btree (epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__epi_an_nstop ON public.epitope_2697049_orf10_protein USING btree (epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__epi_frag_an_start ON public.epitope_2697049_orf10_protein USING btree (epi_frag_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__epi_frag_an_stop ON public.epitope_2697049_orf10_protein USING btree (epi_frag_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__host_tax_id ON public.epitope_2697049_orf10_protein USING btree (host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__host_tax_name ON public.epitope_2697049_orf10_protein USING btree (lower(host_taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__iedb_id ON public.epitope_2697049_orf10_protein USING btree (iedb_epitope_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__is_linear ON public.epitope_2697049_orf10_protein USING btree (is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__mhc_allele ON public.epitope_2697049_orf10_protein USING btree ((mhc_allele::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__mhc_class_lower ON public.epitope_2697049_orf10_protein USING btree (lower(mhc_class::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__product_lower ON public.epitope_2697049_orf10_protein USING btree (lower(product::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__response_freq_pos ON public.epitope_2697049_orf10_protein USING btree (response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__seq_aa_alt ON public.epitope_2697049_orf10_protein USING btree ((sequence_aa_alternative::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__seq_aa_orig ON public.epitope_2697049_orf10_protein USING btree ((sequence_aa_original::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__start_aa_orig ON public.epitope_2697049_orf10_protein USING btree (start_aa_original) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__taxon_id ON public.epitope_2697049_orf10_protein USING btree (taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__taxon_name_lower ON public.epitope_2697049_orf10_protein USING btree (lower(taxon_name::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__variant_aa_length ON public.epitope_2697049_orf10_protein USING btree (variant_aa_length) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__variant_aa_type ON public.epitope_2697049_orf10_protein USING btree ((variant_aa_type::text) COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__vir_n_host_tax_id ON public.epitope_2697049_orf10_protein USING btree (taxon_id, host_taxon_id) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__vir_host_cell_type ON public.epitope_2697049_orf10_protein USING btree (taxon_id, host_taxon_id, cell_type COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__vir_host_epi_start ON public.epitope_2697049_orf10_protein USING btree (taxon_id, host_taxon_id, epi_annotation_start) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__virus_host_epi_stop ON public.epitope_2697049_orf10_protein USING btree (taxon_id, host_taxon_id, epi_annotation_stop) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__virus_host_is_linear ON public.epitope_2697049_orf10_protein USING btree (taxon_id, host_taxon_id, is_linear) WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__vir_host_mhc_allele ON public.epitope_2697049_orf10_protein USING btree (taxon_id, host_taxon_id, mhc_allele COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__vir_host_product ON public.epitope_2697049_orf10_protein USING btree (taxon_id, host_taxon_id, product COLLATE pg_catalog."default") WITH (FILLFACTOR=100) TABLESPACE default_ts; CREATE INDEX epi_2697049_orf10_protein__vir_host_resp_freq ON public.epitope_2697049_orf10_protein USING btree (taxon_id, host_taxon_id, response_frequency_pos) WITH (FILLFACTOR=100) TABLESPACE default_ts;
<gh_stars>0 BEGIN; -- Actualizo algunas secuencias SELECT setval('public.registro_tipo_conexion_id_seq', (SELECT MAX(id)+1 FROM registro_tipo_conexion), true); SELECT setval('public.registro_estado_extension_aulica_id_seq', (SELECT MAX(id)+1 FROM registro_estado_extension_aulica), true); INSERT INTO deltas_sql (numero, app, comentario) VALUES ('077', 'Registro', 'Ticket #236'); COMMIT;
CREATE TABLE Subsystem (id int NOT NULL AUTO_INCREMENT, name varchar(255) NOT NULL, shortName varchar(16) NOT NULL default "" COMMENT "Prefix for perm. groups and traveler names", description varchar(255) default "", generic tinyint NOT NULL default "0" COMMENT "if True permission group name = role name", parentId int NULL, createdBy varchar(50) NOT NULL, creationTS timestamp NULL, PRIMARY KEY(id), CONSTRAINT fk350 FOREIGN KEY(parentId) REFERENCES Subsystem(id), CONSTRAINT ix351 UNIQUE (parentId, name), UNIQUE INDEX ix352 (shortName), INDEX ix350 (parentId) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT=''; ALTER TABLE TravelerType add column subsystemId int after reason; ALTER TABLE TravelerType add CONSTRAINT fk193 FOREIGN KEY (subsystemId) REFERENCES Subsystem(id); ALTER TABLE TravelerType add INDEX ix193 (subsystemId); ALTER TABLE HardwareType add column subsystemId int after description; ALTER TABLE HardwareType add CONSTRAINT fkk2 FOREIGN KEY (subsystemId) REFERENCES Subsystem(id); ALTER TABLE HardwareType add INDEX ixx2 (subsystemId); ALTER TABLE HardwareLocationHistory add column reason varchar(1024) NOT NULL DEFAULT '' after activityId; insert into Subsystem (name, shortName, description, parentId, createdBy, creationTS) values ("Camera", "Cam", "Full camera", NULL, 'jrb', UTC_TIMESTAMP()); insert into Subsystem (name, shortName, description, generic, createdBy, creationTS) values ("Legacy", "Legacy", "Used for traveler types predating Subsystem table", '1', 'jrb', UTC_TIMESTAMP()); insert into Subsystem (name, shortName, description, generic, createdBy, creationTS) values ("Default", "Default", "Used for traveler types not associated with any particular subsystem", '1', 'jrb', UTC_TIMESTAMP()); ### Need insert into DbRelease INSERT into DbRelease (major, minor, patch, status, createdBy, creationTS, lastModTS, remarks) values ('0', '9', '0', 'TEST', 'jrb', UTC_TIMESTAMP(), UTC_TIMESTAMP(), 'Support for subsystems');
<filename>db/posts.sql -- phpMyAdmin SQL Dump -- version 4.7.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:3306 -- Generation Time: Jan 27, 2018 at 04:01 AM -- Server version: 5.7.19 -- PHP Version: 7.1.9 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: `hr_pagoda` -- -- -------------------------------------------------------- -- -- Table structure for table `posts` -- DROP TABLE IF EXISTS `posts`; CREATE TABLE IF NOT EXISTS `posts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `body` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1; -- -- Dumping data for table `posts` -- INSERT INTO `posts` (`id`, `title`, `body`, `created_at`) VALUES (1, NULL, 'hello world.<br>', NULL), (2, NULL, 'មុន​ឈាន​ដល់​វគ្គ​ពាក់​កណ្ដាល​ផ្ដាច់ព្រ័ត្រ​នេះ ​​ក្រុម​យុវជន​កំពង់​ផែ A ​បាន​យក​ឈ្នះ​លើ​ក្រុម​យុវជន​កំពង់​ផែ B ​ដោយ​លទ្ធផល ២-១ ​ស្រប​ពេល​ដែល​ក្រុម Hurrican A ​បាន​យក​ឈ្នះ​លើ​ក្រុមស្នងការ​ដ្ឋាន​នគរ​បាល​ខេត្ត​ព្រះ​សីហនុ B ៧-៣។ ចំណែក​ឯ​ក្រុម​ស្នងការ​ដ្ឋាន​នគរ​បាល​ខេត្ត​ព្រះ​សីហនុ A ​បាន​យក​ឈ្នះ​លើ​ក្រុម sihanoukville ​ស្វិតស្វាញ​មែនទែន ​ដោយ​ត្រូវ​ដក​គ្នា​ដល់​ទៅ​២​នាក់ ​ទើប​អាច​យក​ឈ្នះ​បាន។ ​មួយ​ក្រុម​ចុង​ក្រោយ​ដែល​ឡើង​ទៅ​វគ្គ​ពាក់​កណ្ដាល​ផ្ដាច់ព្រ័ត្រ​ដែរ​នោះ​គឺ​ក្រុម​ Nazaro Sport Club ​ដែល​យក​ឈ្នះ​លើ​ក្រុមស្នងការដ្ឋាន​ខេត្ត​កំពត A ក្នុង​លទ្ធផល ៣ – ១។', NULL), (3, NULL, '<header class=\"entry-header\" [removed]><h1 class=\"entry-title\" [removed]>រក​ឃើញ​៤​ក្រុម​ត្រូវ​លេង ​ដណ្ដើម​ពាន​នៅ​តំបន់​ព្រះ​សីហនុ​ហើយ</h1><footer class=\"entry-meta\" [removed]><span class=\"posted-on\" [removed]><span class=\"screen-reader-text\" [removed]>POSTED ON</span><time class=\"entry-date published\" datetime=\"2018-01-21T10:01:53+00:00\" [removed]>JANUARY 21, 2018</time></span><span class=\"byline\" [removed]><span class=\"screen-reader-text\" [removed]>BY</span><span class=\"author vcard\" [removed]><a class=\"url fn n\" href=\"http://news.bookingkh.com/blog/author/rithysek/\" [removed]>PU CHHROY</a></span></span></footer></header><div class=\"post-thumbnail\" [removed]><img src=\"http://news.bookingkh.com/wp-content/uploads/2018/01/tigerstreet_2_large-1100x574.jpg\" class=\"attachment-post-thumbnail size-post-thumbnail wp-post-image\" alt=\"\" [removed] width=\"1100\" height=\"574\"></div><div class=\"entry-content\" [removed]><div id=\"ess-main-wrapper\" [removed]><div id=\"ess-wrap-inline-networks\" class=\"ess-inline-networks-container ess-clear ess-inline-top ess-diagonal-icon ess-inline-layout-text-only\" [removed]><ul class=\"ess-social-network-lists\" [removed]><li class=\"ess-social-networks ess-facebook ess-spacing ess-social-sharing\" [removed]><a href=\"http://www.facebook.com/sharer.php?u=http://news.bookingkh.com/blog/sport/four-teams-have-been-found-in-preah-sihanouk/&t=រក​ឃើញ​៤​ក្រុម​ត្រូវ​លេង ​ដណ្ដើម​ពាន​នៅ​តំបន់​ព្រះ​សីហនុ​ហើយ\" class=\"ess-social-network-link ess-social-share ess-display-counts\" rel=\"nofollow\" data-social-name=\"facebook\" data-min-count=\"0\" data-post-id=\"125\" data-location=\"inline\" [removed]><span class=\"inline-networks socicon ess-icon socicon-facebook\" [removed]></span><span class=\"ess-text\" [removed]>Facebook</span><span class=\"ess-social-count\" [removed]></span></a></li><li class=\"ess-social-networks ess-linkedin ess-spacing ess-social-sharing\" [removed]><a href=\"http://www.linkedin.com/shareArticle?mini=true&url=http://news.bookingkh.com/blog/sport/four-teams-have-been-found-in-preah-sihanouk/&title=រក​ឃើញ​៤​ក្រុម​ត្រូវ​លេង ​ដណ្ដើម​ពាន​នៅ​តំបន់​ព្រះ​សីហនុ​ហើយ\" class=\"ess-social-network-link ess-social-share ess-display-counts\" rel=\"nofollow\" data-social-name=\"linkedin\" data-min-count=\"0\" data-post-id=\"125\" data-location=\"inline\" [removed]><span class=\"inline-networks socicon ess-icon socicon-linkedin\" [removed]></span><span class=\"ess-text\" [removed]>LinkedIn</span><span class=\"ess-social-count\" [removed]></span></a></li><li class=\"ess-social-networks ess-googleplus ess-spacing ess-social-sharing\" [removed]><a href=\"https://plus.google.com/share?url=http://news.bookingkh.com/blog/sport/four-teams-have-been-found-in-preah-sihanouk/&t=រក​ឃើញ​៤​ក្រុម​ត្រូវ​លេង ​ដណ្ដើម​ពាន​នៅ​តំបន់​ព្រះ​សីហនុ​ហើយ\" class=\"ess-social-network-link ess-social-share ess-display-counts\" rel=\"nofollow\" data-social-name=\"googleplus\" data-min-count=\"0\" data-post-id=\"125\" data-location=\"inline\" [removed]><span class=\"inline-networks socicon ess-icon socicon-googleplus\" [removed]></span><span class=\"ess-text\" [removed]>Google+</span><span class=\"ess-social-count\" [removed]></span></a></li><li class=\"ess-social-networks ess-stumbleupon ess-spacing ess-social-sharing\" [removed]><a href=\"http://www.stumbleupon.com/badge?url=http://news.bookingkh.com/blog/sport/four-teams-have-been-found-in-preah-sihanouk/&title=រក​ឃើញ​៤​ក្រុម​ត្រូវ​លេង ​ដណ្ដើម​ពាន​នៅ​តំបន់​ព្រះ​សីហនុ​ហើយ\" class=\"ess-social-network-link ess-social-share ess-display-counts\" rel=\"nofollow\" data-social-name=\"stumbleupon\" data-min-count=\"0\" data-post-id=\"125\" data-location=\"inline\" [removed]><span class=\"inline-networks socicon ess-icon socicon-stumbleupon\" [removed]></span><span class=\"ess-text\" [removed]>StumbleUpon</span><span class=\"ess-social-count\" [removed]></span></a></li><li class=\"ess-social-networks ess-pinterest ess-spacing ess-social-sharing\" [removed]><a href=\"http://news.bookingkh.com/blog/sport/four-teams-have-been-found-in-preah-sihanouk/#\" class=\"ess-social-network-link ess-social-share-pinterest ess-display-counts\" rel=\"nofollow\" data-social-name=\"pinterest\" data-min-count=\"0\" data-post-id=\"125\" data-location=\"inline\" [removed]><span class=\"inline-networks socicon ess-icon socicon-pinterest\" [removed]></span><span class=\"ess-text\" [removed]>Pinterest</span><span class=\"ess-social-count\" [removed]></span></a></li><li class=\"ess-all-networks ess-social-networks\" [removed]><div class=\"ess-social-network-link\" [removed]><span class=\"ess-all-networks-button\" [removed]></span></div><br></li><li class=\"ess-total-share ess-social-networks\" data-post-id=\"125\" [removed]><div class=\"ess-total-share-block\" [removed]><span> </span><span class=\"ess-total-count\" [removed]>0</span></div></li></ul></div></div><p [removed]>ការ​ប្រកួត​ពាន​រង្វាន់ Tiger Street Football Festival 2018 ​បាន​ឈាន​ដល់​វគ្គ​៤​ក្រុម​ចុង​ក្រោយ​ហើយ ​ដោយ​ក្រុម​ទាំង​៤​នោះ​រួម​មាន ​ក្រុម​យុវជន​កំពង់​ផែ A ​ក្រុម ​Hurrican A ​ក្រុម​ស្នងការ​ដ្ឋាន​នគរ​បាល​ខេត្ត​ព្រះ​សីហនុ A ​និង​ក្រុម​ Nazaro Sport Club ។</p><p [removed]><img class=\"alignnone size-medium wp-image-126\" src=\"http://news.bookingkh.com/wp-content/uploads/2018/01/tiger2_3_large-300x200.jpg\" alt=\"\" [removed] width=\"300\" height=\"200\"></p><p [removed]>មុន​ឈាន​ដល់​វគ្គ​ពាក់​កណ្ដាល​ផ្ដាច់ព្រ័ត្រ​នេះ ​​ក្រុម​យុវជន​កំពង់​ផែ A ​បាន​យក​ឈ្នះ​លើ​ក្រុម​យុវជន​កំពង់​ផែ B ​ដោយ​លទ្ធផល ២-១ ​ស្រប​ពេល​ដែល​ក្រុម Hurrican A ​បាន​យក​ឈ្នះ​លើ​ក្រុមស្នងការ​ដ្ឋាន​នគរ​បាល​ខេត្ត​ព្រះ​សីហនុ B ៧-៣។ ចំណែក​ឯ​ក្រុម​ស្នងការ​ដ្ឋាន​នគរ​បាល​ខេត្ត​ព្រះ​សីហនុ A ​បាន​យក​ឈ្នះ​លើ​ក្រុម sihanoukville ​ស្វិតស្វាញ​មែនទែន ​ដោយ​ត្រូវ​ដក​គ្នា​ដល់​ទៅ​២​នាក់ ​ទើប​អាច​យក​ឈ្នះ​បាន។ ​មួយ​ក្រុម​ចុង​ក្រោយ​ដែល​ឡើង​ទៅ​វគ្គ​ពាក់​កណ្ដាល​ផ្ដាច់ព្រ័ត្រ​ដែរ​នោះ​គឺ​ក្រុម​ Nazaro Sport Club ​ដែល​យក​ឈ្នះ​លើ​ក្រុមស្នងការដ្ឋាន​ខេត្ត​កំពត A ក្នុង​លទ្ធផល ៣ – ១។</p><p [removed]><img class=\"alignnone size-medium wp-image-127\" src=\"http://news.bookingkh.com/wp-content/uploads/2018/01/tigerstreet_2_large-300x200.jpg\" alt=\"\" [removed] width=\"300\" height=\"200\"></p><p [removed]>ការ​ប្រកួត​នៅ​វគ្គ​ពាក់​កណ្ដាល​ផ្ដាច់ព្រ័ត្រ​នេះ​ដែរ នឹង​មាន​ការ​ផ្សាយ​បន្ដ​ផ្ទាល់​តា​មរយៈទូរទស្សន៍ ហង្សមាស HDTV ​។ ខណៈដែល​ក្រុម​ទាំង​៤​លេង​នៅ​វគ្គ​ពាក់​កណ្ដាល​ផ្ដាច់ព្រ័ត្រ​នេះ ​នឹង​មាន​ឱកាស​ស្វ័យប្រវត្តិ​ទៅលេង​វគ្គ​ផ្ដាច់ព្រ័ត្រ​នៅ​រាជ​ធានី​ភ្នំពេញ ​ជាមួយ​ក្រុម​២​ទៀត​ដែល​ជ្រើសចេញ​ពី​ការ​ប្រកួត​​ចាញ់​គេ​នៅ​វគ្គ​៨​ក្រុម​ចុង​ក្រោយ។</p><p [removed]>ការ​ប្រកួត​នៅ​តាម​តំបន់​ព្រះ​សីហនុ​នេះ ​ក្រុម​ដែល​បាន​ចំណាត់​ថ្នាក់​លេខ​១​នឹង​ទទួល​បាន​ប្រាក់​រង្វាន់ ១ ៥០០​ដុល្លារ ​ក្រុម​លេខ​២​ទទួល​បាន​១ ០០០​ដុល្លារ ​ក្រុម​លេខ​៣​ទទួល​បាន​ ៥០០​ដុល្លារ​និង​ក្រុម​លេខ​៤​ទទួល​បាន​២០០​ដុល្លារ។ ​ខណៈ​ដែល​ក្រុម​មាន​សិទ្ធិ​ចូលរួម​ប្រកួត​វគ្គ​ផ្ដាច់ព្រ័ត្រ​ជើង​ឯក​ប្រចាំ​ប្រទេស​វិញ ​នៅ​មណ្ឌល​ព្រះ​សីហនុ​នេះ​អនុញ្ញាតិ​ឱ្យ​តែ​៦​ក្រុម​ប៉ុណ្ណោះ៕</p><p [removed]><br class=\"Apple-interchange-newline\"></p></div>', NULL), (4, NULL, '<p><br></p><table class=\"table table-bordered\"><tbody><tr><td>ID<br></td><td>Name<br></td><td>Date of birht<br></td><td>Gender<br></td><td>Position<br></td><td>Working place<br></td><td>Salary<br></td><td>Address<br></td><td>University<br></td><td>Year <br></td></tr><tr><td>1<br></td><td><NAME><br></td><td>29299392939<br></td><td>Girl<br></td><td>Web dev<br></td><td>Abc<br></td><td>10000<br></td><td>Phnom Penh<br></td><td>UP<br></td><td>4<br></td></tr><tr><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td></tr><tr><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td></tr><tr><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td></tr><tr><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td></tr><tr><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td></tr><tr><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td></tr><tr><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td></tr><tr><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td><td><br></td></tr></tbody></table><p>                                                        <br></p>', NULL), (7, NULL, '<ol><li>Hi this is the first step.</li><li>the next step is just for that.<br></li></ol>', NULL), (8, NULL, '<p><img [removed]><span [removed]Comic Sans MS\";></span><br></p>', NULL); 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 */;
DROP DATABASE IF EXISTS employeesDB; CREATE database employeesDB; USE employeesDB; CREATE TABLE department ( id INTEGER NOT NULL auto_increment PRIMARY KEY, name VARCHAR (40) ); CREATE TABLE role ( id INTEGER NOT NULL auto_increment PRIMARY KEY, title VARCHAR (40), salary DECIMAL , department_id INTEGER, FOREIGN KEY (department_id) REFERENCES department (id) ); CREATE TABLE employee ( id INTEGER NOT NULL auto_increment PRIMARY KEY, first_name VARCHAR (40), last_name VARCHAR (40) , role_id INTEGER, manager_id INTEGER, FOREIGN KEY (role_id) REFERENCES role (id), FOREIGN KEY (manager_id) REFERENCES role (id) );
<gh_stars>0 -- phpMyAdmin SQL Dump -- version 4.7.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: 01-Jun-2018 às 08:26 -- Versão do servidor: 10.1.26-MariaDB -- PHP Version: 7.1.9 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: `mon.i` -- -- -------------------------------------------------------- -- -- Estrutura da tabela `ci_sessions` -- CREATE TABLE `ci_sessions` ( `id` varchar(128) NOT NULL, `ip_address` varchar(45) NOT NULL, `timestamp` int(10) UNSIGNED NOT NULL DEFAULT '0', `data` blob NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `ci_sessions` -- INSERT INTO `ci_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17v7trp7n2r0igb3dhc44hi0bsvmfs7a', '192.168.0.224', 1527785239, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353233393b), ('h528tc77sik2rbndm56iu119tj4hf6a5', '192.168.0.224', 1527785253, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353235333b), ('lcc1dmdhg50h03a7h7ifbnk5gebbhv07', '192.168.0.224', 1527785265, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353236353b), ('8sd13nrf8o6c732lpru8r06kvmka54gt', '192.168.0.224', 1527785275, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353237353b), ('cuf2q9cth8d95op3ddvo0ppl3mc7gldr', '192.168.0.224', 1527785285, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353238353b), ('0tjtir0i7o1jv4s9n3mo4f06nob2q76g', '192.168.0.224', 1527785295, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353239353b), ('j1n04679pdfv7ta49lsatt0fh7a5m2k2', '192.168.0.224', 1527785305, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353330353b), ('ace3op85b7nhktli54qksojovf8ihalp', '192.168.0.224', 1527785314, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353331343b), ('p8bh2ntqs5p0uoij3rojq4gk72620tur', '192.168.0.224', 1527785323, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353332333b), ('pv25askj0ofu9p78tnkg623piv3pl6tl', '192.168.0.224', 1527785332, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353333323b), ('a71ml7iaqk6bclieru5sari19v03i0gt', '192.168.0.224', 1527785343, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353334333b), ('r85fhh88dqd03533gqclcm8gksqmm0bl', '192.168.0.224', 1527785352, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353335323b), ('jbn76nnrcvh7l7a3152lr132ar89jc0v', '192.168.0.224', 1527785363, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353336333b), ('srnul7rm7rhpfoe2c42mbsqt1obo3bgl', '192.168.0.224', 1527785372, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353337323b), ('53f3upsucv2ur6t2vpu97p09p5507vg6', '192.168.0.224', 1527785382, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353338323b), ('7c3mjdib01lie8pssunt3045f0pe06ik', '192.168.0.224', 1527785392, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353339323b), ('4vbus9lg1ektvfn7pj8ui8bv2khgicug', '192.168.0.224', 1527785402, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353430323b), ('eeftmco61icm4mphu6s7cc111qq5hao9', '192.168.0.224', 1527785411, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353431313b), ('b26g9bq8k359as5bncdfn6tvm8tqcri8', '192.168.0.224', 1527785421, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353432313b), ('07aam7d9ka8sl8mblm8dssmauuig3odu', '192.168.0.224', 1527785430, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353433303b), ('0h20c3jc85vjr8p2rr6tjulrfjn38i1r', '192.168.0.224', 1527785443, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353434333b), ('7cvd4vhlip3avnihg9os6dgflchpejba', '192.168.0.224', 1527785452, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353435323b), ('sq0h2vsflnjo55bbge15g4gn4lohl5le', '192.168.0.224', 1527785461, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353436313b), ('4b06op9gn4q1d2qjchn8imh7dd1f6rk6', '192.168.0.224', 1527785470, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353437303b), ('mjjchri3qoi2kpjkc49dsqrgmaoabq2a', '192.168.0.224', 1527785480, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353438303b), ('4cihafp9ku7e7p5d2o9ovojcoft87ogp', '192.168.0.224', 1527785491, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353439313b), ('vj2006l7tr4dafk311lgce7gm352r5sm', '192.168.0.224', 1527785500, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353530303b), ('gefh3oma5kus0g8abuan9l933m8p38ti', '192.168.0.224', 1527785511, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353531313b), ('orjsdac665k2tv0f3eg740cl13n4k83n', '192.168.0.224', 1527785520, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353532303b), ('megs5nbh7td3g0e5ous1f5a5qjtqm614', '192.168.0.224', 1527785530, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353533303b), ('jbe3u6hd1l9a1mp4li39h50k36o7keat', '192.168.0.224', 1527785540, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353534303b), ('r2km1n9im477fal40u7ndk3hmka40mpt', '192.168.0.224', 1527785549, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353534393b), ('brefn8cg025s6l6qm44jc8p5utudpl9h', '192.168.0.224', 1527785558, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353535383b), ('cf1jro6b0di33g9nt7q4dpouopk2h89t', '192.168.0.224', 1527785568, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353536383b), ('bejolfafr0tf46ocsm3svsre1jd9j30r', '192.168.0.224', 1527785577, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353537373b), ('jtd7d2h5m7dad7puj2qlal8vqvp7h25o', '192.168.0.224', 1527785586, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353538363b), ('65bb522bjhmp2hc1hap08p342ee0s6bk', '192.168.0.224', 1527785595, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353539353b), ('p5v0ktf0qch8ef8t8k9vs41um252hicf', '192.168.0.224', 1527785604, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353630343b), ('s2ki1e2sm2o3q9fd6nstqp0v0j8c0nlc', '192.168.0.224', 1527785614, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353631343b), ('vohem6mmkeef6ndvr8t7gilgskqkq5ec', '192.168.0.224', 1527785623, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353632333b), ('obnsh7vll436ggffhlipm2ncb8l4d1h9', '192.168.0.224', 1527785632, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353633323b), ('dm0g5mrummok0no3k0eoqic206oeim9k', '192.168.0.224', 1527785641, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353634313b), ('ik4l0vb26kqcs3nf8o6ggdfr8eesbmno', '192.168.0.224', 1527785650, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353635303b), ('s015prd08fc2uepgfhccseafig77ucdr', '192.168.0.224', 1527785660, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353636303b), ('3k3dd82eafe6dcegqe90tlihp3g76i5k', '192.168.0.224', 1527785670, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353637303b), ('qmoprteq7uq1lm0kmlui1r4f477qc2vm', '192.168.0.224', 1527785680, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353638303b), ('fseuooa45bk12b62vcrc0fru1pb2kpbf', '192.168.0.224', 1527785689, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353638393b), ('ino1ak7omgjf41nsb6ti8v8vnvnj9dfj', '192.168.0.224', 1527785699, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353639393b), ('b3nlrn3lat6afq4uv6i2mu7bp2bpgvjl', '192.168.0.224', 1527785708, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353730383b), ('bvha9ogm9689t6sb95v56lk7pu2fshlb', '192.168.0.224', 1527785717, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353731373b), ('i2s3kacjbhufvf2osb4oa79eccgg8md0', '192.168.0.224', 1527785727, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353732373b), ('tq1nnnm49aouqveujen2e6tl7a6v4b3n', '192.168.0.224', 1527785737, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353733373b), ('5veeci3vj932257e0u0mfes16hn9irnj', '192.168.0.224', 1527785747, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353734373b), ('uf112fc3frtikvv93752sa99cr6cr6r5', '192.168.0.224', 1527785756, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353735363b), ('k4rajnc4p5f05hrtn16cc8u432hu245d', '192.168.0.224', 1527785765, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353736353b), ('0p4a4psla16qj85ip11r0aqopcpis3k0', '192.168.0.224', 1527785774, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353737343b), ('e45frnjnk7vuac0lql28jj1dduiqo19u', '192.168.0.224', 1527785783, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353738333b), ('fagr5ucoekbg4b1fkieptnparv77gl77', '192.168.0.224', 1527785791, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353739313b), ('5iibugjgevvu7acijtvj6qnpd58la9ol', '192.168.0.224', 1527785800, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353830303b), ('3pqq786n958st5uai9dfbnm1v2q5i5tp', '192.168.0.224', 1527785809, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353830393b), ('1rjvraubd6fc2rtmniqlpasc4ruqvur9', '192.168.0.224', 1527785818, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353831383b), ('2vb7ghcjkmqpgre80hi6gbm8laf2g73i', '192.168.0.224', 1527785827, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353832373b), ('hpr87cb0dobjnqko6thhkfdvi5dq2f37', '192.168.0.224', 1527785836, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353833363b), ('r3coj1oa02dgb8pk7ufj8iuds0e00ipe', '192.168.0.224', 1527785845, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353834353b), ('52q93j0lnn0qn14v17v7l5dpmde3rmna', '192.168.0.224', 1527785854, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353835343b), ('fov5smjf5h5hnd34bbp41gicor4objmk', '192.168.0.224', 1527785863, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353836333b), ('djqd7b8h3ekognl2hkeqtamcat48itdo', '192.168.0.224', 1527785872, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353837323b), ('ilaqq46v86asum493h6aoujgd9jidn81', '192.168.0.224', 1527785881, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353838313b), ('dufeaum2bipkob5gnlbngvgtfd82f63o', '192.168.0.224', 1527785890, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353839303b), ('77h34h6oms4apidh91i7ep5fckl0uarn', '192.168.0.224', 1527785899, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353839393b), ('1agseb361bc23k5pquf8r2hmg6oqd60b', '192.168.0.224', 1527785908, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353930383b), ('cbgt0op4530u1sjdiv0bvod79leer1o5', '192.168.0.224', 1527785917, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353931373b), ('ln6l296kijo5vjrhs0bj7blg9k48u148', '192.168.0.224', 1527785926, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353932363b), ('pfuplia8ctutmk8kdcn1r3u59ksiu26p', '192.168.0.224', 1527785935, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353933353b), ('c5ti3ho8485svmij8t7408vcomjoiir9', '192.168.0.224', 1527785944, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353934343b), ('r9eqf1fv2qq31g4ehtf0jtofdt1g1487', '192.168.0.224', 1527785953, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353935333b), ('51l8h5sskhokmbl9udf2ch9jeg7k200p', '192.168.0.224', 1527785962, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353936323b), ('u82vk2589trkl531k4dtg2hoqvkpd4qm', '192.168.0.224', 1527785972, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738353937323b), ('gld1fsfvltmcn9flii0d7dd373jiiq4i', '192.168.0.224', 1527786014, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363031343b), ('27ijj0ia1fh5d850bso77dmrtbofbmma', '192.168.0.224', 1527786045, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363034353b), ('j52snqr8bm7ii5jd408uu607pfih26ri', '192.168.0.224', 1527786074, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363037343b), ('3a9hon9msfja2acgufhptjb5qks566vs', '192.168.0.224', 1527786085, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363038353b), ('3100jcivkig6ekk9p0j1m4ufhi6k0jvr', '192.168.0.224', 1527786105, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363130353b), ('psiuri2ue4rkjemtfl431pqs99j5p8tm', '192.168.0.224', 1527786132, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363133323b), ('ist76dnb5p34unfj7ohcvfn06a9cf2k4', '192.168.0.224', 1527786145, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363134343b), ('s4miu81onijcmv6dh4k067nfe8ut59kg', '192.168.0.224', 1527786161, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363136313b), ('9gbtr1am1i1h7ar5n50jd8fu4euqm5en', '192.168.0.224', 1527786170, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363137303b), ('usmua92bjak2mes04lpc3db1oead7703', '192.168.0.224', 1527786179, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363137393b), ('cfk9u9qep5so0ouru8mvom7s9m3if7t4', '192.168.0.224', 1527786190, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363139303b), ('vmcbr7dcv8qc25gf8e94a79a9sbjb8cl', '192.168.0.224', 1527786200, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363230303b), ('oak5gu7nge4sfteb98901ib7k5f9c5pk', '192.168.0.224', 1527786210, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363231303b), ('fb9nc2gfjvjacj8muqlt419eu43creju', '192.168.0.224', 1527786219, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363231393b), ('kj8qvp1lanm66uf8j3g856634itgubha', '192.168.0.224', 1527786228, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363232383b), ('c4qnhuf7g2f4268citudrddd4k8pk2lt', '192.168.0.224', 1527786237, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363233373b), ('0ioj44ejmsr0n97i4apr62e2i04vvgk9', '192.168.0.224', 1527786246, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363234363b), ('o3j95epamsme8ge6jm1r95ml2kf3ruqr', '192.168.0.224', 1527786255, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363235353b), ('ru7nhn30vdh762sr2ccs385i3c32hob3', '192.168.0.224', 1527786264, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363236343b), ('rcji04jfrgdq5gl9gd9sav4aionvnhq0', '192.168.0.224', 1527786273, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363237333b), ('uc0co2rql0v0pop3svgepvddaj8g65bc', '192.168.0.224', 1527786283, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363238333b), ('4qmnaqc823m2fhsefvi06lbveqle1inp', '192.168.0.224', 1527786292, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363239323b), ('dq6kmmn8ud7828q2cj4704n47ul0r2i4', '192.168.0.224', 1527786301, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363330313b), ('8ihq57d9mcskcvfkaff6t8ee1r7eeun3', '192.168.0.224', 1527786310, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363331303b), ('bspt84ltbd1hkksmpifc8rintafveo2r', '192.168.0.224', 1527786320, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363332303b), ('amtd8horjcafb8bj4012cj5h749qpth3', '192.168.0.224', 1527786331, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363333313b), ('5cg9cvl3s4t7i7vlskvb8tastlne6ihq', '192.168.0.224', 1527786340, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363334303b), ('369pmaukflg0utaib4qk5p3ttdhrhl09', '192.168.0.224', 1527786349, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363334393b), ('6immda897h2itnb6cdfi6bdtn5k684i7', '192.168.0.224', 1527786359, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363335393b), ('6abr7sca59r2fc04fg899cnhtsmb92d1', '192.168.0.224', 1527786368, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363336383b), ('srvkl17b01jdn9i7onjh46f10ci7t4ss', '192.168.0.224', 1527786377, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363337373b), ('vho20bgsmbbq1hqm8kuujoa2b84u05rj', '192.168.0.224', 1527786387, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363338373b), ('2ffcnhhp971j1i7nq6h4u8lav51psh6p', '192.168.0.224', 1527786396, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363339363b), ('38nvoq99oj951ka2e425t4l0jrbr15pk', '192.168.0.224', 1527786405, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363430353b), ('p829ecdtgelhf0aje086t2dod3i8h85o', '192.168.0.224', 1527786415, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363431353b), ('6v3a7g3mn8mir6t5htnokmhgq3m85qce', '192.168.0.224', 1527786424, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363432343b), ('nc8bhln5hinqbkei6a8830ffgrna47jc', '192.168.0.224', 1527786433, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363433333b), ('d4slnaiv9ll68vors1bkgcuqah3vni9j', '192.168.0.224', 1527786443, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363434333b), ('q1j2dci648ce3n701nlaaiaegfs9ehlu', '192.168.0.224', 1527786452, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363435323b), ('jtd77t0tme8j58fes2c7fbdr87i1cbr4', '192.168.0.224', 1527786463, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363436333b), ('hhsvg39vkcnmqeque87epq30tubl9vcb', '192.168.0.224', 1527786473, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363437333b), ('7e8k7kom23dd3dtgbl14d2e8a8va44tg', '192.168.0.224', 1527786482, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363438323b), ('7vjmu0pshsaj9gkbtfbf6j125t8rhb3h', '192.168.0.224', 1527786492, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363439323b), ('8pvkpgpuubvd6f74v48v8v4d0s9f5mdu', '192.168.0.224', 1527786501, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363530313b), ('qthrc3sno3q5g94a8oo0260t83rmn922', '192.168.0.224', 1527786510, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363531303b), ('52bj7cto6i9ntvmpr6dd0vq4lk5ojes1', '192.168.0.224', 1527786520, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363532303b), ('1i3gpjr8inc0o3li7plfrkjbpmeiq2jr', '192.168.0.224', 1527786529, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363532393b), ('unk4h8op35q778n4i3o19aaespu6i3qt', '192.168.0.224', 1527786539, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363533393b), ('3tpjqsia8kbu64app4h7f702qi9dmca6', '192.168.0.224', 1527786548, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363534383b), ('se7r84g69de69dokkrdktnloscld36dk', '192.168.0.224', 1527786557, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363535373b), ('ej2hj1e4kstepota85vparmttqrpv9n2', '192.168.0.224', 1527786566, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363536363b), ('njgefephhd19e3hp7qdtsp25r6on1q0p', '192.168.0.224', 1527786576, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363537363b), ('dirkljiof836r04c2q6h88v30nojobfi', '192.168.0.224', 1527786585, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363538353b), ('it3v3a0ifiba22kpotad7vc3ddcfdrsa', '192.168.0.224', 1527786594, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363539343b), ('bau23gtcn3dqbhh7e4nph9a1sb37ltn5', '192.168.0.224', 1527786604, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363630343b), ('j09ukdqm4vhslkgnonfklgcvuovgq7h3', '192.168.0.224', 1527786613, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363631333b), ('tflv7djo4360gbnkblo68fkoccs6k0j6', '192.168.0.224', 1527786623, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363632323b), ('m0lq6jroicvc41rlt3apihens5r9j42p', '192.168.0.224', 1527786632, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363633323b), ('2tc26u2pckhrgrr74uc4j78hq4b8dh0h', '192.168.0.224', 1527786643, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363634333b), ('m05f059g81i68npm01nl7s7d7qii8s1h', '192.168.0.224', 1527786656, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363635363b), ('5ahpganek8b0e77pgm9u3f6obmkvfi4g', '192.168.0.224', 1527786666, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363636363b), ('b0147ae0nd7i4dqa7l581tae43h1thbm', '192.168.0.224', 1527786676, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363637363b), ('gthqkor593tte1guhbql3g0enrqip677', '192.168.0.224', 1527786685, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363638353b), ('c7vv46qfnglgvi94mp1t7m4tfhk2sioa', '192.168.0.224', 1527786695, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363639353b), ('vnh0don8euksa3noud7oaja72ru0b7li', '192.168.0.224', 1527786705, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363730353b), ('h1erg37b9ovh5tfqmch90cjijuqhcmd5', '192.168.0.224', 1527786714, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363731343b), ('hsi03tmgeidout69r9gp495en3s8o2db', '192.168.0.224', 1527786724, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363732343b), ('l49ihp3diik35t3b84cbjvvpofjbn0j9', '192.168.0.224', 1527786734, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363733343b), ('46fqprkhv5fn6a1sq3ifg8vv2ptthneo', '192.168.0.224', 1527786743, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363734333b), ('aku5uhapc3fr3opsqncniv4t4pe250vd', '192.168.0.224', 1527786753, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363735333b), ('et5rp0j7bq4smqnq42tm8u627tq8fqup', '192.168.0.224', 1527786763, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363736333b), ('stq7ooqgu00j1omd2r0uiohme9kf5qb2', '192.168.0.224', 1527786772, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363737323b), ('tf7t7tv0t05qvao2v2poifrt1hplmuh9', '192.168.0.224', 1527786782, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363738323b), ('feai58htq3mr202h8bqnq14i6ilc50oj', '192.168.0.224', 1527786792, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363739323b), ('4pt26psv0pfemiaga2ue87l2u42h4fca', '192.168.0.224', 1527786800, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363830303b), ('f4j04hh692qaqsp5bjakmojmrpm7fbne', '192.168.0.224', 1527786810, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363831303b), ('sa4alrceo7c0dbaoepddg6dj986r2qsh', '192.168.0.224', 1527786820, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363832303b), ('gh1oe89vnc7dej9t0spf5r2rttshepu2', '192.168.0.224', 1527786829, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363832393b), ('g1ld90c827hvmsnb1drghbo2pdvpoej1', '192.168.0.224', 1527786838, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363833383b), ('56jinl83eamb08fcc8npf8gd4fegic5f', '192.168.0.224', 1527786847, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363834373b), ('ee7ah4cqgu9diiqbkrm4otetb0blbvhd', '192.168.0.224', 1527786857, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363835373b), ('qdvmhnrjlhp2e7mkk220bed8p4lgdi70', '192.168.0.224', 1527786866, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363836363b), ('iiurjb7kthd43ktn7f8nos5tkterf0qj', '192.168.0.224', 1527786876, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363837363b), ('q072lk8r4ae024j532ik8eugmmrvjtu4', '192.168.0.224', 1527786885, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363838353b), ('q5bee48tcoouhlshpcnvhasr8h0ogkl9', '192.168.0.224', 1527786895, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363839353b), ('dgsf5sbbhmj0u2ppum99t2aibj2df3vc', '192.168.0.224', 1527786904, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363930343b), ('ef7gml77j0il0ip63frgn4ud7n8jvi2m', '192.168.0.224', 1527786916, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363931363b), ('09dc8sparu3dophm737v20kv5m5knl50', '192.168.0.224', 1527786927, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363932373b), ('cp1pi793t9v3gpc1c9522to0gkbrlnn3', '192.168.0.224', 1527786936, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363933363b), ('l0tgdkpse5g4tavsac2n5ac6qvbvsvbd', '192.168.0.224', 1527786945, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363934353b), ('tpsg2c05bq5qmk1skr8cto5ucfq8acp2', '192.168.0.224', 1527786954, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363935343b), ('47s3ueebp3ime85tla0n3mnilkg1s87q', '192.168.0.224', 1527786965, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363936353b), ('moe7f7tbb8l5mg4dipqpuputulpi7c5b', '192.168.0.224', 1527786975, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363937353b), ('vfsrrmtjoirc0vp9lc82jcdv2a6irrud', '192.168.0.224', 1527786984, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363938343b), ('p1nfd5p7ekpj7qi3a0tenrsif7mohh07', '192.168.0.224', 1527786996, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738363939363b), ('nnh25t3o8gl0s303pti5drrcec0qbmda', '192.168.0.224', 1527787005, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373030353b), ('vh5oiroljf8blttdq7ud8kgqr29vdqn9', '192.168.0.224', 1527787015, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373031353b), ('j2eup4pnecaadkuctfghk8v8atf1vvdc', '192.168.0.224', 1527787024, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373032343b), ('1hmqhjttn1rlih97jsdek6p0tb49jvr4', '192.168.0.224', 1527787033, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373033333b), ('ou3p5t10aaflkv60iiuiurkcdmeva6g8', '192.168.0.224', 1527787043, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373034333b), ('45geb8dgna24kub7gf8lltjg58puikl0', '192.168.0.224', 1527787052, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373035323b), ('dimn2lk0bflejj5delrk3ijaspiarrqj', '192.168.0.224', 1527787061, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373036313b), ('mbbrcc5qmv97tju2oqu0a62prch0qo7g', '192.168.0.224', 1527787071, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373037313b), ('u1vkf05l5shr2p6frnhofvfudmng6hk6', '192.168.0.224', 1527787080, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373038303b), ('h8657gic37dehfhr73skr6koh8m2r1n6', '192.168.0.224', 1527787089, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373038393b), ('acmrhj02nsvcnu3m55j3u77lr2f74fmu', '192.168.0.224', 1527787099, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373039393b), ('6hlb8uehcm8ulslmv1neq17nmeoega84', '192.168.0.224', 1527787108, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373130383b), ('qvuo7kltgtrfe6iiku662rkq33vv9vj0', '192.168.0.224', 1527787118, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373131383b), ('smlpd4gfkovqms478g3tn93a6l5ljqc1', '192.168.0.224', 1527787127, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373132373b), ('clk7vsur2nlcbr4584sn9l2seu7c6mlt', '192.168.0.224', 1527787136, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373133363b), ('o0liqropdv0q17e4g3ih4uetcj0v9g8k', '192.168.0.224', 1527787145, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373134353b), ('jsu2it5snvc29uph700am55s32v7fp84', '192.168.0.224', 1527787155, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373135353b), ('mcvlce9nj2iaf9g9khhmbcl9npo4m8mr', '192.168.0.224', 1527787164, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373136343b), ('uol31ql69v5f3qkc4sjf5r11idpg704j', '192.168.0.224', 1527787173, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373137333b), ('ondjtm9kpqvsrm7pg0ga7a9toeknmka7', '192.168.0.224', 1527787183, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373138333b), ('kbp50neeng724dmc3fpt6mik7nhlnufc', '192.168.0.224', 1527787194, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373139343b), ('lnqqck7nplfnd37gmc7mlcqv2utv1q40', '192.168.0.224', 1527787204, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373230343b), ('8cul7j2a4rdibqhckbt47jsl348nbksd', '192.168.0.224', 1527787214, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373231343b), ('l13g73254fs1uhqne0m3nopehfupadho', '192.168.0.224', 1527787223, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373232333b), ('5q3v8ujslhc13l93go0cdbk1eksjg5ad', '192.168.0.224', 1527787232, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373233323b), ('lapk75hpefenhojftu1bo2c51o82l987', '192.168.0.224', 1527787242, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373234323b), ('tpnr1hbmru7p81jtf4d6qrv34v90k1pt', '192.168.0.224', 1527787251, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373235313b), ('pj68iek9mamrigbfqoipat9vhf18e0gi', '192.168.0.224', 1527787261, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373236313b), ('dkcqe5a5jbtlnb01a36ifoivh61sige9', '192.168.0.224', 1527787270, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373237303b), ('5ln60llg9lnclu2fl2j7k5hbf8769a0f', '192.168.0.224', 1527787282, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373238323b), ('0iprkiviq5jr88k7qlvhpqjo1t51m4uf', '192.168.0.224', 1527787292, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373239323b), ('4gpj582d4afbrvk3bc5hi4mpo8bde0it', '192.168.0.224', 1527787301, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373330313b), ('jqgrs4egakd04avtigm9pb9sanhnqdhj', '192.168.0.224', 1527787310, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373331303b), ('ireuc8t7qhsdlqdud8vp928cl9rro3v1', '192.168.0.224', 1527787319, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373331393b), ('vjot9te1vd3pv259q35qhq4ver0nr6l3', '192.168.0.224', 1527787329, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373332393b), ('ktme8hm7rkke0eqrv1glmhqsvkr1tk43', '192.168.0.224', 1527787338, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373333383b), ('ordg3bmfpsabba0r5p1bo5bf7skdddbi', '192.168.0.224', 1527787348, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373334383b), ('nn5ego4p7mhp1m3sgoqeruhumepiovvg', '192.168.0.224', 1527787357, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373335373b), ('6c3bpjrpdmrt4ctumibbhrav04p7bvsk', '192.168.0.224', 1527787366, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373336363b), ('gv9e984sifjtcisgapc0askjc9v3romn', '192.168.0.224', 1527787376, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373337363b), ('esbrp0as124dkts5t2q7kj67tknu3jtu', '192.168.0.224', 1527787389, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373338393b), ('vs5igjaoi4gono9b93a6hbu90kfkv6ji', '192.168.0.224', 1527787400, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373430303b), ('4g6fg51k5d2roq62de2r5rldbrirjncn', '192.168.0.224', 1527787410, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373431303b), ('glgjsv7p1mj5rjihf1qkoubd2fbo2oa0', '192.168.0.224', 1527787420, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373432303b), ('9jdi1g96tcnrnp36u86tcdv73ccg95fh', '192.168.0.224', 1527787430, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373433303b), ('9jvjl8pagu530tb39ipnto8f58a2bjf7', '192.168.0.224', 1527787441, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373434313b), ('gmhtqpp6t1buap7t82u5rqg1e60fmri1', '192.168.0.224', 1527787451, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373435313b), ('4q7klebs8351tsvs5ostnj1lq97urs7h', '192.168.0.224', 1527787460, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373436303b), ('dpjfntvmdm4u63jh4e28g3987b0n4c9h', '192.168.0.224', 1527787473, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373437333b), ('a6icdnui6vuvn7jkocdu5s1l2nt45qnb', '192.168.0.224', 1527787483, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373438333b), ('48gcek1g7ffk2tgkuera0pceta0s8dec', '192.168.0.224', 1527787492, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373439323b), ('9md42atbpq555hnf4armcfs2gndd1p4b', '192.168.0.224', 1527787501, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373530313b), ('4emq9u055uskpa27qi72o0lousn5jk7l', '192.168.0.224', 1527787510, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373531303b), ('uvj6bafjtmfhesdjqv9absk9bq18o5rn', '192.168.0.224', 1527787520, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373532303b), ('kv0nvj3erbrl7ccvk4rf23mqi0qcosen', '192.168.0.224', 1527787529, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373532393b), ('ab9hkib49gsg7nneknh9o5j6o217ccnu', '192.168.0.224', 1527787539, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373533383b), ('7d87jb80b2vok3p9hpukmankfj106o9a', '192.168.0.224', 1527787548, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373534383b), ('bnpu8f1kl7r3a16fg8p85f010ej79g2e', '192.168.0.224', 1527787557, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373535373b), ('fdm9ert49e3ab0saanbedlkssko581f8', '192.168.0.224', 1527787567, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373536373b), ('d8kklukd7uotq3scv5ahum9h46o5jfi7', '192.168.0.224', 1527787576, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373537363b), ('8n4m2baa7e8eg7g9rndolomnq8eepv4r', '192.168.0.224', 1527787586, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373538363b), ('3mjgk2o3fca3bgpcr1vgr5jojoqc8rab', '192.168.0.224', 1527787595, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373539353b), ('ud836f1eqogmure582l949l800n4r6ib', '192.168.0.224', 1527787605, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373630353b), ('tetiv9n61l9hcp1dlumiik84nr996f0v', '192.168.0.224', 1527787615, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373631353b), ('uh1k6okmsblph1t7kivpho953mpjrp8r', '192.168.0.224', 1527787624, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373632343b), ('mmb9k1ah5qn560ub6ssimj0h6msddna3', '192.168.0.224', 1527787633, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373633333b), ('q5go1k5niq4ju7e7enhc0ja0m19relqj', '192.168.0.224', 1527787642, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373634323b), ('ohpoh6ukuoecs9rpocvqcqorv02dmbtq', '192.168.0.224', 1527787652, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373635323b), ('lfigqi8h4pe9tbvivjlfs88ik95m19fm', '192.168.0.224', 1527787662, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373636323b), ('qn211cscpng54ht0upk2355pu9klt7a2', '192.168.0.224', 1527787671, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373637313b), ('olgbrciobci2d2to18ei3geiaetga5rh', '192.168.0.224', 1527787687, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373638373b), ('8svvm67k7fqcgcrd5d01112m6aqiiiqv', '192.168.0.224', 1527787697, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373639373b), ('50c8l9t4hehns98auu28464h53tsb7uq', '192.168.0.224', 1527787708, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373730383b), ('g4jn4ogtjv5h4u8oq6vub9g1fq38vncj', '192.168.0.224', 1527787720, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373732303b), ('95trs49prpsapikej8ko2cefssf627ps', '192.168.0.224', 1527787729, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373732393b), ('4qia97vh3p073ngnul7mbojohbtpj01l', '192.168.0.224', 1527787740, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373734303b), ('h57bi2q1a3ifamkffapdelnahvvp9j1c', '192.168.0.224', 1527787749, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373734393b), ('1l9aj1nadtu1m6c7ec21ick9rkmjkmvo', '192.168.0.224', 1527787759, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373735393b), ('0b087jbta5c43rc2ulajd3814q744o2l', '192.168.0.224', 1527787769, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373736393b), ('03vv8pb3b5hjgnbg7jk3i46kpkbb1lhk', '192.168.0.224', 1527787779, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373737393b), ('t3e58odiove7jpku5lrgvj33csb5tlbo', '192.168.0.224', 1527787789, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373738393b), ('u1n4rkh64gp7064g0i9jppdkjrajmgeo', '192.168.0.224', 1527787798, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373739383b), ('d2fuvjsa7c96sk62thfd4psh2gufju57', '192.168.0.224', 1527787807, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373830373b), ('o5clhgiaggo9b47oh63n55m7e0an4rua', '192.168.0.224', 1527787817, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373831373b), ('9j8cl1ehih3jbu076jhnag4r5ciqb1b3', '192.168.0.224', 1527787828, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373832383b), ('tkinimb1397j06cbkjmr5ospsrqcm1tc', '192.168.0.224', 1527787837, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373833373b), ('4524trbmq8c59vtqhh4h8geaa05mfi6b', '192.168.0.224', 1527787847, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373834373b), ('5ijdv8jre7bqd5lf8u9vtd676f18svd5', '192.168.0.224', 1527787857, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373835373b), ('vi1qfh2b8e3jouem6sb0afqk14u8il49', '192.168.0.224', 1527787868, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373836383b), ('s8b43vlqfllbetbadqmcs6384psuhmn4', '192.168.0.224', 1527787877, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373837373b), ('hqtjai4kda83nng7bi22plhedf6ocses', '192.168.0.224', 1527787891, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373839313b), ('t7857191idct1qp7ea5r5o4lrd19phd5', '192.168.0.224', 1527787901, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373930313b), ('7kj3p84452dmvonqlkn6n4rm5h54tb3n', '192.168.0.224', 1527787910, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373931303b), ('uap5asl920o5f7l3tn47fo9f66qtqp5b', '192.168.0.224', 1527787919, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373931393b), ('2c7d3bp55a6eptb5f27a82c2c28jo1id', '192.168.0.224', 1527787929, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373932393b), ('a55qmfqal1885lf4ffr2sp7ed31lg9ql', '192.168.0.224', 1527787940, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373934303b), ('i64qmbhiapg7sk3q07v3aik7igpmftng', '192.168.0.224', 1527787950, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373935303b), ('kv8osustjb8md75fih7ksbvrhgln7q1u', '192.168.0.224', 1527787960, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373936303b), ('4bet5vakb4iqa9ecfi9v6hqmcju2dujo', '192.168.0.224', 1527787970, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373937303b), ('7udft1kqjksqsoo9sqq5catedi7hbkp2', '192.168.0.224', 1527787979, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373937393b), ('qocvdoc6spo81plnacffm9184oug9mrd', '192.168.0.224', 1527787990, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373939303b), ('grlj3f65hguv7pu8he6aulct5009p0pm', '192.168.0.224', 1527787999, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738373939393b), ('bdv6v7o6dm0nl764nof74l6h40h7thvj', '192.168.0.224', 1527788009, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383030393b), ('4ntpp88jro6pi91s69h7b70go6q9n9mo', '192.168.0.224', 1527788019, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383031393b), ('3oqoo37rrobsfoap6l8f665jo8v5vjg7', '192.168.0.224', 1527788028, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383032383b), ('5mkhn0s1haduue7cioesv7796n4isr0o', '192.168.0.224', 1527788038, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383033383b), ('crgqsmhk708kbclvrukmj15g5m8gjnp4', '192.168.0.224', 1527788047, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383034373b), ('9h2cufddkuldkof0k6iqqa51mo5kv75u', '192.168.0.224', 1527788056, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383035363b), ('ld8igmluhl9u2dk77m752fvdp15007h5', '192.168.0.224', 1527788065, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383036353b), ('27kq05jv3fmtm75tuaissvcjsilscsch', '192.168.0.224', 1527788075, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383037353b), ('daaalt9j5j5se1hr72srushcs006jnk6', '192.168.0.224', 1527788084, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383038343b), ('dgr828i4c7mlro0lbiu94gt8ijlv83qk', '192.168.0.224', 1527788095, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383039353b), ('epeunk0c71l8ro4et80o92qf5j7pc9em', '192.168.0.224', 1527788104, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383130343b), ('j0hi1h6503vvjc81153cjfs9ekggncjv', '192.168.0.224', 1527788113, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383131333b), ('e3ps41o1j6b89v6vg1o73p2a6890b6t2', '192.168.0.224', 1527788124, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383132343b), ('bibqa7agb52fh4gaue8h37s8402c3324', '192.168.0.224', 1527788133, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383133333b), ('os4eg47lejhl04cleboieip5nf9j9rd5', '192.168.0.224', 1527788143, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383134333b), ('t0s1pek9ms169k8gsdhul8379ulaq01f', '192.168.0.224', 1527788153, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383135333b), ('5cl3ljf9toocrlcuk5e1vaji1hs1njs5', '192.168.0.224', 1527788162, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383136323b), ('jn4f2rl98u4377g01ogi9gle0dvormhh', '192.168.0.224', 1527788172, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383137323b), ('59omp78cregfobfattl0k33qq76tch5e', '192.168.0.224', 1527788182, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383138323b), ('betu99t4bagocef4mp40ta8i0kn7rokg', '192.168.0.224', 1527788191, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383139313b), ('m741cg53f50o89m7rrgq5s6hdkf9fv78', '192.168.0.224', 1527788201, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383230313b), ('c699rdgnnig52erf27o2r65ndmcpcgi7', '192.168.0.224', 1527788210, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383231303b), ('pghq652esr203bcbtlprtdl7jj60q7ne', '192.168.0.224', 1527788220, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383232303b), ('mh2n426n8gjj4e715jkge9ckeevv1oce', '192.168.0.224', 1527788229, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383232393b), ('jbd4e1aj8dlji8ja96kvbjkkisk4p3ea', '192.168.0.224', 1527788238, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383233383b), ('ukaljoiq7p3mrpj06b5oaf9b3heqd7ha', '192.168.0.224', 1527788248, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383234383b), ('hoi3n3jd95k45b5cf946vugqptiatv2d', '192.168.0.224', 1527788259, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383235393b), ('67f84rmnrln56ma09j3t7m71pgm6buek', '192.168.0.224', 1527788279, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383237393b), ('02n48qfcr3vgrge6qmfinm4hgkc0l3cg', '192.168.0.224', 1527788289, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383238393b), ('qb077jhoctp66cronfpkh6prqs6mud2u', '192.168.0.224', 1527788302, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383330323b), ('j4g3vvij2nsntth08l0sholit69do2oe', '192.168.0.224', 1527788313, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383331333b), ('cnje3lbvg5dguak8388c89res0p57gv8', '192.168.0.224', 1527788323, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383332333b), ('vmjk2uudfj5a7nffmmsvrj3b8v4b0p7k', '192.168.0.224', 1527788332, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383333323b), ('1e6a9acnlovv0eu9rdpgsdjefga5rffj', '192.168.0.224', 1527788343, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383334333b), ('gpsvec4j9b1arfpgi2un4cq2epiubnql', '192.168.0.224', 1527788352, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383335323b), ('nks0jivnd13qcf8jifpqmh7vlki42pbg', '192.168.0.224', 1527788364, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383336343b), ('lgnk2m5thumuohho05eo4qlkrk0nf0gf', '192.168.0.224', 1527788373, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383337333b), ('pctfa9tv789prb5bli1q0vthal3dka90', '192.168.0.224', 1527788382, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383338323b), ('aicadua254a3erjrk33opejuk8gm0sjq', '192.168.0.224', 1527788393, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383339333b), ('koeveupkmun7okbj5s5qlt2i75crja70', '192.168.0.224', 1527788403, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383430333b), ('kt4mi1cl0oigb2f1gp2itchgak9gisi7', '192.168.0.224', 1527788412, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383431323b), ('h0hegc0o2d0472fhiabde61cp0o9fdor', '192.168.0.224', 1527788421, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383432313b), ('vvvvsnddljub3goh8ia8jfacc8uuhfek', '192.168.0.224', 1527788431, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383433313b), ('u4nqbm1rmkc987qoou13t5j808isii19', '192.168.0.224', 1527788445, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383434353b), ('t29no23uo9r2lr7ar7roffibucapqadn', '192.168.0.224', 1527788454, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383435343b), ('75elpgtucj4jdvhp0o70t3dugbdj09gm', '192.168.0.224', 1527788464, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383436343b), ('tb17okov696e2329q3o1s7hmd64opqa0', '192.168.0.224', 1527788473, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383437333b), ('3df0669gi7jm24194oensiflqavgv42g', '192.168.0.224', 1527788482, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383438323b), ('kv0olm5kntapjhit78ru2qn3a50a5ke9', '192.168.0.224', 1527788492, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383439323b), ('n5o6u89atrsmg4s61u00srcjrg0lekeg', '192.168.0.224', 1527788502, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383530323b), ('5ui014phv9iv0u6409shnghnrptmuuqm', '192.168.0.224', 1527788513, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383531333b), ('53v2nb3hnpf0l50cn7cf5e1hujvh7rv5', '192.168.0.224', 1527788522, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383532323b), ('e2l92g7icf0tgv7qnavufn1i2linafdp', '192.168.0.224', 1527788533, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383533333b), ('tp2uks3r2kcm7d3733e485gkmjmr79h9', '192.168.0.224', 1527788542, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383534323b), ('ust0e58ns84kv9r6630gq81g9qthh4ku', '192.168.0.224', 1527788551, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383535313b), ('3neng459n03j9jjftcap7fln4t3u3e0a', '192.168.0.224', 1527788560, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383536303b), ('82g3j02lhdda2pknimo3lkr2u9g31apq', '192.168.0.224', 1527788570, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383537303b), ('19q1cbhm9fr5gi0f0f43g2klb08caure', '192.168.0.224', 1527788579, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383537393b), ('jmeuqaun685vnh6ekqppvlvdaej0kffg', '192.168.0.224', 1527788590, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383539303b), ('94l81kcd36kq188c3s397rbif61e7nap', '192.168.0.224', 1527788601, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383630313b), ('8v1mkj1chtrgot6e19jgl0uokpcrkjf8', '192.168.0.224', 1527788610, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383631303b), ('3bb2pahomo5ubomdsntl7dn3fg2ouia4', '192.168.0.224', 1527788620, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383632303b), ('70u6o51o1bv646tv89iqnbdlg045sbn5', '192.168.0.224', 1527788629, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383632393b), ('hnrodnvuikat905v30pc545s24hceadf', '192.168.0.224', 1527788640, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383634303b), ('uemkvlefrdkt7ikq2li9m1jdlfq5b12g', '192.168.0.224', 1527788649, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383634393b), ('r9m7a8r5tnphp0p51hnfflol2nbbc5dm', '192.168.0.224', 1527788660, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383636303b), ('19ep6iqta71r2390r3vdfopbugomdm20', '192.168.0.224', 1527788671, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383637313b), ('kouada443h1eu486bmr0ln30p22pr82p', '192.168.0.224', 1527788686, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383638363b), ('bcve5br0re02ho7ejaf107j8jiqdl28r', '192.168.0.224', 1527788697, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383639373b), ('78ho1su748noqfjbf4duo6dhjcf3e79c', '192.168.0.224', 1527788706, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383730363b), ('2c20rb7lbrhgf0qthlkg46cpg90is29q', '192.168.0.224', 1527788717, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383731373b), ('n48u53h918la77f6ivh7mal276isb3pj', '192.168.0.224', 1527788727, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383732373b), ('tj7njpjksao65j9lmq0vd3g4hr7sdgbn', '192.168.0.224', 1527788738, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383733383b), ('lo45i0ca154ijvqdo7djgb414ehfgtq9', '192.168.0.224', 1527788747, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383734373b), ('7vikmmhkh8bcbig4vaciffp2etdfcu41', '192.168.0.224', 1527788757, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383735373b), ('h089f9ookh3cn0a7vgcr812p69u438li', '192.168.0.224', 1527788767, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383736373b), ('as9ogpjr9rvorilbh0vdq2pdqktped05', '192.168.0.224', 1527788778, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383737383b), ('7qm7u8olijeq4365ip5p327s40525pq5', '192.168.0.224', 1527788787, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383738373b), ('o4g2uhtrsnj6mq8b40td3pa5kv7icdc9', '192.168.0.224', 1527788796, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383739363b), ('t2nfbffep7uon43ue0sb8pe9samfr79u', '192.168.0.224', 1527788807, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383830373b), ('hcnorhmclrlki0rku9fbc15uec73ghkd', '192.168.0.224', 1527788816, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383831363b), ('fm11fcopgluu8gmj0ob1kcv2ut3pqu0h', '192.168.0.224', 1527788825, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383832353b), ('sr6i8igoshe9japaggrpb588np5rt61e', '192.168.0.224', 1527788834, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383833343b), ('ch6pue2r1l4b7von0vviuilquo5k8ebl', '192.168.0.224', 1527788843, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383834333b), ('fd31suie4n1rn6nrgrt4gi3c2pdv20m8', '192.168.0.224', 1527788852, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383835323b), ('16j7i44sdf5ef1ikfqeg2c7iuu579kco', '192.168.0.224', 1527788861, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383836313b), ('tjstgbe347b12aiciqs8dqic9b0jfj90', '192.168.0.224', 1527788870, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383837303b), ('13pjku9capta05ir9ra7lha4deadunuc', '192.168.0.224', 1527788879, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383837393b), ('kku2pvhsbjidhb6g7ruh275a7292s62a', '192.168.0.224', 1527788888, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383838383b); INSERT INTO `ci_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fajj8mj3cjenml1hkbh7vb05ii0etknf', '192.168.0.224', 1527788897, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383839373b), ('id7i9usignef08nivqp8pa7lbkfsedj7', '192.168.0.224', 1527788906, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383930363b), ('1dlvlfjmd2h4kic1q9cev0hkum8vrtnc', '192.168.0.224', 1527788915, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383931353b), ('rdgk5uqj8ppm80458qn8pl64mj6p95is', '192.168.0.224', 1527788924, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383932343b), ('fpbrkldfipm4nvp8lmomqqrqp9fr5bme', '192.168.0.224', 1527788934, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383933343b), ('097jetbqu1ccarbqg3vls6tv1ue1iptm', '192.168.0.224', 1527788942, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383934323b), ('ps2t1436r63flg9saj2hp2ct5mqid4mg', '192.168.0.224', 1527788952, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383935323b), ('9iud78sdj7hgemi71ts1bdcl2dl9piku', '192.168.0.224', 1527788961, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383936313b), ('cuipudea7e4mq0596ib4o77j82tpeaps', '192.168.0.224', 1527788970, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383937303b), ('kuadrmthuikeirlt9jmhkjlubd53n88p', '192.168.0.224', 1527788979, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383937393b), ('kd8pj25ssrbglqv9sboa8gblfj9e1jdi', '192.168.0.224', 1527788988, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383938383b), ('knf7kdgmkr034noe4pnue684msa2ku4h', '192.168.0.224', 1527788998, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738383939383b), ('o6e6rqqk3lmoq67rtb2j247aburhe8q6', '192.168.0.224', 1527789007, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393030373b), ('nq8hcv6ng8504lndlr6mqfb995p6r02m', '192.168.0.224', 1527789016, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393031363b), ('teft4597halb7jqgvsp3e37nks0uhm34', '192.168.0.224', 1527789025, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393032353b), ('4abcfs58rpr1s63j7mk24vcuv4oqc7fc', '192.168.0.224', 1527789034, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393033343b), ('0en4md1kv23if39cn7kmjg3ffm8e95aa', '192.168.0.224', 1527789043, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393034333b), ('i4rlceshppr160roms00squlfrdv3c01', '192.168.0.224', 1527789052, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393035323b), ('6q40qvfosk9mqtbkobqep32ej8ep61gt', '192.168.0.224', 1527789061, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393036313b), ('8711np2ikq3b7trrnol42mi7qlonf0u4', '192.168.0.224', 1527789070, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393037303b), ('64gv6lutthh7era9gl0gl2v09d0d54hf', '192.168.0.224', 1527789079, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393037393b), ('tnnjhmndv4ssbi1os10be62qmu62loeo', '192.168.0.224', 1527789088, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393038383b), ('rk9a8vcpsv0rh9gl7enh4mnedigjsr9p', '192.168.0.224', 1527789097, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393039373b), ('57bg21s5rttckf8vsri5nj4dm8n0b85d', '192.168.0.224', 1527789106, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393130363b), ('bkbhjauurp5e1miabb8pbi54qtel7ath', '192.168.0.224', 1527789115, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393131353b), ('1j0h4tdhnmlnkebuag3m303ffndd25br', '192.168.0.224', 1527789124, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393132343b), ('gjqiv0s2jj4th1hd41o87mpfdnfbbke6', '192.168.0.224', 1527789134, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393133333b), ('vv64glk2mfud4otece81iqd2ou01dtnr', '192.168.0.224', 1527789143, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393134323b), ('e1ggudk63rohio7hn9kcruas6d0cdgv1', '192.168.0.224', 1527789151, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393135313b), ('7l7c98qhjic1k3ia15ukrl7ob9r33jet', '192.168.0.224', 1527789160, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393136303b), ('9hj5rsfjvhuipv2ru9taddn4se5qe12i', '192.168.0.224', 1527789169, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393136393b), ('q816l2sooqg0jl4u1ffa3j81bprqeen7', '192.168.0.224', 1527789178, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393137383b), ('kichdq137rit20js4l1pmvvft082uvbf', '192.168.0.224', 1527789187, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393138373b), ('q3o7u3i4lpa7bifihd6nnt39pdv1t1ru', '192.168.0.224', 1527789196, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393139363b), ('8n17ema7134lcvigppge59dj8p9j5qnj', '192.168.0.224', 1527789206, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393230363b), ('gbmqthllfac2j2e7qadvucm6mcv1p469', '192.168.0.224', 1527789215, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393231353b), ('ivp03v8aq7g4tv85mk2hh5kcba6t27kg', '192.168.0.224', 1527789224, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393232343b), ('34mnoq0807l4bk8fchma9gp7sl6jia5o', '192.168.0.224', 1527789236, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393233363b), ('m2pqdqil7g4lek67rsk7c410fishn327', '192.168.0.224', 1527789246, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393234363b), ('atfvd7fk38bo3fi663ppe9v9irnq741e', '192.168.0.224', 1527789255, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393235353b), ('jpbnaa2eunifrm1g95ogiev3n2r3tdfc', '192.168.0.224', 1527789264, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393236343b), ('37fkof0e01b29503ua8d4opd8qo3agg8', '192.168.0.224', 1527789275, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393237353b), ('rof7rf8i64dgrr4qtapc8jtl2grtjqmd', '192.168.0.224', 1527789284, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393238343b), ('dqn8k7hs3q2hrrj05o11g3ad6cfkhu4c', '192.168.0.224', 1527789295, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393239353b), ('i9qgra3edk2onvmr2q4adi7iar88ohg3', '192.168.0.224', 1527789307, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393330373b), ('m4dskgup26mlftuahbhei4e1aj3f0c9r', '192.168.0.224', 1527789318, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393331373b), ('6t0gj8v9pk0for53fgakh12fbsg7rpsf', '192.168.0.224', 1527789328, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393332383b), ('bd7h3629vi7i4l2vm1kkonn4eu9o2q0a', '192.168.0.224', 1527789338, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393333383b), ('m2bbclnlaqplvmt09doqd9aosnu4cbts', '192.168.0.224', 1527789348, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393334383b), ('64caj65a169ea1m388uq846ig81867q9', '192.168.0.224', 1527789357, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393335373b), ('pdp076n8ve5l3e6mn1k8mu42ag4i9fkt', '192.168.0.224', 1527789366, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393336363b), ('1js3nkm4eab94ifflg6sp70eovpspv0t', '192.168.0.224', 1527789375, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393337353b), ('u9p5591eltrnm66a3m6b4ibvnan75ss0', '192.168.0.224', 1527789387, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393338373b), ('scgdhf7c2dvs9udvcfp8jbmpnn6rn7p4', '192.168.0.224', 1527789396, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393339363b), ('2sbvi9mnfnt8le9s2l7cfd4csl56kcqm', '192.168.0.224', 1527789405, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393430353b), ('4dhnj4seo4kuni82crt2at1kaa2uot6d', '192.168.0.224', 1527789415, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393431353b), ('e7d0790hb4ataln33m1acd1hpt1vjcva', '192.168.0.224', 1527789424, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393432343b), ('tr8nqk4vg37liuqurhalc1v4p0kht0sa', '192.168.0.224', 1527789433, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393433333b), ('m2o6cbr9trrh62u9u2o2tp5rllummm6q', '192.168.0.224', 1527789444, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393434343b), ('scaq93it86db9kgs2qa8r3oa5fo025bs', '192.168.0.224', 1527789453, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393435333b), ('h43ok4tm99n87veaf7ceofhkqjjjca0l', '192.168.0.224', 1527789463, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393436333b), ('7o460cinj32aquechmkh54ndck8fmpse', '192.168.0.224', 1527789473, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393437333b), ('pm25mteoqrddt9i2t7f5l4tldgk866s0', '192.168.0.224', 1527789483, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393438333b), ('oc5cqtmh3t9j42ncmi8gfoqmtti2ii2f', '192.168.0.224', 1527789493, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393439333b), ('qa0lqu00c6h57f02ctu52la1n1cb8549', '192.168.0.224', 1527789502, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393530323b), ('rdl5u34tsjj86rgtmd2eamdr8aa9sffh', '192.168.0.224', 1527789512, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393531323b), ('mtai78m0spc1elgml2iskvpsmvnshd4o', '192.168.0.224', 1527789522, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393532323b), ('mi25u4cc7bbk3249e3inin24f8v05jll', '192.168.0.224', 1527789531, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393533313b), ('442nhrcbe9unu67sc5hb2eja0vfbmuuv', '192.168.0.224', 1527789541, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393534313b), ('pcufcpu959erl1cd2fkse05kdcdtihlg', '192.168.0.224', 1527789550, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393535303b), ('ld2f5uj1nt6k57ugc7v2qlssupqkurvv', '192.168.0.224', 1527789559, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393535393b), ('26mh652gdn6he5fbe4k9s3vfc4q6i9va', '192.168.0.224', 1527789568, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393536383b), ('slo900gpah7cock87v4j4m1thhht02fs', '192.168.0.224', 1527789577, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393537373b), ('j45rqrs2pankeeaubg5tvqpilpvg81aa', '192.168.0.224', 1527789586, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393538363b), ('csj1jvaq7o17ikd3e4ptvchtg0m8a7kr', '192.168.0.224', 1527789595, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393539353b), ('63rsl6vecook1f5ssrs2u4fdnh2t375j', '192.168.0.224', 1527789604, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393630343b), ('klfsdtgq8viuk24bkm004v87dqbasom5', '192.168.0.224', 1527789613, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393631333b), ('rdtplp055dh1a36g0tsugklre09naj3a', '192.168.0.224', 1527789622, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393632323b), ('rpe4js9dne81mqhndhsljvl2idkr7jlg', '192.168.0.224', 1527789631, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393633313b), ('559akuusvel1qt7riphemsusipf0sjbj', '192.168.0.224', 1527789640, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393634303b), ('lfm0qcpfd0878pvnf0c52tfs9frfep9i', '192.168.0.224', 1527789649, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393634393b), ('pvjl8r4719je15m72n3cksavg8b0scub', '192.168.0.224', 1527789658, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393635383b), ('js6rl3j5godbsug7ru29i8v6laj2mb1t', '192.168.0.224', 1527789667, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393636373b), ('3osarqm0djpa6bhh6v25n45kf82d2lgs', '192.168.0.224', 1527789676, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393637363b), ('nsdvh69n5l5p9gmgd457f3lds39b0mc7', '192.168.0.224', 1527789685, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393638353b), ('lstkebn9ojhscm31l96411cstfht1m1b', '192.168.0.224', 1527789694, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393639343b), ('l9cqfav0hkeagup7g1oabujvs25klbol', '192.168.0.224', 1527789703, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393730333b), ('vvkvivf63gfql53f7k2qdqo4ofg9j9kt', '192.168.0.224', 1527789712, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393731323b), ('posg62s61a04tahoiav809fbetf0uf19', '192.168.0.224', 1527789721, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393732313b), ('jlpo3mu2timp4gn09ru048p5ngovrgnh', '192.168.0.224', 1527789730, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393733303b), ('kcnr9t9f32raeeum8uqun4qd9chog1nv', '192.168.0.224', 1527789739, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393733393b), ('ig6brtl5jo9vj963og8mvfh4i8gji4t1', '192.168.0.224', 1527789748, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393734383b), ('rp6vq63fm3obc1msdfh5kil0cr6v66bo', '192.168.0.224', 1527789757, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393735373b), ('t0h37l5v7nvpvvn3llb9v1fer1b71g8r', '192.168.0.224', 1527789766, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393736363b), ('ehe42mtoe7ouul5l94k6krhh5clqu6ja', '192.168.0.224', 1527789776, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393737363b), ('vs3qibith27j7qauhne72g1e9hd0fttg', '192.168.0.224', 1527789784, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393738343b), ('gkk62jj9i9qba2snt3ef82iepl36lv26', '192.168.0.224', 1527789793, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393739333b), ('3t24aqbhp9j585qrjuq4dere0d2667ab', '192.168.0.224', 1527789802, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393830323b), ('ofav9pc2v2se62e55opjpp1md1a1ll04', '192.168.0.224', 1527789811, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393831313b), ('jd4m2as917983d9vo517hfvkh32fe833', '192.168.0.224', 1527789820, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393832303b), ('k33jtusfje55q2m52s3qr1f2gt9a2ukt', '192.168.0.224', 1527789829, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393832393b), ('4a462hd5a4kr41ol1u87iv5t5gsfpg5i', '192.168.0.224', 1527789838, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393833383b), ('ckj2c06in58f83kpev7707i33itk4lut', '192.168.0.224', 1527789847, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393834373b), ('pjvderpc581argarb3nfuamm3okjcbek', '192.168.0.224', 1527789856, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393835363b), ('t2a3enjk62pqj1q0949j5jg0jhe7b4jr', '192.168.0.224', 1527789865, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393836353b), ('mli5sfnq3a6rr9ies9e6u16fhoed46o0', '192.168.0.224', 1527789874, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393837343b), ('vk43jtqcea37hpruomtv7mb4ii04g5ug', '192.168.0.224', 1527789883, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393838333b), ('t47eiv881p53ph9gimsggh5072h880mg', '192.168.0.224', 1527789892, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393839323b), ('rpui39htkcp37vakjna5oq4bbgnf97pv', '192.168.0.224', 1527789902, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393930323b), ('5c0e42u8e1usvb1h3532hl496mgfpett', '192.168.0.224', 1527789911, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393931313b), ('1lu7unaeguiij3c99re1c0rftqlm4iqb', '192.168.0.224', 1527789920, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393932303b), ('jno7b85hvi2drfk69rrs7pce024l71r2', '192.168.0.224', 1527789929, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393932393b), ('sbvkflp5841lp9cp408hq3a588tue53d', '192.168.0.224', 1527789937, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393933373b), ('3v5o70fl0j4ifcbckeeev7anakdhtm08', '192.168.0.224', 1527789947, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393934373b), ('f52sptv6mh3m5ht040f7jkq9c0b83qna', '192.168.0.224', 1527789956, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393935363b), ('b9hcmrblgs2mm0tjoflcm7mlmhiobm8a', '192.168.0.224', 1527789965, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393936353b), ('v6i2jblqeedu7g9uen326o5ghrr49s71', '192.168.0.224', 1527789974, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393937343b), ('hivqp9nnjhpbd4eqcfdv2esu1sclqm1h', '192.168.0.224', 1527789983, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393938333b), ('hpujig4ano0clufq2s9bgfiere5br156', '192.168.0.224', 1527789992, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373738393939323b), ('kovp5v5rlsdb4slbibu6cbrgjl5tb46u', '192.168.0.224', 1527790001, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303030313b), ('5ovlk2fs5r34pn1vatoi48j2nfeicas6', '192.168.0.224', 1527790010, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303031303b), ('ueod3sek5sfduajst4sd4mafkvcg01oi', '192.168.0.224', 1527790019, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303031393b), ('st5bdnkj9rp4v1m3m51e1pj8n82bv6eh', '192.168.0.224', 1527790028, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303032383b), ('hc98e0616huqr2er19lijhqrir4o9phf', '192.168.0.224', 1527790038, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303033383b), ('7dp3pa1co9c42b579rldi56le6vdrffu', '192.168.0.224', 1527790047, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303034373b), ('l2hk4b7hr3r4rgfk4d5d32v04mga4sd8', '192.168.0.224', 1527790056, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303035363b), ('3guqipf4qh8mhkq4ps424o7hevt1j42l', '192.168.0.224', 1527790065, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303036353b), ('720nu4dgj8entbvo5kn9ait8ghjp90pi', '192.168.0.224', 1527790074, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303037343b), ('flv7hhprd44i39hi616td2n3skpsh5l7', '192.168.0.224', 1527790083, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303038333b), ('uekp34lsi5heip548a5mpmr9hl37iur6', '192.168.0.224', 1527790092, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303039323b), ('h48bipfla79222mitbkdojja3jrcn9a2', '192.168.0.224', 1527790101, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303130313b), ('c5ccjnk5pilj5ngimlav8ft1f9tm6a02', '192.168.0.224', 1527790110, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303131303b), ('4jod36ogn68vltfgdn8e2rqv6j2007mp', '192.168.0.224', 1527790119, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303131393b), ('i5ed6grmqo3i9o7br0o87tv87k9kkbfd', '192.168.0.224', 1527790128, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303132383b), ('biuemrcfui81tol1qlaoqd5of7092rhc', '192.168.0.224', 1527790137, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303133373b), ('f9bpf4ssm5529iru7vhubv477l08h4ro', '192.168.0.224', 1527790146, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303134363b), ('4ntqqbq1i5n9npqbd3puplghqnassvji', '192.168.0.224', 1527790155, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303135353b), ('7bp3ffbhq2ku3pn6p00re91jbn7gipog', '192.168.0.224', 1527790163, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303136333b), ('vn1m6is9bhb5c5g01pkde1ht9qgd3i75', '192.168.0.224', 1527790173, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303137333b), ('c54j2gg5llmu2gpbnqa2l0o7te8i87al', '192.168.0.224', 1527790183, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303138323b), ('sdsss38id1qpf1itm2oqkmqf1at8r2jp', '192.168.0.224', 1527790192, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303139323b), ('285sqfo80lnrk7lapr8mlgnrq24lhg6l', '192.168.0.224', 1527790201, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303230313b), ('7dkcl77iea9tatttc4lobocc9ifvuufb', '192.168.0.224', 1527790210, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303231303b), ('3r0538pgeuqkie26d0lm3b450mdjddbv', '192.168.0.224', 1527790219, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303231393b), ('qvn7su86rippoockm3i6ej0m0fap74d0', '192.168.0.224', 1527790228, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303232383b), ('r5c9gv3l3uriv3or0339pnf63hnsig1i', '192.168.0.224', 1527790237, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303233373b), ('41tq9j81aemrp0jhkbtn5h1pg9ocukeh', '192.168.0.224', 1527790246, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303234363b), ('insmpfjak8g46e7fav2sn2gfau2fbsup', '192.168.0.224', 1527790255, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303235353b), ('7htopi7om0a6u987gvrvpe6o825l4als', '192.168.0.224', 1527790264, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303236343b), ('p5hsaep5g55je6ldt47vl8q7plutm4c7', '192.168.0.224', 1527790273, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303237333b), ('rtfmim6ketfbjdvhl149vdm20guv0073', '192.168.0.224', 1527790282, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303238323b), ('8ivll544s559766imka55t2lrm2lb56a', '192.168.0.224', 1527790291, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303239313b), ('mvr6i8b1cief71nakojq1grr4vt5ohqf', '192.168.0.224', 1527790300, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303330303b), ('roo7nkfgm2280haphc61qb7njr1mif6m', '192.168.0.224', 1527790309, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303330393b), ('gckgrj7vms4qtjsgih5irfu013nl3mrt', '192.168.0.224', 1527790319, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303331393b), ('m33c78nc2ei5978khgbv7jb76m6oi1gf', '192.168.0.224', 1527790328, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303332383b), ('01uibahov2u3572k67kugoipbqtjiarc', '192.168.0.224', 1527790337, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303333373b), ('25qa8o65cvpe86nitghh6ulopj2hbem7', '192.168.0.224', 1527790346, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303334363b), ('mid3dd9gd7old449ff54k3s7ghg4311o', '192.168.0.224', 1527790355, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303335353b), ('9mmc86l014s73m8fgp1o5iu4smf743v7', '192.168.0.224', 1527790364, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303336343b), ('q6aoin7va8d808qfpktarfs6p1633uoe', '192.168.0.224', 1527790373, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303337333b), ('pof0h1sgr8j0egqco7olf6tusm81rre1', '192.168.0.224', 1527790382, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303338323b), ('8copuoumcuqe1aqgt44rprri7vogslkh', '192.168.0.224', 1527790391, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303339313b), ('3rkgl8encafikupidrq596fivr17m8tn', '192.168.0.224', 1527790400, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303430303b), ('r28pe2q011gc9qluoarf4b0gin7pdvq9', '192.168.0.224', 1527790409, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303430393b), ('28vq8ikij8eee6v3ttn08f3b39jfc7i0', '192.168.0.224', 1527790418, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303431383b), ('6n1gr682et8esiadckbfion2gmpmtirv', '192.168.0.224', 1527790427, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303432373b), ('cgijaf1avedpl5s6ljrkdme20gog79bj', '192.168.0.224', 1527790436, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303433363b), ('6var5ujltj5dk78rlmq35jht3qimhves', '192.168.0.224', 1527790445, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303434353b), ('tlfd2oj3or87tpscusqm8crc2fo0s9a9', '192.168.0.224', 1527790454, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303435343b), ('asc9igd13g7fgj6kjsskdbi7h0g8aokd', '192.168.0.224', 1527790463, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303436333b), ('84e3duhedtc0n9jnnp5nm91s42dd9s6p', '192.168.0.224', 1527790472, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303437323b), ('jdrpkhoantln9dloijbbhevu0l5hlkut', '192.168.0.224', 1527790481, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303438313b), ('vgnm6so14rh9uohdr8135usaapovt7l8', '192.168.0.224', 1527790490, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303439303b), ('s43tqf11sijh3ushuho4np0aaaod089n', '192.168.0.224', 1527790499, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303439393b), ('no9joegktg8e9u9oso6drgqvquj9pcba', '192.168.0.224', 1527790508, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303530383b), ('d9m45cn8fo6lg69sp6cohp8ur31rpdma', '192.168.0.224', 1527790517, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303531373b), ('25bi2bfslbk0agrpklh0j7o63ahm9fh9', '192.168.0.224', 1527790526, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303532363b), ('g3djg30bfhbai18ub2q9dudfguo0uolv', '192.168.0.224', 1527790535, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303533353b), ('hqu5eprlf0jqvcdt5ba6fgfqgo636v7p', '192.168.0.224', 1527790544, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303534343b), ('3iouvv1kcsq0d7u5aaa9lpfi2ko0069n', '192.168.0.224', 1527790554, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303535343b), ('t9rekrati1gnkngqi122j2df7lftvhk0', '192.168.0.224', 1527790563, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303536333b), ('tf73p864vq98acj8dq85o9nj796aa0a9', '192.168.0.224', 1527790573, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303537333b), ('nadb1ab31tdtvu3mu5a6875g1mded7gt', '192.168.0.224', 1527790582, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303538323b), ('crjebts6brn2d7711n9bt9fm7el3k9u6', '192.168.0.224', 1527790591, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303539313b), ('h46m9kbvrogfqmi3a70eluj58upnva89', '192.168.0.224', 1527790600, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303630303b), ('r450mvu8ad8o79j4a129sk1iv77va044', '192.168.0.224', 1527790609, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303630393b), ('g4kv50b3n44llr0dalri7lfjikhdkpir', '192.168.0.224', 1527790618, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303631383b), ('tpuhb8h274oisjtv847mrch1k56kvksa', '192.168.0.224', 1527790627, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303632373b), ('8qvnonl4h7566008sl2unmol6om4ufdr', '192.168.0.224', 1527790636, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303633363b), ('68caliia46bfg48jaaekq4cjhbae1ffe', '192.168.0.224', 1527790645, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303634353b), ('jheauuv6bcosb33shso07t91bbdoq035', '192.168.0.224', 1527790654, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303635343b), ('dhddaa4s7cdpmjg0633c6h5be5cvs7o8', '192.168.0.224', 1527790663, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303636333b), ('99jbishtafve1iht31h35ph7sqhf1ekj', '192.168.0.224', 1527790672, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303637323b), ('evl56nv0ulee94m6dga95fnmv3j29a78', '192.168.0.224', 1527790681, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303638313b), ('kp0cnoke573okrirto9msdco5ga5b2ia', '192.168.0.224', 1527790690, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303639303b), ('cuublnckmq549bkb865g1ahnrk7udj3a', '192.168.0.224', 1527790699, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303639393b), ('31i245f2h62ffnv384lcoj4fn07v3m0i', '192.168.0.224', 1527790708, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303730383b), ('gb3ncsmmduqupustd8prjp2g9fiai1o1', '192.168.0.224', 1527790717, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303731373b), ('3q79l4gat6tli25g0cpjv98fd9rmc5ir', '192.168.0.224', 1527790726, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303732363b), ('cubd8r4c9stf0ilkiddcjvovkv9bk79n', '192.168.0.224', 1527790735, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303733353b), ('j08n2tod6qfbu1k1a1hr663sh6f5e636', '192.168.0.224', 1527790745, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303734353b), ('l7oqn9dps4qgmeiulsg70a1bbi6np17e', '192.168.0.224', 1527790754, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303735343b), ('2n8t3f1o94d3bnkpdgupppfnleps5aek', '192.168.0.224', 1527790763, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303736333b), ('bnplahvjo3cs0ju560fnjijs3nq2ahfv', '192.168.0.224', 1527790772, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303737323b), ('hrvh6giu6vhlga6shspmrn6ttmulvu8j', '192.168.0.224', 1527790781, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303738313b), ('o4f99cgk2vpso93k41a3198va1cba09j', '192.168.0.224', 1527790790, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303739303b), ('unfq8ih9i6bbb016es7sa185nq18k4vs', '192.168.0.224', 1527790799, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303739393b), ('dc2dr4tcrs5bm141nc55a9n8bnuren0s', '192.168.0.224', 1527790809, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303830393b), ('l5q94d5s3jp6pv0oo7p5pkdltv0qeam6', '192.168.0.224', 1527790818, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303831383b), ('7mopu7h29ltjn0081vpgn3odjd72a123', '192.168.0.200', 1527792866, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323836363b7573756172696f7c733a343a22726f6f74223b656d61696c7c733a32303a2263616c626572746f6d7340676d61696c2e636f6d223b69647c733a313a2231223b7065726d697373616f7c733a313a2235223b6c6f6761646f7c623a313b), ('k4f3h3mqms8gvsmltrqcgcp4k8ekg4cq', '192.168.0.224', 1527790827, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303832373b), ('c0sskspj320ucce0d259nficg5uenqf5', '192.168.0.224', 1527790837, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303833373b), ('qot5mnig6397hau9e4bs6ea4015gog53', '192.168.0.224', 1527790846, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303834363b), ('lpfgro53m19bifmep04otcaloshg30aq', '192.168.0.224', 1527790855, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303835353b), ('rlco8626hl2seid5b0ad8mtvqbr463uf', '192.168.0.224', 1527790864, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303836343b), ('1dgnccjemphv399oqtmu322v4qumvjhe', '192.168.0.224', 1527790873, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303837333b), ('v8ho2e1kv4eonmprvomb9jmun755t8tj', '192.168.0.224', 1527790882, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303838323b), ('d9hvoi1fde0pqjhuo2dkuqu869ka09sb', '192.168.0.224', 1527790891, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303839313b), ('o0mcfvai0mtcl6do2o39um9ckuf0bckd', '192.168.0.224', 1527790902, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303930323b), ('qh2bt9911jeejaen2ii5hr4427hitqp8', '192.168.0.224', 1527790911, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303931313b), ('vqp7nvv7nq3iitvfgmu4r7tifedc118h', '192.168.0.224', 1527790920, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303932303b), ('at70l9eaag7a5drs349btdcr162td4sb', '192.168.0.224', 1527790929, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303932393b), ('kknulunb1tip7ao6ipt15cmr6v4j4u0i', '192.168.0.224', 1527790939, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303933393b), ('pko3a887k5fu4g3m0ica6lbgj1r8h4k2', '192.168.0.224', 1527790948, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303934383b), ('sevbo9sllcfpcbh063qlc9ienips9tvj', '192.168.0.224', 1527790957, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303935373b), ('50ttloq9rjojn1tgvr5l78tp9girsf1u', '192.168.0.224', 1527790966, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303936363b), ('mi6lidkk6asqgdaosep517uaf2tcotl3', '192.168.0.224', 1527790975, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303937353b), ('atk0lj8mfote9ucpjqpjef515frc2h5d', '192.168.0.224', 1527790984, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303938343b), ('5o1red0e1timb0v08sfvnh5qukovlrvk', '192.168.0.224', 1527790993, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739303939333b), ('tfnmp8nnhrafbjieqn4lebho8ulk9gkn', '192.168.0.224', 1527791001, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313030313b), ('dm1p27vd9qrudgtfut4ra0pbfbiomvb1', '192.168.0.224', 1527791010, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313031303b), ('lmk2k6b7q698rt20hg9fj6eoh2oel143', '192.168.0.224', 1527791019, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313031393b), ('3irpcdrgmpta8l1quleo2bm7dmkdudb4', '192.168.0.224', 1527791028, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313032383b), ('pnb4h04fv3cuqa87bpip73u2bh81bt0t', '192.168.0.224', 1527791037, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313033373b), ('ovacum4cm4akv3mk87p1i1u1h15m52pg', '192.168.0.224', 1527791046, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313034363b), ('m30trh157af1u56v9qmj1sfjo034sphd', '192.168.0.224', 1527791056, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313035363b), ('imh5lmnsmfcsv6epe42atcr9uqjsl1mv', '192.168.0.224', 1527791065, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313036353b), ('9c5uq1llj9oaga3scm5fqe1tuap880b6', '192.168.0.224', 1527791074, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313037343b), ('nmff2jd6jad4bkd9alg0e7lcv8guim1h', '192.168.0.224', 1527791082, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313038323b), ('kibaag5mbb7ptp5df40540irlknhtu7m', '192.168.0.224', 1527791091, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313039313b), ('alc8ujk1ma3ap6d4c4saja4vsh29gm0t', '192.168.0.224', 1527791100, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313130303b), ('b1kkig5aic0vr17po9c7jpcei70vfvpu', '192.168.0.224', 1527791110, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313131303b), ('6bn5jb147s06g8o4h51i9c75mi70g19q', '192.168.0.224', 1527791119, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313131393b), ('57gpkro5ee9rcr2idtvuvs5t1cg394rq', '192.168.0.224', 1527791128, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313132383b), ('o638vrre16scbg6uo2c0s0jnss12ir40', '192.168.0.224', 1527791136, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313133363b), ('rjc7idvn1pu1j0hp4h3rbavga15lq816', '192.168.0.224', 1527791146, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313134363b), ('2j53ukaljosouka3ekch3vj7lag4jnnb', '192.168.0.224', 1527791155, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313135353b), ('69127v39cs0sv79f52cbs23pgfe0pbcg', '192.168.0.224', 1527791164, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313136343b), ('lqr3b3i4vh6bf8h0d8b8enemj3qsbr73', '192.168.0.224', 1527791173, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313137333b), ('sga04hudfdnvnbgc6j2rgr2u4fhcdcdb', '192.168.0.224', 1527791182, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313138323b), ('h0r91odvlfljq7vrrcvvoq931cbln63d', '192.168.0.224', 1527791191, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313139313b), ('a9c88epfvoad7uhmfhmnr1a2t4rejbjd', '192.168.0.224', 1527791200, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313230303b), ('mi6ithc9sdtdml78qftq4vq8b24db253', '192.168.0.224', 1527791209, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313230393b), ('gcl2o5vletlaresemrnkc7boiiuptk6u', '192.168.0.224', 1527791218, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313231383b), ('4o9ieokvtjbu8gi7ldansm6665qfo2ku', '192.168.0.224', 1527791227, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313232373b), ('3tg99s8ek6mc267oinb44nu994svcc1r', '192.168.0.224', 1527791236, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313233363b), ('vtogiro2rpfbv9ukuov5bvfp0v474kus', '192.168.0.224', 1527791245, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313234353b), ('v6uutpv5sdmd21t28kbq9btmr8h5cf6l', '192.168.0.224', 1527791253, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313235333b), ('icbpfk2j5iteoh0imsaqleu9m64fcum9', '192.168.0.224', 1527791263, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313236333b), ('lhi84niaem229vajjn63cug9m1ei6p6l', '192.168.0.224', 1527791271, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313237313b), ('ojvqjf86nfphh14tbu1bf8v5i495lbm2', '192.168.0.224', 1527791280, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313238303b), ('q83mpfir59bh5p13alon8gnfo486r43f', '192.168.0.224', 1527791289, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313238393b), ('e7suc7hfosomnjl0e7ds5no8c5p6rf70', '192.168.0.224', 1527791298, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313239383b), ('2u8tr5ccf7r3ce54j7qqcab6h3djd776', '192.168.0.224', 1527791307, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313330373b), ('kcdcolcnu5i7bl6gsfcgek8gqsbskvpj', '192.168.0.224', 1527791316, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313331363b), ('ga78vbp3r900se8ol5iourbv7jsv2vh0', '192.168.0.224', 1527791325, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313332353b), ('ecvtbbah6104ul0ass86t4clndqp0e04', '192.168.0.224', 1527791334, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313333343b), ('hqtsph58mmkhlgbcrauosmo8i0cl36tl', '192.168.0.224', 1527791343, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313334333b), ('lbghp3oo2e7tga7pcgmjptqg54kpshd4', '192.168.0.224', 1527791352, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313335323b), ('ci09qckh53qj0ths23mjra36oea75qil', '192.168.0.224', 1527791361, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313336313b), ('mgbced8296ie4bqgklq929tn5p6hcv9a', '192.168.0.224', 1527791370, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313337303b), ('ilr5he0tvkeca1v5hqkhvot5coujd28i', '192.168.0.224', 1527791379, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313337393b), ('ha7t2fv15d73imfpg2dmlbfl9jj46dk6', '192.168.0.224', 1527791388, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313338383b), ('31q6cdu7lvs33e4htvf48tc05mgc1u19', '192.168.0.224', 1527791398, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313339383b), ('cadbafj978cbd5t09lbjlolh0un4unu6', '192.168.0.224', 1527791407, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313430373b), ('e43s0re1csjnh3pjnfrbca10ts1qvhfa', '192.168.0.224', 1527791416, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313431363b), ('g74328b3304iu4vm0g1q6ela66jsc59c', '192.168.0.224', 1527791425, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313432353b), ('nru17gn939g07lm8hj7vp37h7e5gu1g7', '192.168.0.224', 1527791435, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313433353b), ('44duvpmbbo0qjft81a35qqu4ugl8rq4s', '192.168.0.224', 1527791444, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313434343b), ('pa9mqa0v7lohscdjnphekk741nsqgqcv', '192.168.0.224', 1527791453, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313435333b), ('l91dvdce892cq4373g9pnmp7a0b79uod', '192.168.0.224', 1527791462, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313436323b), ('jcugp98no7co67l3u32eldpq8gnlhpmq', '192.168.0.224', 1527791471, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313437313b), ('jafi1ehircn1qrpv6bfss75tgfk06e24', '192.168.0.224', 1527791480, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313438303b), ('abelrr8rlb30h2hu31ibkuib3kpl7gag', '192.168.0.224', 1527791489, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313438393b), ('5mhdoargqhv557kh5lkj28khccjqp868', '192.168.0.224', 1527791498, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313439383b), ('kcc36secklo2vneaj4j11atp3465a9lk', '192.168.0.224', 1527791507, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313530373b), ('p0i8cp12k13ep4s17r2301j7888qsb4g', '192.168.0.224', 1527791517, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313531373b), ('b6bcrm5ormba3sj5fcdgpmebkekjh44v', '192.168.0.224', 1527791526, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313532363b), ('u9lv22pejv103uvl41cs4ce62afl5gn5', '192.168.0.224', 1527791535, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313533353b), ('5c4l8juicqogd2q5uipi6f3grip1sjo5', '192.168.0.224', 1527791544, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313534343b), ('fts3n289qn2mus0qsehdfvtk1f0jh4gv', '192.168.0.224', 1527791553, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313535333b), ('qu02gbqmm19mlqgube1f7hduohko1l40', '192.168.0.224', 1527791562, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313536323b), ('qlb35ba4nsmcc4ho4r4c7gkjt2vq136r', '192.168.0.224', 1527791571, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313537313b), ('u2ljhqaf803dip3gmm1fd4120kfr4m7k', '192.168.0.224', 1527791579, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313537393b), ('f7sp2827d236a02gb1ac73s5pbe2ofld', '192.168.0.224', 1527791589, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313538393b), ('gd79j0e3hhog1748ja9roco0nrehkcno', '192.168.0.224', 1527791598, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313539383b), ('s448n3b347se1octu1468nnkv8048060', '192.168.0.224', 1527791607, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313630373b), ('n7jmlbk7e4ob5rsmaqg7ovkrbtbnmslr', '192.168.0.224', 1527791616, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313631363b), ('d3s817ir6dg1laj9q5qdpn0kc90mbl19', '192.168.0.224', 1527791625, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313632353b), ('gg4ekbsut40d0bc1n3t0p5gne0k7vr6c', '192.168.0.224', 1527791634, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313633343b), ('qnqc97kh55vvjhruvjs2lns75kb22oi8', '192.168.0.224', 1527791643, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313634333b), ('v4fv67fa7tn92o9jn0gp1b4gm0dpfrit', '192.168.0.224', 1527791652, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313635323b), ('7ah0vac9qapnnu4qa6hk52rl8ikrcf2j', '192.168.0.224', 1527791663, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313636333b), ('vjl70ql6fjv7lmqvogmmmp12ts1cbu20', '192.168.0.224', 1527791672, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313637323b), ('i5s03temmusvemj9i5s844366gq5n05p', '192.168.0.224', 1527791681, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313638313b), ('ogk38vt5442km7i2hpg14sag9l23gv02', '192.168.0.224', 1527791690, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313639303b), ('phnibrebrepqcsj7olajusskiv97sfdp', '192.168.0.224', 1527791699, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313639393b), ('edb76si8nn9k6hbj0nlf91a95kujevcg', '192.168.0.224', 1527791708, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313730383b), ('pmvhhh4omb5dsj75ln6rcrlvmkfki8t3', '192.168.0.224', 1527791717, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313731373b), ('dm3fkkusj3urav22vjolem6ne26sgc9r', '192.168.0.224', 1527791726, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313732363b), ('k2sqido01qb7l4gtgkrfi26h33vsfi0j', '192.168.0.224', 1527791735, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313733353b), ('emq8mstaao11ag6u4vg284t22kk07qje', '192.168.0.224', 1527791744, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313734343b), ('43spft86o9h0rit8ntbjhcgjesv8ist9', '192.168.0.224', 1527791753, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313735333b), ('agcekof1jr5795v44ovn6iebfb7qgpki', '192.168.0.224', 1527791762, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313736323b), ('e5v7lo92j4006eujd4ebhc73mnnln3cl', '192.168.0.224', 1527791771, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313737313b), ('jqijmlph5ehhof9gp37cjnkf0m1dr6ut', '192.168.0.224', 1527791780, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313738303b), ('gpj5i8f9csjb5v5nmujthqq29dt8pqfj', '192.168.0.224', 1527791789, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313738393b), ('10l9g9rp8kr72oqrevm0r3ivlfcsvko9', '192.168.0.224', 1527791798, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313739383b), ('tqn6q9rgalqmf3psrnvuue4k12l1oekq', '192.168.0.224', 1527791807, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313830373b), ('s52ov3d3irjjjmcu5aveeej1lb423tli', '192.168.0.224', 1527791816, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313831363b), ('fi25uokggm2o0sr3beac9k4q9k5lknbr', '192.168.0.224', 1527791825, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313832353b), ('sor5ipoa6s1q7r43sa6e4952jlfj46sf', '192.168.0.224', 1527791834, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313833343b), ('bfr1feoblaedhea7lmn497unjajpeh0h', '192.168.0.224', 1527791843, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313834333b), ('th590f0aktb4bdb5lt27qaa84p7cmr91', '192.168.0.224', 1527791853, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313835333b), ('6rpb2479iivqmuhi9bdm0k696qnr6l1d', '192.168.0.224', 1527791863, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313836333b), ('8kjti5is1v54oe6u5ic5afuf1vhalrp7', '192.168.0.224', 1527791872, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313837323b), ('ihro6ramc0gt3c6c07vp49mt5fe3m2bm', '192.168.0.224', 1527791881, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313838313b), ('5pkijh5jbm0p3051gsij8capqijbvfn1', '192.168.0.224', 1527791891, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313839313b), ('ooulbf2q1nruv8gtfc1q8sbl2apo84ah', '192.168.0.224', 1527791900, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313930303b), ('amjl6u7lc6hhj9qp6tnbb86pojp9c7a0', '192.168.0.224', 1527791909, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313930393b), ('19lra15416qcrbfv3nmvbgt79hfsri7k', '192.168.0.224', 1527791918, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313931383b), ('ns9em0nimqktoac6d74f605uqd3iope7', '192.168.0.224', 1527791927, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313932373b), ('4ft787hlkk5uathk9ai9r895s6v2bmhk', '192.168.0.224', 1527791936, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313933363b), ('uu0clg6a27v8q2vse13t38kcmpsdfc42', '192.168.0.224', 1527791945, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313934353b), ('3v7vl3r33c4r2j4f52h6uktl5b7v98k7', '192.168.0.224', 1527791954, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313935343b), ('3palksr7n3k6drt01hla85hlodnt03l7', '192.168.0.224', 1527791963, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313936333b), ('1v8udetijdf2qs04v4c8ukbb8okintpv', '192.168.0.224', 1527791972, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313937323b), ('noiojsmgn215n0p86mmbk2blquhhtvo9', '192.168.0.224', 1527791981, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313938313b), ('bn3lamqfdss2l7tseoot8bb7du35vp3a', '192.168.0.224', 1527791990, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313939303b), ('ekbs6asqam6q1hc4d2lo8uag511pui4c', '192.168.0.224', 1527791999, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739313939393b), ('usnd0i28vurtfoekg8f1q1qf3hkf9b8q', '192.168.0.224', 1527792008, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323030383b), ('7qudmjvk85u3jseevp7634pm8i63q868', '192.168.0.224', 1527792017, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323031373b), ('f6tcrlauspmt4gries82rtsj018tcc5i', '192.168.0.224', 1527792026, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323032363b), ('ime9i5ng7o9d7q6hkpr2fvus1ek1vj7l', '192.168.0.224', 1527792035, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323033353b), ('vrf67r36rrgk66sg6rokrkilkerqmlii', '192.168.0.224', 1527792044, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323034343b), ('pum4cuhchhccj7dt60neh4k3594to1np', '192.168.0.224', 1527792053, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323035333b), ('igob0e77f67fcg42tcrni96v37ee70lv', '192.168.0.224', 1527792063, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323036333b), ('qt3vhq416qtast8pjmna1h9a6nrv8e3c', '192.168.0.224', 1527792072, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323037323b), ('gffa4tcnd5v160j82ujdrlbenbtrtf5u', '192.168.0.224', 1527792081, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323038313b), ('8h3adbg6vgr5t6tutf2vi1vmhco4aoiq', '192.168.0.224', 1527792090, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323039303b), ('9945888bbin1loobkmlj9dhvetrnvokk', '192.168.0.224', 1527792099, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323039393b), ('lsc8n2o6ofp0t81js6vnu095jj6ripk0', '192.168.0.224', 1527792108, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323130383b), ('vf2j8otv5rpov0vdct08geu7jhkbtv48', '192.168.0.224', 1527792117, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323131373b), ('kfsq3acusl3o1h6ha6f9invlu4ki06ms', '192.168.0.224', 1527792126, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323132363b), ('7licbm8kncv8o6pc6jasmv4e6ekc0oic', '192.168.0.224', 1527792135, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323133353b), ('98jgvbr13pb76q5guh858rn4mu5ie5a5', '192.168.0.224', 1527792144, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323134343b), ('8lv177jo9vbrtfj0ufcbfunakhja99vb', '192.168.0.224', 1527792153, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323135333b), ('prtdcm7r7o9ci4p8fuegru0pquraddkf', '192.168.0.224', 1527792162, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323136323b), ('j8d3v031ktqnvjkhj5g482aso6ikatot', '192.168.0.224', 1527792172, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323137323b), ('av5ifrij5tr1s7l5hj1r4blp0ku6rd98', '192.168.0.224', 1527792181, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323138313b), ('itv7dmami8ami4lb3lsoslcug1bpvdmf', '192.168.0.224', 1527792191, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323139313b), ('9qb7ae0hkvtmd0fre3j0eunnemk7tbg9', '192.168.0.224', 1527792200, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323230303b); INSERT INTO `ci_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7sn041d4s2827o46ef0hd229ofgk9jd6', '192.168.0.224', 1527792210, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323231303b), ('54dpd8qspbe8vpi64k3gs09momt4cirn', '192.168.0.224', 1527792219, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323231393b), ('ko7j22mcu3pbra16bvakk02ag06h23pb', '192.168.0.224', 1527792227, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323232373b), ('9m1ge4c9cbj2au5efilt0rkpkibi4vlf', '192.168.0.224', 1527792237, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323233373b), ('45u535u5eppmbl9s9d63ktqs5f4n59re', '192.168.0.224', 1527792246, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323234363b), ('6o3bamd35ufd855ko7m83mkc5v48fdq4', '192.168.0.224', 1527792255, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323235353b), ('sqjrg95i3vqjg3t093m21afhbfas6e2a', '192.168.0.224', 1527792264, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323236343b), ('6qhhmuj5ivvnkrq1f0jnler17uq3do8b', '192.168.0.224', 1527792273, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323237333b), ('ctsm1p12vac5rds7nq0m361om6crkgma', '192.168.0.224', 1527792283, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323238333b), ('kmok71ar78tktflb12k9jjp8d3o9q5ns', '192.168.0.224', 1527792292, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323239323b), ('qjhcqs8n4qmq3ch00penjfs2nt2mat3d', '192.168.0.224', 1527792301, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323330313b), ('g9mishg016udjs353b8bbfmch9s464f1', '192.168.0.224', 1527792310, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323331303b), ('nstlfnaebg7l2un4qmjkvj4mvfas602l', '192.168.0.224', 1527792319, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323331383b), ('39mevreporcrnj246fjlli7enmb59nj1', '192.168.0.224', 1527792328, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323332383b), ('g58ur4ss7jh2aghcbvkbifu9h0ffvmm6', '192.168.0.224', 1527792336, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323333363b), ('f9md2rd7vdnvq8213g47kl0sug44ua0r', '192.168.0.224', 1527792345, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323334353b), ('jffbteb9l8a36h5gaqne0v6v1t49rlsv', '192.168.0.224', 1527792354, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323335343b), ('dr88ejsqe6jn1h2dfb15ua1ss7mi2sog', '192.168.0.224', 1527792363, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323336333b), ('eefq936t2c3uab6al199naapht28rd7o', '192.168.0.224', 1527792372, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323337323b), ('hvfhggtcpuotaoa75t8nrrllkc6jg8og', '192.168.0.224', 1527792381, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323338313b), ('ne51onron8h53ftdp1u3enjvbpcc343q', '192.168.0.224', 1527792391, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323339303b), ('oma3bs37s8ngrk0tscsnrtuaohsvci0v', '192.168.0.224', 1527792399, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323339393b), ('lbt6saihpur76duqd94mfinoln3af2a1', '192.168.0.224', 1527792408, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323430383b), ('l07dlq6e898kti3fvvv7ncggdg4f6irg', '192.168.0.224', 1527792417, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323431373b), ('f0bbsjpioumlf913njvj39tf9mhkkko1', '192.168.0.224', 1527792426, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323432363b), ('in3rqp1i6n2l6bjb57bjhhi2ghsj2ktv', '192.168.0.224', 1527792435, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323433353b), ('1scqbq9b9mehsh1agq5qlsqbdp1ivkq8', '192.168.0.224', 1527792444, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323434343b), ('9e1olml81nf2bvfgu5tjnp30ve02jrap', '192.168.0.224', 1527792453, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323435333b), ('sjhrfi9b6n7gbiur8kbqle35fuqu8hvp', '192.168.0.224', 1527792462, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323436323b), ('6fjore5f9mrqiv01e8q4ablt50ii5shp', '192.168.0.224', 1527792471, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323437313b), ('j68maau6h74q3sufb50i94vt6k0oj01u', '192.168.0.224', 1527792481, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323438313b), ('18mbehopea5bb4io4tvtv355e5cg98r2', '192.168.0.224', 1527792491, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323439313b), ('jjvrsi8pqjdqo6coctbcjekmduvoas14', '192.168.0.224', 1527792500, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323530303b), ('l01lpnmpnaqejrk8rehuvbiekle1sgr4', '192.168.0.224', 1527792509, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323530393b), ('5g85j67q3coed4etf6sfhsr2rgnqiild', '192.168.0.224', 1527792517, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323531373b), ('7rla90nfadar8fsn6p2j3rh92vbq376r', '192.168.0.224', 1527792527, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323532373b), ('ns3j7e3eav1blmo6i7f4vk5n9nk7s7r7', '192.168.0.224', 1527792536, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323533363b), ('8gtcqpnm5ha7gicqoh0nd14trhd7qjop', '192.168.0.224', 1527792545, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323534353b), ('3b9ssvrl4j1k67s9v41g0t2llpugr82s', '192.168.0.224', 1527792554, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323535343b), ('d9u5mor0ns47l2ijepnko27s88bpdss5', '192.168.0.224', 1527792563, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323536333b), ('aqk1p8hjh6dv6uhubadess9vprff4ma1', '192.168.0.224', 1527792573, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323537333b), ('mq8sgjnef866i88pj06go10uvcah2ftj', '192.168.0.224', 1527792582, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323538323b), ('ud7kcpaf1quvc3dt5dtcsbcfrrr0fa0t', '192.168.0.224', 1527792591, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323539313b), ('ne05bibgogr5kt0mhst1e4nccoikcrf6', '192.168.0.224', 1527792600, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323630303b), ('gd4b6r2bhgpukcn9jkm3rv8st8av1crf', '192.168.0.224', 1527792609, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323630393b), ('6peqof7enksorsvhc2jb70ferh7qhnsf', '192.168.0.224', 1527792618, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323631383b), ('vfb4p73gvare22e6u2fu1g9vf1mrgavi', '192.168.0.224', 1527792628, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323632383b), ('hgf0vfs1fuirlps6o8ga55fetjpg7qfe', '192.168.0.224', 1527792636, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323633363b), ('5gtlksnl15gbrdr3a7qj40cvdharj7jg', '192.168.0.224', 1527792645, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323634353b), ('a0c7mn1afp46moosifv564v1se4cs711', '192.168.0.224', 1527792654, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323635343b), ('635deb0j2cmiafskfrlqvt92vangrqag', '192.168.0.224', 1527792663, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323636333b), ('2nkvv1vm1k6bdsjfmsoom4h0jm3ur8mk', '192.168.0.224', 1527792672, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323637323b), ('mq0htqroq7u3l1blc5b8ullb4569gpch', '192.168.0.224', 1527792681, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323638313b), ('m3qhh7eui6m10de07neooqs4crsuk4v7', '192.168.0.224', 1527792690, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323639303b), ('c0rek56bmp41019ircuar0u22aljgm56', '192.168.0.224', 1527792699, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323639393b), ('0hvhldftj4ptg6c42vn7eupcqt1s7a96', '192.168.0.224', 1527792708, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323730383b), ('hvaa66hu7k6v27ipqt0v2lgpoos4blvf', '192.168.0.224', 1527792717, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323731373b), ('a9jfanmtuqev9i1tp0ubegnfpr9fbiv6', '192.168.0.224', 1527792726, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323732363b), ('pdu0q3n3gpn18kgfqgn1jee8mfaht4d4', '192.168.0.224', 1527792735, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323733353b), ('bh11bv8me476v6g4dc5apr2p0skjooqb', '192.168.0.224', 1527792745, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323734353b), ('ertciua1g0d2kb2of347dgostp2qt7gi', '192.168.0.224', 1527792754, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323735343b), ('ucscs2mu4mneutfrlivc0vj4n43hiku8', '192.168.0.224', 1527792764, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323736343b), ('klkahpap0u2lj96gek8vncikesogp209', '192.168.0.224', 1527792774, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323737343b), ('u44ub5ibjap1c441dcmt5j25dgr45ahn', '192.168.0.224', 1527792783, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323738333b), ('lfs17gj3ki60nobhb1l60usvtrjhuian', '192.168.0.224', 1527792792, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323739323b), ('amon9803vovcppp5vs3b4lstbrm12fs9', '192.168.0.224', 1527792801, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323830313b), ('ae7ga9a87dvmo40rs1mv7od74pif9r79', '192.168.0.224', 1527792810, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323831303b), ('90f9bbi4ttjoctb7d41qcefbvpm94ebo', '192.168.0.224', 1527792819, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323831393b), ('3lthvrjtk1qet1rufulupupufa232sfl', '192.168.0.224', 1527792828, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323832383b), ('lp31a01d412lqmquiil3hhjl5hurer08', '192.168.0.224', 1527792837, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323833373b), ('um29cd15gkfmc5ubga9ckrugrcq6eo8h', '192.168.0.224', 1527792846, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323834363b), ('35tpv1amh7br01i2b0th1tcvhd0l1liu', '192.168.0.224', 1527792855, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323835353b), ('uu98fj3lh8kd0tqubmueapa6qi1oaip0', '192.168.0.224', 1527792864, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323836343b), ('m4nnuqdarpre7ojiqkm29h39g2mcr0lp', '192.168.0.200', 1527793388, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333338383b7573756172696f7c733a343a22726f6f74223b656d61696c7c733a32303a2263616c626572746f6d7340676d61696c2e636f6d223b69647c733a313a2231223b7065726d697373616f7c733a313a2235223b6c6f6761646f7c623a313b), ('qt72158pos8u1cedbdt98bf30nbmq6g2', '192.168.0.224', 1527792873, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323837333b), ('k8nsup0usga2e6rqbslfbv021r82p4j3', '192.168.0.224', 1527792882, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323838323b), ('91d32mr50h67ug8i7t5k5c6pl06b7ncb', '192.168.0.224', 1527792891, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323839313b), ('7pm388en252bi15khpdch3d3d0dl027a', '192.168.0.224', 1527792900, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323930303b), ('pbvvk0g115p0u3rk6d0j236peeknvnef', '192.168.0.224', 1527792909, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323930393b), ('79obju91ja1rn4us9hkj0dc3upanju3d', '192.168.0.224', 1527792918, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323931383b), ('bvnskv4stsia8i4rc89f33plo9987cmu', '192.168.0.224', 1527792928, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323932383b), ('dsmemhve7uf5d0mmd109l09m5qaqngmk', '192.168.0.224', 1527792936, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323933363b), ('vppp0j2keiv1of770jq5qo4m1dvhoobj', '192.168.0.224', 1527792945, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323934353b), ('o0jfpij5u8c8hkk002ruv4obiefbpg1r', '192.168.0.224', 1527792954, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323935343b), ('82ijbab5sqnpqns542kd8367h7808v2f', '192.168.0.224', 1527792963, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323936333b), ('0kb4b8r260lqgiq4qmefodds3689jg1s', '192.168.0.224', 1527792972, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323937323b), ('8n6fdhsfh5o3ke2hni106op120kpvltr', '192.168.0.224', 1527792981, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323938313b), ('ljqj4qcg0a15d4rm3cja18o7sf0peapo', '192.168.0.224', 1527792990, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323939303b), ('0bdea7q5ensnt53rg1gpqa4i615bcjc0', '192.168.0.224', 1527792999, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739323939393b), ('14m59mnhue6hessujsknttbqd1f6oqeb', '192.168.0.224', 1527793008, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333030383b), ('0mhr30ekjaiiv2lo3pv8ojs07m6khnhc', '192.168.0.224', 1527793017, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333031373b), ('9n03knh80iuvm3btd8ihfna0pbsnqf88', '192.168.0.224', 1527793026, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333032363b), ('v93li6d0rvb7tshq8ru9j14gp9vsfu44', '192.168.0.224', 1527793035, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333033353b), ('tiuonkap126atqqb8oq5tmstr2bkvrv0', '192.168.0.224', 1527793044, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333034343b), ('5b0fqgb9hsvncbkaaspj513f5re3krni', '192.168.0.224', 1527793053, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333035333b), ('1q0fibbleh1j5nnmvuoqiigvsl9lupti', '192.168.0.224', 1527793062, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333036323b), ('afbe764sm07ado3uiq20u4r9ilo20ttf', '192.168.0.224', 1527793071, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333037313b), ('q4n1qf93m5rcv94qergqm8cg78pm8rks', '192.168.0.224', 1527793080, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333038303b), ('gjvi4etfvug4e4d3ff0529ge43lkg3gq', '192.168.0.224', 1527793090, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333039303b), ('pkj17iitg0t84josl1spgbc466rbu8f3', '192.168.0.224', 1527793099, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333039393b), ('2geso0udgs6svlenr2m0nsjsf8tfv84a', '192.168.0.224', 1527793108, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333130383b), ('csnvocfagh68kcbc3ip99gm12qarfq7l', '192.168.0.224', 1527793117, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333131373b), ('49o1s9109i3pccr29auujmo4nd6ke94j', '192.168.0.224', 1527793126, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333132363b), ('uimpcfhdam9af184vpoo56v7jvqbt9ug', '192.168.0.224', 1527793135, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333133353b), ('3204v8ssh4rlk0iag73g6apo8aepqd2i', '192.168.0.224', 1527793144, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333134343b), ('g4absn3k8gfdcj6p6cmoov123ct79m1k', '192.168.0.224', 1527793153, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333135333b), ('i9r5ah7lq622qe9es4ehdq4isi4kk444', '192.168.0.224', 1527793162, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333136323b), ('e8l7d5jrifjqlq2sn3bq9mf1q8oeddtv', '192.168.0.224', 1527793171, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333137313b), ('3u2283dle1sd81dov83fihko1082lee3', '192.168.0.224', 1527793180, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333138303b), ('3fmjb356u9p0b9op108g7q1olfn801i1', '192.168.0.224', 1527793189, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333138393b), ('ivbe7hqa6eghi9mbkf8cat6280q7scn5', '192.168.0.224', 1527793198, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333139383b), ('np4iqp4onaehrns7pse0p2iftsrdb4sh', '192.168.0.224', 1527793208, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333230383b), ('kgeicv12f2ccvb0vij2qcrih7h92rm87', '192.168.0.224', 1527793217, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333231373b), ('sao3m4t2q58absr5s1df46bf3nc7bbnj', '192.168.0.224', 1527793226, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333232363b), ('qrhiet31nm8pnmi29nsukn8a30d9rniu', '192.168.0.224', 1527793234, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333233343b), ('tot1bsiqouti804egh2i0tori2189cdh', '192.168.0.224', 1527793244, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333234343b), ('d4e9kf907vrgj8677guae1s5tcfjjaae', '192.168.0.224', 1527793253, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333235333b), ('5al1g6btlm4t0r24hk75amf7nuvceqkb', '192.168.0.224', 1527793263, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333236333b), ('9m0jdq8djknlg3maftihee78uirq6jcb', '192.168.0.224', 1527793272, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333237323b), ('qhj06goslmh0m61i4ukc9cglnjporrvo', '192.168.0.224', 1527793281, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333238313b), ('32b57mj1aac0n8itc6qi6gvr9sll4qff', '192.168.0.224', 1527793290, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333239303b), ('unkrsov91e3p12111okavuqmbs1nc7ag', '192.168.0.224', 1527793300, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333330303b), ('lh96ai9cahpvquucnrgtbn9426hcj90j', '192.168.0.224', 1527793309, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333330393b), ('ak6namc2kqbhb2mbo9bu764qqtjcdtnp', '192.168.0.224', 1527793318, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333331383b), ('qkmengm5piamjpf2tdmh9qplt798tq63', '192.168.0.224', 1527793327, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333332373b), ('05ffgb53sa85sk5t9k6bkak1vlrqrllg', '192.168.0.224', 1527793336, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333333363b), ('snu7ppt4j4mrhkam65q82frpoqm822ju', '192.168.0.224', 1527793345, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333334353b), ('1l06vrvr0089f4lri40ja3mc2nuevem1', '192.168.0.224', 1527793354, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333335343b), ('hqi0a5r4riifnin104k7b7u2tp2t5ah0', '192.168.0.224', 1527793363, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333336333b), ('8rr989c9a3gg17sriup7fsrrv1bgboof', '192.168.0.224', 1527793372, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333337323b), ('ghn9opiklgae2hqaur8cn37if0o7d6cc', '192.168.0.224', 1527793381, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333338313b), ('oavns4ufscdtsd1bv0lj4lk1bd0iaiou', '192.168.0.200', 1527793735, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333733353b7573756172696f7c733a343a22726f6f74223b656d61696c7c733a32303a2263616c626572746f6d7340676d61696c2e636f6d223b69647c733a313a2231223b7065726d697373616f7c733a313a2235223b6c6f6761646f7c623a313b), ('o01k13q3dl5ua2m0ge66d3p8njhqmn1h', '192.168.0.224', 1527793390, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333339303b), ('v6jqn23a14icq5do4b58edm3qtl67v87', '192.168.0.224', 1527793399, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333339393b), ('oe1o6vr7lf908os99otri16p1tvsjkb7', '192.168.0.224', 1527793408, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333430383b), ('jo70tnppt2f3f377iracrdraql7ajo24', '192.168.0.224', 1527793417, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333431373b), ('g6gjcpdg45vqpdrojmfb7ct27mvrhvbs', '192.168.0.224', 1527793426, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333432363b), ('tmva3c6l844skrt8v40vj1b7v05pqimn', '192.168.0.224', 1527793435, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333433353b), ('5t580l0r5jf7n1mb9ocll2vrclkoi18q', '192.168.0.224', 1527793444, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333434343b), ('u563b1avhku5pgo5sldr834mp08cqhjm', '192.168.0.224', 1527793453, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333435333b), ('nughteg15oj6m04kr9udteeidcba9phe', '192.168.0.224', 1527793462, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333436323b), ('paq8cn1tpu2tibo8pivd89tv2ralu4tt', '192.168.0.224', 1527793471, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333437313b), ('1crohbh9vfpokenrfk675nspbcltrbav', '192.168.0.224', 1527793480, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333438303b), ('amltbdfqnrtda9kjs69ch3hjjup7em02', '192.168.0.224', 1527793489, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333438393b), ('bjqv0pfn52romisv5eqp5jb208mu85o9', '192.168.0.224', 1527793498, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333439383b), ('h18iobdtrl41chqae0qdc9n0omgdtk8c', '192.168.0.224', 1527793507, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333530373b), ('tlf5ua8r5bujebhso9sc4j0tvgm5ti66', '192.168.0.224', 1527793515, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333531353b), ('tt6gs8vhdf9h2al7n4b1j3ro34d8cnbk', '192.168.0.224', 1527793524, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333532343b), ('ou4scggavbtjl8jt936vml8pregv9rtj', '192.168.0.224', 1527793533, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333533333b), ('31teuc6f7s2g56vn9422fmostluqd3gh', '192.168.0.224', 1527793542, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333534323b), ('pomokort8695p27b043oqpo0gnc50j6f', '192.168.0.224', 1527793551, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333535313b), ('po03asspv516i0o19thh6d91q3mmj0e8', '192.168.0.224', 1527793560, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333536303b), ('sgniqvht5kv0meopq4sl4g7mnca3cfce', '192.168.0.224', 1527793569, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333536393b), ('ql7mfpnoofhiqhug9bdiigk4hvdn4pm9', '192.168.0.224', 1527793578, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333537383b), ('rcu7npuhdjbib5g17e0bomv2tcfonb9r', '192.168.0.224', 1527793587, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333538373b), ('hvpj6kciojom7uscrfkpaega10opbhvb', '192.168.0.224', 1527793596, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333539363b), ('6ci6aksfkn00k475e34e0fa1obamdk7l', '192.168.0.224', 1527793605, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333630353b), ('ts62d376svtnnudusb3ars1fnadm4p66', '192.168.0.224', 1527793614, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333631343b), ('q84mtcauv4qrf9dcsn97a2kr0bu9oe4n', '192.168.0.224', 1527793623, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333632333b), ('bh88cfo3cd3c7aqdi9745m1le59u23go', '192.168.0.224', 1527793632, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333633323b), ('3jqfhbaoriskerfdcmmqi05i4u3v9sum', '192.168.0.224', 1527793641, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333634313b), ('9n46vved8ni33l7shei591nv9plj1s5e', '192.168.0.224', 1527793650, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333635303b), ('qufhscgto5r26fpc85npe69hh3ramnlu', '192.168.0.224', 1527793659, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333635393b), ('ng11cj00rhqgll5i71qp62l3djo50qt5', '192.168.0.224', 1527793668, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333636383b), ('3fnkvj7vq9jqnndfkemu9h44559oom08', '192.168.0.224', 1527793677, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333637373b), ('u4uc0t9fosuonlmqeuima6351jcffp84', '192.168.0.224', 1527793686, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333638363b), ('ev1d97d7dai5vf3kjgbclckpird3effr', '192.168.0.224', 1527793695, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333639353b), ('334ft6taccrmnc8sltvgjokjfibb1s4g', '192.168.0.224', 1527793704, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333730343b), ('dvlqm0h47fn941chbqd5vfup9h5c90su', '192.168.0.224', 1527793713, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333731333b), ('b0rpqkens99k5401t076rvmb91gnms7f', '192.168.0.224', 1527793722, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333732323b), ('msuj2e248b7a1tfagu7a2baf3cd3cgsi', '192.168.0.224', 1527793731, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333733313b), ('g4rk1r6tg7159seur4g40ur8v233es45', '192.168.0.200', 1527794049, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343034393b7573756172696f7c733a343a22726f6f74223b656d61696c7c733a32303a2263616c626572746f6d7340676d61696c2e636f6d223b69647c733a313a2231223b7065726d697373616f7c733a313a2235223b6c6f6761646f7c623a313b), ('vuhic7osr9uo5r00aq324mt8ep0kg2hk', '192.168.0.224', 1527793740, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333734303b), ('o7bf8mkvfcfpf1c6pklg7nv2nuoafkn0', '192.168.0.224', 1527793749, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333734393b), ('hgtson912s3km7kf4qd8ha3t03d9jkm3', '192.168.0.224', 1527793758, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333735383b), ('u91m8qnjb1se7d1l610fp01ia33a4ql2', '192.168.0.224', 1527793767, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333736373b), ('oepg39g6vsgqbobl1gbtftteltla9foi', '192.168.0.224', 1527793776, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333737363b), ('n5oevj3ophgdjhlt0fmokc8cbkfma0jp', '192.168.0.224', 1527793785, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333738353b), ('mi4fqnocsimcg1boob0745ovuaad6br8', '192.168.0.224', 1527793794, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333739343b), ('qthjugabk86q0o6jbike5ub5977vh7am', '192.168.0.224', 1527793804, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333830343b), ('76rivho02qu6t385dcholknchrriud04', '192.168.0.224', 1527793813, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333831333b), ('ru1ulum5jt700mucofgk804k54elesla', '192.168.0.224', 1527793822, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333832323b), ('shj52fusbu4e6hjep8u463ctjns3jup9', '192.168.0.224', 1527793831, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333833313b), ('cp08no0a7n82jqjrne3l5d2ms8u83m4j', '192.168.0.224', 1527793840, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333834303b), ('ktbqh2scmj4hrhn5iclrfcmosal69r5p', '192.168.0.224', 1527793849, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333834393b), ('s35bh8u9cv368gvmcbokqvo6bs6nfi5e', '192.168.0.224', 1527793858, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333835383b), ('ptd75ogp67m3ccp7b11ruh8vodgct57n', '192.168.0.224', 1527793867, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333836373b), ('cmeilo8jno6oj34dkb7f5edp4gnkkqp0', '192.168.0.224', 1527793876, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333837363b), ('t4hvp88o0lqstlismu796kv40ip09k4k', '192.168.0.224', 1527793885, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333838353b), ('eeb0eu81t2a3l6blvd584vv7f46hutus', '192.168.0.224', 1527793894, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333839343b), ('oaunj7l8vmnm3fqk2il4jane9rd97n4k', '192.168.0.224', 1527793903, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333930333b), ('3q3pd213ac3edbongqbjq46l7h9bauul', '192.168.0.224', 1527793912, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333931323b), ('vbnpt1eh1o0h519iuvmgcdg2a4goo9oa', '192.168.0.224', 1527793921, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333932313b), ('ni93f181d4keg0brspteiuf9riealtm3', '192.168.0.224', 1527793930, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333933303b), ('hhmrj81ek0and9mo5erl3v4bq26mk01m', '192.168.0.224', 1527793939, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333933393b), ('ago0gsi2r4ss3c4pv7bplcak6to45fpq', '192.168.0.224', 1527793949, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333934393b), ('9np6sa4tu236upojrf4m54itajurtlqs', '192.168.0.224', 1527793958, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333935383b), ('3gbcl8pd0geloj9s9f9fogomoukqf4hr', '192.168.0.224', 1527793967, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333936373b), ('68qnuqvkn67uefpnv9ilh464dnggkqhe', '192.168.0.224', 1527793976, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333937363b), ('n3rde416ndl91infhq209hh2dspss1bu', '192.168.0.224', 1527793985, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333938353b), ('mnet17b4pgp5ipdqdf2glaqqha66i92l', '192.168.0.224', 1527793994, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739333939343b), ('qaqm3p5rtna44vr059klbkgse6unref2', '192.168.0.224', 1527794003, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343030333b), ('pneh28g045g9rmeprdt2p30n2ik1o6vl', '192.168.0.224', 1527794012, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343031323b), ('2eoe93it4cb69n08a4sluqh2i89s8ntr', '192.168.0.224', 1527794021, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343032313b), ('a2q9totttfu8tkrvdt2vb4m9mo2bcoms', '192.168.0.224', 1527794030, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343033303b), ('tf1g9d5iubc7bmnr6aeurhb0kkqjgb7t', '192.168.0.224', 1527794039, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343033393b), ('heu6pvpbafqu7kvfb4u44rfha4sc5i4m', '192.168.0.224', 1527794048, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343034383b), ('5bagmdi5h5qsddi25ds9qqpmg01jgeq5', '192.168.0.200', 1527794369, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343336393b7573756172696f7c733a343a22726f6f74223b656d61696c7c733a32303a2263616c626572746f6d7340676d61696c2e636f6d223b69647c733a313a2231223b7065726d697373616f7c733a313a2235223b6c6f6761646f7c623a313b), ('7jf6vf43ppl8emrgracasucl0d1hga7u', '192.168.0.224', 1527794057, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343035373b), ('m7q5ibns0kpj9i38gibg8o27ko7avfch', '192.168.0.224', 1527794066, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343036363b), ('r86vh9e44hmkfmf82vp5f9sd403m3j64', '192.168.0.224', 1527794075, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343037353b), ('oi4ju9ij7j1173mieq8l963ti788ldvk', '192.168.0.224', 1527794084, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343038343b), ('3tmh23i7i0fl00bdbhc49gsmnmajv5ji', '192.168.0.224', 1527794093, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343039333b), ('p1bdpnrqe6muk2pq33gk99h1b0ggaona', '192.168.0.224', 1527794102, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343130323b), ('34g6htl7csr197cf05g902l05vuupkv4', '192.168.0.224', 1527794111, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343131313b), ('icon2tuh8c8pufo05f4agda227sssqju', '192.168.0.224', 1527794120, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343132303b), ('d3nthb8no1mrf24oetaet11m18nun925', '192.168.0.224', 1527794129, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343132393b), ('jjb4mlantph58vpco7miflg5m9s1fc6u', '192.168.0.224', 1527794138, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343133383b), ('qir7slomlp4cissla20ct7qabekmp8jt', '192.168.0.224', 1527794147, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343134373b), ('43hsb9njsjd1b2mbunvudr7e1rsftlle', '192.168.0.224', 1527794156, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343135363b), ('ts3rkc44f41007ibj49j735hs63caq1b', '192.168.0.224', 1527794165, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343136353b), ('23q7h0rvgua2tf036ho15nhid91qhgbe', '192.168.0.224', 1527794174, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343137343b), ('bl15bb1b1b1egp1eedt4veqqnj4pv52t', '192.168.0.224', 1527794183, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343138333b), ('261si8t3pn7vi84sgidt69fsukrkgui8', '192.168.0.224', 1527794192, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343139323b), ('ebmr3tnd8hip6dv335dslv0psok44rfq', '192.168.0.224', 1527794201, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343230313b), ('6g1kf0mnllqrvmkehp13c9q5psiime40', '192.168.0.224', 1527794210, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343231303b), ('f52ih8qiap64kn8egmjg6lth8e2mcteb', '192.168.0.224', 1527794219, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343231393b), ('uk59ba3eado0gqa7okb8gamicur18r4k', '192.168.0.224', 1527794228, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343232383b), ('aebrppf7qp77v94qke5s1njbh77ehtvm', '192.168.0.224', 1527794237, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343233373b), ('2jpcb0l0jcf54ug6cq7ldcsnpg6qto3n', '192.168.0.224', 1527794246, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343234363b), ('s39djgks908lruhv4fp3a8gbpaou0ls7', '192.168.0.224', 1527794255, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343235353b), ('73n5b6d852c7uu67dn96lcqedmg379ur', '192.168.0.224', 1527794264, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343236343b), ('oavfaf45vc11rsip1lgr96r7spu3iom9', '192.168.0.224', 1527794273, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343237333b), ('84vi8qie8rcj0rgh1q242tgub3o0l3r6', '192.168.0.224', 1527794282, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343238323b), ('ljcqgh0qfhdruu1kbhvj6j27hcphu4us', '192.168.0.224', 1527794291, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343239313b), ('k5vjrnlaaaqtnb5noqulaho95qih740g', '192.168.0.224', 1527794300, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343330303b), ('ch4pr3jlqb6mhjh86l31qbg0607tej3l', '192.168.0.224', 1527794309, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343330393b), ('i6km6ovj03ftf5s15br11hc5k09v5ns4', '192.168.0.224', 1527794318, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343331383b), ('cddkn59e17dq4p2m5gj0spdjip2lqdsd', '192.168.0.224', 1527794327, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343332373b), ('us34cq4e0o30d7lurk4icr2c82hta74f', '192.168.0.224', 1527794336, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343333363b), ('pkfd3mt6h881ct7feufn8qna7n45l4c6', '192.168.0.224', 1527794345, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343334353b), ('d2pb9i412j1fl1t7hc3eqdarrhp8t32t', '192.168.0.224', 1527794354, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343335343b), ('r261cpqompsi39o0e19b09abgje5opq4', '192.168.0.224', 1527794363, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343336333b), ('ldbva8kklrs4kmuvk3kkbg5m1o9mjt5d', '192.168.0.200', 1527794783, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343738333b7573756172696f7c733a343a22726f6f74223b656d61696c7c733a32303a2263616c626572746f6d7340676d61696c2e636f6d223b69647c733a313a2231223b7065726d697373616f7c733a313a2235223b6c6f6761646f7c623a313b), ('0sb89oulp7cs3leppu8t071qn3idqm40', '192.168.0.224', 1527794372, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343337323b), ('n07fko3iai729ni6u21k5je9ufehhmjb', '192.168.0.224', 1527794381, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343338313b), ('2suvn0afidfsftdfetu5fvc04qrnjg5k', '192.168.0.224', 1527794390, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343339303b), ('icuiqsokoedslmfrfc1n2vajhgmioqjb', '192.168.0.224', 1527794399, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343339393b), ('gvl3tm27v4ar75tfp108e1bmj0rjn6cc', '192.168.0.224', 1527794408, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343430383b), ('6tv4j2f6r40qs6ntr5sdenea8hh4hkod', '192.168.0.224', 1527794417, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343431373b), ('u8urla56qiga7qcagvbcm45at4lsdjja', '192.168.0.224', 1527794426, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343432363b), ('g3efjrfmjqjl84nqr45ud77fb3rq5k25', '192.168.0.224', 1527794435, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343433353b), ('de7sesute7s5ak4s4vm3taa5mtph4p6l', '192.168.0.224', 1527794444, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343434343b), ('tvgphiin1t5eafrcqd855ju534i3vho8', '192.168.0.224', 1527794453, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343435333b), ('307n7nv00jrbs6vmoiumrl02sgrjhf6r', '192.168.0.224', 1527794462, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343436323b), ('kce89b466htd0iuae8j1jj0iiotqvgvr', '192.168.0.224', 1527794471, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343437313b), ('1tekpb9fo5g7ghferdlql0nc3gdinj2q', '192.168.0.224', 1527794480, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343438303b), ('ue97d0qketqco7gemdft185fvmqs7tfh', '192.168.0.224', 1527794489, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343438393b), ('0obi4old3iok7dcm8ciu6m97i6e41bca', '192.168.0.224', 1527794498, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343439383b), ('aoug1k2jbg1sjt52mp101nro94krs4ei', '192.168.0.224', 1527794507, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343530373b), ('6slpg04v1mu32evkfmguqcq7a4et1jc7', '192.168.0.224', 1527794517, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343531373b), ('pnjilbab3lserdipbdu3vg4l80dkn19m', '192.168.0.224', 1527794526, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343532363b), ('bea9ftl8anft38v062ablp4042slef0m', '192.168.0.224', 1527794535, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343533353b), ('qihfmgr63d0dp6fk2ifqbnv5q2s9qa0v', '192.168.0.224', 1527794544, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343534343b), ('actg81tba44kttdi81djmuqnlilvfk90', '192.168.0.224', 1527794553, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343535333b), ('8e3i2kqojo1a1ler2p5hsm718vim9g6o', '192.168.0.224', 1527794562, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343536323b), ('5r6u71luhku31ud144l42b7333bk3jel', '192.168.0.224', 1527794571, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343537313b), ('sn77u2087u8hmtrpbmrdhs327o2o3ar4', '192.168.0.224', 1527794580, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343538303b), ('h3ljc89rdk20tfbjfs7dgrvtne2kpprk', '192.168.0.224', 1527794589, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343538393b), ('t5qppp0nom7ks73j9qcosgb0t2stj9n6', '192.168.0.224', 1527794598, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343539383b), ('jnam4jmqaaf3mjbvqpkbhq0n77smhqh3', '192.168.0.224', 1527794607, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343630373b), ('e8vgf0viqsme5la0otcjhus9ei4805og', '192.168.0.224', 1527794616, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343631363b), ('l8gdk45mo01bdl0h6sfgb27p0uo8p2da', '192.168.0.224', 1527794625, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343632353b), ('j6uum9kpbvh15fb89b3eiu8u8n1objbn', '192.168.0.224', 1527794634, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343633343b), ('vvnaad2s5d2pkbcgitjfbn7ilid439b8', '192.168.0.224', 1527794643, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343634333b), ('bc6hg1jt3d0115qko734j6ooap7phlim', '192.168.0.224', 1527794652, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343635323b), ('46037og2bp566fkr70tsdjv89bak4ece', '192.168.0.224', 1527794661, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343636313b), ('ggvt8hoh0293gphvnp0qgml6o2bmsb6p', '192.168.0.224', 1527794670, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343637303b), ('h15pirj4c1fleue3618vqbngf8n5e94f', '192.168.0.224', 1527794679, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343637393b), ('4n9phh9ujke92u165a6cln8huscg8r2n', '192.168.0.224', 1527794688, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343638383b), ('279i7ofqevpv5pobgjka4t8un3jkhjmt', '192.168.0.224', 1527794697, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343639373b), ('3hs52cfs99uod653tjlimb7o456s3k9d', '192.168.0.224', 1527794706, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343730363b), ('l2f7t1l2p911lbukbcukl0le0hk9fljg', '192.168.0.224', 1527794715, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343731353b), ('9nsu20iddib8p8fe4pt4couap6cageh2', '192.168.0.224', 1527794724, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343732343b), ('ui3q9g1pqmdsu07in4f5e8pi52ce3tmq', '192.168.0.224', 1527794733, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343733333b), ('usp06fb7uookq6i5rokp6908bui3us9n', '192.168.0.224', 1527794742, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343734323b), ('vcna9hhkdneqluargl9gitud0d97irfc', '192.168.0.224', 1527794751, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343735313b), ('8350b77ningpick8ms3nst866smtb1tf', '192.168.0.224', 1527794760, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343736303b), ('69njlrsj6rh8a8npfsaomjlptlkklse3', '192.168.0.224', 1527794769, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343736393b), ('oduftg8g7ru36aqjvmed0hon9seknnhv', '192.168.0.224', 1527794778, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343737383b), ('l94cdlsgv96tp4c09pa2urb1tj3qedcd', '192.168.0.200', 1527795202, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353230323b7573756172696f7c733a343a22726f6f74223b656d61696c7c733a32303a2263616c626572746f6d7340676d61696c2e636f6d223b69647c733a313a2231223b7065726d697373616f7c733a313a2235223b6c6f6761646f7c623a313b), ('8s70dk3kg77ae94097870n9f4qpqdsd3', '192.168.0.224', 1527794787, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343738373b), ('m3ranqg00d9qjn1tmma4cs4d52jmu9de', '192.168.0.224', 1527794796, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343739363b), ('aetr7h3he42o5k52ifa3qk302k92q989', '192.168.0.224', 1527794805, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343830353b), ('920lfucp0oo32621vqspre5q433et9jc', '192.168.0.224', 1527794814, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343831343b), ('nimd5hjifn0a63j3hhcs0ntvahh3vq7f', '192.168.0.224', 1527794824, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343832343b), ('vpg7epeea1c5ua5nlel1ir3cahmajsh4', '192.168.0.224', 1527794833, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343833333b), ('i27hnqdl1h7k9013tv6t2t51us5bdp9g', '192.168.0.224', 1527794842, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343834323b), ('rvpo10n5ks8l6t4ms4h4bnudt8hgf930', '192.168.0.224', 1527794851, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343835313b), ('810s9ikbtqpmaq2r53196i2dg1hugj6t', '192.168.0.224', 1527794860, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343836303b), ('l93a40kumcbaphg385m15iij7veocn65', '192.168.0.224', 1527794869, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343836393b), ('aiqkbn7decl4502eelqnfc77f674j03m', '192.168.0.224', 1527794878, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343837383b), ('n7vrhir6s1i4fmj100st237tipf17jcr', '192.168.0.224', 1527794887, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343838373b), ('i3hmjj6o113uitdrrmcit1oip04oi8ug', '192.168.0.224', 1527794896, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343839363b), ('dnomou48tsildg3d11forj5799pv2b0k', '192.168.0.224', 1527794905, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343930353b), ('1vt6e31v86rjblfuqh96f996hi8ipnh5', '192.168.0.224', 1527794914, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343931343b), ('2rh5aufrc3knp7g5r1qt3t91373scc34', '192.168.0.224', 1527794923, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343932333b), ('306eh06sj3u5qmn20u41qheqlkhq62n0', '192.168.0.224', 1527794932, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343933323b), ('i84r6o9vtl26ju7cl7as431i5md63vjl', '192.168.0.224', 1527794941, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343934313b), ('pnb5nq66ej6tp5j30vshcdc0m7el3hh0', '192.168.0.224', 1527794950, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343935303b), ('k6ns4nsihl6ojg8emhea33l9q9cc45am', '192.168.0.224', 1527794959, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343935393b), ('h8v3kr60v2nsmelob4e6m2c77arhqhgv', '192.168.0.224', 1527794968, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343936383b), ('nb3b34egp5ahof6tdh2q8v53hol8bkfr', '192.168.0.224', 1527794977, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343937373b), ('timghhej1bhsa11h39j2bbfdh3vbcjak', '192.168.0.224', 1527794986, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343938363b), ('qqeu9k8e8ppbmptnou9a7hetnttp1fe8', '192.168.0.224', 1527794996, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739343939363b), ('1jsf910a94sn13o3p0q4o9dp7ffij549', '192.168.0.224', 1527795005, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353030353b), ('erktqhvopbvqc0qdu56ecffigh6op9t4', '192.168.0.224', 1527795014, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353031343b), ('6nq4roa4nl5678d2eo01vpcavmcn1hhd', '192.168.0.224', 1527795023, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353032333b), ('rp5fkfvl29orklad2trffdbs1ic66pki', '192.168.0.224', 1527795032, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353033323b), ('vsopsak1rkmt15kl7nksdicguakdl7bs', '192.168.0.224', 1527795041, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353034313b), ('uf30kcc11l9o60q3qij203qgva4g9rjr', '192.168.0.224', 1527795050, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353035303b), ('drtrslmorlhv8q08ajihjcn1rrshmtcc', '192.168.0.224', 1527795059, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353035393b), ('6mder3pkqr2tl5gars2ka0j93g90fij8', '192.168.0.224', 1527795068, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353036383b), ('mq2sah5r58fua5r74p34bqu69tdmpsem', '192.168.0.224', 1527795077, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353037373b), ('du3pkvjns9gbmnhb3sfqr4csqa32vg2n', '192.168.0.224', 1527795086, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353038363b), ('dv1gqn1hun436219udgg8ojoa59sj4kq', '192.168.0.224', 1527795095, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353039353b), ('mtgaok4is2hcgtq76h2n5i548n0etghk', '192.168.0.224', 1527795104, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353130343b), ('m932mhd59rgk5h4a8mibla858lom4ujd', '192.168.0.224', 1527795113, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353131333b), ('vo0gnoaefprg373ae7r3jl1qeh2ao121', '192.168.0.224', 1527795122, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353132323b), ('7c0natp31o75er63orh5uobrerh2kn7o', '192.168.0.224', 1527795131, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353133313b), ('7htovoecmkn5jrgmgrbnil61oep8bu2c', '192.168.0.224', 1527795140, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353134303b), ('83qbgqlbq79jict5689i6l2kjc1bbjog', '192.168.0.224', 1527795150, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353135303b), ('f3d8ruh3opire1e7u6re2pp794q2e9oa', '192.168.0.224', 1527795159, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353135393b), ('a69jbdfh134rirjtn9u0ppmk4tok1sbf', '192.168.0.224', 1527795168, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353136383b), ('tfkj3nflqg8cbt5ng14jdffa4174dl26', '192.168.0.224', 1527795177, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353137373b), ('plm3q7bdeoheln9ben5mlj94aao6g60t', '192.168.0.224', 1527795186, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353138363b), ('a10o50s7mn2alg05vtk5dliu964ircsb', '192.168.0.224', 1527795195, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353139353b), ('g875s80cameauodu5pttsjjpld17tnsl', '192.168.0.200', 1527796157, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363135373b7573756172696f7c733a343a22726f6f74223b656d61696c7c733a32303a2263616c626572746f6d7340676d61696c2e636f6d223b69647c733a313a2231223b7065726d697373616f7c733a313a2235223b6c6f6761646f7c623a313b), ('gdctu3n8vpr28jlq6q9g3fea4l2k6ht6', '192.168.0.224', 1527795205, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353230353b), ('dv10memb4ocsv8jl3gaqit4iho54aej4', '192.168.0.224', 1527795215, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353231353b), ('mkmlduqsaiq3lrnsucf25994qe4tc7i2', '192.168.0.224', 1527795227, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353232373b), ('6pn160ej9314cjbgjmvt8q41ib2douer', '192.168.0.224', 1527795237, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353233373b), ('a96pm4s0q81tu75t5uldqmd71g0qn2l6', '192.168.0.224', 1527795246, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353234363b), ('hv5kfk6ek59ahb06qm68po8d7fks8gui', '192.168.0.224', 1527795255, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353235353b), ('iounjvl8iepvtm0ef9krt6oa884qip2g', '192.168.0.224', 1527795265, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353236353b), ('c3jfk049hop76rnhol95khptdhtecjii', '192.168.0.224', 1527795276, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353237363b), ('ursakoarcp7oemlqdg5klad0pjfikouq', '192.168.0.224', 1527795285, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353238353b), ('lavsrqoqofr9m7dtktr9aehh95h29ql5', '192.168.0.224', 1527795294, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353239343b), ('s5l6abiote2r1fjq048u180fionjjvpp', '192.168.0.224', 1527795303, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353330333b), ('qmd3dp59ift0jlhfi1t8065a0paj2e5p', '192.168.0.224', 1527795312, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353331323b), ('401rtmb869mq95umgq3vode3k9kv9sfa', '192.168.0.224', 1527795322, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353332323b), ('19pm4c2cpu9tog36k9083osbravn0fia', '192.168.0.224', 1527795333, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353333333b), ('ooqu56hfjclaqv72afrt76cpib15sbo8', '192.168.0.224', 1527795344, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353334343b), ('hfbra39gu72u9mrcik275n48unn5ju6g', '192.168.0.224', 1527795353, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353335333b); INSERT INTO `ci_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83vedlj481mp72j18netab7opikh6p5j', '192.168.0.224', 1527795363, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353336333b), ('p7oct9v48at58ko8jsoq7l2m2p2utarj', '192.168.0.224', 1527795372, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353337323b), ('psdkurh64vb4iaieped9son2ndnobogl', '192.168.0.224', 1527795382, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353338323b), ('gs7suesin1nn3ttooekk9bg62lpu9vri', '192.168.0.224', 1527795391, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353339313b), ('hvoqqrjv5o5sp34ofc41qn5sstinlp7m', '192.168.0.224', 1527795400, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353430303b), ('n87ue30gis2a2je081vkofq96b21m32t', '192.168.0.224', 1527795409, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353430393b), ('j34avv65619qhd7agh79r72h17jnb461', '192.168.0.224', 1527795419, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353431393b), ('558sh675su69kkll92ifcqigjr2d8954', '192.168.0.224', 1527795429, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353432393b), ('59hvv83pen19936mbu918bg3svr61kv7', '192.168.0.224', 1527795438, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353433383b), ('6g5983cr49t0qhocktoart1kr91hdhoc', '192.168.0.224', 1527795448, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353434383b), ('j30pco4d3vggvoqosvcj6b0m9plt5dna', '192.168.0.224', 1527795458, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353435383b), ('l59bnfbqbnuq9fen023fjlpum0v39dd5', '192.168.0.224', 1527795467, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353436373b), ('8d99k2emptcf2u2a6q97qb60ltnsep0h', '192.168.0.224', 1527795476, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353437363b), ('8v8s9utkmqthe183dvmi1ftg673unpha', '192.168.0.224', 1527795486, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353438363b), ('4mihtq81stlpk80b8aeqks39t5vug61g', '192.168.0.224', 1527795495, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353439353b), ('g4l4ef1vi8lbne2pqlfhs7705buj0ke1', '192.168.0.224', 1527795509, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353530393b), ('9acor6nce814clnfj2ifmhh0qf2bpme5', '192.168.0.224', 1527795518, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353531383b), ('61ehlt7pp8pq332jq3t7sfo6i3gjjc8r', '192.168.0.224', 1527795527, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353532373b), ('24hghsqnlrnir4lvnlsfqnh1uojqbvh7', '192.168.0.224', 1527795537, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353533373b), ('bkder4tqertg3q17t7icc3f756vdqa34', '192.168.0.224', 1527795546, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353534363b), ('9r9a75j376gmdovog9g0pgmcdq6af7h2', '192.168.0.224', 1527795556, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353535363b), ('sjh4dp6l0lpv0up9lbgmtg8h5h1b2g44', '192.168.0.224', 1527795565, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353536353b), ('u46llcm6c5c6boqdbrdldjmm8j9gq4l7', '192.168.0.224', 1527795574, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353537343b), ('6ssqo28sot70s4spisrsrhfnemlbshf5', '192.168.0.224', 1527795584, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353538343b), ('mpr3gglafofo4gdm2v7cm11duhcav0ho', '192.168.0.224', 1527795597, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353539373b), ('jjn5nj49kcd8okl26kt4n85okupdadqk', '192.168.0.224', 1527795606, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353630363b), ('tu6oi5ab4pv5cnmp8ghooihfhued53v4', '192.168.0.224', 1527795615, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353631353b), ('o648q9ffib60f672vapr9s165f8ro5u5', '192.168.0.224', 1527795624, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353632343b), ('cappf587it1tl0nqj3199m56ggquonqo', '192.168.0.224', 1527795635, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353633353b), ('lv5sb388v7r6i050okj1djm30gajp1pk', '192.168.0.224', 1527795645, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353634343b), ('4fe85v1uv4c91i8h9fcch9hq69e909tn', '192.168.0.224', 1527795654, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353635343b), ('hhktj25pinnm2n9pshcutqvindqjv3b3', '192.168.0.224', 1527795663, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353636333b), ('dopo4t4odaqf2tmv7dcugpub13ok1c2s', '192.168.0.224', 1527795675, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353637353b), ('u2r29qqb13hdd3g0tg81gqt95elhsdi9', '192.168.0.224', 1527795685, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353638353b), ('auf9j6pu6n5qhslt7rq8kil2vhmn0skq', '192.168.0.224', 1527795695, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353639353b), ('gdv9652q8g8otuqh6i6vp21l01leaf30', '192.168.0.224', 1527795705, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353730353b), ('m6n31oq5nqm8al8o60rp2dbk50ak9vfk', '192.168.0.224', 1527795714, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353731343b), ('cdcio9b20e0lofcnfpdij1lql0htrjt7', '192.168.0.224', 1527795724, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353732343b), ('ibogk1bcd3jgu6agudjcjjbfvb7a2fj3', '192.168.0.224', 1527795733, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353733333b), ('e97ee16lgjbo14q3ru1h89jeph1ebg0j', '192.168.0.224', 1527795742, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353734323b), ('8jv3bam86n6ul1f2al69e3tsgj22kck6', '192.168.0.224', 1527795753, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353735333b), ('0v41joilo8bb3mt5vfr7ts4euk39nmom', '192.168.0.224', 1527795762, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353736323b), ('bdaonhcfo8kfqqs7osquqnsrvqb9j4a6', '192.168.0.224', 1527795772, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353737323b), ('8hlqngnbk07226oq181p6mm4tcggq3n8', '192.168.0.224', 1527795781, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353738313b), ('smqv7e4oaom7v7bmgmi43u8l2kmc56sq', '192.168.0.224', 1527795790, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353739303b), ('nvtv7bkoqa5as91b50s49jrkerur0ep7', '192.168.0.224', 1527795799, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353739393b), ('vk9cnva4ghftlll5c90kn24cu466ohm8', '192.168.0.224', 1527795808, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353830383b), ('eiod7jb1frlkkkab30tiuh2t214iqmef', '192.168.0.224', 1527795817, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353831373b), ('jver0jbqp8lk8q1g7ll55pijsm9nobhs', '192.168.0.224', 1527795826, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353832363b), ('56kcp3chproilt4b6chsh2foedlj4dl0', '192.168.0.224', 1527795835, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353833353b), ('klorc8h508t2h5r2cel9lsuov1ngsrnh', '192.168.0.224', 1527795844, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353834343b), ('64n93pj21op7bjcub9sbf1aho8tja8la', '192.168.0.224', 1527795853, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353835333b), ('ulhglsipt11t7edlveqqefl9u9jl28qe', '192.168.0.224', 1527795862, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353836323b), ('0jtr1m21bjf96lqjo9elfsp96dame8qp', '192.168.0.224', 1527795871, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353837313b), ('8j7dk8rho1pl0l73u2n1qelh4f7l6rc4', '192.168.0.224', 1527795880, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353838303b), ('lghqg0knjsera2as90e8266i6jerhmij', '192.168.0.224', 1527795889, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353838393b), ('sn5es6flovg8p0ue6n1nudlcccso7rgt', '192.168.0.224', 1527795898, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353839383b), ('glmnhch0ekvdo1gq1nutqbnlusi0od4t', '192.168.0.224', 1527795907, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353930373b), ('l9559pqbt52m31henpeepdjuppu89p5p', '192.168.0.224', 1527795916, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353931363b), ('hs914nkfundfs5e714rh3ub2vh0s1pre', '192.168.0.224', 1527795925, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353932353b), ('2m34ip249kum6u39712igi5qbgqucqp0', '192.168.0.224', 1527795934, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739353933343b), ('hqjkjg7madev00l5f3e88gg5fv59844v', '192.168.0.224', 1527796034, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363033343b), ('7j2sli6j7olj5cacf514hilce8157p9i', '192.168.0.224', 1527796043, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363034333b), ('q94h9eu71ncd8s4o5biru417jkslsm9i', '192.168.0.224', 1527796052, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363035323b), ('d8epsske0mf20srce9n0oiem5avo6vk0', '192.168.0.224', 1527796061, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363036313b), ('kkj2eqdgcb185tlecpudvo5lkmd30nt8', '192.168.0.224', 1527796070, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363037303b), ('1r8fofmqdug4h99m5c98eui7gmbgko8u', '192.168.0.224', 1527796070, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363037303b), ('tms8illv2surhl3njic3v0em6d50f5qp', '192.168.0.224', 1527796079, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363037393b), ('vccbl161ob24006tcrq3gc2mv5ubqi8d', '192.168.0.224', 1527796088, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363038383b), ('hekktjof4o17h132bkpmuaianu2utqn1', '192.168.0.224', 1527796097, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363039373b), ('i25ja021mvrsiu739kjlbacr4c66q1cb', '192.168.0.224', 1527796106, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363130363b), ('nm1n31klspq6j82vu23leb4r1s776mf9', '192.168.0.224', 1527796115, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363131353b), ('3b8oju10jn2vqkofveegcgafpep0hica', '192.168.0.224', 1527796124, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363132343b), ('2jsq0k21esqm6scecig7hjft2q3minid', '192.168.0.224', 1527796133, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363133333b), ('64in9m656on174295lms8np8ckt4dt0l', '192.168.0.224', 1527796142, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363134323b), ('0o8gv0491ep0eu4ptf06u4qbg5u2npu1', '192.168.0.224', 1527796151, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363135313b), ('j46pqo3djguisov196thu9p2e5ul5al9', '192.168.0.200', 1527798302, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383330323b7573756172696f7c733a343a22726f6f74223b656d61696c7c733a32303a2263616c626572746f6d7340676d61696c2e636f6d223b69647c733a313a2231223b7065726d697373616f7c733a313a2235223b6c6f6761646f7c623a313b), ('d3653satol7jqeqrefkg17f4r0sn9fl9', '192.168.0.224', 1527796160, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363136303b), ('std3jam422sp5vvd6gtkdce3d726d0ts', '192.168.0.224', 1527796169, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363136393b), ('80q7tvcjfk6v9v9m0jieeulfjl2n3hoj', '192.168.0.224', 1527796178, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363137383b), ('qg9vpvkn400cjpfi4dsstm8gd1pgi6in', '192.168.0.224', 1527796187, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363138373b), ('noi8v0c90h0ci1s6vrghtk8ul107v06k', '192.168.0.224', 1527796196, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363139363b), ('pj5hbve4ms2v3gansaoqncg124t3tva9', '192.168.0.224', 1527796205, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363230353b), ('b79u9ngoruumt1a00t3dljg8f2t6qmhe', '192.168.0.224', 1527796214, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363231343b), ('hkmnhjjqnuvp5a8go23qal3eussr9fo1', '192.168.0.224', 1527796223, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363232333b), ('bokbnuu2qeqpb307ru9qstlucthl1d6o', '192.168.0.224', 1527796232, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363233323b), ('jlf4vq49vg148s8ppk3n7p8rtbcm3kco', '192.168.0.224', 1527796241, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363234313b), ('qcfadk0lfmmkhaf5bc5uhlecu9vhdc8m', '192.168.0.224', 1527796251, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363235313b), ('e3u7s9l1boig3ubggrotvtc2tbbpat4j', '192.168.0.224', 1527796260, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363236303b), ('3lfsa82b5j4l1806ufhv14r23srkd02c', '192.168.0.224', 1527796269, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363236393b), ('bcol4a2f1k5iv9tgkfo03pejg9m6ra9i', '192.168.0.224', 1527796278, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363237383b), ('vp4vl013dec1f46rqcjku247ltfog18f', '192.168.0.224', 1527796287, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363238373b), ('cq1e9n7mitghuilfhjl4mrfshvmt7af4', '192.168.0.224', 1527796296, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363239363b), ('fuesnc33fcr4ad2j8lspput1lmqpmhel', '192.168.0.224', 1527796305, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363330353b), ('b869akugjs4jigsho8rboe1e6oa9k3bt', '192.168.0.224', 1527796314, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363331343b), ('9ugu5n2tlc04alf548k3gud63f3pcutk', '192.168.0.224', 1527796324, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363332343b), ('1vleb59r7t3hb5v0q2332781s05mvbsj', '192.168.0.224', 1527796333, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363333333b), ('1r378crq0kplpkc70i66hou710i5slr2', '192.168.0.224', 1527796341, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363334313b), ('t2tafth1tum0g1th5ub66ec1k082ugmf', '192.168.0.224', 1527796350, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363335303b), ('14jd5tjrqdaacviis0jqnih02fo48rd6', '192.168.0.224', 1527796359, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363335393b), ('kn7s6p59i0vca21a4192lqqfbk3m1apf', '192.168.0.224', 1527796368, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363336383b), ('ci4ns5t22icqophk60mc2k44n7v16veu', '192.168.0.224', 1527796377, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363337373b), ('dvhjjr4b038p482va1tc4rhjst1ib98b', '192.168.0.224', 1527796386, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363338363b), ('g3sa3tgr0npmvsbqohph95i3vgvedrlb', '192.168.0.224', 1527796395, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363339353b), ('lijd6dpb1931imtjj6401tg7k3lukp2f', '192.168.0.224', 1527796404, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363430343b), ('rajqebt62mh1ds6k4kvqen6ef6f1ie2u', '192.168.0.224', 1527796413, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363431333b), ('5rsr3li8k7blbrf4m6pqujkjaegokdur', '192.168.0.224', 1527796422, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363432323b), ('7l793ll64l21099ltpoapg2cd1nb9hjv', '192.168.0.224', 1527796431, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363433313b), ('r7q2khu4ju2t0n7hl3q0i79jm38o2r9a', '192.168.0.224', 1527796440, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363434303b), ('o5aqkaq4k6at8puq5ionlfe7u0c43n9c', '192.168.0.224', 1527796449, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363434393b), ('tlvg5al75lbl7gjcllpuf8hja1adcq20', '192.168.0.224', 1527796458, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363435383b), ('nt72bhpni8lnn2hsh36hlnl8t3gpkso2', '192.168.0.224', 1527796467, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363436373b), ('d17gl879m4lcgqr6q2qrd89q5h99i25u', '192.168.0.224', 1527796476, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363437363b), ('hl98h6q1aj48uev48ouaq1b02cc8eeo9', '192.168.0.224', 1527796485, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363438353b), ('hl678a673dodj9itnk68t2hmtmqdhal1', '192.168.0.224', 1527796494, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363439343b), ('ffj0m6p3b9ldn550498rftabd09k597p', '192.168.0.224', 1527796503, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363530333b), ('d5e0gcdnnv5pctkl2f2cminpfv1c1re3', '192.168.0.224', 1527796512, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363531323b), ('7fckm4jgc5vla5d19frkinj9c8dkgobs', '192.168.0.224', 1527796521, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363532313b), ('eo3j051rspc5cqt137rk1r8ti8rpg73b', '192.168.0.224', 1527796530, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363533303b), ('5cudu94a992l7ie892hfb6md3qrqh18q', '192.168.0.224', 1527796539, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363533393b), ('2afonr5gs1hir5bp4644dbcul72eak62', '192.168.0.224', 1527796548, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363534383b), ('3ttmlqt6amq6nsthoego5e1jqtlaoums', '192.168.0.224', 1527796557, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363535373b), ('ld4brgj8qb2phl36kihdukn6v7caj1gv', '192.168.0.224', 1527796566, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363536363b), ('e6knik9kq4409o5okhhurmdg8acoq29a', '192.168.0.224', 1527796575, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363537353b), ('rdqa8agf1aab2el0p8fidatgiercnlid', '192.168.0.224', 1527796584, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363538343b), ('gslkc8h5u6o3nqmjg7v6h1gm9qn7gbva', '192.168.0.224', 1527796593, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363539333b), ('m6hcb22d5kuju8sf83ucggst3rqc4ggn', '192.168.0.224', 1527796602, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363630323b), ('4js4fg5nanv9inrfnbg6buv0gqkvj0gg', '192.168.0.224', 1527796612, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363631323b), ('d7afcqvi72vd492rgagf0r58ie9qp1od', '192.168.0.224', 1527796621, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363632313b), ('7102n2p6r9utt0jpou37caki04da3eur', '192.168.0.224', 1527796630, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363633303b), ('ih1drsbuohcj508ukfuqljocsgm16g5i', '192.168.0.224', 1527796639, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363633393b), ('dl02dik0hb7lerbe4lephcc38jkop2hp', '192.168.0.224', 1527796649, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363634393b), ('bp0c59l5johldb43gbpeafsljuuncd1u', '192.168.0.224', 1527796658, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363635383b), ('kli8k5k7lfkk39rmsv1b3960jbah3sc6', '192.168.0.224', 1527796667, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363636373b), ('r0j59krg4bejj36hcbil1qld23ig2m5g', '192.168.0.224', 1527796676, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363637363b), ('d08233q3096hm4v81bouk1f4661e46fu', '192.168.0.224', 1527796686, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363638363b), ('8skjv3cmqfvj8qaat9temoe4ltojgv7t', '192.168.0.224', 1527796695, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363639353b), ('srkngq6lkf7rmhck94it8stf5vnedsfe', '192.168.0.224', 1527796704, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363730343b), ('vccsm220toietg8d6dku8bigg17pfb15', '192.168.0.224', 1527796713, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363731333b), ('eukms106hukag5heittptkbkhd5t9e4m', '192.168.0.224', 1527796722, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363732323b), ('q6ste91rhi3qr9voddenslh1a5n38iem', '192.168.0.224', 1527796731, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363733313b), ('db75m1c07bao0nk4i7omd82n4357fmgi', '192.168.0.224', 1527796740, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363734303b), ('j44id9nqmqrpaqcbpi158q6tlrjme2pi', '192.168.0.224', 1527796749, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363734393b), ('6n5o6b2f2dl1r63giuosv6uv0pdrdgac', '192.168.0.224', 1527796758, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363735383b), ('fu6ru3i4n4v8igvrohi981n5msuli2pb', '192.168.0.224', 1527796767, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363736373b), ('agkt5p1d5sd16ifo3pd8h32cip5roics', '192.168.0.224', 1527796776, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363737363b), ('0fpgscqr81uh5ap1n4cf4go67g73k649', '192.168.0.224', 1527796785, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363738353b), ('nnh70hg1aon9aeeeqcp90dj68o4lahbo', '192.168.0.224', 1527796794, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363739343b), ('3qs7lm6ob2ce45n8vaundepqcdfoggni', '192.168.0.224', 1527796803, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363830333b), ('po6d6tg6b0o2904q4a9fipnp6973u3ar', '192.168.0.224', 1527796812, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363831323b), ('gfhdrn9s92kg42jht3vcpbt9eup0nrad', '192.168.0.224', 1527796821, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363832313b), ('r9b82uqscfflocmd8pjrd4bgmm6lb5d3', '192.168.0.224', 1527796830, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363833303b), ('ait9ouus6jiamolpcvspoe83nvenvoqq', '192.168.0.224', 1527796839, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363833393b), ('86u11tpihcjtnl975h76jh6ugocbf6g6', '192.168.0.224', 1527796848, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363834383b), ('kn3fqj8isgpqv38pgc9cls8ec5rbriic', '192.168.0.224', 1527796858, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363835383b), ('2pabdnp871qnlkgtl23nnt6enmkka8ed', '192.168.0.224', 1527796867, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363836373b), ('udtuiidrlgq1nn05i04a597ar97a5d93', '192.168.0.224', 1527796876, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363837363b), ('p4cs7hujnas2d4nb9i235tolt5b8ftcc', '192.168.0.224', 1527796885, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363838353b), ('4f2vb923qdh7o1tbrtpu2eco1qj8v232', '192.168.0.224', 1527796894, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363839343b), ('30npon8cgj4p8ru4tpf28uoeafukh0he', '192.168.0.224', 1527796903, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363930333b), ('lpimmb7c7kbaqhcjdht0vq7135si7fkb', '192.168.0.224', 1527796913, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363931333b), ('61gm5om6mm420rdntmonhop8phitve2u', '192.168.0.224', 1527796922, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363932323b), ('1ak59d6buogl2o2teous03o6nuc4h9gh', '192.168.0.224', 1527796931, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363933313b), ('b7kmhpisbn477mn981brp8ac3tm9r4cv', '192.168.0.224', 1527796940, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363934303b), ('c4sleqn74iqcrtdaam70dul7qj05a5p4', '192.168.0.224', 1527796949, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363934393b), ('8bkh714jnjf5sd1cb5ka9emmlek7a6bo', '192.168.0.224', 1527796958, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363935383b), ('8vjclfpsq8hf4pgbb1r9b7runc9523km', '192.168.0.224', 1527796968, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363936383b), ('1cjnhht0mt2vhi1cep67neprrpaouj4d', '192.168.0.224', 1527796977, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363937373b), ('dcovnqprgavn57ksn8lme4e9agclno7n', '192.168.0.224', 1527796986, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363938363b), ('56m4vmpn6o2h3e7kqp83tdi1hf39gma2', '192.168.0.224', 1527796995, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739363939353b), ('kl7tu3rcnut6llt6ik8fj5lrjlmj0otr', '192.168.0.224', 1527797005, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373030353b), ('ei6mgpq069jar32kije77dm8brnbjikm', '192.168.0.224', 1527797014, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373031343b), ('1dv3au9m86i0r1qspc5vptu47fhbekcd', '192.168.0.224', 1527797023, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373032333b), ('jhgvtlnijm9d3broiiihd1ck8r5h9f3h', '192.168.0.224', 1527797033, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373033333b), ('fkfgurqk2vgic8cerdi6bds49umdjl21', '192.168.0.224', 1527797042, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373034323b), ('j80ah2qp42vmjj3qhpn863jui1tpjugu', '192.168.0.224', 1527797051, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373035313b), ('rv1kbfv7u6ce0g5rc7r9921bvr8nt1a5', '192.168.0.224', 1527797061, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373036313b), ('9qsn3hm0fvgbc3dvb57ffl86hhjt0kod', '192.168.0.224', 1527797070, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373037303b), ('3qutjanno11ahu1j2ljadv03oj1shkuj', '192.168.0.224', 1527797079, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373037393b), ('pveiqddi4s4qdlmf460fii0bh8ujon9n', '192.168.0.224', 1527797089, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373038393b), ('ntshelfa5sn6pvuh6v5ku5ta254ntrdu', '192.168.0.224', 1527797098, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373039383b), ('6qfg9u6g8llq48i2fmhdkdjmdb0nfmqr', '192.168.0.224', 1527797107, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373130373b), ('m8e9n02odmka7s7e44oo33aq4h1ue1fu', '192.168.0.224', 1527797116, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373131363b), ('2f013r72cm77ldgetfvos7o4r9e1a6jb', '192.168.0.224', 1527797125, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373132353b), ('2n37ce5b7tbchcrdjhdk2te4blrispes', '192.168.0.224', 1527797134, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373133343b), ('al54n0qhbgn4alo5cfbc57crehkshtib', '192.168.0.224', 1527797143, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373134333b), ('p1i2qrgmjeftcakoke0u3kin7erggtvl', '192.168.0.224', 1527797152, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373135323b), ('629o3ducla7op9urq9kaqgtu6f7tgdg8', '192.168.0.224', 1527797161, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373136313b), ('lbafe6mm3mesn6i3uijh2i3ebdgr5dgp', '192.168.0.224', 1527797170, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373137303b), ('e1ap5b4hdbge3epsc8ijpuo97t0v53us', '192.168.0.224', 1527797179, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373137393b), ('mvn29n49tjbk53eo336cr9hbk3cbgbs9', '192.168.0.224', 1527797188, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373138383b), ('rjtp5sdl7guidrbchq4103v91fb2ur6m', '192.168.0.224', 1527797197, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373139373b), ('k3bjdlamv866oig0ksfe5ksbtqcl4crf', '192.168.0.224', 1527797206, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373230363b), ('3john6oalmb5qne07o4sefspnl9k2egj', '192.168.0.224', 1527797215, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373231353b), ('43o60eqn5mnp1vhv385hc4kn0qlgtsda', '192.168.0.224', 1527797224, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373232343b), ('r02afkt605am91tbcejk723o8sk3o43o', '192.168.0.224', 1527797234, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373233343b), ('2591cu8me5bn5n2ifo9i40kijnm57si2', '192.168.0.224', 1527797243, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373234333b), ('pa5j6tm96g1mnc2glsboph34bp41pmd7', '192.168.0.224', 1527797252, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373235323b), ('146r6ed0ctpb88fjs6r5nd0imfsd29et', '192.168.0.224', 1527797261, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373236313b), ('4tbggmolodmdibcb7lhsocanv4v8941m', '192.168.0.224', 1527797270, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373237303b), ('r467ba3vr6mvhlgtimdc40sgb9oigoa2', '192.168.0.224', 1527797279, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373237393b), ('glnpg0ufhmu7t5mnkl57r2qj9u85sotj', '192.168.0.224', 1527797289, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373238393b), ('agab7n2g9lnon0g6jm8ghs8rvcq509vu', '192.168.0.224', 1527797298, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373239383b), ('ga5g7r0uomhuq0h12j77dcmmf6q3cksu', '192.168.0.224', 1527797307, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373330373b), ('5adr2e015jrdf280chtrqdj3jf32420p', '192.168.0.224', 1527797316, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373331363b), ('bbevvetfuvh84j0joi5u8i6il6fr8df7', '192.168.0.224', 1527797325, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373332353b), ('uu6q46qcdefbmnhfnoukrlnmiokijhk6', '192.168.0.224', 1527797334, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373333343b), ('069a18qqb6ba4j2vq5mn5viiv4jrh39t', '192.168.0.224', 1527797343, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373334333b), ('qta25ua0ur44ghjn2aco6imd0ujr8ivo', '192.168.0.224', 1527797352, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373335323b), ('1t255mb3j4aa7e5tcg1jbr9d5661ndiu', '192.168.0.224', 1527797361, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373336313b), ('jno5hbhh874kmb84tp3c8ggbgabl3m78', '192.168.0.224', 1527797370, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373337303b), ('igtld1nmfedgkd7snr9618gu12kedrm3', '192.168.0.224', 1527797379, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373337393b), ('16dhsdq9dbihmn0b2a39psvfbvvek5fu', '192.168.0.224', 1527797388, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373338383b), ('gqc7mcf8bt3fgk61820767cgibq1um6b', '192.168.0.224', 1527797398, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373339383b), ('g1h1f50n4r0ft8fhsg2e9huehsl3sdr0', '192.168.0.224', 1527797407, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373430373b), ('8v1a4dn6gh97o76h0cli59puaql0o6hg', '192.168.0.224', 1527797416, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373431363b), ('kidjp38jvkl7fa92od21sp9s18tpv4pr', '192.168.0.224', 1527797425, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373432353b), ('ka7hh6krfs1fl2l7laa2gegfdm1c0gu5', '192.168.0.224', 1527797434, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373433343b), ('4re5b914td30mc2fk0b4rrc8iguk6t8l', '192.168.0.224', 1527797443, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373434333b), ('ed4e0cccg6lp73cbckb3i6dsgv2473hv', '192.168.0.224', 1527797452, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373435323b), ('2gi1g8mfb75gv9539ot7705ak57ct1v5', '192.168.0.224', 1527797461, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373436313b), ('2sn2g9bk4122flo7j2uesp1302s8e4ov', '192.168.0.224', 1527797470, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373437303b), ('dkf8jvfi0ss8ttihjpjj9pf6phppgapq', '192.168.0.224', 1527797479, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373437393b), ('0bivqlo71bjt541adgeo1s5dh8nrqmo6', '192.168.0.224', 1527797489, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373438393b), ('tg8nv1of29ngfv85ivcrshtqlqde740k', '192.168.0.224', 1527797498, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373439383b), ('aa2l85qbup7o09s5goviufsvtp679pbu', '192.168.0.224', 1527797507, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373530373b), ('511hq9puoq4dsaj11cmclsvub2goujvh', '192.168.0.224', 1527797516, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373531363b), ('vnj5u56uleq23vu2mos3is6o2pc9dvkc', '192.168.0.224', 1527797525, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373532353b), ('di5fpeu88b1m6kg0o97mjh64qvc779j8', '192.168.0.224', 1527797534, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373533343b), ('4ftftp10mljdd6u4v0cr9u5a6iilj3pn', '192.168.0.224', 1527797543, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373534333b), ('uce31gie2icdcmcfj3bbberfjqa4i8k4', '192.168.0.224', 1527797552, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373535323b), ('vefv2gmpmrjqq68j56p2lmlubm6tdo4t', '192.168.0.224', 1527797561, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373536313b), ('siigipd3fbsk00m1icfa8le4u6ib2se2', '192.168.0.224', 1527797570, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373537303b), ('qjcqq1kghc9qbre7c0phmqia177o2lhe', '192.168.0.224', 1527797579, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373537393b), ('5o2bot37b211hchtrjvq5ottca64c607', '192.168.0.224', 1527797588, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373538383b), ('2lhasg8i0oue1ejaq3a68krfphm6ab6b', '192.168.0.224', 1527797598, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373539383b), ('hc8nait25pqsst95cq4vdm9322iqki01', '192.168.0.224', 1527797607, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373630373b), ('p93p97blpvdpep3facnv4knatrkga0n4', '192.168.0.224', 1527797616, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373631363b), ('bm5k9t21g9ag4nvtc9d9nrsfn9b93t6a', '192.168.0.224', 1527797625, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373632353b), ('an48aipbqd58er0s0gaqq42k99sst86q', '192.168.0.224', 1527797635, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373633353b), ('mr982vofod8p43hf5sdu0movj37n598g', '192.168.0.224', 1527797644, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373634343b), ('vb0nkn2ngqqqi0rfpgide9rppqdtdou1', '192.168.0.224', 1527797653, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373635333b), ('rvrs60qifadnaevr779ti6ijvjsikh9i', '192.168.0.224', 1527797662, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373636323b), ('oc3ejj3rs6paibdmt9mbrg7ltobf4n53', '192.168.0.224', 1527797671, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373637313b), ('pi06ehkuo5u00f69n4nds4ur6u4ahcpa', '192.168.0.224', 1527797680, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373638303b), ('d5clrkjnb54495pu0k8fe8gg6v72qin8', '192.168.0.224', 1527797689, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373638393b), ('loj05hc6odiooj70eatnobg3fffdbvkv', '192.168.0.224', 1527797698, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373639383b), ('5l6mkgf2i9vabsif4e2so4srqoh947i9', '192.168.0.224', 1527797707, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373730373b), ('5fdh071g0eti38ar9esmi4a7j2af9n9m', '192.168.0.224', 1527797716, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373731363b), ('486g767rrlmjhlf296sgolv19ntrs2t3', '192.168.0.224', 1527797725, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373732353b), ('7n8lgjd4qk53gas63dsqfeg4rd3vco6h', '192.168.0.224', 1527797734, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373733343b), ('edv5ur5u0og94iut4oehp2n868ceifo6', '192.168.0.224', 1527797743, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373734333b), ('uno3gab1n0t7uanj79mc5hbfd5cj0od6', '192.168.0.224', 1527797752, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373735323b), ('l67d65ep0iiaeomi6n8gnc6v4r1v17fn', '192.168.0.224', 1527797761, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373736313b), ('4e46pc9eu6os8s0ls3t74esfg7j640u5', '192.168.0.224', 1527797770, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373737303b), ('tqllkd557520mjsdfbg79nq3tlm6ji2r', '192.168.0.224', 1527797779, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373737393b), ('852fmg8imvtccg38913g6kgfa4pemaa3', '192.168.0.224', 1527797789, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373738393b), ('32rm3cohcmi6qdp03h0au4avbb7csifc', '192.168.0.224', 1527797798, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373739383b), ('c6b6jh1bgfav0rma5u2q7rpn0tknh470', '192.168.0.224', 1527797807, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373830373b), ('ff4mrnkd2takkpn1eehf3aokqqha3sht', '192.168.0.224', 1527797816, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373831363b), ('1o0rivtela5ecpe84u0d4km7b4gu58vj', '192.168.0.224', 1527797825, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373832353b), ('kf15b8em92f0aoep9ba0ai4doq9ofkj7', '192.168.0.224', 1527797835, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373833353b), ('23ipm4qi4k83qmeq4sr8foksl8j18rla', '192.168.0.224', 1527797843, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373834333b), ('22ha72kqj0mg5odhcnskbc41paohcvo0', '192.168.0.224', 1527797853, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373835333b), ('lsrpikmmf3h49oqr0mfqa9kdbkvkaqjd', '192.168.0.224', 1527797862, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373836323b), ('ung8m1fnt83ivtohp0gh8jv37jpfpl1q', '192.168.0.224', 1527797871, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373837313b), ('duqsjmh8e3lrjip2ngk8u40hjcvab6ng', '192.168.0.224', 1527797880, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373838303b), ('sqr95j8bor0mjf5pb9est3v80kg3pdbo', '192.168.0.224', 1527797889, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373838383b), ('2nv64cdrlqj1kfht7clse3tm0b5qutuf', '192.168.0.224', 1527797898, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373839383b), ('i2iu3nolstgthlabjd74bv65vdp98568', '192.168.0.224', 1527797906, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373930363b), ('mngctcve4eq96f18gc6o45i71649hj9j', '192.168.0.224', 1527797915, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373931353b), ('bpu0m1ur2uf9l35769nhj3es9m15kq8l', '192.168.0.224', 1527797924, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373932343b), ('il4v444m6rnkf441udl6qut1boqiin48', '192.168.0.224', 1527797933, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373933333b), ('sd3f5l4a0nrb7e5oo0t0s808i1eqds09', '192.168.0.224', 1527797942, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373934323b), ('g2g4ou9be36jip0fcep39ki2snbe551f', '192.168.0.224', 1527797951, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373935313b), ('pfcrg6gk38hjbp64hl6g4g284l4u0qgh', '192.168.0.224', 1527797960, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373936303b), ('92phnucm0i7tc4nfaon1atgr39djtlrj', '192.168.0.224', 1527797969, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373936393b), ('lu1d0js2vq1dt3a23sccqp6ka1tb3vb8', '192.168.0.224', 1527797978, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373937383b), ('fg2ejep920l95fbu21840kpg13eos3p5', '192.168.0.224', 1527797987, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373938373b), ('hslmborkp8vklc8nrnpden9iedvuh5j9', '192.168.0.224', 1527797997, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739373939373b), ('31jo1i475vfkv4pe1jam0jr9mo90sp9h', '192.168.0.224', 1527798006, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383030363b), ('pi3msb05e4juu6a2lbgq9ok51nuhb69q', '192.168.0.224', 1527798015, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383031353b), ('0handdrftvd80b8er5scevktjifkns4l', '192.168.0.224', 1527798024, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383032343b), ('c3qgbj7eq52uiuvrfuq4euhmf6k35r5s', '192.168.0.224', 1527798032, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383033323b), ('r76mnto6d051n6etcs36jghehm25tk8f', '192.168.0.224', 1527798041, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383034313b), ('h6muv2gos1a654po3f1rdagufu959qh7', '192.168.0.224', 1527798050, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383035303b), ('bccivc35lvtir6avs1lvs765pgfbq0lp', '192.168.0.224', 1527798059, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383035393b), ('lqtvnlkd4gqa2k25ctldonkim2j31lsq', '192.168.0.224', 1527798069, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383036383b), ('gdhqnoa1pbcirkpc3q2e4ui7jotg88ec', '192.168.0.224', 1527798077, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383037373b), ('26kdb6lvio82o3s0uljsifv26m3ijjqv', '192.168.0.224', 1527798086, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383038363b), ('moetnh5tnsjnf2s6v2jea8n2uhappefm', '192.168.0.224', 1527798095, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383039353b), ('cb7pgvjrgpeuh6p9o2bgfae7pjjguamb', '192.168.0.224', 1527798104, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383130343b), ('s838jl6n89qn8t4a34hjn9kh9sqqm6sn', '192.168.0.224', 1527798113, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383131333b), ('obn9gblqfe2hd1s53hd0s4h4cs9oafo7', '192.168.0.224', 1527798122, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383132323b), ('leeiq8logocpt4nuenr3l4mkitodosee', '192.168.0.224', 1527798131, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383133313b), ('lc9pptuum1vq5d9q3hkudsmnef6lrkcu', '192.168.0.224', 1527798140, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383134303b), ('a42pd77nv0emk2gtp52t9pfq8gdojdlg', '192.168.0.224', 1527798149, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383134393b), ('810jhqnk7r9s0jgf4mstmk7rkeo1rjus', '192.168.0.224', 1527798158, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383135383b), ('7uihek24g1gc325jprefl786l3qn44hl', '192.168.0.224', 1527798167, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383136373b), ('pe4i6g0g332vb0j92q54tiu9apt2jr5k', '192.168.0.224', 1527798176, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383137363b), ('cl66d7il6nmolnrd956sr7rqitm3pgro', '192.168.0.224', 1527798185, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383138353b), ('p97maaj06l4kkefltf62dc9i41mokn2p', '192.168.0.224', 1527798194, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383139343b), ('jesb0pfjbc7lc7p0h6ns0opn6eq4f99d', '192.168.0.224', 1527798203, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383230333b), ('kin25p7qojhommuv3mi628l5h02a9ei4', '192.168.0.224', 1527798212, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383231323b), ('68vcfnf9qu7e12apkpjubje4ken5gsvo', '192.168.0.224', 1527798221, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383232313b), ('hb232m6gd0pptosfhv27o3hlvn9kb1ra', '192.168.0.224', 1527798230, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383233303b), ('dj6nglq6ktarabk77ln7btf3r68pasim', '192.168.0.224', 1527798239, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383233393b), ('pab98ce4bp5f8ovo12bba26g8t3o6mu6', '192.168.0.224', 1527798248, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383234383b), ('23uh75tutjvivkmpld54n7cvmgd8tcta', '192.168.0.224', 1527798257, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383235373b), ('vb6bvdtqae9nsttitue9pl4edf52h204', '192.168.0.224', 1527798266, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383236363b), ('vtsou47fh1r97eededcuhs20vd8bn5kb', '192.168.0.224', 1527798275, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383237353b), ('9mupcen529npg598hja5l2q8pjtgipci', '192.168.0.224', 1527798284, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383238343b), ('1sqq8ivguafbgvasgqsvcu21oerh7t0d', '192.168.0.224', 1527798293, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383239333b), ('q7tn5j51c8i3m5b9ldqu4bqctime03tv', '192.168.0.200', 1527799639, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393633393b7573756172696f7c733a343a22726f6f74223b656d61696c7c733a32303a2263616c626572746f6d7340676d61696c2e636f6d223b69647c733a313a2231223b7065726d697373616f7c733a313a2235223b6c6f6761646f7c623a313b), ('gedagm3kke9sri9mtkatblfbdmq98iq0', '192.168.0.224', 1527798302, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383330323b), ('8dl6dfed0ksbmmuvarv6iuoqii6sla92', '192.168.0.224', 1527798311, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383331313b), ('aq34esd8svmiggfjs4kpgq932thabdcv', '192.168.0.224', 1527798320, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383332303b), ('brfv78bvef2cg1iivr48mj82mrh4qbe1', '192.168.0.224', 1527798329, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383332393b), ('62tqqh20823ucbtq7lvh45cqu2re1p6n', '192.168.0.224', 1527798338, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383333383b), ('i0urodrrt4i65et663moooigi845lh81', '192.168.0.224', 1527798347, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383334373b), ('ci2l54j2e72nfrtbka95h8uth44usdbu', '192.168.0.224', 1527798356, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383335363b), ('mvef0et1ejgcc4rl6c48gjt6oarj08c3', '192.168.0.224', 1527798365, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383336353b), ('43uevrrvoah953hk7qpjkph54s73klot', '192.168.0.224', 1527798374, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383337343b), ('te8cggp2kn8m6a9vsf6ke31kp1poso94', '192.168.0.224', 1527798383, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383338333b), ('ao0uunj5ja6fgkh6am8uhv7388t93ddi', '192.168.0.224', 1527798392, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383339323b), ('0oejg5kkc5trk7hprft1mc10sg1u59o7', '192.168.0.224', 1527798401, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383430313b), ('4eeqvo3kkm7u4pae27jdoce6p65n8c43', '192.168.0.224', 1527798410, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383431303b), ('belr6us5l1jfvo551co8o31vcdrpp4b0', '192.168.0.224', 1527798419, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383431393b), ('d2ommq5g1q7k732667qqiv33vdkenla7', '192.168.0.224', 1527798428, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383432383b), ('e5css08mg2lgohu3kcktakftitm244fj', '192.168.0.224', 1527798437, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383433373b), ('ep7ds3gm5r5g8u5fp35mttfh0t1nedt5', '192.168.0.224', 1527798446, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383434363b), ('5st62hkant8id62gr91qmstkujqfedps', '192.168.0.224', 1527798455, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383435353b), ('hmfpk83r279vetspbdh9bo0pfef7rrse', '192.168.0.224', 1527798464, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383436343b), ('2vu834jjbcrmg02md0lt1lihqvoelis8', '192.168.0.224', 1527798473, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383437333b), ('ujrens666vicnlebpseb2ub388cuv33i', '192.168.0.224', 1527798482, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383438323b), ('o81j9jn9qdd676i4mfmfrkp8eene1t9a', '192.168.0.224', 1527798491, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383439313b), ('pdv620uoi3n2r6kelgorj7flrjsv3lb2', '192.168.0.224', 1527798500, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383530303b), ('ditkvdjrc866pepnm98g3118lmu7lnt0', '192.168.0.224', 1527798509, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383530393b), ('cgktl2prqngg3dgj3l4rugmgvmshbgm1', '192.168.0.224', 1527798518, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383531383b), ('2u137gq5rgpjjk346qopfd5ti7mj9hqg', '192.168.0.224', 1527798527, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383532373b), ('u815b95u6o8mptfd7go9eebpn30jed3s', '192.168.0.224', 1527798536, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383533363b), ('i13tpvh34kjp2mheqavua9n9m14fon3b', '192.168.0.224', 1527798545, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383534353b), ('35ac7tbc0j2q5eams309dpsjidh3uo4o', '192.168.0.224', 1527798554, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383535343b), ('r13jdrpbg28e58ak8th2bqal4sn6cfnf', '192.168.0.224', 1527798563, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383536333b), ('r3cl56p6ftsbf43g7pim2987t847d0ss', '192.168.0.224', 1527798572, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383537313b), ('6hk2748kdrmhg4d1qu203e9gh4aa1fl1', '192.168.0.224', 1527798580, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383538303b), ('n571pkju0254d29egaiv2al89ue7reh5', '192.168.0.224', 1527798589, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383538393b), ('6qr15d741fsujv4ud1846cvjchnnemd2', '192.168.0.224', 1527798599, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383539393b), ('vp1vovgri5627q85euirh08apnfnbht6', '192.168.0.224', 1527798608, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383630383b), ('suendc6952id1cudcutol1givubol0er', '192.168.0.224', 1527798617, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383631373b), ('vuteodguv9h9nnsooev95j2hd3k3k1r9', '192.168.0.224', 1527798626, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383632363b), ('r2dpudqrmvrmd623d60hb1u3toqukuco', '192.168.0.224', 1527798635, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383633353b), ('ebi16arp8llq7qqajoddgeq4ln368gph', '192.168.0.224', 1527798644, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383634343b), ('q16710p51o5cvnq8jrjco7d5u82or3ag', '192.168.0.224', 1527798653, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383635333b), ('qtlmm3l12ml434sm4t2lufrqa6pae2ja', '192.168.0.224', 1527798662, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383636323b), ('5stgm2jcdflv15c1tek90e6c91nhdubf', '192.168.0.224', 1527798671, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383637313b), ('ivncb89oe5ibijoskpo34d6q465ickc6', '192.168.0.224', 1527798680, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383638303b), ('h7kd3guhrpeistfbckgc2b7isebrgas3', '192.168.0.224', 1527798689, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383638393b), ('c5c1viem37vlik6j3ddemo5gucgl8e2l', '192.168.0.224', 1527798698, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383639383b), ('7k5377j3u014ih6snc0o1bfka579dait', '192.168.0.224', 1527798707, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383730373b), ('dj3okl7qrshq8uhis0pt00ucnddt3eib', '192.168.0.224', 1527798716, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383731363b); INSERT INTO `ci_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7pm39mclg0iadr5ua6cm91e80lqdk1if', '192.168.0.224', 1527798725, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383732353b), ('j343rt57u2824490urg7458u8pi98j3h', '192.168.0.224', 1527798734, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383733343b), ('t0seheevm0ii7hq28pr7dkhbat5mc5ol', '192.168.0.224', 1527798743, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383734333b), ('46setvpgovrj1ukj9rrfc1aenmtbmd0q', '192.168.0.224', 1527798753, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383735333b), ('kefcl09es3it9b3kbq506g8s4it78dud', '192.168.0.224', 1527798762, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383736323b), ('9r0bstpo2onlo1369m2l3qgbjl610sdr', '192.168.0.224', 1527798771, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383737313b), ('rutasa7qg8o4uogo6suip8r60sp9r5js', '192.168.0.224', 1527798780, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383738303b), ('oj61mid8nkukond1e3eg1v6gna7k6ogn', '192.168.0.224', 1527798789, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383738393b), ('7ncp8kf9fnto5sr81837gf7a1niqqec1', '192.168.0.224', 1527798798, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383739383b), ('h2t46ctp1jnbk5at05olaiommgb320gu', '192.168.0.224', 1527798807, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383830373b), ('rhpui4s6vpmuff4afeuv2s78bjstoc87', '192.168.0.224', 1527798816, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383831363b), ('nfresr2291ojecsomubpq0qhuu2ir43l', '192.168.0.224', 1527798825, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383832353b), ('ceehp7hkris3g5nm4jjghdtagi5384ou', '192.168.0.224', 1527798834, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383833343b), ('uk0v2d2cn8ibqcgpt8sljqgvdj1kmd3t', '192.168.0.224', 1527798843, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383834333b), ('jv4jm89rpjtlt3u1vq6shi9i60ag3sgg', '192.168.0.224', 1527798852, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383835323b), ('rd5f686go7qt80302scgtcicqqmfsmiu', '192.168.0.224', 1527798861, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383836313b), ('v64bt097bf8p4fq4nifgltlm0tp306nk', '192.168.0.224', 1527798870, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383837303b), ('ilhmt3r31onk5q6eq9jul23fis274i4o', '192.168.0.224', 1527798879, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383837393b), ('8qphoqp1ars8uju78qu7jijqro3mie4b', '192.168.0.224', 1527798888, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383838383b), ('jmh3uijkfjtn7tj91enu2tums641c1ic', '192.168.0.224', 1527798897, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383839373b), ('da6ugcscpd2aevg9biujlecgf79p2r3u', '192.168.0.224', 1527798906, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383930363b), ('qqmp35ccncc2sa2s0l2qvmo3305830r3', '192.168.0.224', 1527798915, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383931353b), ('alok7ptbg4ohlujukrkoprke7a5v2ih1', '192.168.0.224', 1527798924, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383932333b), ('hk2v3o7u3hh1duhe36528oarqo2262h2', '192.168.0.224', 1527798933, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383933333b), ('hlkrvp4f3jinbpno2lrleicdeu7i4f4l', '192.168.0.224', 1527798942, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383934323b), ('dr3l8l3f5uju82rh2i00cumhkvc75b62', '192.168.0.224', 1527798951, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383935313b), ('v5rho0e4co237kl568258rhtdd5lcejq', '192.168.0.224', 1527798960, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383936303b), ('9keth5nu9hklle5obebjiql7ot3u0dgq', '192.168.0.224', 1527798969, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383936393b), ('iq5j8egfmft2qe6vb0dlmvenmagot6q1', '192.168.0.224', 1527798978, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383937383b), ('btuhaivatql2f89dd6vj9elkgc9lbddm', '192.168.0.224', 1527798987, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383938373b), ('r087plfrn9ru3m8casmn4sfp6i5dsdrn', '192.168.0.224', 1527798996, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739383939363b), ('6al0ikkat1pvo9rtgud933gkcgcmign7', '192.168.0.224', 1527799005, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393030353b), ('aml76m3c9j40b0agf8qb4rct2qavnejr', '192.168.0.224', 1527799014, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393031343b), ('v5mue8ngga21vb7cs4i5c54rvdfsgef9', '192.168.0.224', 1527799023, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393032333b), ('k5mitis71li5pm19p7v5rc3vp6hvso58', '192.168.0.224', 1527799032, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393033323b), ('46lvgm5l7becp7suuee2s1jb7s1ac1rg', '192.168.0.224', 1527799041, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393034313b), ('9lrqm86198gnjlmdgjq7hvr1m6trbqdg', '192.168.0.224', 1527799050, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393035303b), ('dikkmnh6ojk0fiah99tqqlf3582t7sku', '192.168.0.224', 1527799059, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393035393b), ('5407p1fdp7qdlbgd5pfsqab3vf2gsdl3', '192.168.0.224', 1527799068, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393036383b), ('2p8gpg8p6t8m64pb62oee6vpif247vdv', '192.168.0.224', 1527799078, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393037383b), ('1dhqrrelkiama600hn3f14nnt7f2imh1', '192.168.0.224', 1527799087, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393038373b), ('acn70tmldf10kl2q3lapvo0bd38u15sq', '192.168.0.224', 1527799096, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393039363b), ('kv1emqigiush21q9g6cogch0bk4rtqrd', '192.168.0.224', 1527799105, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393130353b), ('39c6lll5trpo752v1p5rj20m7vum5hen', '192.168.0.224', 1527799114, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393131343b), ('krk8g7vq6evl3qvcq12rkrn80m8jolcp', '192.168.0.224', 1527799123, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393132333b), ('al2nn54fn9bkgshs27ggv9eauu5rurll', '192.168.0.224', 1527799132, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393133323b), ('7u185qmu8rae7tmfqh3s4t3gmkclodi7', '192.168.0.224', 1527799141, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393134313b), ('o0brl3qj944lbdc5v0bhib78vs2bk8a4', '192.168.0.224', 1527799150, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393135303b), ('d21rrt5062hm83b5p5rhk4v6nommvd0s', '192.168.0.224', 1527799159, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393135393b), ('gjvefokbeubkdofahqf2i331l53bvm4n', '192.168.0.224', 1527799168, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393136383b), ('13b49dp444qke5op588o89m12u7optf5', '192.168.0.224', 1527799177, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393137373b), ('nfvtf1dl6h9m9tprp3i90l7oiphsvehi', '192.168.0.224', 1527799186, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393138363b), ('tp4jbb3mcohciv1cmml5p440tqorftvp', '192.168.0.224', 1527799195, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393139353b), ('m7kb7ectjnh3i76174crgsedm9kp98r9', '192.168.0.224', 1527799204, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393230343b), ('3j5m3untcrmoenlgdmnmr8vispgdmhkl', '192.168.0.224', 1527799214, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393231343b), ('b4lscfakrvqncshnkl0m5tva8jeb1kfm', '192.168.0.224', 1527799223, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393232333b), ('q66v5nj3u97jkir8nep1tcdr53etft7h', '192.168.0.224', 1527799232, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393233323b), ('bits3denn62o5is4cfpege1sapsjbs8s', '192.168.0.224', 1527799240, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393234303b), ('hrvh3jjctv87ttl29gcs9hrlh9no4lu9', '192.168.0.224', 1527799249, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393234393b), ('l4hf8malrohgig1lp2muhrr9v8nrfe7i', '192.168.0.224', 1527799259, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393235393b), ('rr9764f19tb0b369ipcjrfp89pvdo91k', '192.168.0.224', 1527799268, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393236383b), ('5ps7eek0kcv77hmont70ikp0j0pnfp2l', '192.168.0.224', 1527799276, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393237363b), ('4tfofn5lvfuok84t1u2404get60vstvh', '192.168.0.224', 1527799285, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393238353b), ('6bma1bjls1dpctnqt5kirckvgrklmbud', '192.168.0.224', 1527799294, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393239343b), ('eku3huukpr5ots8ttfp3u6k1kfj1cndc', '192.168.0.224', 1527799304, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393330343b), ('3jtofjg2kk9ig83kn6h5t1oc69k1dl53', '192.168.0.224', 1527799313, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393331333b), ('3537h489vqoiui46juc3nvudbalprqo7', '192.168.0.224', 1527799322, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393332323b), ('10fhj8451nd26g6h1a5iojonhu9ehr1r', '192.168.0.224', 1527799331, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393333313b), ('ibtp0tq0sd8o6drqq9o9s68sm049p4tu', '192.168.0.224', 1527799340, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393334303b), ('s7i5ft89fue5i1f292eaq5qa8lf76mpm', '192.168.0.224', 1527799349, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393334393b), ('h20a09op6vbjn5mojn4993p93h64kurs', '192.168.0.224', 1527799358, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393335383b), ('i9uqjldcj277adqk38uvujhmlugbgd8i', '192.168.0.224', 1527799367, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393336373b), ('uje19ukuso7gf8pj2tju053qov3dedkl', '192.168.0.224', 1527799376, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393337363b), ('rist9jgjg7b25drjttm41aa93h4uag89', '192.168.0.224', 1527799385, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393338353b), ('csopp9vi9gj4l5m31oq81p2e18r7dcnr', '192.168.0.224', 1527799394, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393339343b), ('bsenr5tt94lc1egu25r6d9vd4gs5q9le', '192.168.0.224', 1527799403, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393430333b), ('k7mf5ajd2tf0kfru6unbh4tiek0b69gg', '192.168.0.224', 1527799412, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393431323b), ('0tceonnar7u1mbrekocuda8rd85dpvbh', '192.168.0.224', 1527799421, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393432313b), ('mnb8iakje54f5uuvo0ba1h862qmbgr99', '192.168.0.224', 1527799430, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393433303b), ('4vsaspe28mu6q1ofjlff6hdilse36ta5', '192.168.0.224', 1527799439, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393433393b), ('9pbc3196e8r569d86rtvcekrfu4b9ul1', '192.168.0.224', 1527799448, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393434383b), ('d1r9ods5uh15qskaucfplbv5lj41krud', '192.168.0.224', 1527799457, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393435373b), ('a82sg2l0mfqnp30bcj6ij8tmi3aqabce', '192.168.0.224', 1527799467, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393436373b), ('60htre1evqpkhs50n6q3ei2in7trnuir', '192.168.0.224', 1527799476, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393437363b), ('5b2jvijeu7d5lboe3pdqncudg7k2oenb', '192.168.0.224', 1527799485, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393438353b), ('kofvoltnhao204nftujkts8t3ft6c7h4', '192.168.0.224', 1527799494, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393439343b), ('4o91ffglvc3r16aca7tvfikga2qljd22', '192.168.0.224', 1527799503, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393530333b), ('i0rcm3nc259rsvbhebq8mnlckt46cnl7', '192.168.0.224', 1527799512, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393531323b), ('qls42unpqloe3cnncuuqqhvpvj5e62gm', '192.168.0.224', 1527799521, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393532313b), ('o6lat9qnucvhk9b9ntcif5bh1g2ru058', '192.168.0.224', 1527799530, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393533303b), ('g7lv64k7uumumvhlrvb2lekghfulboja', '192.168.0.224', 1527799539, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393533393b), ('v855g8plr7doe8heg0vhnfk8i2milef0', '192.168.0.224', 1527799548, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393534383b), ('gqvcvdf7f7l32s4b9p3lqfnr5vvmmhn9', '192.168.0.224', 1527799557, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393535373b), ('7hprn06dhdc559bp6kptq1k1m97ao734', '192.168.0.224', 1527799566, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393536363b), ('es737k7tpfped16dl277alhh2vcl6m6m', '192.168.0.224', 1527799575, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393537353b), ('k2rn1ji8v94farfolieb9ohmo1co98kn', '192.168.0.224', 1527799584, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393538343b), ('tel6b53hki9vuv6hf9dc1k8bk22me2mr', '192.168.0.224', 1527799593, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393539333b), ('bqas3livnhdcc0d7oq5694v3bhon4ntc', '192.168.0.224', 1527799602, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393630323b), ('l8k3nrjb3lo370kct2pvd57k2c083iiu', '192.168.0.224', 1527799611, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393631313b), ('9j7jjhahlkgqbr1j2fccrvrk3q4olr5i', '192.168.0.224', 1527799620, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393632303b), ('3e4qj2d43gk8t8fbikpgcth9dr7h2mu7', '192.168.0.224', 1527799629, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393632393b), ('4tvl5i3p99k4nvdv9asj150e9ckij01b', '192.168.0.224', 1527799638, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393633383b), ('b6dbqtv6t00h76ll4r35p0o3tg7ckh7m', '192.168.0.200', 1527799975, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393937353b7573756172696f7c733a343a22726f6f74223b656d61696c7c733a32303a2263616c626572746f6d7340676d61696c2e636f6d223b69647c733a313a2231223b7065726d697373616f7c733a313a2235223b6c6f6761646f7c623a313b), ('if799uujat4jnnjj3qfkkip00g51rv55', '192.168.0.224', 1527799647, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393634373b), ('iq1b6to8s8et8qibgafnt6hneghtifb5', '192.168.0.224', 1527799656, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393635363b), ('p87qf0131bjg6hicj0m2cr7n1m3tlskg', '192.168.0.224', 1527799665, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393636353b), ('rlc8g7l3l0qqqrarn9v749cvmt9g6lit', '192.168.0.224', 1527799674, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393637343b), ('ctotb0nuvoh6blms3mnubvhfe6ll97f5', '192.168.0.224', 1527799684, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393638343b), ('c4fspkiv3ogc8t4kts2e9ce8gut19mrl', '192.168.0.224', 1527799693, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393639333b), ('i7s6lqec7fh0lveheaeoel5kb50ahhmt', '192.168.0.224', 1527799702, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393730323b), ('a65lrabgbuhb8kqj0u7tvruptv70sajg', '192.168.0.224', 1527799711, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393731313b), ('lsl7isghs69bbrv052dlni3tdol7p3jl', '192.168.0.224', 1527799720, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393732303b), ('rvae4f099fo16fq75kgivomtrm6462tv', '192.168.0.224', 1527799729, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393732393b), ('dkeqt13ajmoj5vtg31mlotqpg4dek8ch', '192.168.0.224', 1527799738, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393733383b), ('c411gg3q5vb0orbcbr49rb07vhfua5g3', '192.168.0.224', 1527799748, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393734383b), ('ht2i50r68hr85nrjhp4kol6dqbb5m428', '192.168.0.224', 1527799757, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393735373b), ('aghffa7j4aifs9eh4625ttoak3k8d3bv', '192.168.0.224', 1527799766, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393736363b), ('96pn86974qb7u7vtgn71arhudek2905b', '192.168.0.224', 1527799775, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393737353b), ('h0o2snlsttiq0spal5pg09bv839hvrk9', '192.168.0.224', 1527799784, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393738343b), ('152138r5ebas8iekklaev1a20ni7ql68', '192.168.0.224', 1527799793, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393739333b), ('3kbjhgjjr106ufc8adqs0rslms1677i0', '192.168.0.224', 1527799802, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393830323b), ('1mrdlckuasadua5bob7meevcnjf33nvn', '192.168.0.224', 1527799811, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393831313b), ('3b40uo1jh2vfle5a8ve4cf4f2v4rsvbq', '192.168.0.224', 1527799820, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393832303b), ('n64itvndr9hu6fi1th3vg7fkefeissdn', '192.168.0.224', 1527799829, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393832393b), ('p1iqrokhudr0976jsl8seqpvdnnrjkph', '192.168.0.224', 1527799838, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393833383b), ('0a1tpav7b4m8ltd6ja242ahc40ctltpp', '192.168.0.224', 1527799847, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393834373b), ('guqfbi44hcn0of6fim7ahultognc3c06', '192.168.0.224', 1527799856, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393835363b), ('1oolc0q7vjlbai85q1ddh137dvodmqbk', '192.168.0.224', 1527799865, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393836353b), ('jq085dfklgtegtg8n4bhvmqmt3t5cidd', '192.168.0.224', 1527799874, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393837343b), ('74goo6u3dmlk56c5a4a5ltnqobbsq4jq', '192.168.0.224', 1527799883, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393838333b), ('naf0pcn7s21k98v10q9b604tnlcqmjr8', '192.168.0.224', 1527799892, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393839323b), ('2oukg4lb2klv56rklgarn4pmkjk43vat', '192.168.0.224', 1527799901, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393930313b), ('s1eqmmuel2c1gohmrj0ld4lusmuoqn93', '192.168.0.224', 1527799910, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393931303b), ('72gjkg7l9u8hnae1vaih7beqrn5d9c1n', '192.168.0.224', 1527799919, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393931393b), ('o1vn8tn8b7ag0mu15j9fu72cn1fj8gqr', '192.168.0.224', 1527799928, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393932383b), ('r505h1hdeb9gqj8g44n5qvlm3k0ig8fi', '192.168.0.224', 1527799937, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393933373b), ('9g274lq33fu68u99qo4iiiv0b5bik4nt', '192.168.0.224', 1527799946, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393934363b), ('e8r1qt0b5gi7p3nvg3ci3siabjs7i0pc', '192.168.0.224', 1527799955, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393935353b), ('ns5nnlscmqempvg4knasp171g8f78v2r', '192.168.0.224', 1527799964, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393936343b), ('dt267fp635rb2j7tjqdc4ulbhi7e44rj', '192.168.0.224', 1527799973, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393937333b), ('71mn1rfv14e54ilnssoekggd1d6juluq', '192.168.0.200', 1527802205, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323230353b7573756172696f7c733a343a22726f6f74223b656d61696c7c733a32303a2263616c626572746f6d7340676d61696c2e636f6d223b69647c733a313a2231223b7065726d697373616f7c733a313a2235223b6c6f6761646f7c623a313b), ('vmn3doko9i584sel4qdkkv6744p96usp', '192.168.0.224', 1527799982, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393938323b), ('c7e5c369gd95g1e613p6scucl8plh9js', '192.168.0.224', 1527799991, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373739393939313b), ('ohj1ps7s9m9ctj8ofqm3ee691k5q3hdl', '192.168.0.224', 1527800000, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303030303b), ('2udbn6nqmebe6q1ai50n1q69i322q0fm', '192.168.0.224', 1527800009, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303030393b), ('ote0123kcgbf98qfa6528est4hvljarf', '192.168.0.224', 1527800018, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303031383b), ('alb43f0o0q64aahnl04erhmvju8l823f', '192.168.0.224', 1527800027, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303032373b), ('6tsv8ueae2b9ghn7ijurftrarsolb6am', '192.168.0.224', 1527800036, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303033363b), ('1dai34ukeju0cm7i3ikl9u7mvcdencoh', '192.168.0.224', 1527800045, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303034353b), ('rtuam42s72hpqqi0d445p66k7i1283q0', '192.168.0.224', 1527800054, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303035343b), ('ob5td4uv9q00941c9bou0vdi9q8k1jcs', '192.168.0.224', 1527800063, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303036333b), ('p54sha9r97evnl4q2js4fqjph4bjpmqn', '192.168.0.224', 1527800072, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303037323b), ('966pkvef7ljctuh5stnnp1tf5hbnlch1', '192.168.0.224', 1527800081, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303038313b), ('8skp71fm3uvem6dq61s9vj4b4qeo77kt', '192.168.0.224', 1527800090, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303039303b), ('g24ajsmok3i82qkpl893ull2h9t5cjo6', '192.168.0.224', 1527800099, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303039393b), ('rol1lto6tf19g5lsd5h3gl3f73or863p', '192.168.0.224', 1527800108, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303130383b), ('1btfo37u6c95udi7fb5lo5q1r7jbm294', '192.168.0.224', 1527800117, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303131373b), ('qa43fv63n7jnj4s6jn8lnuhqr7ba8d7r', '192.168.0.224', 1527800126, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303132363b), ('g1v0m7otujbko2j580mhnulu661ooqgu', '192.168.0.224', 1527800135, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303133353b), ('egt53sks1mr1qd80audeh4jetgs38aji', '192.168.0.224', 1527800144, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303134343b), ('76imal21n84ck20dsmgamshua7ssmlbh', '192.168.0.224', 1527800153, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303135333b), ('742dguj2t9mrhknt09vni0hfr956fu9h', '192.168.0.224', 1527800162, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303136323b), ('1p46uds5mq8g0kef0q6ku4ebk758kh91', '192.168.0.224', 1527800171, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303137313b), ('r6kkqrtmv41geb7ludd0e99voeqv6ilm', '192.168.0.224', 1527800180, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303138303b), ('flnkpaj64jmijb5gn08u1aku7mh8t17k', '192.168.0.224', 1527800189, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303138393b), ('kto9j8e7dn4emhsin2ucspv0o0oiridi', '192.168.0.224', 1527800198, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303139383b), ('aq33t5kfm6t619kd079uqisegaohgkod', '192.168.0.224', 1527800207, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303230373b), ('650d905fjlr4k5ruobd7ejnrbdsalel7', '192.168.0.224', 1527800216, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303231363b), ('9dcf9ocdg4iebtmb7cm6e75vekieeedv', '192.168.0.224', 1527800225, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303232353b), ('hfcvkh7t8ip2b6mpoeojvbehfml5s2j4', '192.168.0.224', 1527800234, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303233343b), ('jcflaickad6s5hl7p80f3gchiljivis5', '192.168.0.224', 1527800243, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303234333b), ('otemipv520e9p7sjq3eq7fiv7m8glafo', '192.168.0.224', 1527800252, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303235323b), ('83n36o11j2do67ga240q8ukiemmeir30', '192.168.0.224', 1527800261, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303236313b), ('j7kon413qk6bphivnpikcfu7eaehki2e', '192.168.0.224', 1527800270, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303237303b), ('ij2a9pud2905jvsht0vti24gt0bud9r2', '192.168.0.224', 1527800279, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303237393b), ('kkf77pjolsr1m0knitn0eshpof1ebue9', '192.168.0.224', 1527800288, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303238383b), ('hj1ls9kbjh1favar5b3ig6urqnu5ifkr', '192.168.0.224', 1527800297, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303239373b), ('fha15mflket7bsok5m52597bnaaehf2c', '192.168.0.224', 1527800306, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303330363b), ('n35h67h45kfus06sp303rv7e5qhkvl07', '192.168.0.224', 1527800315, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303331353b), ('g0l6jtoo33samr9icsu493n46vso662u', '192.168.0.224', 1527800324, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303332343b), ('3urlmcpftjep87ofcb6q7s3itjs97kpk', '192.168.0.224', 1527800333, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303333333b), ('qsn8vtrjj4q5isuv33hr6pd0ltkfe2b4', '192.168.0.224', 1527800342, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303334323b), ('rc9c6l66l8m5t2immfjrnrs7lnks1jcr', '192.168.0.224', 1527800351, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303335313b), ('3bs615c2iod3i5ngikvfvrb1gksm1no4', '192.168.0.224', 1527800360, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303336303b), ('ef5u18lc95u4jjblv8ohmt94abtmbvmj', '192.168.0.224', 1527800369, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303336393b), ('dbndeqvkmfv6p9nr43tcae6dt5irfvt3', '192.168.0.224', 1527800378, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303337383b), ('fe97b1knmg85if0n9pldum9am9quovhp', '192.168.0.224', 1527800387, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303338373b), ('at05vcdfvshoi157k19orekf20acr81t', '192.168.0.224', 1527800396, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303339363b), ('hfg14kc5qq8g5aajjs3rbcqcudfbqkdr', '192.168.0.224', 1527800405, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303430353b), ('24jii7gs7ca433atsa3jnb5q8iecv8cc', '192.168.0.224', 1527800414, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303431343b), ('ftnllovgef2sb5i53cq6g5cio0l6icq1', '192.168.0.224', 1527800423, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303432333b), ('vsill86593mt9tatg9jfam4odcp3026m', '192.168.0.224', 1527800432, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303433323b), ('es10613qjpi2e7pn0ib87st5hfb4pik5', '192.168.0.224', 1527800441, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303434313b), ('1n1v6tbkplrfdvjjpsv4ouq9j970jq06', '192.168.0.224', 1527800449, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303434393b), ('25vfp6fkpvn1ee2cho9ocnpv2i1ih2f3', '192.168.0.224', 1527800458, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303435383b), ('jefft6mkr4n7u5b6rjsrgpf0q79hce4m', '192.168.0.224', 1527800467, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303436373b), ('4kih1nshhtbj93f0e8rf0hhi3s4qojtd', '192.168.0.224', 1527800476, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303437363b), ('ot0i6lsfomuko2amj4u2jfeg6h7j5qp6', '192.168.0.224', 1527800485, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303438353b), ('2vlhbbdo561iodri036s5k6ude4670su', '192.168.0.224', 1527800494, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303439343b), ('tutiuqdp4b5ss925s1l50o3ncmnbkn82', '192.168.0.224', 1527800503, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303530333b), ('ges1hkk5pf6c8v3vakid8urv9l8uupnh', '192.168.0.224', 1527800512, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303531323b), ('089hutv14vtgnualvtl1nfdkiofcrtt0', '192.168.0.224', 1527800521, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303532313b), ('sqpic8n0hure792reqqsi21673k4jchi', '192.168.0.224', 1527800530, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303533303b), ('0ccjggef0nrdjefh93v4jelcu5nijomq', '192.168.0.224', 1527800539, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303533393b), ('jnclabua15f1bevrt6vfms4smtb4bhof', '192.168.0.224', 1527800548, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303534383b), ('ddifpnbt5bu3g04lkd6qg57i9lue4pmd', '192.168.0.224', 1527800557, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303535373b), ('r0ca28q0j4nubia9cutjf8q697tgd8j3', '192.168.0.224', 1527800566, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303536363b), ('nqnvb0klcrhafnj4e1h1al8tpjf8qhbk', '192.168.0.224', 1527800575, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303537353b), ('mh355bus6la26r0ao4abfdhdak49d05l', '192.168.0.224', 1527800584, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303538343b), ('a6v7fn37jcqomo1ir1cnc6ag6htef5av', '192.168.0.224', 1527800593, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303539333b), ('d5ffqkd0218g22ioeepgqotdjcjj162v', '192.168.0.224', 1527800602, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303630323b), ('qefajt8rd266omha4okb33dc44qj7thq', '192.168.0.224', 1527800611, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303631313b), ('43v1efdjcsv6eknhj8rcr4srs1qob6ci', '192.168.0.224', 1527800620, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303632303b), ('1qsslikk9hpoga75784up0d72ja038bp', '192.168.0.224', 1527800629, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303632393b), ('uop4mtf2nqbdsd404ilf0bc4dkfk9ud2', '192.168.0.224', 1527800638, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303633383b), ('95vf2la8mhdaujjosh7u3ridsnri24jv', '192.168.0.224', 1527800647, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303634373b), ('ihe9ihpeakpcm1502fpalm6nb20bnia4', '192.168.0.224', 1527800656, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303635363b), ('29hv1gfov42m9u2ophok0ft3s018lupm', '192.168.0.224', 1527800665, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303636353b), ('h0s3ta1outujh6qu3b2rdg408m59rqnj', '192.168.0.224', 1527800674, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303637343b), ('hg24gkvtrbqhii98jm2vj0djd8491bi1', '192.168.0.224', 1527800683, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303638333b), ('otcstfs0bspv42738kfo4827u1gqvp3f', '192.168.0.224', 1527800692, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303639323b), ('5j09lcsh1fvb9r2oadfv03qvaplh6ub0', '192.168.0.224', 1527800701, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303730313b), ('qc458jssb2ledge8olckgg8bkbqvr5u5', '192.168.0.224', 1527800710, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303731303b), ('c88so0efs5o1n7np4bsk6tn8oonuehll', '192.168.0.224', 1527800719, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303731393b), ('92hsp9gi1okds8r0p3fjoqmbul7cq4oh', '192.168.0.224', 1527800728, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303732383b), ('6vll07lenfd0ifhhsn02cqtr377ejgvn', '192.168.0.224', 1527800737, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303733373b), ('jfv6f4tlumdb54b5dfdnpfu4dr0g1rl9', '192.168.0.224', 1527800746, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303734363b), ('u3ipm56c8iv7ikjfbmhh4g6t5usevlm0', '192.168.0.224', 1527800755, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303735353b), ('82k7u9l119r6q1qm7sccl4p2kmck39i2', '192.168.0.224', 1527800764, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303736343b), ('6gk5p5s8m0cdskj620hbs072ncsu0dl8', '192.168.0.224', 1527800773, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303737333b), ('tepc599o640jqaepd9pkcpfvngbnl7b3', '192.168.0.224', 1527800782, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303738323b), ('45hb2s1j8motuh4stoooqpu7jtcf0sja', '192.168.0.224', 1527800791, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303739313b), ('r9a8m5854j2ep2iv6ag93vd9g633auro', '192.168.0.224', 1527800800, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303830303b), ('c01sd3glt5g1ucgbm02ahcjfsvni3d9j', '192.168.0.224', 1527800809, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303830393b), ('o9r0edboq50o369ne3i69utg3o3rlrsc', '192.168.0.224', 1527800818, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303831383b), ('lnepj6la4m3eihp65caabthgvgv3i1l3', '192.168.0.224', 1527800827, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303832373b), ('c21jccqmuspjc3gkboa25aas6a3bh0gs', '192.168.0.224', 1527800836, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303833363b), ('0b2bgi90ego18hii7bnrjm8ds49oqi8t', '192.168.0.224', 1527800845, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303834353b), ('90ve8vi40bjiuop4h3s3m06kfa94kju2', '192.168.0.224', 1527800854, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303835343b), ('g89utkv700fjh4mlice3k5pkcm6otbo7', '192.168.0.224', 1527800863, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303836333b), ('02hhevpi7ohmutae6ep81chtgrqmmjkp', '192.168.0.224', 1527800872, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303837323b), ('65qq0mei7dktmn9mj806ad434rjurvko', '192.168.0.224', 1527800880, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303838303b), ('cj86st1qd72ejd2m1b6klltbb8qlolu0', '192.168.0.224', 1527800889, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303838393b), ('s4tdpu4fb84io4u7h4p4jd2pi7nvljdl', '192.168.0.224', 1527800898, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303839383b), ('4i22diqvm2jbcen3pp59rusnrv8n38jv', '192.168.0.224', 1527800907, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303930373b), ('5rdmugj9kld3h6mq0umet9rk7e3a8cfp', '192.168.0.224', 1527800916, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303931363b), ('2om7fhiboe9p664e3m9mjepf0jo278od', '192.168.0.224', 1527800925, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303932353b), ('iml2jkq5s8qpjanncubugp74qp69sj1m', '192.168.0.224', 1527800934, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303933343b), ('af2t6hb7ravr4ci7j0upid00l7s7kqjn', '192.168.0.224', 1527800943, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303934333b), ('cvu50pgihh9j0rio5gsvbp77k2akadrc', '192.168.0.224', 1527800952, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303935323b), ('e8oisc26gpov16a6esu35racp74q72s4', '192.168.0.224', 1527800961, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303936313b), ('70d2na150h2jsdpbpgkkmcg3rqehftev', '192.168.0.224', 1527800970, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303937303b), ('t7msig1dedave3k53t7u80lm8r18hfbl', '192.168.0.224', 1527800979, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303937393b), ('bsbinb8lqehcguqrvgd1k2rp9a9dukuq', '192.168.0.224', 1527800988, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303938383b), ('n1el6ihk9uc8qdn35b06qs6hrsh31bb0', '192.168.0.224', 1527800997, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830303939373b), ('1lc3plm77tj752vorj1lmmsvsp5vnbdi', '192.168.0.224', 1527801006, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313030363b), ('d9dufscpbhu2lmitnuq6mb6qr7o656pc', '192.168.0.224', 1527801015, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313031353b), ('sgfstbteccldjd86d7jd8ftedrf9qahd', '192.168.0.224', 1527801024, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313032343b), ('p0m968tgjs1pes2lirs0adh3rj5h4qs3', '192.168.0.224', 1527801033, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313033333b), ('p65vdsd79351fp1t3ja63956ci3194sf', '192.168.0.224', 1527801042, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313034323b), ('h7om4g9h1hu9vk3rcfmjfnritknh8875', '192.168.0.224', 1527801051, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313035313b), ('cr6fj6192ijo5ls0jm7oim0en82n2soo', '192.168.0.224', 1527801060, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313036303b), ('867ucd7mtpvvsb9ibc4vg43b8plir97q', '192.168.0.224', 1527801069, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313036393b), ('jqbml5d94i40s5kn7jttd6fa2k2q9qar', '192.168.0.224', 1527801078, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313037383b), ('7bvgjnriblges08nn85adv3l7890120i', '192.168.0.224', 1527801087, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313038373b), ('ns8ivbdk79qkglv5rvm5hc5meseej8ss', '192.168.0.224', 1527801096, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313039363b), ('stinmkp1q2e2k8ifmi9kpmqmposar0gd', '192.168.0.224', 1527801105, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313130353b), ('61c26q1u5fi4nk75ljsap2vmrke1j4hv', '192.168.0.224', 1527801114, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313131343b), ('nk6ibmdhgnppk3cn0lb2qbrvaekv0puv', '192.168.0.224', 1527801123, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313132333b), ('ad5jli1qhmv4nr29cq9lj8fu7g4eg96j', '192.168.0.224', 1527801132, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313133323b), ('ir1ndhh352aabkqmiim226l1frl5uo86', '192.168.0.224', 1527801141, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313134313b), ('q3ni4bumrmgfhue3f9l71mn9m26rpv7p', '192.168.0.224', 1527801150, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313135303b), ('vcrav8jh3bi03r01ngivbmbsrimrqb4f', '192.168.0.224', 1527801159, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313135393b), ('rchttgfnhg3dqraievvbkgs7l3635pfn', '192.168.0.224', 1527801168, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313136383b), ('45gamhmq8m4d1j09d64jfu782bpi3qor', '192.168.0.224', 1527801177, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313137373b), ('mc0v9634dvikd6jvfr93pf6mga8207g3', '192.168.0.224', 1527801186, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313138363b), ('1783l2uus8fqfibgje1gfjl7dfnjdqor', '192.168.0.224', 1527801195, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313139353b), ('358b4qdepsppqp6kaa9e4s80jq9n0fok', '192.168.0.224', 1527801204, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313230343b), ('q0saipjmlb9i6dde98suhsf8kiuh7ach', '192.168.0.224', 1527801213, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313231333b), ('n2pgclup2t4cr0apka4sg0aeuvgp580d', '192.168.0.224', 1527801222, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313232323b), ('grf3q20q357s50ffr2nqvf8ukrlkghu8', '192.168.0.224', 1527801231, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313233313b), ('7d5r6ofrtjnsdjaseinlhl6qebtrjkuk', '192.168.0.224', 1527801240, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313234303b), ('j07ikg18bp2o17ltbtu0cp68iisk99pv', '192.168.0.224', 1527801249, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313234393b), ('dqp5iq095i84v1efbhtl87e4m103umqo', '192.168.0.224', 1527801258, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313235383b), ('avnuskhqonhnitdqf04o96tdcqhj9tnd', '192.168.0.224', 1527801267, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313236373b), ('2rfnuskj2fktohrjm1qc2oa15o08beig', '192.168.0.224', 1527801276, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313237363b), ('46nkhts4jngvd2q90f759v7ic08jocsk', '192.168.0.224', 1527801285, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313238353b), ('e2emta8d7knhved5aihj8900t6qs7jk4', '192.168.0.224', 1527801294, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313239343b), ('1rfha0fphhc2oq73qsl8659n7pcpj5da', '192.168.0.224', 1527801303, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313330333b), ('rbeiqnr5vd789dlpc3b01dfg4mju62ef', '192.168.0.224', 1527801312, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313331323b), ('onj6adkemiriss5p7v4quqo08fiq1gc1', '192.168.0.224', 1527801321, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313332313b), ('k02ju831u85iik64hvi9sssvmpqm1s68', '192.168.0.224', 1527801330, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313333303b), ('224jp7dkimpj6mgbjeo4dhv1mg8m37j6', '192.168.0.224', 1527801339, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313333393b), ('3649jc8f859e9b9f9f4vjgml0jdhfgnl', '192.168.0.224', 1527801348, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313334383b), ('l73hfi7pq19mauvtbn8td1c0mqsha6od', '192.168.0.224', 1527801357, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313335373b), ('sjh6oau3unpr7vfsfcfqeue1nidpfj9r', '192.168.0.224', 1527801366, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313336363b), ('pn1qs42qcl3atst956ve6so923m0f1p8', '192.168.0.224', 1527801375, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313337353b), ('2hi3moj59vnac4ulitrkati4guaf4rp0', '192.168.0.224', 1527801384, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313338343b), ('52agsifm5b48169talgd6ukpkm14tsn0', '192.168.0.224', 1527801393, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313339333b), ('q0cm312902g18nbdjnu5jg02mtc5em53', '192.168.0.224', 1527801402, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313430323b), ('2pao0gm2cmqhs3bon6ol8rokhu30s9nu', '192.168.0.224', 1527801411, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313431313b), ('njmsk2eq6mvida51bvo9vm9cepnpl425', '192.168.0.224', 1527801420, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313432303b), ('tkqrvse672mcvhur0368iul7eeegskoh', '192.168.0.224', 1527801429, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313432393b), ('g7nvqkrkepm0b6mnfrai1nijk155jkjg', '192.168.0.224', 1527801438, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313433383b), ('qpi3apkm0n4m7r76iv8nct00lcuqv6ce', '192.168.0.224', 1527801447, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313434373b), ('v3b5rravc74dbdoeofh9aorskqkjp6kg', '192.168.0.224', 1527801456, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313435363b), ('phc4doacr75nvj995l6aja3g6rsu3ptb', '192.168.0.224', 1527801465, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313436353b), ('rbo5fdj9n50l5ml5qe0ijqbbhh5vnirk', '192.168.0.224', 1527801474, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313437343b), ('1s5049hqljvpij96ncevos050460tuat', '192.168.0.224', 1527801483, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313438333b), ('mdv9nh1ip8tbj1rocu2ee8ben4oo02pg', '192.168.0.224', 1527801492, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313439323b), ('0qjgneegm8lebahab91ks3e2v85pgujd', '192.168.0.224', 1527801501, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313530313b), ('uq9g0hb3he9fajkaq2k23tbvud92h8le', '192.168.0.224', 1527801510, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313531303b), ('g42rhtoulhi5vvm7h1uk2oeccq5s4cd1', '192.168.0.224', 1527801519, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313531393b), ('gd6o3pmnc9onqfh1ea33pf7p5n9gaknj', '192.168.0.224', 1527801528, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313532383b), ('lcm61mg16aj794d13e091d3adfds8psq', '192.168.0.224', 1527801537, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313533373b), ('5rf1bu35k65eqqg9fv269t4491elsesd', '192.168.0.224', 1527801546, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313534363b), ('77fivraid9pllh0e7r6k81e461k55jn0', '192.168.0.224', 1527801555, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313535353b), ('fublr9sgshavoer5ahjqktb7iol1fka9', '192.168.0.224', 1527801564, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313536343b), ('hf1b4pdvlakctbnc4hl3pp6pr4ihotri', '192.168.0.224', 1527801573, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313537333b), ('hmgs8slqcde51gr1eng8aro6dbrvi07f', '192.168.0.224', 1527801582, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313538323b), ('u1qnb1v9mu31smeri11086bmahouqubv', '192.168.0.224', 1527801591, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313539313b), ('fp132eh3o87co1n5une3uqhhoimooiv1', '192.168.0.224', 1527801600, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313630303b), ('jmbabgrlmk5419gpf42p706gfsbo55eu', '192.168.0.224', 1527801609, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313630393b), ('bp3kj5ov7cq9g34tr9p6fc3jo07l97co', '192.168.0.224', 1527801618, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313631383b), ('9pv7smp316ck7lp6el4787ne4n2vr10l', '192.168.0.224', 1527801627, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313632373b), ('kp0nud8h7t5960tbr9pk3cgn6k331ge2', '192.168.0.224', 1527801636, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313633363b), ('adtieh9sr89th526p3242c5rpd7svc14', '192.168.0.224', 1527801645, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313634353b), ('legjk7j49mlejjgpjn6upgqo5hk4sk1o', '192.168.0.224', 1527801654, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313635343b), ('oktcd22itdm25no39l3kjarhd3bri8vh', '192.168.0.224', 1527801663, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313636333b), ('m4dg56g2n1v3idk8udc2n7or74d2adhd', '192.168.0.224', 1527801672, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313637323b), ('7lndrh0eh80b6jo7cq78e19bvj4ubosf', '192.168.0.224', 1527801681, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313638313b), ('gibg8damqdjfkt1hor2ouum15s7ib3ss', '192.168.0.224', 1527801690, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313639303b), ('ivmt6fplljppp5fi69bdmbl2f8vi1nf8', '192.168.0.224', 1527801699, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313639393b), ('ppot5v0gdagar6jlsi712l256sbbkjn6', '192.168.0.224', 1527801708, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313730383b), ('1ilmp4otth0gpoei4ngd12fetocv9g4g', '192.168.0.224', 1527801717, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313731373b), ('katt85db6e7rt8o92tki6tujqfi9n5a7', '192.168.0.224', 1527801726, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313732363b), ('r69li45ttb158u5htu67o1k9jnomrjhn', '192.168.0.224', 1527801735, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313733353b), ('b7t2o9tp843kg8rgt9lar4hn9meb9k9h', '192.168.0.224', 1527801744, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313734343b), ('4edp0kfuatfhbk6drsjauscb9smeg7ci', '192.168.0.224', 1527801753, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313735333b), ('t444v4i2secl1jn573sq7m2ch2og8rhu', '192.168.0.224', 1527801762, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313736323b), ('l6pb58r0du0s1v06jh886casssguefd8', '192.168.0.224', 1527801771, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313737313b), ('v45ncp4ru7hj8o61qapp59af7jq0vf3h', '192.168.0.224', 1527801780, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313738303b), ('rds3nedduchraa12lccsu9emu25rm7b4', '192.168.0.224', 1527801789, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313738393b), ('p3rfvoq9o1vr354rm04cj5cql5lnu0mn', '192.168.0.224', 1527801798, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313739383b), ('37qk3ge4cn1tpkq00ar15fegtl1j654m', '192.168.0.224', 1527801807, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313830373b), ('j77uk47n2tbr46krlk1dtfd05nielki7', '192.168.0.224', 1527801816, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313831363b), ('lv2v2mv7ka7tqqoa16l2oja722spdnfb', '192.168.0.224', 1527801825, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313832353b), ('uorcc42femtau07mf0glqhunoj37m91h', '192.168.0.224', 1527801834, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313833343b), ('g8g077dis6nprupejpcmnsr5p899c4hv', '192.168.0.224', 1527801843, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313834333b), ('m61v44t24dblrr3umgicvb7374cp3muc', '192.168.0.224', 1527801852, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313835323b), ('ktbsksq9j3reusj3bdj0p5av85s7e30j', '192.168.0.224', 1527801861, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313836313b), ('dga7f0qod8h889nvd4vqn3rpqnkgnp7t', '192.168.0.224', 1527801870, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313837303b), ('jnt421a01tmnvciti6dmvjtol58gk5a3', '192.168.0.224', 1527801879, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313837393b), ('08t24igdaajnvgr5tlsqutcook890aim', '192.168.0.224', 1527801888, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313838383b), ('710degnflbjga53m2vcpr9ui26knofa9', '192.168.0.224', 1527801897, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313839373b), ('l4nr4n0of8f88d3c3lems32qal3fh762', '192.168.0.224', 1527801906, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313930363b), ('o058bbp0kkdruo3cf902ppqa2go8fv9m', '192.168.0.224', 1527801915, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313931353b), ('odqgj0mb86cuh1i4td2tbl4n7lulgmqk', '192.168.0.224', 1527801924, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313932343b), ('okphq5ch1bjp7ji3169q9s00seh89gj4', '192.168.0.224', 1527801933, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313933333b), ('2imh29i5ugo4b867rdmcfk2oq2lj1e5p', '192.168.0.224', 1527801942, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313934323b), ('tjrdpd9hne5es2eepp95cb4tsrn763hj', '192.168.0.224', 1527801951, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313935313b); INSERT INTO `ci_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cimiaqnf27guhvn057iuftcdcm8btct3', '192.168.0.224', 1527801960, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313936303b), ('s25cjg3crajd8v1opbcl1fqpfnvri1ic', '192.168.0.224', 1527801969, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313936393b), ('9uohc9ev6v8tk4q2qd74litd0lvgn2u1', '192.168.0.224', 1527801978, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313937383b), ('mk5je003dcrl5tni8g5jrbserintkfuk', '192.168.0.224', 1527801987, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313938373b), ('83m1ojsg7ilmdsvi1d248i4o89qr01aj', '192.168.0.224', 1527801996, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830313939363b), ('fhl0tc3r18l4kklg9lh88tavhlsgonh3', '192.168.0.224', 1527802005, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323030353b), ('t27pb1n0tlknt42b7mnhu2hsgj0n7v7n', '192.168.0.224', 1527802014, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323031343b), ('pq49016698mdds1lhnfiv6n0n1pup6tc', '192.168.0.224', 1527802023, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323032333b), ('k5dl582ldap3soadmpdrt2utn8htqi8j', '192.168.0.224', 1527802032, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323033323b), ('3jd63ek0d76egboll0v283lch8ndaj41', '192.168.0.224', 1527802041, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323034313b), ('57ktafkvvdika3agestlu8hqf4kn0r32', '192.168.0.224', 1527802050, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323035303b), ('94evl66uaoumbpt0mu1n8viid9iqeiqb', '192.168.0.224', 1527802059, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323035393b), ('lmsfqqleuld86877gs50qcl5vprj8lm9', '192.168.0.224', 1527802068, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323036383b), ('i10o1bcb1vr5bri7kobh7qntl6hedstr', '192.168.0.224', 1527802077, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323037373b), ('hc8k7q8jdfcau84au6434ndoel0pjfne', '192.168.0.224', 1527802086, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323038363b), ('580kb1kqtib3s9d6odr52q8g00gf59ru', '192.168.0.224', 1527802095, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323039353b), ('ts3d1rlcb0qmeve6176bgmu220e4pjqf', '192.168.0.224', 1527802104, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323130343b), ('b1rffqacti5oc0d8d86fi5f0goue8pj4', '192.168.0.224', 1527802113, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323131333b), ('ggftph36joq2tuan439jsqc2n208l45s', '192.168.0.224', 1527802122, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323132323b), ('sv8dl58r55ge5j74lmpp2asfc7oabcd5', '192.168.0.224', 1527802132, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323133323b), ('1vgv37v1i25mu14g93rmfo0furif3sb0', '192.168.0.224', 1527802141, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323134313b), ('kn12c5u031dn97vsim4hq295ad339vvv', '192.168.0.224', 1527802150, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323135303b), ('n3ovbb6sis1110elmbicoav6ulqle5oh', '192.168.0.224', 1527802159, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323135393b), ('aaq9mjbcd85j3ideiqroidemrg90f6ls', '192.168.0.224', 1527802168, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323136383b), ('udgsb077dr66ul70ijicbfa5ch2n9pqb', '192.168.0.224', 1527802177, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323137373b), ('0udb0g8qiolt3qm5ra03su4imtkubu3q', '192.168.0.224', 1527802186, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323138363b), ('h193jgqt9i2eeohrl72hu1hthhmrsi24', '192.168.0.224', 1527802195, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323139353b), ('ct1q1mf8bha6i2lmsrjql9io9725dp83', '192.168.0.224', 1527802204, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323230343b), ('aambjdthq0v6ivpq0fcfpr2oelb0o0g8', '192.168.0.200', 1527802573, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323537333b7573756172696f7c733a343a22726f6f74223b656d61696c7c733a32303a2263616c626572746f6d7340676d61696c2e636f6d223b69647c733a313a2231223b7065726d697373616f7c733a313a2235223b6c6f6761646f7c623a313b), ('op7gfr88tapiabtlc8uot91n5qqd4js5', '192.168.0.224', 1527802212, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323231323b), ('itp5cc7luul1s86ro06o22kqg0pqkghs', '192.168.0.224', 1527802221, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323232313b), ('2duvihqml9n9nhhi1i3t7eebboqq3r75', '192.168.0.224', 1527802230, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323233303b), ('v6659j60bj3aodqj5jv2ge0tul1hhqrg', '192.168.0.224', 1527802239, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323233393b), ('4snqi1lf4t161vaerrripm2cjnd39g34', '192.168.0.224', 1527802248, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323234383b), ('mdsnclj2u0vdqvuo6pv27kles7f8nckp', '192.168.0.224', 1527802257, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323235373b), ('fb55pidehdo6q33ullhqk51mr9ls0975', '192.168.0.224', 1527802266, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323236363b), ('6bist9dc3r39pcn09hb24m1jibsco9pt', '192.168.0.224', 1527802275, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323237353b), ('u19q2q6mejdqj8460siikp1p14ovi0a2', '192.168.0.224', 1527802284, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323238343b), ('eo6jn9suacl3rk728clhcljp7a6jvvps', '192.168.0.224', 1527802293, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323239333b), ('98mk5e6s9qtjkvgq3utg2je2t4cni575', '192.168.0.224', 1527802302, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323330323b), ('kbt9f6eosm1hna15l2vstrkim0397svf', '192.168.0.224', 1527802311, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323331313b), ('vsero24l7c5p0mj24l1nnsbioutjaib2', '192.168.0.224', 1527802320, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323332303b), ('rj9f0t3lfqcs3lkdusmmi43mnmk537td', '192.168.0.224', 1527802329, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323332393b), ('4esqo19d83pnhm4s2ocljmqa7297hco4', '192.168.0.224', 1527802338, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323333383b), ('uettt0njo5htv44kitofkd32cmdjl0p0', '192.168.0.224', 1527802347, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323334373b), ('q20vdentvppm3ml02i043l333sqbi6vv', '192.168.0.224', 1527802356, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323335363b), ('5o4r4t0mvcf095tgaivh3snl7rpu3j1j', '192.168.0.224', 1527802365, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323336353b), ('jfi00efsjovid5mps0nqarb3us57mbm9', '192.168.0.224', 1527802374, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323337343b), ('jq4uosebaaojvmuf0ohiuv283db0dnah', '192.168.0.224', 1527802383, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323338333b), ('nf4ok3hguh9c4ju9o70c31dgp4cnlih0', '192.168.0.224', 1527802392, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323339323b), ('lo5lmhfad7jbqt00hrost369v11ergp0', '192.168.0.224', 1527802401, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323430313b), ('lvr2qs44t9u4famufiqkf4ku7fkg5aug', '192.168.0.224', 1527802410, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323431303b), ('ddividtuc02oogd18qfdpqn5g832nev0', '192.168.0.224', 1527802419, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323431393b), ('f8uip3u39lb69dst0har7h94vgli05pk', '192.168.0.224', 1527802428, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323432383b), ('rm0b0il17uajquki1c4vfd8ir3lvbm7o', '192.168.0.224', 1527802437, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323433373b), ('9on2ecnvlaqu54n2e41hnjbrmlre7c5r', '192.168.0.224', 1527802446, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323434363b), ('dumo84lqockc1356g8k5edl1camfo2gd', '192.168.0.224', 1527802454, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323435343b), ('nucmritm0u45hcubl2q3frve71djfb8u', '192.168.0.224', 1527802463, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323436333b), ('t0ki7107inisfbnilmlf5m6asssgrhe7', '192.168.0.224', 1527802472, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323437323b), ('dgupjbcedbncoe68t3bftenbgq5h5r7h', '192.168.0.224', 1527802481, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323438313b), ('0ar7v9vrodqfjshjc2gfkdcqc0hpvlgl', '192.168.0.224', 1527802490, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323439303b), ('8a0r42cau0qdkeo9336prf9263qghbbv', '192.168.0.224', 1527802499, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323439393b), ('bfp0a2r3a8lk51md8rj94tvof9fio0k2', '192.168.0.224', 1527802508, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323530383b), ('l74l918jtq7qhctrqtcmv95212ircvrj', '192.168.0.224', 1527802517, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323531373b), ('tll488d07hu7c6niv33smoqr5gs5ktf3', '192.168.0.224', 1527802526, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323532363b), ('fp1asrbet38srgcflbq61ebv8s93um6n', '192.168.0.224', 1527802535, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323533353b), ('un212j54sps8cubfne6tpm3llirqfbtg', '192.168.0.224', 1527802544, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323534343b), ('15mj3es980u35qhj9hacqrs5l3hrddfd', '192.168.0.224', 1527802553, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323535333b), ('c4i9gt7tllh55lu4ln8b2frvi4tkdtqi', '192.168.0.224', 1527802562, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323536323b), ('po2329b7s7moltl0124mj64m7egk2m2j', '192.168.0.224', 1527802571, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323537313b), ('slcbrvqslq6u3u7061lpb09bdsiq28ov', '192.168.0.200', 1527802955, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323935353b7573756172696f7c733a343a22726f6f74223b656d61696c7c733a32303a2263616c626572746f6d7340676d61696c2e636f6d223b69647c733a313a2231223b7065726d697373616f7c733a313a2235223b6c6f6761646f7c623a313b), ('3vdjlrc0asibdgbbuka2nj7ipsorvvm5', '192.168.0.224', 1527802580, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323538303b), ('cn4r6huqckfhkq8t4h3bufrs5sene9mq', '192.168.0.224', 1527802589, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323538393b), ('5d53uthlv0couoagnv4b0pfnnh7ad9ss', '192.168.0.224', 1527802598, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323539383b), ('cvoubine98eo14r7r5na6el3e4urmhsv', '192.168.0.224', 1527802607, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323630373b), ('evklqve1cg3a7l63ia1kg2gsc1bb0e9m', '192.168.0.224', 1527802616, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323631363b), ('vqs4n0tco3jgeji6j78johr3g12p8vng', '192.168.0.224', 1527802625, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323632353b), ('7q68id68afh1go9qmvhdav4gcjtal9gd', '192.168.0.224', 1527802634, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323633343b), ('jm564chi1olkq7gncnmg6nc5qq20mgri', '192.168.0.224', 1527802643, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323634333b), ('5ips5rqav2d5pbt9htr2d1ngebq1i9hq', '192.168.0.224', 1527802652, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323635323b), ('87mal254jgad4lip7grmabtsu2m1m2aa', '192.168.0.224', 1527802661, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323636313b), ('j6716q84rj1e49nq2g3rupgcs8v3gc32', '192.168.0.224', 1527802670, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323637303b), ('27r7g8ov4057n1vqth7ivt8t5g3f5iop', '192.168.0.224', 1527802679, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323637393b), ('68m0k4123v33380cugkbro8oci6jjqni', '192.168.0.224', 1527802688, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323638383b), ('3s4i1gv56pep1vk3ddnhl0g65qg0h98c', '192.168.0.224', 1527802697, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323639373b), ('a4538qggk6a2h9deih16kal6givkk3jn', '192.168.0.224', 1527802706, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323730363b), ('dftjjc6olh9krg8aur6lg9vq8kbhdq95', '192.168.0.224', 1527802715, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323731353b), ('0sikinjd4edco6mkgf1rc41m33obat1n', '192.168.0.224', 1527802724, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323732343b), ('21mri35un83v8umomkqh47m6tglvl0bt', '192.168.0.224', 1527802733, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323733333b), ('3e1dtesa7su6bf62ptsj2rd1natfdirc', '192.168.0.224', 1527802742, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323734323b), ('5i42r3pspbo5u5fva09sdedimsocut5o', '192.168.0.224', 1527802751, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323735313b), ('8pp1f5269029ru071o6ad03p7b05ibog', '192.168.0.224', 1527802760, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323736303b), ('t0513knn8e2f1i4iaokah7uq2s4k46sq', '192.168.0.224', 1527802769, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323736393b), ('m9jnur49arelmp8k949dup07lpuf4kul', '192.168.0.224', 1527802778, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323737383b), ('n4r0e9ce15vbf1lve66cffadghsp4lks', '192.168.0.224', 1527802787, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323738373b), ('b1r4tnaqrvgmbdolgf9b2hrvcdjq7he3', '192.168.0.224', 1527802796, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323739363b), ('6r15k3rc7shfd49o8sjq4su1164phna1', '192.168.0.224', 1527802805, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323830353b), ('ak99cahsg8fp0ejvjo1vlf5fts0s4rsl', '192.168.0.224', 1527802814, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323831343b), ('t942t5a99stf58h9bhule0k4b6imbd3m', '192.168.0.224', 1527802823, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323832333b), ('rtthmfeuo700hrsiakouml599mo8pf55', '192.168.0.224', 1527802832, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323833323b), ('r7a922pm3t31t7ggt9t1728bpe5uf4tb', '192.168.0.224', 1527802841, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323834313b), ('87vdpg78vtf9tgpslcl4695eb99797bs', '192.168.0.224', 1527802850, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323835303b), ('6bd4a93lr3kf3vjqtni3sri9r4h51i5v', '192.168.0.224', 1527802859, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323835393b), ('t7l71ukino1bctit12p0po8gpf1rj21g', '192.168.0.224', 1527802868, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323836383b), ('im2ff2iic0cu2leok8t7tl6io7m8htnm', '192.168.0.224', 1527802877, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323837373b), ('39ha8dqblb8rngje4742cn0c7k1slopn', '192.168.0.224', 1527802886, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323838353b), ('ii4pgs27q41u6g70j7n0h0aeri1inrst', '192.168.0.224', 1527802894, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323839343b), ('84ns4dco7pmas390asvc9an24sl3ea15', '192.168.0.224', 1527802903, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323930333b), ('hl7n9jvbm3vqu0ncklacqehuc0u9k9ip', '192.168.0.224', 1527802912, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323931323b), ('6p7pkqf6v3i1vccuuu00l6p7cuq57ei7', '192.168.0.224', 1527802922, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323932323b), ('8fpeig219oo4ge0ksutf2t0gh04hb45h', '192.168.0.224', 1527802931, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323933313b), ('8nju7acvnsra2eoesfac6uvebcrgcsla', '192.168.0.224', 1527802939, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323933393b), ('h8vdttiad4t07roetl6876ao9nom92dh', '192.168.0.224', 1527802949, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323934393b), ('rrte71ngeea8bapbm3p637bekmad230f', '192.168.0.200', 1527803372, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333337323b7573756172696f7c733a343a22726f6f74223b656d61696c7c733a32303a2263616c626572746f6d7340676d61696c2e636f6d223b69647c733a313a2231223b7065726d697373616f7c733a313a2235223b6c6f6761646f7c623a313b), ('ne20a5nqv6159cb8qlgb2g4p93vmidhv', '192.168.0.224', 1527802957, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323935373b), ('2mv5t1b25ap4ttvno1lkvd3f2l8dqpuv', '192.168.0.224', 1527802966, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323936363b), ('crcgc6ku340le92e1t71mp20ohjklaeg', '192.168.0.224', 1527802975, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323937353b), ('ph6haocc0sh0ntgr1p76s6brrjfe1ps4', '192.168.0.224', 1527802984, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323938343b), ('krdco03r7n2lssg3dkg6hlm6pq0cnamo', '192.168.0.224', 1527802993, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830323939333b), ('c31th3n69aogtk53vndlg4426pkfk86m', '192.168.0.224', 1527803002, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333030323b), ('ftr79msarnh6o78q7hr2c3hc23fb6kva', '192.168.0.224', 1527803011, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333031313b), ('b508corg41265que48bfoletsi1c3cv8', '192.168.0.224', 1527803020, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333032303b), ('oc8h99l50223gsmtsdmveuacb20kneen', '192.168.0.224', 1527803029, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333032393b), ('qav12dvqqstaclvqmp53kdc0u3gb0bki', '192.168.0.224', 1527803038, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333033383b), ('h6it7nuujfoc49j141gd2e2rqln5bv8l', '192.168.0.224', 1527803047, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333034373b), ('q9hap706e7a7jqt5il0kfapoj4kja283', '192.168.0.224', 1527803056, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333035363b), ('b76i6inchd2tkmf24e0j56e3egkjps3c', '192.168.0.224', 1527803065, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333036353b), ('jfu1s7oean7k7eoc4ja3q2mri6he284t', '192.168.0.224', 1527803074, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333037343b), ('ug2nnqake3n5clel2dtfrv2qe0o53ag5', '192.168.0.224', 1527803083, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333038333b), ('76sca8msrchriq7jikssgtj0bljk6ne6', '192.168.0.224', 1527803092, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333039323b), ('bgo7e7l80oeqe8p8sd94e5dhpkqb1i75', '192.168.0.224', 1527803101, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333130313b), ('hqaik5r50633ujt4ef55ge6osh8e4dgp', '192.168.0.224', 1527803110, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333131303b), ('0abh25gmht6e55ig9nk5lhus8faf4reb', '192.168.0.224', 1527803119, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333131393b), ('rjssgjtrm4a2egk2g04a0i4u7c3t8ss5', '192.168.0.224', 1527803128, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333132383b), ('8g4bt61uq0s3nvf7372fa9te36mbm71j', '192.168.0.224', 1527803137, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333133373b), ('9lsef5jpgc99lbom6oj1tttmac1cn3hs', '192.168.0.224', 1527803146, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333134363b), ('rq072airojugh1iec8ikvndg1t5lfekp', '192.168.0.224', 1527803155, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333135353b), ('arrn0i24edfhh6pe2to9pljqjb54is9b', '192.168.0.224', 1527803164, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333136343b), ('g6lkmfq117ofapfm1v04dtgrc3m30val', '192.168.0.224', 1527803173, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333137333b), ('1jf5ekpat8ijukh8pd5ha1sm6tb8pc0h', '192.168.0.224', 1527803182, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333138323b), ('lq41rhq6menafbt3e5ajfipilka5nie9', '192.168.0.224', 1527803191, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333139313b), ('k8mep9s2qo138a1r1kkt55lq246jcs27', '192.168.0.224', 1527803200, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333230303b), ('orak72dhg7o1rtk94v5i92gvbno0suur', '192.168.0.224', 1527803209, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333230393b), ('dkmmptb9gssmddorlohdon370mg1htrv', '192.168.0.224', 1527803218, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333231383b), ('ig7nlpkj6q5csh4g0k0bjm1la1m8rhhg', '192.168.0.224', 1527803227, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333232373b), ('ehu0hq1j1li51cjhilic5p1s3p86u3cb', '192.168.0.224', 1527803236, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333233363b), ('v2kd57jjcds9orduqnjo6l0gfkb4m0jf', '192.168.0.224', 1527803245, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333234353b), ('sq40v19vvh6vktvaignuffduendkp2fb', '192.168.0.224', 1527803254, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333235343b), ('evrcd7m2j26aje31671b60eomqc73583', '192.168.0.224', 1527803263, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333236333b), ('otfi2nnatbat54gd5c7ngske15qkkgki', '192.168.0.224', 1527803272, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333237323b), ('khhl5nfslrsr9pknre37kcpc9kapi2pa', '192.168.0.224', 1527803281, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333238313b), ('k3ullftfpige9h2gurri1nebldh8t01l', '192.168.0.224', 1527803290, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333239303b), ('if09bgku7foc3shkh7nvrk2q5pk8cshe', '192.168.0.224', 1527803299, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333239393b), ('2kld3hlv6misck9v15skcrak3rpc233m', '192.168.0.224', 1527803308, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333330383b), ('k422ss88chg7f7804lsco8br6ngsl9gd', '192.168.0.224', 1527803317, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333331373b), ('3tm8cmp9nrf3mb4s1d20mtajslmcvhlo', '192.168.0.224', 1527803326, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333332363b), ('jd6dtheknj28vccugdc3d6b1a764d8a4', '192.168.0.224', 1527803335, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333333353b), ('c8qpnq2ep6drn832taf9tetqat1c95ec', '192.168.0.224', 1527803344, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333334343b), ('4jo572qiomdhied0ftt7ne3aa8nueme4', '192.168.0.224', 1527803353, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333335333b), ('s3benr899p2da8q4cj2kb660ggfr15qa', '192.168.0.224', 1527803362, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333336323b), ('pc6u12jpgmtqvs9oeijb68975uavh4l6', '192.168.0.224', 1527803371, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333337313b), ('mn0akmj9v5kcv5hn0o4lolojc6k1s5de', '192.168.0.200', 1527803722, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333732323b7573756172696f7c733a343a22726f6f74223b656d61696c7c733a32303a2263616c626572746f6d7340676d61696c2e636f6d223b69647c733a313a2231223b7065726d697373616f7c733a313a2235223b6c6f6761646f7c623a313b), ('tn0jftdbofvd9ldsukncbcnlqjh951cj', '192.168.0.224', 1527803380, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333338303b), ('70fe2olrgvp9nqs94032fvorutincpi9', '192.168.0.224', 1527803389, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333338393b), ('7g226jok5n2sojebib6rmgb28b73vehd', '192.168.0.224', 1527803398, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333339383b), ('44iq21b8lhem4p4p56lfflpon5d8tqlr', '192.168.0.224', 1527803407, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333430373b), ('qjg5tc5uain3k8sglfvgpv21rs2cosv3', '192.168.0.224', 1527803416, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333431363b), ('0f6ae3cud1av8m6a0597mepvq3pcnjkb', '192.168.0.224', 1527803425, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333432353b), ('s9iv8tgapbcg9nqhuqu5h142gmb4jsm2', '192.168.0.224', 1527803434, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333433343b), ('ekvdhcr1fneo4j4uunaigbs7346r6ehf', '192.168.0.224', 1527803443, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333434333b), ('ngujmic460r34a50vfkcp1eb9mh86ont', '192.168.0.224', 1527803452, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333435323b), ('u3gcitgu8267b3i1jmf3q0m8if3fdhii', '192.168.0.224', 1527803461, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333436313b), ('slpmrlfg403en8696h8584b4pugs9snt', '192.168.0.224', 1527803471, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333437313b), ('0122ipghq8f27pbm1j7u8gcb2l0kj04l', '192.168.0.224', 1527803480, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333438303b), ('flac8n96isq4hnr5ajpmbo1t8iit89qa', '192.168.0.224', 1527803489, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333438393b), ('gu8j682qn1s0mgd7somalnl6nllok2oj', '192.168.0.224', 1527803498, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333439383b), ('nurcc3hb35aks2qknmb8dicm39vsfkmo', '192.168.0.224', 1527803507, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333530373b), ('107vr2bvf5qc82j0uij5284fii6k3p86', '192.168.0.224', 1527803516, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333531363b), ('fcluh9bq4h5ltjet3972n8mrtee9o8f0', '192.168.0.224', 1527803525, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333532353b), ('s9j4hdq9r2hbiiv853vb3inle393sqgs', '192.168.0.224', 1527803534, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333533343b), ('7vvp9ql0d05pn792833cu0pdq4dnfsl6', '192.168.0.224', 1527803543, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333534333b), ('rqb1dqhs0i7p78o5dau6v2tcu1u11gmq', '192.168.0.224', 1527803552, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333535323b), ('36tbhh4jjqcg88bh7606kaghhvdd00ih', '192.168.0.224', 1527803561, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333536313b), ('qs4pnl5gbl653l5t1hm0761orl4sl4ls', '192.168.0.224', 1527803570, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333537303b), ('hheac6a66qtjq8177m6u9rm6u1prt5u7', '192.168.0.224', 1527803579, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333537393b), ('6t4lg6fvtrodtlbitf5faifhirqt7mde', '192.168.0.224', 1527803588, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333538383b), ('kkpm44n5td3o2hs6ma1skrbfh7g2mr20', '192.168.0.224', 1527803597, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333539373b), ('83ldq21k544irjuj8gfe3givbrs3fgu3', '192.168.0.224', 1527803606, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333630363b), ('0h8lcfddma8en4vdc02s8qe66csmtbsp', '192.168.0.224', 1527803615, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333631353b), ('jt2gh5sl99t48bk7h4d0mh0h48ndd7m4', '192.168.0.224', 1527803624, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333632343b), ('q36hc1le2echhggh6fu101pkee06rhsa', '192.168.0.224', 1527803633, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333633333b), ('j8girnagpqlnmckbjtq6vt7lecjqle8p', '192.168.0.224', 1527803642, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333634323b), ('6cim3jmbqirf3d7ua9k15e1duid9j36h', '192.168.0.224', 1527803651, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333635313b), ('mb3uk3ib7810k59ld2kidkm8d764sd20', '192.168.0.224', 1527803659, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333635393b), ('ja96ephkdngparkc1rn1camfucs8kp5d', '192.168.0.224', 1527803668, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333636383b), ('o7me04qocqo641lumntml42htv8quno8', '192.168.0.224', 1527803677, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333637373b), ('kthjlad4ae58rdqsr4kk6ju5fc86fovr', '192.168.0.224', 1527803686, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333638363b), ('pvloar288t0dbhqd6a76j056ihbpkff7', '192.168.0.224', 1527803695, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333639353b), ('l32mp8isltbl026ppg9jh6k7mh3tiv7l', '192.168.0.224', 1527803704, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333730343b), ('ppcklitti6889esje3kuoun3rsb8e9j5', '192.168.0.224', 1527803713, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333731333b), ('6mh8pbipgcp12kjtupe0efi2etcjhoib', '192.168.0.200', 1527804599, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343539393b7573756172696f7c733a343a22726f6f74223b656d61696c7c733a32303a2263616c626572746f6d7340676d61696c2e636f6d223b69647c733a313a2231223b7065726d697373616f7c733a313a2235223b6c6f6761646f7c623a313b737563636573737c733a33343a225065726d697373c3a36f2061646963696f6e61646120636f6d207375636573736f21223b5f5f63695f766172737c613a313a7b733a373a2273756363657373223b733a333a226f6c64223b7d), ('q8g6l1botn6rvgdu26nn7qqdfg6lcjl1', '192.168.0.224', 1527803722, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333732323b), ('fjj7ilr7eh18hue05jikifi8826fgmj1', '192.168.0.224', 1527803731, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333733313b), ('b1sblccv42elr1qq690hfbnodtb0vcea', '192.168.0.224', 1527803740, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333734303b), ('aij97aumlmvdrqf4uigb0t55i0g0lono', '192.168.0.224', 1527803750, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333735303b), ('f8b2j6kj7ik4evrb7bovl0dq27lt9kuf', '192.168.0.224', 1527803759, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333735393b), ('16blncp84id53u05djrr4k54973qkic5', '192.168.0.224', 1527803768, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333736383b), ('ih9ao35plmlr9ub8ps8ehhkvggvrkj3n', '192.168.0.224', 1527803777, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333737373b), ('n6n8u3ausehob7pkmv2vruitcpk7p0a6', '192.168.0.224', 1527803786, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333738363b), ('8730of3efhog8cjj6irvc9rolnlh10vb', '192.168.0.224', 1527803795, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333739353b), ('aanaj1ngfdoer13m02su9tp9p1ebhg29', '192.168.0.224', 1527803804, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333830343b), ('0rtcvo2j2rkbugnsj1v4vqcstlec22t6', '192.168.0.224', 1527803813, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333831333b), ('vas5iprjv8cvnmjgspu3cs1jp116vra8', '192.168.0.224', 1527803822, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333832323b), ('4qqrmqjvh1agktp3plp5hecmu3e18v9u', '192.168.0.224', 1527803831, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333833313b), ('0b0mebvrj4q4kht6bhuhhpcdgomls9n5', '192.168.0.224', 1527803840, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333834303b), ('6hvdm1641pg1qkff91nlqcoru6p6jpo0', '192.168.0.224', 1527803849, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333834393b), ('eg5ggu98u52l5eohem63805p7vnieffs', '192.168.0.224', 1527803858, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333835383b), ('brnpfcevnmeq3eqdfnot2vi7l6r7qbe5', '192.168.0.224', 1527803867, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333836373b), ('70sij1oc0bvkljm8gv6bpug1nuqq1n11', '192.168.0.224', 1527803876, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333837363b), ('hff2vlgogs60ma0ss3615hcj1b7oajui', '192.168.0.224', 1527803885, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333838353b), ('s2t2iav82m3paafi01ikm2t9n1lo8cun', '192.168.0.224', 1527803894, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333839343b), ('otrqn12u15tsr9u5t6ubdficps7s6ddh', '192.168.0.224', 1527803903, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333930333b), ('75atdtg82dtue43cultoj0bg63j1c4in', '192.168.0.224', 1527803912, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333931323b), ('gr0dsrhafvvqnc3bjhmv7hpksu3dmq1p', '192.168.0.224', 1527803921, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333932313b), ('95jmvprn613bgv1n48mjhij10kqcklo7', '192.168.0.224', 1527803930, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333933303b), ('4ia1jvmod3muiia4m9aqdattp5gg16ng', '192.168.0.224', 1527803939, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333933393b), ('rr7651g8p9997mehkbdunek40midlok4', '192.168.0.224', 1527803947, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333934373b), ('3phq89eo81gq1n4d4uitsuf7hj9m5a2m', '192.168.0.224', 1527803956, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333935363b), ('cccgd1a3fv5mu3isvl1tpf24k4h30adt', '192.168.0.224', 1527803965, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333936353b), ('6oulvh8dqglqgsgg9dtdq4v560kr06a7', '192.168.0.224', 1527803974, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333937343b), ('4qao9sp0qfhnn7ivt8gdndqkdmdbf3k1', '192.168.0.224', 1527803983, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333938333b), ('jrl2gkubcpnpqei2h0jfjenidthkt9c7', '192.168.0.224', 1527803992, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830333939323b), ('5t818sgts61uov09p86ltf7h5vv9637l', '192.168.0.224', 1527804001, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343030313b), ('77u91dsg2m7logstmvdv1qcfnn7jdgh4', '192.168.0.224', 1527804011, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343031313b), ('2nrlt7vbnlo7pqlg5jeok783e5063j6g', '192.168.0.224', 1527804020, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343032303b), ('t0jh27hjnmjf2as7l4re0jmv44ta4tve', '192.168.0.224', 1527804029, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343032393b), ('i0coqj3jfqf2g66295ku1sdfjdis1oe4', '192.168.0.224', 1527804038, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343033383b), ('bj7m3b1au7ca183vdljg5p27rovd1mla', '192.168.0.224', 1527804047, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343034373b), ('03b0io3mgdmbqmctpm3639r6d6iuthq8', '192.168.0.224', 1527804055, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343035353b), ('mv8hsovu1n8r91rmpcjk5ergmum8q4g2', '192.168.0.224', 1527804064, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343036343b), ('kqlvmiljd4c7nh1pm665p7ovo9tuobmd', '192.168.0.224', 1527804073, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343037333b), ('8rjsmaus0f9pq6ur3eq8j7kjedfkhblk', '192.168.0.224', 1527804082, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343038323b), ('en4iv0b5r1bh6uq08hgjm8a8tf61a8qb', '192.168.0.224', 1527804091, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343039313b), ('2d4jqvbu92pu2jqglj0tb09nm3o0ggj0', '192.168.0.224', 1527804100, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343130303b), ('v6plvfepfpq94g841c2tpuioecce48j5', '192.168.0.224', 1527804109, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343130393b), ('2afmibf8tbmi1hi58r1166or6t20aakf', '192.168.0.224', 1527804118, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343131383b), ('rmvdmbl3hudcj5omh6btujumegh3epio', '192.168.0.224', 1527804127, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343132373b), ('ebjaeqqov3h04b7gm2tj8ad1n8jairmb', '192.168.0.224', 1527804136, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343133363b), ('s9cr4bfrolo8ui085ignevi6mltmm55l', '192.168.0.224', 1527804145, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343134353b), ('sc8vhdjthlbmaiqpsbaq7hhe4iqfd3n1', '192.168.0.224', 1527804154, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343135343b), ('rjo2ptjt8brsla8hmpo64vl2dodq9m4g', '192.168.0.224', 1527804163, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343136333b), ('2b08lta9jkidvr4jl6detmfan6o4d0jv', '192.168.0.224', 1527804172, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343137323b), ('1in39cmadfo61o24fnbjo6gn9akhe66t', '192.168.0.224', 1527804181, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343138313b), ('u92oh2vf5t1maqqrisop48ufeccmqmsr', '192.168.0.224', 1527804190, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343139303b), ('vhm8233fs9tak8pg6s8l6ju3q7n4ao8f', '192.168.0.224', 1527804198, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343139383b), ('rssqb1ohb63a56srb0j3eiatqcmgi4e5', '192.168.0.224', 1527804207, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343230373b), ('0nlogjk8dul00dudtkhoo6jaidqidl4j', '192.168.0.224', 1527804216, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343231363b), ('8nmc58aqd19i6up8eue4kh553ip5k9ug', '192.168.0.224', 1527804225, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343232353b), ('ngt6ok07achuek8h7tuoca12hfkii6v3', '192.168.0.224', 1527804235, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343233353b), ('r3u08akl1h9gki9m6trh7bfln6655jt7', '192.168.0.224', 1527804244, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343234343b), ('nkoend2c3gsp9kf94neqe58i88l8k7se', '192.168.0.224', 1527804253, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343235323b), ('m3v6fedlj07thrmqurjqgofd1hqe0fmk', '192.168.0.224', 1527804261, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343236313b), ('n86dlg7khddl40hulif0ccn0qsis4dut', '192.168.0.224', 1527804270, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343237303b), ('8bo24e4ih6lt3mf53qqpii617tbdhuti', '192.168.0.224', 1527804279, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343237393b), ('0lpv00ghljb0729einkdo0mtgvemack7', '192.168.0.224', 1527804289, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343238393b), ('4c9bmirk7eerr5v0fsl4k2qgu6j0almm', '192.168.0.224', 1527804298, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343239383b), ('b7stkijg4thn29k3svtlpacba7c7ti2q', '192.168.0.224', 1527804307, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343330373b), ('ma53j4l2s9l8h7vbspegsugfou9sqgq2', '192.168.0.224', 1527804316, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343331363b), ('3s5ugehk9hq8l5u4cbg810te1gpn96mg', '192.168.0.224', 1527804325, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343332353b), ('bu4ts7c7asc67gq7vuk30ckb2b4qen9l', '192.168.0.224', 1527804334, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343333343b), ('bg3sprn4ls1qgud05t90qt88lc02jsv1', '192.168.0.224', 1527804343, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343334333b), ('a5sbs4s2p104qcmqa5lk4od59tldj6et', '192.168.0.224', 1527804352, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343335323b), ('7h09bim39r1ni1m69cfvqsngh03gnrtg', '192.168.0.224', 1527804361, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343336313b), ('6m6q9ps4lr279vuuu3rdm4jgbcognqd1', '192.168.0.224', 1527804370, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343337303b), ('8p9tkpkrhop4saadf0ecgv5h2dn8i0ai', '192.168.0.224', 1527804379, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343337393b), ('q7kon53ucmu1r13s13cbvtnd8h82bn99', '192.168.0.224', 1527804388, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343338383b), ('dr88416s8fbu2vlkil665l9c321s8ttu', '192.168.0.224', 1527804397, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343339373b), ('sp9aponmae2u32i8fuvu4d65i1d03lhp', '192.168.0.224', 1527804406, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343430363b), ('88hnttfkcp7gej83rpgv5ub12eb13h7r', '192.168.0.224', 1527804415, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343431353b), ('224dhdj05c88482nibj8j5gkc6u85m0c', '192.168.0.224', 1527804424, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343432343b), ('msk9ru6c5672r0shdiue1j3s1rndrobf', '192.168.0.224', 1527804433, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343433333b), ('np4nvsso8jsmt8j4hjl7oqgs31tteb51', '192.168.0.224', 1527804442, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343434323b), ('9k1rplks8s01346h88v4ercbbodhd3s3', '192.168.0.224', 1527804451, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343435313b), ('fqc4upaqertbhstljo9rlgn7evr9h44i', '192.168.0.224', 1527804460, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343436303b), ('4v61gou82e0784feddg6ik0frml42v0e', '192.168.0.224', 1527804469, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343436393b), ('dpgfr1lm5oako17f5bqgknl9c2k77t71', '192.168.0.224', 1527804478, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343437383b), ('cqdbi367nv20g1126elspin5if6ftpqv', '192.168.0.224', 1527804487, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343438373b), ('qtaf0j9b5i60p8nkogo7h8sjbugbegeh', '192.168.0.224', 1527804496, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343439363b), ('fv04465f8lpc1l526fapmsuaqmf978h7', '192.168.0.224', 1527804505, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343530353b), ('r5iqj8dr0pt8hhcv2e8c0l6t2mb8fvor', '192.168.0.224', 1527804514, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343531343b), ('5f1akeavbhd1u16vkn1m3o13d9s5iejk', '192.168.0.224', 1527804523, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343532333b), ('vtndk030s81cs0iekvr834bhn33bp7hq', '192.168.0.224', 1527804532, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343533323b), ('13bjli3uc7s8lh1pvubp6fgr5oturdrl', '192.168.0.224', 1527804541, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343534313b), ('31cpvip62p8renrq7mkc0dtgs6cd1hqb', '192.168.0.224', 1527804550, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343535303b), ('9mmnkr6p8bfjjf2fiua72hjald6ds7tm', '192.168.0.224', 1527804559, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343535393b), ('cpn1ibuh0n8jeouir9vh90eg64mi5b88', '192.168.0.224', 1527804568, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343536383b), ('s21hh82gq4b5mad4fkgfuuougrhk473r', '192.168.0.224', 1527804578, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343537383b), ('31e5de0k4gkd6514ndkkg320db482tl5', '192.168.0.224', 1527804587, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343538373b), ('so383bv2qkr6ujmkjghhcf6upstg8e5s', '192.168.0.224', 1527804596, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343539363b), ('74dqoeo3q27qhas0iiejetdm4pu00kjo', '192.168.0.200', 1527804603, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343539393b7573756172696f7c733a343a22726f6f74223b656d61696c7c733a32303a2263616c626572746f6d7340676d61696c2e636f6d223b69647c733a313a2231223b7065726d697373616f7c733a313a2235223b6c6f6761646f7c623a313b), ('db1hq4l6e41o777q44ud9grlh6g95i4k', '192.168.0.224', 1527804605, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343630353b), ('fns1ft7tmeojd2egf3ejolhqvha065ds', '192.168.0.224', 1527804614, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343631343b), ('37lq8ln07ddeqai1tk4kuqg1go6ptoq5', '192.168.0.224', 1527804623, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343632333b), ('teeh4fpcm77pjr7ofqvch9dqe5n64a9m', '192.168.0.224', 1527804632, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373830343633323b), ('fmjiguqpv94uoo5bnvsjgjdb99djat55', '192.168.0.224', 1527850754, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303735343b), ('t5jep8s4ld4r02l9686kcep74pha3dqr', '192.168.0.224', 1527850763, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303736333b), ('glhijgsj46tb8mmg80hm5dl64korldpr', '192.168.0.224', 1527850772, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303737323b), ('k512cvdlugbj0bpcr6su2cep8icnksmj', '192.168.0.224', 1527850781, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303738313b), ('mbosphvmtqu8dm5drggj3cp4c0mo7rpi', '192.168.0.224', 1527850791, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303739313b), ('7a1sspbfrl5tqm3mdh86qf4areufekkk', '192.168.0.224', 1527850800, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303830303b), ('mp8i1u1c3d8mqajsjrb10b7k6avps101', '192.168.0.224', 1527850809, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303830393b), ('qi5acrc9li7ttma7c9va2o7o5502gi9u', '192.168.0.224', 1527850818, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303831383b), ('r2o7j44gjfn06icocsaip9dajt89m3rs', '192.168.0.224', 1527850827, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303832373b), ('e8nnql01u9hd69fhj0kr9o1br1mdd1de', '192.168.0.224', 1527850836, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303833363b), ('leoghmhoids2ddluls5geoa1lv8f6e1u', '192.168.0.224', 1527850845, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303834353b), ('6ooi9hq81vkput4aiap5765sa0po9058', '192.168.0.224', 1527850854, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303835343b), ('9nh45vbm8tbfovhukp5156gtmk7jujlb', '192.168.0.224', 1527850863, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303836333b), ('olc8d3mpon47kh5dndit73l9tgtoo1ia', '192.168.0.224', 1527850873, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303837333b), ('0cnit44pfts4oldsi5a9r12lbnsf6c29', '192.168.0.224', 1527850882, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303838323b), ('q1ubu9a66s7k2rolt0rabckfq2gv1cgb', '192.168.0.224', 1527850891, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303839313b), ('e9280nmr3m49aejhhat4jtgtoupri66l', '192.168.0.224', 1527850900, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303930303b), ('tltcvttl8n50eadg6hb336bcjor75qsn', '192.168.0.224', 1527850909, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303930393b), ('iht307bl73bkh4q0l0l3arq28thhan5s', '192.168.0.224', 1527850918, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303931383b), ('ft8b2300oc0nm8oaiksbgtu9rce5h1sk', '192.168.0.224', 1527850927, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303932373b), ('21d445u1vv73vbgm1vs71i3uhnf8cajs', '192.168.0.224', 1527850936, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303933363b), ('f8h7fs7ei13m71a1f0of9vbfpbd3gloq', '192.168.0.224', 1527850945, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303934353b), ('2qvf5c34u82mag9g50loimkq6lin2eji', '192.168.0.224', 1527850954, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303935343b), ('fh96qet7vqseij4b9vc927tu1n5qqgpq', '192.168.0.224', 1527850964, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303936343b), ('9ecn2gg16sscgk465po3d2r7mmktiirk', '192.168.0.224', 1527850973, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303937333b), ('9ns7korurq2q7pn16o4ncnj2bbl514tq', '192.168.0.224', 1527850982, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303938323b), ('dsfa4q984oteg64ocm4m8p4j1rjknmdc', '192.168.0.224', 1527850991, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835303939313b), ('qg5dbg20dt87dpktuqa4domtira8hkvu', '192.168.0.224', 1527851000, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313030303b), ('8278pk22usu87j3jjd14dhvaffsb4fnb', '192.168.0.224', 1527851009, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313030393b), ('a9vmju620rf3kbnl9787kf9m69c6jhjf', '192.168.0.224', 1527851018, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313031383b), ('o09fr87jepamdc19rff0ctl17l0fedkh', '192.168.0.224', 1527851027, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313032373b), ('sv7o3mafp3gvogcamcl4im5lu4gffv6l', '192.168.0.224', 1527851037, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313033373b), ('g5linruhql147fbie0s3cfsive35ppj5', '192.168.0.224', 1527851046, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313034363b), ('j8j349hu7g1kn1a1dr68i3oemfvoucn3', '192.168.0.224', 1527851055, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313035353b), ('k92ctgtqesp62b2kpe5f4703633b0dfe', '192.168.0.224', 1527851064, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313036343b), ('gcr5mcogjr0fkc3obod6n0h3qsmpkgae', '192.168.0.224', 1527851073, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313037333b), ('5c92bbkb2ejks1o7grnfdu69bmvsf5t7', '192.168.0.224', 1527851082, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313038323b), ('peudurthk2nq90c6b6m0sv63fib3bdok', '192.168.0.224', 1527851091, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313039313b), ('5n581re16k7040b238a4t99832hpovkv', '192.168.0.224', 1527851100, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313130303b), ('tseqmq8s43utj5e75r5db98fkpdcgevs', '192.168.0.224', 1527851109, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313130393b), ('p4el7dnru9vh827dui8n4rp416mjdk7g', '192.168.0.224', 1527851118, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313131383b), ('e6n06tlrdj0o28cat8e00gj78jedhcf4', '192.168.0.224', 1527851128, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313132383b), ('1fhcs3jrdr9pd8gjf20gqhjltk9g3qhh', '192.168.0.224', 1527851137, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313133373b), ('1bl7jg1lhbpf54t4n0ql9a29ajn3q19r', '192.168.0.224', 1527851146, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313134363b), ('8u7fss16crb143v97g2hvb9fhkbm68sg', '192.168.0.224', 1527851155, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313135353b), ('98mli9ko2m1si9r7hc9ktp4k8fb93k7u', '192.168.0.224', 1527851164, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313136343b), ('6n0qo1m46njqnib3lbo8a6abip6oi8u7', '192.168.0.224', 1527851173, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313137333b), ('cvlg2brdqe11dsab2ir3ha79itia2aqv', '192.168.0.224', 1527851182, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313138323b), ('19r93074lnaseveom6pruuu200kp4f80', '192.168.0.224', 1527851191, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313139313b), ('8dlnqapc64siaoa41d4j198es2ksl481', '192.168.0.224', 1527851200, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313230303b); INSERT INTO `ci_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('mcudm991sq5v8l0o0h5bh5jj8cnbot61', '192.168.0.224', 1527851210, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313231303b), ('sfg965rv29qb4mnm5oqff2sb5vcap50p', '192.168.0.224', 1527851219, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313231393b), ('8uiccoisv2p48r2e9jab6c2qpn40a9kj', '192.168.0.224', 1527851228, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313232383b), ('jarqh2br5c1f8tjnon4fvu9mbvqnf2io', '192.168.0.224', 1527851237, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313233373b), ('lmhtp5ublilch2l4jgk5l54l216g8vif', '192.168.0.224', 1527851246, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313234363b), ('hrtkptl1mb6tn4hkptbsv0h8jnquja0o', '192.168.0.224', 1527851255, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313235353b), ('r4fvo6eoh7rjujcmnkcc242cdjov2tm5', '192.168.0.224', 1527851264, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313236343b), ('tddgvnmgfr21sceae3g1m0gjvvesf9q2', '192.168.0.224', 1527851273, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313237333b), ('n4ljei1d0njjdlr08pamuepq20hn1kga', '192.168.0.224', 1527851283, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313238333b), ('k6ca7qeon12tlfau5rd9atdp9o6sjn6j', '192.168.0.224', 1527851292, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313239323b), ('ntfp3abk73ag1v79tlr9m5bju0qg5pp6', '192.168.0.224', 1527851301, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313330313b), ('d1v41oavq6a89s979uhq711prjev3em3', '192.168.0.224', 1527851310, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313331303b), ('k33sddhtjqienr6oftsor6rg2o0gt710', '192.168.0.224', 1527851319, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313331393b), ('g0hq5cq4thkvnoe8a42kg0jequ1f73nn', '192.168.0.224', 1527851328, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313332383b), ('c9clb8i87311pvpkghrfk58nd0lbii71', '192.168.0.224', 1527851338, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313333383b), ('kno7f0d7i0igdjo84sj68s8cs3eajrhn', '192.168.0.224', 1527851347, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313334373b), ('8v3175760oonlggjnj5mtpg0ptrps818', '192.168.0.224', 1527851356, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313335363b), ('gakjhf43uhn99e642nbqp54trvi3urn8', '192.168.0.224', 1527851365, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313336353b), ('2pm0n92ioagmsjjefceqnk0qvbqmlnej', '192.168.0.224', 1527851375, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313337353b), ('124i90u8abnemretev6obqdd5cncqh2o', '192.168.0.224', 1527851384, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313338343b), ('e5gtrlg1hko1tb0ps96kk13l3mgmp7rs', '192.168.0.224', 1527851393, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313339333b), ('2cihbn7hetbfeulp10q21d3o4kdoktkf', '192.168.0.224', 1527851402, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313430323b), ('g9qdhm3koaqh3ql543u8nqokif9q1etm', '192.168.0.224', 1527851411, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313431313b), ('8k8f6c8vg8r876487srio38ctpq6gtem', '192.168.0.224', 1527851420, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313432303b), ('aa87hmm40l3vlqbhiheofc11p62e3tim', '192.168.0.224', 1527851429, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313432393b), ('ivp1f9j3iop9m06jmnnintbvi7bqvpbq', '192.168.0.224', 1527851438, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313433383b), ('p5vapbolcl9fv2frr1h0nbm9ei3tem22', '192.168.0.224', 1527851447, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313434373b), ('pkk1c32n3pjocvcbdp570jdgur76e3ev', '192.168.0.224', 1527851457, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313435373b), ('ljp5ihaov45jq20mtk7ikgkcmhjsq2ts', '192.168.0.224', 1527851466, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313436363b), ('qcv5p0vsov1hpsmse1nt152g16ksgksc', '192.168.0.224', 1527851475, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313437353b), ('pj3087d53543h42d8f69q4jrj5382ct9', '192.168.0.224', 1527851484, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313438343b), ('gbn43m4ke39uej4cs3b5uq3ragpgdu9o', '192.168.0.224', 1527851493, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313439333b), ('ch0k6kdp6hm55j6e0evvvl1nd6dcj420', '192.168.0.224', 1527851502, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313530323b), ('m07l527d2esodtfc7qhpqnrpshgnmtpv', '192.168.0.224', 1527851511, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313531313b), ('b823c37t1udgaa1mhb31uekhs8p7q8k0', '192.168.0.224', 1527851521, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313532313b), ('v7tdeja4bctff5jk6tq2b59kahu7ds8g', '192.168.0.224', 1527851530, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313533303b), ('mtq28vnkkig7unu0iepgeu1fu1edqdn3', '192.168.0.224', 1527851539, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313533393b), ('c1f5f9gvt4f6ahessk8v3uagp8sv6ubj', '192.168.0.224', 1527851548, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313534383b), ('r9f8tmpdfqng5u22c2l5mqub10p6n72p', '192.168.0.224', 1527851557, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313535373b), ('2krjljinnu67ukbojmpp2h0svqe8asgv', '192.168.0.224', 1527851566, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313536363b), ('hilq7d0sq94d47cj17vvq3i20g62qqa1', '192.168.0.224', 1527851575, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313537353b), ('fqbog2rq7e7hmm677qlalg3dqf07s9j5', '192.168.0.224', 1527851585, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313538353b), ('2ssgbkf4akojk97r8l8h457avllbskre', '192.168.0.224', 1527851594, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313539343b), ('7mbunuvc146bvvnvo99v6398smpbg581', '192.168.0.224', 1527851603, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313630333b), ('b1vghru12vk143q4fhn7667kgh69fh1n', '192.168.0.224', 1527851612, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313631323b), ('5nu798mp31cr0a05e9s50cu7afnbqmfc', '192.168.0.224', 1527851621, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313632313b), ('t8hjjsm3qahsnqjo9srp1a5bfa4b35l7', '192.168.0.224', 1527851630, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313633303b), ('mllu1dkua2038ra0gceoqr9t2dtd39ef', '192.168.0.224', 1527851640, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313634303b), ('g74uk6lkubkb60vecg8og003res632tj', '192.168.0.224', 1527851649, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313634393b), ('p8s6h3a0p868otk13pi29j7pn8eh3nab', '192.168.0.224', 1527851658, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313635383b), ('36382rn7favc530hctof1fam8por2nb2', '192.168.0.224', 1527851667, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313636373b), ('6338ut8ojb0jd09lbf8o4fvjmrmfkld8', '192.168.0.224', 1527851676, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313637363b), ('gi6bfs4hnplmk4nll39q9ctp50o09bgr', '192.168.0.224', 1527851685, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313638353b), ('tnh0550bk5olunmgk1l48l705ects9ek', '192.168.0.224', 1527851695, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313639353b), ('j4vhlam4t57pq8ua5b62cp5l8m7nnrpa', '192.168.0.224', 1527851704, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313730343b), ('vvdumtp5tp5l2uu4cjqhetaqh9e56go8', '192.168.0.224', 1527851713, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313731333b), ('2hu9jtc064pgcth7384r86j8mp7rmk5h', '192.168.0.224', 1527851722, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313732323b), ('jedffni513o3rn9qn3f3fqskhb5lge4h', '192.168.0.224', 1527851731, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313733313b), ('m4dmqptc4ei6vf08vu73k9t5vkg3s92n', '192.168.0.224', 1527851740, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313734303b), ('eg0pln0990bkkv7g34886au5emm4h5kv', '192.168.0.224', 1527851749, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313734393b), ('3imhls9tgip9mlgtbug28vv24b12mkp9', '192.168.0.224', 1527851758, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313735383b), ('s4busvp40s7cjqlcg5vfai3j42m9g0qm', '192.168.0.224', 1527851767, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313736373b), ('9sabp167u1he047j2pf21ifp89kj9e78', '192.168.0.224', 1527851776, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313737363b), ('cacn9ocnil3hfmemo4ampb99lqker29b', '192.168.0.224', 1527851785, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313738353b), ('9lidkt7hrtdrnrr7ja7q0v3nluo2909q', '192.168.0.224', 1527851794, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313739343b), ('jaa0qgb4927l46ot7am728p3k6l7s1mi', '192.168.0.224', 1527851803, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313830333b), ('brscivainv0a10hj03ccprdj2gg3dv4b', '192.168.0.224', 1527851812, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313831323b), ('oh19vk11prc58j2rlhdhplqumjeab0ct', '192.168.0.224', 1527851822, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313832323b), ('s01l62n15ehufg6eud7k96ak029vvqpi', '192.168.0.224', 1527851831, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313833313b), ('884r6drg58h8bbjgag1ous3bntslua82', '192.168.0.224', 1527851840, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313834303b), ('fp1au5tcslo14o3t43j4a29lg6kp8rcn', '192.168.0.224', 1527851849, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313834393b), ('mn774hsirl3htu9bltgsilogdom0o547', '192.168.0.224', 1527851858, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313835383b), ('md2euaap6ks7a7di1ml12e9nnn9i020u', '192.168.0.224', 1527851867, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313836373b), ('lqf5rtedu1gk2huv75jbi79tkvg78k5j', '192.168.0.224', 1527851876, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313837363b), ('h2lofnt77hpsvvo8mhjjd63om78q3i0q', '192.168.0.224', 1527851885, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313838353b), ('0ruutp3cjehboeri7mpm685imrs5reog', '192.168.0.224', 1527851894, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313839343b), ('qbi4v68c0h1e34jgv1fbe2gu7ofud33n', '192.168.0.224', 1527851903, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313930333b), ('p4qcrpvrfq5lil8tksv53t1ri1j4392m', '192.168.0.224', 1527851912, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313931323b), ('f58fkqoqkgilg65rl7d1nfi8bk245jd8', '192.168.0.224', 1527851921, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313932313b), ('055s4dqpklh7dfoa2jeun01pqcoapio7', '192.168.0.224', 1527851930, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313933303b), ('2cjjp463pn7ubc9ajj9m7m6ogg1l944u', '192.168.0.224', 1527851939, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313933393b), ('636cc8hgdde2uehubqv0cshr8ls71ble', '192.168.0.224', 1527851949, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313934393b), ('inrj0b2sas2aa2pa51hl47di8su8v76e', '192.168.0.224', 1527851958, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313935383b), ('alkqb94tld3l20impgs15i0ast5qf3n6', '192.168.0.224', 1527851967, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313936373b), ('nv0bvtbad95ljkom7lv44s1ajqg4723f', '192.168.0.224', 1527851976, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313937363b), ('fchmjephciabq196rm21q4r4kod0tssu', '192.168.0.224', 1527851985, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313938353b), ('c17u377ge6sdt28eo8amrfil2cvdurus', '192.168.0.224', 1527851994, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835313939343b), ('n1fcpa5fs3iv7hp8245j6ioau49ksj6r', '192.168.0.224', 1527852003, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323030333b), ('gt3ebsf8h6okh9vg34opai50d1qsfirl', '192.168.0.224', 1527852013, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323031333b), ('q6u3f8f0287d8s2m40ba41ld7tuci91a', '192.168.0.224', 1527852022, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323032323b), ('hnjpkvk5dh04h4m26p67h1pl9d96en1v', '192.168.0.224', 1527852031, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323033313b), ('ad9gcbb3uh0muf3mskrfddlv88fbmdb8', '192.168.0.224', 1527852040, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323034303b), ('jglp2p2v3pjbmug7d2qc17cor0ugoota', '192.168.0.224', 1527852049, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323034393b), ('9d8cclo135s07d0pibdroh0umln2vggv', '192.168.0.224', 1527852059, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323035393b), ('h4kpk11uam7tgkv07pq74232bpqcnf6j', '192.168.0.224', 1527852068, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323036383b), ('i6e6fhv9faam9kthm7c8ohb4bcn2igac', '192.168.0.224', 1527852077, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323037373b), ('vnk7418smlgccbl3gvdh3t7d5h3mbn6a', '192.168.0.224', 1527852086, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323038363b), ('8g6rgledm1ubi9luif6v28ks2dvuu8qh', '192.168.0.224', 1527852095, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323039353b), ('tk0p8s45t6h4ouciujso4o2p6jve91c7', '192.168.0.224', 1527852104, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323130343b), ('qiql45jebsic70mh9vtj5ch8rguiviv4', '192.168.0.224', 1527852113, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323131333b), ('3n414mobdqbo00cmepuc4ij2lrbruha8', '192.168.0.224', 1527852122, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323132323b), ('l7kvp724udrlgtafaorr9b027j9grs1n', '192.168.0.224', 1527852131, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323133313b), ('nl99ut222slr1in09eh056kgut6bijb0', '192.168.0.224', 1527852140, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323134303b), ('j0jb77g1aok1unvgad6rmhp79k6m5uv5', '192.168.0.224', 1527852149, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323134393b), ('fu2cfvufvlneqiotl03m01e527ctlecq', '192.168.0.224', 1527852158, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323135383b), ('derp7gg3q71or9mrv4kva819t95n550r', '192.168.0.224', 1527852167, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323136373b), ('o3r4qpbfbdok3qhtepj5kmk84sd18hu7', '192.168.0.224', 1527852177, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323137373b), ('tii2a7gq8m8dqa3kbajbl4cj4c9vvn4u', '192.168.0.224', 1527852186, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323138363b), ('9ho680t4h56v078ib3m97ce9q6vu59u3', '192.168.0.224', 1527852195, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323139353b), ('e9und597mavrvr6c4c0sicsdr9ug165i', '192.168.0.224', 1527852204, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323230343b), ('nd3rfb9ro7r51sdd70erdf258cqm23jb', '192.168.0.224', 1527852213, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323231333b), ('5ln08rfq00ob9vgnrpdlbi7024v5382b', '192.168.0.224', 1527852222, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323232323b), ('44cle1c3j2qtj6f8u8tep54l9mu0u5ht', '192.168.0.224', 1527852231, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323233313b), ('ukfobte6gn2jdln2d1nbsjb0igjlfksu', '192.168.0.224', 1527852240, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323234303b), ('l20d77joquu45b8ptf4rpctknq0qqpre', '192.168.0.224', 1527852249, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323234393b), ('kgtek3i3paa4jmspfh9tf8l5rjdu1k7k', '192.168.0.224', 1527852259, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323235393b), ('tsgbak2lbotnohl1q51js1br6u4kmsml', '192.168.0.224', 1527852268, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323236383b), ('cf2u3ffteqtdk7cvjejj4ntl64rdcche', '192.168.0.224', 1527852279, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323237393b), ('5esbdjbl9p71p03gbhfimckdcdhind61', '192.168.0.224', 1527852289, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323238393b), ('dmfru5ncc8nqd602iu06kos40ln7ghed', '192.168.0.224', 1527852298, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323239383b), ('q2dn03888v45v0qbf7j4vhi7iqv4jeh6', '192.168.0.224', 1527852307, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323330373b), ('5uvpu61ko8l8moprb3cm146uoa7hvr20', '192.168.0.224', 1527852316, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323331363b), ('55rec6mcbbamptur3hp11fdp1gb0hgil', '192.168.0.224', 1527852325, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323332353b), ('o4a858gmktuh64o7s6irhfo9tifirtv5', '192.168.0.224', 1527852334, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323333343b), ('25o7qi5kfn1e838qqf1prpeg1p39bgil', '192.168.0.224', 1527852343, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323334333b), ('3fh5feecr4i3nsb9kps59bj4e4r6nba7', '192.168.0.224', 1527852352, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323335323b), ('2672fgod3hf41njab1jn8rehtnk4o2k6', '192.168.0.224', 1527852361, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323336313b), ('bi16noj9l3fj9f1ffo2v6gvb1l17c6ph', '192.168.0.224', 1527852370, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323337303b), ('7f8ch5gssccjb1g6ivtivjn5aacgvble', '192.168.0.224', 1527852380, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323338303b), ('bmp09m0gt01ndmvh3jaoldhrvnbn5eju', '192.168.0.224', 1527852389, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323338393b), ('b9ebmcmr0jmrk034ff9505atin98a7fl', '192.168.0.224', 1527852398, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323339383b), ('2atgdgnilt6u7fgk1f8kcalr1u92n55m', '192.168.0.224', 1527852406, 0x5f5f63695f6c6173745f726567656e65726174657c693a313532373835323430363b); -- -------------------------------------------------------- -- -- Estrutura da tabela `clientes` -- CREATE TABLE `clientes` ( `idCliente` int(11) NOT NULL, `idUsuario` int(11) NOT NULL, `nome` varchar(50) NOT NULL, `nomeFantasia` varchar(50) NOT NULL, `cnpj` varchar(50) NOT NULL, `email` varchar(100) NOT NULL, `telefone` varchar(50) NOT NULL, `inscEstadual` varchar(50) NOT NULL, `areaUtilm2` float(9,2) NOT NULL, `logradouro` varchar(100) NOT NULL, `cep` varchar(100) NOT NULL, `numero` varchar(50) NOT NULL, `complemento` varchar(100) NOT NULL, `uf` varchar(50) NOT NULL, `dataCadastro` date NOT NULL, `dataAlterado` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `fornecedores` -- CREATE TABLE `fornecedores` ( `idFornecedor` int(11) NOT NULL, `idUsuario` int(11) NOT NULL, `nome` varchar(50) NOT NULL, `nomeFantasia` varchar(50) NOT NULL, `cnpj` varchar(50) NOT NULL, `email` varchar(100) NOT NULL, `telefone` varchar(50) NOT NULL, `inscEstadual` varchar(50) NOT NULL, `areaUtilm2` float(9,2) NOT NULL, `logradouro` varchar(100) NOT NULL, `cep` varchar(100) NOT NULL, `numero` varchar(50) NOT NULL, `complemento` varchar(100) NOT NULL, `uf` varchar(50) NOT NULL, `dataCadastro` date NOT NULL, `dataAlterado` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `fornecedoresclientes` -- CREATE TABLE `fornecedoresclientes` ( `idFornClient` int(11) NOT NULL, `idFornecedor` int(11) NOT NULL, `idCliente` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `leitura` -- CREATE TABLE `leitura` ( `idLeitura` int(11) NOT NULL, `idMonitor` int(11) NOT NULL, `nivel` decimal(9,2) NOT NULL, `dataHora` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `leitura` -- INSERT INTO `leitura` (`idLeitura`, `idMonitor`, `nivel`, `dataHora`) VALUES (1, 1, '70.00', '2017-10-17 14:12:46'), (2, 1, '70.00', '2017-10-17 14:15:46'), (3, 1, '70.00', '2017-10-17 14:16:12'), (4, 1, '50.00', '2017-10-17 15:48:59'), (5, 1, '63.00', '2017-10-17 16:20:42'), (6, 1, '99.00', '2017-10-17 16:20:47'), (7, 1, '66.00', '2017-10-17 16:20:52'), (8, 1, '76.00', '2017-10-17 16:20:57'), (9, 1, '66.00', '2017-10-17 16:21:03'), (10, 1, '71.00', '2017-10-17 16:21:08'), (11, 1, '72.00', '2017-10-17 16:21:13'), (12, 1, '95.00', '2017-10-17 16:21:18'), (13, 1, '66.00', '2017-10-17 16:21:23'), (14, 1, '80.00', '2017-10-17 16:21:29'), (15, 1, '65.00', '2017-10-17 16:21:34'), (16, 1, '78.00', '2017-10-17 16:21:39'), (17, 1, '74.00', '2017-10-17 16:21:44'), (18, 1, '94.00', '2017-10-17 16:21:49'), (19, 1, '93.00', '2017-10-17 16:21:54'), (20, 1, '87.00', '2017-10-17 16:22:00'), (21, 1, '89.00', '2017-10-17 16:22:05'), (22, 1, '98.00', '2017-10-17 16:22:10'), (23, 1, '78.00', '2017-10-17 16:22:16'), (24, 1, '85.00', '2017-10-17 16:22:22'), (25, 1, '86.00', '2017-10-17 16:22:27'), (26, 1, '86.00', '2017-10-17 16:22:33'), (27, 1, '77.00', '2017-10-17 16:22:39'), (28, 1, '77.00', '2017-10-17 16:22:44'), (29, 1, '82.00', '2017-10-17 16:22:49'), (30, 1, '81.00', '2017-10-17 16:34:20'), (31, 1, '65.00', '2017-10-17 16:34:26'), (32, 1, '72.00', '2017-10-17 16:34:31'), (33, 1, '84.00', '2017-10-17 16:38:42'), (34, 1, '78.00', '2017-10-17 16:38:47'), (35, 1, '72.00', '2017-10-17 16:38:52'), (36, 1, '62.00', '2017-10-17 16:38:57'), (37, 1, '88.00', '2017-10-17 16:39:03'), (38, 1, '96.00', '2017-10-17 16:39:08'), (39, 1, '99.00', '2017-10-17 16:39:13'), (40, 1, '79.00', '2017-10-17 16:39:19'), (41, 1, '97.00', '2017-10-17 16:39:24'), (42, 1, '68.00', '2017-10-17 16:39:29'), (43, 1, '91.00', '2017-10-17 16:39:34'), (44, 1, '93.00', '2017-10-17 16:39:39'), (45, 1, '64.00', '2017-10-17 16:39:44'), (46, 1, '72.00', '2017-10-17 16:39:50'), (47, 1, '68.00', '2017-10-17 16:39:55'), (48, 1, '84.00', '2017-10-17 16:40:00'), (49, 1, '71.00', '2017-10-17 16:40:05'), (50, 1, '71.00', '2017-10-17 16:42:33'), (51, 1, '81.00', '2017-10-17 16:42:43'), (52, 1, '92.00', '2017-10-17 16:42:53'), (53, 1, '74.00', '2017-10-17 18:07:13'), (54, 1, '80.00', '2017-10-17 18:07:23'), (55, 1, '97.00', '2017-10-17 18:07:34'), (56, 1, '95.00', '2017-10-17 18:07:46'), (57, 1, '76.00', '2017-10-17 18:07:57'), (58, 1, '78.00', '2017-10-17 18:08:10'), (59, 1, '83.00', '2017-10-17 18:08:20'), (60, 1, '66.00', '2017-10-17 18:08:31'), (61, 1, '83.00', '2017-10-17 18:08:43'), (62, 1, '94.00', '2017-10-17 18:08:53'), (63, 1, '65.00', '2017-10-17 18:09:03'), (64, 1, '99.00', '2017-10-17 18:09:13'), (65, 1, '83.00', '2017-10-17 18:09:27'), (66, 1, '68.00', '2017-10-17 18:09:42'), (67, 1, '83.00', '2017-10-17 18:09:52'), (68, 1, '97.00', '2017-10-17 18:10:03'), (69, 1, '98.00', '2017-10-17 18:32:03'), (70, 1, '91.00', '2017-10-17 18:32:12'), (71, 1, '91.00', '2017-10-17 18:32:21'), (72, 1, '93.00', '2017-10-17 18:32:31'), (73, 1, '70.00', '2017-10-17 18:32:41'), (74, 1, '81.00', '2017-10-17 18:32:50'), (75, 1, '98.00', '2017-10-17 18:32:59'), (76, 1, '84.00', '2017-10-17 18:33:08'), (77, 1, '64.00', '2017-10-17 18:33:17'), (78, 1, '79.00', '2017-10-17 18:33:27'), (79, 1, '82.00', '2017-10-17 18:33:37'), (80, 1, '80.00', '2017-10-17 18:33:46'), (81, 1, '78.00', '2017-10-17 18:33:56'), (82, 1, '94.00', '2017-10-17 18:34:06'), (83, 1, '75.00', '2017-10-17 18:34:15'), (84, 1, '87.00', '2017-10-17 18:34:25'), (85, 1, '97.00', '2017-10-17 18:34:34'), (86, 1, '68.00', '2017-10-17 18:34:44'), (87, 1, '78.00', '2017-10-17 18:34:58'), (88, 1, '97.00', '2017-10-17 18:35:09'), (89, 1, '96.00', '2017-10-17 18:35:19'), (90, 1, '74.00', '2017-10-17 18:35:28'), (91, 1, '82.00', '2017-10-17 18:35:38'), (92, 1, '96.00', '2017-10-17 18:35:48'), (93, 1, '99.00', '2017-10-17 18:35:57'), (94, 1, '63.00', '2017-10-17 18:36:06'), (95, 1, '76.00', '2017-10-17 18:36:16'), (96, 1, '92.00', '2017-10-17 18:36:25'), (97, 1, '77.00', '2017-10-17 18:36:35'), (98, 1, '83.00', '2017-10-17 18:36:44'), (99, 1, '67.00', '2017-10-17 18:36:53'), (100, 1, '92.00', '2017-10-17 18:37:03'), (101, 1, '81.00', '2017-10-17 18:37:12'), (102, 1, '97.00', '2017-10-17 18:37:21'), (103, 1, '98.00', '2017-10-17 18:37:30'), (104, 1, '65.00', '2017-10-17 18:37:39'), (105, 1, '72.00', '2017-10-17 18:37:49'), (106, 1, '72.00', '2017-10-17 18:37:58'), (107, 1, '73.00', '2017-10-17 18:38:07'), (108, 1, '67.00', '2017-10-17 18:38:16'), (109, 1, '94.00', '2017-10-17 18:38:26'), (110, 1, '88.00', '2017-10-17 18:38:35'), (111, 1, '85.00', '2017-10-17 18:38:44'), (112, 1, '61.00', '2017-10-17 18:38:53'), (113, 1, '76.00', '2017-10-17 18:39:02'), (114, 1, '73.00', '2017-10-17 18:39:11'), (115, 1, '88.00', '2017-10-17 18:39:21'), (116, 1, '67.00', '2017-10-17 18:39:30'), (117, 1, '76.00', '2017-10-17 18:39:39'), (118, 1, '98.00', '2017-10-17 18:39:48'), (119, 1, '61.00', '2017-10-17 18:39:57'), (120, 1, '71.00', '2017-10-17 18:40:06'), (121, 1, '85.00', '2017-10-17 18:40:16'), (122, 1, '68.00', '2017-10-17 18:40:26'), (123, 1, '61.00', '2017-10-17 18:40:35'), (124, 1, '97.00', '2017-10-17 18:40:45'), (125, 1, '79.00', '2017-10-17 18:40:55'), (126, 1, '67.00', '2017-10-17 18:41:04'), (127, 1, '98.00', '2017-10-17 18:41:14'), (128, 1, '64.00', '2017-10-17 18:41:23'), (129, 1, '98.00', '2017-10-17 18:41:32'), (130, 1, '91.00', '2017-10-17 18:41:42'), (131, 1, '96.00', '2017-10-17 18:41:51'), (132, 1, '60.00', '2017-10-17 18:42:01'), (133, 1, '94.00', '2017-10-17 18:42:10'), (134, 1, '97.00', '2017-10-17 18:42:20'), (135, 1, '86.00', '2017-10-17 18:42:29'), (136, 1, '69.00', '2017-10-17 18:42:38'), (137, 1, '69.00', '2017-10-17 18:42:47'), (138, 1, '80.00', '2017-10-17 18:42:57'), (139, 1, '80.00', '2017-10-17 18:43:06'), (140, 1, '86.00', '2017-10-17 18:43:16'), (141, 1, '83.00', '2017-10-17 18:43:25'), (142, 1, '73.00', '2017-10-17 18:43:35'), (143, 1, '63.00', '2017-10-17 18:43:44'), (144, 1, '68.00', '2017-10-17 18:43:54'), (145, 1, '93.00', '2017-10-17 18:44:03'), (146, 1, '96.00', '2017-10-17 18:44:12'), (147, 1, '83.00', '2017-10-17 18:44:21'), (148, 1, '74.00', '2017-10-17 18:44:31'), (149, 1, '93.00', '2017-10-17 18:44:41'), (150, 1, '94.00', '2017-10-17 18:44:50'), (151, 1, '83.00', '2017-10-17 18:44:59'), (152, 1, '93.00', '2017-10-17 18:45:09'), (153, 1, '60.00', '2017-10-17 18:45:18'), (154, 1, '83.00', '2017-10-17 18:45:27'), (155, 1, '97.00', '2017-10-17 18:45:36'), (156, 1, '74.00', '2017-10-17 18:45:46'), (157, 1, '91.00', '2017-10-17 18:45:55'), (158, 1, '60.00', '2017-10-17 18:46:04'), (159, 1, '99.00', '2017-10-17 18:46:13'), (160, 1, '82.00', '2017-10-17 18:46:22'), (161, 1, '62.00', '2017-10-17 18:46:32'), (162, 1, '86.00', '2017-10-17 18:46:41'), (163, 1, '95.00', '2017-10-17 18:46:50'), (164, 1, '67.00', '2017-10-17 18:46:59'), (165, 1, '72.00', '2017-10-17 18:47:08'), (166, 1, '84.00', '2017-10-17 18:47:18'), (167, 1, '73.00', '2017-10-17 18:47:27'), (168, 1, '77.00', '2017-10-17 18:47:36'), (169, 1, '76.00', '2017-10-17 18:47:45'), (170, 1, '77.00', '2017-10-17 18:47:54'), (171, 1, '71.00', '2017-10-17 18:48:03'), (172, 1, '60.00', '2017-10-17 18:48:13'), (173, 1, '89.00', '2017-10-17 18:48:23'), (174, 1, '68.00', '2017-10-17 18:48:32'), (175, 1, '63.00', '2017-10-17 18:48:42'), (176, 1, '63.00', '2017-10-17 18:48:51'), (177, 1, '92.00', '2017-10-17 18:49:00'), (178, 1, '91.00', '2017-10-17 18:49:10'), (179, 1, '96.00', '2017-10-17 18:49:19'), (180, 1, '97.00', '2017-10-17 18:49:28'), (181, 1, '63.00', '2017-10-17 18:49:37'), (182, 1, '65.00', '2017-10-17 18:49:46'), (183, 1, '91.00', '2017-10-17 18:49:55'), (184, 1, '64.00', '2017-10-17 18:50:05'), (185, 1, '92.00', '2017-10-17 18:50:14'), (186, 1, '95.00', '2017-10-17 18:50:23'), (187, 1, '86.00', '2017-10-17 18:50:32'), (188, 1, '66.00', '2017-10-17 18:50:42'), (189, 1, '75.00', '2017-10-17 18:50:52'), (190, 1, '67.00', '2017-10-17 18:51:01'), (191, 1, '69.00', '2017-10-17 18:51:11'), (192, 1, '82.00', '2017-10-17 18:51:21'), (193, 1, '88.00', '2017-10-17 18:51:30'), (194, 1, '61.00', '2017-10-17 18:51:40'), (195, 1, '78.00', '2017-10-17 18:51:49'), (196, 1, '67.00', '2017-10-17 18:51:58'), (197, 1, '60.00', '2017-10-17 18:52:08'), (198, 1, '98.00', '2017-10-17 18:52:17'), (199, 1, '99.00', '2017-10-17 18:52:27'), (200, 1, '77.00', '2017-10-17 18:52:36'), (201, 1, '77.00', '2017-10-17 18:52:45'), (202, 1, '64.00', '2017-10-17 18:52:55'), (203, 1, '77.00', '2017-10-17 18:53:04'), (204, 1, '76.00', '2017-10-17 18:53:14'), (205, 1, '95.00', '2017-10-17 18:53:23'), (206, 1, '72.00', '2017-10-17 18:53:33'), (207, 1, '93.00', '2017-10-17 18:53:42'), (208, 1, '95.00', '2017-10-17 18:53:51'), (209, 1, '96.00', '2017-10-17 18:54:01'), (210, 1, '78.00', '2017-10-17 18:54:10'), (211, 1, '89.00', '2017-10-17 18:54:19'), (212, 1, '72.00', '2017-10-17 18:54:29'), (213, 1, '95.00', '2017-10-17 18:54:38'), (214, 1, '68.00', '2017-10-17 18:54:48'), (215, 1, '89.00', '2017-10-17 18:54:57'), (216, 1, '61.00', '2017-10-17 18:55:07'), (217, 1, '80.00', '2017-10-17 18:55:16'), (218, 1, '88.00', '2017-10-17 18:55:25'), (219, 1, '84.00', '2017-10-17 18:55:34'), (220, 1, '66.00', '2017-10-17 18:55:44'), (221, 1, '88.00', '2017-10-17 18:55:53'), (222, 1, '66.00', '2017-10-17 18:56:02'), (223, 1, '83.00', '2017-10-17 18:56:12'), (224, 1, '75.00', '2017-10-17 18:56:21'), (225, 1, '99.00', '2017-10-17 18:56:31'), (226, 1, '76.00', '2017-10-17 18:56:40'), (227, 1, '82.00', '2017-10-17 18:56:49'), (228, 1, '84.00', '2017-10-17 18:56:59'), (229, 1, '69.00', '2017-10-17 18:57:08'), (230, 1, '86.00', '2017-10-17 18:57:17'), (231, 1, '66.00', '2017-10-17 18:57:27'), (232, 1, '61.00', '2017-10-17 18:57:36'), (233, 1, '71.00', '2017-10-17 18:57:46'), (234, 1, '91.00', '2017-10-17 18:57:55'), (235, 1, '67.00', '2017-10-17 18:58:04'), (236, 1, '77.00', '2017-10-17 18:58:13'), (237, 1, '85.00', '2017-10-17 18:58:22'), (238, 1, '83.00', '2017-10-17 18:58:32'), (239, 1, '86.00', '2017-10-17 18:58:41'), (240, 1, '79.00', '2017-10-17 18:58:50'), (241, 1, '94.00', '2017-10-17 18:59:00'), (242, 1, '68.00', '2017-10-17 18:59:09'), (243, 1, '65.00', '2017-10-17 18:59:18'), (244, 1, '68.00', '2017-10-17 18:59:27'), (245, 1, '67.00', '2017-10-17 18:59:36'), (246, 1, '85.00', '2017-10-17 18:59:46'), (247, 1, '60.00', '2017-10-17 18:59:55'), (248, 1, '82.00', '2017-10-17 19:00:04'), (249, 1, '63.00', '2017-10-17 19:00:13'), (250, 1, '64.00', '2017-10-17 19:00:22'), (251, 1, '95.00', '2017-10-17 19:00:32'), (252, 1, '73.00', '2017-10-17 19:00:41'), (253, 1, '92.00', '2017-10-17 19:00:50'), (254, 1, '76.00', '2017-10-17 19:00:59'), (255, 1, '66.00', '2017-10-17 19:01:08'), (256, 1, '96.00', '2017-10-17 19:01:17'), (257, 1, '78.00', '2017-10-17 19:01:27'), (258, 1, '64.00', '2017-10-17 19:01:36'), (259, 1, '96.00', '2017-10-17 19:01:45'), (260, 1, '88.00', '2017-10-17 19:01:54'), (261, 1, '67.00', '2017-10-17 19:02:04'), (262, 1, '70.00', '2017-10-17 19:02:14'), (263, 1, '82.00', '2017-10-17 19:02:23'), (264, 1, '94.00', '2017-10-17 19:02:32'), (265, 1, '78.00', '2017-10-17 19:02:42'), (266, 1, '78.00', '2017-10-17 19:02:51'), (267, 1, '77.00', '2017-10-17 19:03:00'), (268, 1, '80.00', '2017-10-17 19:03:09'), (269, 1, '74.00', '2017-10-17 19:03:18'), (270, 1, '69.00', '2017-10-17 19:03:27'), (271, 1, '79.00', '2017-10-17 19:03:37'), (272, 1, '91.00', '2017-10-17 19:03:46'), (273, 1, '98.00', '2017-10-17 19:03:56'), (274, 1, '74.00', '2017-10-17 19:04:05'), (275, 1, '81.00', '2017-10-17 19:04:14'), (276, 1, '71.00', '2017-10-17 19:04:24'), (277, 1, '71.00', '2017-10-17 19:04:33'), (278, 1, '61.00', '2017-10-17 19:04:43'), (279, 1, '96.00', '2017-10-17 19:04:53'), (280, 1, '67.00', '2017-10-17 19:05:02'), (281, 1, '67.00', '2017-10-17 19:05:11'), (282, 1, '61.00', '2017-10-17 19:05:21'), (283, 1, '94.00', '2017-10-17 19:05:30'), (284, 1, '67.00', '2017-10-17 19:05:40'), (285, 1, '68.00', '2017-10-17 19:05:49'), (286, 1, '88.00', '2017-10-17 19:05:58'), (287, 1, '88.00', '2017-10-17 19:06:07'), (288, 1, '66.00', '2017-10-17 19:06:16'), (289, 1, '91.00', '2017-10-17 19:06:26'), (290, 1, '62.00', '2017-10-17 19:06:35'), (291, 1, '84.00', '2017-10-17 19:06:44'), (292, 1, '69.00', '2017-10-17 19:06:53'), (293, 1, '79.00', '2017-10-17 19:07:02'), (294, 1, '79.00', '2017-10-17 19:07:12'), (295, 1, '78.00', '2017-10-17 19:07:22'), (296, 1, '80.00', '2017-10-17 19:07:31'), (297, 1, '69.00', '2017-10-17 19:07:41'), (298, 1, '96.00', '2017-10-17 19:07:50'), (299, 1, '96.00', '2017-10-17 19:07:59'), (300, 1, '87.00', '2018-05-28 13:51:46'), (301, 1, '60.00', '2018-05-28 13:51:55'), (302, 1, '74.00', '2018-05-28 13:52:03'), (303, 1, '85.00', '2018-05-28 13:52:12'), (304, 1, '87.00', '2018-05-28 13:52:21'), (305, 1, '93.00', '2018-05-28 13:52:30'), (306, 1, '65.00', '2018-05-28 13:52:40'), (307, 1, '71.00', '2018-05-28 13:52:49'), (308, 1, '99.00', '2018-05-28 13:52:58'), (309, 1, '89.00', '2018-05-28 13:53:07'), (310, 1, '99.00', '2018-05-28 13:53:16'), (311, 1, '94.00', '2018-05-28 13:53:25'), (312, 1, '72.00', '2018-05-28 13:53:34'), (313, 1, '63.00', '2018-05-28 13:53:43'), (314, 1, '61.00', '2018-05-28 13:53:52'), (315, 1, '84.00', '2018-05-28 13:54:01'), (316, 1, '60.00', '2018-05-28 13:54:10'), (317, 1, '64.00', '2018-05-28 13:54:19'), (318, 1, '75.00', '2018-05-28 13:54:28'), (319, 1, '90.00', '2018-05-28 13:54:37'), (320, 1, '92.00', '2018-05-28 13:54:46'), (321, 1, '98.00', '2018-05-28 13:54:55'), (322, 1, '67.00', '2018-05-28 13:55:04'), (323, 1, '65.00', '2018-05-28 13:55:13'), (324, 1, '85.00', '2018-05-28 13:55:22'), (325, 1, '81.00', '2018-05-28 13:55:31'), (326, 1, '89.00', '2018-05-28 13:55:40'), (327, 1, '77.00', '2018-05-28 13:55:49'), (328, 1, '75.00', '2018-05-28 13:55:58'), (329, 1, '66.00', '2018-05-28 13:56:07'), (330, 1, '94.00', '2018-05-28 13:56:16'), (331, 1, '62.00', '2018-05-28 13:56:25'), (332, 1, '73.00', '2018-05-28 13:56:34'), (333, 1, '66.00', '2018-05-28 13:56:43'), (334, 1, '92.00', '2018-05-28 13:56:52'), (335, 1, '94.00', '2018-05-28 13:57:02'), (336, 1, '99.00', '2018-05-28 13:57:11'), (337, 1, '85.00', '2018-05-28 13:57:20'), (338, 1, '79.00', '2018-05-28 13:57:29'), (339, 1, '62.00', '2018-05-28 13:57:38'), (340, 1, '88.00', '2018-05-28 13:57:47'), (341, 1, '67.00', '2018-05-28 13:57:56'), (342, 1, '68.00', '2018-05-28 13:58:05'), (343, 1, '63.00', '2018-05-28 13:58:14'), (344, 1, '81.00', '2018-05-28 13:58:23'), (345, 1, '85.00', '2018-05-28 13:58:32'), (346, 1, '81.00', '2018-05-28 13:58:41'), (347, 1, '99.00', '2018-05-28 13:58:50'), (348, 1, '65.00', '2018-05-28 13:58:59'), (349, 1, '90.00', '2018-05-28 13:59:08'), (350, 1, '77.00', '2018-05-28 13:59:17'), (351, 1, '96.00', '2018-05-28 13:59:26'), (352, 1, '97.00', '2018-05-28 13:59:35'), (353, 1, '89.00', '2018-05-28 13:59:44'), (354, 1, '70.00', '2018-05-28 13:59:53'), (355, 1, '95.00', '2018-05-28 14:00:02'), (356, 1, '86.00', '2018-05-28 14:00:11'), (357, 1, '93.00', '2018-05-28 14:00:20'), (358, 1, '68.00', '2018-05-28 14:00:29'), (359, 1, '62.00', '2018-05-28 14:00:38'), (360, 1, '62.00', '2018-05-28 14:00:47'), (361, 1, '80.00', '2018-05-28 14:00:56'), (362, 1, '73.00', '2018-05-28 14:01:05'), (363, 1, '96.00', '2018-05-28 14:01:14'), (364, 1, '99.00', '2018-05-28 14:01:23'), (365, 1, '73.00', '2018-05-28 14:01:32'), (366, 1, '90.00', '2018-05-28 14:01:41'), (367, 1, '94.00', '2018-05-28 14:01:50'), (368, 1, '62.00', '2018-05-28 14:01:59'), (369, 1, '99.00', '2018-05-28 14:02:08'), (370, 1, '66.00', '2018-05-28 14:02:16'), (371, 1, '90.00', '2018-05-28 14:02:25'), (372, 1, '61.00', '2018-05-28 14:02:34'), (373, 1, '84.00', '2018-05-28 14:02:43'), (374, 1, '62.00', '2018-05-28 14:02:52'), (375, 1, '82.00', '2018-05-28 14:03:01'), (376, 1, '96.00', '2018-05-28 14:03:10'), (377, 1, '89.00', '2018-05-28 14:03:19'), (378, 1, '61.00', '2018-05-28 14:03:28'), (379, 1, '82.00', '2018-05-28 14:03:37'), (380, 1, '65.00', '2018-05-28 14:03:46'), (381, 1, '88.00', '2018-05-28 14:03:55'), (382, 1, '63.00', '2018-05-28 14:04:04'), (383, 1, '95.00', '2018-05-28 14:04:13'), (384, 1, '98.00', '2018-05-28 14:04:23'), (385, 1, '75.00', '2018-05-28 14:04:32'), (386, 1, '72.00', '2018-05-28 14:04:41'), (387, 1, '90.00', '2018-05-28 14:04:50'), (388, 1, '89.00', '2018-05-28 14:04:58'), (389, 1, '95.00', '2018-05-28 14:05:07'), (390, 1, '95.00', '2018-05-28 14:05:17'), (391, 1, '61.00', '2018-05-28 14:05:26'), (392, 1, '99.00', '2018-05-28 14:05:34'), (393, 1, '98.00', '2018-05-28 14:05:43'), (394, 1, '95.00', '2018-05-28 14:05:52'), (395, 1, '85.00', '2018-05-28 14:06:01'), (396, 1, '63.00', '2018-05-28 14:06:10'), (397, 1, '88.00', '2018-05-28 14:06:19'), (398, 1, '92.00', '2018-05-28 14:06:28'), (399, 1, '68.00', '2018-05-28 14:06:37'), (400, 1, '64.00', '2018-05-28 14:06:46'), (401, 1, '84.00', '2018-05-28 14:06:55'), (402, 1, '68.00', '2018-05-28 14:07:04'), (403, 1, '96.00', '2018-05-28 14:07:13'), (404, 1, '93.00', '2018-05-28 14:07:22'), (405, 1, '88.00', '2018-05-28 14:07:31'), (406, 1, '83.00', '2018-05-28 14:07:40'), (407, 1, '70.00', '2018-05-28 14:07:49'), (408, 1, '97.00', '2018-05-28 14:07:58'), (409, 1, '73.00', '2018-05-28 14:08:07'), (410, 1, '72.00', '2018-05-28 14:08:16'), (411, 1, '93.00', '2018-05-28 14:08:25'), (412, 1, '85.00', '2018-05-28 14:08:34'), (413, 1, '95.00', '2018-05-28 14:08:43'), (414, 1, '73.00', '2018-05-28 14:08:52'), (415, 1, '93.00', '2018-05-28 14:09:01'), (416, 1, '71.00', '2018-05-28 14:09:10'), (417, 1, '67.00', '2018-05-28 14:09:19'), (418, 1, '88.00', '2018-05-28 14:09:28'), (419, 1, '60.00', '2018-05-28 14:09:37'), (420, 1, '62.00', '2018-05-28 14:09:46'), (421, 1, '64.00', '2018-05-28 14:09:56'), (422, 1, '85.00', '2018-05-28 14:10:05'), (423, 1, '61.00', '2018-05-28 14:10:14'), (424, 1, '70.00', '2018-05-28 14:10:23'), (425, 1, '94.00', '2018-05-28 14:10:32'), (426, 1, '90.00', '2018-05-28 14:10:41'), (427, 1, '81.00', '2018-05-28 14:10:50'), (428, 1, '83.00', '2018-05-28 14:10:59'), (429, 1, '73.00', '2018-05-28 14:11:08'), (430, 1, '65.00', '2018-05-28 14:11:17'), (431, 1, '91.00', '2018-05-28 14:11:26'), (432, 1, '72.00', '2018-05-28 14:11:35'), (433, 1, '67.00', '2018-05-28 14:11:44'), (434, 1, '74.00', '2018-05-28 14:11:53'), (435, 1, '81.00', '2018-05-28 14:12:02'), (436, 1, '65.00', '2018-05-28 14:12:11'), (437, 1, '79.00', '2018-05-28 14:12:20'), (438, 1, '64.00', '2018-05-28 14:12:28'), (439, 1, '96.00', '2018-05-28 14:12:37'), (440, 1, '86.00', '2018-05-28 14:12:46'), (441, 1, '73.00', '2018-05-28 14:12:55'), (442, 1, '78.00', '2018-05-28 14:13:05'), (443, 1, '70.00', '2018-05-28 14:13:14'), (444, 1, '95.00', '2018-05-28 14:13:23'), (445, 1, '84.00', '2018-05-28 14:13:32'), (446, 1, '92.00', '2018-05-28 14:13:41'), (447, 1, '91.00', '2018-05-28 14:13:50'), (448, 1, '94.00', '2018-05-28 14:13:58'), (449, 1, '95.00', '2018-05-28 14:14:08'), (450, 1, '80.00', '2018-05-28 14:14:17'), (451, 1, '82.00', '2018-05-28 14:14:26'), (452, 1, '89.00', '2018-05-28 14:14:37'), (453, 1, '68.00', '2018-05-28 14:14:46'), (454, 1, '88.00', '2018-05-28 14:14:55'), (455, 1, '77.00', '2018-05-28 14:15:04'), (456, 1, '64.00', '2018-05-28 14:15:13'), (457, 1, '87.00', '2018-05-28 14:15:22'), (458, 1, '91.00', '2018-05-28 14:15:31'), (459, 1, '77.00', '2018-05-28 14:15:40'), (460, 1, '66.00', '2018-05-28 14:15:49'), (461, 1, '86.00', '2018-05-28 14:15:58'), (462, 1, '96.00', '2018-05-28 14:16:07'), (463, 1, '77.00', '2018-05-28 14:16:16'), (464, 1, '92.00', '2018-05-28 14:16:25'), (465, 1, '85.00', '2018-05-28 14:16:34'), (466, 1, '89.00', '2018-05-28 14:16:43'), (467, 1, '65.00', '2018-05-28 14:16:52'), (468, 1, '77.00', '2018-05-28 14:17:01'), (469, 1, '87.00', '2018-05-28 14:17:10'), (470, 1, '99.00', '2018-05-28 14:17:19'), (471, 1, '96.00', '2018-05-28 14:17:28'), (472, 1, '93.00', '2018-05-28 14:17:37'), (473, 1, '80.00', '2018-05-28 14:17:46'), (474, 1, '80.00', '2018-05-28 14:17:55'), (475, 1, '63.00', '2018-05-28 14:18:04'), (476, 1, '70.00', '2018-05-28 14:18:13'), (477, 1, '72.00', '2018-05-28 14:18:22'), (478, 1, '82.00', '2018-05-28 14:18:31'), (479, 1, '63.00', '2018-05-28 14:18:40'), (480, 1, '85.00', '2018-05-28 14:18:49'), (481, 1, '82.00', '2018-05-28 14:18:58'), (482, 1, '78.00', '2018-05-28 14:19:07'), (483, 1, '76.00', '2018-05-28 14:19:16'), (484, 1, '67.00', '2018-05-28 14:19:25'), (485, 1, '67.00', '2018-05-28 14:19:34'), (486, 1, '67.00', '2018-05-28 14:19:43'), (487, 1, '93.00', '2018-05-28 14:19:52'), (488, 1, '63.00', '2018-05-28 14:20:01'), (489, 1, '85.00', '2018-05-28 14:20:10'), (490, 1, '80.00', '2018-05-28 14:20:19'), (491, 1, '60.00', '2018-05-28 14:20:28'), (492, 1, '78.00', '2018-05-28 14:20:37'), (493, 1, '90.00', '2018-05-28 14:20:46'), (494, 1, '96.00', '2018-05-28 14:20:54'), (495, 1, '66.00', '2018-05-28 14:21:03'), (496, 1, '97.00', '2018-05-28 14:21:12'), (497, 1, '71.00', '2018-05-28 14:21:21'), (498, 1, '79.00', '2018-05-28 14:21:30'), (499, 1, '83.00', '2018-05-28 14:21:39'), (500, 1, '77.00', '2018-05-28 14:21:48'), (501, 1, '66.00', '2018-05-28 14:21:57'), (502, 1, '98.00', '2018-05-28 14:22:06'), (503, 1, '84.00', '2018-05-28 14:22:15'), (504, 1, '75.00', '2018-05-28 14:22:24'), (505, 1, '88.00', '2018-05-28 14:22:33'), (506, 1, '66.00', '2018-05-28 14:22:42'), (507, 1, '62.00', '2018-05-28 14:22:51'), (508, 1, '86.00', '2018-05-28 14:23:00'), (509, 1, '89.00', '2018-05-28 14:23:09'), (510, 1, '94.00', '2018-05-28 14:23:18'), (511, 1, '76.00', '2018-05-28 14:23:27'), (512, 1, '79.00', '2018-05-28 14:23:36'), (513, 1, '63.00', '2018-05-28 14:23:44'), (514, 1, '78.00', '2018-05-28 14:23:53'), (515, 1, '87.00', '2018-05-28 14:24:02'), (516, 1, '88.00', '2018-05-28 14:24:11'), (517, 1, '67.00', '2018-05-28 14:24:20'), (518, 1, '96.00', '2018-05-28 14:24:29'), (519, 1, '96.00', '2018-05-28 14:24:38'), (520, 1, '70.00', '2018-05-28 14:24:47'), (521, 1, '99.00', '2018-05-28 14:24:56'), (522, 1, '95.00', '2018-05-28 14:25:05'), (523, 1, '97.00', '2018-05-28 14:25:14'), (524, 1, '70.00', '2018-05-28 14:25:23'), (525, 1, '69.00', '2018-05-28 14:25:32'), (526, 1, '73.00', '2018-05-28 14:25:41'), (527, 1, '76.00', '2018-05-28 14:25:50'), (528, 1, '97.00', '2018-05-28 14:25:59'), (529, 1, '89.00', '2018-05-28 14:26:08'), (530, 1, '62.00', '2018-05-28 14:26:17'), (531, 1, '99.00', '2018-05-28 14:26:25'), (532, 1, '74.00', '2018-05-28 14:26:34'), (533, 1, '97.00', '2018-05-28 14:26:43'), (534, 1, '60.00', '2018-05-28 14:26:52'), (535, 1, '72.00', '2018-05-28 14:27:01'), (536, 1, '69.00', '2018-05-28 14:27:10'), (537, 1, '90.00', '2018-05-28 14:27:19'), (538, 1, '74.00', '2018-05-28 14:27:28'), (539, 1, '74.00', '2018-05-28 14:27:37'), (540, 1, '90.00', '2018-05-28 14:27:46'), (541, 1, '88.00', '2018-05-28 14:27:55'), (542, 1, '68.00', '2018-05-28 14:28:04'), (543, 1, '68.00', '2018-05-28 14:28:13'), (544, 1, '97.00', '2018-05-28 14:28:22'), (545, 1, '93.00', '2018-05-28 14:28:31'), (546, 1, '80.00', '2018-05-28 14:28:40'), (547, 1, '97.00', '2018-05-28 14:28:49'), (548, 1, '96.00', '2018-05-28 14:28:58'), (549, 1, '67.00', '2018-05-28 14:29:07'), (550, 1, '99.00', '2018-05-28 14:29:16'), (551, 1, '80.00', '2018-05-28 14:29:25'), (552, 1, '70.00', '2018-05-28 14:29:34'), (553, 1, '70.00', '2018-05-28 14:29:43'), (554, 1, '93.00', '2018-05-28 14:29:52'), (555, 1, '66.00', '2018-05-28 14:30:01'), (556, 1, '91.00', '2018-05-28 14:30:10'), (557, 1, '97.00', '2018-05-28 14:30:19'), (558, 1, '94.00', '2018-05-28 14:30:28'), (559, 1, '81.00', '2018-05-28 14:30:37'), (560, 1, '78.00', '2018-05-28 14:30:46'), (561, 1, '67.00', '2018-05-28 14:30:55'), (562, 1, '87.00', '2018-05-28 14:31:04'), (563, 1, '60.00', '2018-05-28 14:31:13'), (564, 1, '74.00', '2018-05-28 14:31:22'), (565, 1, '71.00', '2018-05-28 14:31:31'), (566, 1, '80.00', '2018-05-28 14:31:40'), (567, 1, '71.00', '2018-05-28 14:31:49'), (568, 1, '96.00', '2018-05-28 14:31:58'), (569, 1, '78.00', '2018-05-28 14:32:07'), (570, 1, '67.00', '2018-05-28 14:32:16'), (571, 1, '93.00', '2018-05-28 14:32:25'), (572, 1, '94.00', '2018-05-28 14:32:34'), (573, 1, '95.00', '2018-05-28 14:32:43'), (574, 1, '67.00', '2018-05-28 14:32:52'), (575, 1, '61.00', '2018-05-28 14:33:01'), (576, 1, '88.00', '2018-05-28 14:33:10'), (577, 1, '61.00', '2018-05-28 14:33:19'), (578, 1, '81.00', '2018-05-28 14:33:28'), (579, 1, '78.00', '2018-05-28 14:33:36'), (580, 1, '82.00', '2018-05-28 14:33:46'), (581, 1, '85.00', '2018-05-28 14:33:55'), (582, 1, '70.00', '2018-05-28 14:34:04'), (583, 1, '83.00', '2018-05-28 14:34:13'), (584, 1, '86.00', '2018-05-28 14:34:22'), (585, 1, '97.00', '2018-05-28 14:34:31'), (586, 1, '83.00', '2018-05-28 14:34:40'), (587, 1, '86.00', '2018-05-28 14:34:49'), (588, 1, '63.00', '2018-05-28 14:34:58'), (589, 1, '95.00', '2018-05-28 14:35:06'), (590, 1, '73.00', '2018-05-28 14:35:15'), (591, 1, '83.00', '2018-05-28 14:35:24'), (592, 1, '89.00', '2018-05-28 14:35:33'), (593, 1, '91.00', '2018-05-28 14:35:42'), (594, 1, '81.00', '2018-05-28 14:35:52'), (595, 1, '71.00', '2018-05-28 14:36:00'), (596, 1, '91.00', '2018-05-28 14:36:09'), (597, 1, '68.00', '2018-05-28 14:36:19'), (598, 1, '98.00', '2018-05-28 14:36:27'), (599, 1, '96.00', '2018-05-28 14:36:36'), (600, 1, '91.00', '2018-05-28 14:36:45'), (601, 1, '84.00', '2018-05-28 14:36:54'), (602, 1, '82.00', '2018-05-28 14:37:03'), (603, 1, '82.00', '2018-05-28 14:37:12'), (604, 1, '83.00', '2018-05-28 14:37:21'), (605, 1, '91.00', '2018-05-28 14:37:30'), (606, 1, '64.00', '2018-05-28 14:37:39'), (607, 1, '78.00', '2018-05-28 14:37:48'), (608, 1, '88.00', '2018-05-28 14:37:57'), (609, 1, '85.00', '2018-05-28 14:38:06'), (610, 1, '93.00', '2018-05-28 14:39:45'), (611, 1, '64.00', '2018-05-28 14:39:54'), (612, 1, '79.00', '2018-05-28 14:40:03'), (613, 1, '97.00', '2018-05-28 14:40:12'), (614, 1, '77.00', '2018-05-28 14:40:20'), (615, 1, '76.00', '2018-05-28 14:40:21'), (616, 1, '87.00', '2018-05-28 14:40:30'), (617, 1, '70.00', '2018-05-28 14:40:39'), (618, 1, '61.00', '2018-05-28 14:40:48'), (619, 1, '82.00', '2018-05-28 14:40:57'), (620, 1, '91.00', '2018-05-28 14:41:06'), (621, 1, '67.00', '2018-05-28 14:41:15'), (622, 1, '61.00', '2018-05-28 14:41:24'), (623, 1, '81.00', '2018-05-28 14:41:33'), (624, 1, '92.00', '2018-05-28 14:41:42'), (625, 1, '89.00', '2018-05-28 14:41:51'), (626, 1, '89.00', '2018-05-28 14:42:00'), (627, 1, '66.00', '2018-05-28 14:42:08'), (628, 1, '68.00', '2018-05-28 14:42:17'), (629, 1, '71.00', '2018-05-28 14:42:26'), (630, 1, '96.00', '2018-05-28 14:42:35'), (631, 1, '60.00', '2018-05-28 14:42:44'), (632, 1, '88.00', '2018-05-28 14:42:53'), (633, 1, '74.00', '2018-05-28 14:43:02'), (634, 1, '88.00', '2018-05-28 14:43:11'), (635, 1, '97.00', '2018-05-28 14:43:20'), (636, 1, '91.00', '2018-05-28 14:43:29'), (637, 1, '80.00', '2018-05-28 14:43:38'), (638, 1, '94.00', '2018-05-28 14:43:47'), (639, 1, '80.00', '2018-05-28 14:43:56'), (640, 1, '83.00', '2018-05-28 14:44:05'), (641, 1, '62.00', '2018-05-28 14:44:14'), (642, 1, '91.00', '2018-05-28 14:44:23'), (643, 1, '72.00', '2018-05-28 14:44:32'), (644, 1, '61.00', '2018-05-28 14:44:41'), (645, 1, '94.00', '2018-05-28 14:44:50'), (646, 1, '90.00', '2018-05-28 14:44:59'), (647, 1, '69.00', '2018-05-28 14:45:08'), (648, 1, '63.00', '2018-05-28 14:45:17'), (649, 1, '83.00', '2018-05-28 14:45:26'), (650, 1, '92.00', '2018-05-28 14:45:34'), (651, 1, '60.00', '2018-05-28 14:45:43'), (652, 1, '88.00', '2018-05-28 14:45:52'), (653, 1, '78.00', '2018-05-28 14:46:01'), (654, 1, '80.00', '2018-05-28 14:46:10'), (655, 1, '93.00', '2018-05-28 14:46:19'), (656, 1, '88.00', '2018-05-28 14:46:28'), (657, 1, '78.00', '2018-05-28 14:46:37'), (658, 1, '74.00', '2018-05-28 14:46:46'), (659, 1, '68.00', '2018-05-28 14:46:55'), (660, 1, '85.00', '2018-05-28 14:47:04'), (661, 1, '72.00', '2018-05-28 14:47:13'), (662, 1, '87.00', '2018-05-28 14:47:22'), (663, 1, '94.00', '2018-05-28 14:47:31'), (664, 1, '94.00', '2018-05-28 14:47:40'), (665, 1, '87.00', '2018-05-28 14:47:49'), (666, 1, '91.00', '2018-05-28 14:47:58'), (667, 1, '90.00', '2018-05-28 14:48:07'), (668, 1, '76.00', '2018-05-28 14:48:16'), (669, 1, '80.00', '2018-05-28 14:48:24'), (670, 1, '91.00', '2018-05-28 14:48:33'), (671, 1, '96.00', '2018-05-28 14:48:42'), (672, 1, '87.00', '2018-05-28 14:48:51'), (673, 1, '84.00', '2018-05-28 14:49:00'), (674, 1, '91.00', '2018-05-28 14:49:09'), (675, 1, '69.00', '2018-05-28 14:49:18'), (676, 1, '78.00', '2018-05-28 14:49:27'), (677, 1, '88.00', '2018-05-28 14:49:36'), (678, 1, '73.00', '2018-05-28 14:49:45'), (679, 1, '89.00', '2018-05-28 14:49:54'), (680, 1, '84.00', '2018-05-28 14:50:03'), (681, 1, '76.00', '2018-05-28 14:50:12'), (682, 1, '65.00', '2018-05-28 14:50:21'), (683, 1, '64.00', '2018-05-28 14:50:30'), (684, 1, '74.00', '2018-05-28 14:50:39'), (685, 1, '63.00', '2018-05-28 14:50:48'), (686, 1, '85.00', '2018-05-28 14:50:57'), (687, 1, '76.00', '2018-05-28 14:51:06'), (688, 1, '98.00', '2018-05-28 14:51:15'), (689, 1, '99.00', '2018-05-28 14:51:24'), (690, 1, '98.00', '2018-05-28 14:51:33'), (691, 1, '89.00', '2018-05-28 14:51:42'), (692, 1, '74.00', '2018-05-28 14:51:51'), (693, 1, '72.00', '2018-05-28 14:52:00'), (694, 1, '84.00', '2018-05-28 14:52:09'), (695, 1, '67.00', '2018-05-28 14:52:18'), (696, 1, '84.00', '2018-05-28 14:52:27'), (697, 1, '90.00', '2018-05-28 14:52:36'), (698, 1, '66.00', '2018-05-28 14:52:45'), (699, 1, '63.00', '2018-05-28 14:52:54'), (700, 1, '94.00', '2018-05-28 14:53:03'), (701, 1, '80.00', '2018-05-28 14:53:12'), (702, 1, '94.00', '2018-05-28 14:53:21'), (703, 1, '78.00', '2018-05-28 14:53:30'), (704, 1, '60.00', '2018-05-28 14:53:38'), (705, 1, '67.00', '2018-05-28 14:53:47'), (706, 1, '60.00', '2018-05-28 14:53:56'), (707, 1, '60.00', '2018-05-28 14:54:05'), (708, 1, '98.00', '2018-05-28 14:54:14'), (709, 1, '81.00', '2018-05-28 14:54:23'), (710, 1, '86.00', '2018-05-28 14:54:32'), (711, 1, '94.00', '2018-05-28 14:54:41'), (712, 1, '70.00', '2018-05-28 14:54:50'), (713, 1, '89.00', '2018-05-28 14:54:59'), (714, 1, '76.00', '2018-05-28 14:55:08'), (715, 1, '68.00', '2018-05-28 14:55:17'), (716, 1, '75.00', '2018-05-28 14:55:26'), (717, 1, '95.00', '2018-05-28 14:55:35'), (718, 1, '88.00', '2018-05-28 14:55:44'), (719, 1, '82.00', '2018-05-28 14:55:53'), (720, 1, '87.00', '2018-05-28 14:56:02'), (721, 1, '79.00', '2018-05-28 14:56:11'), (722, 1, '60.00', '2018-05-28 14:56:20'), (723, 1, '96.00', '2018-05-28 14:56:29'), (724, 1, '92.00', '2018-05-28 14:56:38'), (725, 1, '93.00', '2018-05-28 14:56:47'), (726, 1, '71.00', '2018-05-28 14:56:56'), (727, 1, '70.00', '2018-05-28 14:57:05'), (728, 1, '62.00', '2018-05-28 14:57:14'), (729, 1, '75.00', '2018-05-28 14:57:23'), (730, 1, '77.00', '2018-05-28 14:57:32'), (731, 1, '94.00', '2018-05-28 14:57:41'), (732, 1, '89.00', '2018-05-28 14:57:50'), (733, 1, '61.00', '2018-05-28 14:57:59'), (734, 1, '94.00', '2018-05-28 14:58:08'), (735, 1, '83.00', '2018-05-28 14:58:17'), (736, 1, '90.00', '2018-05-28 14:58:26'), (737, 1, '75.00', '2018-05-28 14:58:35'), (738, 1, '77.00', '2018-05-28 14:58:43'), (739, 1, '95.00', '2018-05-28 14:58:52'), (740, 1, '70.00', '2018-05-28 14:59:01'), (741, 1, '99.00', '2018-05-28 14:59:10'), (742, 1, '64.00', '2018-05-28 14:59:20'), (743, 1, '78.00', '2018-05-28 14:59:29'), (744, 1, '60.00', '2018-05-28 14:59:38'), (745, 1, '76.00', '2018-05-28 14:59:47'), (746, 1, '92.00', '2018-05-28 14:59:56'), (747, 1, '99.00', '2018-05-28 15:00:05'), (748, 1, '95.00', '2018-05-28 15:00:14'), (749, 1, '87.00', '2018-05-28 15:00:23'), (750, 1, '92.00', '2018-05-28 15:00:32'), (751, 1, '76.00', '2018-05-28 15:00:41'), (752, 1, '63.00', '2018-05-28 15:00:49'), (753, 1, '73.00', '2018-05-28 15:00:59'), (754, 1, '96.00', '2018-05-28 15:01:08'), (755, 1, '85.00', '2018-05-28 15:01:17'), (756, 1, '74.00', '2018-05-28 15:01:25'), (757, 1, '64.00', '2018-05-28 15:01:34'), (758, 1, '60.00', '2018-05-28 15:01:43'), (759, 1, '65.00', '2018-05-28 15:01:52'), (760, 1, '99.00', '2018-05-28 15:02:01'), (761, 1, '73.00', '2018-05-28 15:02:10'), (762, 1, '78.00', '2018-05-28 15:02:19'), (763, 1, '86.00', '2018-05-28 15:02:28'), (764, 1, '68.00', '2018-05-28 15:02:37'), (765, 1, '66.00', '2018-05-28 15:02:46'), (766, 1, '60.00', '2018-05-28 15:02:55'), (767, 1, '61.00', '2018-05-28 15:03:04'), (768, 1, '71.00', '2018-05-28 15:03:13'), (769, 1, '88.00', '2018-05-28 15:03:22'), (770, 1, '88.00', '2018-05-28 15:03:31'), (771, 1, '95.00', '2018-05-28 15:03:40'), (772, 1, '61.00', '2018-05-28 15:03:49'), (773, 1, '98.00', '2018-05-28 15:03:58'), (774, 1, '62.00', '2018-05-28 15:04:07'), (775, 1, '66.00', '2018-05-28 15:04:16'), (776, 1, '92.00', '2018-05-28 15:04:25'), (777, 1, '96.00', '2018-05-28 15:04:34'), (778, 1, '80.00', '2018-05-28 15:04:43'), (779, 1, '96.00', '2018-05-28 15:04:52'), (780, 1, '89.00', '2018-05-28 15:05:01'), (781, 1, '81.00', '2018-05-28 15:05:10'), (782, 1, '90.00', '2018-05-28 15:05:19'), (783, 1, '85.00', '2018-05-28 15:05:28'), (784, 1, '66.00', '2018-05-28 15:05:37'), (785, 1, '68.00', '2018-05-28 15:05:46'), (786, 1, '66.00', '2018-05-28 15:05:55'), (787, 1, '79.00', '2018-05-28 15:06:03'), (788, 1, '77.00', '2018-05-28 15:06:13'), (789, 1, '96.00', '2018-05-28 15:06:22'), (790, 1, '77.00', '2018-05-28 15:06:30'), (791, 1, '70.00', '2018-05-28 15:06:39'), (792, 1, '93.00', '2018-05-28 15:06:48'), (793, 1, '91.00', '2018-05-28 15:06:57'), (794, 1, '61.00', '2018-05-28 15:07:06'), (795, 1, '61.00', '2018-05-28 15:07:15'), (796, 1, '98.00', '2018-05-28 15:07:24'), (797, 1, '88.00', '2018-05-28 15:07:33'), (798, 1, '94.00', '2018-05-28 15:07:42'), (799, 1, '62.00', '2018-05-28 15:07:51'), (800, 1, '76.00', '2018-05-28 15:08:00'), (801, 1, '82.00', '2018-05-28 15:08:09'), (802, 1, '77.00', '2018-05-28 15:08:18'), (803, 1, '89.00', '2018-05-28 15:08:27'), (804, 1, '88.00', '2018-05-28 15:08:36'), (805, 1, '76.00', '2018-05-28 15:08:45'), (806, 1, '62.00', '2018-05-28 15:08:54'), (807, 1, '67.00', '2018-05-28 15:09:03'), (808, 1, '76.00', '2018-05-28 15:09:12'), (809, 1, '70.00', '2018-05-28 15:09:21'), (810, 1, '74.00', '2018-05-28 15:09:30'), (811, 1, '72.00', '2018-05-28 15:09:39'), (812, 1, '70.00', '2018-05-28 15:09:48'), (813, 1, '70.00', '2018-05-28 15:09:57'), (814, 1, '60.00', '2018-05-28 15:10:06'), (815, 1, '83.00', '2018-05-28 15:10:15'), (816, 1, '93.00', '2018-05-28 15:10:24'), (817, 1, '97.00', '2018-05-28 15:10:33'), (818, 1, '86.00', '2018-05-28 15:10:42'), (819, 1, '77.00', '2018-05-28 15:10:50'), (820, 1, '92.00', '2018-05-28 15:10:59'), (821, 1, '71.00', '2018-05-28 15:11:08'), (822, 1, '88.00', '2018-05-28 15:11:17'), (823, 1, '72.00', '2018-05-28 15:11:26'), (824, 1, '79.00', '2018-05-28 15:11:35'), (825, 1, '62.00', '2018-05-28 15:11:44'), (826, 1, '96.00', '2018-05-28 15:11:53'), (827, 1, '73.00', '2018-05-28 15:12:02'), (828, 1, '74.00', '2018-05-28 15:12:11'), (829, 1, '97.00', '2018-05-28 15:12:20'), (830, 1, '86.00', '2018-05-28 15:12:29'), (831, 1, '98.00', '2018-05-28 15:12:38'), (832, 1, '85.00', '2018-05-28 15:12:47'), (833, 1, '70.00', '2018-05-28 15:12:56'), (834, 1, '91.00', '2018-05-28 15:13:05'), (835, 1, '96.00', '2018-05-28 15:13:14'), (836, 1, '96.00', '2018-05-28 15:13:23'), (837, 1, '91.00', '2018-05-28 15:13:32'), (838, 1, '93.00', '2018-05-28 15:13:41'), (839, 1, '72.00', '2018-05-28 15:13:50'), (840, 1, '70.00', '2018-05-28 15:13:59'), (841, 1, '67.00', '2018-05-28 15:14:08'), (842, 1, '63.00', '2018-05-28 15:14:17'), (843, 1, '64.00', '2018-05-28 15:14:26'), (844, 1, '90.00', '2018-05-28 15:14:35'), (845, 1, '83.00', '2018-05-28 15:14:44'), (846, 1, '88.00', '2018-05-28 15:14:53'), (847, 1, '70.00', '2018-05-28 15:15:02'), (848, 1, '90.00', '2018-05-28 15:15:11'), (849, 1, '69.00', '2018-05-28 15:15:20'), (850, 1, '99.00', '2018-05-28 15:15:29'), (851, 1, '63.00', '2018-05-28 15:15:38'), (852, 1, '86.00', '2018-05-28 15:15:47'), (853, 1, '90.00', '2018-05-28 15:15:56'), (854, 1, '61.00', '2018-05-28 15:16:05'), (855, 1, '90.00', '2018-05-28 15:16:15'), (856, 1, '65.00', '2018-05-28 15:16:24'), (857, 1, '93.00', '2018-05-28 15:16:33'), (858, 1, '97.00', '2018-05-28 15:16:42'), (859, 1, '90.00', '2018-05-28 15:16:51'), (860, 1, '70.00', '2018-05-28 15:17:00'), (861, 1, '97.00', '2018-05-28 15:17:08'), (862, 1, '99.00', '2018-05-28 15:17:17'), (863, 1, '85.00', '2018-05-28 15:17:26'), (864, 1, '76.00', '2018-05-28 15:17:35'), (865, 1, '92.00', '2018-05-28 15:17:44'), (866, 1, '96.00', '2018-05-28 15:17:53'), (867, 1, '63.00', '2018-05-28 15:18:02'), (868, 1, '98.00', '2018-05-28 15:18:11'), (869, 1, '93.00', '2018-05-28 15:18:20'), (870, 1, '86.00', '2018-05-28 15:18:29'), (871, 1, '63.00', '2018-05-28 15:18:38'), (872, 1, '86.00', '2018-05-28 15:18:47'), (873, 1, '60.00', '2018-05-28 15:18:56'), (874, 1, '90.00', '2018-05-28 15:19:05'), (875, 1, '96.00', '2018-05-28 15:19:14'), (876, 1, '90.00', '2018-05-28 15:19:23'), (877, 1, '73.00', '2018-05-28 15:19:32'), (878, 1, '81.00', '2018-05-28 15:19:41'), (879, 1, '66.00', '2018-05-28 15:19:50'), (880, 1, '87.00', '2018-05-28 15:19:59'), (881, 1, '98.00', '2018-05-28 15:20:08'), (882, 1, '87.00', '2018-05-28 15:20:17'), (883, 1, '73.00', '2018-05-28 15:20:26'), (884, 1, '61.00', '2018-05-28 15:20:35'), (885, 1, '88.00', '2018-05-28 15:20:44'), (886, 1, '90.00', '2018-05-28 15:20:53'), (887, 1, '64.00', '2018-05-28 15:21:02'), (888, 1, '74.00', '2018-05-28 15:21:11'), (889, 1, '92.00', '2018-05-28 15:21:20'), (890, 1, '88.00', '2018-05-28 15:21:30'), (891, 1, '74.00', '2018-05-28 15:21:39'), (892, 1, '71.00', '2018-05-28 15:21:53'), (893, 1, '97.00', '2018-05-28 15:22:09'), (894, 1, '92.00', '2018-05-28 15:22:26'), (895, 1, '87.00', '2018-05-28 15:22:38'), (896, 1, '99.00', '2018-05-28 15:22:48'), (897, 1, '79.00', '2018-05-28 15:22:59'), (898, 1, '86.00', '2018-05-28 15:23:11'), (899, 1, '73.00', '2018-05-28 15:23:26'), (900, 1, '99.00', '2018-05-28 15:23:35'), (901, 1, '92.00', '2018-05-28 15:23:50'), (902, 1, '63.00', '2018-05-28 15:24:01'), (903, 1, '78.00', '2018-05-28 15:24:12'), (904, 1, '77.00', '2018-05-28 15:24:27'), (905, 1, '64.00', '2018-05-28 15:24:39'), (906, 1, '90.00', '2018-05-28 15:24:48'), (907, 1, '85.00', '2018-05-28 15:25:04'), (908, 1, '94.00', '2018-05-28 15:25:15'), (909, 1, '70.00', '2018-05-28 15:25:26'), (910, 1, '72.00', '2018-05-28 15:25:35'), (911, 1, '64.00', '2018-05-28 15:25:58'), (912, 1, '73.00', '2018-05-28 15:26:10'), (913, 1, '72.00', '2018-05-28 15:26:22'), (914, 1, '90.00', '2018-05-28 15:26:33'), (915, 1, '94.00', '2018-05-28 15:26:47'), (916, 1, '71.00', '2018-05-28 15:26:58'), (917, 1, '88.00', '2018-05-28 15:27:14'), (918, 1, '68.00', '2018-05-28 15:27:25'), (919, 1, '62.00', '2018-05-28 15:27:36'), (920, 1, '95.00', '2018-05-28 15:27:48'), (921, 1, '64.00', '2018-05-28 15:27:58'), (922, 1, '60.00', '2018-05-28 15:28:07'), (923, 1, '97.00', '2018-05-28 15:28:20'), (924, 1, '85.00', '2018-05-28 15:28:33'), (925, 1, '78.00', '2018-05-28 15:28:43'), (926, 1, '98.00', '2018-05-28 15:28:52'), (927, 1, '62.00', '2018-05-28 15:29:03'), (928, 1, '95.00', '2018-05-28 15:29:12'), (929, 1, '87.00', '2018-05-28 15:29:25'), (930, 1, '64.00', '2018-05-28 15:29:34'), (931, 1, '66.00', '2018-05-28 15:29:48'), (932, 1, '69.00', '2018-05-28 15:29:58'), (933, 1, '83.00', '2018-05-28 15:30:07'), (934, 1, '95.00', '2018-05-28 15:30:20'), (935, 1, '85.00', '2018-05-28 15:30:30'), (936, 1, '71.00', '2018-05-28 15:30:44'), (937, 1, '77.00', '2018-05-28 15:30:53'), (938, 1, '72.00', '2018-05-28 15:31:02'), (939, 1, '60.00', '2018-05-28 15:31:11'), (940, 1, '64.00', '2018-05-28 15:31:20'), (941, 1, '64.00', '2018-05-28 15:31:29'), (942, 1, '69.00', '2018-05-28 15:31:38'), (943, 1, '97.00', '2018-05-28 15:31:47'), (944, 1, '79.00', '2018-05-28 15:31:56'), (945, 1, '95.00', '2018-05-28 15:32:05'), (946, 1, '97.00', '2018-05-28 15:32:14'), (947, 1, '64.00', '2018-05-28 15:32:23'), (948, 1, '66.00', '2018-05-28 15:32:32'), (949, 1, '71.00', '2018-05-28 15:32:41'), (950, 1, '81.00', '2018-05-28 15:32:50'), (951, 1, '63.00', '2018-05-28 15:32:59'), (952, 1, '80.00', '2018-05-28 15:33:08'), (953, 1, '74.00', '2018-05-28 15:33:17'), (954, 1, '64.00', '2018-05-28 15:33:26'), (955, 1, '76.00', '2018-05-28 15:33:35'), (956, 1, '93.00', '2018-05-28 15:33:44'), (957, 1, '79.00', '2018-05-28 15:33:53'), (958, 1, '67.00', '2018-05-28 15:34:02'), (959, 1, '96.00', '2018-05-28 15:34:11'), (960, 1, '84.00', '2018-05-28 15:34:20'), (961, 1, '62.00', '2018-05-28 15:35:02'), (962, 1, '92.00', '2018-05-28 15:35:31'), (963, 1, '85.00', '2018-05-28 15:35:42'), (964, 1, '75.00', '2018-05-28 15:36:10'), (965, 1, '88.00', '2018-05-28 15:36:22'), (966, 1, '76.00', '2018-05-28 15:36:42'), (967, 1, '74.00', '2018-05-28 15:36:56'), (968, 1, '87.00', '2018-05-28 15:37:08'), (969, 1, '62.00', '2018-05-28 15:37:19'), (970, 1, '69.00', '2018-05-28 15:37:29'), (971, 1, '98.00', '2018-05-28 15:37:38'), (972, 1, '98.00', '2018-05-28 15:37:47'), (973, 1, '93.00', '2018-05-28 15:37:56'), (974, 1, '63.00', '2018-05-28 15:38:05'), (975, 1, '73.00', '2018-05-28 15:38:14'), (976, 1, '60.00', '2018-05-28 15:38:23'), (977, 1, '75.00', '2018-05-28 15:38:32'), (978, 1, '76.00', '2018-05-28 15:38:41'), (979, 1, '91.00', '2018-05-28 15:38:50'), (980, 1, '99.00', '2018-05-28 15:38:59'), (981, 1, '78.00', '2018-05-28 15:39:08'), (982, 1, '87.00', '2018-05-28 15:39:17'), (983, 1, '78.00', '2018-05-28 15:39:26'), (984, 1, '89.00', '2018-05-28 15:39:35'), (985, 1, '66.00', '2018-05-28 15:39:44'), (986, 1, '86.00', '2018-05-28 15:39:53'), (987, 1, '90.00', '2018-05-28 15:40:02'), (988, 1, '88.00', '2018-05-28 15:40:11'), (989, 1, '67.00', '2018-05-28 15:40:20'), (990, 1, '98.00', '2018-05-28 15:40:29'), (991, 1, '85.00', '2018-05-28 15:40:38'), (992, 1, '70.00', '2018-05-28 15:40:47'), (993, 1, '87.00', '2018-05-28 15:40:56'), (994, 1, '92.00', '2018-05-28 15:41:05'), (995, 1, '90.00', '2018-05-28 15:41:14'), (996, 1, '61.00', '2018-05-28 15:41:23'), (997, 1, '62.00', '2018-05-28 15:41:32'), (998, 1, '66.00', '2018-05-28 15:41:41'), (999, 1, '93.00', '2018-05-28 15:41:50'), (1000, 1, '88.00', '2018-05-28 15:41:59'), (1001, 1, '86.00', '2018-05-28 15:42:08'), (1002, 1, '80.00', '2018-05-28 15:42:17'), (1003, 1, '84.00', '2018-05-28 15:42:26'), (1004, 1, '64.00', '2018-05-28 15:42:35'), (1005, 1, '67.00', '2018-05-28 15:42:44'), (1006, 1, '76.00', '2018-05-28 15:42:53'), (1007, 1, '97.00', '2018-05-28 15:43:02'), (1008, 1, '63.00', '2018-05-28 15:43:11'), (1009, 1, '85.00', '2018-05-28 15:43:20'), (1010, 1, '61.00', '2018-05-28 15:43:29'), (1011, 1, '68.00', '2018-05-28 15:43:38'), (1012, 1, '87.00', '2018-05-28 15:43:47'), (1013, 1, '75.00', '2018-05-28 15:43:56'), (1014, 1, '95.00', '2018-05-28 15:44:05'), (1015, 1, '74.00', '2018-05-28 15:44:14'), (1016, 1, '65.00', '2018-05-28 15:44:23'), (1017, 1, '97.00', '2018-05-28 15:44:32'), (1018, 1, '84.00', '2018-05-28 15:44:41'), (1019, 1, '77.00', '2018-05-28 15:44:50'), (1020, 1, '90.00', '2018-05-28 15:44:59'), (1021, 1, '64.00', '2018-05-28 15:45:08'), (1022, 1, '79.00', '2018-05-28 15:45:17'), (1023, 1, '63.00', '2018-05-28 15:45:26'), (1024, 1, '69.00', '2018-05-28 15:45:35'), (1025, 1, '82.00', '2018-05-28 15:45:44'), (1026, 1, '78.00', '2018-05-28 15:45:52'), (1027, 1, '99.00', '2018-05-28 15:46:01'), (1028, 1, '61.00', '2018-05-28 15:46:11'), (1029, 1, '82.00', '2018-05-28 15:46:19'), (1030, 1, '84.00', '2018-05-28 15:46:28'), (1031, 1, '98.00', '2018-05-28 15:46:37'), (1032, 1, '78.00', '2018-05-28 15:46:46'), (1033, 1, '97.00', '2018-05-28 15:46:55'), (1034, 1, '72.00', '2018-05-28 15:47:04'), (1035, 1, '62.00', '2018-05-28 15:47:13'), (1036, 1, '73.00', '2018-05-28 15:47:22'), (1037, 1, '92.00', '2018-05-28 15:47:31'), (1038, 1, '98.00', '2018-05-28 15:47:40'), (1039, 1, '85.00', '2018-05-28 15:47:50'), (1040, 1, '66.00', '2018-05-28 15:47:59'), (1041, 1, '90.00', '2018-05-28 15:48:07'), (1042, 1, '80.00', '2018-05-28 15:48:16'), (1043, 1, '93.00', '2018-05-28 15:48:25'), (1044, 1, '64.00', '2018-05-28 15:48:34'), (1045, 1, '80.00', '2018-05-28 15:48:43'), (1046, 1, '78.00', '2018-05-28 15:48:52'), (1047, 1, '89.00', '2018-05-28 15:49:01'), (1048, 1, '65.00', '2018-05-28 15:49:10'), (1049, 1, '86.00', '2018-05-28 15:49:19'), (1050, 1, '75.00', '2018-05-28 15:49:28'), (1051, 1, '90.00', '2018-05-28 15:49:37'), (1052, 1, '76.00', '2018-05-28 15:49:46'), (1053, 1, '93.00', '2018-05-28 15:49:55'), (1054, 1, '61.00', '2018-05-28 15:50:04'), (1055, 1, '61.00', '2018-05-28 15:50:13'), (1056, 1, '74.00', '2018-05-28 15:50:22'), (1057, 1, '99.00', '2018-05-28 15:50:31'), (1058, 1, '95.00', '2018-05-28 15:50:40'), (1059, 1, '97.00', '2018-05-28 15:50:49'), (1060, 1, '97.00', '2018-05-28 15:50:58'), (1061, 1, '97.00', '2018-05-28 15:51:07'), (1062, 1, '87.00', '2018-05-28 15:51:16'), (1063, 1, '68.00', '2018-05-28 15:51:25'), (1064, 1, '60.00', '2018-05-28 15:51:34'), (1065, 1, '62.00', '2018-05-28 15:51:43'), (1066, 1, '81.00', '2018-05-28 15:51:53'), (1067, 1, '76.00', '2018-05-28 15:52:02'), (1068, 1, '75.00', '2018-05-28 15:52:11'), (1069, 1, '61.00', '2018-05-28 15:52:20'), (1070, 1, '68.00', '2018-05-28 15:52:29'), (1071, 1, '97.00', '2018-05-28 15:52:38'), (1072, 1, '90.00', '2018-05-28 15:52:47'), (1073, 1, '83.00', '2018-05-28 15:52:56'), (1074, 1, '63.00', '2018-05-28 15:53:05'), (1075, 1, '69.00', '2018-05-28 15:53:14'), (1076, 1, '68.00', '2018-05-28 15:53:23'), (1077, 1, '82.00', '2018-05-28 15:53:32'), (1078, 1, '67.00', '2018-05-28 15:53:41'), (1079, 1, '82.00', '2018-05-28 15:53:50'), (1080, 1, '76.00', '2018-05-28 15:53:59'), (1081, 1, '71.00', '2018-05-28 15:54:08'), (1082, 1, '77.00', '2018-05-28 15:54:17'), (1083, 1, '81.00', '2018-05-28 15:54:26'), (1084, 1, '96.00', '2018-05-28 15:54:35'), (1085, 1, '87.00', '2018-05-28 15:54:45'), (1086, 1, '88.00', '2018-05-28 15:55:03'), (1087, 1, '84.00', '2018-05-28 15:55:17'), (1088, 1, '97.00', '2018-05-28 15:55:30'), (1089, 1, '93.00', '2018-05-28 15:55:40'), (1090, 1, '72.00', '2018-05-28 15:55:51'), (1091, 1, '69.00', '2018-05-28 15:56:00'), (1092, 1, '69.00', '2018-05-28 15:56:16'), (1093, 1, '79.00', '2018-05-28 15:56:31'), (1094, 1, '86.00', '2018-05-28 15:56:41'), (1095, 1, '67.00', '2018-05-28 15:56:51'), (1096, 1, '87.00', '2018-05-28 15:57:31'), (1097, 1, '89.00', '2018-05-28 15:57:48'), (1098, 1, '60.00', '2018-05-28 15:57:58'), (1099, 1, '77.00', '2018-05-28 15:58:07'), (1100, 1, '66.00', '2018-05-28 15:58:28'), (1101, 1, '63.00', '2018-05-28 15:58:40'), (1102, 1, '69.00', '2018-05-28 15:58:51'), (1103, 1, '89.00', '2018-05-28 15:59:00'), (1104, 1, '73.00', '2018-05-28 15:59:12'), (1105, 1, '73.00', '2018-05-28 16:00:08'), (1106, 1, '86.00', '2018-05-28 16:00:19'), (1107, 1, '60.00', '2018-05-28 16:00:45'), (1108, 1, '74.00', '2018-05-28 16:00:54'), (1109, 1, '82.00', '2018-05-28 16:01:07'), (1110, 1, '76.00', '2018-05-28 16:01:17'), (1111, 1, '94.00', '2018-05-28 16:01:28'), (1112, 1, '98.00', '2018-05-28 16:01:40'), (1113, 1, '78.00', '2018-05-28 16:01:50'), (1114, 1, '73.00', '2018-05-28 16:02:01'), (1115, 1, '62.00', '2018-05-28 16:02:36'), (1116, 1, '85.00', '2018-05-28 16:02:47'), (1117, 1, '99.00', '2018-05-28 16:02:57'), (1118, 1, '63.00', '2018-05-28 16:03:07'), (1119, 1, '98.00', '2018-05-28 16:03:18'), (1120, 1, '61.00', '2018-05-28 16:03:28'), (1121, 1, '60.00', '2018-05-28 16:03:43'), (1122, 1, '78.00', '2018-05-28 16:03:53'), (1123, 1, '86.00', '2018-05-28 16:04:04'), (1124, 1, '88.00', '2018-05-28 16:04:32'), (1125, 1, '97.00', '2018-05-28 16:04:41'), (1126, 1, '89.00', '2018-05-28 16:06:01'), (1127, 1, '62.00', '2018-05-28 16:06:29'), (1128, 1, '93.00', '2018-05-28 16:06:39'), (1129, 1, '98.00', '2018-05-28 16:06:49'), (1130, 1, '84.00', '2018-05-28 16:06:58'), (1131, 1, '79.00', '2018-05-28 16:07:24'), (1132, 1, '88.00', '2018-05-28 16:07:49'), (1133, 1, '78.00', '2018-05-28 16:08:06'), (1134, 1, '69.00', '2018-05-28 16:08:45'), (1135, 1, '73.00', '2018-05-28 16:09:21'), (1136, 1, '69.00', '2018-05-28 16:09:50'), (1137, 1, '78.00', '2018-05-28 16:10:08'), (1138, 1, '64.00', '2018-05-28 16:10:36'), (1139, 1, '72.00', '2018-05-28 16:10:56'), (1140, 1, '69.00', '2018-05-28 16:11:14'), (1141, 1, '99.00', '2018-05-28 16:11:25'), (1142, 1, '89.00', '2018-05-28 16:11:37'), (1143, 1, '94.00', '2018-05-28 16:11:51'), (1144, 1, '85.00', '2018-05-28 16:12:03'), (1145, 1, '96.00', '2018-05-28 16:12:15'), (1146, 1, '77.00', '2018-05-28 16:12:32'), (1147, 1, '62.00', '2018-05-28 16:12:48'), (1148, 1, '66.00', '2018-05-28 16:13:06'), (1149, 1, '98.00', '2018-05-28 16:13:21'), (1150, 1, '86.00', '2018-05-28 16:13:40'), (1151, 1, '81.00', '2018-05-28 16:13:55'), (1152, 1, '62.00', '2018-05-28 16:14:23'), (1153, 1, '95.00', '2018-05-28 16:14:34'), (1154, 1, '79.00', '2018-05-28 16:14:57'), (1155, 1, '60.00', '2018-05-28 16:15:10'), (1156, 1, '69.00', '2018-05-28 16:15:48'), (1157, 1, '88.00', '2018-05-28 16:16:00'), (1158, 1, '95.00', '2018-05-28 16:16:09'), (1159, 1, '76.00', '2018-05-28 16:16:18'), (1160, 1, '77.00', '2018-05-28 16:16:28'), (1161, 1, '79.00', '2018-05-28 16:16:38'), (1162, 1, '94.00', '2018-05-28 16:16:48'), (1163, 1, '60.00', '2018-05-28 16:16:59'), (1164, 1, '66.00', '2018-05-28 16:17:19'), (1165, 1, '95.00', '2018-05-28 16:18:08'), (1166, 1, '71.00', '2018-05-28 16:18:18'), (1167, 1, '73.00', '2018-05-28 16:18:50'), (1168, 1, '66.00', '2018-05-28 16:19:05'), (1169, 1, '97.00', '2018-05-28 16:19:18'), (1170, 1, '62.00', '2018-05-28 16:19:42'), (1171, 1, '84.00', '2018-05-28 16:19:56'), (1172, 1, '77.00', '2018-05-28 16:20:06'), (1173, 1, '90.00', '2018-05-28 16:20:15'), (1174, 1, '72.00', '2018-05-28 16:20:46'), (1175, 1, '97.00', '2018-05-28 16:20:56'), (1176, 1, '95.00', '2018-05-28 16:21:06'), (1177, 1, '96.00', '2018-05-28 16:21:52'), (1178, 1, '80.00', '2018-05-28 16:22:02'), (1179, 1, '62.00', '2018-05-28 16:22:13'), (1180, 1, '60.00', '2018-05-28 16:22:27'), (1181, 1, '72.00', '2018-05-28 16:22:45'), (1182, 1, '81.00', '2018-05-28 16:22:55'), (1183, 1, '93.00', '2018-05-28 16:23:04'), (1184, 1, '97.00', '2018-05-28 16:23:16'), (1185, 1, '75.00', '2018-05-28 16:23:26'), (1186, 1, '64.00', '2018-05-28 16:23:38'), (1187, 1, '85.00', '2018-05-28 16:23:47'), (1188, 1, '84.00', '2018-05-28 16:23:56'), (1189, 1, '79.00', '2018-05-28 16:24:05'), (1190, 1, '75.00', '2018-05-28 16:24:14'), (1191, 1, '77.00', '2018-05-28 16:24:23'), (1192, 1, '85.00', '2018-05-28 16:24:32'), (1193, 1, '63.00', '2018-05-28 16:24:41'), (1194, 1, '97.00', '2018-05-28 16:24:51'), (1195, 1, '79.00', '2018-05-28 16:25:00'), (1196, 1, '63.00', '2018-05-28 16:25:08'), (1197, 1, '76.00', '2018-05-28 16:25:18'), (1198, 1, '98.00', '2018-05-28 16:25:27'), (1199, 1, '97.00', '2018-05-28 16:25:36'), (1200, 1, '84.00', '2018-05-28 16:25:45'), (1201, 1, '72.00', '2018-05-28 16:25:54'), (1202, 1, '70.00', '2018-05-28 16:26:02'), (1203, 1, '67.00', '2018-05-28 16:26:11'), (1204, 1, '84.00', '2018-05-28 16:26:20'), (1205, 1, '99.00', '2018-05-28 16:26:30'), (1206, 1, '96.00', '2018-05-28 16:26:38'), (1207, 1, '88.00', '2018-05-28 16:26:47'), (1208, 1, '72.00', '2018-05-28 16:26:57'), (1209, 1, '64.00', '2018-05-28 16:27:05'), (1210, 1, '85.00', '2018-05-28 16:27:14'), (1211, 1, '95.00', '2018-05-28 16:27:23'), (1212, 1, '60.00', '2018-05-28 16:27:32'), (1213, 1, '90.00', '2018-05-28 16:27:41'), (1214, 1, '71.00', '2018-05-28 16:27:50'), (1215, 1, '75.00', '2018-05-28 16:27:59'), (1216, 1, '62.00', '2018-05-28 16:28:08'), (1217, 1, '69.00', '2018-05-28 16:28:17'), (1218, 1, '66.00', '2018-05-28 16:28:26'), (1219, 1, '81.00', '2018-05-28 16:28:35'), (1220, 1, '83.00', '2018-05-28 16:28:44'), (1221, 1, '65.00', '2018-05-28 16:28:53'), (1222, 1, '61.00', '2018-05-28 16:29:02'), (1223, 1, '63.00', '2018-05-28 16:29:11'), (1224, 1, '96.00', '2018-05-28 16:29:20'), (1225, 1, '60.00', '2018-05-28 16:29:29'), (1226, 1, '90.00', '2018-05-28 16:29:38'), (1227, 1, '86.00', '2018-05-28 16:29:47'), (1228, 1, '81.00', '2018-05-28 16:29:56'), (1229, 1, '88.00', '2018-05-28 16:30:05'), (1230, 1, '63.00', '2018-05-28 16:30:14'), (1231, 1, '84.00', '2018-05-28 16:30:23'), (1232, 1, '89.00', '2018-05-28 16:30:32'), (1233, 1, '85.00', '2018-05-28 16:30:41'), (1234, 1, '74.00', '2018-05-28 16:30:50'), (1235, 1, '92.00', '2018-05-28 16:30:59'), (1236, 1, '93.00', '2018-05-28 16:31:08'), (1237, 1, '71.00', '2018-05-28 16:31:17'), (1238, 1, '77.00', '2018-05-28 16:31:26'), (1239, 1, '66.00', '2018-05-28 16:31:35'), (1240, 1, '97.00', '2018-05-28 16:31:44'), (1241, 1, '72.00', '2018-05-28 16:31:53'), (1242, 1, '83.00', '2018-05-28 16:32:02'), (1243, 1, '76.00', '2018-05-28 16:32:11'), (1244, 1, '97.00', '2018-05-28 16:32:20'); INSERT INTO `leitura` (`idLeitura`, `idMonitor`, `nivel`, `dataHora`) VALUES (1245, 1, '82.00', '2018-05-28 16:32:30'), (1246, 1, '94.00', '2018-05-28 16:32:39'), (1247, 1, '62.00', '2018-05-28 16:32:48'), (1248, 1, '76.00', '2018-05-28 16:32:57'), (1249, 1, '78.00', '2018-05-28 16:33:06'), (1250, 1, '87.00', '2018-05-28 16:33:15'), (1251, 1, '93.00', '2018-05-28 16:33:24'), (1252, 1, '77.00', '2018-05-28 16:33:33'), (1253, 1, '62.00', '2018-05-28 16:33:42'), (1254, 1, '66.00', '2018-05-28 16:33:51'), (1255, 1, '83.00', '2018-05-28 16:34:00'), (1256, 1, '75.00', '2018-05-28 16:34:10'), (1257, 1, '84.00', '2018-05-28 16:34:19'), (1258, 1, '76.00', '2018-05-28 16:34:28'), (1259, 1, '80.00', '2018-05-28 16:34:37'), (1260, 1, '88.00', '2018-05-28 16:34:46'), (1261, 1, '63.00', '2018-05-28 16:34:55'), (1262, 1, '63.00', '2018-05-28 16:35:04'), (1263, 1, '94.00', '2018-05-28 16:35:13'), (1264, 1, '80.00', '2018-05-28 16:35:22'), (1265, 1, '98.00', '2018-05-28 16:35:31'), (1266, 1, '60.00', '2018-05-28 16:35:40'), (1267, 1, '65.00', '2018-05-28 16:35:49'), (1268, 1, '81.00', '2018-05-28 16:35:58'), (1269, 1, '96.00', '2018-05-28 16:36:07'), (1270, 1, '75.00', '2018-05-28 16:36:16'), (1271, 1, '88.00', '2018-05-28 16:36:25'), (1272, 1, '61.00', '2018-05-28 16:36:34'), (1273, 1, '75.00', '2018-05-28 16:36:43'), (1274, 1, '89.00', '2018-05-28 16:36:52'), (1275, 1, '88.00', '2018-05-28 16:37:01'), (1276, 1, '69.00', '2018-05-28 16:37:10'), (1277, 1, '68.00', '2018-05-28 16:37:19'), (1278, 1, '83.00', '2018-05-28 16:37:28'), (1279, 1, '98.00', '2018-05-28 16:37:37'), (1280, 1, '81.00', '2018-05-28 16:37:46'), (1281, 1, '75.00', '2018-05-28 16:37:54'), (1282, 1, '83.00', '2018-05-28 16:38:03'), (1283, 1, '63.00', '2018-05-28 16:38:12'), (1284, 1, '80.00', '2018-05-28 16:38:21'), (1285, 1, '93.00', '2018-05-28 16:38:30'), (1286, 1, '85.00', '2018-05-28 16:38:39'), (1287, 1, '62.00', '2018-05-28 16:38:48'), (1288, 1, '61.00', '2018-05-28 16:38:57'), (1289, 1, '85.00', '2018-05-28 16:39:06'), (1290, 1, '69.00', '2018-05-28 16:39:15'), (1291, 1, '82.00', '2018-05-28 16:39:24'), (1292, 1, '67.00', '2018-05-28 16:39:33'), (1293, 1, '77.00', '2018-05-28 16:39:42'), (1294, 1, '65.00', '2018-05-28 16:39:51'), (1295, 1, '95.00', '2018-05-28 16:40:00'), (1296, 1, '74.00', '2018-05-28 16:40:09'), (1297, 1, '85.00', '2018-05-28 16:40:18'), (1298, 1, '93.00', '2018-05-28 16:40:27'), (1299, 1, '88.00', '2018-05-28 16:40:36'), (1300, 1, '80.00', '2018-05-28 16:40:45'), (1301, 1, '63.00', '2018-05-28 16:40:54'), (1302, 1, '91.00', '2018-05-28 16:41:03'), (1303, 1, '81.00', '2018-05-28 16:41:12'), (1304, 1, '77.00', '2018-05-28 16:41:21'), (1305, 1, '74.00', '2018-05-28 16:41:30'), (1306, 1, '73.00', '2018-05-28 16:41:38'), (1307, 1, '99.00', '2018-05-28 16:41:47'), (1308, 1, '96.00', '2018-05-28 16:41:56'), (1309, 1, '72.00', '2018-05-28 16:42:05'), (1310, 1, '69.00', '2018-05-28 16:42:14'), (1311, 1, '60.00', '2018-05-28 16:42:23'), (1312, 1, '80.00', '2018-05-28 16:42:32'), (1313, 1, '79.00', '2018-05-28 16:42:41'), (1314, 1, '89.00', '2018-05-28 16:42:50'), (1315, 1, '82.00', '2018-05-28 16:42:59'), (1316, 1, '97.00', '2018-05-28 16:43:08'), (1317, 1, '67.00', '2018-05-28 16:43:17'), (1318, 1, '71.00', '2018-05-28 16:43:26'), (1319, 1, '69.00', '2018-05-28 16:43:35'), (1320, 1, '64.00', '2018-05-28 16:43:44'), (1321, 1, '94.00', '2018-05-28 16:43:53'), (1322, 1, '91.00', '2018-05-28 16:44:02'), (1323, 1, '61.00', '2018-05-28 16:44:11'), (1324, 1, '77.00', '2018-05-28 16:44:20'), (1325, 1, '88.00', '2018-05-28 16:44:29'), (1326, 1, '83.00', '2018-05-28 16:44:38'), (1327, 1, '64.00', '2018-05-28 16:44:47'), (1328, 1, '82.00', '2018-05-28 16:44:56'), (1329, 1, '65.00', '2018-05-28 16:45:05'), (1330, 1, '93.00', '2018-05-28 16:45:14'), (1331, 1, '78.00', '2018-05-28 16:45:23'), (1332, 1, '65.00', '2018-05-28 16:45:32'), (1333, 1, '75.00', '2018-05-28 16:45:40'), (1334, 1, '98.00', '2018-05-28 16:45:49'), (1335, 1, '66.00', '2018-05-28 16:45:58'), (1336, 1, '63.00', '2018-05-28 16:46:07'), (1337, 1, '72.00', '2018-05-28 16:46:16'), (1338, 1, '93.00', '2018-05-28 16:46:25'), (1339, 1, '76.00', '2018-05-28 16:46:34'), (1340, 1, '98.00', '2018-05-28 16:46:43'), (1341, 1, '60.00', '2018-05-28 16:46:52'), (1342, 1, '91.00', '2018-05-28 16:47:01'), (1343, 1, '99.00', '2018-05-28 16:47:10'), (1344, 1, '62.00', '2018-05-28 16:47:19'), (1345, 1, '72.00', '2018-05-28 16:47:28'), (1346, 1, '69.00', '2018-05-28 16:47:37'), (1347, 1, '95.00', '2018-05-28 16:47:46'), (1348, 1, '82.00', '2018-05-28 16:47:55'), (1349, 1, '92.00', '2018-05-28 16:48:04'), (1350, 1, '95.00', '2018-05-28 16:48:13'), (1351, 1, '98.00', '2018-05-28 16:48:22'), (1352, 1, '70.00', '2018-05-28 16:48:31'), (1353, 1, '61.00', '2018-05-28 16:48:40'), (1354, 1, '83.00', '2018-05-28 16:48:48'), (1355, 1, '78.00', '2018-05-28 16:48:57'), (1356, 1, '78.00', '2018-05-28 16:49:06'), (1357, 1, '86.00', '2018-05-28 16:49:15'), (1358, 1, '70.00', '2018-05-28 16:49:24'), (1359, 1, '97.00', '2018-05-28 16:49:33'), (1360, 1, '83.00', '2018-05-28 16:49:42'), (1361, 1, '66.00', '2018-05-28 16:49:51'), (1362, 1, '82.00', '2018-05-28 16:50:00'), (1363, 1, '74.00', '2018-05-28 16:50:09'), (1364, 1, '83.00', '2018-05-28 16:50:18'), (1365, 1, '92.00', '2018-05-28 16:50:27'), (1366, 1, '86.00', '2018-05-28 16:50:36'), (1367, 1, '66.00', '2018-05-28 16:50:45'), (1368, 1, '99.00', '2018-05-28 16:50:54'), (1369, 1, '84.00', '2018-05-28 16:51:03'), (1370, 1, '72.00', '2018-05-28 16:51:12'), (1371, 1, '79.00', '2018-05-28 16:51:21'), (1372, 1, '68.00', '2018-05-28 16:51:30'), (1373, 1, '73.00', '2018-05-28 16:51:39'), (1374, 1, '91.00', '2018-05-28 16:51:48'), (1375, 1, '63.00', '2018-05-28 16:51:57'), (1376, 1, '65.00', '2018-05-28 16:52:06'), (1377, 1, '66.00', '2018-05-28 16:52:15'), (1378, 1, '90.00', '2018-05-28 16:52:24'), (1379, 1, '91.00', '2018-05-28 16:52:33'), (1380, 1, '86.00', '2018-05-28 16:52:42'), (1381, 1, '92.00', '2018-05-28 16:52:51'), (1382, 1, '78.00', '2018-05-28 16:53:00'), (1383, 1, '62.00', '2018-05-28 16:53:08'), (1384, 1, '82.00', '2018-05-28 16:53:18'), (1385, 1, '87.00', '2018-05-28 16:53:26'), (1386, 1, '71.00', '2018-05-28 16:53:35'), (1387, 1, '93.00', '2018-05-28 16:53:44'), (1388, 1, '63.00', '2018-05-28 16:53:53'), (1389, 1, '92.00', '2018-05-28 16:54:02'), (1390, 1, '98.00', '2018-05-28 16:54:11'), (1391, 1, '73.00', '2018-05-28 16:54:20'), (1392, 1, '98.00', '2018-05-28 16:54:29'), (1393, 1, '84.00', '2018-05-28 16:54:38'), (1394, 1, '95.00', '2018-05-28 16:54:47'), (1395, 1, '93.00', '2018-05-28 16:54:56'), (1396, 1, '72.00', '2018-05-28 16:55:05'), (1397, 1, '88.00', '2018-05-28 16:55:14'), (1398, 1, '95.00', '2018-05-28 16:55:23'), (1399, 1, '98.00', '2018-05-28 16:55:32'), (1400, 1, '65.00', '2018-05-28 16:55:41'), (1401, 1, '74.00', '2018-05-28 16:55:50'), (1402, 1, '74.00', '2018-05-28 16:55:59'), (1403, 1, '97.00', '2018-05-28 16:56:08'), (1404, 1, '76.00', '2018-05-28 16:56:17'), (1405, 1, '88.00', '2018-05-28 16:56:26'), (1406, 1, '67.00', '2018-05-28 16:56:35'), (1407, 1, '88.00', '2018-05-28 16:56:44'), (1408, 1, '68.00', '2018-05-28 16:56:53'), (1409, 1, '84.00', '2018-05-28 16:57:02'), (1410, 1, '84.00', '2018-05-28 16:57:11'), (1411, 1, '69.00', '2018-05-28 16:57:20'), (1412, 1, '68.00', '2018-05-28 16:57:29'), (1413, 1, '99.00', '2018-05-28 16:57:38'), (1414, 1, '91.00', '2018-05-28 16:57:47'), (1415, 1, '63.00', '2018-05-28 16:57:55'), (1416, 1, '91.00', '2018-05-28 16:58:04'), (1417, 1, '86.00', '2018-05-28 16:58:13'), (1418, 1, '91.00', '2018-05-28 16:58:22'), (1419, 1, '73.00', '2018-05-28 16:58:31'), (1420, 1, '70.00', '2018-05-28 16:58:40'), (1421, 1, '66.00', '2018-05-28 16:58:49'), (1422, 1, '89.00', '2018-05-28 16:58:59'), (1423, 1, '98.00', '2018-05-28 16:59:07'), (1424, 1, '96.00', '2018-05-28 16:59:16'), (1425, 1, '90.00', '2018-05-28 16:59:25'), (1426, 1, '75.00', '2018-05-28 16:59:34'), (1427, 1, '68.00', '2018-05-28 16:59:43'), (1428, 1, '76.00', '2018-05-28 16:59:52'), (1429, 1, '92.00', '2018-05-28 17:00:01'), (1430, 1, '80.00', '2018-05-28 17:00:10'), (1431, 1, '77.00', '2018-05-28 17:00:19'), (1432, 1, '80.00', '2018-05-28 17:00:28'), (1433, 1, '76.00', '2018-05-28 17:00:37'), (1434, 1, '90.00', '2018-05-28 17:00:46'), (1435, 1, '80.00', '2018-05-28 17:00:55'), (1436, 1, '87.00', '2018-05-28 17:01:04'), (1437, 1, '74.00', '2018-05-28 17:01:13'), (1438, 1, '65.00', '2018-05-28 17:01:22'), (1439, 1, '85.00', '2018-05-28 17:01:31'), (1440, 1, '76.00', '2018-05-28 17:01:40'), (1441, 1, '86.00', '2018-05-28 17:01:49'), (1442, 1, '83.00', '2018-05-28 17:01:58'), (1443, 1, '83.00', '2018-05-28 17:02:07'), (1444, 1, '75.00', '2018-05-28 17:02:16'), (1445, 1, '93.00', '2018-05-28 17:02:25'), (1446, 1, '99.00', '2018-05-28 17:02:34'), (1447, 1, '86.00', '2018-05-28 17:02:43'), (1448, 1, '73.00', '2018-05-28 17:02:52'), (1449, 1, '81.00', '2018-05-28 17:03:01'), (1450, 1, '72.00', '2018-05-28 17:03:10'), (1451, 1, '99.00', '2018-05-28 17:03:19'), (1452, 1, '61.00', '2018-05-28 17:03:28'), (1453, 1, '67.00', '2018-05-28 17:03:37'), (1454, 1, '97.00', '2018-05-28 17:03:46'), (1455, 1, '61.00', '2018-05-28 17:03:55'), (1456, 1, '97.00', '2018-05-28 17:04:04'), (1457, 1, '92.00', '2018-05-28 17:04:13'), (1458, 1, '63.00', '2018-05-28 17:04:22'), (1459, 1, '84.00', '2018-05-28 17:04:31'), (1460, 1, '85.00', '2018-05-28 17:04:40'), (1461, 1, '65.00', '2018-05-28 17:04:48'), (1462, 1, '75.00', '2018-05-28 17:04:57'), (1463, 1, '63.00', '2018-05-28 17:05:06'), (1464, 1, '88.00', '2018-05-28 17:05:15'), (1465, 1, '70.00', '2018-05-28 17:05:24'), (1466, 1, '72.00', '2018-05-28 17:05:33'), (1467, 1, '87.00', '2018-05-28 17:05:42'), (1468, 1, '99.00', '2018-05-28 17:05:51'), (1469, 1, '99.00', '2018-05-28 17:06:00'), (1470, 1, '74.00', '2018-05-28 17:06:09'), (1471, 1, '64.00', '2018-05-28 17:06:18'), (1472, 1, '80.00', '2018-05-28 17:06:27'), (1473, 1, '82.00', '2018-05-28 17:06:36'), (1474, 1, '60.00', '2018-05-28 17:06:45'), (1475, 1, '90.00', '2018-05-28 17:06:54'), (1476, 1, '82.00', '2018-05-28 17:07:03'), (1477, 1, '94.00', '2018-05-28 17:07:12'), (1478, 1, '74.00', '2018-05-28 17:07:21'), (1479, 1, '82.00', '2018-05-28 17:07:30'), (1480, 1, '67.00', '2018-05-28 17:07:39'), (1481, 1, '71.00', '2018-05-28 17:07:48'), (1482, 1, '85.00', '2018-05-28 17:07:57'), (1483, 1, '81.00', '2018-05-28 17:08:06'), (1484, 1, '96.00', '2018-05-28 17:08:15'), (1485, 1, '87.00', '2018-05-28 17:08:23'), (1486, 1, '66.00', '2018-05-28 17:08:32'), (1487, 1, '63.00', '2018-05-28 17:08:42'), (1488, 1, '80.00', '2018-05-28 17:08:50'), (1489, 1, '82.00', '2018-05-28 17:09:08'), (1490, 1, '64.00', '2018-05-28 17:10:04'), (1491, 1, '82.00', '2018-05-28 17:11:04'), (1492, 1, '78.00', '2018-05-28 17:12:22'), (1493, 1, '70.00', '2018-05-28 17:14:11'), (1494, 1, '75.00', '2018-05-28 17:15:17'), (1495, 1, '79.00', '2018-05-28 17:16:30'), (1496, 1, '86.00', '2018-05-28 17:17:15'), (1497, 1, '78.00', '2018-05-28 17:18:08'), (1498, 1, '82.00', '2018-05-28 17:18:18'), (1499, 1, '93.00', '2018-05-28 17:19:35'), (1500, 1, '98.00', '2018-05-28 17:19:44'), (1501, 1, '96.00', '2018-05-28 17:19:53'), (1502, 1, '90.00', '2018-05-28 17:20:02'), (1503, 1, '66.00', '2018-05-28 17:20:15'), (1504, 1, '61.00', '2018-05-28 17:20:24'), (1505, 1, '83.00', '2018-05-28 17:20:36'), (1506, 1, '70.00', '2018-05-28 17:20:45'), (1507, 1, '99.00', '2018-05-28 17:20:55'), (1508, 1, '78.00', '2018-05-28 17:21:04'), (1509, 1, '65.00', '2018-05-28 17:21:15'), (1510, 1, '78.00', '2018-05-28 17:21:25'), (1511, 1, '64.00', '2018-05-28 17:21:34'), (1512, 1, '73.00', '2018-05-28 17:21:44'), (1513, 1, '80.00', '2018-05-28 17:21:53'), (1514, 1, '80.00', '2018-05-28 17:22:03'), (1515, 1, '72.00', '2018-05-28 17:22:18'), (1516, 1, '79.00', '2018-05-28 17:22:29'), (1517, 1, '75.00', '2018-05-28 17:22:38'), (1518, 1, '92.00', '2018-05-28 17:22:49'), (1519, 1, '66.00', '2018-05-28 17:23:02'), (1520, 1, '67.00', '2018-05-28 17:23:12'), (1521, 1, '98.00', '2018-05-28 17:23:22'), (1522, 1, '94.00', '2018-05-28 17:23:31'), (1523, 1, '64.00', '2018-05-28 17:23:41'), (1524, 1, '64.00', '2018-05-28 17:24:06'), (1525, 1, '71.00', '2018-05-28 17:24:41'), (1526, 1, '63.00', '2018-05-28 17:24:52'), (1527, 1, '66.00', '2018-05-28 17:25:02'), (1528, 1, '97.00', '2018-05-28 17:25:14'), (1529, 1, '87.00', '2018-05-28 17:25:24'), (1530, 1, '71.00', '2018-05-28 17:25:33'), (1531, 1, '87.00', '2018-05-28 17:26:03'), (1532, 1, '93.00', '2018-05-28 17:26:15'), (1533, 1, '63.00', '2018-05-28 17:26:24'), (1534, 1, '97.00', '2018-05-28 17:26:33'), (1535, 1, '99.00', '2018-05-28 17:26:44'), (1536, 1, '62.00', '2018-05-28 17:26:53'), (1537, 1, '71.00', '2018-05-28 17:27:03'), (1538, 1, '91.00', '2018-05-28 17:27:14'), (1539, 1, '99.00', '2018-05-28 17:27:23'), (1540, 1, '69.00', '2018-05-28 17:27:33'), (1541, 1, '73.00', '2018-05-28 17:27:45'), (1542, 1, '62.00', '2018-05-28 17:27:54'), (1543, 1, '61.00', '2018-05-28 17:28:03'), (1544, 1, '75.00', '2018-05-28 17:28:19'), (1545, 1, '93.00', '2018-05-28 17:28:30'), (1546, 1, '72.00', '2018-05-28 17:28:42'), (1547, 1, '92.00', '2018-05-28 17:28:52'), (1548, 1, '61.00', '2018-05-28 17:29:01'), (1549, 1, '96.00', '2018-05-28 17:29:12'), (1550, 1, '83.00', '2018-05-28 17:29:22'), (1551, 1, '87.00', '2018-05-28 17:29:31'), (1552, 1, '77.00', '2018-05-28 17:30:58'), (1553, 1, '78.00', '2018-05-28 17:31:00'), (1554, 1, '84.00', '2018-05-28 17:31:07'), (1555, 1, '94.00', '2018-05-28 17:31:16'), (1556, 1, '92.00', '2018-05-28 17:31:25'), (1557, 1, '71.00', '2018-05-28 17:31:34'), (1558, 1, '67.00', '2018-05-28 17:31:43'), (1559, 1, '61.00', '2018-05-28 17:31:52'), (1560, 1, '61.00', '2018-05-28 17:32:01'), (1561, 1, '91.00', '2018-05-28 17:32:10'), (1562, 1, '94.00', '2018-05-28 17:32:19'), (1563, 1, '65.00', '2018-05-28 17:32:28'), (1564, 1, '92.00', '2018-05-28 17:32:37'), (1565, 1, '73.00', '2018-05-28 17:32:46'), (1566, 1, '70.00', '2018-05-28 17:32:55'), (1567, 1, '87.00', '2018-05-28 17:33:04'), (1568, 1, '93.00', '2018-05-28 17:33:13'), (1569, 1, '88.00', '2018-05-28 17:33:22'), (1570, 1, '84.00', '2018-05-28 17:33:31'), (1571, 1, '94.00', '2018-05-28 17:33:40'), (1572, 1, '96.00', '2018-05-28 17:33:49'), (1573, 1, '79.00', '2018-05-28 17:33:58'), (1574, 1, '89.00', '2018-05-28 17:34:07'), (1575, 1, '75.00', '2018-05-28 17:34:16'), (1576, 1, '67.00', '2018-05-28 17:34:29'), (1577, 1, '92.00', '2018-05-28 17:34:57'), (1578, 1, '69.00', '2018-05-28 17:35:07'), (1579, 1, '73.00', '2018-05-28 17:36:10'), (1580, 1, '69.00', '2018-05-28 17:36:56'), (1581, 1, '71.00', '2018-05-28 17:37:57'), (1582, 1, '83.00', '2018-05-28 17:38:13'), (1583, 1, '66.00', '2018-05-28 17:38:23'), (1584, 1, '76.00', '2018-05-28 17:38:33'), (1585, 1, '84.00', '2018-05-28 17:38:44'), (1586, 1, '78.00', '2018-05-28 17:38:53'), (1587, 1, '68.00', '2018-05-28 17:39:03'), (1588, 1, '91.00', '2018-05-28 17:39:12'), (1589, 1, '99.00', '2018-05-28 17:39:21'), (1590, 1, '71.00', '2018-05-28 17:39:30'), (1591, 1, '74.00', '2018-05-28 17:39:39'), (1592, 1, '81.00', '2018-05-28 17:39:48'), (1593, 1, '99.00', '2018-05-28 17:39:57'), (1594, 1, '83.00', '2018-05-28 17:40:06'), (1595, 1, '93.00', '2018-05-28 17:40:15'), (1596, 1, '86.00', '2018-05-28 17:40:24'), (1597, 1, '90.00', '2018-05-28 17:40:33'), (1598, 1, '73.00', '2018-05-28 17:40:42'), (1599, 1, '97.00', '2018-05-28 17:40:51'), (1600, 1, '88.00', '2018-05-28 17:41:00'), (1601, 1, '75.00', '2018-05-28 17:41:09'), (1602, 1, '74.00', '2018-05-28 17:41:18'), (1603, 1, '90.00', '2018-05-28 17:41:27'), (1604, 1, '81.00', '2018-05-28 17:41:36'), (1605, 1, '78.00', '2018-05-28 17:41:45'), (1606, 1, '83.00', '2018-05-28 17:41:54'), (1607, 1, '95.00', '2018-05-28 17:42:03'), (1608, 1, '61.00', '2018-05-28 17:42:12'), (1609, 1, '85.00', '2018-05-28 17:42:21'), (1610, 1, '62.00', '2018-05-28 17:42:30'), (1611, 1, '79.00', '2018-05-28 17:42:39'), (1612, 1, '89.00', '2018-05-28 17:42:48'), (1613, 1, '62.00', '2018-05-28 17:42:57'), (1614, 1, '83.00', '2018-05-28 17:43:06'), (1615, 1, '98.00', '2018-05-28 17:43:15'), (1616, 1, '63.00', '2018-05-28 17:43:24'), (1617, 1, '88.00', '2018-05-28 17:43:33'), (1618, 1, '72.00', '2018-05-28 17:43:42'), (1619, 1, '89.00', '2018-05-28 17:43:51'), (1620, 1, '98.00', '2018-05-28 17:44:00'), (1621, 1, '73.00', '2018-05-28 17:44:09'), (1622, 1, '96.00', '2018-05-28 17:44:18'), (1623, 1, '74.00', '2018-05-28 17:44:27'), (1624, 1, '90.00', '2018-05-28 17:44:36'), (1625, 1, '83.00', '2018-05-28 17:44:45'), (1626, 1, '70.00', '2018-05-28 17:44:54'), (1627, 1, '73.00', '2018-05-28 17:45:03'), (1628, 1, '90.00', '2018-05-28 17:45:12'), (1629, 1, '88.00', '2018-05-28 17:45:21'), (1630, 1, '77.00', '2018-05-28 17:45:30'), (1631, 1, '74.00', '2018-05-28 17:45:39'), (1632, 1, '72.00', '2018-05-28 17:45:48'), (1633, 1, '60.00', '2018-05-28 17:45:57'), (1634, 1, '86.00', '2018-05-28 17:46:06'), (1635, 1, '92.00', '2018-05-28 17:46:15'), (1636, 1, '78.00', '2018-05-28 17:46:24'), (1637, 1, '74.00', '2018-05-28 17:46:33'), (1638, 1, '63.00', '2018-05-28 17:46:42'), (1639, 1, '81.00', '2018-05-28 17:46:51'), (1640, 1, '92.00', '2018-05-28 17:47:00'), (1641, 1, '73.00', '2018-05-28 17:47:09'), (1642, 1, '66.00', '2018-05-28 17:47:18'), (1643, 1, '65.00', '2018-05-28 17:47:26'), (1644, 1, '94.00', '2018-05-28 17:47:35'), (1645, 1, '87.00', '2018-05-28 17:47:44'), (1646, 1, '80.00', '2018-05-28 17:47:53'), (1647, 1, '97.00', '2018-05-28 17:48:02'), (1648, 1, '85.00', '2018-05-28 17:48:11'), (1649, 1, '69.00', '2018-05-28 17:48:20'), (1650, 1, '71.00', '2018-05-28 17:48:29'), (1651, 1, '97.00', '2018-05-28 17:48:38'), (1652, 1, '90.00', '2018-05-28 17:48:47'), (1653, 1, '87.00', '2018-05-28 17:48:56'), (1654, 1, '68.00', '2018-05-28 17:49:05'), (1655, 1, '82.00', '2018-05-28 17:49:14'), (1656, 1, '88.00', '2018-05-28 17:49:23'), (1657, 1, '92.00', '2018-05-28 17:49:32'), (1658, 1, '95.00', '2018-05-28 17:49:41'), (1659, 1, '85.00', '2018-05-28 17:49:50'), (1660, 1, '98.00', '2018-05-28 17:49:59'), (1661, 1, '72.00', '2018-05-28 17:50:08'), (1662, 1, '64.00', '2018-05-28 17:50:17'), (1663, 1, '79.00', '2018-05-28 17:50:26'), (1664, 1, '74.00', '2018-05-28 17:50:35'), (1665, 1, '92.00', '2018-05-28 17:50:44'), (1666, 1, '79.00', '2018-05-28 17:50:53'), (1667, 1, '63.00', '2018-05-28 17:51:02'), (1668, 1, '87.00', '2018-05-28 17:51:11'), (1669, 1, '97.00', '2018-05-28 17:51:20'), (1670, 1, '74.00', '2018-05-28 17:51:29'), (1671, 1, '70.00', '2018-05-28 17:51:38'), (1672, 1, '83.00', '2018-05-28 17:51:47'), (1673, 1, '76.00', '2018-05-28 17:51:56'), (1674, 1, '61.00', '2018-05-28 17:52:05'), (1675, 1, '72.00', '2018-05-28 17:52:14'), (1676, 1, '70.00', '2018-05-28 17:52:23'), (1677, 1, '94.00', '2018-05-28 17:52:32'), (1678, 1, '62.00', '2018-05-28 17:52:41'), (1679, 1, '79.00', '2018-05-28 17:52:50'), (1680, 1, '93.00', '2018-05-28 17:52:59'), (1681, 1, '64.00', '2018-05-28 17:53:08'), (1682, 1, '64.00', '2018-05-28 17:53:16'), (1683, 1, '83.00', '2018-05-28 17:53:25'), (1684, 1, '91.00', '2018-05-28 17:53:34'), (1685, 1, '99.00', '2018-05-28 17:53:44'), (1686, 1, '83.00', '2018-05-28 17:53:53'), (1687, 1, '66.00', '2018-05-28 17:54:02'), (1688, 1, '75.00', '2018-05-28 17:54:11'), (1689, 1, '96.00', '2018-05-28 17:54:20'), (1690, 1, '71.00', '2018-05-28 17:54:29'), (1691, 1, '88.00', '2018-05-28 17:54:38'), (1692, 1, '99.00', '2018-05-28 17:54:47'), (1693, 1, '77.00', '2018-05-28 17:54:56'), (1694, 1, '93.00', '2018-05-28 17:55:05'), (1695, 1, '64.00', '2018-05-28 17:55:14'), (1696, 1, '92.00', '2018-05-28 17:55:23'), (1697, 1, '94.00', '2018-05-28 17:55:31'), (1698, 1, '89.00', '2018-05-28 17:55:40'), (1699, 1, '95.00', '2018-05-28 17:55:49'), (1700, 1, '81.00', '2018-05-28 17:55:58'), (1701, 1, '62.00', '2018-05-28 17:56:07'), (1702, 1, '65.00', '2018-05-28 17:56:16'), (1703, 1, '67.00', '2018-05-28 17:56:25'), (1704, 1, '87.00', '2018-05-28 17:56:34'), (1705, 1, '88.00', '2018-05-28 17:56:43'), (1706, 1, '87.00', '2018-05-28 17:56:52'), (1707, 1, '67.00', '2018-05-28 17:57:01'), (1708, 1, '66.00', '2018-05-28 17:57:10'), (1709, 1, '80.00', '2018-05-28 17:57:19'), (1710, 1, '96.00', '2018-05-28 17:57:28'), (1711, 1, '86.00', '2018-05-28 17:57:37'), (1712, 1, '89.00', '2018-05-28 17:57:46'), (1713, 1, '99.00', '2018-05-28 17:57:55'), (1714, 1, '85.00', '2018-05-28 17:58:04'), (1715, 1, '96.00', '2018-05-28 17:58:12'), (1716, 1, '87.00', '2018-05-28 17:58:21'), (1717, 1, '79.00', '2018-05-28 17:58:30'), (1718, 1, '86.00', '2018-05-28 17:58:39'), (1719, 1, '62.00', '2018-05-28 17:58:48'), (1720, 1, '78.00', '2018-05-28 17:58:57'), (1721, 1, '77.00', '2018-05-28 17:59:06'), (1722, 1, '71.00', '2018-05-28 17:59:15'), (1723, 1, '61.00', '2018-05-28 17:59:24'), (1724, 1, '92.00', '2018-05-28 17:59:33'), (1725, 1, '66.00', '2018-05-28 17:59:42'), (1726, 1, '90.00', '2018-05-28 17:59:51'), (1727, 1, '73.00', '2018-05-28 18:00:00'), (1728, 1, '98.00', '2018-05-28 18:00:09'), (1729, 1, '82.00', '2018-05-28 18:00:18'), (1730, 1, '77.00', '2018-05-28 18:00:27'), (1731, 1, '64.00', '2018-05-28 18:00:36'), (1732, 1, '93.00', '2018-05-28 18:00:45'), (1733, 1, '67.00', '2018-05-28 18:00:53'), (1734, 1, '80.00', '2018-05-28 18:01:02'), (1735, 1, '72.00', '2018-05-28 18:01:11'), (1736, 1, '70.00', '2018-05-28 18:01:20'), (1737, 1, '98.00', '2018-05-28 18:01:29'), (1738, 1, '97.00', '2018-05-28 18:01:38'), (1739, 1, '84.00', '2018-05-28 18:01:47'), (1740, 1, '68.00', '2018-05-28 18:01:56'), (1741, 1, '82.00', '2018-05-28 18:02:05'), (1742, 1, '92.00', '2018-05-28 18:02:14'), (1743, 1, '62.00', '2018-05-28 18:02:23'), (1744, 1, '82.00', '2018-05-29 09:13:47'), (1745, 1, '82.00', '2018-05-29 09:13:55'), (1746, 1, '94.00', '2018-05-29 09:14:04'), (1747, 1, '61.00', '2018-05-29 09:14:13'), (1748, 1, '91.00', '2018-05-29 09:14:22'), (1749, 1, '96.00', '2018-05-29 09:14:31'), (1750, 1, '66.00', '2018-05-29 09:14:40'), (1751, 1, '71.00', '2018-05-29 09:14:49'), (1752, 1, '69.00', '2018-05-29 09:14:58'), (1753, 1, '91.00', '2018-05-29 09:15:07'), (1754, 1, '67.00', '2018-05-29 09:15:16'), (1755, 1, '88.00', '2018-05-29 09:15:25'), (1756, 1, '90.00', '2018-05-29 09:15:34'), (1757, 1, '86.00', '2018-05-29 09:15:43'), (1758, 1, '66.00', '2018-05-29 09:15:52'), (1759, 1, '70.00', '2018-05-29 09:16:01'), (1760, 1, '67.00', '2018-05-29 09:16:10'), (1761, 1, '77.00', '2018-05-29 09:16:19'), (1762, 1, '68.00', '2018-05-29 09:16:28'), (1763, 1, '78.00', '2018-05-29 09:16:37'), (1764, 1, '61.00', '2018-05-29 09:16:46'), (1765, 1, '93.00', '2018-05-29 09:16:55'), (1766, 1, '76.00', '2018-05-29 09:17:04'), (1767, 1, '83.00', '2018-05-29 09:17:13'), (1768, 1, '66.00', '2018-05-29 09:17:22'), (1769, 1, '88.00', '2018-05-29 09:17:31'), (1770, 1, '98.00', '2018-05-29 09:17:40'), (1771, 1, '64.00', '2018-05-29 09:17:49'), (1772, 1, '71.00', '2018-05-29 09:17:58'), (1773, 1, '89.00', '2018-05-29 09:18:07'), (1774, 1, '84.00', '2018-05-29 09:18:16'), (1775, 1, '81.00', '2018-05-29 09:18:25'), (1776, 1, '67.00', '2018-05-29 09:18:34'), (1777, 1, '73.00', '2018-05-29 09:18:43'), (1778, 1, '66.00', '2018-05-29 09:18:52'), (1779, 1, '91.00', '2018-05-29 09:19:01'), (1780, 1, '95.00', '2018-05-29 09:19:10'), (1781, 1, '97.00', '2018-05-29 09:19:19'), (1782, 1, '72.00', '2018-05-29 09:19:28'), (1783, 1, '77.00', '2018-05-29 09:19:37'), (1784, 1, '64.00', '2018-05-29 09:19:46'), (1785, 1, '90.00', '2018-05-29 09:19:55'), (1786, 1, '81.00', '2018-05-29 09:20:04'), (1787, 1, '92.00', '2018-05-29 09:20:13'), (1788, 1, '62.00', '2018-05-29 09:20:22'), (1789, 1, '62.00', '2018-05-29 09:20:31'), (1790, 1, '72.00', '2018-05-29 09:20:40'), (1791, 1, '76.00', '2018-05-29 09:20:49'), (1792, 1, '88.00', '2018-05-29 09:20:58'), (1793, 1, '60.00', '2018-05-29 09:21:07'), (1794, 1, '89.00', '2018-05-29 09:21:16'), (1795, 1, '81.00', '2018-05-29 09:21:25'), (1796, 1, '61.00', '2018-05-29 09:21:34'), (1797, 1, '88.00', '2018-05-29 09:21:43'), (1798, 1, '89.00', '2018-05-29 09:21:52'), (1799, 1, '94.00', '2018-05-29 09:22:01'), (1800, 1, '83.00', '2018-05-29 09:22:10'), (1801, 1, '87.00', '2018-05-29 09:22:19'), (1802, 1, '75.00', '2018-05-29 09:22:28'), (1803, 1, '89.00', '2018-05-29 09:22:37'), (1804, 1, '88.00', '2018-05-29 09:22:46'), (1805, 1, '67.00', '2018-05-29 09:22:55'), (1806, 1, '74.00', '2018-05-29 09:23:04'), (1807, 1, '89.00', '2018-05-29 09:23:13'), (1808, 1, '61.00', '2018-05-29 09:23:22'), (1809, 1, '81.00', '2018-05-29 09:23:31'), (1810, 1, '81.00', '2018-05-29 09:23:40'), (1811, 1, '72.00', '2018-05-29 09:23:49'), (1812, 1, '76.00', '2018-05-29 09:23:58'), (1813, 1, '81.00', '2018-05-29 09:24:06'), (1814, 1, '88.00', '2018-05-29 09:24:15'), (1815, 1, '69.00', '2018-05-29 09:24:24'), (1816, 1, '80.00', '2018-05-29 09:24:33'), (1817, 1, '98.00', '2018-05-29 09:24:42'), (1818, 1, '65.00', '2018-05-29 09:24:51'), (1819, 1, '80.00', '2018-05-29 09:25:00'), (1820, 1, '97.00', '2018-05-29 09:25:09'), (1821, 1, '66.00', '2018-05-29 09:25:18'), (1822, 1, '74.00', '2018-05-29 09:25:27'), (1823, 1, '65.00', '2018-05-29 09:25:36'), (1824, 1, '79.00', '2018-05-29 09:25:45'), (1825, 1, '88.00', '2018-05-29 09:25:54'), (1826, 1, '68.00', '2018-05-29 09:26:03'), (1827, 1, '63.00', '2018-05-29 09:26:12'), (1828, 1, '67.00', '2018-05-29 09:26:21'), (1829, 1, '70.00', '2018-05-29 09:26:30'), (1830, 1, '95.00', '2018-05-29 09:26:38'), (1831, 1, '99.00', '2018-05-29 09:26:47'), (1832, 1, '98.00', '2018-05-29 09:26:56'), (1833, 1, '82.00', '2018-05-29 09:27:05'), (1834, 1, '70.00', '2018-05-29 09:27:14'), (1835, 1, '82.00', '2018-05-29 09:27:23'), (1836, 1, '85.00', '2018-05-29 09:27:32'), (1837, 1, '96.00', '2018-05-29 09:27:41'), (1838, 1, '88.00', '2018-05-29 09:27:50'), (1839, 1, '86.00', '2018-05-29 09:27:59'), (1840, 1, '76.00', '2018-05-29 09:28:08'), (1841, 1, '92.00', '2018-05-29 09:28:17'), (1842, 1, '68.00', '2018-05-29 09:28:26'), (1843, 1, '85.00', '2018-05-29 09:28:35'), (1844, 1, '99.00', '2018-05-29 09:28:44'), (1845, 1, '93.00', '2018-05-29 09:28:53'), (1846, 1, '88.00', '2018-05-29 09:29:02'), (1847, 1, '69.00', '2018-05-29 09:29:11'), (1848, 1, '91.00', '2018-05-29 09:29:20'), (1849, 1, '97.00', '2018-05-29 09:29:29'), (1850, 1, '88.00', '2018-05-29 09:29:38'), (1851, 1, '69.00', '2018-05-29 09:29:47'), (1852, 1, '81.00', '2018-05-29 09:29:56'), (1853, 1, '85.00', '2018-05-29 09:30:04'), (1854, 1, '63.00', '2018-05-29 09:30:13'), (1855, 1, '79.00', '2018-05-29 09:30:22'), (1856, 1, '65.00', '2018-05-29 09:30:31'), (1857, 1, '69.00', '2018-05-29 09:30:40'), (1858, 1, '63.00', '2018-05-29 09:30:49'), (1859, 1, '97.00', '2018-05-29 09:30:58'), (1860, 1, '61.00', '2018-05-29 09:31:07'), (1861, 1, '79.00', '2018-05-29 09:31:16'), (1862, 1, '94.00', '2018-05-29 09:31:25'), (1863, 1, '89.00', '2018-05-29 09:31:34'), (1864, 1, '82.00', '2018-05-29 09:31:43'), (1865, 1, '93.00', '2018-05-29 09:31:52'), (1866, 1, '92.00', '2018-05-29 09:32:01'), (1867, 1, '65.00', '2018-05-29 09:32:10'), (1868, 1, '73.00', '2018-05-29 09:32:19'), (1869, 1, '71.00', '2018-05-29 09:32:28'), (1870, 1, '64.00', '2018-05-29 09:32:37'), (1871, 1, '89.00', '2018-05-29 09:32:46'), (1872, 1, '77.00', '2018-05-29 09:32:55'), (1873, 1, '94.00', '2018-05-29 09:33:04'), (1874, 1, '82.00', '2018-05-29 09:33:13'), (1875, 1, '93.00', '2018-05-29 09:33:21'), (1876, 1, '74.00', '2018-05-29 09:33:30'), (1877, 1, '63.00', '2018-05-29 09:33:39'), (1878, 1, '83.00', '2018-05-29 09:33:49'), (1879, 1, '98.00', '2018-05-29 09:33:58'), (1880, 1, '64.00', '2018-05-29 09:34:07'), (1881, 1, '72.00', '2018-05-29 09:34:15'), (1882, 1, '64.00', '2018-05-29 09:34:24'), (1883, 1, '89.00', '2018-05-29 09:34:33'), (1884, 1, '98.00', '2018-05-29 09:34:42'), (1885, 1, '66.00', '2018-05-29 09:34:51'), (1886, 1, '77.00', '2018-05-29 09:35:00'), (1887, 1, '96.00', '2018-05-29 09:35:09'), (1888, 1, '95.00', '2018-05-29 09:35:18'), (1889, 1, '89.00', '2018-05-29 09:35:27'), (1890, 1, '97.00', '2018-05-29 09:35:36'), (1891, 1, '67.00', '2018-05-29 09:35:45'), (1892, 1, '89.00', '2018-05-29 09:35:54'), (1893, 1, '76.00', '2018-05-29 09:36:03'), (1894, 1, '98.00', '2018-05-29 09:36:12'), (1895, 1, '89.00', '2018-05-29 09:36:21'), (1896, 1, '91.00', '2018-05-29 09:36:30'), (1897, 1, '87.00', '2018-05-29 09:36:39'), (1898, 1, '79.00', '2018-05-29 09:36:48'), (1899, 1, '64.00', '2018-05-29 09:36:57'), (1900, 1, '81.00', '2018-05-29 09:37:05'), (1901, 1, '80.00', '2018-05-29 09:37:14'), (1902, 1, '64.00', '2018-05-29 09:37:23'), (1903, 1, '83.00', '2018-05-29 09:37:32'), (1904, 1, '64.00', '2018-05-29 09:37:41'), (1905, 1, '87.00', '2018-05-29 09:37:50'), (1906, 1, '84.00', '2018-05-29 09:37:59'), (1907, 1, '64.00', '2018-05-29 09:38:08'), (1908, 1, '98.00', '2018-05-29 09:38:17'), (1909, 1, '96.00', '2018-05-29 09:38:26'), (1910, 1, '96.00', '2018-05-29 09:38:35'), (1911, 1, '82.00', '2018-05-29 09:38:44'), (1912, 1, '88.00', '2018-05-29 09:38:53'), (1913, 1, '64.00', '2018-05-29 09:39:02'), (1914, 1, '70.00', '2018-05-29 09:39:11'), (1915, 1, '97.00', '2018-05-29 09:39:20'), (1916, 1, '88.00', '2018-05-29 09:39:29'), (1917, 1, '62.00', '2018-05-29 09:39:38'), (1918, 1, '98.00', '2018-05-29 09:39:47'), (1919, 1, '91.00', '2018-05-29 09:39:56'), (1920, 1, '66.00', '2018-05-29 09:40:04'), (1921, 1, '64.00', '2018-05-29 09:40:13'), (1922, 1, '64.00', '2018-05-29 09:40:23'), (1923, 1, '99.00', '2018-05-29 09:40:32'), (1924, 1, '63.00', '2018-05-29 09:40:41'), (1925, 1, '61.00', '2018-05-29 09:40:50'), (1926, 1, '81.00', '2018-05-29 09:40:59'), (1927, 1, '66.00', '2018-05-29 09:41:08'), (1928, 1, '80.00', '2018-05-29 09:41:17'), (1929, 1, '96.00', '2018-05-29 09:41:25'), (1930, 1, '64.00', '2018-05-29 09:41:34'), (1931, 1, '75.00', '2018-05-29 09:41:43'), (1932, 1, '64.00', '2018-05-29 09:41:52'), (1933, 1, '97.00', '2018-05-29 09:42:01'), (1934, 1, '98.00', '2018-05-29 09:42:10'), (1935, 1, '77.00', '2018-05-29 09:42:19'), (1936, 1, '82.00', '2018-05-29 09:42:28'), (1937, 1, '82.00', '2018-05-29 09:42:37'), (1938, 1, '79.00', '2018-05-29 09:42:46'), (1939, 1, '66.00', '2018-05-29 09:42:55'), (1940, 1, '75.00', '2018-05-29 09:43:04'), (1941, 1, '72.00', '2018-05-29 09:43:13'), (1942, 1, '61.00', '2018-05-29 09:43:22'), (1943, 1, '90.00', '2018-05-29 09:43:31'), (1944, 1, '66.00', '2018-05-29 09:43:40'), (1945, 1, '68.00', '2018-05-29 09:43:49'), (1946, 1, '74.00', '2018-05-29 09:43:58'), (1947, 1, '95.00', '2018-05-29 09:44:07'), (1948, 1, '85.00', '2018-05-29 09:44:16'), (1949, 1, '67.00', '2018-05-29 09:44:25'), (1950, 1, '82.00', '2018-05-29 09:44:34'), (1951, 1, '73.00', '2018-05-29 09:44:43'), (1952, 1, '80.00', '2018-05-29 09:44:52'), (1953, 1, '94.00', '2018-05-29 09:45:01'), (1954, 1, '64.00', '2018-05-29 09:45:10'), (1955, 1, '89.00', '2018-05-29 09:45:19'), (1956, 1, '91.00', '2018-05-29 09:45:28'), (1957, 1, '70.00', '2018-05-29 09:45:37'), (1958, 1, '62.00', '2018-05-29 09:45:46'), (1959, 1, '94.00', '2018-05-29 09:45:55'), (1960, 1, '74.00', '2018-05-29 09:46:04'), (1961, 1, '69.00', '2018-05-29 09:46:13'), (1962, 1, '72.00', '2018-05-29 09:46:22'), (1963, 1, '96.00', '2018-05-29 09:46:31'), (1964, 1, '60.00', '2018-05-29 09:46:40'), (1965, 1, '98.00', '2018-05-29 09:46:49'), (1966, 1, '92.00', '2018-05-29 09:46:58'), (1967, 1, '89.00', '2018-05-29 09:47:07'), (1968, 1, '88.00', '2018-05-29 09:47:16'), (1969, 1, '64.00', '2018-05-29 09:47:25'), (1970, 1, '75.00', '2018-05-29 09:47:34'), (1971, 1, '65.00', '2018-05-29 09:47:43'), (1972, 1, '65.00', '2018-05-29 09:47:52'), (1973, 1, '77.00', '2018-05-29 09:48:01'), (1974, 1, '92.00', '2018-05-29 09:48:09'), (1975, 1, '69.00', '2018-05-29 09:48:18'), (1976, 1, '72.00', '2018-05-29 09:48:27'), (1977, 1, '73.00', '2018-05-29 09:48:36'), (1978, 1, '95.00', '2018-05-29 09:48:45'), (1979, 1, '72.00', '2018-05-29 09:48:54'), (1980, 1, '82.00', '2018-05-29 09:49:03'), (1981, 1, '78.00', '2018-05-29 09:49:12'), (1982, 1, '69.00', '2018-05-29 09:49:21'), (1983, 1, '71.00', '2018-05-29 09:49:30'), (1984, 1, '74.00', '2018-05-29 09:49:39'), (1985, 1, '62.00', '2018-05-29 09:49:48'), (1986, 1, '72.00', '2018-05-29 09:49:57'), (1987, 1, '93.00', '2018-05-29 09:50:06'), (1988, 1, '81.00', '2018-05-29 09:50:15'), (1989, 1, '73.00', '2018-05-29 09:50:24'), (1990, 1, '80.00', '2018-05-29 09:50:33'), (1991, 1, '94.00', '2018-05-29 09:50:42'), (1992, 1, '85.00', '2018-05-29 09:50:51'), (1993, 1, '94.00', '2018-05-29 09:51:00'), (1994, 1, '88.00', '2018-05-29 09:51:09'), (1995, 1, '98.00', '2018-05-29 09:51:18'), (1996, 1, '86.00', '2018-05-29 09:51:27'), (1997, 1, '88.00', '2018-05-29 09:51:36'), (1998, 1, '71.00', '2018-05-29 09:51:45'), (1999, 1, '89.00', '2018-05-29 09:51:54'), (2000, 1, '72.00', '2018-05-29 09:52:03'), (2001, 1, '98.00', '2018-05-29 09:52:12'), (2002, 1, '70.00', '2018-05-29 09:52:21'), (2003, 1, '91.00', '2018-05-29 09:52:30'), (2004, 1, '84.00', '2018-05-29 09:52:39'), (2005, 1, '83.00', '2018-05-29 09:52:48'), (2006, 1, '98.00', '2018-05-29 09:52:56'), (2007, 1, '80.00', '2018-05-29 09:53:05'), (2008, 1, '93.00', '2018-05-29 09:53:14'), (2009, 1, '68.00', '2018-05-29 09:53:23'), (2010, 1, '96.00', '2018-05-29 09:53:32'), (2011, 1, '96.00', '2018-05-29 09:53:41'), (2012, 1, '92.00', '2018-05-29 09:53:50'), (2013, 1, '77.00', '2018-05-29 09:53:59'), (2014, 1, '63.00', '2018-05-29 09:54:08'), (2015, 1, '67.00', '2018-05-29 09:54:17'), (2016, 1, '68.00', '2018-05-29 09:54:26'), (2017, 1, '81.00', '2018-05-29 09:54:35'), (2018, 1, '98.00', '2018-05-29 09:54:44'), (2019, 1, '78.00', '2018-05-29 09:54:53'), (2020, 1, '64.00', '2018-05-29 09:55:02'), (2021, 1, '86.00', '2018-05-29 09:55:11'), (2022, 1, '82.00', '2018-05-29 09:55:20'), (2023, 1, '70.00', '2018-05-29 09:55:29'), (2024, 1, '85.00', '2018-05-29 09:55:38'), (2025, 1, '68.00', '2018-05-29 09:55:47'), (2026, 1, '68.00', '2018-05-29 09:55:56'), (2027, 1, '69.00', '2018-05-29 09:56:05'), (2028, 1, '88.00', '2018-05-29 09:56:13'), (2029, 1, '98.00', '2018-05-29 09:56:22'), (2030, 1, '77.00', '2018-05-29 09:56:31'), (2031, 1, '65.00', '2018-05-29 09:56:41'), (2032, 1, '69.00', '2018-05-29 09:56:50'), (2033, 1, '64.00', '2018-05-29 09:56:58'), (2034, 1, '73.00', '2018-05-29 09:57:07'), (2035, 1, '80.00', '2018-05-29 09:57:16'), (2036, 1, '86.00', '2018-05-29 09:57:25'), (2037, 1, '84.00', '2018-05-29 09:57:35'), (2038, 1, '97.00', '2018-05-29 09:57:44'), (2039, 1, '63.00', '2018-05-29 09:57:53'), (2040, 1, '72.00', '2018-05-29 09:58:02'), (2041, 1, '87.00', '2018-05-29 09:58:11'), (2042, 1, '87.00', '2018-05-29 09:58:20'), (2043, 1, '93.00', '2018-05-29 09:58:29'), (2044, 1, '79.00', '2018-05-29 09:58:38'), (2045, 1, '66.00', '2018-05-29 09:58:47'), (2046, 1, '73.00', '2018-05-29 09:58:56'), (2047, 1, '98.00', '2018-05-29 09:59:05'), (2048, 1, '97.00', '2018-05-29 09:59:13'), (2049, 1, '71.00', '2018-05-29 09:59:22'), (2050, 1, '60.00', '2018-05-29 09:59:31'), (2051, 1, '87.00', '2018-05-29 09:59:40'), (2052, 1, '72.00', '2018-05-29 09:59:49'), (2053, 1, '69.00', '2018-05-29 09:59:58'), (2054, 1, '96.00', '2018-05-29 10:00:07'), (2055, 1, '61.00', '2018-05-29 10:00:16'), (2056, 1, '88.00', '2018-05-29 10:00:25'), (2057, 1, '68.00', '2018-05-29 10:00:34'), (2058, 1, '89.00', '2018-05-29 10:00:43'), (2059, 1, '77.00', '2018-05-29 10:00:52'), (2060, 1, '63.00', '2018-05-29 10:01:01'), (2061, 1, '92.00', '2018-05-29 10:01:10'), (2062, 1, '75.00', '2018-05-29 10:01:19'), (2063, 1, '68.00', '2018-05-29 10:01:28'), (2064, 1, '60.00', '2018-05-29 10:01:37'), (2065, 1, '86.00', '2018-05-29 10:01:46'), (2066, 1, '99.00', '2018-05-29 10:01:55'), (2067, 1, '99.00', '2018-05-29 10:02:04'), (2068, 1, '84.00', '2018-05-29 10:02:13'), (2069, 1, '82.00', '2018-05-29 10:02:22'), (2070, 1, '92.00', '2018-05-29 10:02:31'), (2071, 1, '73.00', '2018-05-29 10:02:40'), (2072, 1, '60.00', '2018-05-29 10:02:49'), (2073, 1, '70.00', '2018-05-29 10:02:58'), (2074, 1, '83.00', '2018-05-29 10:03:07'), (2075, 1, '93.00', '2018-05-29 10:03:16'), (2076, 1, '92.00', '2018-05-29 10:03:25'), (2077, 1, '84.00', '2018-05-29 10:03:34'), (2078, 1, '66.00', '2018-05-29 10:03:42'), (2079, 1, '63.00', '2018-05-29 10:03:51'), (2080, 1, '63.00', '2018-05-29 10:04:00'), (2081, 1, '98.00', '2018-05-29 10:04:09'), (2082, 1, '66.00', '2018-05-29 10:04:18'), (2083, 1, '94.00', '2018-05-29 10:04:27'), (2084, 1, '89.00', '2018-05-29 10:04:36'), (2085, 1, '99.00', '2018-05-29 10:04:45'), (2086, 1, '88.00', '2018-05-29 10:04:54'), (2087, 1, '74.00', '2018-05-29 10:05:03'), (2088, 1, '84.00', '2018-05-29 10:05:12'), (2089, 1, '91.00', '2018-05-29 10:05:21'), (2090, 1, '73.00', '2018-05-29 10:05:30'), (2091, 1, '88.00', '2018-05-29 10:05:39'), (2092, 1, '91.00', '2018-05-29 10:05:48'), (2093, 1, '67.00', '2018-05-29 10:05:57'), (2094, 1, '86.00', '2018-05-29 10:06:06'), (2095, 1, '93.00', '2018-05-29 10:06:14'), (2096, 1, '67.00', '2018-05-29 10:06:23'), (2097, 1, '93.00', '2018-05-29 10:06:32'), (2098, 1, '78.00', '2018-05-29 10:06:41'), (2099, 1, '61.00', '2018-05-29 10:06:50'), (2100, 1, '67.00', '2018-05-29 10:06:59'), (2101, 1, '91.00', '2018-05-29 10:07:08'), (2102, 1, '73.00', '2018-05-29 10:07:17'), (2103, 1, '73.00', '2018-05-29 10:07:26'), (2104, 1, '98.00', '2018-05-29 10:07:35'), (2105, 1, '96.00', '2018-05-29 10:07:44'), (2106, 1, '67.00', '2018-05-29 10:07:53'), (2107, 1, '72.00', '2018-05-29 10:08:02'), (2108, 1, '88.00', '2018-05-29 10:08:11'), (2109, 1, '89.00', '2018-05-29 10:08:20'), (2110, 1, '85.00', '2018-05-29 10:08:29'), (2111, 1, '93.00', '2018-05-29 10:08:37'), (2112, 1, '69.00', '2018-05-29 10:08:46'), (2113, 1, '94.00', '2018-05-29 10:08:55'), (2114, 1, '89.00', '2018-05-29 10:09:04'), (2115, 1, '62.00', '2018-05-29 10:09:13'), (2116, 1, '88.00', '2018-05-29 10:09:22'), (2117, 1, '66.00', '2018-05-29 10:09:31'), (2118, 1, '60.00', '2018-05-29 10:09:40'), (2119, 1, '80.00', '2018-05-29 10:09:49'), (2120, 1, '74.00', '2018-05-29 10:09:58'), (2121, 1, '73.00', '2018-05-29 10:10:07'), (2122, 1, '65.00', '2018-05-29 10:10:16'), (2123, 1, '62.00', '2018-05-29 10:10:25'), (2124, 1, '79.00', '2018-05-29 10:10:34'), (2125, 1, '86.00', '2018-05-29 10:10:42'), (2126, 1, '71.00', '2018-05-29 10:10:52'), (2127, 1, '68.00', '2018-05-29 10:11:00'), (2128, 1, '91.00', '2018-05-29 10:11:09'), (2129, 1, '94.00', '2018-05-29 10:11:18'), (2130, 1, '92.00', '2018-05-29 10:11:27'), (2131, 1, '64.00', '2018-05-29 10:11:36'), (2132, 1, '97.00', '2018-05-29 10:11:45'), (2133, 1, '60.00', '2018-05-29 10:11:54'), (2134, 1, '60.00', '2018-05-29 10:12:03'), (2135, 1, '94.00', '2018-05-29 10:12:12'), (2136, 1, '72.00', '2018-05-29 10:12:21'), (2137, 1, '81.00', '2018-05-29 10:12:30'), (2138, 1, '71.00', '2018-05-29 10:12:39'), (2139, 1, '63.00', '2018-05-29 10:12:48'), (2140, 1, '69.00', '2018-05-29 10:12:58'), (2141, 1, '90.00', '2018-05-29 10:13:07'), (2142, 1, '65.00', '2018-05-29 10:13:16'), (2143, 1, '81.00', '2018-05-29 10:13:25'), (2144, 1, '76.00', '2018-05-29 10:13:34'), (2145, 1, '70.00', '2018-05-29 10:13:43'), (2146, 1, '97.00', '2018-05-29 10:13:52'), (2147, 1, '74.00', '2018-05-29 10:14:01'), (2148, 1, '68.00', '2018-05-29 10:14:10'), (2149, 1, '66.00', '2018-05-29 10:14:19'), (2150, 1, '82.00', '2018-05-29 10:14:28'), (2151, 1, '93.00', '2018-05-29 10:14:37'), (2152, 1, '78.00', '2018-05-29 10:14:46'), (2153, 1, '93.00', '2018-05-29 10:14:55'), (2154, 1, '92.00', '2018-05-29 10:15:04'), (2155, 1, '66.00', '2018-05-29 10:15:13'), (2156, 1, '76.00', '2018-05-29 10:15:22'), (2157, 1, '70.00', '2018-05-29 10:15:31'), (2158, 1, '98.00', '2018-05-29 10:15:40'), (2159, 1, '73.00', '2018-05-29 10:15:49'), (2160, 1, '79.00', '2018-05-29 10:15:58'), (2161, 1, '98.00', '2018-05-29 10:16:07'), (2162, 1, '98.00', '2018-05-29 10:16:16'), (2163, 1, '73.00', '2018-05-29 10:16:25'), (2164, 1, '74.00', '2018-05-29 10:16:34'), (2165, 1, '74.00', '2018-05-29 10:16:43'), (2166, 1, '79.00', '2018-05-29 10:16:52'), (2167, 1, '84.00', '2018-05-29 10:17:00'), (2168, 1, '83.00', '2018-05-29 10:17:09'), (2169, 1, '70.00', '2018-05-29 10:17:18'), (2170, 1, '72.00', '2018-05-29 10:17:27'), (2171, 1, '97.00', '2018-05-29 10:17:36'), (2172, 1, '78.00', '2018-05-29 10:17:45'), (2173, 1, '89.00', '2018-05-29 10:17:54'), (2174, 1, '81.00', '2018-05-29 10:18:03'), (2175, 1, '67.00', '2018-05-29 10:18:12'), (2176, 1, '94.00', '2018-05-29 10:18:21'), (2177, 1, '97.00', '2018-05-29 10:18:30'), (2178, 1, '96.00', '2018-05-29 10:18:39'), (2179, 1, '61.00', '2018-05-29 10:18:48'), (2180, 1, '92.00', '2018-05-29 10:18:57'), (2181, 1, '85.00', '2018-05-29 10:19:06'), (2182, 1, '97.00', '2018-05-29 10:19:15'), (2183, 1, '60.00', '2018-05-29 10:19:24'), (2184, 1, '71.00', '2018-05-29 10:19:33'), (2185, 1, '76.00', '2018-05-29 10:19:42'), (2186, 1, '62.00', '2018-05-29 10:19:51'), (2187, 1, '88.00', '2018-05-29 10:20:00'), (2188, 1, '70.00', '2018-05-29 10:20:09'), (2189, 1, '93.00', '2018-05-29 10:20:18'), (2190, 1, '82.00', '2018-05-29 10:20:27'), (2191, 1, '88.00', '2018-05-29 10:20:35'), (2192, 1, '89.00', '2018-05-29 10:20:44'), (2193, 1, '81.00', '2018-05-29 10:20:53'), (2194, 1, '81.00', '2018-05-29 10:21:02'), (2195, 1, '82.00', '2018-05-29 10:21:11'), (2196, 1, '92.00', '2018-05-29 10:21:20'), (2197, 1, '87.00', '2018-05-29 10:21:29'), (2198, 1, '84.00', '2018-05-29 10:21:38'), (2199, 1, '80.00', '2018-05-29 10:21:47'), (2200, 1, '83.00', '2018-05-29 10:21:56'), (2201, 1, '74.00', '2018-05-29 10:22:05'), (2202, 1, '67.00', '2018-05-29 10:22:14'), (2203, 1, '67.00', '2018-05-29 10:22:23'), (2204, 1, '83.00', '2018-05-29 10:22:32'), (2205, 1, '70.00', '2018-05-29 10:22:41'), (2206, 1, '88.00', '2018-05-29 10:22:50'), (2207, 1, '91.00', '2018-05-29 10:22:59'), (2208, 1, '63.00', '2018-05-29 10:23:08'), (2209, 1, '82.00', '2018-05-29 10:23:17'), (2210, 1, '62.00', '2018-05-29 10:23:26'), (2211, 1, '71.00', '2018-05-29 10:23:35'), (2212, 1, '78.00', '2018-05-29 10:23:44'), (2213, 1, '93.00', '2018-05-29 10:23:53'), (2214, 1, '99.00', '2018-05-29 10:24:02'), (2215, 1, '98.00', '2018-05-29 10:24:11'), (2216, 1, '95.00', '2018-05-29 10:24:20'), (2217, 1, '95.00', '2018-05-29 10:24:29'), (2218, 1, '76.00', '2018-05-29 10:24:38'), (2219, 1, '92.00', '2018-05-29 10:24:47'), (2220, 1, '60.00', '2018-05-29 10:24:56'), (2221, 1, '92.00', '2018-05-29 10:25:05'), (2222, 1, '67.00', '2018-05-29 10:25:14'), (2223, 1, '69.00', '2018-05-29 10:25:23'), (2224, 1, '66.00', '2018-05-29 10:25:32'), (2225, 1, '63.00', '2018-05-29 10:25:41'), (2226, 1, '97.00', '2018-05-29 10:25:50'), (2227, 1, '91.00', '2018-05-29 10:25:59'), (2228, 1, '70.00', '2018-05-29 10:26:08'), (2229, 1, '64.00', '2018-05-29 10:26:17'), (2230, 1, '76.00', '2018-05-29 10:26:27'), (2231, 1, '64.00', '2018-05-29 10:26:36'), (2232, 1, '90.00', '2018-05-29 10:26:45'), (2233, 1, '82.00', '2018-05-29 10:26:54'), (2234, 1, '97.00', '2018-05-29 10:27:03'), (2235, 1, '97.00', '2018-05-29 10:27:12'), (2236, 1, '85.00', '2018-05-29 10:27:20'), (2237, 1, '61.00', '2018-05-29 10:27:29'), (2238, 1, '99.00', '2018-05-29 10:27:38'), (2239, 1, '68.00', '2018-05-29 10:27:47'), (2240, 1, '94.00', '2018-05-29 10:27:56'), (2241, 1, '86.00', '2018-05-29 10:28:05'), (2242, 1, '69.00', '2018-05-29 10:28:14'), (2243, 1, '84.00', '2018-05-29 10:28:24'), (2244, 1, '64.00', '2018-05-29 10:28:33'), (2245, 1, '78.00', '2018-05-29 10:28:42'), (2246, 1, '87.00', '2018-05-29 10:28:51'), (2247, 1, '92.00', '2018-05-29 10:29:00'), (2248, 1, '95.00', '2018-05-29 10:29:09'), (2249, 1, '87.00', '2018-05-29 10:29:18'), (2250, 1, '97.00', '2018-05-29 10:29:27'), (2251, 1, '96.00', '2018-05-29 10:29:36'), (2252, 1, '99.00', '2018-05-29 10:29:45'), (2253, 1, '78.00', '2018-05-29 10:29:54'), (2254, 1, '93.00', '2018-05-29 10:30:03'), (2255, 1, '88.00', '2018-05-29 10:30:12'), (2256, 1, '91.00', '2018-05-29 10:30:21'), (2257, 1, '77.00', '2018-05-29 10:30:30'), (2258, 1, '64.00', '2018-05-29 10:30:39'), (2259, 1, '74.00', '2018-05-29 10:30:48'), (2260, 1, '78.00', '2018-05-29 10:30:57'), (2261, 1, '82.00', '2018-05-29 10:31:06'), (2262, 1, '96.00', '2018-05-29 10:31:15'), (2263, 1, '86.00', '2018-05-29 10:31:24'), (2264, 1, '77.00', '2018-05-29 10:31:33'), (2265, 1, '76.00', '2018-05-29 10:31:41'), (2266, 1, '96.00', '2018-05-29 10:31:50'), (2267, 1, '65.00', '2018-05-29 10:31:59'), (2268, 1, '95.00', '2018-05-29 10:32:08'), (2269, 1, '93.00', '2018-05-29 10:32:18'), (2270, 1, '97.00', '2018-05-29 10:32:27'), (2271, 1, '98.00', '2018-05-29 10:32:36'), (2272, 1, '71.00', '2018-05-29 10:32:45'), (2273, 1, '66.00', '2018-05-29 10:32:54'), (2274, 1, '83.00', '2018-05-29 10:33:03'), (2275, 1, '94.00', '2018-05-29 10:33:12'), (2276, 1, '85.00', '2018-05-29 10:33:21'), (2277, 1, '73.00', '2018-05-29 10:33:30'), (2278, 1, '86.00', '2018-05-29 10:33:39'), (2279, 1, '77.00', '2018-05-29 10:33:48'), (2280, 1, '64.00', '2018-05-29 10:33:57'), (2281, 1, '90.00', '2018-05-29 10:34:06'), (2282, 1, '82.00', '2018-05-29 10:34:15'), (2283, 1, '65.00', '2018-05-29 10:34:24'), (2284, 1, '82.00', '2018-05-29 10:34:33'), (2285, 1, '75.00', '2018-05-29 10:34:42'), (2286, 1, '94.00', '2018-05-29 10:34:51'), (2287, 1, '86.00', '2018-05-29 10:35:00'), (2288, 1, '70.00', '2018-05-29 10:35:09'), (2289, 1, '60.00', '2018-05-29 10:35:18'), (2290, 1, '62.00', '2018-05-29 10:35:26'), (2291, 1, '60.00', '2018-05-29 10:35:35'), (2292, 1, '77.00', '2018-05-29 10:35:44'), (2293, 1, '68.00', '2018-05-29 10:35:53'), (2294, 1, '88.00', '2018-05-29 10:36:02'), (2295, 1, '96.00', '2018-05-29 10:36:11'), (2296, 1, '60.00', '2018-05-29 10:36:20'), (2297, 1, '91.00', '2018-05-29 10:36:29'), (2298, 1, '61.00', '2018-05-29 10:36:38'), (2299, 1, '79.00', '2018-05-29 10:36:47'), (2300, 1, '67.00', '2018-05-29 10:36:56'), (2301, 1, '79.00', '2018-05-29 10:37:05'), (2302, 1, '81.00', '2018-05-29 10:37:14'), (2303, 1, '73.00', '2018-05-29 10:37:23'), (2304, 1, '64.00', '2018-05-29 10:37:32'), (2305, 1, '67.00', '2018-05-29 10:37:41'), (2306, 1, '80.00', '2018-05-29 10:37:50'), (2307, 1, '67.00', '2018-05-29 10:37:59'), (2308, 1, '62.00', '2018-05-29 10:38:08'), (2309, 1, '67.00', '2018-05-29 10:38:17'), (2310, 1, '93.00', '2018-05-29 10:38:26'), (2311, 1, '61.00', '2018-05-29 10:38:35'), (2312, 1, '68.00', '2018-05-29 10:38:44'), (2313, 1, '79.00', '2018-05-29 10:38:53'), (2314, 1, '73.00', '2018-05-29 10:39:02'), (2315, 1, '92.00', '2018-05-29 10:39:12'), (2316, 1, '73.00', '2018-05-29 10:39:21'), (2317, 1, '62.00', '2018-05-29 10:39:30'), (2318, 1, '91.00', '2018-05-29 10:39:39'), (2319, 1, '94.00', '2018-05-29 10:39:47'), (2320, 1, '74.00', '2018-05-29 10:39:56'), (2321, 1, '72.00', '2018-05-29 10:40:05'), (2322, 1, '62.00', '2018-05-29 10:40:14'), (2323, 1, '69.00', '2018-05-29 10:40:23'), (2324, 1, '78.00', '2018-05-29 10:40:32'), (2325, 1, '90.00', '2018-05-29 10:40:41'), (2326, 1, '74.00', '2018-05-29 10:40:50'), (2327, 1, '60.00', '2018-05-29 10:40:59'), (2328, 1, '61.00', '2018-05-29 10:41:08'), (2329, 1, '97.00', '2018-05-29 10:41:17'), (2330, 1, '68.00', '2018-05-29 10:41:26'), (2331, 1, '69.00', '2018-05-29 10:41:35'), (2332, 1, '77.00', '2018-05-29 10:41:44'), (2333, 1, '84.00', '2018-05-29 10:41:53'), (2334, 1, '61.00', '2018-05-29 10:42:02'), (2335, 1, '73.00', '2018-05-29 10:42:11'), (2336, 1, '73.00', '2018-05-29 10:42:20'), (2337, 1, '98.00', '2018-05-29 10:42:29'), (2338, 1, '81.00', '2018-05-29 10:42:38'), (2339, 1, '87.00', '2018-05-29 10:42:47'), (2340, 1, '65.00', '2018-05-29 10:42:56'), (2341, 1, '87.00', '2018-05-29 10:43:05'), (2342, 1, '88.00', '2018-05-29 10:43:14'), (2343, 1, '87.00', '2018-05-29 10:43:23'), (2344, 1, '70.00', '2018-05-29 10:43:32'), (2345, 1, '78.00', '2018-05-29 10:43:41'), (2346, 1, '91.00', '2018-05-29 10:43:50'), (2347, 1, '66.00', '2018-05-29 10:43:59'), (2348, 1, '68.00', '2018-05-29 10:44:08'), (2349, 1, '89.00', '2018-05-29 10:44:16'), (2350, 1, '70.00', '2018-05-29 10:44:25'), (2351, 1, '77.00', '2018-05-29 10:44:34'), (2352, 1, '71.00', '2018-05-29 10:44:43'), (2353, 1, '74.00', '2018-05-29 10:44:52'), (2354, 1, '87.00', '2018-05-29 10:45:01'), (2355, 1, '65.00', '2018-05-29 10:45:10'), (2356, 1, '94.00', '2018-05-29 10:45:19'), (2357, 1, '69.00', '2018-05-29 10:45:28'), (2358, 1, '62.00', '2018-05-29 10:45:38'), (2359, 1, '97.00', '2018-05-29 10:45:47'), (2360, 1, '76.00', '2018-05-29 10:45:56'), (2361, 1, '64.00', '2018-05-29 10:46:05'), (2362, 1, '79.00', '2018-05-29 10:46:14'), (2363, 1, '99.00', '2018-05-29 10:46:23'), (2364, 1, '93.00', '2018-05-29 10:46:31'), (2365, 1, '92.00', '2018-05-29 10:46:40'), (2366, 1, '79.00', '2018-05-29 10:46:49'), (2367, 1, '66.00', '2018-05-29 10:46:58'), (2368, 1, '94.00', '2018-05-29 10:47:07'), (2369, 1, '76.00', '2018-05-29 10:47:16'), (2370, 1, '93.00', '2018-05-29 10:47:25'), (2371, 1, '68.00', '2018-05-29 10:47:34'), (2372, 1, '62.00', '2018-05-29 10:47:43'), (2373, 1, '60.00', '2018-05-29 10:47:52'), (2374, 1, '86.00', '2018-05-29 10:48:01'), (2375, 1, '76.00', '2018-05-29 10:48:10'), (2376, 1, '82.00', '2018-05-29 10:48:19'), (2377, 1, '85.00', '2018-05-29 10:48:28'), (2378, 1, '65.00', '2018-05-29 10:48:37'), (2379, 1, '69.00', '2018-05-29 10:48:46'), (2380, 1, '98.00', '2018-05-29 10:48:55'), (2381, 1, '60.00', '2018-05-29 10:49:04'), (2382, 1, '96.00', '2018-05-29 10:49:13'), (2383, 1, '89.00', '2018-05-29 10:49:22'), (2384, 1, '96.00', '2018-05-29 10:49:31'), (2385, 1, '83.00', '2018-05-29 10:49:40'), (2386, 1, '72.00', '2018-05-29 10:49:49'), (2387, 1, '69.00', '2018-05-29 10:49:58'), (2388, 1, '76.00', '2018-05-29 10:50:07'), (2389, 1, '92.00', '2018-05-29 10:50:16'), (2390, 1, '73.00', '2018-05-29 10:50:25'), (2391, 1, '73.00', '2018-05-29 10:50:34'), (2392, 1, '66.00', '2018-05-29 10:50:43'), (2393, 1, '79.00', '2018-05-29 10:50:52'), (2394, 1, '68.00', '2018-05-29 10:51:01'), (2395, 1, '71.00', '2018-05-29 10:51:10'), (2396, 1, '62.00', '2018-05-29 10:51:18'), (2397, 1, '84.00', '2018-05-29 10:51:27'), (2398, 1, '71.00', '2018-05-29 10:51:36'), (2399, 1, '65.00', '2018-05-29 10:51:45'), (2400, 1, '93.00', '2018-05-29 10:51:55'), (2401, 1, '96.00', '2018-05-29 10:52:04'), (2402, 1, '60.00', '2018-05-29 10:52:13'), (2403, 1, '81.00', '2018-05-29 10:52:22'), (2404, 1, '92.00', '2018-05-29 10:52:31'), (2405, 1, '83.00', '2018-05-29 10:52:40'), (2406, 1, '95.00', '2018-05-29 10:52:49'), (2407, 1, '65.00', '2018-05-29 10:52:58'), (2408, 1, '78.00', '2018-05-29 10:53:07'), (2409, 1, '72.00', '2018-05-29 10:53:16'), (2410, 1, '72.00', '2018-05-29 10:53:25'), (2411, 1, '96.00', '2018-05-29 10:53:34'), (2412, 1, '82.00', '2018-05-29 10:53:43'), (2413, 1, '97.00', '2018-05-29 10:53:52'), (2414, 1, '79.00', '2018-05-29 10:54:01'), (2415, 1, '92.00', '2018-05-29 10:54:10'), (2416, 1, '98.00', '2018-05-29 10:54:19'), (2417, 1, '62.00', '2018-05-29 10:54:28'), (2418, 1, '66.00', '2018-05-29 10:54:37'), (2419, 1, '60.00', '2018-05-29 10:54:46'), (2420, 1, '73.00', '2018-05-29 10:54:55'), (2421, 1, '75.00', '2018-05-29 10:55:04'), (2422, 1, '90.00', '2018-05-29 10:55:13'), (2423, 1, '89.00', '2018-05-29 10:55:22'), (2424, 1, '74.00', '2018-05-29 10:55:31'), (2425, 1, '67.00', '2018-05-29 10:55:40'), (2426, 1, '86.00', '2018-05-29 10:55:49'), (2427, 1, '61.00', '2018-05-29 10:55:58'), (2428, 1, '76.00', '2018-05-29 10:56:07'), (2429, 1, '68.00', '2018-05-29 10:56:16'), (2430, 1, '78.00', '2018-05-29 10:56:25'), (2431, 1, '68.00', '2018-05-29 10:56:34'), (2432, 1, '94.00', '2018-05-29 10:56:43'), (2433, 1, '85.00', '2018-05-29 10:56:52'), (2434, 1, '74.00', '2018-05-29 10:57:01'), (2435, 1, '73.00', '2018-05-29 10:57:10'), (2436, 1, '75.00', '2018-05-29 10:57:19'), (2437, 1, '97.00', '2018-05-29 10:57:29'), (2438, 1, '90.00', '2018-05-29 10:57:38'), (2439, 1, '75.00', '2018-05-29 10:57:47'), (2440, 1, '76.00', '2018-05-29 10:57:56'), (2441, 1, '82.00', '2018-05-29 10:58:05'), (2442, 1, '70.00', '2018-05-29 10:58:14'), (2443, 1, '68.00', '2018-05-29 10:58:23'), (2444, 1, '75.00', '2018-05-29 10:58:32'), (2445, 1, '77.00', '2018-05-29 10:58:41'), (2446, 1, '60.00', '2018-05-29 10:58:50'), (2447, 1, '60.00', '2018-05-29 10:58:59'), (2448, 1, '92.00', '2018-05-29 10:59:07'), (2449, 1, '93.00', '2018-05-29 10:59:16'), (2450, 1, '85.00', '2018-05-29 10:59:25'), (2451, 1, '91.00', '2018-05-29 10:59:34'), (2452, 1, '78.00', '2018-05-29 10:59:43'), (2453, 1, '67.00', '2018-05-29 10:59:52'), (2454, 1, '97.00', '2018-05-29 11:00:01'), (2455, 1, '75.00', '2018-05-29 11:00:10'), (2456, 1, '66.00', '2018-05-29 11:00:19'), (2457, 1, '64.00', '2018-05-29 11:00:29'), (2458, 1, '86.00', '2018-05-29 11:00:38'), (2459, 1, '73.00', '2018-05-29 11:00:47'), (2460, 1, '66.00', '2018-05-29 11:00:56'), (2461, 1, '85.00', '2018-05-29 11:01:05'); INSERT INTO `leitura` (`idLeitura`, `idMonitor`, `nivel`, `dataHora`) VALUES (2462, 1, '82.00', '2018-05-29 11:01:14'), (2463, 1, '77.00', '2018-05-29 11:01:23'), (2464, 1, '73.00', '2018-05-29 11:01:32'), (2465, 1, '95.00', '2018-05-29 11:01:41'), (2466, 1, '91.00', '2018-05-29 11:01:50'), (2467, 1, '73.00', '2018-05-29 11:01:59'), (2468, 1, '67.00', '2018-05-29 11:02:08'), (2469, 1, '95.00', '2018-05-29 11:02:17'), (2470, 1, '98.00', '2018-05-29 11:02:26'), (2471, 1, '86.00', '2018-05-29 11:02:35'), (2472, 1, '70.00', '2018-05-29 11:02:44'), (2473, 1, '94.00', '2018-05-29 11:02:53'), (2474, 1, '92.00', '2018-05-29 11:03:02'), (2475, 1, '66.00', '2018-05-29 11:03:11'), (2476, 1, '66.00', '2018-05-29 11:03:20'), (2477, 1, '87.00', '2018-05-29 11:03:29'), (2478, 1, '66.00', '2018-05-29 11:03:38'), (2479, 1, '80.00', '2018-05-29 11:03:47'), (2480, 1, '86.00', '2018-05-29 11:03:56'), (2481, 1, '69.00', '2018-05-29 11:04:05'), (2482, 1, '65.00', '2018-05-29 11:04:14'), (2483, 1, '73.00', '2018-05-29 11:04:23'), (2484, 1, '81.00', '2018-05-29 11:04:32'), (2485, 1, '88.00', '2018-05-29 11:04:41'), (2486, 1, '69.00', '2018-05-29 11:04:50'), (2487, 1, '65.00', '2018-05-29 11:05:00'), (2488, 1, '69.00', '2018-05-29 11:05:09'), (2489, 1, '82.00', '2018-05-29 11:05:17'), (2490, 1, '82.00', '2018-05-29 11:05:27'), (2491, 1, '63.00', '2018-05-29 11:05:36'), (2492, 1, '83.00', '2018-05-29 11:05:44'), (2493, 1, '62.00', '2018-05-29 11:05:54'), (2494, 1, '93.00', '2018-05-29 11:06:02'), (2495, 1, '62.00', '2018-05-29 11:06:12'), (2496, 1, '83.00', '2018-05-29 11:06:21'), (2497, 1, '93.00', '2018-05-29 11:06:30'), (2498, 1, '91.00', '2018-05-29 11:06:39'), (2499, 1, '89.00', '2018-05-29 11:06:48'), (2500, 1, '60.00', '2018-05-29 11:06:57'), (2501, 1, '76.00', '2018-05-29 11:07:06'), (2502, 1, '81.00', '2018-05-29 11:07:15'), (2503, 1, '93.00', '2018-05-29 11:07:23'), (2504, 1, '96.00', '2018-05-29 11:07:32'), (2505, 1, '82.00', '2018-05-29 11:07:41'), (2506, 1, '72.00', '2018-05-29 11:07:50'), (2507, 1, '65.00', '2018-05-29 11:07:59'), (2508, 1, '97.00', '2018-05-29 11:08:08'), (2509, 1, '81.00', '2018-05-29 11:08:17'), (2510, 1, '98.00', '2018-05-29 11:08:26'), (2511, 1, '68.00', '2018-05-29 11:08:35'), (2512, 1, '76.00', '2018-05-29 11:08:44'), (2513, 1, '65.00', '2018-05-29 11:08:52'), (2514, 1, '88.00', '2018-05-29 11:09:01'), (2515, 1, '97.00', '2018-05-29 11:09:10'), (2516, 1, '97.00', '2018-05-29 11:09:19'), (2517, 1, '87.00', '2018-05-29 11:09:28'), (2518, 1, '77.00', '2018-05-29 11:09:37'), (2519, 1, '92.00', '2018-05-29 11:09:46'), (2520, 1, '72.00', '2018-05-29 11:09:55'), (2521, 1, '92.00', '2018-05-29 11:10:04'), (2522, 1, '75.00', '2018-05-29 11:10:13'), (2523, 1, '80.00', '2018-05-29 11:10:22'), (2524, 1, '89.00', '2018-05-29 11:10:31'), (2525, 1, '60.00', '2018-05-29 11:10:41'), (2526, 1, '78.00', '2018-05-29 11:10:51'), (2527, 1, '60.00', '2018-05-29 11:11:01'), (2528, 1, '96.00', '2018-05-29 11:11:10'), (2529, 1, '85.00', '2018-05-29 11:11:19'), (2530, 1, '79.00', '2018-05-29 11:11:28'), (2531, 1, '75.00', '2018-05-29 11:11:37'), (2532, 1, '63.00', '2018-05-29 11:11:46'), (2533, 1, '99.00', '2018-05-29 11:11:55'), (2534, 1, '62.00', '2018-05-29 11:12:04'), (2535, 1, '80.00', '2018-05-29 11:12:13'), (2536, 1, '79.00', '2018-05-29 11:12:22'), (2537, 1, '73.00', '2018-05-29 11:12:32'), (2538, 1, '68.00', '2018-05-29 11:12:43'), (2539, 1, '65.00', '2018-05-29 11:12:55'), (2540, 1, '99.00', '2018-05-29 11:13:13'), (2541, 1, '68.00', '2018-05-29 11:13:37'), (2542, 1, '88.00', '2018-05-29 11:14:20'), (2543, 1, '87.00', '2018-05-29 11:14:58'), (2544, 1, '75.00', '2018-05-29 11:15:19'), (2545, 1, '67.00', '2018-05-29 11:15:28'), (2546, 1, '88.00', '2018-05-29 11:15:37'), (2547, 1, '76.00', '2018-05-29 11:15:46'), (2548, 1, '96.00', '2018-05-29 11:15:55'), (2549, 1, '83.00', '2018-05-29 11:16:04'), (2550, 1, '65.00', '2018-05-29 11:16:13'), (2551, 1, '87.00', '2018-05-29 11:16:23'), (2552, 1, '72.00', '2018-05-29 11:16:32'), (2553, 1, '75.00', '2018-05-29 11:16:41'), (2554, 1, '88.00', '2018-05-29 11:16:50'), (2555, 1, '63.00', '2018-05-29 11:16:59'), (2556, 1, '91.00', '2018-05-29 11:17:09'), (2557, 1, '99.00', '2018-05-29 11:17:18'), (2558, 1, '95.00', '2018-05-29 11:17:27'), (2559, 1, '85.00', '2018-05-29 11:17:36'), (2560, 1, '88.00', '2018-05-29 11:17:45'), (2561, 1, '65.00', '2018-05-29 11:17:54'), (2562, 1, '81.00', '2018-05-29 11:18:03'), (2563, 1, '60.00', '2018-05-29 11:18:12'), (2564, 1, '85.00', '2018-05-29 11:18:21'), (2565, 1, '97.00', '2018-05-29 11:18:30'), (2566, 1, '73.00', '2018-05-29 11:18:39'), (2567, 1, '90.00', '2018-05-29 11:18:48'), (2568, 1, '77.00', '2018-05-29 11:18:57'), (2569, 1, '96.00', '2018-05-29 11:19:06'), (2570, 1, '82.00', '2018-05-29 11:19:35'), (2571, 1, '93.00', '2018-05-29 11:20:46'), (2572, 1, '69.00', '2018-05-29 11:21:19'), (2573, 1, '84.00', '2018-05-29 11:21:28'), (2574, 1, '66.00', '2018-05-29 11:21:37'), (2575, 1, '71.00', '2018-05-29 11:21:47'), (2576, 1, '73.00', '2018-05-29 11:22:30'), (2577, 1, '80.00', '2018-05-29 11:23:12'), (2578, 1, '61.00', '2018-05-29 11:23:51'), (2579, 1, '92.00', '2018-05-29 11:24:00'), (2580, 1, '81.00', '2018-05-29 11:24:11'), (2581, 1, '72.00', '2018-05-29 11:24:20'), (2582, 1, '83.00', '2018-05-29 11:24:32'), (2583, 1, '96.00', '2018-05-29 11:24:41'), (2584, 1, '61.00', '2018-05-29 11:24:50'), (2585, 1, '74.00', '2018-05-29 11:24:59'), (2586, 1, '76.00', '2018-05-29 11:25:08'), (2587, 1, '66.00', '2018-05-29 11:25:17'), (2588, 1, '98.00', '2018-05-29 11:25:26'), (2589, 1, '69.00', '2018-05-29 11:25:35'), (2590, 1, '86.00', '2018-05-29 11:25:44'), (2591, 1, '94.00', '2018-05-29 11:25:53'), (2592, 1, '85.00', '2018-05-29 11:26:01'), (2593, 1, '95.00', '2018-05-29 11:26:10'), (2594, 1, '95.00', '2018-05-29 11:26:19'), (2595, 1, '82.00', '2018-05-29 11:26:29'), (2596, 1, '75.00', '2018-05-29 11:26:42'), (2597, 1, '84.00', '2018-05-29 11:26:52'), (2598, 1, '61.00', '2018-05-29 11:27:02'), (2599, 1, '68.00', '2018-05-29 11:27:12'), (2600, 1, '64.00', '2018-05-29 11:27:22'), (2601, 1, '66.00', '2018-05-29 11:27:31'), (2602, 1, '82.00', '2018-05-29 11:27:41'), (2603, 1, '84.00', '2018-05-29 11:27:51'), (2604, 1, '85.00', '2018-05-29 11:28:00'), (2605, 1, '83.00', '2018-05-29 11:28:11'), (2606, 1, '63.00', '2018-05-29 11:28:21'), (2607, 1, '96.00', '2018-05-29 11:28:30'), (2608, 1, '74.00', '2018-05-29 11:28:39'), (2609, 1, '95.00', '2018-05-29 11:28:49'), (2610, 1, '92.00', '2018-05-29 11:28:59'), (2611, 1, '85.00', '2018-05-29 11:29:09'), (2612, 1, '75.00', '2018-05-29 11:29:21'), (2613, 1, '71.00', '2018-05-29 11:29:35'), (2614, 1, '96.00', '2018-05-29 11:29:47'), (2615, 1, '80.00', '2018-05-29 11:29:59'), (2616, 1, '66.00', '2018-05-29 11:30:11'), (2617, 1, '62.00', '2018-05-29 11:30:25'), (2618, 1, '97.00', '2018-05-29 11:30:36'), (2619, 1, '92.00', '2018-05-29 11:30:49'), (2620, 1, '91.00', '2018-05-29 11:30:58'), (2621, 1, '75.00', '2018-05-29 11:31:07'), (2622, 1, '77.00', '2018-05-29 11:31:18'), (2623, 1, '81.00', '2018-05-29 11:31:27'), (2624, 1, '73.00', '2018-05-29 11:31:37'), (2625, 1, '97.00', '2018-05-29 11:31:46'), (2626, 1, '96.00', '2018-05-29 11:31:56'), (2627, 1, '87.00', '2018-05-29 11:32:05'), (2628, 1, '89.00', '2018-05-29 11:32:14'), (2629, 1, '76.00', '2018-05-29 11:32:24'), (2630, 1, '67.00', '2018-05-29 11:32:33'), (2631, 1, '76.00', '2018-05-29 11:32:50'), (2632, 1, '64.00', '2018-05-29 11:33:01'), (2633, 1, '87.00', '2018-05-29 11:33:10'), (2634, 1, '68.00', '2018-05-29 11:33:19'), (2635, 1, '82.00', '2018-05-29 11:33:28'), (2636, 1, '72.00', '2018-05-29 11:33:38'), (2637, 1, '70.00', '2018-05-29 11:33:47'), (2638, 1, '89.00', '2018-05-29 11:33:57'), (2639, 1, '70.00', '2018-05-29 11:34:06'), (2640, 1, '78.00', '2018-05-29 11:34:15'), (2641, 1, '78.00', '2018-05-29 11:34:24'), (2642, 1, '83.00', '2018-05-29 11:34:33'), (2643, 1, '94.00', '2018-05-29 11:34:43'), (2644, 1, '95.00', '2018-05-29 11:34:52'), (2645, 1, '74.00', '2018-05-29 11:35:01'), (2646, 1, '82.00', '2018-05-29 11:35:10'), (2647, 1, '73.00', '2018-05-29 11:35:18'), (2648, 1, '97.00', '2018-05-29 11:35:27'), (2649, 1, '69.00', '2018-05-29 11:35:36'), (2650, 1, '92.00', '2018-05-29 11:35:45'), (2651, 1, '60.00', '2018-05-29 11:35:54'), (2652, 1, '81.00', '2018-05-29 11:36:03'), (2653, 1, '85.00', '2018-05-29 11:36:12'), (2654, 1, '95.00', '2018-05-29 11:36:21'), (2655, 1, '64.00', '2018-05-29 11:36:30'), (2656, 1, '88.00', '2018-05-29 11:36:39'), (2657, 1, '85.00', '2018-05-29 11:36:48'), (2658, 1, '78.00', '2018-05-29 11:36:57'), (2659, 1, '71.00', '2018-05-29 11:37:07'), (2660, 1, '62.00', '2018-05-29 11:37:16'), (2661, 1, '83.00', '2018-05-29 11:37:26'), (2662, 1, '94.00', '2018-05-29 11:37:35'), (2663, 1, '87.00', '2018-05-29 11:37:45'), (2664, 1, '73.00', '2018-05-29 11:37:54'), (2665, 1, '63.00', '2018-05-29 11:38:03'), (2666, 1, '64.00', '2018-05-29 11:38:14'), (2667, 1, '97.00', '2018-05-29 11:38:24'), (2668, 1, '99.00', '2018-05-29 11:38:34'), (2669, 1, '72.00', '2018-05-29 11:38:45'), (2670, 1, '95.00', '2018-05-29 11:38:56'), (2671, 1, '89.00', '2018-05-29 11:39:05'), (2672, 1, '72.00', '2018-05-29 11:39:14'), (2673, 1, '91.00', '2018-05-29 11:39:23'), (2674, 1, '80.00', '2018-05-29 11:39:32'), (2675, 1, '91.00', '2018-05-29 11:39:41'), (2676, 1, '73.00', '2018-05-29 11:39:50'), (2677, 1, '95.00', '2018-05-29 11:39:59'), (2678, 1, '98.00', '2018-05-29 11:40:08'), (2679, 1, '95.00', '2018-05-29 11:40:17'), (2680, 1, '99.00', '2018-05-29 11:40:26'), (2681, 1, '62.00', '2018-05-29 11:40:35'), (2682, 1, '91.00', '2018-05-29 11:40:44'), (2683, 1, '83.00', '2018-05-29 11:40:53'), (2684, 1, '70.00', '2018-05-29 11:41:02'), (2685, 1, '79.00', '2018-05-29 11:41:12'), (2686, 1, '88.00', '2018-05-29 11:41:23'), (2687, 1, '86.00', '2018-05-29 11:41:34'), (2688, 1, '99.00', '2018-05-29 11:41:44'), (2689, 1, '61.00', '2018-05-29 11:41:53'), (2690, 1, '95.00', '2018-05-29 11:42:02'), (2691, 1, '85.00', '2018-05-29 11:42:12'), (2692, 1, '96.00', '2018-05-29 11:42:21'), (2693, 1, '66.00', '2018-05-29 11:42:31'), (2694, 1, '83.00', '2018-05-29 11:42:41'), (2695, 1, '91.00', '2018-05-29 11:42:51'), (2696, 1, '85.00', '2018-05-29 11:43:02'), (2697, 1, '91.00', '2018-05-29 11:43:12'), (2698, 1, '74.00', '2018-05-29 11:43:21'), (2699, 1, '81.00', '2018-05-29 11:43:31'), (2700, 1, '93.00', '2018-05-29 11:43:40'), (2701, 1, '86.00', '2018-05-29 11:43:51'), (2702, 1, '69.00', '2018-05-29 11:44:02'), (2703, 1, '65.00', '2018-05-29 11:44:14'), (2704, 1, '94.00', '2018-05-29 11:44:23'), (2705, 1, '90.00', '2018-05-29 11:44:32'), (2706, 1, '99.00', '2018-05-29 11:44:41'), (2707, 1, '64.00', '2018-05-29 11:44:50'), (2708, 1, '84.00', '2018-05-29 11:44:59'), (2709, 1, '84.00', '2018-05-29 11:45:08'), (2710, 1, '73.00', '2018-05-29 11:45:18'), (2711, 1, '81.00', '2018-05-29 11:45:27'), (2712, 1, '78.00', '2018-05-29 11:45:39'), (2713, 1, '78.00', '2018-05-29 11:45:49'), (2714, 1, '84.00', '2018-05-29 11:45:59'), (2715, 1, '70.00', '2018-05-29 11:46:08'), (2716, 1, '62.00', '2018-05-29 11:46:18'), (2717, 1, '64.00', '2018-05-29 11:46:27'), (2718, 1, '65.00', '2018-05-29 11:46:36'), (2719, 1, '71.00', '2018-05-29 11:46:46'), (2720, 1, '76.00', '2018-05-29 11:46:55'), (2721, 1, '76.00', '2018-05-29 11:47:04'), (2722, 1, '71.00', '2018-05-29 11:47:14'), (2723, 1, '86.00', '2018-05-29 11:47:25'), (2724, 1, '63.00', '2018-05-29 11:47:35'), (2725, 1, '77.00', '2018-05-29 11:47:44'), (2726, 1, '93.00', '2018-05-29 11:47:53'), (2727, 1, '82.00', '2018-05-29 11:48:02'), (2728, 1, '79.00', '2018-05-29 11:48:12'), (2729, 1, '78.00', '2018-05-29 11:48:21'), (2730, 1, '70.00', '2018-05-29 11:48:31'), (2731, 1, '92.00', '2018-05-29 11:48:40'), (2732, 1, '93.00', '2018-05-29 11:48:49'), (2733, 1, '60.00', '2018-05-29 11:48:59'), (2734, 1, '92.00', '2018-05-29 11:49:10'), (2735, 1, '98.00', '2018-05-29 11:49:19'), (2736, 1, '98.00', '2018-05-29 11:49:28'), (2737, 1, '86.00', '2018-05-29 11:49:38'), (2738, 1, '84.00', '2018-05-29 11:49:47'), (2739, 1, '66.00', '2018-05-29 11:49:56'), (2740, 1, '66.00', '2018-05-29 11:50:05'), (2741, 1, '95.00', '2018-05-29 11:50:16'), (2742, 1, '63.00', '2018-05-29 11:50:26'), (2743, 1, '69.00', '2018-05-29 11:50:35'), (2744, 1, '71.00', '2018-05-29 11:50:47'), (2745, 1, '74.00', '2018-05-29 11:50:56'), (2746, 1, '86.00', '2018-05-29 11:51:05'), (2747, 1, '84.00', '2018-05-29 11:51:14'), (2748, 1, '76.00', '2018-05-29 11:51:23'), (2749, 1, '83.00', '2018-05-29 11:51:32'), (2750, 1, '85.00', '2018-05-29 11:51:42'), (2751, 1, '67.00', '2018-05-29 11:51:51'), (2752, 1, '81.00', '2018-05-29 11:52:00'), (2753, 1, '63.00', '2018-05-29 11:52:09'), (2754, 1, '94.00', '2018-05-29 11:52:18'), (2755, 1, '85.00', '2018-05-29 11:52:27'), (2756, 1, '88.00', '2018-05-29 11:52:36'), (2757, 1, '64.00', '2018-05-29 11:52:45'), (2758, 1, '81.00', '2018-05-29 11:52:55'), (2759, 1, '81.00', '2018-05-29 11:53:04'), (2760, 1, '92.00', '2018-05-29 11:53:13'), (2761, 1, '98.00', '2018-05-29 11:53:22'), (2762, 1, '76.00', '2018-05-29 11:53:31'), (2763, 1, '85.00', '2018-05-29 11:53:40'), (2764, 1, '90.00', '2018-05-29 11:53:49'), (2765, 1, '98.00', '2018-05-29 11:53:58'), (2766, 1, '83.00', '2018-05-29 11:54:07'), (2767, 1, '79.00', '2018-05-29 11:54:16'), (2768, 1, '79.00', '2018-05-29 11:54:25'), (2769, 1, '75.00', '2018-05-29 11:54:34'), (2770, 1, '90.00', '2018-05-29 11:54:43'), (2771, 1, '75.00', '2018-05-29 11:54:52'), (2772, 1, '90.00', '2018-05-29 11:55:01'), (2773, 1, '93.00', '2018-05-29 11:55:10'), (2774, 1, '78.00', '2018-05-29 11:55:24'), (2775, 1, '94.00', '2018-05-29 11:55:33'), (2776, 1, '95.00', '2018-05-29 11:55:43'), (2777, 1, '62.00', '2018-05-29 11:55:55'), (2778, 1, '75.00', '2018-05-29 11:56:07'), (2779, 1, '70.00', '2018-05-29 11:56:17'), (2780, 1, '95.00', '2018-05-29 11:56:26'), (2781, 1, '72.00', '2018-05-29 11:56:35'), (2782, 1, '82.00', '2018-05-29 11:56:44'), (2783, 1, '83.00', '2018-05-29 11:56:53'), (2784, 1, '79.00', '2018-05-29 11:57:02'), (2785, 1, '94.00', '2018-05-29 11:57:11'), (2786, 1, '81.00', '2018-05-29 11:57:20'), (2787, 1, '94.00', '2018-05-29 11:57:29'), (2788, 1, '76.00', '2018-05-29 11:57:38'), (2789, 1, '81.00', '2018-05-29 11:57:47'), (2790, 1, '89.00', '2018-05-29 11:57:56'), (2791, 1, '65.00', '2018-05-29 11:58:05'), (2792, 1, '73.00', '2018-05-29 11:58:14'), (2793, 1, '67.00', '2018-05-29 11:58:23'), (2794, 1, '76.00', '2018-05-29 11:58:32'), (2795, 1, '84.00', '2018-05-29 11:58:41'), (2796, 1, '65.00', '2018-05-29 11:58:50'), (2797, 1, '61.00', '2018-05-29 11:58:59'), (2798, 1, '72.00', '2018-05-29 11:59:08'), (2799, 1, '69.00', '2018-05-29 11:59:17'), (2800, 1, '82.00', '2018-05-29 11:59:26'), (2801, 1, '74.00', '2018-05-29 11:59:36'), (2802, 1, '62.00', '2018-05-29 11:59:45'), (2803, 1, '82.00', '2018-05-29 11:59:54'), (2804, 1, '80.00', '2018-05-29 12:00:03'), (2805, 1, '65.00', '2018-05-29 12:00:11'), (2806, 1, '67.00', '2018-05-29 12:00:20'), (2807, 1, '83.00', '2018-05-29 12:00:29'), (2808, 1, '74.00', '2018-05-29 12:00:38'), (2809, 1, '65.00', '2018-05-29 12:00:47'), (2810, 1, '76.00', '2018-05-29 12:00:56'), (2811, 1, '80.00', '2018-05-29 12:01:05'), (2812, 1, '72.00', '2018-05-29 12:01:15'), (2813, 1, '99.00', '2018-05-29 12:01:24'), (2814, 1, '68.00', '2018-05-29 12:01:33'), (2815, 1, '77.00', '2018-05-29 12:01:42'), (2816, 1, '93.00', '2018-05-29 12:01:51'), (2817, 1, '89.00', '2018-05-29 12:02:00'), (2818, 1, '63.00', '2018-05-29 12:02:09'), (2819, 1, '94.00', '2018-05-29 12:02:18'), (2820, 1, '74.00', '2018-05-29 12:02:27'), (2821, 1, '91.00', '2018-05-29 12:02:36'), (2822, 1, '88.00', '2018-05-29 12:02:45'), (2823, 1, '81.00', '2018-05-29 12:02:54'), (2824, 1, '73.00', '2018-05-29 12:03:03'), (2825, 1, '95.00', '2018-05-29 12:03:12'), (2826, 1, '60.00', '2018-05-29 12:03:21'), (2827, 1, '88.00', '2018-05-29 12:03:30'), (2828, 1, '63.00', '2018-05-29 12:03:39'), (2829, 1, '68.00', '2018-05-29 12:03:48'), (2830, 1, '87.00', '2018-05-29 12:03:57'), (2831, 1, '81.00', '2018-05-29 12:04:06'), (2832, 1, '76.00', '2018-05-29 12:04:15'), (2833, 1, '60.00', '2018-05-29 12:04:24'), (2834, 1, '83.00', '2018-05-29 12:04:33'), (2835, 1, '92.00', '2018-05-29 12:04:41'), (2836, 1, '86.00', '2018-05-29 12:04:50'), (2837, 1, '85.00', '2018-05-29 12:05:00'), (2838, 1, '64.00', '2018-05-29 12:05:09'), (2839, 1, '84.00', '2018-05-29 12:05:17'), (2840, 1, '94.00', '2018-05-29 12:05:26'), (2841, 1, '65.00', '2018-05-29 12:05:35'), (2842, 1, '96.00', '2018-05-29 12:05:45'), (2843, 1, '91.00', '2018-05-29 12:05:54'), (2844, 1, '65.00', '2018-05-29 12:06:03'), (2845, 1, '72.00', '2018-05-29 12:06:12'), (2846, 1, '85.00', '2018-05-29 12:06:21'), (2847, 1, '72.00', '2018-05-29 12:06:30'), (2848, 1, '87.00', '2018-05-29 12:06:39'), (2849, 1, '78.00', '2018-05-29 12:06:48'), (2850, 1, '79.00', '2018-05-29 12:06:56'), (2851, 1, '86.00', '2018-05-29 12:07:06'), (2852, 1, '91.00', '2018-05-29 12:07:16'), (2853, 1, '83.00', '2018-05-29 12:07:29'), (2854, 1, '77.00', '2018-05-29 12:07:39'), (2855, 1, '93.00', '2018-05-29 12:07:48'), (2856, 1, '60.00', '2018-05-29 12:07:57'), (2857, 1, '72.00', '2018-05-29 12:08:06'), (2858, 1, '85.00', '2018-05-29 12:08:15'), (2859, 1, '68.00', '2018-05-29 12:08:24'), (2860, 1, '99.00', '2018-05-29 12:08:34'), (2861, 1, '86.00', '2018-05-29 12:08:43'), (2862, 1, '69.00', '2018-05-29 12:08:52'), (2863, 1, '64.00', '2018-05-29 12:09:01'), (2864, 1, '82.00', '2018-05-29 12:09:10'), (2865, 1, '64.00', '2018-05-29 12:09:19'), (2866, 1, '65.00', '2018-05-29 12:09:28'), (2867, 1, '63.00', '2018-05-29 12:09:37'), (2868, 1, '63.00', '2018-05-29 12:09:46'), (2869, 1, '72.00', '2018-05-29 12:09:55'), (2870, 1, '79.00', '2018-05-29 12:10:04'), (2871, 1, '65.00', '2018-05-29 12:10:14'), (2872, 1, '97.00', '2018-05-29 12:10:23'), (2873, 1, '96.00', '2018-05-29 12:10:32'), (2874, 1, '65.00', '2018-05-29 12:10:41'), (2875, 1, '85.00', '2018-05-29 12:10:50'), (2876, 1, '99.00', '2018-05-29 12:11:01'), (2877, 1, '85.00', '2018-05-29 12:11:11'), (2878, 1, '71.00', '2018-05-29 12:11:21'), (2879, 1, '61.00', '2018-05-29 12:11:30'), (2880, 1, '73.00', '2018-05-29 12:11:39'), (2881, 1, '78.00', '2018-05-29 12:11:49'), (2882, 1, '78.00', '2018-05-29 12:11:58'), (2883, 1, '74.00', '2018-05-29 12:12:12'), (2884, 1, '93.00', '2018-05-29 12:12:21'), (2885, 1, '61.00', '2018-05-29 12:12:31'), (2886, 1, '72.00', '2018-05-29 12:12:40'), (2887, 1, '96.00', '2018-05-29 12:12:50'), (2888, 1, '79.00', '2018-05-29 12:12:59'), (2889, 1, '93.00', '2018-05-29 12:13:08'), (2890, 1, '64.00', '2018-05-29 12:13:17'), (2891, 1, '83.00', '2018-05-29 12:13:29'), (2892, 1, '88.00', '2018-05-29 12:13:38'), (2893, 1, '97.00', '2018-05-29 12:13:47'), (2894, 1, '98.00', '2018-05-29 12:13:57'), (2895, 1, '91.00', '2018-05-29 12:14:08'), (2896, 1, '95.00', '2018-05-29 12:14:17'), (2897, 1, '81.00', '2018-05-29 12:14:26'), (2898, 1, '99.00', '2018-05-29 12:14:35'), (2899, 1, '70.00', '2018-05-29 12:14:44'), (2900, 1, '76.00', '2018-05-29 12:14:54'), (2901, 1, '61.00', '2018-05-29 12:15:03'), (2902, 1, '62.00', '2018-05-29 12:15:13'), (2903, 1, '82.00', '2018-05-29 12:15:22'), (2904, 1, '76.00', '2018-05-29 12:15:31'), (2905, 1, '71.00', '2018-05-29 12:15:40'), (2906, 1, '99.00', '2018-05-29 12:15:49'), (2907, 1, '85.00', '2018-05-29 12:15:59'), (2908, 1, '79.00', '2018-05-29 12:16:09'), (2909, 1, '77.00', '2018-05-29 12:16:18'), (2910, 1, '63.00', '2018-05-29 12:16:27'), (2911, 1, '73.00', '2018-05-29 12:16:38'), (2912, 1, '71.00', '2018-05-29 12:16:47'), (2913, 1, '83.00', '2018-05-29 12:16:56'), (2914, 1, '76.00', '2018-05-29 12:17:05'), (2915, 1, '97.00', '2018-05-29 12:17:14'), (2916, 1, '73.00', '2018-05-29 12:17:23'), (2917, 1, '92.00', '2018-05-29 12:17:32'), (2918, 1, '67.00', '2018-05-29 12:17:40'), (2919, 1, '99.00', '2018-05-29 12:17:50'), (2920, 1, '67.00', '2018-05-29 12:17:59'), (2921, 1, '72.00', '2018-05-29 12:18:08'), (2922, 1, '72.00', '2018-05-29 12:18:18'), (2923, 1, '88.00', '2018-05-29 12:18:28'), (2924, 1, '93.00', '2018-05-29 12:18:37'), (2925, 1, '99.00', '2018-05-29 12:18:46'), (2926, 1, '88.00', '2018-05-29 12:18:56'), (2927, 1, '86.00', '2018-05-29 12:19:05'), (2928, 1, '71.00', '2018-05-29 12:19:14'), (2929, 1, '60.00', '2018-05-29 12:19:23'), (2930, 1, '89.00', '2018-05-29 12:19:32'), (2931, 1, '82.00', '2018-05-29 12:19:41'), (2932, 1, '97.00', '2018-05-29 12:19:50'), (2933, 1, '85.00', '2018-05-29 12:19:59'), (2934, 1, '76.00', '2018-05-29 12:20:08'), (2935, 1, '80.00', '2018-05-29 12:20:16'), (2936, 1, '69.00', '2018-05-29 12:20:25'), (2937, 1, '81.00', '2018-05-29 12:20:34'), (2938, 1, '80.00', '2018-05-29 12:20:43'), (2939, 1, '96.00', '2018-05-29 12:20:52'), (2940, 1, '91.00', '2018-05-29 12:21:01'), (2941, 1, '72.00', '2018-05-29 12:21:10'), (2942, 1, '89.00', '2018-05-29 12:21:19'), (2943, 1, '67.00', '2018-05-29 12:21:28'), (2944, 1, '78.00', '2018-05-29 12:21:37'), (2945, 1, '90.00', '2018-05-29 12:21:46'), (2946, 1, '89.00', '2018-05-29 12:21:55'), (2947, 1, '84.00', '2018-05-29 12:22:04'), (2948, 1, '93.00', '2018-05-29 12:22:13'), (2949, 1, '96.00', '2018-05-29 12:22:22'), (2950, 1, '93.00', '2018-05-29 12:22:31'), (2951, 1, '77.00', '2018-05-29 12:22:41'), (2952, 1, '63.00', '2018-05-29 12:22:50'), (2953, 1, '83.00', '2018-05-29 12:22:59'), (2954, 1, '79.00', '2018-05-29 12:23:11'), (2955, 1, '68.00', '2018-05-29 12:23:20'), (2956, 1, '86.00', '2018-05-29 12:23:29'), (2957, 1, '61.00', '2018-05-29 12:23:38'), (2958, 1, '82.00', '2018-05-29 12:23:47'), (2959, 1, '80.00', '2018-05-29 12:23:57'), (2960, 1, '87.00', '2018-05-29 12:24:06'), (2961, 1, '71.00', '2018-05-29 12:24:17'), (2962, 1, '80.00', '2018-05-29 12:24:26'), (2963, 1, '76.00', '2018-05-29 12:24:36'), (2964, 1, '92.00', '2018-05-29 12:24:45'), (2965, 1, '95.00', '2018-05-29 12:24:54'), (2966, 1, '65.00', '2018-05-29 12:25:04'), (2967, 1, '96.00', '2018-05-29 12:25:12'), (2968, 1, '92.00', '2018-05-29 12:25:22'), (2969, 1, '94.00', '2018-05-29 12:25:31'), (2970, 1, '90.00', '2018-05-29 12:25:40'), (2971, 1, '63.00', '2018-05-29 12:25:50'), (2972, 1, '73.00', '2018-05-29 12:26:00'), (2973, 1, '96.00', '2018-05-29 12:26:09'), (2974, 1, '97.00', '2018-05-29 12:26:18'), (2975, 1, '98.00', '2018-05-29 12:26:27'), (2976, 1, '64.00', '2018-05-29 12:26:37'), (2977, 1, '70.00', '2018-05-29 12:26:46'), (2978, 1, '64.00', '2018-05-29 12:26:55'), (2979, 1, '68.00', '2018-05-29 12:27:04'), (2980, 1, '95.00', '2018-05-29 12:27:14'), (2981, 1, '70.00', '2018-05-29 12:27:25'), (2982, 1, '89.00', '2018-05-29 12:27:35'), (2983, 1, '97.00', '2018-05-29 12:27:44'), (2984, 1, '62.00', '2018-05-29 12:27:53'), (2985, 1, '93.00', '2018-05-29 12:28:02'), (2986, 1, '81.00', '2018-05-29 12:28:11'), (2987, 1, '80.00', '2018-05-29 12:28:20'), (2988, 1, '93.00', '2018-05-29 12:28:29'), (2989, 1, '77.00', '2018-05-29 12:28:40'), (2990, 1, '83.00', '2018-05-29 12:28:49'), (2991, 1, '76.00', '2018-05-29 12:28:58'), (2992, 1, '75.00', '2018-05-29 12:29:08'), (2993, 1, '98.00', '2018-05-29 12:29:18'), (2994, 1, '73.00', '2018-05-29 12:29:27'), (2995, 1, '99.00', '2018-05-29 12:29:36'), (2996, 1, '75.00', '2018-05-29 12:29:46'), (2997, 1, '90.00', '2018-05-29 12:29:55'), (2998, 1, '99.00', '2018-05-29 12:30:04'), (2999, 1, '85.00', '2018-05-29 12:30:13'), (3000, 1, '80.00', '2018-05-29 12:30:23'), (3001, 1, '83.00', '2018-05-29 12:30:34'), (3002, 1, '65.00', '2018-05-29 12:30:43'), (3003, 1, '61.00', '2018-05-29 12:30:52'), (3004, 1, '78.00', '2018-05-29 12:31:02'), (3005, 1, '78.00', '2018-05-29 12:31:11'), (3006, 1, '69.00', '2018-05-29 12:31:20'), (3007, 1, '93.00', '2018-05-29 12:31:29'), (3008, 1, '88.00', '2018-05-29 12:31:39'), (3009, 1, '75.00', '2018-05-29 12:31:49'), (3010, 1, '65.00', '2018-05-29 12:31:58'), (3011, 1, '79.00', '2018-05-29 12:32:08'), (3012, 1, '64.00', '2018-05-29 12:32:19'), (3013, 1, '94.00', '2018-05-29 12:32:28'), (3014, 1, '65.00', '2018-05-29 12:32:37'), (3015, 1, '98.00', '2018-05-29 12:32:46'), (3016, 1, '62.00', '2018-05-29 12:32:56'), (3017, 1, '99.00', '2018-05-29 12:33:06'), (3018, 1, '76.00', '2018-05-29 12:33:17'), (3019, 1, '67.00', '2018-05-29 12:33:26'), (3020, 1, '68.00', '2018-05-29 12:33:35'), (3021, 1, '83.00', '2018-05-29 12:33:44'), (3022, 1, '83.00', '2018-05-29 12:33:54'), (3023, 1, '64.00', '2018-05-29 12:34:04'), (3024, 1, '99.00', '2018-05-29 12:34:14'), (3025, 1, '70.00', '2018-05-29 12:34:23'), (3026, 1, '85.00', '2018-05-29 12:34:32'), (3027, 1, '60.00', '2018-05-29 12:34:42'), (3028, 1, '73.00', '2018-05-29 12:34:53'), (3029, 1, '74.00', '2018-05-29 12:35:02'), (3030, 1, '98.00', '2018-05-29 12:35:12'), (3031, 1, '63.00', '2018-05-29 12:35:22'), (3032, 1, '73.00', '2018-05-29 12:35:31'), (3033, 1, '63.00', '2018-05-29 12:35:41'), (3034, 1, '69.00', '2018-05-29 12:35:50'), (3035, 1, '82.00', '2018-05-29 12:35:59'), (3036, 1, '83.00', '2018-05-29 12:36:08'), (3037, 1, '91.00', '2018-05-29 12:36:18'), (3038, 1, '63.00', '2018-05-29 12:36:30'), (3039, 1, '73.00', '2018-05-29 12:36:39'), (3040, 1, '69.00', '2018-05-29 12:36:48'), (3041, 1, '77.00', '2018-05-29 12:36:57'), (3042, 1, '66.00', '2018-05-29 12:37:07'), (3043, 1, '88.00', '2018-05-29 12:37:17'), (3044, 1, '93.00', '2018-05-29 12:37:27'), (3045, 1, '61.00', '2018-05-29 12:37:36'), (3046, 1, '63.00', '2018-05-29 12:37:46'), (3047, 1, '77.00', '2018-05-29 12:37:55'), (3048, 1, '63.00', '2018-05-29 12:38:05'), (3049, 1, '66.00', '2018-05-29 12:38:16'), (3050, 1, '67.00', '2018-05-29 12:38:29'), (3051, 1, '70.00', '2018-05-29 12:38:38'), (3052, 1, '98.00', '2018-05-29 12:38:47'), (3053, 1, '77.00', '2018-05-29 12:38:57'), (3054, 1, '69.00', '2018-05-29 12:39:06'), (3055, 1, '94.00', '2018-05-29 12:39:15'), (3056, 1, '76.00', '2018-05-29 12:39:24'), (3057, 1, '97.00', '2018-05-29 12:39:34'), (3058, 1, '78.00', '2018-05-29 12:39:43'), (3059, 1, '94.00', '2018-05-29 12:39:53'), (3060, 1, '73.00', '2018-05-29 12:40:02'), (3061, 1, '77.00', '2018-05-29 12:40:11'), (3062, 1, '82.00', '2018-05-29 12:40:21'), (3063, 1, '68.00', '2018-05-29 12:40:30'), (3064, 1, '95.00', '2018-05-29 12:40:39'), (3065, 1, '82.00', '2018-05-29 12:40:48'), (3066, 1, '85.00', '2018-05-29 12:40:57'), (3067, 1, '70.00', '2018-05-29 12:41:06'), (3068, 1, '64.00', '2018-05-29 12:41:14'), (3069, 1, '94.00', '2018-05-29 12:41:23'), (3070, 1, '65.00', '2018-05-29 12:41:32'), (3071, 1, '82.00', '2018-05-29 12:41:41'), (3072, 1, '80.00', '2018-05-29 12:41:50'), (3073, 1, '75.00', '2018-05-29 12:41:59'), (3074, 1, '86.00', '2018-05-29 12:42:08'), (3075, 1, '86.00', '2018-05-29 12:42:17'), (3076, 1, '86.00', '2018-05-29 12:42:26'), (3077, 1, '70.00', '2018-05-29 12:42:35'), (3078, 1, '61.00', '2018-05-29 12:42:44'), (3079, 1, '98.00', '2018-05-29 12:42:53'), (3080, 1, '96.00', '2018-05-29 12:43:02'), (3081, 1, '89.00', '2018-05-29 12:43:11'), (3082, 1, '77.00', '2018-05-29 12:43:20'), (3083, 1, '72.00', '2018-05-29 12:43:29'), (3084, 1, '62.00', '2018-05-29 12:43:38'), (3085, 1, '90.00', '2018-05-29 12:43:47'), (3086, 1, '95.00', '2018-05-29 12:43:56'), (3087, 1, '88.00', '2018-05-29 12:44:05'), (3088, 1, '99.00', '2018-05-29 12:44:30'), (3089, 1, '96.00', '2018-05-29 12:44:39'), (3090, 1, '71.00', '2018-05-29 12:44:53'), (3091, 1, '72.00', '2018-05-29 12:45:04'), (3092, 1, '95.00', '2018-05-29 12:45:24'), (3093, 1, '76.00', '2018-05-29 12:45:36'), (3094, 1, '60.00', '2018-05-29 12:45:45'), (3095, 1, '95.00', '2018-05-29 12:45:55'), (3096, 1, '80.00', '2018-05-29 12:46:04'), (3097, 1, '87.00', '2018-05-29 12:46:13'), (3098, 1, '76.00', '2018-05-29 12:46:22'), (3099, 1, '75.00', '2018-05-29 12:46:31'), (3100, 1, '66.00', '2018-05-29 12:46:40'), (3101, 1, '72.00', '2018-05-29 12:46:49'), (3102, 1, '64.00', '2018-05-29 12:46:58'), (3103, 1, '92.00', '2018-05-29 12:47:07'), (3104, 1, '81.00', '2018-05-29 12:47:16'), (3105, 1, '90.00', '2018-05-29 12:47:25'), (3106, 1, '73.00', '2018-05-29 12:47:34'), (3107, 1, '78.00', '2018-05-29 12:47:43'), (3108, 1, '81.00', '2018-05-29 12:47:52'), (3109, 1, '93.00', '2018-05-29 12:48:01'), (3110, 1, '64.00', '2018-05-29 12:48:10'), (3111, 1, '83.00', '2018-05-29 12:48:18'), (3112, 1, '88.00', '2018-05-29 12:48:27'), (3113, 1, '70.00', '2018-05-29 12:48:36'), (3114, 1, '62.00', '2018-05-29 12:48:45'), (3115, 1, '62.00', '2018-05-29 12:48:54'), (3116, 1, '63.00', '2018-05-29 12:49:03'), (3117, 1, '70.00', '2018-05-29 12:49:12'), (3118, 1, '66.00', '2018-05-29 12:49:21'), (3119, 1, '87.00', '2018-05-29 12:49:30'), (3120, 1, '89.00', '2018-05-29 12:49:39'), (3121, 1, '95.00', '2018-05-29 12:49:48'), (3122, 1, '95.00', '2018-05-29 12:49:57'), (3123, 1, '67.00', '2018-05-29 12:50:06'), (3124, 1, '88.00', '2018-05-29 12:50:15'), (3125, 1, '89.00', '2018-05-29 12:50:24'), (3126, 1, '93.00', '2018-05-29 12:50:33'), (3127, 1, '68.00', '2018-05-29 12:50:42'), (3128, 1, '65.00', '2018-05-29 12:50:51'), (3129, 1, '94.00', '2018-05-29 12:51:00'), (3130, 1, '72.00', '2018-05-29 12:51:09'), (3131, 1, '75.00', '2018-05-29 12:51:18'), (3132, 1, '70.00', '2018-05-29 12:51:27'), (3133, 1, '79.00', '2018-05-29 12:51:36'), (3134, 1, '74.00', '2018-05-29 12:51:45'), (3135, 1, '96.00', '2018-05-29 12:51:54'), (3136, 1, '69.00', '2018-05-29 12:52:03'), (3137, 1, '83.00', '2018-05-29 12:52:12'), (3138, 1, '80.00', '2018-05-29 12:52:21'), (3139, 1, '79.00', '2018-05-29 12:52:30'), (3140, 1, '60.00', '2018-05-29 12:52:39'), (3141, 1, '72.00', '2018-05-29 12:52:48'), (3142, 1, '77.00', '2018-05-29 12:52:57'), (3143, 1, '62.00', '2018-05-29 12:53:06'), (3144, 1, '61.00', '2018-05-29 12:53:15'), (3145, 1, '96.00', '2018-05-29 12:53:24'), (3146, 1, '66.00', '2018-05-29 12:53:33'), (3147, 1, '82.00', '2018-05-29 12:53:42'), (3148, 1, '87.00', '2018-05-29 12:53:50'), (3149, 1, '91.00', '2018-05-29 12:53:59'), (3150, 1, '81.00', '2018-05-29 12:54:08'), (3151, 1, '84.00', '2018-05-29 12:54:17'), (3152, 1, '60.00', '2018-05-29 12:54:26'), (3153, 1, '96.00', '2018-05-29 12:54:35'), (3154, 1, '87.00', '2018-05-29 12:54:44'), (3155, 1, '71.00', '2018-05-29 12:54:53'), (3156, 1, '87.00', '2018-05-29 12:55:02'), (3157, 1, '73.00', '2018-05-29 12:55:11'), (3158, 1, '78.00', '2018-05-29 12:55:20'), (3159, 1, '74.00', '2018-05-29 12:55:29'), (3160, 1, '95.00', '2018-05-29 12:55:38'), (3161, 1, '71.00', '2018-05-29 12:55:47'), (3162, 1, '77.00', '2018-05-29 12:55:56'), (3163, 1, '65.00', '2018-05-29 12:56:05'), (3164, 1, '74.00', '2018-05-29 12:56:14'), (3165, 1, '80.00', '2018-05-29 12:56:23'), (3166, 1, '97.00', '2018-05-29 12:56:32'), (3167, 1, '68.00', '2018-05-29 12:56:41'), (3168, 1, '93.00', '2018-05-29 12:56:49'), (3169, 1, '96.00', '2018-05-29 12:56:58'), (3170, 1, '99.00', '2018-05-29 12:57:07'), (3171, 1, '65.00', '2018-05-29 12:57:16'), (3172, 1, '63.00', '2018-05-29 12:57:25'), (3173, 1, '96.00', '2018-05-29 12:57:34'), (3174, 1, '79.00', '2018-05-29 12:57:43'), (3175, 1, '60.00', '2018-05-29 12:57:52'), (3176, 1, '67.00', '2018-05-29 12:58:01'), (3177, 1, '70.00', '2018-05-29 12:58:10'), (3178, 1, '95.00', '2018-05-29 12:58:19'), (3179, 1, '77.00', '2018-05-29 12:58:28'), (3180, 1, '73.00', '2018-05-29 12:58:37'), (3181, 1, '74.00', '2018-05-29 12:58:46'), (3182, 1, '68.00', '2018-05-29 12:58:55'), (3183, 1, '99.00', '2018-05-29 12:59:04'), (3184, 1, '92.00', '2018-05-29 12:59:13'), (3185, 1, '71.00', '2018-05-29 12:59:22'), (3186, 1, '65.00', '2018-05-29 12:59:31'), (3187, 1, '72.00', '2018-05-29 12:59:39'), (3188, 1, '78.00', '2018-05-29 12:59:48'), (3189, 1, '79.00', '2018-05-29 12:59:57'), (3190, 1, '73.00', '2018-05-29 13:00:06'), (3191, 1, '78.00', '2018-05-29 13:00:15'), (3192, 1, '72.00', '2018-05-29 13:00:24'), (3193, 1, '73.00', '2018-05-29 13:00:33'), (3194, 1, '86.00', '2018-05-29 13:00:42'), (3195, 1, '70.00', '2018-05-29 13:00:51'), (3196, 1, '95.00', '2018-05-29 13:01:00'), (3197, 1, '83.00', '2018-05-29 13:01:09'), (3198, 1, '81.00', '2018-05-29 13:01:18'), (3199, 1, '92.00', '2018-05-29 13:01:27'), (3200, 1, '98.00', '2018-05-29 13:01:36'), (3201, 1, '76.00', '2018-05-29 13:01:45'), (3202, 1, '83.00', '2018-05-29 13:01:54'), (3203, 1, '68.00', '2018-05-29 13:02:03'), (3204, 1, '71.00', '2018-05-29 13:02:12'), (3205, 1, '67.00', '2018-05-29 13:02:21'), (3206, 1, '77.00', '2018-05-29 13:02:30'), (3207, 1, '90.00', '2018-05-29 13:02:39'), (3208, 1, '66.00', '2018-05-29 13:02:48'), (3209, 1, '83.00', '2018-05-29 13:02:56'), (3210, 1, '86.00', '2018-05-29 13:03:05'), (3211, 1, '86.00', '2018-05-29 13:03:14'), (3212, 1, '85.00', '2018-05-29 13:03:23'), (3213, 1, '69.00', '2018-05-29 13:03:32'), (3214, 1, '72.00', '2018-05-29 13:03:41'), (3215, 1, '88.00', '2018-05-29 13:03:50'), (3216, 1, '72.00', '2018-05-29 13:03:59'), (3217, 1, '92.00', '2018-05-29 13:04:08'), (3218, 1, '98.00', '2018-05-29 13:04:17'), (3219, 1, '91.00', '2018-05-29 13:04:26'), (3220, 1, '70.00', '2018-05-29 13:04:35'), (3221, 1, '79.00', '2018-05-29 13:04:44'), (3222, 1, '87.00', '2018-05-29 13:04:53'), (3223, 1, '74.00', '2018-05-29 13:05:02'), (3224, 1, '93.00', '2018-05-29 13:05:11'), (3225, 1, '78.00', '2018-05-29 13:05:20'), (3226, 1, '80.00', '2018-05-29 13:05:29'), (3227, 1, '87.00', '2018-05-29 13:05:37'), (3228, 1, '90.00', '2018-05-29 13:05:46'), (3229, 1, '94.00', '2018-05-29 13:05:55'), (3230, 1, '98.00', '2018-05-29 13:06:04'), (3231, 1, '96.00', '2018-05-29 13:06:13'), (3232, 1, '93.00', '2018-05-29 13:06:22'), (3233, 1, '93.00', '2018-05-29 13:06:31'), (3234, 1, '86.00', '2018-05-29 13:06:40'), (3235, 1, '70.00', '2018-05-29 13:06:49'), (3236, 1, '72.00', '2018-05-29 13:06:58'), (3237, 1, '72.00', '2018-05-29 13:07:07'), (3238, 1, '84.00', '2018-05-29 13:07:17'), (3239, 1, '96.00', '2018-05-29 13:07:26'), (3240, 1, '84.00', '2018-05-29 13:07:35'), (3241, 1, '90.00', '2018-05-29 13:07:44'), (3242, 1, '82.00', '2018-05-29 13:07:53'), (3243, 1, '91.00', '2018-05-29 13:08:02'), (3244, 1, '90.00', '2018-05-29 13:08:11'), (3245, 1, '62.00', '2018-05-29 13:08:20'), (3246, 1, '81.00', '2018-05-29 13:08:29'), (3247, 1, '60.00', '2018-05-29 13:08:37'), (3248, 1, '69.00', '2018-05-29 13:08:46'), (3249, 1, '95.00', '2018-05-29 13:08:55'), (3250, 1, '64.00', '2018-05-29 13:09:04'), (3251, 1, '95.00', '2018-05-29 13:09:14'), (3252, 1, '99.00', '2018-05-29 13:09:23'), (3253, 1, '62.00', '2018-05-29 13:09:32'), (3254, 1, '94.00', '2018-05-29 13:09:41'), (3255, 1, '66.00', '2018-05-29 13:09:50'), (3256, 1, '78.00', '2018-05-29 13:09:59'), (3257, 1, '64.00', '2018-05-29 13:10:09'), (3258, 1, '75.00', '2018-05-29 13:10:18'), (3259, 1, '67.00', '2018-05-29 13:10:27'), (3260, 1, '83.00', '2018-05-29 13:10:36'), (3261, 1, '64.00', '2018-05-29 13:10:45'), (3262, 1, '73.00', '2018-05-29 13:10:54'), (3263, 1, '62.00', '2018-05-29 13:11:03'), (3264, 1, '69.00', '2018-05-29 13:11:12'), (3265, 1, '69.00', '2018-05-29 13:11:21'), (3266, 1, '84.00', '2018-05-29 13:11:30'), (3267, 1, '86.00', '2018-05-29 13:11:39'), (3268, 1, '60.00', '2018-05-29 13:11:48'), (3269, 1, '63.00', '2018-05-29 13:11:57'), (3270, 1, '61.00', '2018-05-29 13:12:06'), (3271, 1, '69.00', '2018-05-29 13:12:15'), (3272, 1, '77.00', '2018-05-29 13:12:24'), (3273, 1, '79.00', '2018-05-29 13:12:33'), (3274, 1, '72.00', '2018-05-29 13:12:42'), (3275, 1, '86.00', '2018-05-29 13:12:51'), (3276, 1, '67.00', '2018-05-29 13:13:00'), (3277, 1, '77.00', '2018-05-29 13:13:09'), (3278, 1, '99.00', '2018-05-29 13:13:18'), (3279, 1, '77.00', '2018-05-29 13:13:27'), (3280, 1, '67.00', '2018-05-29 13:13:36'), (3281, 1, '63.00', '2018-05-29 13:13:45'), (3282, 1, '86.00', '2018-05-29 13:13:54'), (3283, 1, '99.00', '2018-05-29 13:14:03'), (3284, 1, '83.00', '2018-05-29 13:14:12'), (3285, 1, '68.00', '2018-05-29 13:14:21'), (3286, 1, '85.00', '2018-05-29 13:14:30'), (3287, 1, '70.00', '2018-05-29 13:14:39'), (3288, 1, '68.00', '2018-05-29 13:14:48'), (3289, 1, '88.00', '2018-05-29 13:14:57'), (3290, 1, '83.00', '2018-05-29 13:15:06'), (3291, 1, '78.00', '2018-05-29 13:15:14'), (3292, 1, '65.00', '2018-05-29 13:15:23'), (3293, 1, '77.00', '2018-05-29 13:15:32'), (3294, 1, '60.00', '2018-05-29 13:15:42'), (3295, 1, '66.00', '2018-05-29 13:15:51'), (3296, 1, '83.00', '2018-05-29 13:16:00'), (3297, 1, '63.00', '2018-05-29 13:16:09'), (3298, 1, '94.00', '2018-05-29 13:16:18'), (3299, 1, '85.00', '2018-05-29 13:16:27'), (3300, 1, '65.00', '2018-05-29 13:16:36'), (3301, 1, '73.00', '2018-05-29 13:16:44'), (3302, 1, '84.00', '2018-05-29 13:16:53'), (3303, 1, '98.00', '2018-05-29 13:17:03'), (3304, 1, '83.00', '2018-05-29 13:17:12'), (3305, 1, '86.00', '2018-05-29 13:17:21'), (3306, 1, '96.00', '2018-05-29 13:17:30'), (3307, 1, '83.00', '2018-05-29 13:17:39'), (3308, 1, '93.00', '2018-05-29 13:17:48'), (3309, 1, '73.00', '2018-05-29 13:17:57'), (3310, 1, '65.00', '2018-05-29 13:18:06'), (3311, 1, '90.00', '2018-05-29 13:18:15'), (3312, 1, '89.00', '2018-05-29 13:18:24'), (3313, 1, '98.00', '2018-05-29 13:18:33'), (3314, 1, '63.00', '2018-05-29 13:18:42'), (3315, 1, '62.00', '2018-05-29 13:18:51'), (3316, 1, '82.00', '2018-05-29 13:19:00'), (3317, 1, '83.00', '2018-05-29 13:19:09'), (3318, 1, '62.00', '2018-05-29 13:19:18'), (3319, 1, '84.00', '2018-05-29 13:19:27'), (3320, 1, '69.00', '2018-05-29 13:19:36'), (3321, 1, '87.00', '2018-05-29 13:19:45'), (3322, 1, '61.00', '2018-05-29 13:19:54'), (3323, 1, '73.00', '2018-05-29 13:20:03'), (3324, 1, '79.00', '2018-05-29 13:20:12'), (3325, 1, '92.00', '2018-05-29 13:20:21'), (3326, 1, '89.00', '2018-05-29 13:20:30'), (3327, 1, '63.00', '2018-05-29 13:20:39'), (3328, 1, '84.00', '2018-05-29 13:20:48'), (3329, 1, '72.00', '2018-05-29 13:20:57'), (3330, 1, '80.00', '2018-05-29 13:21:06'), (3331, 1, '82.00', '2018-05-29 13:21:15'), (3332, 1, '82.00', '2018-05-29 13:21:24'), (3333, 1, '74.00', '2018-05-29 13:21:33'), (3334, 1, '86.00', '2018-05-29 13:21:42'), (3335, 1, '77.00', '2018-05-29 13:21:51'), (3336, 1, '78.00', '2018-05-29 13:22:00'), (3337, 1, '96.00', '2018-05-29 13:22:09'), (3338, 1, '61.00', '2018-05-29 13:22:18'), (3339, 1, '99.00', '2018-05-29 13:22:27'), (3340, 1, '96.00', '2018-05-29 13:22:35'), (3341, 1, '83.00', '2018-05-29 13:22:44'), (3342, 1, '97.00', '2018-05-29 13:22:53'), (3343, 1, '92.00', '2018-05-29 13:23:02'), (3344, 1, '83.00', '2018-05-29 13:23:11'), (3345, 1, '96.00', '2018-05-29 13:23:20'), (3346, 1, '64.00', '2018-05-29 13:23:29'), (3347, 1, '60.00', '2018-05-29 13:23:38'), (3348, 1, '92.00', '2018-05-29 13:23:47'), (3349, 1, '67.00', '2018-05-29 13:23:56'), (3350, 1, '72.00', '2018-05-29 13:24:05'), (3351, 1, '80.00', '2018-05-29 13:24:14'), (3352, 1, '76.00', '2018-05-29 13:24:23'), (3353, 1, '93.00', '2018-05-29 13:24:32'), (3354, 1, '97.00', '2018-05-29 13:24:41'), (3355, 1, '87.00', '2018-05-29 13:24:50'), (3356, 1, '67.00', '2018-05-29 13:24:59'), (3357, 1, '98.00', '2018-05-29 13:25:08'), (3358, 1, '62.00', '2018-05-29 13:25:17'), (3359, 1, '74.00', '2018-05-29 13:25:26'), (3360, 1, '70.00', '2018-05-29 13:25:35'), (3361, 1, '71.00', '2018-05-29 13:25:44'), (3362, 1, '65.00', '2018-05-29 13:25:53'), (3363, 1, '74.00', '2018-05-29 13:26:02'), (3364, 1, '66.00', '2018-05-29 13:26:11'), (3365, 1, '68.00', '2018-05-29 13:26:20'), (3366, 1, '74.00', '2018-05-29 13:26:29'), (3367, 1, '72.00', '2018-05-29 13:26:38'), (3368, 1, '93.00', '2018-05-29 13:26:47'), (3369, 1, '79.00', '2018-05-29 13:26:56'), (3370, 1, '93.00', '2018-05-29 13:27:05'), (3371, 1, '93.00', '2018-05-29 13:27:14'), (3372, 1, '79.00', '2018-05-29 13:27:23'), (3373, 1, '89.00', '2018-05-29 13:27:31'), (3374, 1, '73.00', '2018-05-29 13:27:40'), (3375, 1, '94.00', '2018-05-29 13:27:49'), (3376, 1, '97.00', '2018-05-29 13:27:58'), (3377, 1, '77.00', '2018-05-29 13:28:07'), (3378, 1, '63.00', '2018-05-29 13:28:16'), (3379, 1, '93.00', '2018-05-29 13:28:25'), (3380, 1, '61.00', '2018-05-29 13:28:34'), (3381, 1, '91.00', '2018-05-29 13:28:43'), (3382, 1, '82.00', '2018-05-29 13:28:52'), (3383, 1, '72.00', '2018-05-29 13:29:01'), (3384, 1, '94.00', '2018-05-29 13:29:10'), (3385, 1, '63.00', '2018-05-29 13:29:19'), (3386, 1, '92.00', '2018-05-29 13:29:28'), (3387, 1, '71.00', '2018-05-29 13:29:36'), (3388, 1, '83.00', '2018-05-29 13:29:45'), (3389, 1, '96.00', '2018-05-29 13:29:54'), (3390, 1, '87.00', '2018-05-29 13:30:03'), (3391, 1, '63.00', '2018-05-29 13:30:12'), (3392, 1, '88.00', '2018-05-29 13:30:21'), (3393, 1, '78.00', '2018-05-29 13:30:30'), (3394, 1, '90.00', '2018-05-29 13:30:39'), (3395, 1, '80.00', '2018-05-29 13:30:48'), (3396, 1, '91.00', '2018-05-29 13:30:58'), (3397, 1, '98.00', '2018-05-29 13:31:06'), (3398, 1, '64.00', '2018-05-29 13:31:16'), (3399, 1, '71.00', '2018-05-29 13:31:25'), (3400, 1, '91.00', '2018-05-29 13:31:34'), (3401, 1, '74.00', '2018-05-29 13:31:43'), (3402, 1, '77.00', '2018-05-29 13:31:52'), (3403, 1, '99.00', '2018-05-29 13:32:01'), (3404, 1, '89.00', '2018-05-29 13:32:10'), (3405, 1, '90.00', '2018-05-29 13:32:19'), (3406, 1, '96.00', '2018-05-29 13:32:28'), (3407, 1, '94.00', '2018-05-29 13:32:37'), (3408, 1, '96.00', '2018-05-29 13:32:46'), (3409, 1, '78.00', '2018-05-29 13:32:55'), (3410, 1, '70.00', '2018-05-29 13:33:04'), (3411, 1, '79.00', '2018-05-29 13:33:13'), (3412, 1, '74.00', '2018-05-29 13:33:22'), (3413, 1, '76.00', '2018-05-29 13:33:31'), (3414, 1, '71.00', '2018-05-29 13:33:40'), (3415, 1, '84.00', '2018-05-29 13:33:49'), (3416, 1, '89.00', '2018-05-29 13:33:58'), (3417, 1, '91.00', '2018-05-29 13:34:07'), (3418, 1, '76.00', '2018-05-29 13:34:16'), (3419, 1, '82.00', '2018-05-29 13:34:25'), (3420, 1, '76.00', '2018-05-29 13:34:34'), (3421, 1, '99.00', '2018-05-29 13:34:43'), (3422, 1, '61.00', '2018-05-29 13:34:52'), (3423, 1, '65.00', '2018-05-29 13:35:01'), (3424, 1, '80.00', '2018-05-29 13:35:10'), (3425, 1, '89.00', '2018-05-29 13:35:19'), (3426, 1, '95.00', '2018-05-29 13:35:28'), (3427, 1, '73.00', '2018-05-29 13:35:37'), (3428, 1, '99.00', '2018-05-29 13:35:46'), (3429, 1, '94.00', '2018-05-29 13:35:55'), (3430, 1, '63.00', '2018-05-29 13:36:04'), (3431, 1, '78.00', '2018-05-29 13:36:13'), (3432, 1, '91.00', '2018-05-29 13:36:22'), (3433, 1, '84.00', '2018-05-29 13:36:31'), (3434, 1, '81.00', '2018-05-29 13:36:40'), (3435, 1, '91.00', '2018-05-29 13:36:49'), (3436, 1, '75.00', '2018-05-29 13:36:58'), (3437, 1, '86.00', '2018-05-29 13:37:06'), (3438, 1, '72.00', '2018-05-29 13:37:16'), (3439, 1, '93.00', '2018-05-29 13:37:24'), (3440, 1, '62.00', '2018-05-29 13:37:34'), (3441, 1, '60.00', '2018-05-29 13:37:43'), (3442, 1, '60.00', '2018-05-29 13:37:52'), (3443, 1, '64.00', '2018-05-29 13:38:01'), (3444, 1, '60.00', '2018-05-29 13:38:10'), (3445, 1, '82.00', '2018-05-29 13:38:19'), (3446, 1, '80.00', '2018-05-29 13:38:28'), (3447, 1, '74.00', '2018-05-29 13:38:37'), (3448, 1, '80.00', '2018-05-29 13:38:46'), (3449, 1, '71.00', '2018-05-29 13:38:55'), (3450, 1, '70.00', '2018-05-29 13:39:04'), (3451, 1, '69.00', '2018-05-29 13:39:13'), (3452, 1, '80.00', '2018-05-29 13:39:22'), (3453, 1, '90.00', '2018-05-29 13:39:32'), (3454, 1, '91.00', '2018-05-29 13:39:41'), (3455, 1, '66.00', '2018-05-29 13:39:50'), (3456, 1, '85.00', '2018-05-29 13:39:59'), (3457, 1, '70.00', '2018-05-29 13:40:08'), (3458, 1, '90.00', '2018-05-29 13:40:16'), (3459, 1, '68.00', '2018-05-29 13:40:26'), (3460, 1, '92.00', '2018-05-29 13:40:35'), (3461, 1, '94.00', '2018-05-29 13:40:44'), (3462, 1, '71.00', '2018-05-29 13:40:53'), (3463, 1, '81.00', '2018-05-29 13:41:02'), (3464, 1, '92.00', '2018-05-29 13:41:11'), (3465, 1, '69.00', '2018-05-29 13:41:20'), (3466, 1, '64.00', '2018-05-29 13:41:29'), (3467, 1, '98.00', '2018-05-29 13:41:38'), (3468, 1, '74.00', '2018-05-29 13:41:47'), (3469, 1, '66.00', '2018-05-29 13:41:56'), (3470, 1, '60.00', '2018-05-29 13:42:05'), (3471, 1, '84.00', '2018-05-29 13:42:14'), (3472, 1, '97.00', '2018-05-29 13:42:23'), (3473, 1, '72.00', '2018-05-29 13:42:32'), (3474, 1, '92.00', '2018-05-29 13:42:41'), (3475, 1, '83.00', '2018-05-29 13:42:50'), (3476, 1, '80.00', '2018-05-29 13:42:59'), (3477, 1, '82.00', '2018-05-29 13:43:08'), (3478, 1, '92.00', '2018-05-29 13:43:18'), (3479, 1, '66.00', '2018-05-29 13:43:27'), (3480, 1, '96.00', '2018-05-29 13:43:35'), (3481, 1, '73.00', '2018-05-29 13:43:44'), (3482, 1, '88.00', '2018-05-29 13:43:53'), (3483, 1, '70.00', '2018-05-29 13:44:02'), (3484, 1, '98.00', '2018-05-29 13:44:11'), (3485, 1, '97.00', '2018-05-29 13:44:21'), (3486, 1, '63.00', '2018-05-29 13:44:29'), (3487, 1, '97.00', '2018-05-29 13:44:39'), (3488, 1, '61.00', '2018-05-29 13:44:48'), (3489, 1, '90.00', '2018-05-29 13:44:57'), (3490, 1, '62.00', '2018-05-29 13:45:05'), (3491, 1, '64.00', '2018-05-29 13:45:14'), (3492, 1, '74.00', '2018-05-29 13:45:23'), (3493, 1, '98.00', '2018-05-29 13:45:32'), (3494, 1, '88.00', '2018-05-29 13:45:41'), (3495, 1, '63.00', '2018-05-29 13:45:50'), (3496, 1, '97.00', '2018-05-29 13:45:59'), (3497, 1, '62.00', '2018-05-29 13:46:08'), (3498, 1, '81.00', '2018-05-29 13:46:17'), (3499, 1, '98.00', '2018-05-29 13:46:26'), (3500, 1, '87.00', '2018-05-29 13:46:35'), (3501, 1, '65.00', '2018-05-29 13:46:44'), (3502, 1, '88.00', '2018-05-29 13:46:53'), (3503, 1, '83.00', '2018-05-29 13:47:02'), (3504, 1, '93.00', '2018-05-29 13:47:11'), (3505, 1, '77.00', '2018-05-29 13:47:20'), (3506, 1, '92.00', '2018-05-29 13:47:29'), (3507, 1, '66.00', '2018-05-29 13:47:38'), (3508, 1, '76.00', '2018-05-29 13:47:47'), (3509, 1, '76.00', '2018-05-29 13:47:56'), (3510, 1, '88.00', '2018-05-29 13:48:05'), (3511, 1, '95.00', '2018-05-29 13:48:13'), (3512, 1, '90.00', '2018-05-29 13:48:22'), (3513, 1, '62.00', '2018-05-29 13:48:31'), (3514, 1, '65.00', '2018-05-29 13:48:40'), (3515, 1, '97.00', '2018-05-29 13:48:49'), (3516, 1, '62.00', '2018-05-29 13:48:59'), (3517, 1, '66.00', '2018-05-29 13:49:08'), (3518, 1, '69.00', '2018-05-29 13:49:17'), (3519, 1, '89.00', '2018-05-29 13:49:26'), (3520, 1, '84.00', '2018-05-29 13:49:35'), (3521, 1, '62.00', '2018-05-29 13:49:44'), (3522, 1, '79.00', '2018-05-29 13:49:53'), (3523, 1, '84.00', '2018-05-29 13:50:02'), (3524, 1, '96.00', '2018-05-29 13:50:11'), (3525, 1, '93.00', '2018-05-29 13:50:20'), (3526, 1, '69.00', '2018-05-29 13:50:29'), (3527, 1, '82.00', '2018-05-29 13:50:38'), (3528, 1, '73.00', '2018-05-29 13:50:46'), (3529, 1, '66.00', '2018-05-29 13:50:56'), (3530, 1, '64.00', '2018-05-29 13:51:05'), (3531, 1, '90.00', '2018-05-29 13:51:14'), (3532, 1, '98.00', '2018-05-29 13:51:23'), (3533, 1, '81.00', '2018-05-29 13:51:31'), (3534, 1, '62.00', '2018-05-29 13:51:40'), (3535, 1, '74.00', '2018-05-29 13:51:49'), (3536, 1, '87.00', '2018-05-29 13:51:58'), (3537, 1, '62.00', '2018-05-29 13:52:07'), (3538, 1, '80.00', '2018-05-29 13:52:16'), (3539, 1, '81.00', '2018-05-29 13:52:25'), (3540, 1, '74.00', '2018-05-29 13:52:34'), (3541, 1, '96.00', '2018-05-29 13:52:43'), (3542, 1, '92.00', '2018-05-29 13:52:52'), (3543, 1, '61.00', '2018-05-29 13:53:02'), (3544, 1, '93.00', '2018-05-29 13:53:11'), (3545, 1, '90.00', '2018-05-29 13:53:19'), (3546, 1, '81.00', '2018-05-29 13:53:28'), (3547, 1, '99.00', '2018-05-29 13:53:37'), (3548, 1, '90.00', '2018-05-29 13:53:46'), (3549, 1, '94.00', '2018-05-29 13:53:55'), (3550, 1, '77.00', '2018-05-29 13:54:04'), (3551, 1, '91.00', '2018-05-29 13:54:13'), (3552, 1, '96.00', '2018-05-29 13:54:22'), (3553, 1, '83.00', '2018-05-29 13:54:31'), (3554, 1, '63.00', '2018-05-29 13:54:40'), (3555, 1, '79.00', '2018-05-29 13:54:49'), (3556, 1, '60.00', '2018-05-29 13:54:58'), (3557, 1, '60.00', '2018-05-29 13:55:07'), (3558, 1, '60.00', '2018-05-29 13:55:16'), (3559, 1, '67.00', '2018-05-29 13:55:25'), (3560, 1, '91.00', '2018-05-29 13:55:34'), (3561, 1, '90.00', '2018-05-29 13:55:43'), (3562, 1, '64.00', '2018-05-29 13:55:52'), (3563, 1, '85.00', '2018-05-29 13:56:01'), (3564, 1, '97.00', '2018-05-29 13:56:11'), (3565, 1, '93.00', '2018-05-29 13:56:20'), (3566, 1, '95.00', '2018-05-29 13:56:29'), (3567, 1, '65.00', '2018-05-29 13:56:38'), (3568, 1, '72.00', '2018-05-29 13:56:47'), (3569, 1, '86.00', '2018-05-29 13:56:57'), (3570, 1, '70.00', '2018-05-29 13:57:06'), (3571, 1, '82.00', '2018-05-29 13:57:15'), (3572, 1, '88.00', '2018-05-29 13:57:24'), (3573, 1, '60.00', '2018-05-29 13:57:33'), (3574, 1, '97.00', '2018-05-29 13:57:42'), (3575, 1, '99.00', '2018-05-29 13:57:51'), (3576, 1, '77.00', '2018-05-29 13:58:00'), (3577, 1, '69.00', '2018-05-29 13:58:09'), (3578, 1, '86.00', '2018-05-29 13:58:18'), (3579, 1, '73.00', '2018-05-29 13:58:27'), (3580, 1, '95.00', '2018-05-29 13:58:36'), (3581, 1, '99.00', '2018-05-29 13:58:45'), (3582, 1, '66.00', '2018-05-29 13:58:54'), (3583, 1, '94.00', '2018-05-29 13:59:03'), (3584, 1, '91.00', '2018-05-29 13:59:12'), (3585, 1, '80.00', '2018-05-29 13:59:21'), (3586, 1, '82.00', '2018-05-29 13:59:30'), (3587, 1, '98.00', '2018-05-29 13:59:39'), (3588, 1, '63.00', '2018-05-29 13:59:48'), (3589, 1, '87.00', '2018-05-29 13:59:58'), (3590, 1, '95.00', '2018-05-29 14:00:06'), (3591, 1, '82.00', '2018-05-29 14:00:16'), (3592, 1, '64.00', '2018-05-29 14:00:25'), (3593, 1, '70.00', '2018-05-29 14:00:33'), (3594, 1, '65.00', '2018-05-29 14:00:42'), (3595, 1, '61.00', '2018-05-29 14:00:51'), (3596, 1, '68.00', '2018-05-29 14:01:00'), (3597, 1, '93.00', '2018-05-29 14:01:09'), (3598, 1, '69.00', '2018-05-29 14:01:18'), (3599, 1, '62.00', '2018-05-29 14:01:28'), (3600, 1, '92.00', '2018-05-29 14:01:37'), (3601, 1, '66.00', '2018-05-29 14:01:46'), (3602, 1, '97.00', '2018-05-29 14:01:55'), (3603, 1, '90.00', '2018-05-29 14:02:04'), (3604, 1, '95.00', '2018-05-29 14:02:13'), (3605, 1, '98.00', '2018-05-29 14:02:22'), (3606, 1, '73.00', '2018-05-29 14:02:30'), (3607, 1, '74.00', '2018-05-29 14:02:40'), (3608, 1, '88.00', '2018-05-29 14:02:48'), (3609, 1, '61.00', '2018-05-29 14:02:57'), (3610, 1, '90.00', '2018-05-29 14:03:06'), (3611, 1, '66.00', '2018-05-29 14:03:15'), (3612, 1, '74.00', '2018-05-29 14:03:24'), (3613, 1, '66.00', '2018-05-29 14:03:33'), (3614, 1, '99.00', '2018-05-29 14:03:42'), (3615, 1, '83.00', '2018-05-29 14:03:52'), (3616, 1, '78.00', '2018-05-29 14:04:01'), (3617, 1, '69.00', '2018-05-29 14:04:10'), (3618, 1, '66.00', '2018-05-29 14:04:19'), (3619, 1, '88.00', '2018-05-29 14:04:27'), (3620, 1, '75.00', '2018-05-29 14:04:36'), (3621, 1, '77.00', '2018-05-29 14:04:45'), (3622, 1, '96.00', '2018-05-29 14:04:55'), (3623, 1, '85.00', '2018-05-29 14:05:04'), (3624, 1, '80.00', '2018-05-29 14:05:13'), (3625, 1, '66.00', '2018-05-29 14:05:22'), (3626, 1, '95.00', '2018-05-29 14:05:31'), (3627, 1, '66.00', '2018-05-29 14:05:40'), (3628, 1, '65.00', '2018-05-29 14:05:49'), (3629, 1, '81.00', '2018-05-29 14:05:58'), (3630, 1, '99.00', '2018-05-29 14:06:07'), (3631, 1, '79.00', '2018-05-29 14:06:16'), (3632, 1, '83.00', '2018-05-29 14:06:26'), (3633, 1, '98.00', '2018-05-29 14:06:35'), (3634, 1, '94.00', '2018-05-29 14:06:44'), (3635, 1, '87.00', '2018-05-29 14:06:53'), (3636, 1, '72.00', '2018-05-29 14:07:02'), (3637, 1, '71.00', '2018-05-29 14:07:11'), (3638, 1, '81.00', '2018-05-29 14:07:20'), (3639, 1, '69.00', '2018-05-29 14:07:29'), (3640, 1, '99.00', '2018-05-29 14:07:37'), (3641, 1, '92.00', '2018-05-29 14:07:46'), (3642, 1, '71.00', '2018-05-29 14:07:55'), (3643, 1, '76.00', '2018-05-29 14:08:04'), (3644, 1, '64.00', '2018-05-29 14:08:13'), (3645, 1, '80.00', '2018-05-29 14:08:22'), (3646, 1, '72.00', '2018-05-29 14:08:31'), (3647, 1, '77.00', '2018-05-29 14:08:40'), (3648, 1, '99.00', '2018-05-29 14:08:49'), (3649, 1, '75.00', '2018-05-29 14:08:58'), (3650, 1, '68.00', '2018-05-29 14:09:07'), (3651, 1, '96.00', '2018-05-29 14:09:16'), (3652, 1, '62.00', '2018-05-29 14:09:25'), (3653, 1, '91.00', '2018-05-29 14:09:34'), (3654, 1, '93.00', '2018-05-29 14:09:43'), (3655, 1, '75.00', '2018-05-29 14:09:52'), (3656, 1, '74.00', '2018-05-29 14:10:01'), (3657, 1, '62.00', '2018-05-29 14:10:10'), (3658, 1, '99.00', '2018-05-29 14:10:19'), (3659, 1, '68.00', '2018-05-29 14:10:27'), (3660, 1, '71.00', '2018-05-29 14:10:36'), (3661, 1, '94.00', '2018-05-29 14:10:45'), (3662, 1, '83.00', '2018-05-29 14:10:54'), (3663, 1, '78.00', '2018-05-29 14:11:03'), (3664, 1, '78.00', '2018-05-29 14:11:12'), (3665, 1, '65.00', '2018-05-29 14:11:21'), (3666, 1, '93.00', '2018-05-29 14:11:30'), (3667, 1, '80.00', '2018-05-29 14:11:39'), (3668, 1, '69.00', '2018-05-29 14:11:48'), (3669, 1, '84.00', '2018-05-29 14:11:57'), (3670, 1, '73.00', '2018-05-29 14:12:06'), (3671, 1, '95.00', '2018-05-29 14:12:15'), (3672, 1, '90.00', '2018-05-29 14:12:24'), (3673, 1, '70.00', '2018-05-29 14:12:33'), (3674, 1, '84.00', '2018-05-29 14:12:42'), (3675, 1, '87.00', '2018-05-29 14:12:51'), (3676, 1, '98.00', '2018-05-29 14:13:00'), (3677, 1, '81.00', '2018-05-29 14:13:09'), (3678, 1, '99.00', '2018-05-29 14:13:18'); INSERT INTO `leitura` (`idLeitura`, `idMonitor`, `nivel`, `dataHora`) VALUES (3679, 1, '79.00', '2018-05-29 14:13:27'), (3680, 1, '94.00', '2018-05-29 14:13:36'), (3681, 1, '77.00', '2018-05-29 14:13:45'), (3682, 1, '90.00', '2018-05-29 14:13:55'), (3683, 1, '66.00', '2018-05-29 14:14:03'), (3684, 1, '64.00', '2018-05-29 14:14:12'), (3685, 1, '72.00', '2018-05-29 14:14:21'), (3686, 1, '70.00', '2018-05-29 14:14:30'), (3687, 1, '63.00', '2018-05-29 14:14:39'), (3688, 1, '84.00', '2018-05-29 14:14:48'), (3689, 1, '83.00', '2018-05-29 14:14:57'), (3690, 1, '77.00', '2018-05-29 14:15:06'), (3691, 1, '63.00', '2018-05-29 14:15:15'), (3692, 1, '90.00', '2018-05-29 14:15:24'), (3693, 1, '99.00', '2018-05-29 14:15:33'), (3694, 1, '64.00', '2018-05-29 14:15:42'), (3695, 1, '95.00', '2018-05-29 14:15:51'), (3696, 1, '60.00', '2018-05-29 14:16:00'), (3697, 1, '86.00', '2018-05-29 14:16:09'), (3698, 1, '77.00', '2018-05-29 14:16:18'), (3699, 1, '76.00', '2018-05-29 14:16:27'), (3700, 1, '87.00', '2018-05-29 14:16:35'), (3701, 1, '96.00', '2018-05-29 14:16:44'), (3702, 1, '67.00', '2018-05-29 14:16:54'), (3703, 1, '61.00', '2018-05-29 14:17:03'), (3704, 1, '95.00', '2018-05-29 14:17:12'), (3705, 1, '87.00', '2018-05-29 14:17:21'), (3706, 1, '93.00', '2018-05-29 14:17:30'), (3707, 1, '86.00', '2018-05-29 14:17:39'), (3708, 1, '80.00', '2018-05-29 14:17:48'), (3709, 1, '67.00', '2018-05-29 14:17:57'), (3710, 1, '98.00', '2018-05-29 14:18:06'), (3711, 1, '70.00', '2018-05-29 14:18:15'), (3712, 1, '86.00', '2018-05-29 14:18:24'), (3713, 1, '85.00', '2018-05-29 14:18:33'), (3714, 1, '96.00', '2018-05-29 14:18:42'), (3715, 1, '77.00', '2018-05-29 14:18:51'), (3716, 1, '65.00', '2018-05-29 14:19:00'), (3717, 1, '82.00', '2018-05-29 14:19:09'), (3718, 1, '68.00', '2018-05-29 14:19:17'), (3719, 1, '76.00', '2018-05-29 14:19:26'), (3720, 1, '89.00', '2018-05-29 14:19:35'), (3721, 1, '76.00', '2018-05-29 14:19:44'), (3722, 1, '97.00', '2018-05-29 14:19:53'), (3723, 1, '68.00', '2018-05-29 14:20:02'), (3724, 1, '79.00', '2018-05-29 14:20:11'), (3725, 1, '88.00', '2018-05-29 14:20:20'), (3726, 1, '91.00', '2018-05-29 14:20:29'), (3727, 1, '79.00', '2018-05-29 14:20:38'), (3728, 1, '86.00', '2018-05-29 14:20:47'), (3729, 1, '64.00', '2018-05-29 14:20:56'), (3730, 1, '61.00', '2018-05-29 14:21:05'), (3731, 1, '68.00', '2018-05-29 14:21:14'), (3732, 1, '74.00', '2018-05-29 14:21:23'), (3733, 1, '72.00', '2018-05-29 14:21:32'), (3734, 1, '96.00', '2018-05-29 14:21:41'), (3735, 1, '69.00', '2018-05-29 14:21:50'), (3736, 1, '77.00', '2018-05-29 14:21:59'), (3737, 1, '98.00', '2018-05-29 14:22:08'), (3738, 1, '82.00', '2018-05-29 14:22:17'), (3739, 1, '97.00', '2018-05-29 14:22:26'), (3740, 1, '95.00', '2018-05-29 14:22:35'), (3741, 1, '98.00', '2018-05-29 14:22:44'), (3742, 1, '72.00', '2018-05-29 14:22:53'), (3743, 1, '78.00', '2018-05-29 14:23:02'), (3744, 1, '95.00', '2018-05-29 14:23:11'), (3745, 1, '66.00', '2018-05-29 14:23:19'), (3746, 1, '71.00', '2018-05-29 14:23:28'), (3747, 1, '71.00', '2018-05-29 14:23:37'), (3748, 1, '70.00', '2018-05-29 14:23:46'), (3749, 1, '66.00', '2018-05-29 14:23:55'), (3750, 1, '83.00', '2018-05-29 14:24:04'), (3751, 1, '67.00', '2018-05-29 14:24:13'), (3752, 1, '83.00', '2018-05-29 14:24:22'), (3753, 1, '83.00', '2018-05-29 14:24:31'), (3754, 1, '92.00', '2018-05-29 14:24:40'), (3755, 1, '63.00', '2018-05-29 14:24:49'), (3756, 1, '72.00', '2018-05-29 14:24:58'), (3757, 1, '88.00', '2018-05-29 14:25:07'), (3758, 1, '77.00', '2018-05-29 14:25:16'), (3759, 1, '68.00', '2018-05-29 14:25:25'), (3760, 1, '66.00', '2018-05-29 14:25:34'), (3761, 1, '79.00', '2018-05-29 14:25:43'), (3762, 1, '75.00', '2018-05-29 14:25:52'), (3763, 1, '88.00', '2018-05-29 14:26:01'), (3764, 1, '60.00', '2018-05-29 14:26:10'), (3765, 1, '62.00', '2018-05-29 14:26:19'), (3766, 1, '74.00', '2018-05-29 14:26:28'), (3767, 1, '96.00', '2018-05-29 14:26:37'), (3768, 1, '78.00', '2018-05-29 14:26:46'), (3769, 1, '87.00', '2018-05-29 14:26:55'), (3770, 1, '83.00', '2018-05-29 14:27:04'), (3771, 1, '83.00', '2018-05-29 14:27:13'), (3772, 1, '95.00', '2018-05-29 14:27:22'), (3773, 1, '69.00', '2018-05-29 14:27:31'), (3774, 1, '61.00', '2018-05-29 14:27:39'), (3775, 1, '75.00', '2018-05-29 14:27:48'), (3776, 1, '71.00', '2018-05-29 14:27:57'), (3777, 1, '71.00', '2018-05-29 14:28:06'), (3778, 1, '79.00', '2018-05-29 14:28:15'), (3779, 1, '86.00', '2018-05-29 14:28:24'), (3780, 1, '78.00', '2018-05-29 14:28:33'), (3781, 1, '72.00', '2018-05-29 14:28:42'), (3782, 1, '70.00', '2018-05-29 14:28:51'), (3783, 1, '96.00', '2018-05-29 14:29:00'), (3784, 1, '96.00', '2018-05-29 14:29:09'), (3785, 1, '66.00', '2018-05-29 14:29:18'), (3786, 1, '94.00', '2018-05-29 14:29:27'), (3787, 1, '60.00', '2018-05-29 14:29:36'), (3788, 1, '76.00', '2018-05-29 14:29:45'), (3789, 1, '87.00', '2018-05-29 14:29:54'), (3790, 1, '80.00', '2018-05-29 14:30:03'), (3791, 1, '62.00', '2018-05-29 14:30:12'), (3792, 1, '64.00', '2018-05-29 14:30:21'), (3793, 1, '61.00', '2018-05-29 14:30:30'), (3794, 1, '72.00', '2018-05-29 14:30:39'), (3795, 1, '70.00', '2018-05-29 14:30:48'), (3796, 1, '79.00', '2018-05-29 14:30:57'), (3797, 1, '98.00', '2018-05-29 14:31:06'), (3798, 1, '81.00', '2018-05-29 14:31:15'), (3799, 1, '73.00', '2018-05-29 14:31:24'), (3800, 1, '76.00', '2018-05-29 14:31:33'), (3801, 1, '60.00', '2018-05-29 14:31:42'), (3802, 1, '92.00', '2018-05-29 14:31:51'), (3803, 1, '97.00', '2018-05-29 14:32:00'), (3804, 1, '65.00', '2018-05-29 14:32:09'), (3805, 1, '89.00', '2018-05-29 14:32:18'), (3806, 1, '92.00', '2018-05-29 14:32:27'), (3807, 1, '84.00', '2018-05-29 14:32:36'), (3808, 1, '89.00', '2018-05-29 14:32:45'), (3809, 1, '91.00', '2018-05-29 14:32:54'), (3810, 1, '78.00', '2018-05-29 14:33:03'), (3811, 1, '68.00', '2018-05-29 14:33:12'), (3812, 1, '78.00', '2018-05-29 14:33:21'), (3813, 1, '77.00', '2018-05-29 14:33:30'), (3814, 1, '95.00', '2018-05-29 14:33:39'), (3815, 1, '79.00', '2018-05-29 14:33:48'), (3816, 1, '71.00', '2018-05-29 14:33:57'), (3817, 1, '68.00', '2018-05-29 14:34:06'), (3818, 1, '81.00', '2018-05-29 14:34:15'), (3819, 1, '90.00', '2018-05-29 14:34:24'), (3820, 1, '64.00', '2018-05-29 14:34:33'), (3821, 1, '70.00', '2018-05-29 14:34:42'), (3822, 1, '60.00', '2018-05-29 14:34:51'), (3823, 1, '78.00', '2018-05-29 14:35:00'), (3824, 1, '90.00', '2018-05-29 14:35:09'), (3825, 1, '65.00', '2018-05-29 14:35:18'), (3826, 1, '66.00', '2018-05-29 14:35:27'), (3827, 1, '62.00', '2018-05-29 14:35:36'), (3828, 1, '82.00', '2018-05-29 14:35:45'), (3829, 1, '77.00', '2018-05-29 14:35:54'), (3830, 1, '96.00', '2018-05-29 14:36:03'), (3831, 1, '68.00', '2018-05-29 14:36:12'), (3832, 1, '66.00', '2018-05-29 14:36:21'), (3833, 1, '63.00', '2018-05-29 14:36:30'), (3834, 1, '83.00', '2018-05-29 14:36:39'), (3835, 1, '76.00', '2018-05-29 14:36:48'), (3836, 1, '70.00', '2018-05-29 14:36:57'), (3837, 1, '77.00', '2018-05-29 14:37:06'), (3838, 1, '99.00', '2018-05-29 14:37:15'), (3839, 1, '65.00', '2018-05-29 14:37:24'), (3840, 1, '68.00', '2018-05-29 14:37:33'), (3841, 1, '64.00', '2018-05-29 14:37:42'), (3842, 1, '62.00', '2018-05-29 14:37:51'), (3843, 1, '79.00', '2018-05-29 14:38:00'), (3844, 1, '78.00', '2018-05-29 14:38:09'), (3845, 1, '74.00', '2018-05-29 14:38:18'), (3846, 1, '94.00', '2018-05-29 14:38:27'), (3847, 1, '88.00', '2018-05-29 14:38:35'), (3848, 1, '66.00', '2018-05-29 14:38:44'), (3849, 1, '95.00', '2018-05-29 14:38:53'), (3850, 1, '69.00', '2018-05-29 14:39:02'), (3851, 1, '83.00', '2018-05-29 14:39:11'), (3852, 1, '85.00', '2018-05-29 14:39:20'), (3853, 1, '94.00', '2018-05-29 14:39:29'), (3854, 1, '95.00', '2018-05-29 14:39:38'), (3855, 1, '60.00', '2018-05-29 14:39:47'), (3856, 1, '94.00', '2018-05-29 14:39:56'), (3857, 1, '63.00', '2018-05-29 14:40:05'), (3858, 1, '86.00', '2018-05-29 14:40:14'), (3859, 1, '80.00', '2018-05-29 14:40:23'), (3860, 1, '67.00', '2018-05-29 14:40:32'), (3861, 1, '77.00', '2018-05-29 14:40:41'), (3862, 1, '65.00', '2018-05-29 14:40:50'), (3863, 1, '87.00', '2018-05-29 14:40:59'), (3864, 1, '60.00', '2018-05-29 14:41:08'), (3865, 1, '75.00', '2018-05-29 14:41:17'), (3866, 1, '60.00', '2018-05-29 14:41:26'), (3867, 1, '71.00', '2018-05-29 14:41:35'), (3868, 1, '69.00', '2018-05-29 14:41:44'), (3869, 1, '79.00', '2018-05-29 14:41:53'), (3870, 1, '62.00', '2018-05-29 14:42:02'), (3871, 1, '98.00', '2018-05-29 14:42:11'), (3872, 1, '61.00', '2018-05-29 14:42:20'), (3873, 1, '70.00', '2018-05-29 14:42:29'), (3874, 1, '85.00', '2018-05-29 14:42:38'), (3875, 1, '89.00', '2018-05-29 14:42:47'), (3876, 1, '70.00', '2018-05-29 14:42:56'), (3877, 1, '60.00', '2018-05-29 14:43:05'), (3878, 1, '98.00', '2018-05-29 14:43:14'), (3879, 1, '67.00', '2018-05-29 14:43:23'), (3880, 1, '97.00', '2018-05-29 14:43:32'), (3881, 1, '64.00', '2018-05-29 14:43:41'), (3882, 1, '81.00', '2018-05-29 14:43:50'), (3883, 1, '61.00', '2018-05-29 14:43:59'), (3884, 1, '70.00', '2018-05-29 14:44:08'), (3885, 1, '64.00', '2018-05-29 14:44:17'), (3886, 1, '91.00', '2018-05-29 14:44:26'), (3887, 1, '76.00', '2018-05-29 14:44:35'), (3888, 1, '73.00', '2018-05-29 14:44:44'), (3889, 1, '94.00', '2018-05-29 14:44:53'), (3890, 1, '91.00', '2018-05-29 14:45:02'), (3891, 1, '92.00', '2018-05-29 14:45:11'), (3892, 1, '74.00', '2018-05-29 14:45:20'), (3893, 1, '97.00', '2018-05-29 14:45:28'), (3894, 1, '96.00', '2018-05-29 14:45:37'), (3895, 1, '83.00', '2018-05-29 14:45:46'), (3896, 1, '97.00', '2018-05-29 14:45:55'), (3897, 1, '90.00', '2018-05-29 14:46:04'), (3898, 1, '96.00', '2018-05-29 14:46:13'), (3899, 1, '70.00', '2018-05-29 14:46:22'), (3900, 1, '71.00', '2018-05-29 14:46:31'), (3901, 1, '70.00', '2018-05-29 14:46:40'), (3902, 1, '98.00', '2018-05-29 14:46:49'), (3903, 1, '89.00', '2018-05-29 14:46:58'), (3904, 1, '99.00', '2018-05-29 14:47:07'), (3905, 1, '87.00', '2018-05-29 14:47:16'), (3906, 1, '66.00', '2018-05-29 14:47:25'), (3907, 1, '64.00', '2018-05-29 14:47:34'), (3908, 1, '71.00', '2018-05-29 14:47:43'), (3909, 1, '86.00', '2018-05-29 14:47:52'), (3910, 1, '84.00', '2018-05-29 14:48:01'), (3911, 1, '96.00', '2018-05-29 14:48:10'), (3912, 1, '60.00', '2018-05-29 14:48:19'), (3913, 1, '73.00', '2018-05-29 14:48:28'), (3914, 1, '93.00', '2018-05-29 14:48:37'), (3915, 1, '83.00', '2018-05-29 14:48:46'), (3916, 1, '66.00', '2018-05-29 14:48:55'), (3917, 1, '66.00', '2018-05-29 14:49:04'), (3918, 1, '99.00', '2018-05-29 14:49:13'), (3919, 1, '89.00', '2018-05-29 14:49:22'), (3920, 1, '97.00', '2018-05-29 14:49:31'), (3921, 1, '68.00', '2018-05-29 14:49:40'), (3922, 1, '88.00', '2018-05-29 14:49:49'), (3923, 1, '69.00', '2018-05-29 14:49:58'), (3924, 1, '70.00', '2018-05-29 14:50:07'), (3925, 1, '83.00', '2018-05-29 14:50:16'), (3926, 1, '83.00', '2018-05-29 14:50:25'), (3927, 1, '77.00', '2018-05-29 14:50:34'), (3928, 1, '92.00', '2018-05-29 14:50:43'), (3929, 1, '63.00', '2018-05-29 14:50:52'), (3930, 1, '82.00', '2018-05-29 14:51:01'), (3931, 1, '72.00', '2018-05-29 14:51:10'), (3932, 1, '82.00', '2018-05-29 14:51:19'), (3933, 1, '99.00', '2018-05-29 14:51:28'), (3934, 1, '70.00', '2018-05-29 14:51:37'), (3935, 1, '79.00', '2018-05-29 14:51:46'), (3936, 1, '76.00', '2018-05-29 14:51:55'), (3937, 1, '81.00', '2018-05-29 14:52:04'), (3938, 1, '73.00', '2018-05-29 14:52:13'), (3939, 1, '61.00', '2018-05-29 14:52:22'), (3940, 1, '75.00', '2018-05-29 14:52:31'), (3941, 1, '98.00', '2018-05-29 14:52:40'), (3942, 1, '65.00', '2018-05-29 14:52:49'), (3943, 1, '63.00', '2018-05-29 14:52:58'), (3944, 1, '87.00', '2018-05-29 14:53:07'), (3945, 1, '66.00', '2018-05-29 14:53:16'), (3946, 1, '76.00', '2018-05-29 14:53:25'), (3947, 1, '83.00', '2018-05-29 14:53:35'), (3948, 1, '81.00', '2018-05-29 14:53:44'), (3949, 1, '78.00', '2018-05-29 14:53:53'), (3950, 1, '79.00', '2018-05-29 14:54:02'), (3951, 1, '61.00', '2018-05-29 14:54:11'), (3952, 1, '82.00', '2018-05-29 14:54:20'), (3953, 1, '98.00', '2018-05-29 14:54:29'), (3954, 1, '95.00', '2018-05-29 14:54:38'), (3955, 1, '81.00', '2018-05-29 14:54:47'), (3956, 1, '97.00', '2018-05-29 14:54:56'), (3957, 1, '67.00', '2018-05-29 14:55:05'), (3958, 1, '65.00', '2018-05-29 14:55:14'), (3959, 1, '67.00', '2018-05-29 14:55:23'), (3960, 1, '84.00', '2018-05-29 14:55:32'), (3961, 1, '68.00', '2018-05-29 14:55:41'), (3962, 1, '96.00', '2018-05-29 14:55:50'), (3963, 1, '66.00', '2018-05-29 14:55:59'), (3964, 1, '92.00', '2018-05-29 14:56:08'), (3965, 1, '66.00', '2018-05-29 14:56:17'), (3966, 1, '77.00', '2018-05-29 14:56:26'), (3967, 1, '85.00', '2018-05-29 14:56:35'), (3968, 1, '90.00', '2018-05-29 14:56:44'), (3969, 1, '68.00', '2018-05-29 14:56:53'), (3970, 1, '84.00', '2018-05-29 14:57:02'), (3971, 1, '96.00', '2018-05-29 14:57:11'), (3972, 1, '75.00', '2018-05-29 14:57:20'), (3973, 1, '67.00', '2018-05-29 14:57:29'), (3974, 1, '66.00', '2018-05-29 14:57:38'), (3975, 1, '65.00', '2018-05-29 14:57:46'), (3976, 1, '85.00', '2018-05-29 14:57:55'), (3977, 1, '82.00', '2018-05-29 14:58:05'), (3978, 1, '90.00', '2018-05-29 14:58:14'), (3979, 1, '91.00', '2018-05-29 14:58:23'), (3980, 1, '88.00', '2018-05-29 14:58:32'), (3981, 1, '78.00', '2018-05-29 14:58:41'), (3982, 1, '89.00', '2018-05-29 14:58:50'), (3983, 1, '85.00', '2018-05-29 14:58:58'), (3984, 1, '62.00', '2018-05-29 14:59:07'), (3985, 1, '87.00', '2018-05-29 14:59:17'), (3986, 1, '64.00', '2018-05-29 14:59:25'), (3987, 1, '98.00', '2018-05-29 14:59:34'), (3988, 1, '70.00', '2018-05-29 14:59:44'), (3989, 1, '77.00', '2018-05-29 14:59:53'), (3990, 1, '90.00', '2018-05-29 15:00:02'), (3991, 1, '97.00', '2018-05-29 15:00:11'), (3992, 1, '60.00', '2018-05-29 15:00:20'), (3993, 1, '95.00', '2018-05-29 15:00:29'), (3994, 1, '80.00', '2018-05-29 15:00:38'), (3995, 1, '84.00', '2018-05-29 15:00:47'), (3996, 1, '75.00', '2018-05-29 15:00:56'), (3997, 1, '91.00', '2018-05-29 15:01:05'), (3998, 1, '94.00', '2018-05-29 15:01:14'), (3999, 1, '61.00', '2018-05-29 15:01:23'), (4000, 1, '97.00', '2018-05-29 15:01:32'), (4001, 1, '94.00', '2018-05-29 15:01:41'), (4002, 1, '90.00', '2018-05-29 15:01:50'), (4003, 1, '85.00', '2018-05-29 15:02:00'), (4004, 1, '89.00', '2018-05-29 15:02:08'), (4005, 1, '76.00', '2018-05-29 15:02:18'), (4006, 1, '70.00', '2018-05-29 15:02:27'), (4007, 1, '78.00', '2018-05-29 15:02:36'), (4008, 1, '65.00', '2018-05-29 15:02:45'), (4009, 1, '98.00', '2018-05-29 15:02:54'), (4010, 1, '77.00', '2018-05-29 15:03:03'), (4011, 1, '91.00', '2018-05-29 15:03:12'), (4012, 1, '88.00', '2018-05-29 15:03:20'), (4013, 1, '69.00', '2018-05-29 15:03:30'), (4014, 1, '66.00', '2018-05-29 15:03:38'), (4015, 1, '94.00', '2018-05-29 15:03:48'), (4016, 1, '65.00', '2018-05-29 15:03:57'), (4017, 1, '65.00', '2018-05-29 15:04:06'), (4018, 1, '76.00', '2018-05-29 15:04:15'), (4019, 1, '72.00', '2018-05-29 15:04:24'), (4020, 1, '99.00', '2018-05-29 15:04:32'), (4021, 1, '99.00', '2018-05-29 15:04:41'), (4022, 1, '77.00', '2018-05-29 15:04:50'), (4023, 1, '91.00', '2018-05-29 15:05:00'), (4024, 1, '90.00', '2018-05-29 15:05:09'), (4025, 1, '93.00', '2018-05-29 15:05:18'), (4026, 1, '67.00', '2018-05-29 15:05:27'), (4027, 1, '85.00', '2018-05-29 15:05:36'), (4028, 1, '75.00', '2018-05-29 15:05:45'), (4029, 1, '84.00', '2018-05-29 15:05:54'), (4030, 1, '64.00', '2018-05-29 15:06:02'), (4031, 1, '70.00', '2018-05-29 15:06:11'), (4032, 1, '97.00', '2018-05-29 15:06:20'), (4033, 1, '61.00', '2018-05-29 15:06:29'), (4034, 1, '70.00', '2018-05-29 15:06:38'), (4035, 1, '99.00', '2018-05-29 15:06:47'), (4036, 1, '82.00', '2018-05-29 15:06:56'), (4037, 1, '76.00', '2018-05-29 15:07:05'), (4038, 1, '80.00', '2018-05-29 15:07:14'), (4039, 1, '72.00', '2018-05-29 15:07:23'), (4040, 1, '60.00', '2018-05-29 15:07:32'), (4041, 1, '82.00', '2018-05-29 15:07:41'), (4042, 1, '85.00', '2018-05-29 15:07:50'), (4043, 1, '88.00', '2018-05-29 15:07:59'), (4044, 1, '95.00', '2018-05-29 15:08:08'), (4045, 1, '79.00', '2018-05-29 15:08:17'), (4046, 1, '96.00', '2018-05-29 15:08:26'), (4047, 1, '63.00', '2018-05-29 15:08:35'), (4048, 1, '71.00', '2018-05-29 15:08:44'), (4049, 1, '94.00', '2018-05-29 15:08:53'), (4050, 1, '62.00', '2018-05-29 15:09:02'), (4051, 1, '64.00', '2018-05-29 15:09:11'), (4052, 1, '65.00', '2018-05-29 15:09:20'), (4053, 1, '79.00', '2018-05-29 15:09:29'), (4054, 1, '93.00', '2018-05-29 15:09:38'), (4055, 1, '94.00', '2018-05-29 15:09:47'), (4056, 1, '88.00', '2018-05-29 15:09:56'), (4057, 1, '67.00', '2018-05-29 15:10:05'), (4058, 1, '61.00', '2018-05-29 15:10:14'), (4059, 1, '76.00', '2018-05-29 15:10:23'), (4060, 1, '65.00', '2018-05-29 15:10:32'), (4061, 1, '72.00', '2018-05-29 15:10:41'), (4062, 1, '75.00', '2018-05-29 15:10:50'), (4063, 1, '99.00', '2018-05-29 15:10:59'), (4064, 1, '69.00', '2018-05-29 15:11:09'), (4065, 1, '71.00', '2018-05-29 15:11:18'), (4066, 1, '96.00', '2018-05-29 15:11:26'), (4067, 1, '68.00', '2018-05-29 15:11:36'), (4068, 1, '88.00', '2018-05-29 15:11:45'), (4069, 1, '62.00', '2018-05-29 15:11:53'), (4070, 1, '61.00', '2018-05-29 15:12:02'), (4071, 1, '65.00', '2018-05-29 15:12:11'), (4072, 1, '84.00', '2018-05-29 15:12:20'), (4073, 1, '99.00', '2018-05-29 15:12:30'), (4074, 1, '78.00', '2018-05-29 15:12:39'), (4075, 1, '70.00', '2018-05-29 15:12:47'), (4076, 1, '85.00', '2018-05-29 15:12:56'), (4077, 1, '83.00', '2018-05-29 15:13:05'), (4078, 1, '95.00', '2018-05-29 15:13:14'), (4079, 1, '68.00', '2018-05-29 15:13:23'), (4080, 1, '66.00', '2018-05-29 15:13:32'), (4081, 1, '68.00', '2018-05-29 15:13:41'), (4082, 1, '60.00', '2018-05-29 15:13:50'), (4083, 1, '94.00', '2018-05-29 15:13:59'), (4084, 1, '74.00', '2018-05-29 15:14:08'), (4085, 1, '97.00', '2018-05-29 15:14:17'), (4086, 1, '64.00', '2018-05-29 15:14:26'), (4087, 1, '84.00', '2018-05-29 15:14:35'), (4088, 1, '70.00', '2018-05-29 15:14:44'), (4089, 1, '98.00', '2018-05-29 15:14:53'), (4090, 1, '62.00', '2018-05-29 15:15:02'), (4091, 1, '71.00', '2018-05-29 15:15:11'), (4092, 1, '88.00', '2018-05-29 15:15:20'), (4093, 1, '62.00', '2018-05-29 15:15:29'), (4094, 1, '83.00', '2018-05-29 15:15:38'), (4095, 1, '96.00', '2018-05-29 15:15:47'), (4096, 1, '82.00', '2018-05-29 15:15:56'), (4097, 1, '99.00', '2018-05-29 15:16:05'), (4098, 1, '93.00', '2018-05-29 15:16:14'), (4099, 1, '83.00', '2018-05-29 15:16:23'), (4100, 1, '97.00', '2018-05-29 15:16:32'), (4101, 1, '86.00', '2018-05-29 15:16:41'), (4102, 1, '96.00', '2018-05-29 15:16:50'), (4103, 1, '94.00', '2018-05-29 15:16:59'), (4104, 1, '80.00', '2018-05-29 15:17:08'), (4105, 1, '73.00', '2018-05-29 15:17:17'), (4106, 1, '69.00', '2018-05-29 15:17:26'), (4107, 1, '81.00', '2018-05-29 15:17:35'), (4108, 1, '78.00', '2018-05-29 15:17:44'), (4109, 1, '98.00', '2018-05-29 15:17:53'), (4110, 1, '96.00', '2018-05-29 15:18:02'), (4111, 1, '89.00', '2018-05-29 15:18:11'), (4112, 1, '69.00', '2018-05-29 15:18:19'), (4113, 1, '89.00', '2018-05-29 15:18:28'), (4114, 1, '86.00', '2018-05-29 15:18:37'), (4115, 1, '70.00', '2018-05-29 15:18:46'), (4116, 1, '83.00', '2018-05-29 15:18:55'), (4117, 1, '63.00', '2018-05-29 15:19:04'), (4118, 1, '91.00', '2018-05-29 15:19:13'), (4119, 1, '82.00', '2018-05-29 15:19:22'), (4120, 1, '77.00', '2018-05-29 15:19:31'), (4121, 1, '80.00', '2018-05-29 15:19:40'), (4122, 1, '68.00', '2018-05-29 15:19:49'), (4123, 1, '67.00', '2018-05-29 15:19:58'), (4124, 1, '68.00', '2018-05-29 15:20:07'), (4125, 1, '73.00', '2018-05-29 15:20:16'), (4126, 1, '66.00', '2018-05-29 15:20:25'), (4127, 1, '64.00', '2018-05-29 15:20:34'), (4128, 1, '70.00', '2018-05-29 15:20:43'), (4129, 1, '94.00', '2018-05-29 15:20:52'), (4130, 1, '92.00', '2018-05-29 15:21:01'), (4131, 1, '65.00', '2018-05-29 15:21:10'), (4132, 1, '99.00', '2018-05-29 15:21:19'), (4133, 1, '94.00', '2018-05-29 15:21:28'), (4134, 1, '64.00', '2018-05-29 15:21:37'), (4135, 1, '78.00', '2018-05-29 15:21:46'), (4136, 1, '78.00', '2018-05-29 15:21:55'), (4137, 1, '96.00', '2018-05-29 15:22:04'), (4138, 1, '65.00', '2018-05-29 15:22:13'), (4139, 1, '84.00', '2018-05-29 15:22:22'), (4140, 1, '85.00', '2018-05-29 15:22:31'), (4141, 1, '91.00', '2018-05-29 15:22:40'), (4142, 1, '75.00', '2018-05-29 15:22:49'), (4143, 1, '87.00', '2018-05-29 15:22:58'), (4144, 1, '68.00', '2018-05-29 15:23:07'), (4145, 1, '73.00', '2018-05-29 15:23:16'), (4146, 1, '93.00', '2018-05-29 15:23:25'), (4147, 1, '72.00', '2018-05-29 15:23:34'), (4148, 1, '65.00', '2018-05-29 15:23:43'), (4149, 1, '86.00', '2018-05-29 15:23:52'), (4150, 1, '68.00', '2018-05-29 15:24:01'), (4151, 1, '97.00', '2018-05-29 15:24:10'), (4152, 1, '74.00', '2018-05-29 15:24:19'), (4153, 1, '92.00', '2018-05-29 15:24:28'), (4154, 1, '63.00', '2018-05-29 15:24:37'), (4155, 1, '91.00', '2018-05-29 15:24:46'), (4156, 1, '73.00', '2018-05-29 15:24:55'), (4157, 1, '79.00', '2018-05-29 15:25:03'), (4158, 1, '60.00', '2018-05-29 15:25:12'), (4159, 1, '96.00', '2018-05-29 15:25:21'), (4160, 1, '77.00', '2018-05-29 15:25:30'), (4161, 1, '78.00', '2018-05-29 15:25:39'), (4162, 1, '94.00', '2018-05-29 15:25:48'), (4163, 1, '97.00', '2018-05-29 15:25:57'), (4164, 1, '70.00', '2018-05-29 15:26:06'), (4165, 1, '88.00', '2018-05-29 15:26:15'), (4166, 1, '74.00', '2018-05-29 15:26:24'), (4167, 1, '68.00', '2018-05-29 15:26:33'), (4168, 1, '89.00', '2018-05-29 15:26:42'), (4169, 1, '83.00', '2018-05-29 15:26:51'), (4170, 1, '98.00', '2018-05-29 15:27:00'), (4171, 1, '64.00', '2018-05-29 15:27:09'), (4172, 1, '75.00', '2018-05-29 15:27:18'), (4173, 1, '79.00', '2018-05-29 15:27:27'), (4174, 1, '88.00', '2018-05-29 15:27:36'), (4175, 1, '89.00', '2018-05-29 15:27:45'), (4176, 1, '99.00', '2018-05-29 15:27:54'), (4177, 1, '82.00', '2018-05-29 15:28:03'), (4178, 1, '63.00', '2018-05-29 15:28:12'), (4179, 1, '60.00', '2018-05-29 15:28:21'), (4180, 1, '64.00', '2018-05-29 15:28:30'), (4181, 1, '67.00', '2018-05-29 15:28:39'), (4182, 1, '73.00', '2018-05-29 15:28:48'), (4183, 1, '67.00', '2018-05-29 15:28:57'), (4184, 1, '81.00', '2018-05-29 15:29:06'), (4185, 1, '65.00', '2018-05-29 15:29:15'), (4186, 1, '76.00', '2018-05-29 15:29:24'), (4187, 1, '87.00', '2018-05-29 15:29:33'), (4188, 1, '93.00', '2018-05-29 15:29:42'), (4189, 1, '77.00', '2018-05-29 15:29:51'), (4190, 1, '98.00', '2018-05-29 15:30:00'), (4191, 1, '93.00', '2018-05-29 15:30:09'), (4192, 1, '95.00', '2018-05-29 15:30:18'), (4193, 1, '76.00', '2018-05-29 15:30:27'), (4194, 1, '72.00', '2018-05-29 15:30:36'), (4195, 1, '65.00', '2018-05-29 15:30:45'), (4196, 1, '64.00', '2018-05-29 15:30:54'), (4197, 1, '66.00', '2018-05-29 15:31:03'), (4198, 1, '84.00', '2018-05-29 15:31:11'), (4199, 1, '78.00', '2018-05-29 15:31:20'), (4200, 1, '97.00', '2018-05-29 15:31:29'), (4201, 1, '77.00', '2018-05-29 15:31:39'), (4202, 1, '65.00', '2018-05-29 15:31:48'), (4203, 1, '92.00', '2018-05-29 15:31:57'), (4204, 1, '63.00', '2018-05-29 15:32:07'), (4205, 1, '82.00', '2018-05-29 15:32:16'), (4206, 1, '86.00', '2018-05-29 15:32:25'), (4207, 1, '74.00', '2018-05-29 15:32:34'), (4208, 1, '66.00', '2018-05-29 15:32:43'), (4209, 1, '73.00', '2018-05-29 15:32:52'), (4210, 1, '95.00', '2018-05-29 15:33:00'), (4211, 1, '72.00', '2018-05-29 15:33:09'), (4212, 1, '69.00', '2018-05-29 15:33:19'), (4213, 1, '93.00', '2018-05-29 15:33:28'), (4214, 1, '76.00', '2018-05-29 15:33:37'), (4215, 1, '96.00', '2018-05-29 15:33:46'), (4216, 1, '85.00', '2018-05-29 15:33:55'), (4217, 1, '71.00', '2018-05-29 15:34:04'), (4218, 1, '87.00', '2018-05-29 15:34:13'), (4219, 1, '85.00', '2018-05-29 15:34:22'), (4220, 1, '87.00', '2018-05-29 15:34:31'), (4221, 1, '71.00', '2018-05-29 15:34:40'), (4222, 1, '77.00', '2018-05-29 15:34:49'), (4223, 1, '99.00', '2018-05-29 15:34:58'), (4224, 1, '93.00', '2018-05-29 15:35:07'), (4225, 1, '93.00', '2018-05-29 15:35:16'), (4226, 1, '73.00', '2018-05-29 15:35:25'), (4227, 1, '93.00', '2018-05-29 15:35:34'), (4228, 1, '64.00', '2018-05-29 15:35:43'), (4229, 1, '60.00', '2018-05-29 15:35:52'), (4230, 1, '60.00', '2018-05-29 15:36:01'), (4231, 1, '83.00', '2018-05-29 15:36:10'), (4232, 1, '83.00', '2018-05-29 15:36:19'), (4233, 1, '89.00', '2018-05-29 15:36:28'), (4234, 1, '62.00', '2018-05-29 15:36:37'), (4235, 1, '63.00', '2018-05-29 15:36:46'), (4236, 1, '85.00', '2018-05-29 15:36:54'), (4237, 1, '60.00', '2018-05-29 15:37:03'), (4238, 1, '88.00', '2018-05-29 15:37:12'), (4239, 1, '66.00', '2018-05-29 15:37:21'), (4240, 1, '72.00', '2018-05-29 15:37:30'), (4241, 1, '91.00', '2018-05-29 15:37:39'), (4242, 1, '91.00', '2018-05-29 15:37:48'), (4243, 1, '90.00', '2018-05-29 15:37:57'), (4244, 1, '73.00', '2018-05-29 15:38:06'), (4245, 1, '62.00', '2018-05-29 15:38:15'), (4246, 1, '68.00', '2018-05-29 15:38:24'), (4247, 1, '74.00', '2018-05-29 15:38:33'), (4248, 1, '95.00', '2018-05-29 15:38:42'), (4249, 1, '91.00', '2018-05-29 15:38:51'), (4250, 1, '82.00', '2018-05-29 15:39:00'), (4251, 1, '72.00', '2018-05-29 15:39:09'), (4252, 1, '89.00', '2018-05-29 15:39:18'), (4253, 1, '67.00', '2018-05-29 15:39:27'), (4254, 1, '64.00', '2018-05-29 15:39:36'), (4255, 1, '78.00', '2018-05-29 15:39:45'), (4256, 1, '91.00', '2018-05-29 15:39:54'), (4257, 1, '79.00', '2018-05-29 15:40:03'), (4258, 1, '75.00', '2018-05-29 15:40:12'), (4259, 1, '92.00', '2018-05-29 15:40:21'), (4260, 1, '85.00', '2018-05-29 15:40:29'), (4261, 1, '93.00', '2018-05-29 15:40:38'), (4262, 1, '69.00', '2018-05-29 15:40:47'), (4263, 1, '89.00', '2018-05-29 15:40:56'), (4264, 1, '96.00', '2018-05-29 15:41:05'), (4265, 1, '99.00', '2018-05-29 15:41:14'), (4266, 1, '63.00', '2018-05-29 15:41:23'), (4267, 1, '93.00', '2018-05-29 15:41:32'), (4268, 1, '69.00', '2018-05-29 15:41:41'), (4269, 1, '98.00', '2018-05-29 15:41:50'), (4270, 1, '68.00', '2018-05-29 15:41:59'), (4271, 1, '92.00', '2018-05-29 15:42:08'), (4272, 1, '71.00', '2018-05-29 15:42:17'), (4273, 1, '93.00', '2018-05-29 15:42:26'), (4274, 1, '86.00', '2018-05-29 15:42:35'), (4275, 1, '68.00', '2018-05-29 15:42:44'), (4276, 1, '72.00', '2018-05-29 15:42:53'), (4277, 1, '94.00', '2018-05-29 15:43:02'), (4278, 1, '76.00', '2018-05-29 15:43:11'), (4279, 1, '91.00', '2018-05-29 15:43:20'), (4280, 1, '60.00', '2018-05-29 15:43:29'), (4281, 1, '95.00', '2018-05-29 15:43:38'), (4282, 1, '77.00', '2018-05-29 15:43:47'), (4283, 1, '86.00', '2018-05-29 15:43:56'), (4284, 1, '87.00', '2018-05-29 15:44:05'), (4285, 1, '83.00', '2018-05-29 15:44:14'), (4286, 1, '76.00', '2018-05-29 15:44:23'), (4287, 1, '98.00', '2018-05-29 15:44:32'), (4288, 1, '72.00', '2018-05-29 15:44:41'), (4289, 1, '73.00', '2018-05-29 15:44:50'), (4290, 1, '76.00', '2018-05-29 15:44:59'), (4291, 1, '82.00', '2018-05-29 15:45:08'), (4292, 1, '69.00', '2018-05-29 15:45:17'), (4293, 1, '84.00', '2018-05-29 15:45:26'), (4294, 1, '80.00', '2018-05-29 15:45:35'), (4295, 1, '71.00', '2018-05-29 15:45:44'), (4296, 1, '76.00', '2018-05-29 15:45:53'), (4297, 1, '89.00', '2018-05-29 15:46:02'), (4298, 1, '88.00', '2018-05-29 15:46:11'), (4299, 1, '89.00', '2018-05-29 15:46:20'), (4300, 1, '79.00', '2018-05-29 15:46:29'), (4301, 1, '86.00', '2018-05-29 15:46:38'), (4302, 1, '82.00', '2018-05-29 15:46:47'), (4303, 1, '81.00', '2018-05-29 15:46:56'), (4304, 1, '84.00', '2018-05-29 15:47:05'), (4305, 1, '66.00', '2018-05-29 15:47:14'), (4306, 1, '63.00', '2018-05-29 15:47:23'), (4307, 1, '61.00', '2018-05-29 15:47:32'), (4308, 1, '78.00', '2018-05-29 15:47:41'), (4309, 1, '70.00', '2018-05-29 15:47:50'), (4310, 1, '82.00', '2018-05-29 15:47:59'), (4311, 1, '61.00', '2018-05-29 15:48:08'), (4312, 1, '91.00', '2018-05-29 15:48:17'), (4313, 1, '95.00', '2018-05-29 15:48:26'), (4314, 1, '87.00', '2018-05-29 15:48:35'), (4315, 1, '78.00', '2018-05-29 15:48:44'), (4316, 1, '61.00', '2018-05-29 15:48:53'), (4317, 1, '62.00', '2018-05-29 15:49:02'), (4318, 1, '90.00', '2018-05-29 15:49:12'), (4319, 1, '64.00', '2018-05-29 15:49:21'), (4320, 1, '87.00', '2018-05-29 15:49:30'), (4321, 1, '66.00', '2018-05-29 15:49:39'), (4322, 1, '68.00', '2018-05-29 15:49:48'), (4323, 1, '73.00', '2018-05-29 15:49:57'), (4324, 1, '85.00', '2018-05-29 15:50:06'), (4325, 1, '82.00', '2018-05-29 15:50:15'), (4326, 1, '96.00', '2018-05-29 15:50:24'), (4327, 1, '82.00', '2018-05-29 15:50:33'), (4328, 1, '83.00', '2018-05-29 15:50:42'), (4329, 1, '78.00', '2018-05-29 15:50:51'), (4330, 1, '65.00', '2018-05-29 15:51:00'), (4331, 1, '85.00', '2018-05-29 15:51:09'), (4332, 1, '64.00', '2018-05-29 15:51:19'), (4333, 1, '90.00', '2018-05-29 15:51:28'), (4334, 1, '88.00', '2018-05-29 15:51:37'), (4335, 1, '92.00', '2018-05-29 15:51:46'), (4336, 1, '71.00', '2018-05-29 15:51:55'), (4337, 1, '79.00', '2018-05-29 15:52:04'), (4338, 1, '89.00', '2018-05-29 15:52:13'), (4339, 1, '62.00', '2018-05-29 15:52:22'), (4340, 1, '77.00', '2018-05-29 15:52:31'), (4341, 1, '66.00', '2018-05-29 15:52:40'), (4342, 1, '85.00', '2018-05-29 15:52:49'), (4343, 1, '76.00', '2018-05-29 15:52:58'), (4344, 1, '92.00', '2018-05-29 15:53:07'), (4345, 1, '65.00', '2018-05-29 15:53:16'), (4346, 1, '73.00', '2018-05-29 15:53:25'), (4347, 1, '78.00', '2018-05-29 15:53:34'), (4348, 1, '66.00', '2018-05-29 15:53:43'), (4349, 1, '69.00', '2018-05-29 15:53:52'), (4350, 1, '70.00', '2018-05-29 15:54:00'), (4351, 1, '67.00', '2018-05-29 15:54:09'), (4352, 1, '92.00', '2018-05-29 15:54:18'), (4353, 1, '64.00', '2018-05-29 15:54:27'), (4354, 1, '97.00', '2018-05-29 15:54:36'), (4355, 1, '74.00', '2018-05-29 15:54:45'), (4356, 1, '68.00', '2018-05-29 15:54:54'), (4357, 1, '98.00', '2018-05-29 15:55:03'), (4358, 1, '70.00', '2018-05-29 15:55:12'), (4359, 1, '76.00', '2018-05-29 15:55:21'), (4360, 1, '74.00', '2018-05-29 15:55:30'), (4361, 1, '76.00', '2018-05-29 15:55:39'), (4362, 1, '70.00', '2018-05-29 15:55:48'), (4363, 1, '95.00', '2018-05-29 15:55:57'), (4364, 1, '69.00', '2018-05-29 15:56:06'), (4365, 1, '65.00', '2018-05-29 15:56:16'), (4366, 1, '94.00', '2018-05-29 15:56:25'), (4367, 1, '77.00', '2018-05-29 15:56:34'), (4368, 1, '61.00', '2018-05-29 15:56:43'), (4369, 1, '99.00', '2018-05-29 15:56:52'), (4370, 1, '96.00', '2018-05-29 15:57:01'), (4371, 1, '91.00', '2018-05-29 15:57:11'), (4372, 1, '99.00', '2018-05-29 15:57:20'), (4373, 1, '88.00', '2018-05-29 15:57:29'), (4374, 1, '66.00', '2018-05-29 15:57:38'), (4375, 1, '99.00', '2018-05-29 15:57:47'), (4376, 1, '71.00', '2018-05-29 15:57:55'), (4377, 1, '75.00', '2018-05-29 15:58:04'), (4378, 1, '74.00', '2018-05-29 15:58:13'), (4379, 1, '79.00', '2018-05-29 15:58:23'), (4380, 1, '94.00', '2018-05-29 15:58:32'), (4381, 1, '82.00', '2018-05-29 15:58:41'), (4382, 1, '97.00', '2018-05-29 15:58:50'), (4383, 1, '87.00', '2018-05-29 15:58:59'), (4384, 1, '81.00', '2018-05-29 15:59:08'), (4385, 1, '97.00', '2018-05-29 15:59:17'), (4386, 1, '84.00', '2018-05-29 15:59:26'), (4387, 1, '95.00', '2018-05-29 15:59:34'), (4388, 1, '83.00', '2018-05-29 15:59:43'), (4389, 1, '61.00', '2018-05-29 15:59:52'), (4390, 1, '68.00', '2018-05-29 16:00:01'), (4391, 1, '78.00', '2018-05-29 16:00:10'), (4392, 1, '79.00', '2018-05-29 16:00:19'), (4393, 1, '89.00', '2018-05-29 16:00:28'), (4394, 1, '96.00', '2018-05-29 16:00:37'), (4395, 1, '70.00', '2018-05-29 16:00:46'), (4396, 1, '78.00', '2018-05-29 16:00:55'), (4397, 1, '76.00', '2018-05-29 16:01:04'), (4398, 1, '76.00', '2018-05-29 16:01:13'), (4399, 1, '78.00', '2018-05-29 16:01:22'), (4400, 1, '95.00', '2018-05-29 16:01:31'), (4401, 1, '80.00', '2018-05-29 16:01:40'), (4402, 1, '88.00', '2018-05-29 16:01:49'), (4403, 1, '69.00', '2018-05-29 16:01:58'), (4404, 1, '97.00', '2018-05-29 16:02:07'), (4405, 1, '61.00', '2018-05-29 16:02:16'), (4406, 1, '70.00', '2018-05-29 16:02:25'), (4407, 1, '72.00', '2018-05-29 16:02:34'), (4408, 1, '62.00', '2018-05-29 16:02:43'), (4409, 1, '61.00', '2018-05-29 16:02:52'), (4410, 1, '79.00', '2018-05-29 16:03:01'), (4411, 1, '93.00', '2018-05-29 16:03:10'), (4412, 1, '88.00', '2018-05-29 16:03:19'), (4413, 1, '77.00', '2018-05-29 16:03:28'), (4414, 1, '96.00', '2018-05-29 16:03:37'), (4415, 1, '96.00', '2018-05-29 16:03:46'), (4416, 1, '61.00', '2018-05-29 16:03:55'), (4417, 1, '75.00', '2018-05-29 16:04:04'), (4418, 1, '91.00', '2018-05-29 16:04:13'), (4419, 1, '86.00', '2018-05-29 16:04:22'), (4420, 1, '67.00', '2018-05-29 16:04:31'), (4421, 1, '92.00', '2018-05-29 16:04:40'), (4422, 1, '61.00', '2018-05-29 16:04:49'), (4423, 1, '67.00', '2018-05-29 16:04:58'), (4424, 1, '67.00', '2018-05-29 16:05:07'), (4425, 1, '63.00', '2018-05-29 16:05:16'), (4426, 1, '84.00', '2018-05-29 16:05:25'), (4427, 1, '77.00', '2018-05-29 16:05:34'), (4428, 1, '77.00', '2018-05-29 16:05:43'), (4429, 1, '62.00', '2018-05-29 16:05:52'), (4430, 1, '70.00', '2018-05-29 16:06:01'), (4431, 1, '75.00', '2018-05-29 16:06:10'), (4432, 1, '77.00', '2018-05-29 16:06:19'), (4433, 1, '72.00', '2018-05-29 16:06:27'), (4434, 1, '63.00', '2018-05-29 16:06:36'), (4435, 1, '81.00', '2018-05-29 16:06:45'), (4436, 1, '61.00', '2018-05-29 16:06:54'), (4437, 1, '61.00', '2018-05-29 16:07:03'), (4438, 1, '85.00', '2018-05-29 16:07:12'), (4439, 1, '64.00', '2018-05-29 16:07:21'), (4440, 1, '74.00', '2018-05-29 16:07:30'), (4441, 1, '75.00', '2018-05-29 16:07:39'), (4442, 1, '69.00', '2018-05-29 16:07:48'), (4443, 1, '79.00', '2018-05-29 16:07:57'), (4444, 1, '61.00', '2018-05-29 16:08:06'), (4445, 1, '68.00', '2018-05-29 16:08:15'), (4446, 1, '61.00', '2018-05-29 16:08:24'), (4447, 1, '60.00', '2018-05-29 16:08:33'), (4448, 1, '82.00', '2018-05-29 16:08:42'), (4449, 1, '86.00', '2018-05-29 16:08:51'), (4450, 1, '64.00', '2018-05-29 16:09:00'), (4451, 1, '94.00', '2018-05-29 16:09:09'), (4452, 1, '78.00', '2018-05-29 16:09:18'), (4453, 1, '80.00', '2018-05-29 16:09:27'), (4454, 1, '73.00', '2018-05-29 16:09:36'), (4455, 1, '60.00', '2018-05-29 16:09:45'), (4456, 1, '66.00', '2018-05-29 16:09:54'), (4457, 1, '86.00', '2018-05-29 16:10:03'), (4458, 1, '63.00', '2018-05-29 16:10:11'), (4459, 1, '77.00', '2018-05-29 16:10:20'), (4460, 1, '61.00', '2018-05-29 16:10:29'), (4461, 1, '71.00', '2018-05-29 16:10:38'), (4462, 1, '81.00', '2018-05-29 16:10:47'), (4463, 1, '60.00', '2018-05-29 16:10:56'), (4464, 1, '96.00', '2018-05-29 16:11:05'), (4465, 1, '67.00', '2018-05-29 16:11:14'), (4466, 1, '68.00', '2018-05-29 16:11:23'), (4467, 1, '96.00', '2018-05-29 16:11:32'), (4468, 1, '67.00', '2018-05-29 16:11:41'), (4469, 1, '88.00', '2018-05-29 16:11:50'), (4470, 1, '98.00', '2018-05-29 16:11:59'), (4471, 1, '69.00', '2018-05-29 16:12:08'), (4472, 1, '85.00', '2018-05-29 16:12:17'), (4473, 1, '92.00', '2018-05-29 16:12:26'), (4474, 1, '65.00', '2018-05-29 16:12:35'), (4475, 1, '93.00', '2018-05-29 16:12:44'), (4476, 1, '87.00', '2018-05-29 16:12:53'), (4477, 1, '65.00', '2018-05-29 16:13:02'), (4478, 1, '85.00', '2018-05-29 16:13:11'), (4479, 1, '70.00', '2018-05-29 16:13:20'), (4480, 1, '80.00', '2018-05-29 16:13:29'), (4481, 1, '69.00', '2018-05-29 16:13:38'), (4482, 1, '82.00', '2018-05-29 16:13:47'), (4483, 1, '80.00', '2018-05-29 16:13:56'), (4484, 1, '86.00', '2018-05-29 16:14:05'), (4485, 1, '62.00', '2018-05-29 16:14:14'), (4486, 1, '72.00', '2018-05-29 16:14:23'), (4487, 1, '77.00', '2018-05-29 16:14:32'), (4488, 1, '69.00', '2018-05-29 16:14:41'), (4489, 1, '73.00', '2018-05-29 16:14:50'), (4490, 1, '98.00', '2018-05-29 16:14:59'), (4491, 1, '74.00', '2018-05-29 16:15:08'), (4492, 1, '89.00', '2018-05-29 16:15:17'), (4493, 1, '73.00', '2018-05-29 16:15:26'), (4494, 1, '88.00', '2018-05-29 16:15:35'), (4495, 1, '94.00', '2018-05-29 16:15:43'), (4496, 1, '66.00', '2018-05-29 16:15:52'), (4497, 1, '82.00', '2018-05-29 16:16:02'), (4498, 1, '73.00', '2018-05-29 16:16:11'), (4499, 1, '77.00', '2018-05-29 16:16:21'), (4500, 1, '82.00', '2018-05-29 16:16:30'), (4501, 1, '97.00', '2018-05-29 16:16:39'), (4502, 1, '74.00', '2018-05-29 16:16:47'), (4503, 1, '84.00', '2018-05-29 16:16:56'), (4504, 1, '68.00', '2018-05-29 16:17:06'), (4505, 1, '63.00', '2018-05-29 16:17:14'), (4506, 1, '83.00', '2018-05-29 16:17:23'), (4507, 1, '71.00', '2018-05-29 16:17:32'), (4508, 1, '81.00', '2018-05-29 16:17:41'), (4509, 1, '71.00', '2018-05-29 16:17:50'), (4510, 1, '68.00', '2018-05-29 16:17:59'), (4511, 1, '82.00', '2018-05-29 16:18:08'), (4512, 1, '61.00', '2018-05-29 16:18:18'), (4513, 1, '90.00', '2018-05-29 16:18:27'), (4514, 1, '79.00', '2018-05-29 16:18:36'), (4515, 1, '97.00', '2018-05-29 16:18:45'), (4516, 1, '89.00', '2018-05-29 16:18:54'), (4517, 1, '62.00', '2018-05-29 16:19:03'), (4518, 1, '68.00', '2018-05-29 16:19:12'), (4519, 1, '99.00', '2018-05-29 16:19:21'), (4520, 1, '70.00', '2018-05-29 16:19:30'), (4521, 1, '77.00', '2018-05-29 16:19:39'), (4522, 1, '68.00', '2018-05-29 16:19:48'), (4523, 1, '81.00', '2018-05-29 16:19:57'), (4524, 1, '60.00', '2018-05-29 16:20:06'), (4525, 1, '85.00', '2018-05-29 16:20:15'), (4526, 1, '99.00', '2018-05-29 16:20:24'), (4527, 1, '96.00', '2018-05-29 16:20:33'), (4528, 1, '66.00', '2018-05-29 16:20:42'), (4529, 1, '69.00', '2018-05-29 16:20:51'), (4530, 1, '62.00', '2018-05-29 16:21:00'), (4531, 1, '62.00', '2018-05-29 16:21:09'), (4532, 1, '68.00', '2018-05-29 16:21:18'), (4533, 1, '97.00', '2018-05-29 16:21:27'), (4534, 1, '93.00', '2018-05-29 16:21:36'), (4535, 1, '63.00', '2018-05-29 16:21:45'), (4536, 1, '92.00', '2018-05-29 16:21:53'), (4537, 1, '99.00', '2018-05-29 16:22:02'), (4538, 1, '64.00', '2018-05-29 16:22:11'), (4539, 1, '98.00', '2018-05-29 16:22:21'), (4540, 1, '85.00', '2018-05-29 16:22:30'), (4541, 1, '96.00', '2018-05-29 16:22:39'), (4542, 1, '84.00', '2018-05-29 16:22:48'), (4543, 1, '84.00', '2018-05-29 16:22:57'), (4544, 1, '83.00', '2018-05-29 16:23:06'), (4545, 1, '92.00', '2018-05-29 16:23:14'), (4546, 1, '83.00', '2018-05-29 16:23:23'), (4547, 1, '69.00', '2018-05-29 16:23:32'), (4548, 1, '76.00', '2018-05-29 16:23:42'), (4549, 1, '94.00', '2018-05-29 16:23:51'), (4550, 1, '89.00', '2018-05-29 16:24:00'), (4551, 1, '69.00', '2018-05-29 16:24:09'), (4552, 1, '68.00', '2018-05-29 16:24:17'), (4553, 1, '91.00', '2018-05-29 16:24:26'), (4554, 1, '71.00', '2018-05-29 16:24:35'), (4555, 1, '74.00', '2018-05-29 16:24:45'), (4556, 1, '83.00', '2018-05-29 16:24:53'), (4557, 1, '93.00', '2018-05-29 16:25:02'), (4558, 1, '77.00', '2018-05-29 16:25:11'), (4559, 1, '80.00', '2018-05-29 16:25:20'), (4560, 1, '93.00', '2018-05-29 16:25:29'), (4561, 1, '66.00', '2018-05-29 16:25:38'), (4562, 1, '80.00', '2018-05-29 16:25:47'), (4563, 1, '64.00', '2018-05-29 16:25:56'), (4564, 1, '91.00', '2018-05-29 16:26:05'), (4565, 1, '93.00', '2018-05-29 16:26:14'), (4566, 1, '75.00', '2018-05-29 16:26:23'), (4567, 1, '66.00', '2018-05-29 16:26:32'), (4568, 1, '89.00', '2018-05-29 16:26:41'), (4569, 1, '94.00', '2018-05-29 16:26:50'), (4570, 1, '83.00', '2018-05-29 16:26:59'), (4571, 1, '81.00', '2018-05-29 16:27:08'), (4572, 1, '72.00', '2018-05-29 16:27:17'), (4573, 1, '77.00', '2018-05-29 16:27:26'), (4574, 1, '83.00', '2018-05-29 16:27:35'), (4575, 1, '86.00', '2018-05-29 16:27:44'), (4576, 1, '60.00', '2018-05-29 16:27:53'), (4577, 1, '60.00', '2018-05-29 16:28:02'), (4578, 1, '98.00', '2018-05-29 16:28:11'), (4579, 1, '99.00', '2018-05-29 16:28:20'), (4580, 1, '91.00', '2018-05-29 16:28:29'), (4581, 1, '60.00', '2018-05-29 16:28:38'), (4582, 1, '89.00', '2018-05-29 16:28:47'), (4583, 1, '75.00', '2018-05-29 16:28:56'), (4584, 1, '84.00', '2018-05-29 16:29:05'), (4585, 1, '74.00', '2018-05-29 16:29:14'), (4586, 1, '60.00', '2018-05-29 16:29:23'), (4587, 1, '69.00', '2018-05-29 16:29:32'), (4588, 1, '75.00', '2018-05-29 16:29:40'), (4589, 1, '70.00', '2018-05-29 16:29:49'), (4590, 1, '61.00', '2018-05-29 16:29:58'), (4591, 1, '93.00', '2018-05-29 16:30:07'), (4592, 1, '63.00', '2018-05-29 16:30:16'), (4593, 1, '76.00', '2018-05-29 16:30:25'), (4594, 1, '85.00', '2018-05-29 16:30:34'), (4595, 1, '63.00', '2018-05-29 16:30:43'), (4596, 1, '96.00', '2018-05-29 16:30:52'), (4597, 1, '61.00', '2018-05-29 16:31:01'), (4598, 1, '93.00', '2018-05-29 16:31:10'), (4599, 1, '70.00', '2018-05-29 16:31:19'), (4600, 1, '70.00', '2018-05-29 16:31:28'), (4601, 1, '95.00', '2018-05-29 16:31:37'), (4602, 1, '71.00', '2018-05-29 16:31:46'), (4603, 1, '73.00', '2018-05-29 16:31:55'), (4604, 1, '87.00', '2018-05-29 16:32:04'), (4605, 1, '88.00', '2018-05-29 16:32:13'), (4606, 1, '83.00', '2018-05-29 16:32:22'), (4607, 1, '99.00', '2018-05-29 16:32:31'), (4608, 1, '78.00', '2018-05-29 16:32:40'), (4609, 1, '95.00', '2018-05-29 16:32:49'), (4610, 1, '76.00', '2018-05-29 16:32:57'), (4611, 1, '72.00', '2018-05-29 16:33:06'), (4612, 1, '94.00', '2018-05-29 16:33:15'), (4613, 1, '83.00', '2018-05-29 16:33:24'), (4614, 1, '83.00', '2018-05-29 16:33:33'), (4615, 1, '66.00', '2018-05-29 16:33:42'), (4616, 1, '77.00', '2018-05-29 16:33:51'), (4617, 1, '62.00', '2018-05-29 16:34:00'), (4618, 1, '85.00', '2018-05-29 16:34:09'), (4619, 1, '89.00', '2018-05-29 16:34:18'), (4620, 1, '79.00', '2018-05-29 16:34:27'), (4621, 1, '74.00', '2018-05-29 16:34:36'), (4622, 1, '75.00', '2018-05-29 16:34:45'), (4623, 1, '90.00', '2018-05-29 16:34:54'), (4624, 1, '69.00', '2018-05-29 16:35:03'), (4625, 1, '87.00', '2018-05-29 16:35:12'), (4626, 1, '66.00', '2018-05-29 16:35:21'), (4627, 1, '75.00', '2018-05-29 16:35:30'), (4628, 1, '71.00', '2018-05-29 16:35:39'), (4629, 1, '61.00', '2018-05-29 16:35:48'), (4630, 1, '64.00', '2018-05-29 16:35:57'), (4631, 1, '77.00', '2018-05-29 16:36:06'), (4632, 1, '72.00', '2018-05-29 16:36:14'), (4633, 1, '81.00', '2018-05-29 16:36:23'), (4634, 1, '86.00', '2018-05-29 16:36:32'), (4635, 1, '63.00', '2018-05-29 16:36:41'), (4636, 1, '73.00', '2018-05-29 16:36:50'), (4637, 1, '70.00', '2018-05-29 16:36:59'), (4638, 1, '72.00', '2018-05-29 16:37:08'), (4639, 1, '94.00', '2018-05-29 16:37:17'), (4640, 1, '63.00', '2018-05-29 16:37:26'), (4641, 1, '95.00', '2018-05-29 16:37:35'), (4642, 1, '64.00', '2018-05-29 16:37:44'), (4643, 1, '73.00', '2018-05-29 16:37:53'), (4644, 1, '62.00', '2018-05-29 16:38:02'), (4645, 1, '88.00', '2018-05-29 16:38:11'), (4646, 1, '70.00', '2018-05-29 16:38:20'), (4647, 1, '82.00', '2018-05-29 16:38:29'), (4648, 1, '85.00', '2018-05-29 16:38:38'), (4649, 1, '84.00', '2018-05-29 16:38:47'), (4650, 1, '85.00', '2018-05-29 16:38:56'), (4651, 1, '65.00', '2018-05-29 16:39:04'), (4652, 1, '73.00', '2018-05-29 16:39:13'), (4653, 1, '90.00', '2018-05-29 16:39:22'), (4654, 1, '90.00', '2018-05-29 16:39:31'), (4655, 1, '87.00', '2018-05-29 16:39:41'), (4656, 1, '63.00', '2018-05-29 16:39:50'), (4657, 1, '99.00', '2018-05-29 16:39:59'), (4658, 1, '76.00', '2018-05-29 16:40:08'), (4659, 1, '83.00', '2018-05-29 16:40:17'), (4660, 1, '65.00', '2018-05-29 16:40:26'), (4661, 1, '81.00', '2018-05-29 16:40:35'), (4662, 1, '84.00', '2018-05-29 16:40:44'), (4663, 1, '65.00', '2018-05-29 16:40:53'), (4664, 1, '85.00', '2018-05-29 16:41:02'), (4665, 1, '75.00', '2018-05-29 16:41:11'), (4666, 1, '86.00', '2018-05-29 16:41:19'), (4667, 1, '81.00', '2018-05-29 16:41:28'), (4668, 1, '98.00', '2018-05-29 16:41:37'), (4669, 1, '66.00', '2018-05-29 16:41:46'), (4670, 1, '78.00', '2018-05-29 16:41:55'), (4671, 1, '82.00', '2018-05-29 16:42:04'), (4672, 1, '67.00', '2018-05-29 16:42:13'), (4673, 1, '84.00', '2018-05-29 16:42:22'), (4674, 1, '89.00', '2018-05-29 16:42:31'), (4675, 1, '62.00', '2018-05-29 16:42:41'), (4676, 1, '98.00', '2018-05-29 16:42:50'), (4677, 1, '72.00', '2018-05-29 16:42:58'), (4678, 1, '66.00', '2018-05-29 16:43:07'), (4679, 1, '96.00', '2018-05-29 16:43:16'), (4680, 1, '74.00', '2018-05-29 16:43:25'), (4681, 1, '80.00', '2018-05-29 16:43:34'), (4682, 1, '74.00', '2018-05-29 16:43:43'), (4683, 1, '91.00', '2018-05-29 16:43:52'), (4684, 1, '61.00', '2018-05-29 16:44:01'), (4685, 1, '99.00', '2018-05-29 16:44:10'), (4686, 1, '71.00', '2018-05-29 16:44:19'), (4687, 1, '80.00', '2018-05-29 16:44:28'), (4688, 1, '64.00', '2018-05-29 16:44:37'), (4689, 1, '93.00', '2018-05-29 16:44:46'), (4690, 1, '99.00', '2018-05-29 16:44:55'), (4691, 1, '68.00', '2018-05-29 16:45:04'), (4692, 1, '75.00', '2018-05-29 16:45:13'), (4693, 1, '66.00', '2018-05-29 16:45:22'), (4694, 1, '72.00', '2018-05-29 16:45:31'), (4695, 1, '88.00', '2018-05-29 16:45:39'), (4696, 1, '91.00', '2018-05-29 16:45:48'), (4697, 1, '82.00', '2018-05-29 16:45:57'), (4698, 1, '63.00', '2018-05-29 16:46:07'), (4699, 1, '83.00', '2018-05-29 16:46:16'), (4700, 1, '74.00', '2018-05-29 16:46:25'), (4701, 1, '91.00', '2018-05-29 16:46:34'), (4702, 1, '67.00', '2018-05-29 16:46:43'), (4703, 1, '62.00', '2018-05-29 16:46:52'), (4704, 1, '79.00', '2018-05-29 16:47:01'), (4705, 1, '97.00', '2018-05-29 16:47:10'), (4706, 1, '72.00', '2018-05-29 16:47:19'), (4707, 1, '75.00', '2018-05-29 16:47:28'), (4708, 1, '79.00', '2018-05-29 16:47:37'), (4709, 1, '85.00', '2018-05-29 16:47:46'), (4710, 1, '66.00', '2018-05-29 16:47:55'), (4711, 1, '68.00', '2018-05-29 16:48:04'), (4712, 1, '94.00', '2018-05-29 16:48:13'), (4713, 1, '76.00', '2018-05-29 16:48:22'), (4714, 1, '91.00', '2018-05-29 16:48:31'), (4715, 1, '67.00', '2018-05-29 16:48:40'), (4716, 1, '83.00', '2018-05-29 16:48:49'), (4717, 1, '69.00', '2018-05-29 16:48:58'), (4718, 1, '82.00', '2018-05-29 16:49:07'), (4719, 1, '97.00', '2018-05-29 16:49:16'), (4720, 1, '96.00', '2018-05-29 16:49:25'), (4721, 1, '61.00', '2018-05-29 16:49:34'), (4722, 1, '68.00', '2018-05-29 16:49:43'), (4723, 1, '85.00', '2018-05-29 16:49:52'), (4724, 1, '71.00', '2018-05-29 16:50:01'), (4725, 1, '73.00', '2018-05-29 16:50:10'), (4726, 1, '79.00', '2018-05-29 16:50:19'), (4727, 1, '90.00', '2018-05-29 16:50:28'), (4728, 1, '62.00', '2018-05-29 16:50:37'), (4729, 1, '61.00', '2018-05-29 16:50:46'), (4730, 1, '98.00', '2018-05-29 16:50:55'), (4731, 1, '76.00', '2018-05-29 16:51:04'), (4732, 1, '84.00', '2018-05-29 16:51:13'), (4733, 1, '77.00', '2018-05-29 16:51:22'), (4734, 1, '88.00', '2018-05-29 16:51:31'), (4735, 1, '81.00', '2018-05-29 16:51:40'), (4736, 1, '79.00', '2018-05-29 16:51:49'), (4737, 1, '93.00', '2018-05-29 16:51:58'), (4738, 1, '77.00', '2018-05-29 16:52:07'), (4739, 1, '65.00', '2018-05-29 16:52:16'), (4740, 1, '89.00', '2018-05-29 16:52:26'), (4741, 1, '60.00', '2018-05-29 16:52:35'), (4742, 1, '75.00', '2018-05-29 16:52:44'), (4743, 1, '68.00', '2018-05-29 16:52:53'), (4744, 1, '80.00', '2018-05-29 16:53:02'), (4745, 1, '99.00', '2018-05-29 16:53:11'), (4746, 1, '64.00', '2018-05-29 16:53:20'), (4747, 1, '98.00', '2018-05-29 16:53:29'), (4748, 1, '64.00', '2018-05-29 16:53:38'), (4749, 1, '71.00', '2018-05-29 16:53:47'), (4750, 1, '84.00', '2018-05-29 16:53:56'), (4751, 1, '87.00', '2018-05-29 16:54:05'), (4752, 1, '71.00', '2018-05-29 16:54:14'), (4753, 1, '91.00', '2018-05-29 16:54:23'), (4754, 1, '81.00', '2018-05-29 16:54:32'), (4755, 1, '90.00', '2018-05-29 16:54:41'), (4756, 1, '81.00', '2018-05-29 16:54:50'), (4757, 1, '97.00', '2018-05-29 16:54:59'), (4758, 1, '82.00', '2018-05-29 16:55:08'), (4759, 1, '97.00', '2018-05-29 16:55:17'), (4760, 1, '62.00', '2018-05-29 16:55:26'), (4761, 1, '69.00', '2018-05-29 16:55:35'), (4762, 1, '60.00', '2018-05-29 16:55:44'), (4763, 1, '78.00', '2018-05-29 16:55:53'), (4764, 1, '72.00', '2018-05-29 16:56:01'), (4765, 1, '77.00', '2018-05-29 16:56:10'), (4766, 1, '99.00', '2018-05-29 16:56:20'), (4767, 1, '93.00', '2018-05-29 16:56:29'), (4768, 1, '98.00', '2018-05-29 16:56:38'), (4769, 1, '91.00', '2018-05-29 16:56:47'), (4770, 1, '62.00', '2018-05-29 16:56:56'), (4771, 1, '77.00', '2018-05-29 16:57:05'), (4772, 1, '71.00', '2018-05-29 16:57:14'), (4773, 1, '70.00', '2018-05-29 16:57:23'), (4774, 1, '71.00', '2018-05-29 16:57:32'), (4775, 1, '65.00', '2018-05-29 16:57:41'), (4776, 1, '83.00', '2018-05-29 16:57:50'), (4777, 1, '69.00', '2018-05-29 16:58:00'), (4778, 1, '92.00', '2018-05-29 16:58:09'), (4779, 1, '62.00', '2018-05-29 16:58:17'), (4780, 1, '73.00', '2018-05-29 16:58:26'), (4781, 1, '91.00', '2018-05-29 16:58:35'), (4782, 1, '73.00', '2018-05-29 16:58:45'), (4783, 1, '91.00', '2018-05-29 16:58:53'), (4784, 1, '84.00', '2018-05-29 16:59:02'), (4785, 1, '60.00', '2018-05-29 16:59:11'), (4786, 1, '94.00', '2018-05-29 16:59:21'), (4787, 1, '94.00', '2018-05-29 16:59:30'), (4788, 1, '86.00', '2018-05-29 16:59:39'), (4789, 1, '84.00', '2018-05-29 17:01:18'), (4790, 1, '85.00', '2018-05-29 17:01:27'), (4791, 1, '72.00', '2018-05-29 17:01:36'), (4792, 1, '63.00', '2018-05-29 17:01:45'), (4793, 1, '84.00', '2018-05-29 17:01:53'), (4794, 1, '61.00', '2018-05-29 17:01:54'), (4795, 1, '62.00', '2018-05-29 17:02:03'), (4796, 1, '92.00', '2018-05-29 17:02:12'), (4797, 1, '62.00', '2018-05-29 17:02:21'), (4798, 1, '85.00', '2018-05-29 17:02:30'), (4799, 1, '88.00', '2018-05-29 17:02:39'), (4800, 1, '69.00', '2018-05-29 17:02:48'), (4801, 1, '63.00', '2018-05-29 17:02:57'), (4802, 1, '92.00', '2018-05-29 17:03:06'), (4803, 1, '91.00', '2018-05-29 17:03:15'), (4804, 1, '67.00', '2018-05-29 17:03:24'), (4805, 1, '86.00', '2018-05-29 17:03:33'), (4806, 1, '71.00', '2018-05-29 17:03:42'), (4807, 1, '74.00', '2018-05-29 17:03:51'), (4808, 1, '67.00', '2018-05-29 17:04:00'), (4809, 1, '83.00', '2018-05-29 17:04:09'), (4810, 1, '77.00', '2018-05-29 17:04:18'), (4811, 1, '69.00', '2018-05-29 17:04:27'), (4812, 1, '66.00', '2018-05-29 17:04:36'), (4813, 1, '61.00', '2018-05-29 17:04:45'), (4814, 1, '60.00', '2018-05-29 17:04:54'), (4815, 1, '83.00', '2018-05-29 17:05:03'), (4816, 1, '79.00', '2018-05-29 17:05:12'), (4817, 1, '78.00', '2018-05-29 17:05:21'), (4818, 1, '69.00', '2018-05-29 17:05:30'), (4819, 1, '74.00', '2018-05-29 17:05:39'), (4820, 1, '85.00', '2018-05-29 17:05:48'), (4821, 1, '77.00', '2018-05-29 17:05:57'), (4822, 1, '81.00', '2018-05-29 17:06:06'), (4823, 1, '61.00', '2018-05-29 17:06:15'), (4824, 1, '62.00', '2018-05-29 17:06:24'), (4825, 1, '60.00', '2018-05-29 17:06:33'), (4826, 1, '95.00', '2018-05-29 17:06:42'), (4827, 1, '89.00', '2018-05-29 17:06:51'), (4828, 1, '92.00', '2018-05-29 17:07:00'), (4829, 1, '63.00', '2018-05-29 17:07:09'), (4830, 1, '88.00', '2018-05-29 17:07:18'), (4831, 1, '93.00', '2018-05-29 17:07:27'), (4832, 1, '85.00', '2018-05-29 17:07:36'), (4833, 1, '82.00', '2018-05-29 17:07:45'), (4834, 1, '87.00', '2018-05-29 17:07:54'), (4835, 1, '78.00', '2018-05-29 17:08:03'), (4836, 1, '68.00', '2018-05-29 17:08:12'), (4837, 1, '72.00', '2018-05-29 17:08:21'), (4838, 1, '74.00', '2018-05-29 17:08:30'), (4839, 1, '95.00', '2018-05-29 17:08:39'), (4840, 1, '88.00', '2018-05-29 17:08:48'), (4841, 1, '97.00', '2018-05-29 17:08:57'), (4842, 1, '95.00', '2018-05-29 17:09:06'), (4843, 1, '79.00', '2018-05-29 17:09:15'), (4844, 1, '77.00', '2018-05-29 17:09:24'), (4845, 1, '79.00', '2018-05-29 17:09:33'), (4846, 1, '75.00', '2018-05-29 17:09:41'), (4847, 1, '80.00', '2018-05-29 17:09:51'), (4848, 1, '98.00', '2018-05-29 17:10:00'), (4849, 1, '67.00', '2018-05-29 17:10:09'), (4850, 1, '64.00', '2018-05-29 17:10:18'), (4851, 1, '64.00', '2018-05-29 17:10:27'), (4852, 1, '78.00', '2018-05-29 17:10:36'), (4853, 1, '89.00', '2018-05-29 17:10:45'), (4854, 1, '63.00', '2018-05-29 17:10:54'), (4855, 1, '64.00', '2018-05-29 17:11:03'), (4856, 1, '82.00', '2018-05-29 17:11:12'), (4857, 1, '96.00', '2018-05-29 17:11:20'), (4858, 1, '85.00', '2018-05-29 17:11:30'), (4859, 1, '76.00', '2018-05-29 17:11:39'), (4860, 1, '91.00', '2018-05-29 17:11:48'), (4861, 1, '69.00', '2018-05-29 17:11:57'), (4862, 1, '67.00', '2018-05-29 17:12:06'), (4863, 1, '67.00', '2018-05-29 17:12:15'), (4864, 1, '79.00', '2018-05-29 17:12:24'), (4865, 1, '62.00', '2018-05-29 17:12:33'), (4866, 1, '61.00', '2018-05-29 17:12:42'), (4867, 1, '74.00', '2018-05-29 17:12:51'), (4868, 1, '70.00', '2018-05-29 17:13:01'), (4869, 1, '72.00', '2018-05-29 17:13:09'), (4870, 1, '99.00', '2018-05-29 17:13:18'), (4871, 1, '87.00', '2018-05-29 17:13:27'), (4872, 1, '78.00', '2018-05-29 17:13:36'), (4873, 1, '97.00', '2018-05-29 17:13:45'), (4874, 1, '78.00', '2018-05-29 17:13:54'), (4875, 1, '65.00', '2018-05-29 17:14:03'), (4876, 1, '61.00', '2018-05-29 17:14:12'), (4877, 1, '81.00', '2018-05-29 17:14:21'), (4878, 1, '70.00', '2018-05-29 17:14:30'), (4879, 1, '62.00', '2018-05-29 17:14:39'), (4880, 1, '84.00', '2018-05-29 17:14:48'), (4881, 1, '63.00', '2018-05-29 17:14:57'), (4882, 1, '92.00', '2018-05-29 17:15:06'), (4883, 1, '74.00', '2018-05-29 17:15:15'), (4884, 1, '93.00', '2018-05-29 17:15:24'), (4885, 1, '87.00', '2018-05-29 17:15:33'), (4886, 1, '91.00', '2018-05-29 17:15:42'), (4887, 1, '64.00', '2018-05-29 17:15:51'), (4888, 1, '66.00', '2018-05-29 17:16:00'), (4889, 1, '60.00', '2018-05-29 17:16:09'), (4890, 1, '93.00', '2018-05-29 17:16:18'), (4891, 1, '61.00', '2018-05-29 17:16:27'), (4892, 1, '71.00', '2018-05-29 17:16:35'), (4893, 1, '92.00', '2018-05-29 17:16:44'), (4894, 1, '93.00', '2018-05-29 17:16:54'), (4895, 1, '90.00', '2018-05-29 17:17:03'); INSERT INTO `leitura` (`idLeitura`, `idMonitor`, `nivel`, `dataHora`) VALUES (4896, 1, '94.00', '2018-05-29 17:17:12'), (4897, 1, '71.00', '2018-05-29 17:17:21'), (4898, 1, '84.00', '2018-05-29 17:17:30'), (4899, 1, '65.00', '2018-05-29 17:17:38'), (4900, 1, '91.00', '2018-05-29 17:17:48'), (4901, 1, '65.00', '2018-05-29 17:17:56'), (4902, 1, '89.00', '2018-05-29 17:18:05'), (4903, 1, '89.00', '2018-05-29 17:18:14'), (4904, 1, '88.00', '2018-05-29 17:18:23'), (4905, 1, '69.00', '2018-05-29 17:18:32'), (4906, 1, '72.00', '2018-05-29 17:18:41'), (4907, 1, '64.00', '2018-05-29 17:18:50'), (4908, 1, '60.00', '2018-05-29 17:18:59'), (4909, 1, '86.00', '2018-05-29 17:19:08'), (4910, 1, '80.00', '2018-05-29 17:19:17'), (4911, 1, '95.00', '2018-05-29 17:19:26'), (4912, 1, '85.00', '2018-05-29 17:19:35'), (4913, 1, '75.00', '2018-05-29 17:19:44'), (4914, 1, '78.00', '2018-05-29 17:19:53'), (4915, 1, '61.00', '2018-05-29 17:20:02'), (4916, 1, '61.00', '2018-05-29 17:20:11'), (4917, 1, '88.00', '2018-05-29 17:20:20'), (4918, 1, '79.00', '2018-05-29 17:20:29'), (4919, 1, '81.00', '2018-05-29 17:20:38'), (4920, 1, '88.00', '2018-05-29 17:20:47'), (4921, 1, '61.00', '2018-05-29 17:20:56'), (4922, 1, '70.00', '2018-05-29 17:21:05'), (4923, 1, '80.00', '2018-05-29 17:21:14'), (4924, 1, '88.00', '2018-05-29 17:21:23'), (4925, 1, '74.00', '2018-05-29 17:21:32'), (4926, 1, '91.00', '2018-05-29 17:21:41'), (4927, 1, '95.00', '2018-05-29 17:21:50'), (4928, 1, '66.00', '2018-05-29 17:21:59'), (4929, 1, '63.00', '2018-05-29 17:22:07'), (4930, 1, '99.00', '2018-05-29 17:22:16'), (4931, 1, '73.00', '2018-05-29 17:22:25'), (4932, 1, '79.00', '2018-05-29 17:22:34'), (4933, 1, '68.00', '2018-05-29 17:22:43'), (4934, 1, '76.00', '2018-05-29 17:22:52'), (4935, 1, '82.00', '2018-05-29 17:23:01'), (4936, 1, '78.00', '2018-05-29 17:23:10'), (4937, 1, '99.00', '2018-05-29 17:23:19'), (4938, 1, '85.00', '2018-05-29 17:23:28'), (4939, 1, '86.00', '2018-05-29 17:23:37'), (4940, 1, '75.00', '2018-05-29 17:23:46'), (4941, 1, '67.00', '2018-05-29 17:23:55'), (4942, 1, '63.00', '2018-05-29 17:24:04'), (4943, 1, '75.00', '2018-05-29 17:24:13'), (4944, 1, '72.00', '2018-05-29 17:24:22'), (4945, 1, '95.00', '2018-05-29 17:24:31'), (4946, 1, '62.00', '2018-05-29 17:24:40'), (4947, 1, '86.00', '2018-05-29 17:24:49'), (4948, 1, '61.00', '2018-05-29 17:24:58'), (4949, 1, '67.00', '2018-05-29 17:25:07'), (4950, 1, '80.00', '2018-05-29 17:25:16'), (4951, 1, '91.00', '2018-05-29 17:25:25'), (4952, 1, '67.00', '2018-05-29 17:25:34'), (4953, 1, '64.00', '2018-05-29 17:25:43'), (4954, 1, '62.00', '2018-05-29 17:25:52'), (4955, 1, '70.00', '2018-05-29 17:26:01'), (4956, 1, '89.00', '2018-05-29 17:26:10'), (4957, 1, '64.00', '2018-05-29 17:26:19'), (4958, 1, '60.00', '2018-05-29 17:26:28'), (4959, 1, '67.00', '2018-05-29 17:26:37'), (4960, 1, '69.00', '2018-05-29 17:26:46'), (4961, 1, '96.00', '2018-05-29 17:26:55'), (4962, 1, '84.00', '2018-05-29 17:27:04'), (4963, 1, '67.00', '2018-05-29 17:27:13'), (4964, 1, '74.00', '2018-05-29 17:27:22'), (4965, 1, '88.00', '2018-05-29 17:27:31'), (4966, 1, '63.00', '2018-05-29 17:27:40'), (4967, 1, '94.00', '2018-05-29 17:27:48'), (4968, 1, '73.00', '2018-05-29 17:27:58'), (4969, 1, '82.00', '2018-05-29 17:28:07'), (4970, 1, '82.00', '2018-05-29 17:28:16'), (4971, 1, '99.00', '2018-05-29 17:28:25'), (4972, 1, '83.00', '2018-05-29 17:28:34'), (4973, 1, '70.00', '2018-05-29 17:28:43'), (4974, 1, '67.00', '2018-05-29 17:28:52'), (4975, 1, '66.00', '2018-05-29 17:29:01'), (4976, 1, '60.00', '2018-05-29 17:29:10'), (4977, 1, '81.00', '2018-05-29 17:29:19'), (4978, 1, '88.00', '2018-05-29 17:29:28'), (4979, 1, '98.00', '2018-05-29 17:29:37'), (4980, 1, '96.00', '2018-05-29 17:29:46'), (4981, 1, '83.00', '2018-05-29 17:29:55'), (4982, 1, '93.00', '2018-05-29 17:30:04'), (4983, 1, '63.00', '2018-05-29 17:30:13'), (4984, 1, '95.00', '2018-05-29 17:30:22'), (4985, 1, '92.00', '2018-05-29 17:30:31'), (4986, 1, '63.00', '2018-05-29 17:30:40'), (4987, 1, '91.00', '2018-05-29 17:30:49'), (4988, 1, '71.00', '2018-05-29 17:30:58'), (4989, 1, '83.00', '2018-05-29 17:31:07'), (4990, 1, '83.00', '2018-05-29 17:31:16'), (4991, 1, '62.00', '2018-05-29 17:31:25'), (4992, 1, '89.00', '2018-05-29 17:31:34'), (4993, 1, '80.00', '2018-05-29 17:31:43'), (4994, 1, '86.00', '2018-05-29 17:31:52'), (4995, 1, '62.00', '2018-05-29 17:32:01'), (4996, 1, '61.00', '2018-05-29 17:32:10'), (4997, 1, '97.00', '2018-05-29 17:32:19'), (4998, 1, '86.00', '2018-05-29 17:32:28'), (4999, 1, '70.00', '2018-05-29 17:32:37'), (5000, 1, '96.00', '2018-05-29 17:32:46'), (5001, 1, '98.00', '2018-05-29 17:32:55'), (5002, 1, '84.00', '2018-05-29 17:33:04'), (5003, 1, '85.00', '2018-05-29 17:33:13'), (5004, 1, '73.00', '2018-05-29 17:33:22'), (5005, 1, '93.00', '2018-05-29 17:33:31'), (5006, 1, '98.00', '2018-05-29 17:33:40'), (5007, 1, '94.00', '2018-05-29 17:33:49'), (5008, 1, '94.00', '2018-05-29 17:33:58'), (5009, 1, '83.00', '2018-05-29 17:34:07'), (5010, 1, '71.00', '2018-05-29 17:34:16'), (5011, 1, '72.00', '2018-05-29 17:34:25'), (5012, 1, '78.00', '2018-05-29 17:34:34'), (5013, 1, '75.00', '2018-05-29 17:34:43'), (5014, 1, '97.00', '2018-05-29 17:34:52'), (5015, 1, '81.00', '2018-05-29 17:35:01'), (5016, 1, '99.00', '2018-05-29 17:35:10'), (5017, 1, '77.00', '2018-05-29 17:35:19'), (5018, 1, '98.00', '2018-05-29 17:35:28'), (5019, 1, '79.00', '2018-05-29 17:35:37'), (5020, 1, '89.00', '2018-05-29 17:35:46'), (5021, 1, '85.00', '2018-05-29 17:35:55'), (5022, 1, '78.00', '2018-05-29 17:36:04'), (5023, 1, '85.00', '2018-05-29 17:36:14'), (5024, 1, '78.00', '2018-05-29 17:36:22'), (5025, 1, '73.00', '2018-05-29 17:36:31'), (5026, 1, '90.00', '2018-05-29 17:36:40'), (5027, 1, '76.00', '2018-05-29 17:36:49'), (5028, 1, '70.00', '2018-05-29 17:36:58'), (5029, 1, '78.00', '2018-05-29 17:37:08'), (5030, 1, '84.00', '2018-05-29 17:37:17'), (5031, 1, '83.00', '2018-05-29 17:37:26'), (5032, 1, '89.00', '2018-05-29 17:37:35'), (5033, 1, '97.00', '2018-05-29 17:37:57'), (5034, 1, '71.00', '2018-05-29 17:38:12'), (5035, 1, '74.00', '2018-05-29 17:39:16'), (5036, 1, '95.00', '2018-05-29 17:40:15'), (5037, 1, '88.00', '2018-05-29 17:40:25'), (5038, 1, '64.00', '2018-05-29 17:40:35'), (5039, 1, '82.00', '2018-05-29 17:40:45'), (5040, 1, '76.00', '2018-05-29 17:40:55'), (5041, 1, '76.00', '2018-05-29 17:42:37'), (5042, 1, '89.00', '2018-05-29 17:42:50'), (5043, 1, '73.00', '2018-05-29 17:42:59'), (5044, 1, '88.00', '2018-05-29 17:43:09'), (5045, 1, '92.00', '2018-05-29 17:43:09'), (5046, 1, '88.00', '2018-05-29 17:43:18'), (5047, 1, '83.00', '2018-05-29 17:43:28'), (5048, 1, '71.00', '2018-05-29 17:43:40'), (5049, 1, '84.00', '2018-05-29 17:43:50'), (5050, 1, '64.00', '2018-05-29 17:44:00'), (5051, 1, '90.00', '2018-05-29 17:44:11'), (5052, 1, '64.00', '2018-05-29 17:44:21'), (5053, 1, '62.00', '2018-05-29 17:44:31'), (5054, 1, '91.00', '2018-05-29 17:44:44'), (5055, 1, '82.00', '2018-05-29 17:44:53'), (5056, 1, '76.00', '2018-05-29 17:45:02'), (5057, 1, '90.00', '2018-05-29 17:45:11'), (5058, 1, '92.00', '2018-05-29 17:45:21'), (5059, 1, '98.00', '2018-05-29 17:45:31'), (5060, 1, '69.00', '2018-05-29 17:45:41'), (5061, 1, '72.00', '2018-05-29 17:45:50'), (5062, 1, '77.00', '2018-05-29 17:46:01'), (5063, 1, '74.00', '2018-05-29 17:46:11'), (5064, 1, '62.00', '2018-05-29 17:46:21'), (5065, 1, '97.00', '2018-05-29 17:46:31'), (5066, 1, '76.00', '2018-05-29 17:46:40'), (5067, 1, '75.00', '2018-05-29 17:46:50'), (5068, 1, '90.00', '2018-05-29 17:46:59'), (5069, 1, '88.00', '2018-05-29 17:47:08'), (5070, 1, '83.00', '2018-05-29 17:47:17'), (5071, 1, '98.00', '2018-05-29 17:47:27'), (5072, 1, '81.00', '2018-05-29 17:47:37'), (5073, 1, '91.00', '2018-05-29 17:47:46'), (5074, 1, '97.00', '2018-05-29 17:47:55'), (5075, 1, '85.00', '2018-05-29 17:48:05'), (5076, 1, '98.00', '2018-05-29 17:48:15'), (5077, 1, '72.00', '2018-05-29 17:48:26'), (5078, 1, '67.00', '2018-05-29 17:48:35'), (5079, 1, '83.00', '2018-05-29 17:48:46'), (5080, 1, '80.00', '2018-05-29 17:48:55'), (5081, 1, '72.00', '2018-05-29 17:49:04'), (5082, 1, '85.00', '2018-05-29 17:49:13'), (5083, 1, '67.00', '2018-05-29 17:49:23'), (5084, 1, '76.00', '2018-05-29 17:49:33'), (5085, 1, '65.00', '2018-05-29 17:49:43'), (5086, 1, '80.00', '2018-05-29 17:49:52'), (5087, 1, '76.00', '2018-05-29 17:50:02'), (5088, 1, '68.00', '2018-05-29 17:50:12'), (5089, 1, '92.00', '2018-05-29 17:50:21'), (5090, 1, '67.00', '2018-05-29 17:50:30'), (5091, 1, '94.00', '2018-05-29 17:50:39'), (5092, 1, '79.00', '2018-05-29 17:50:50'), (5093, 1, '96.00', '2018-05-29 17:51:01'), (5094, 1, '95.00', '2018-05-29 17:51:12'), (5095, 1, '92.00', '2018-05-29 17:51:22'), (5096, 1, '95.00', '2018-05-29 17:51:31'), (5097, 1, '73.00', '2018-05-29 17:51:42'), (5098, 1, '80.00', '2018-05-29 17:51:52'), (5099, 1, '60.00', '2018-05-29 17:52:01'), (5100, 1, '94.00', '2018-05-29 17:52:11'), (5101, 1, '92.00', '2018-05-29 17:52:23'), (5102, 1, '89.00', '2018-05-29 17:52:33'), (5103, 1, '99.00', '2018-05-29 17:52:46'), (5104, 1, '66.00', '2018-05-29 17:52:56'), (5105, 1, '73.00', '2018-05-29 17:53:07'), (5106, 1, '69.00', '2018-05-29 17:53:17'), (5107, 1, '63.00', '2018-05-29 17:53:26'), (5108, 1, '72.00', '2018-05-29 17:53:36'), (5109, 1, '90.00', '2018-05-29 17:53:49'), (5110, 1, '76.00', '2018-05-29 17:53:59'), (5111, 1, '85.00', '2018-05-29 17:54:08'), (5112, 1, '90.00', '2018-05-29 17:54:18'), (5113, 1, '79.00', '2018-05-29 17:54:27'), (5114, 1, '69.00', '2018-05-29 17:54:37'), (5115, 1, '91.00', '2018-05-29 17:54:46'), (5116, 1, '77.00', '2018-05-29 17:54:57'), (5117, 1, '61.00', '2018-05-29 17:55:06'), (5118, 1, '80.00', '2018-05-29 17:55:16'), (5119, 1, '84.00', '2018-05-29 17:55:26'), (5120, 1, '68.00', '2018-05-29 17:55:38'), (5121, 1, '63.00', '2018-05-29 17:55:49'), (5122, 1, '74.00', '2018-05-29 17:55:59'), (5123, 1, '94.00', '2018-05-29 17:56:08'), (5124, 1, '99.00', '2018-05-29 17:56:18'), (5125, 1, '93.00', '2018-05-29 17:56:29'), (5126, 1, '86.00', '2018-05-29 17:56:38'), (5127, 1, '71.00', '2018-05-29 17:56:52'), (5128, 1, '75.00', '2018-05-29 17:57:03'), (5129, 1, '69.00', '2018-05-29 17:57:14'), (5130, 1, '66.00', '2018-05-29 17:57:24'), (5131, 1, '99.00', '2018-05-29 17:57:33'), (5132, 1, '97.00', '2018-05-29 17:57:42'), (5133, 1, '86.00', '2018-05-29 17:57:54'), (5134, 1, '94.00', '2018-05-29 17:58:03'), (5135, 1, '75.00', '2018-05-29 17:58:12'), (5136, 1, '78.00', '2018-05-29 17:58:23'), (5137, 1, '68.00', '2018-05-29 17:58:32'), (5138, 1, '86.00', '2018-05-29 17:58:42'), (5139, 1, '70.00', '2018-05-29 17:58:53'), (5140, 1, '81.00', '2018-05-29 17:59:02'), (5141, 1, '63.00', '2018-05-29 17:59:12'), (5142, 1, '64.00', '2018-05-29 17:59:22'), (5143, 1, '64.00', '2018-05-29 17:59:31'), (5144, 1, '70.00', '2018-05-29 17:59:41'), (5145, 1, '95.00', '2018-05-29 17:59:56'), (5146, 1, '94.00', '2018-05-29 18:00:06'), (5147, 1, '80.00', '2018-05-29 18:00:15'), (5148, 1, '70.00', '2018-05-29 18:00:24'), (5149, 1, '80.00', '2018-05-29 18:00:34'), (5150, 1, '90.00', '2018-05-29 18:00:45'), (5151, 1, '89.00', '2018-05-29 18:00:54'), (5152, 1, '73.00', '2018-05-29 18:01:06'), (5153, 1, '94.00', '2018-05-29 18:01:16'), (5154, 1, '91.00', '2018-05-29 18:01:25'), (5155, 1, '61.00', '2018-05-29 18:01:34'), (5156, 1, '76.00', '2018-05-29 18:01:44'), (5157, 1, '65.00', '2018-05-29 18:01:54'), (5158, 1, '84.00', '2018-05-29 18:02:03'), (5159, 1, '98.00', '2018-05-29 18:02:14'), (5160, 1, '83.00', '2018-05-29 18:02:23'), (5161, 1, '71.00', '2018-05-29 18:02:33'), (5162, 1, '63.00', '2018-05-29 18:02:43'), (5163, 1, '92.00', '2018-05-29 18:02:52'), (5164, 1, '69.00', '2018-05-29 18:03:02'), (5165, 1, '73.00', '2018-05-29 18:03:10'), (5166, 1, '84.00', '2018-05-29 18:03:21'), (5167, 1, '89.00', '2018-05-29 18:03:32'), (5168, 1, '98.00', '2018-05-29 18:03:42'), (5169, 1, '74.00', '2018-05-29 18:03:58'), (5170, 1, '78.00', '2018-05-29 18:04:07'), (5171, 1, '77.00', '2018-05-29 18:04:17'), (5172, 1, '69.00', '2018-05-29 18:04:26'), (5173, 1, '97.00', '2018-05-29 18:04:35'), (5174, 1, '98.00', '2018-05-29 18:04:45'), (5175, 1, '89.00', '2018-05-29 18:04:54'), (5176, 1, '67.00', '2018-05-29 18:05:06'), (5177, 1, '65.00', '2018-05-29 18:05:21'), (5178, 1, '91.00', '2018-05-29 18:05:30'), (5179, 1, '72.00', '2018-05-29 18:05:39'), (5180, 1, '64.00', '2018-05-29 18:05:49'), (5181, 1, '73.00', '2018-05-29 18:05:58'), (5182, 1, '71.00', '2018-05-29 18:06:08'), (5183, 1, '82.00', '2018-05-29 18:06:18'), (5184, 1, '62.00', '2018-05-29 18:06:27'), (5185, 1, '74.00', '2018-05-29 18:06:37'), (5186, 1, '92.00', '2018-05-29 18:06:47'), (5187, 1, '85.00', '2018-05-29 18:06:56'), (5188, 1, '74.00', '2018-05-29 18:07:05'), (5189, 1, '75.00', '2018-05-29 18:07:14'), (5190, 1, '82.00', '2018-05-29 18:07:24'), (5191, 1, '73.00', '2018-05-29 18:07:33'), (5192, 1, '87.00', '2018-05-29 18:07:42'), (5193, 1, '84.00', '2018-05-29 18:07:53'), (5194, 1, '82.00', '2018-05-29 18:08:02'), (5195, 1, '72.00', '2018-05-29 18:08:12'), (5196, 1, '63.00', '2018-05-29 18:08:21'), (5197, 1, '69.00', '2018-05-29 18:08:31'), (5198, 1, '60.00', '2018-05-29 18:08:40'), (5199, 1, '91.00', '2018-05-29 18:08:50'), (5200, 1, '84.00', '2018-05-29 18:08:59'), (5201, 1, '70.00', '2018-05-29 18:09:08'), (5202, 1, '94.00', '2018-05-29 18:09:18'), (5203, 1, '84.00', '2018-05-29 18:09:28'), (5204, 1, '87.00', '2018-05-29 18:09:37'), (5205, 1, '67.00', '2018-05-29 18:09:47'), (5206, 1, '75.00', '2018-05-29 18:09:56'), (5207, 1, '85.00', '2018-05-29 18:10:05'), (5208, 1, '75.00', '2018-05-29 18:10:14'), (5209, 1, '92.00', '2018-05-29 18:10:23'), (5210, 1, '79.00', '2018-05-29 18:10:33'), (5211, 1, '90.00', '2018-05-29 18:10:42'), (5212, 1, '64.00', '2018-05-29 18:10:51'), (5213, 1, '62.00', '2018-05-29 18:11:01'), (5214, 1, '78.00', '2018-05-29 18:11:11'), (5215, 1, '60.00', '2018-05-29 18:11:20'), (5216, 1, '77.00', '2018-05-29 18:11:29'), (5217, 1, '92.00', '2018-05-29 18:11:38'), (5218, 1, '72.00', '2018-05-29 18:11:47'), (5219, 1, '70.00', '2018-05-29 18:11:57'), (5220, 1, '78.00', '2018-05-29 18:12:06'), (5221, 1, '98.00', '2018-05-29 18:12:15'), (5222, 1, '98.00', '2018-05-29 18:12:25'), (5223, 1, '77.00', '2018-05-29 18:12:34'), (5224, 1, '76.00', '2018-05-29 18:12:43'), (5225, 1, '96.00', '2018-05-29 18:12:53'), (5226, 1, '84.00', '2018-05-29 18:13:02'), (5227, 1, '89.00', '2018-05-29 18:13:11'), (5228, 1, '94.00', '2018-05-29 18:13:20'), (5229, 1, '97.00', '2018-05-29 18:13:29'), (5230, 1, '63.00', '2018-05-29 18:13:40'), (5231, 1, '98.00', '2018-05-29 18:13:49'), (5232, 1, '60.00', '2018-05-29 18:13:58'), (5233, 1, '63.00', '2018-05-29 18:14:07'), (5234, 1, '67.00', '2018-05-29 18:14:17'), (5235, 1, '69.00', '2018-05-29 18:14:26'), (5236, 1, '81.00', '2018-05-29 18:14:37'), (5237, 1, '93.00', '2018-05-29 18:14:46'), (5238, 1, '84.00', '2018-05-29 18:14:55'), (5239, 1, '82.00', '2018-05-29 18:15:04'), (5240, 1, '92.00', '2018-05-29 18:15:13'), (5241, 1, '62.00', '2018-05-29 18:15:22'), (5242, 1, '73.00', '2018-05-29 18:15:32'), (5243, 1, '60.00', '2018-05-29 18:15:43'), (5244, 1, '65.00', '2018-05-29 18:15:52'), (5245, 1, '69.00', '2018-05-29 18:16:01'), (5246, 1, '64.00', '2018-05-29 18:16:10'), (5247, 1, '67.00', '2018-05-29 18:16:20'), (5248, 1, '96.00', '2018-05-29 18:16:28'), (5249, 1, '85.00', '2018-05-29 18:16:37'), (5250, 1, '77.00', '2018-05-29 18:16:46'), (5251, 1, '69.00', '2018-05-29 18:16:55'), (5252, 1, '72.00', '2018-05-29 18:17:04'), (5253, 1, '97.00', '2018-05-29 18:17:14'), (5254, 1, '62.00', '2018-05-29 18:17:23'), (5255, 1, '74.00', '2018-05-29 18:17:32'), (5256, 1, '83.00', '2018-05-29 18:17:41'), (5257, 1, '88.00', '2018-05-29 18:17:50'), (5258, 1, '73.00', '2018-05-29 18:17:59'), (5259, 1, '61.00', '2018-05-29 18:18:08'), (5260, 1, '89.00', '2018-05-29 18:18:17'), (5261, 1, '78.00', '2018-05-29 18:18:26'), (5262, 1, '93.00', '2018-05-29 18:18:35'), (5263, 1, '75.00', '2018-05-29 18:18:44'), (5264, 1, '74.00', '2018-05-29 18:18:53'), (5265, 1, '62.00', '2018-05-29 18:19:02'), (5266, 1, '73.00', '2018-05-29 18:19:11'), (5267, 1, '99.00', '2018-05-29 18:19:21'), (5268, 1, '67.00', '2018-05-29 18:19:30'), (5269, 1, '81.00', '2018-05-29 18:19:38'), (5270, 1, '99.00', '2018-05-29 18:19:47'), (5271, 1, '82.00', '2018-05-29 18:19:56'), (5272, 1, '95.00', '2018-05-29 18:20:05'), (5273, 1, '70.00', '2018-05-29 18:20:14'), (5274, 1, '94.00', '2018-05-29 18:20:23'), (5275, 1, '95.00', '2018-05-29 18:20:32'), (5276, 1, '60.00', '2018-05-29 18:20:41'), (5277, 1, '79.00', '2018-05-29 18:20:50'), (5278, 1, '72.00', '2018-05-29 18:20:59'), (5279, 1, '70.00', '2018-05-29 18:21:09'), (5280, 1, '76.00', '2018-05-29 18:21:18'), (5281, 1, '81.00', '2018-05-29 18:21:27'), (5282, 1, '94.00', '2018-05-29 18:21:36'), (5283, 1, '78.00', '2018-05-29 18:21:45'), (5284, 1, '88.00', '2018-05-29 18:21:54'), (5285, 1, '62.00', '2018-05-29 18:22:03'), (5286, 1, '71.00', '2018-05-29 18:22:11'), (5287, 1, '81.00', '2018-05-29 18:22:21'), (5288, 1, '83.00', '2018-05-29 18:22:30'), (5289, 1, '77.00', '2018-05-29 18:22:39'), (5290, 1, '77.00', '2018-05-29 18:22:48'), (5291, 1, '91.00', '2018-05-29 18:22:57'), (5292, 1, '74.00', '2018-05-29 18:23:06'), (5293, 1, '60.00', '2018-05-29 18:23:15'), (5294, 1, '74.00', '2018-05-29 18:23:24'), (5295, 1, '68.00', '2018-05-29 18:23:33'), (5296, 1, '65.00', '2018-05-29 18:23:41'), (5297, 1, '65.00', '2018-05-29 18:23:50'), (5298, 1, '99.00', '2018-05-29 18:23:59'), (5299, 1, '65.00', '2018-05-29 18:24:08'), (5300, 1, '70.00', '2018-05-29 18:24:17'), (5301, 1, '97.00', '2018-05-29 18:24:26'), (5302, 1, '63.00', '2018-05-29 18:24:35'), (5303, 1, '92.00', '2018-05-29 18:24:44'), (5304, 1, '98.00', '2018-05-29 18:24:53'), (5305, 1, '70.00', '2018-05-29 18:25:02'), (5306, 1, '70.00', '2018-05-29 18:25:11'), (5307, 1, '85.00', '2018-05-29 18:25:20'), (5308, 1, '86.00', '2018-05-29 18:25:29'), (5309, 1, '82.00', '2018-05-29 18:25:38'), (5310, 1, '71.00', '2018-05-29 18:25:47'), (5311, 1, '70.00', '2018-05-29 18:25:56'), (5312, 1, '88.00', '2018-05-29 18:26:05'), (5313, 1, '67.00', '2018-05-29 18:26:13'), (5314, 1, '81.00', '2018-05-29 18:26:22'), (5315, 1, '84.00', '2018-05-29 18:26:31'), (5316, 1, '98.00', '2018-05-29 18:26:40'), (5317, 1, '98.00', '2018-05-29 18:26:49'), (5318, 1, '65.00', '2018-05-29 18:26:58'), (5319, 1, '92.00', '2018-05-29 18:27:07'), (5320, 1, '89.00', '2018-05-29 18:27:16'), (5321, 1, '89.00', '2018-05-29 18:27:25'), (5322, 1, '88.00', '2018-05-29 18:27:34'), (5323, 1, '85.00', '2018-05-29 18:27:43'), (5324, 1, '66.00', '2018-05-29 18:27:52'), (5325, 1, '94.00', '2018-05-29 18:28:02'), (5326, 1, '86.00', '2018-05-29 18:28:11'), (5327, 1, '80.00', '2018-05-29 18:28:20'), (5328, 1, '91.00', '2018-05-29 18:28:29'), (5329, 1, '87.00', '2018-05-29 18:28:38'), (5330, 1, '92.00', '2018-05-29 18:28:47'), (5331, 1, '61.00', '2018-05-29 18:28:56'), (5332, 1, '60.00', '2018-05-29 18:29:05'), (5333, 1, '66.00', '2018-05-29 18:29:14'), (5334, 1, '65.00', '2018-05-29 18:29:23'), (5335, 1, '61.00', '2018-05-29 18:29:32'), (5336, 1, '82.00', '2018-05-29 18:29:40'), (5337, 1, '79.00', '2018-05-29 18:29:49'), (5338, 1, '75.00', '2018-05-29 18:29:58'), (5339, 1, '72.00', '2018-05-29 18:30:08'), (5340, 1, '72.00', '2018-05-29 18:30:17'), (5341, 1, '86.00', '2018-05-29 18:30:26'), (5342, 1, '93.00', '2018-05-29 18:30:35'), (5343, 1, '86.00', '2018-05-29 18:30:44'), (5344, 1, '93.00', '2018-05-29 18:30:53'), (5345, 1, '77.00', '2018-05-29 18:31:02'), (5346, 1, '67.00', '2018-05-29 18:31:11'), (5347, 1, '63.00', '2018-05-29 18:31:20'), (5348, 1, '95.00', '2018-05-29 18:31:29'), (5349, 1, '78.00', '2018-05-29 18:31:38'), (5350, 1, '98.00', '2018-05-29 18:31:46'), (5351, 1, '98.00', '2018-05-29 18:31:55'), (5352, 1, '78.00', '2018-05-29 18:32:05'), (5353, 1, '68.00', '2018-05-29 18:32:14'), (5354, 1, '62.00', '2018-05-29 18:32:23'), (5355, 1, '77.00', '2018-05-29 18:32:32'), (5356, 1, '62.00', '2018-05-29 18:32:41'), (5357, 1, '72.00', '2018-05-29 18:32:50'), (5358, 1, '64.00', '2018-05-30 09:40:03'), (5359, 1, '97.00', '2018-05-30 09:40:12'), (5360, 1, '71.00', '2018-05-30 09:40:21'), (5361, 1, '80.00', '2018-05-30 09:40:30'), (5362, 1, '95.00', '2018-05-30 09:40:39'), (5363, 1, '99.00', '2018-05-30 09:40:48'), (5364, 1, '68.00', '2018-05-30 09:40:57'), (5365, 1, '84.00', '2018-05-30 09:41:06'), (5366, 1, '92.00', '2018-05-30 09:41:15'), (5367, 1, '64.00', '2018-05-30 09:41:24'), (5368, 1, '90.00', '2018-05-30 09:41:33'), (5369, 1, '86.00', '2018-05-30 09:46:25'), (5370, 1, '97.00', '2018-05-30 09:46:34'), (5371, 1, '83.00', '2018-05-30 09:46:43'), (5372, 1, '82.00', '2018-05-30 09:46:52'), (5373, 1, '87.00', '2018-05-30 09:47:01'), (5374, 1, '60.00', '2018-05-30 09:47:10'), (5375, 1, '97.00', '2018-05-30 09:47:19'), (5376, 1, '88.00', '2018-05-30 09:47:28'), (5377, 1, '70.00', '2018-05-30 09:47:37'), (5378, 1, '73.00', '2018-05-30 09:47:46'), (5379, 1, '79.00', '2018-05-30 09:47:55'), (5380, 1, '94.00', '2018-05-30 09:48:04'), (5381, 1, '82.00', '2018-05-30 09:48:13'), (5382, 1, '86.00', '2018-05-30 09:48:21'), (5383, 1, '77.00', '2018-05-30 09:48:30'), (5384, 1, '87.00', '2018-05-30 09:48:39'), (5385, 1, '97.00', '2018-05-30 09:48:48'), (5386, 1, '74.00', '2018-05-30 09:48:57'), (5387, 1, '88.00', '2018-05-30 09:49:06'), (5388, 1, '67.00', '2018-05-30 09:49:15'), (5389, 1, '94.00', '2018-05-30 09:49:24'), (5390, 1, '93.00', '2018-05-30 09:49:33'), (5391, 1, '82.00', '2018-05-30 09:49:42'), (5392, 1, '67.00', '2018-05-30 09:49:51'), (5393, 1, '71.00', '2018-05-30 09:50:00'), (5394, 1, '87.00', '2018-05-30 09:50:09'), (5395, 1, '60.00', '2018-05-30 09:50:18'), (5396, 1, '76.00', '2018-05-30 09:50:27'), (5397, 1, '98.00', '2018-05-30 09:50:36'), (5398, 1, '63.00', '2018-05-30 09:50:45'), (5399, 1, '62.00', '2018-05-30 09:50:54'), (5400, 1, '77.00', '2018-05-30 09:51:03'), (5401, 1, '75.00', '2018-05-30 09:51:12'), (5402, 1, '79.00', '2018-05-30 09:51:21'), (5403, 1, '81.00', '2018-05-30 09:51:30'), (5404, 1, '96.00', '2018-05-30 09:51:39'), (5405, 1, '64.00', '2018-05-30 09:51:48'), (5406, 1, '84.00', '2018-05-30 09:51:57'), (5407, 1, '68.00', '2018-05-30 09:52:06'), (5408, 1, '99.00', '2018-05-30 09:52:15'), (5409, 1, '63.00', '2018-05-30 09:52:24'), (5410, 1, '89.00', '2018-05-30 09:52:33'), (5411, 1, '92.00', '2018-05-30 09:52:42'), (5412, 1, '73.00', '2018-05-30 09:52:51'), (5413, 1, '95.00', '2018-05-30 09:53:00'), (5414, 1, '75.00', '2018-05-30 09:53:09'), (5415, 1, '62.00', '2018-05-30 09:53:18'), (5416, 1, '73.00', '2018-05-30 09:53:27'), (5417, 1, '81.00', '2018-05-30 09:53:36'), (5418, 1, '79.00', '2018-05-30 09:53:45'), (5419, 1, '63.00', '2018-05-30 09:53:54'), (5420, 1, '62.00', '2018-05-30 09:54:03'), (5421, 1, '89.00', '2018-05-30 09:54:12'), (5422, 1, '67.00', '2018-05-30 09:54:21'), (5423, 1, '92.00', '2018-05-30 09:54:29'), (5424, 1, '99.00', '2018-05-30 09:54:38'), (5425, 1, '99.00', '2018-05-30 09:54:47'), (5426, 1, '76.00', '2018-05-30 09:54:56'), (5427, 1, '85.00', '2018-05-30 09:55:05'), (5428, 1, '85.00', '2018-05-30 09:55:14'), (5429, 1, '74.00', '2018-05-30 09:55:23'), (5430, 1, '98.00', '2018-05-30 09:55:32'), (5431, 1, '67.00', '2018-05-30 09:55:41'), (5432, 1, '85.00', '2018-05-30 09:55:50'), (5433, 1, '77.00', '2018-05-30 09:55:59'), (5434, 1, '86.00', '2018-05-30 09:56:08'), (5435, 1, '83.00', '2018-05-30 09:56:17'), (5436, 1, '92.00', '2018-05-30 09:56:26'), (5437, 1, '85.00', '2018-05-30 09:56:35'), (5438, 1, '75.00', '2018-05-30 09:56:44'), (5439, 1, '95.00', '2018-05-30 09:56:54'), (5440, 1, '65.00', '2018-05-30 09:57:03'), (5441, 1, '76.00', '2018-05-30 09:57:12'), (5442, 1, '87.00', '2018-05-30 09:57:21'), (5443, 1, '86.00', '2018-05-30 09:57:30'), (5444, 1, '87.00', '2018-05-30 09:57:39'), (5445, 1, '79.00', '2018-05-30 09:57:48'), (5446, 1, '87.00', '2018-05-30 09:57:57'), (5447, 1, '64.00', '2018-05-30 09:58:06'), (5448, 1, '98.00', '2018-05-30 09:58:15'), (5449, 1, '62.00', '2018-05-30 09:58:24'), (5450, 1, '84.00', '2018-05-30 09:58:33'), (5451, 1, '64.00', '2018-05-30 09:58:42'), (5452, 1, '73.00', '2018-05-30 09:58:51'), (5453, 1, '64.00', '2018-05-30 09:59:00'), (5454, 1, '60.00', '2018-05-30 09:59:09'), (5455, 1, '70.00', '2018-05-30 09:59:18'), (5456, 1, '83.00', '2018-05-30 09:59:27'), (5457, 1, '97.00', '2018-05-30 09:59:35'), (5458, 1, '64.00', '2018-05-30 09:59:44'), (5459, 1, '61.00', '2018-05-30 09:59:53'), (5460, 1, '75.00', '2018-05-30 10:00:02'), (5461, 1, '64.00', '2018-05-30 10:00:11'), (5462, 1, '78.00', '2018-05-30 10:00:20'), (5463, 1, '79.00', '2018-05-30 10:00:29'), (5464, 1, '94.00', '2018-05-30 10:00:38'), (5465, 1, '72.00', '2018-05-30 10:00:47'), (5466, 1, '60.00', '2018-05-30 10:00:56'), (5467, 1, '90.00', '2018-05-30 10:01:05'), (5468, 1, '96.00', '2018-05-30 10:01:14'), (5469, 1, '67.00', '2018-05-30 10:01:23'), (5470, 1, '98.00', '2018-05-30 10:01:32'), (5471, 1, '87.00', '2018-05-30 10:01:41'), (5472, 1, '82.00', '2018-05-30 10:01:50'), (5473, 1, '80.00', '2018-05-30 10:01:58'), (5474, 1, '88.00', '2018-05-30 10:02:07'), (5475, 1, '70.00', '2018-05-30 10:02:16'), (5476, 1, '93.00', '2018-05-30 10:02:25'), (5477, 1, '85.00', '2018-05-30 10:02:34'), (5478, 1, '83.00', '2018-05-30 10:02:43'), (5479, 1, '69.00', '2018-05-30 10:02:52'), (5480, 1, '77.00', '2018-05-30 10:03:01'), (5481, 1, '76.00', '2018-05-30 10:03:10'), (5482, 1, '88.00', '2018-05-30 10:03:19'), (5483, 1, '74.00', '2018-05-30 10:03:28'), (5484, 1, '68.00', '2018-05-30 10:03:37'), (5485, 1, '69.00', '2018-05-30 10:03:46'), (5486, 1, '61.00', '2018-05-30 10:03:55'), (5487, 1, '79.00', '2018-05-30 10:04:04'), (5488, 1, '65.00', '2018-05-30 10:04:13'), (5489, 1, '77.00', '2018-05-30 10:04:22'), (5490, 1, '79.00', '2018-05-30 10:04:31'), (5491, 1, '97.00', '2018-05-30 10:04:40'), (5492, 1, '99.00', '2018-05-30 10:04:48'), (5493, 1, '84.00', '2018-05-30 10:04:57'), (5494, 1, '96.00', '2018-05-30 10:05:06'), (5495, 1, '83.00', '2018-05-30 10:05:15'), (5496, 1, '86.00', '2018-05-30 10:05:24'), (5497, 1, '85.00', '2018-05-30 10:05:33'), (5498, 1, '96.00', '2018-05-30 10:05:42'), (5499, 1, '85.00', '2018-05-30 10:05:51'), (5500, 1, '86.00', '2018-05-30 10:06:00'), (5501, 1, '71.00', '2018-05-30 10:06:09'), (5502, 1, '74.00', '2018-05-30 10:06:18'), (5503, 1, '79.00', '2018-05-30 10:06:27'), (5504, 1, '78.00', '2018-05-30 10:06:36'), (5505, 1, '72.00', '2018-05-30 10:06:45'), (5506, 1, '92.00', '2018-05-30 10:06:54'), (5507, 1, '83.00', '2018-05-30 10:07:03'), (5508, 1, '94.00', '2018-05-30 10:07:12'), (5509, 1, '82.00', '2018-05-30 10:07:21'), (5510, 1, '79.00', '2018-05-30 10:07:30'), (5511, 1, '94.00', '2018-05-30 10:07:39'), (5512, 1, '65.00', '2018-05-30 10:07:48'), (5513, 1, '98.00', '2018-05-30 10:07:57'), (5514, 1, '86.00', '2018-05-30 10:08:06'), (5515, 1, '62.00', '2018-05-30 10:08:15'), (5516, 1, '96.00', '2018-05-30 10:08:24'), (5517, 1, '92.00', '2018-05-30 10:08:33'), (5518, 1, '99.00', '2018-05-30 10:08:42'), (5519, 1, '87.00', '2018-05-30 10:08:51'), (5520, 1, '62.00', '2018-05-30 10:09:00'), (5521, 1, '96.00', '2018-05-30 10:09:08'), (5522, 1, '69.00', '2018-05-30 10:09:17'), (5523, 1, '66.00', '2018-05-30 10:09:26'), (5524, 1, '98.00', '2018-05-30 10:09:35'), (5525, 1, '89.00', '2018-05-30 10:09:44'), (5526, 1, '83.00', '2018-05-30 10:09:53'), (5527, 1, '91.00', '2018-05-30 10:10:02'), (5528, 1, '89.00', '2018-05-30 10:10:11'), (5529, 1, '94.00', '2018-05-30 10:10:20'), (5530, 1, '84.00', '2018-05-30 10:10:29'), (5531, 1, '89.00', '2018-05-30 10:10:38'), (5532, 1, '68.00', '2018-05-30 10:10:48'), (5533, 1, '77.00', '2018-05-30 10:10:56'), (5534, 1, '60.00', '2018-05-30 10:11:05'), (5535, 1, '81.00', '2018-05-30 10:11:14'), (5536, 1, '80.00', '2018-05-30 10:11:23'), (5537, 1, '88.00', '2018-05-30 10:11:32'), (5538, 1, '87.00', '2018-05-30 10:11:41'), (5539, 1, '75.00', '2018-05-30 10:11:50'), (5540, 1, '63.00', '2018-05-30 10:11:59'), (5541, 1, '70.00', '2018-05-30 10:12:08'), (5542, 1, '76.00', '2018-05-30 10:12:17'), (5543, 1, '80.00', '2018-05-30 10:12:26'), (5544, 1, '60.00', '2018-05-30 10:12:35'), (5545, 1, '82.00', '2018-05-30 10:12:44'), (5546, 1, '81.00', '2018-05-30 10:12:53'), (5547, 1, '83.00', '2018-05-30 10:13:02'), (5548, 1, '74.00', '2018-05-30 10:13:11'), (5549, 1, '84.00', '2018-05-30 10:13:20'), (5550, 1, '95.00', '2018-05-30 10:13:29'), (5551, 1, '64.00', '2018-05-30 10:13:38'), (5552, 1, '64.00', '2018-05-30 10:13:47'), (5553, 1, '90.00', '2018-05-30 10:13:56'), (5554, 1, '61.00', '2018-05-30 10:14:05'), (5555, 1, '77.00', '2018-05-30 10:14:14'), (5556, 1, '66.00', '2018-05-30 10:14:24'), (5557, 1, '72.00', '2018-05-30 10:14:33'), (5558, 1, '85.00', '2018-05-30 10:14:42'), (5559, 1, '74.00', '2018-05-30 10:14:51'), (5560, 1, '71.00', '2018-05-30 10:15:00'), (5561, 1, '73.00', '2018-05-30 10:15:09'), (5562, 1, '81.00', '2018-05-30 10:15:18'), (5563, 1, '87.00', '2018-05-30 10:15:27'), (5564, 1, '89.00', '2018-05-30 10:15:36'), (5565, 1, '82.00', '2018-05-30 10:15:45'), (5566, 1, '83.00', '2018-05-30 10:15:54'), (5567, 1, '63.00', '2018-05-30 10:16:03'), (5568, 1, '73.00', '2018-05-30 10:16:12'), (5569, 1, '71.00', '2018-05-30 10:16:21'), (5570, 1, '87.00', '2018-05-30 10:16:30'), (5571, 1, '72.00', '2018-05-30 10:16:39'), (5572, 1, '94.00', '2018-05-30 10:16:48'), (5573, 1, '67.00', '2018-05-30 10:16:57'), (5574, 1, '74.00', '2018-05-30 10:17:06'), (5575, 1, '82.00', '2018-05-30 10:17:15'), (5576, 1, '67.00', '2018-05-30 10:17:24'), (5577, 1, '70.00', '2018-05-30 10:17:33'), (5578, 1, '68.00', '2018-05-30 10:17:42'), (5579, 1, '69.00', '2018-05-30 10:17:51'), (5580, 1, '74.00', '2018-05-30 10:18:00'), (5581, 1, '71.00', '2018-05-30 10:18:09'), (5582, 1, '84.00', '2018-05-30 10:18:18'), (5583, 1, '87.00', '2018-05-30 10:18:27'), (5584, 1, '65.00', '2018-05-30 10:18:36'), (5585, 1, '74.00', '2018-05-30 10:18:45'), (5586, 1, '96.00', '2018-05-30 10:18:55'), (5587, 1, '76.00', '2018-05-30 10:19:04'), (5588, 1, '81.00', '2018-05-30 10:19:13'), (5589, 1, '75.00', '2018-05-30 10:19:22'), (5590, 1, '78.00', '2018-05-30 10:19:30'), (5591, 1, '62.00', '2018-05-30 10:19:39'), (5592, 1, '97.00', '2018-05-30 10:19:48'), (5593, 1, '69.00', '2018-05-30 10:19:57'), (5594, 1, '89.00', '2018-05-30 10:20:06'), (5595, 1, '67.00', '2018-05-30 10:20:15'), (5596, 1, '99.00', '2018-05-30 10:20:24'), (5597, 1, '99.00', '2018-05-30 10:20:33'), (5598, 1, '70.00', '2018-05-30 10:20:42'), (5599, 1, '65.00', '2018-05-30 10:20:51'), (5600, 1, '62.00', '2018-05-30 10:21:00'), (5601, 1, '72.00', '2018-05-30 10:21:09'), (5602, 1, '89.00', '2018-05-30 10:21:18'), (5603, 1, '91.00', '2018-05-30 10:21:27'), (5604, 1, '95.00', '2018-05-30 10:21:36'), (5605, 1, '99.00', '2018-05-30 10:21:45'), (5606, 1, '75.00', '2018-05-30 10:21:53'), (5607, 1, '63.00', '2018-05-30 10:22:02'), (5608, 1, '69.00', '2018-05-30 10:22:12'), (5609, 1, '70.00', '2018-05-30 10:22:20'), (5610, 1, '61.00', '2018-05-30 10:22:29'), (5611, 1, '64.00', '2018-05-30 10:22:38'), (5612, 1, '73.00', '2018-05-30 10:22:47'), (5613, 1, '60.00', '2018-05-30 10:22:56'), (5614, 1, '92.00', '2018-05-30 10:23:05'), (5615, 1, '66.00', '2018-05-30 10:23:14'), (5616, 1, '90.00', '2018-05-30 10:23:23'), (5617, 1, '90.00', '2018-05-30 10:23:32'), (5618, 1, '65.00', '2018-05-30 10:23:41'), (5619, 1, '83.00', '2018-05-30 10:23:50'), (5620, 1, '66.00', '2018-05-30 10:23:59'), (5621, 1, '83.00', '2018-05-30 10:24:08'), (5622, 1, '82.00', '2018-05-30 10:24:17'), (5623, 1, '68.00', '2018-05-30 10:24:26'), (5624, 1, '63.00', '2018-05-30 10:24:35'), (5625, 1, '90.00', '2018-05-30 10:24:44'), (5626, 1, '60.00', '2018-05-30 10:24:53'), (5627, 1, '90.00', '2018-05-30 10:25:02'), (5628, 1, '84.00', '2018-05-30 10:25:11'), (5629, 1, '60.00', '2018-05-30 10:25:20'), (5630, 1, '76.00', '2018-05-30 10:25:29'), (5631, 1, '93.00', '2018-05-30 10:25:38'), (5632, 1, '94.00', '2018-05-30 10:25:47'), (5633, 1, '87.00', '2018-05-30 10:25:56'), (5634, 1, '86.00', '2018-05-30 10:26:05'), (5635, 1, '88.00', '2018-05-30 10:26:14'), (5636, 1, '63.00', '2018-05-30 10:26:23'), (5637, 1, '82.00', '2018-05-30 10:26:32'), (5638, 1, '68.00', '2018-05-30 10:26:41'), (5639, 1, '79.00', '2018-05-30 10:26:50'), (5640, 1, '82.00', '2018-05-30 10:26:59'), (5641, 1, '82.00', '2018-05-30 10:27:08'), (5642, 1, '96.00', '2018-05-30 10:27:17'), (5643, 1, '83.00', '2018-05-30 10:27:25'), (5644, 1, '75.00', '2018-05-30 10:27:35'), (5645, 1, '83.00', '2018-05-30 10:27:43'), (5646, 1, '86.00', '2018-05-30 10:27:52'), (5647, 1, '98.00', '2018-05-30 10:28:01'), (5648, 1, '94.00', '2018-05-30 10:28:10'), (5649, 1, '84.00', '2018-05-30 10:28:20'), (5650, 1, '67.00', '2018-05-30 10:28:29'), (5651, 1, '75.00', '2018-05-30 10:28:38'), (5652, 1, '63.00', '2018-05-30 10:28:47'), (5653, 1, '86.00', '2018-05-30 10:28:58'), (5654, 1, '60.00', '2018-05-30 10:29:07'), (5655, 1, '91.00', '2018-05-30 10:29:16'), (5656, 1, '64.00', '2018-05-30 10:29:25'), (5657, 1, '84.00', '2018-05-30 10:29:34'), (5658, 1, '87.00', '2018-05-30 10:29:43'), (5659, 1, '61.00', '2018-05-30 10:29:52'), (5660, 1, '81.00', '2018-05-30 10:30:01'), (5661, 1, '65.00', '2018-05-30 10:30:10'), (5662, 1, '99.00', '2018-05-30 10:30:19'), (5663, 1, '82.00', '2018-05-30 10:30:28'), (5664, 1, '82.00', '2018-05-30 10:30:36'), (5665, 1, '64.00', '2018-05-30 10:30:45'), (5666, 1, '81.00', '2018-05-30 10:30:54'), (5667, 1, '95.00', '2018-05-30 10:31:03'), (5668, 1, '96.00', '2018-05-30 10:31:12'), (5669, 1, '99.00', '2018-05-30 10:31:21'), (5670, 1, '86.00', '2018-05-30 10:31:30'), (5671, 1, '60.00', '2018-05-30 10:31:39'), (5672, 1, '86.00', '2018-05-30 10:31:48'), (5673, 1, '77.00', '2018-05-30 10:31:57'), (5674, 1, '87.00', '2018-05-30 10:32:06'), (5675, 1, '88.00', '2018-05-30 10:32:15'), (5676, 1, '90.00', '2018-05-30 10:32:24'), (5677, 1, '66.00', '2018-05-30 10:32:33'), (5678, 1, '89.00', '2018-05-30 10:32:42'), (5679, 1, '73.00', '2018-05-30 10:32:51'), (5680, 1, '92.00', '2018-05-30 10:33:00'), (5681, 1, '82.00', '2018-05-30 10:33:09'), (5682, 1, '60.00', '2018-05-30 10:33:18'), (5683, 1, '89.00', '2018-05-30 10:33:27'), (5684, 1, '69.00', '2018-05-30 10:33:36'), (5685, 1, '91.00', '2018-05-30 10:33:45'), (5686, 1, '97.00', '2018-05-30 10:33:54'), (5687, 1, '99.00', '2018-05-30 10:34:03'), (5688, 1, '61.00', '2018-05-30 10:34:12'), (5689, 1, '73.00', '2018-05-30 10:34:21'), (5690, 1, '99.00', '2018-05-30 10:34:30'), (5691, 1, '82.00', '2018-05-30 10:34:39'), (5692, 1, '65.00', '2018-05-30 10:34:48'), (5693, 1, '93.00', '2018-05-30 10:34:57'), (5694, 1, '61.00', '2018-05-30 10:35:06'), (5695, 1, '64.00', '2018-05-30 10:35:15'), (5696, 1, '85.00', '2018-05-30 10:35:24'), (5697, 1, '64.00', '2018-05-30 10:35:33'), (5698, 1, '88.00', '2018-05-30 10:35:42'), (5699, 1, '93.00', '2018-05-30 10:35:51'), (5700, 1, '96.00', '2018-05-30 10:36:00'), (5701, 1, '79.00', '2018-05-30 10:36:09'), (5702, 1, '63.00', '2018-05-30 10:36:18'), (5703, 1, '81.00', '2018-05-30 10:36:27'), (5704, 1, '89.00', '2018-05-30 10:36:36'), (5705, 1, '72.00', '2018-05-30 10:36:45'), (5706, 1, '69.00', '2018-05-30 10:36:54'), (5707, 1, '91.00', '2018-05-30 10:37:03'), (5708, 1, '82.00', '2018-05-30 10:37:12'), (5709, 1, '67.00', '2018-05-30 10:37:20'), (5710, 1, '75.00', '2018-05-30 10:37:29'), (5711, 1, '91.00', '2018-05-30 10:37:38'), (5712, 1, '71.00', '2018-05-30 10:37:48'), (5713, 1, '75.00', '2018-05-30 10:37:57'), (5714, 1, '62.00', '2018-05-30 10:38:06'), (5715, 1, '64.00', '2018-05-30 10:38:15'), (5716, 1, '92.00', '2018-05-30 10:38:24'), (5717, 1, '93.00', '2018-05-30 10:38:33'), (5718, 1, '84.00', '2018-05-30 10:38:42'), (5719, 1, '60.00', '2018-05-30 10:38:51'), (5720, 1, '62.00', '2018-05-30 10:39:00'), (5721, 1, '90.00', '2018-05-30 10:39:09'), (5722, 1, '61.00', '2018-05-30 10:39:18'), (5723, 1, '90.00', '2018-05-30 10:39:27'), (5724, 1, '74.00', '2018-05-30 10:39:36'), (5725, 1, '73.00', '2018-05-30 10:39:45'), (5726, 1, '90.00', '2018-05-30 10:39:54'), (5727, 1, '80.00', '2018-05-30 10:40:03'), (5728, 1, '66.00', '2018-05-30 10:40:12'), (5729, 1, '87.00', '2018-05-30 10:40:21'), (5730, 1, '90.00', '2018-05-30 10:40:30'), (5731, 1, '60.00', '2018-05-30 10:40:39'), (5732, 1, '87.00', '2018-05-30 10:40:48'), (5733, 1, '75.00', '2018-05-30 10:40:57'), (5734, 1, '69.00', '2018-05-30 10:41:06'), (5735, 1, '79.00', '2018-05-30 10:41:15'), (5736, 1, '89.00', '2018-05-30 10:41:24'), (5737, 1, '60.00', '2018-05-30 10:41:33'), (5738, 1, '63.00', '2018-05-30 10:41:42'), (5739, 1, '64.00', '2018-05-30 10:41:51'), (5740, 1, '89.00', '2018-05-30 10:42:00'), (5741, 1, '64.00', '2018-05-30 10:42:09'), (5742, 1, '99.00', '2018-05-30 10:42:18'), (5743, 1, '70.00', '2018-05-30 10:42:27'), (5744, 1, '88.00', '2018-05-30 10:42:36'), (5745, 1, '94.00', '2018-05-30 10:42:45'), (5746, 1, '80.00', '2018-05-30 10:42:54'), (5747, 1, '75.00', '2018-05-30 10:43:02'), (5748, 1, '74.00', '2018-05-30 10:43:12'), (5749, 1, '69.00', '2018-05-30 10:43:21'), (5750, 1, '88.00', '2018-05-30 10:43:30'), (5751, 1, '94.00', '2018-05-30 10:43:39'), (5752, 1, '95.00', '2018-05-30 10:43:48'), (5753, 1, '84.00', '2018-05-30 10:43:57'), (5754, 1, '73.00', '2018-05-30 10:44:06'), (5755, 1, '70.00', '2018-05-30 10:44:14'), (5756, 1, '72.00', '2018-05-30 10:44:23'), (5757, 1, '70.00', '2018-05-30 10:44:32'), (5758, 1, '87.00', '2018-05-30 10:44:41'), (5759, 1, '61.00', '2018-05-30 10:44:50'), (5760, 1, '72.00', '2018-05-30 10:44:59'), (5761, 1, '60.00', '2018-05-30 10:45:08'), (5762, 1, '98.00', '2018-05-30 10:45:17'), (5763, 1, '83.00', '2018-05-30 10:45:26'), (5764, 1, '66.00', '2018-05-30 10:45:35'), (5765, 1, '81.00', '2018-05-30 10:45:44'), (5766, 1, '70.00', '2018-05-30 10:45:53'), (5767, 1, '82.00', '2018-05-30 10:46:02'), (5768, 1, '95.00', '2018-05-30 10:46:11'), (5769, 1, '94.00', '2018-05-30 10:46:20'), (5770, 1, '83.00', '2018-05-30 10:46:29'), (5771, 1, '97.00', '2018-05-30 10:46:38'), (5772, 1, '73.00', '2018-05-30 10:46:47'), (5773, 1, '78.00', '2018-05-30 10:46:56'), (5774, 1, '96.00', '2018-05-30 10:47:05'), (5775, 1, '84.00', '2018-05-30 10:47:14'), (5776, 1, '69.00', '2018-05-30 10:47:22'), (5777, 1, '67.00', '2018-05-30 10:47:31'), (5778, 1, '85.00', '2018-05-30 10:47:40'), (5779, 1, '81.00', '2018-05-30 10:47:49'), (5780, 1, '73.00', '2018-05-30 10:47:58'), (5781, 1, '60.00', '2018-05-30 10:48:07'), (5782, 1, '67.00', '2018-05-30 10:48:16'), (5783, 1, '61.00', '2018-05-30 10:48:25'), (5784, 1, '97.00', '2018-05-30 10:48:34'), (5785, 1, '71.00', '2018-05-30 10:48:43'), (5786, 1, '85.00', '2018-05-30 10:48:52'), (5787, 1, '87.00', '2018-05-30 10:49:01'), (5788, 1, '63.00', '2018-05-30 10:49:10'), (5789, 1, '98.00', '2018-05-30 10:49:19'), (5790, 1, '94.00', '2018-05-30 10:49:28'), (5791, 1, '88.00', '2018-05-30 10:49:37'), (5792, 1, '65.00', '2018-05-30 10:49:46'), (5793, 1, '89.00', '2018-05-30 10:49:55'), (5794, 1, '89.00', '2018-05-30 10:50:04'), (5795, 1, '73.00', '2018-05-30 10:50:13'), (5796, 1, '75.00', '2018-05-30 10:50:22'), (5797, 1, '95.00', '2018-05-30 10:50:31'), (5798, 1, '85.00', '2018-05-30 10:50:40'), (5799, 1, '87.00', '2018-05-30 10:50:49'), (5800, 1, '75.00', '2018-05-30 10:50:58'), (5801, 1, '90.00', '2018-05-30 10:51:07'), (5802, 1, '74.00', '2018-05-30 10:51:17'), (5803, 1, '92.00', '2018-05-30 10:51:26'), (5804, 1, '69.00', '2018-05-30 10:51:34'), (5805, 1, '95.00', '2018-05-30 10:51:43'), (5806, 1, '99.00', '2018-05-30 10:51:52'), (5807, 1, '89.00', '2018-05-30 10:52:01'), (5808, 1, '79.00', '2018-05-30 10:52:10'), (5809, 1, '97.00', '2018-05-30 10:52:19'), (5810, 1, '61.00', '2018-05-30 10:52:28'), (5811, 1, '79.00', '2018-05-30 10:52:37'), (5812, 1, '81.00', '2018-05-30 10:52:46'), (5813, 1, '78.00', '2018-05-30 10:52:55'), (5814, 1, '92.00', '2018-05-30 10:53:04'), (5815, 1, '68.00', '2018-05-30 10:53:13'), (5816, 1, '72.00', '2018-05-30 10:53:22'), (5817, 1, '89.00', '2018-05-30 10:53:31'), (5818, 1, '69.00', '2018-05-30 10:53:40'), (5819, 1, '97.00', '2018-05-30 10:53:49'), (5820, 1, '99.00', '2018-05-30 10:53:58'), (5821, 1, '96.00', '2018-05-30 10:54:07'), (5822, 1, '91.00', '2018-05-30 10:54:16'), (5823, 1, '76.00', '2018-05-30 10:54:25'), (5824, 1, '67.00', '2018-05-30 10:54:34'), (5825, 1, '96.00', '2018-05-30 10:54:43'), (5826, 1, '97.00', '2018-05-30 10:54:52'), (5827, 1, '99.00', '2018-05-30 10:55:01'), (5828, 1, '72.00', '2018-05-30 10:55:10'), (5829, 1, '96.00', '2018-05-30 10:55:19'), (5830, 1, '99.00', '2018-05-30 10:55:28'), (5831, 1, '91.00', '2018-05-30 10:55:37'), (5832, 1, '84.00', '2018-05-30 10:55:46'), (5833, 1, '64.00', '2018-05-30 10:55:55'), (5834, 1, '96.00', '2018-05-30 10:56:04'), (5835, 1, '78.00', '2018-05-30 10:56:13'), (5836, 1, '90.00', '2018-05-30 10:56:22'), (5837, 1, '97.00', '2018-05-30 10:56:31'), (5838, 1, '98.00', '2018-05-30 10:56:40'), (5839, 1, '61.00', '2018-05-30 10:56:49'), (5840, 1, '78.00', '2018-05-30 10:56:58'), (5841, 1, '61.00', '2018-05-30 10:57:07'), (5842, 1, '76.00', '2018-05-30 10:57:16'), (5843, 1, '90.00', '2018-05-30 10:57:25'), (5844, 1, '98.00', '2018-05-30 10:57:34'), (5845, 1, '87.00', '2018-05-30 10:57:43'), (5846, 1, '68.00', '2018-05-30 10:57:52'), (5847, 1, '73.00', '2018-05-30 10:58:01'), (5848, 1, '82.00', '2018-05-30 10:58:10'), (5849, 1, '71.00', '2018-05-30 10:58:19'), (5850, 1, '86.00', '2018-05-30 10:58:28'), (5851, 1, '87.00', '2018-05-30 10:58:37'), (5852, 1, '61.00', '2018-05-30 10:58:46'), (5853, 1, '93.00', '2018-05-30 10:58:54'), (5854, 1, '83.00', '2018-05-30 10:59:03'), (5855, 1, '92.00', '2018-05-30 10:59:12'), (5856, 1, '97.00', '2018-05-30 10:59:21'), (5857, 1, '97.00', '2018-05-30 10:59:30'), (5858, 1, '90.00', '2018-05-30 10:59:39'), (5859, 1, '60.00', '2018-05-30 10:59:48'), (5860, 1, '92.00', '2018-05-30 10:59:58'), (5861, 1, '77.00', '2018-05-30 11:00:07'), (5862, 1, '76.00', '2018-05-30 11:00:16'), (5863, 1, '98.00', '2018-05-30 11:00:25'), (5864, 1, '74.00', '2018-05-30 11:00:34'), (5865, 1, '69.00', '2018-05-30 11:00:43'), (5866, 1, '79.00', '2018-05-30 11:00:52'), (5867, 1, '66.00', '2018-05-30 11:01:01'), (5868, 1, '62.00', '2018-05-30 11:01:10'), (5869, 1, '73.00', '2018-05-30 11:01:18'), (5870, 1, '71.00', '2018-05-30 11:01:27'), (5871, 1, '84.00', '2018-05-30 11:01:36'), (5872, 1, '81.00', '2018-05-30 11:01:45'), (5873, 1, '86.00', '2018-05-30 11:01:54'), (5874, 1, '95.00', '2018-05-30 11:02:03'), (5875, 1, '69.00', '2018-05-30 11:02:12'), (5876, 1, '79.00', '2018-05-30 11:02:21'), (5877, 1, '93.00', '2018-05-30 11:02:30'), (5878, 1, '93.00', '2018-05-30 11:02:39'), (5879, 1, '68.00', '2018-05-30 11:02:48'), (5880, 1, '72.00', '2018-05-30 11:02:57'), (5881, 1, '62.00', '2018-05-30 11:03:06'), (5882, 1, '82.00', '2018-05-30 11:03:15'), (5883, 1, '98.00', '2018-05-30 11:03:24'), (5884, 1, '84.00', '2018-05-30 11:03:33'), (5885, 1, '63.00', '2018-05-30 11:03:42'), (5886, 1, '94.00', '2018-05-30 11:03:51'), (5887, 1, '61.00', '2018-05-30 11:04:00'), (5888, 1, '89.00', '2018-05-30 11:04:09'), (5889, 1, '93.00', '2018-05-30 11:04:18'), (5890, 1, '86.00', '2018-05-30 11:04:27'), (5891, 1, '92.00', '2018-05-30 11:04:36'), (5892, 1, '88.00', '2018-05-30 11:04:45'), (5893, 1, '83.00', '2018-05-30 11:04:54'), (5894, 1, '85.00', '2018-05-30 11:05:03'), (5895, 1, '78.00', '2018-05-30 11:05:12'), (5896, 1, '72.00', '2018-05-30 11:05:21'), (5897, 1, '71.00', '2018-05-30 11:05:31'), (5898, 1, '98.00', '2018-05-30 11:05:39'), (5899, 1, '88.00', '2018-05-30 11:05:49'), (5900, 1, '73.00', '2018-05-30 11:05:58'), (5901, 1, '65.00', '2018-05-30 11:06:07'), (5902, 1, '93.00', '2018-05-30 11:06:16'), (5903, 1, '66.00', '2018-05-30 11:06:25'), (5904, 1, '82.00', '2018-05-30 11:06:34'), (5905, 1, '69.00', '2018-05-30 11:06:43'), (5906, 1, '85.00', '2018-05-30 11:06:52'), (5907, 1, '62.00', '2018-05-30 11:07:01'), (5908, 1, '81.00', '2018-05-30 11:07:10'), (5909, 1, '88.00', '2018-05-30 11:07:19'), (5910, 1, '80.00', '2018-05-30 11:07:28'), (5911, 1, '68.00', '2018-05-30 11:07:37'), (5912, 1, '86.00', '2018-05-30 11:07:45'), (5913, 1, '95.00', '2018-05-30 11:07:54'), (5914, 1, '86.00', '2018-05-30 11:08:03'), (5915, 1, '73.00', '2018-05-30 11:08:12'), (5916, 1, '96.00', '2018-05-30 11:08:21'), (5917, 1, '65.00', '2018-05-30 11:08:30'), (5918, 1, '84.00', '2018-05-30 11:08:39'), (5919, 1, '81.00', '2018-05-30 11:08:48'), (5920, 1, '78.00', '2018-05-30 11:08:57'), (5921, 1, '91.00', '2018-05-30 11:09:06'), (5922, 1, '81.00', '2018-05-30 11:09:15'), (5923, 1, '71.00', '2018-05-30 11:09:24'), (5924, 1, '96.00', '2018-05-30 11:09:33'), (5925, 1, '96.00', '2018-05-30 11:09:42'), (5926, 1, '75.00', '2018-05-30 11:09:51'), (5927, 1, '94.00', '2018-05-30 11:10:00'), (5928, 1, '80.00', '2018-05-30 11:10:09'), (5929, 1, '96.00', '2018-05-30 11:10:18'), (5930, 1, '64.00', '2018-05-30 11:10:27'), (5931, 1, '62.00', '2018-05-30 11:10:36'), (5932, 1, '68.00', '2018-05-30 11:10:44'), (5933, 1, '89.00', '2018-05-30 11:10:53'), (5934, 1, '69.00', '2018-05-30 11:11:02'), (5935, 1, '89.00', '2018-05-30 11:11:12'), (5936, 1, '62.00', '2018-05-30 11:11:21'), (5937, 1, '79.00', '2018-05-30 11:11:29'), (5938, 1, '98.00', '2018-05-30 11:11:38'), (5939, 1, '67.00', '2018-05-30 11:11:47'), (5940, 1, '60.00', '2018-05-30 11:11:56'), (5941, 1, '63.00', '2018-05-30 11:12:05'), (5942, 1, '67.00', '2018-05-30 11:12:14'), (5943, 1, '84.00', '2018-05-30 11:12:23'), (5944, 1, '90.00', '2018-05-30 11:12:32'), (5945, 1, '62.00', '2018-05-30 11:12:41'), (5946, 1, '94.00', '2018-05-30 11:12:50'), (5947, 1, '89.00', '2018-05-30 11:12:59'), (5948, 1, '64.00', '2018-05-30 11:13:08'), (5949, 1, '81.00', '2018-05-30 11:13:17'), (5950, 1, '97.00', '2018-05-30 11:13:26'), (5951, 1, '61.00', '2018-05-30 11:13:35'), (5952, 1, '85.00', '2018-05-30 11:13:43'), (5953, 1, '64.00', '2018-05-30 11:13:52'), (5954, 1, '78.00', '2018-05-30 11:14:01'), (5955, 1, '84.00', '2018-05-30 11:14:10'), (5956, 1, '69.00', '2018-05-30 11:14:19'), (5957, 1, '92.00', '2018-05-30 11:14:28'), (5958, 1, '67.00', '2018-05-30 11:14:37'), (5959, 1, '76.00', '2018-05-30 11:14:46'), (5960, 1, '76.00', '2018-05-30 11:14:55'), (5961, 1, '98.00', '2018-05-30 11:15:04'), (5962, 1, '88.00', '2018-05-30 11:15:13'), (5963, 1, '76.00', '2018-05-30 11:15:22'), (5964, 1, '81.00', '2018-05-30 11:15:31'), (5965, 1, '99.00', '2018-05-30 11:15:40'), (5966, 1, '86.00', '2018-05-30 11:15:49'), (5967, 1, '93.00', '2018-05-30 11:15:58'), (5968, 1, '85.00', '2018-05-30 11:16:07'), (5969, 1, '78.00', '2018-05-30 11:16:16'), (5970, 1, '80.00', '2018-05-30 11:16:25'), (5971, 1, '67.00', '2018-05-30 11:16:34'), (5972, 1, '99.00', '2018-05-30 11:16:43'), (5973, 1, '91.00', '2018-05-30 11:16:52'), (5974, 1, '71.00', '2018-05-30 11:17:01'), (5975, 1, '83.00', '2018-05-30 11:17:10'), (5976, 1, '84.00', '2018-05-30 11:17:19'), (5977, 1, '79.00', '2018-05-30 11:17:28'), (5978, 1, '80.00', '2018-05-30 11:17:37'), (5979, 1, '80.00', '2018-05-30 11:17:46'), (5980, 1, '99.00', '2018-05-30 11:17:55'), (5981, 1, '92.00', '2018-05-30 11:18:04'), (5982, 1, '68.00', '2018-05-30 11:18:13'), (5983, 1, '77.00', '2018-05-30 11:18:22'), (5984, 1, '89.00', '2018-05-30 11:18:31'), (5985, 1, '89.00', '2018-05-30 11:18:40'), (5986, 1, '98.00', '2018-05-30 11:18:49'), (5987, 1, '74.00', '2018-05-30 11:18:58'), (5988, 1, '92.00', '2018-05-30 11:19:07'), (5989, 1, '98.00', '2018-05-30 11:19:16'), (5990, 1, '81.00', '2018-05-30 11:19:25'), (5991, 1, '87.00', '2018-05-30 11:19:34'), (5992, 1, '60.00', '2018-05-30 11:19:43'), (5993, 1, '88.00', '2018-05-30 11:19:52'), (5994, 1, '97.00', '2018-05-30 11:20:01'), (5995, 1, '74.00', '2018-05-30 11:20:10'), (5996, 1, '86.00', '2018-05-30 11:20:19'), (5997, 1, '85.00', '2018-05-30 11:20:28'), (5998, 1, '80.00', '2018-05-30 11:20:37'), (5999, 1, '92.00', '2018-05-30 11:20:46'), (6000, 1, '82.00', '2018-05-30 11:20:55'), (6001, 1, '99.00', '2018-05-30 11:21:04'), (6002, 1, '69.00', '2018-05-30 11:21:13'), (6003, 1, '99.00', '2018-05-30 11:21:22'), (6004, 1, '80.00', '2018-05-30 11:21:31'), (6005, 1, '87.00', '2018-05-30 11:21:40'), (6006, 1, '60.00', '2018-05-30 11:21:49'), (6007, 1, '92.00', '2018-05-30 11:21:58'), (6008, 1, '80.00', '2018-05-30 11:22:07'), (6009, 1, '64.00', '2018-05-30 11:22:16'), (6010, 1, '83.00', '2018-05-30 11:22:25'), (6011, 1, '77.00', '2018-05-30 11:22:34'), (6012, 1, '70.00', '2018-05-30 11:22:43'), (6013, 1, '96.00', '2018-05-30 11:22:51'), (6014, 1, '70.00', '2018-05-30 11:23:00'), (6015, 1, '66.00', '2018-05-30 11:23:09'), (6016, 1, '82.00', '2018-05-30 11:23:18'), (6017, 1, '88.00', '2018-05-30 11:23:27'), (6018, 1, '71.00', '2018-05-30 11:23:36'), (6019, 1, '71.00', '2018-05-30 11:23:45'), (6020, 1, '91.00', '2018-05-30 11:23:54'), (6021, 1, '92.00', '2018-05-30 11:24:03'), (6022, 1, '85.00', '2018-05-30 11:24:12'), (6023, 1, '73.00', '2018-05-30 11:24:21'), (6024, 1, '80.00', '2018-05-30 11:24:30'), (6025, 1, '83.00', '2018-05-30 11:24:39'), (6026, 1, '98.00', '2018-05-30 11:24:48'), (6027, 1, '93.00', '2018-05-30 11:24:57'), (6028, 1, '79.00', '2018-05-30 11:25:06'), (6029, 1, '71.00', '2018-05-30 11:25:15'), (6030, 1, '89.00', '2018-05-30 11:25:24'), (6031, 1, '60.00', '2018-05-30 11:25:32'), (6032, 1, '97.00', '2018-05-30 11:25:41'), (6033, 1, '79.00', '2018-05-30 11:25:50'), (6034, 1, '94.00', '2018-05-30 11:25:59'), (6035, 1, '98.00', '2018-05-30 11:26:08'), (6036, 1, '72.00', '2018-05-30 11:26:17'), (6037, 1, '83.00', '2018-05-30 11:26:27'), (6038, 1, '97.00', '2018-05-30 11:26:36'), (6039, 1, '91.00', '2018-05-30 11:26:45'), (6040, 1, '93.00', '2018-05-30 11:26:54'), (6041, 1, '74.00', '2018-05-30 11:27:03'), (6042, 1, '78.00', '2018-05-30 11:27:11'), (6043, 1, '70.00', '2018-05-30 11:27:20'), (6044, 1, '90.00', '2018-05-30 11:27:29'), (6045, 1, '91.00', '2018-05-30 11:27:38'), (6046, 1, '68.00', '2018-05-30 11:27:48'), (6047, 1, '70.00', '2018-05-30 11:27:57'), (6048, 1, '93.00', '2018-05-30 11:28:06'), (6049, 1, '79.00', '2018-05-30 11:28:15'), (6050, 1, '65.00', '2018-05-30 11:28:24'), (6051, 1, '81.00', '2018-05-30 11:28:33'), (6052, 1, '85.00', '2018-05-30 11:28:42'), (6053, 1, '81.00', '2018-05-30 11:28:51'), (6054, 1, '72.00', '2018-05-30 11:29:00'), (6055, 1, '85.00', '2018-05-30 11:29:09'), (6056, 1, '74.00', '2018-05-30 11:29:18'), (6057, 1, '76.00', '2018-05-30 11:29:27'), (6058, 1, '84.00', '2018-05-30 11:29:36'), (6059, 1, '94.00', '2018-05-30 11:29:45'), (6060, 1, '72.00', '2018-05-30 11:29:54'), (6061, 1, '84.00', '2018-05-30 11:30:03'), (6062, 1, '77.00', '2018-05-30 11:30:12'), (6063, 1, '65.00', '2018-05-30 11:30:21'), (6064, 1, '74.00', '2018-05-30 11:30:30'), (6065, 1, '83.00', '2018-05-30 11:30:38'), (6066, 1, '85.00', '2018-05-30 11:30:47'), (6067, 1, '64.00', '2018-05-30 11:30:56'), (6068, 1, '74.00', '2018-05-30 11:31:05'), (6069, 1, '90.00', '2018-05-30 11:31:14'), (6070, 1, '64.00', '2018-05-30 11:31:23'), (6071, 1, '69.00', '2018-05-30 11:31:32'), (6072, 1, '98.00', '2018-05-30 11:31:41'), (6073, 1, '95.00', '2018-05-30 11:31:50'), (6074, 1, '63.00', '2018-05-30 11:31:59'), (6075, 1, '83.00', '2018-05-30 11:32:08'), (6076, 1, '75.00', '2018-05-30 11:32:17'), (6077, 1, '67.00', '2018-05-30 11:32:26'), (6078, 1, '80.00', '2018-05-30 11:32:36'), (6079, 1, '93.00', '2018-05-30 11:32:45'), (6080, 1, '63.00', '2018-05-30 11:32:54'), (6081, 1, '75.00', '2018-05-30 11:33:03'), (6082, 1, '90.00', '2018-05-30 11:33:12'), (6083, 1, '87.00', '2018-05-30 11:33:21'), (6084, 1, '99.00', '2018-05-30 11:33:29'), (6085, 1, '76.00', '2018-05-30 11:33:38'), (6086, 1, '81.00', '2018-05-30 11:33:47'), (6087, 1, '98.00', '2018-05-30 11:33:56'), (6088, 1, '94.00', '2018-05-30 11:34:05'), (6089, 1, '75.00', '2018-05-30 11:34:14'), (6090, 1, '77.00', '2018-05-30 11:34:23'), (6091, 1, '66.00', '2018-05-30 11:34:32'), (6092, 1, '60.00', '2018-05-30 11:34:41'), (6093, 1, '97.00', '2018-05-30 11:34:50'), (6094, 1, '98.00', '2018-05-30 11:34:59'), (6095, 1, '70.00', '2018-05-30 11:35:09'), (6096, 1, '66.00', '2018-05-30 11:35:18'), (6097, 1, '74.00', '2018-05-30 11:35:27'), (6098, 1, '68.00', '2018-05-30 11:35:35'), (6099, 1, '91.00', '2018-05-30 11:35:44'), (6100, 1, '74.00', '2018-05-30 11:35:53'), (6101, 1, '75.00', '2018-05-30 11:36:02'), (6102, 1, '88.00', '2018-05-30 11:36:11'), (6103, 1, '72.00', '2018-05-30 11:36:20'), (6104, 1, '78.00', '2018-05-30 11:36:29'), (6105, 1, '96.00', '2018-05-30 11:36:38'), (6106, 1, '76.00', '2018-05-30 11:36:47'), (6107, 1, '75.00', '2018-05-30 11:36:56'), (6108, 1, '84.00', '2018-05-30 11:37:05'), (6109, 1, '72.00', '2018-05-30 11:37:14'), (6110, 1, '64.00', '2018-05-30 11:37:23'), (6111, 1, '69.00', '2018-05-30 11:37:32'), (6112, 1, '90.00', '2018-05-30 11:37:41'); INSERT INTO `leitura` (`idLeitura`, `idMonitor`, `nivel`, `dataHora`) VALUES (6113, 1, '78.00', '2018-05-30 11:37:50'), (6114, 1, '65.00', '2018-05-30 11:37:59'), (6115, 1, '86.00', '2018-05-30 11:38:08'), (6116, 1, '88.00', '2018-05-30 11:38:17'), (6117, 1, '65.00', '2018-05-30 11:38:26'), (6118, 1, '88.00', '2018-05-30 11:38:35'), (6119, 1, '72.00', '2018-05-30 11:38:44'), (6120, 1, '76.00', '2018-05-30 11:38:53'), (6121, 1, '75.00', '2018-05-30 11:39:02'), (6122, 1, '92.00', '2018-05-30 11:39:11'), (6123, 1, '80.00', '2018-05-30 11:39:20'), (6124, 1, '97.00', '2018-05-30 11:39:29'), (6125, 1, '84.00', '2018-05-30 11:39:38'), (6126, 1, '64.00', '2018-05-30 11:39:47'), (6127, 1, '69.00', '2018-05-30 11:39:56'), (6128, 1, '76.00', '2018-05-30 11:40:05'), (6129, 1, '76.00', '2018-05-30 11:40:14'), (6130, 1, '70.00', '2018-05-30 11:40:23'), (6131, 1, '74.00', '2018-05-30 11:40:31'), (6132, 1, '97.00', '2018-05-30 11:40:40'), (6133, 1, '81.00', '2018-05-30 11:40:49'), (6134, 1, '93.00', '2018-05-30 11:40:58'), (6135, 1, '83.00', '2018-05-30 11:41:07'), (6136, 1, '61.00', '2018-05-30 11:41:16'), (6137, 1, '91.00', '2018-05-30 11:41:25'), (6138, 1, '67.00', '2018-05-30 11:41:34'), (6139, 1, '85.00', '2018-05-30 11:41:43'), (6140, 1, '91.00', '2018-05-30 11:41:52'), (6141, 1, '76.00', '2018-05-30 11:42:01'), (6142, 1, '94.00', '2018-05-30 11:42:10'), (6143, 1, '69.00', '2018-05-30 11:42:19'), (6144, 1, '77.00', '2018-05-30 11:42:28'), (6145, 1, '61.00', '2018-05-30 11:42:37'), (6146, 1, '91.00', '2018-05-30 11:42:46'), (6147, 1, '62.00', '2018-05-30 11:42:55'), (6148, 1, '94.00', '2018-05-30 11:43:04'), (6149, 1, '93.00', '2018-05-30 11:43:13'), (6150, 1, '94.00', '2018-05-30 11:43:22'), (6151, 1, '61.00', '2018-05-30 11:43:31'), (6152, 1, '93.00', '2018-05-30 11:43:40'), (6153, 1, '69.00', '2018-05-30 11:43:49'), (6154, 1, '75.00', '2018-05-30 11:43:58'), (6155, 1, '95.00', '2018-05-30 11:44:07'), (6156, 1, '81.00', '2018-05-30 11:44:16'), (6157, 1, '92.00', '2018-05-30 11:44:25'), (6158, 1, '80.00', '2018-05-30 11:44:34'), (6159, 1, '72.00', '2018-05-30 11:44:43'), (6160, 1, '72.00', '2018-05-30 11:44:52'), (6161, 1, '95.00', '2018-05-30 11:45:01'), (6162, 1, '85.00', '2018-05-30 11:45:10'), (6163, 1, '63.00', '2018-05-30 11:45:19'), (6164, 1, '99.00', '2018-05-30 11:45:28'), (6165, 1, '77.00', '2018-05-30 11:45:37'), (6166, 1, '71.00', '2018-05-30 11:45:46'), (6167, 1, '91.00', '2018-05-30 11:45:55'), (6168, 1, '77.00', '2018-05-30 11:46:04'), (6169, 1, '82.00', '2018-05-30 11:46:13'), (6170, 1, '69.00', '2018-05-30 11:46:22'), (6171, 1, '79.00', '2018-05-30 11:46:31'), (6172, 1, '91.00', '2018-05-30 11:46:40'), (6173, 1, '91.00', '2018-05-30 11:46:49'), (6174, 1, '68.00', '2018-05-30 11:46:58'), (6175, 1, '98.00', '2018-05-30 11:47:07'), (6176, 1, '62.00', '2018-05-30 11:47:16'), (6177, 1, '97.00', '2018-05-30 11:47:25'), (6178, 1, '80.00', '2018-05-30 11:47:34'), (6179, 1, '97.00', '2018-05-30 11:47:43'), (6180, 1, '94.00', '2018-05-30 11:47:52'), (6181, 1, '77.00', '2018-05-30 11:48:01'), (6182, 1, '86.00', '2018-05-30 11:48:09'), (6183, 1, '99.00', '2018-05-30 11:48:18'), (6184, 1, '65.00', '2018-05-30 11:48:27'), (6185, 1, '63.00', '2018-05-30 11:48:36'), (6186, 1, '78.00', '2018-05-30 11:48:45'), (6187, 1, '81.00', '2018-05-30 11:48:54'), (6188, 1, '97.00', '2018-05-30 11:49:03'), (6189, 1, '65.00', '2018-05-30 11:49:13'), (6190, 1, '93.00', '2018-05-30 11:49:22'), (6191, 1, '78.00', '2018-05-30 11:49:31'), (6192, 1, '88.00', '2018-05-30 11:49:40'), (6193, 1, '87.00', '2018-05-30 11:49:49'), (6194, 1, '89.00', '2018-05-30 11:49:57'), (6195, 1, '68.00', '2018-05-30 11:50:06'), (6196, 1, '67.00', '2018-05-30 11:50:15'), (6197, 1, '83.00', '2018-05-30 11:50:24'), (6198, 1, '72.00', '2018-05-30 11:50:33'), (6199, 1, '77.00', '2018-05-30 11:50:42'), (6200, 1, '90.00', '2018-05-30 11:50:51'), (6201, 1, '78.00', '2018-05-30 11:51:00'), (6202, 1, '95.00', '2018-05-30 11:51:09'), (6203, 1, '87.00', '2018-05-30 11:51:18'), (6204, 1, '66.00', '2018-05-30 11:51:27'), (6205, 1, '88.00', '2018-05-30 11:51:36'), (6206, 1, '73.00', '2018-05-30 11:51:45'), (6207, 1, '89.00', '2018-05-30 11:51:54'), (6208, 1, '96.00', '2018-05-30 11:52:03'), (6209, 1, '82.00', '2018-05-30 11:52:12'), (6210, 1, '64.00', '2018-05-30 11:52:21'), (6211, 1, '74.00', '2018-05-30 11:52:30'), (6212, 1, '83.00', '2018-05-30 11:52:39'), (6213, 1, '99.00', '2018-05-30 11:52:48'), (6214, 1, '88.00', '2018-05-30 11:52:57'), (6215, 1, '94.00', '2018-05-30 11:53:06'), (6216, 1, '63.00', '2018-05-30 11:53:15'), (6217, 1, '71.00', '2018-05-30 11:53:24'), (6218, 1, '61.00', '2018-05-30 11:53:33'), (6219, 1, '86.00', '2018-05-30 11:53:42'), (6220, 1, '79.00', '2018-05-30 11:53:51'), (6221, 1, '90.00', '2018-05-30 11:54:00'), (6222, 1, '73.00', '2018-05-30 11:54:09'), (6223, 1, '75.00', '2018-05-30 11:54:18'), (6224, 1, '78.00', '2018-05-30 11:54:27'), (6225, 1, '84.00', '2018-05-30 11:54:36'), (6226, 1, '89.00', '2018-05-30 11:54:45'), (6227, 1, '76.00', '2018-05-30 11:54:54'), (6228, 1, '99.00', '2018-05-30 11:55:03'), (6229, 1, '62.00', '2018-05-30 11:55:12'), (6230, 1, '81.00', '2018-05-30 11:55:21'), (6231, 1, '87.00', '2018-05-30 11:55:30'), (6232, 1, '95.00', '2018-05-30 11:55:39'), (6233, 1, '73.00', '2018-05-30 11:55:48'), (6234, 1, '67.00', '2018-05-30 11:55:57'), (6235, 1, '87.00', '2018-05-30 11:56:06'), (6236, 1, '83.00', '2018-05-30 11:56:15'), (6237, 1, '83.00', '2018-05-30 11:56:23'), (6238, 1, '85.00', '2018-05-30 11:56:32'), (6239, 1, '82.00', '2018-05-30 11:56:41'), (6240, 1, '75.00', '2018-05-30 11:56:50'), (6241, 1, '97.00', '2018-05-30 11:56:59'), (6242, 1, '89.00', '2018-05-30 11:57:08'), (6243, 1, '68.00', '2018-05-30 11:57:17'), (6244, 1, '86.00', '2018-05-30 11:57:26'), (6245, 1, '70.00', '2018-05-30 11:57:35'), (6246, 1, '66.00', '2018-05-30 11:57:44'), (6247, 1, '96.00', '2018-05-30 11:57:53'), (6248, 1, '79.00', '2018-05-30 11:58:02'), (6249, 1, '90.00', '2018-05-30 11:58:12'), (6250, 1, '73.00', '2018-05-30 11:58:21'), (6251, 1, '82.00', '2018-05-30 11:58:30'), (6252, 1, '73.00', '2018-05-30 11:58:39'), (6253, 1, '67.00', '2018-05-30 11:58:48'), (6254, 1, '88.00', '2018-05-30 11:58:57'), (6255, 1, '70.00', '2018-05-30 11:59:05'), (6256, 1, '81.00', '2018-05-30 11:59:14'), (6257, 1, '68.00', '2018-05-30 11:59:23'), (6258, 1, '85.00', '2018-05-30 11:59:32'), (6259, 1, '99.00', '2018-05-30 11:59:41'), (6260, 1, '82.00', '2018-05-30 11:59:50'), (6261, 1, '64.00', '2018-05-30 11:59:59'), (6262, 1, '94.00', '2018-05-30 12:00:08'), (6263, 1, '77.00', '2018-05-30 12:00:17'), (6264, 1, '66.00', '2018-05-30 12:00:26'), (6265, 1, '60.00', '2018-05-30 12:00:35'), (6266, 1, '92.00', '2018-05-30 12:00:44'), (6267, 1, '77.00', '2018-05-30 12:00:53'), (6268, 1, '77.00', '2018-05-30 12:01:02'), (6269, 1, '74.00', '2018-05-30 12:01:11'), (6270, 1, '96.00', '2018-05-30 12:01:20'), (6271, 1, '89.00', '2018-05-30 12:01:29'), (6272, 1, '79.00', '2018-05-30 12:01:38'), (6273, 1, '79.00', '2018-05-30 12:01:47'), (6274, 1, '92.00', '2018-05-30 12:01:56'), (6275, 1, '60.00', '2018-05-30 12:02:05'), (6276, 1, '65.00', '2018-05-30 12:02:14'), (6277, 1, '86.00', '2018-05-30 12:02:23'), (6278, 1, '64.00', '2018-05-30 12:02:32'), (6279, 1, '70.00', '2018-05-30 12:02:41'), (6280, 1, '81.00', '2018-05-30 12:02:50'), (6281, 1, '72.00', '2018-05-30 12:02:59'), (6282, 1, '66.00', '2018-05-30 12:03:08'), (6283, 1, '82.00', '2018-05-30 12:03:17'), (6284, 1, '95.00', '2018-05-30 12:03:26'), (6285, 1, '99.00', '2018-05-30 12:03:35'), (6286, 1, '98.00', '2018-05-30 12:03:44'), (6287, 1, '96.00', '2018-05-30 12:03:53'), (6288, 1, '73.00', '2018-05-30 12:04:02'), (6289, 1, '86.00', '2018-05-30 12:04:10'), (6290, 1, '95.00', '2018-05-30 12:04:19'), (6291, 1, '92.00', '2018-05-30 12:04:29'), (6292, 1, '93.00', '2018-05-30 12:04:37'), (6293, 1, '97.00', '2018-05-30 12:04:46'), (6294, 1, '79.00', '2018-05-30 12:04:55'), (6295, 1, '82.00', '2018-05-30 12:05:04'), (6296, 1, '71.00', '2018-05-30 12:05:13'), (6297, 1, '86.00', '2018-05-30 12:05:22'), (6298, 1, '67.00', '2018-05-30 12:05:31'), (6299, 1, '99.00', '2018-05-30 12:05:40'), (6300, 1, '91.00', '2018-05-30 12:05:49'), (6301, 1, '73.00', '2018-05-30 12:05:58'), (6302, 1, '92.00', '2018-05-30 12:06:07'), (6303, 1, '60.00', '2018-05-30 12:06:16'), (6304, 1, '95.00', '2018-05-30 12:06:25'), (6305, 1, '93.00', '2018-05-30 12:06:34'), (6306, 1, '86.00', '2018-05-30 12:06:43'), (6307, 1, '84.00', '2018-05-30 12:06:52'), (6308, 1, '90.00', '2018-05-30 12:07:00'), (6309, 1, '92.00', '2018-05-30 12:07:09'), (6310, 1, '61.00', '2018-05-30 12:07:18'), (6311, 1, '86.00', '2018-05-30 12:07:27'), (6312, 1, '87.00', '2018-05-30 12:07:36'), (6313, 1, '97.00', '2018-05-30 12:07:45'), (6314, 1, '78.00', '2018-05-30 12:07:54'), (6315, 1, '75.00', '2018-05-30 12:08:03'), (6316, 1, '65.00', '2018-05-30 12:08:12'), (6317, 1, '86.00', '2018-05-30 12:08:21'), (6318, 1, '69.00', '2018-05-30 12:08:30'), (6319, 1, '77.00', '2018-05-30 12:08:39'), (6320, 1, '91.00', '2018-05-30 12:08:48'), (6321, 1, '65.00', '2018-05-30 12:08:57'), (6322, 1, '98.00', '2018-05-30 12:09:06'), (6323, 1, '67.00', '2018-05-30 12:09:15'), (6324, 1, '86.00', '2018-05-30 12:09:24'), (6325, 1, '73.00', '2018-05-30 12:09:33'), (6326, 1, '94.00', '2018-05-30 12:09:42'), (6327, 1, '82.00', '2018-05-30 12:09:51'), (6328, 1, '60.00', '2018-05-30 12:10:00'), (6329, 1, '75.00', '2018-05-30 12:10:09'), (6330, 1, '82.00', '2018-05-30 12:10:18'), (6331, 1, '72.00', '2018-05-30 12:10:27'), (6332, 1, '68.00', '2018-05-30 12:10:36'), (6333, 1, '92.00', '2018-05-30 12:10:45'), (6334, 1, '68.00', '2018-05-30 12:10:54'), (6335, 1, '80.00', '2018-05-30 12:11:03'), (6336, 1, '68.00', '2018-05-30 12:11:12'), (6337, 1, '80.00', '2018-05-30 12:11:21'), (6338, 1, '69.00', '2018-05-30 12:11:30'), (6339, 1, '80.00', '2018-05-30 12:11:39'), (6340, 1, '99.00', '2018-05-30 12:11:50'), (6341, 1, '61.00', '2018-05-30 12:11:59'), (6342, 1, '76.00', '2018-05-30 12:12:07'), (6343, 1, '67.00', '2018-05-30 12:12:16'), (6344, 1, '81.00', '2018-05-30 12:12:25'), (6345, 1, '88.00', '2018-05-30 12:12:34'), (6346, 1, '76.00', '2018-05-30 12:12:43'), (6347, 1, '63.00', '2018-05-30 12:12:52'), (6348, 1, '94.00', '2018-05-30 12:13:01'), (6349, 1, '87.00', '2018-05-30 12:13:10'), (6350, 1, '66.00', '2018-05-30 12:13:19'), (6351, 1, '86.00', '2018-05-30 12:13:29'), (6352, 1, '77.00', '2018-05-30 12:13:38'), (6353, 1, '85.00', '2018-05-30 12:13:47'), (6354, 1, '77.00', '2018-05-30 12:13:56'), (6355, 1, '93.00', '2018-05-30 12:14:05'), (6356, 1, '88.00', '2018-05-30 12:14:14'), (6357, 1, '68.00', '2018-05-30 12:14:23'), (6358, 1, '64.00', '2018-05-30 12:14:32'), (6359, 1, '86.00', '2018-05-30 12:14:41'), (6360, 1, '79.00', '2018-05-30 12:14:50'), (6361, 1, '77.00', '2018-05-30 12:14:59'), (6362, 1, '84.00', '2018-05-30 12:15:08'), (6363, 1, '68.00', '2018-05-30 12:15:17'), (6364, 1, '84.00', '2018-05-30 12:15:26'), (6365, 1, '63.00', '2018-05-30 12:15:35'), (6366, 1, '79.00', '2018-05-30 12:15:44'), (6367, 1, '98.00', '2018-05-30 12:15:53'), (6368, 1, '79.00', '2018-05-30 12:16:02'), (6369, 1, '67.00', '2018-05-30 12:16:11'), (6370, 1, '65.00', '2018-05-30 12:16:20'), (6371, 1, '67.00', '2018-05-30 12:16:29'), (6372, 1, '73.00', '2018-05-30 12:16:38'), (6373, 1, '83.00', '2018-05-30 12:16:47'), (6374, 1, '65.00', '2018-05-30 12:16:56'), (6375, 1, '64.00', '2018-05-30 12:17:05'), (6376, 1, '79.00', '2018-05-30 12:17:14'), (6377, 1, '68.00', '2018-05-30 12:17:23'), (6378, 1, '69.00', '2018-05-30 12:17:32'), (6379, 1, '97.00', '2018-05-30 12:17:42'), (6380, 1, '69.00', '2018-05-30 12:17:51'), (6381, 1, '73.00', '2018-05-30 12:18:00'), (6382, 1, '86.00', '2018-05-30 12:18:09'), (6383, 1, '64.00', '2018-05-30 12:18:19'), (6384, 1, '99.00', '2018-05-30 12:18:28'), (6385, 1, '99.00', '2018-05-30 12:18:39'), (6386, 1, '73.00', '2018-05-30 12:18:49'), (6387, 1, '76.00', '2018-05-30 12:18:58'), (6388, 1, '61.00', '2018-05-30 12:19:09'), (6389, 1, '71.00', '2018-05-30 12:19:18'), (6390, 1, '61.00', '2018-05-30 12:19:28'), (6391, 1, '77.00', '2018-05-30 12:19:37'), (6392, 1, '84.00', '2018-05-30 12:19:48'), (6393, 1, '83.00', '2018-05-30 12:19:57'), (6394, 1, '81.00', '2018-05-30 12:20:06'), (6395, 1, '70.00', '2018-05-30 12:20:15'), (6396, 1, '90.00', '2018-05-30 12:20:26'), (6397, 1, '83.00', '2018-05-30 12:20:38'), (6398, 1, '63.00', '2018-05-30 12:20:47'), (6399, 1, '71.00', '2018-05-30 12:20:56'), (6400, 1, '76.00', '2018-05-30 12:21:05'), (6401, 1, '60.00', '2018-05-30 12:21:14'), (6402, 1, '79.00', '2018-05-30 12:21:23'), (6403, 1, '63.00', '2018-05-30 12:21:33'), (6404, 1, '93.00', '2018-05-30 12:21:43'), (6405, 1, '64.00', '2018-05-30 12:21:52'), (6406, 1, '97.00', '2018-05-30 12:22:01'), (6407, 1, '72.00', '2018-05-30 12:22:12'), (6408, 1, '75.00', '2018-05-30 12:22:21'), (6409, 1, '76.00', '2018-05-30 12:22:30'), (6410, 1, '92.00', '2018-05-30 12:22:39'), (6411, 1, '80.00', '2018-05-30 12:22:49'), (6412, 1, '74.00', '2018-05-30 12:22:59'), (6413, 1, '76.00', '2018-05-30 12:23:09'), (6414, 1, '91.00', '2018-05-30 12:23:18'), (6415, 1, '71.00', '2018-05-30 12:23:27'), (6416, 1, '96.00', '2018-05-30 12:23:36'), (6417, 1, '93.00', '2018-05-30 12:23:48'), (6418, 1, '97.00', '2018-05-30 12:23:57'), (6419, 1, '65.00', '2018-05-30 12:24:06'), (6420, 1, '85.00', '2018-05-30 12:24:15'), (6421, 1, '71.00', '2018-05-30 12:24:24'), (6422, 1, '75.00', '2018-05-30 12:24:33'), (6423, 1, '87.00', '2018-05-30 12:24:42'), (6424, 1, '97.00', '2018-05-30 12:24:51'), (6425, 1, '72.00', '2018-05-30 12:25:01'), (6426, 1, '76.00', '2018-05-30 12:25:10'), (6427, 1, '62.00', '2018-05-30 12:25:19'), (6428, 1, '99.00', '2018-05-30 12:25:28'), (6429, 1, '86.00', '2018-05-30 12:25:37'), (6430, 1, '91.00', '2018-05-30 12:25:46'), (6431, 1, '78.00', '2018-05-30 12:25:55'), (6432, 1, '89.00', '2018-05-30 12:26:04'), (6433, 1, '89.00', '2018-05-30 12:26:13'), (6434, 1, '76.00', '2018-05-30 12:26:22'), (6435, 1, '89.00', '2018-05-30 12:26:31'), (6436, 1, '82.00', '2018-05-30 12:26:40'), (6437, 1, '74.00', '2018-05-30 12:26:49'), (6438, 1, '63.00', '2018-05-30 12:26:58'), (6439, 1, '87.00', '2018-05-30 12:27:07'), (6440, 1, '77.00', '2018-05-30 12:27:16'), (6441, 1, '99.00', '2018-05-30 12:27:25'), (6442, 1, '87.00', '2018-05-30 12:27:38'), (6443, 1, '61.00', '2018-05-30 12:27:48'), (6444, 1, '91.00', '2018-05-30 12:27:57'), (6445, 1, '74.00', '2018-05-30 12:28:06'), (6446, 1, '76.00', '2018-05-30 12:28:20'), (6447, 1, '64.00', '2018-05-30 12:28:33'), (6448, 1, '62.00', '2018-05-30 12:28:45'), (6449, 1, '99.00', '2018-05-30 12:29:03'), (6450, 1, '82.00', '2018-05-30 12:29:13'), (6451, 1, '72.00', '2018-05-30 12:29:22'), (6452, 1, '95.00', '2018-05-30 12:29:32'), (6453, 1, '93.00', '2018-05-30 12:29:44'), (6454, 1, '97.00', '2018-05-30 12:29:53'), (6455, 1, '74.00', '2018-05-30 12:30:04'), (6456, 1, '66.00', '2018-05-30 12:30:13'), (6457, 1, '64.00', '2018-05-30 12:30:22'), (6458, 1, '64.00', '2018-05-30 12:30:31'), (6459, 1, '81.00', '2018-05-30 12:30:40'), (6460, 1, '95.00', '2018-05-30 12:30:49'), (6461, 1, '69.00', '2018-05-30 12:30:58'), (6462, 1, '65.00', '2018-05-30 12:31:07'), (6463, 1, '74.00', '2018-05-30 12:31:16'), (6464, 1, '62.00', '2018-05-30 12:31:25'), (6465, 1, '68.00', '2018-05-30 12:31:34'), (6466, 1, '93.00', '2018-05-30 12:31:43'), (6467, 1, '99.00', '2018-05-30 12:31:52'), (6468, 1, '93.00', '2018-05-30 12:32:01'), (6469, 1, '78.00', '2018-05-30 12:32:10'), (6470, 1, '95.00', '2018-05-30 12:32:19'), (6471, 1, '76.00', '2018-05-30 12:32:28'), (6472, 1, '74.00', '2018-05-30 12:32:37'), (6473, 1, '95.00', '2018-05-30 12:32:47'), (6474, 1, '78.00', '2018-05-30 12:32:56'), (6475, 1, '83.00', '2018-05-30 12:33:06'), (6476, 1, '80.00', '2018-05-30 12:33:15'), (6477, 1, '76.00', '2018-05-30 12:33:24'), (6478, 1, '91.00', '2018-05-30 12:33:34'), (6479, 1, '92.00', '2018-05-30 12:33:43'), (6480, 1, '63.00', '2018-05-30 12:33:53'), (6481, 1, '94.00', '2018-05-30 12:34:03'), (6482, 1, '78.00', '2018-05-30 12:34:12'), (6483, 1, '60.00', '2018-05-30 12:34:21'), (6484, 1, '76.00', '2018-05-30 12:34:30'), (6485, 1, '99.00', '2018-05-30 12:34:39'), (6486, 1, '80.00', '2018-05-30 12:34:49'), (6487, 1, '68.00', '2018-05-30 12:34:58'), (6488, 1, '81.00', '2018-05-30 12:35:09'), (6489, 1, '83.00', '2018-05-30 12:35:18'), (6490, 1, '66.00', '2018-05-30 12:35:27'), (6491, 1, '75.00', '2018-05-30 12:35:36'), (6492, 1, '80.00', '2018-05-30 12:35:46'), (6493, 1, '71.00', '2018-05-30 12:35:55'), (6494, 1, '64.00', '2018-05-30 12:36:04'), (6495, 1, '91.00', '2018-05-30 12:36:14'), (6496, 1, '96.00', '2018-05-30 12:36:23'), (6497, 1, '97.00', '2018-05-30 12:36:34'), (6498, 1, '69.00', '2018-05-30 12:36:43'), (6499, 1, '68.00', '2018-05-30 12:36:53'), (6500, 1, '98.00', '2018-05-30 12:37:02'), (6501, 1, '74.00', '2018-05-30 12:37:11'), (6502, 1, '93.00', '2018-05-30 12:37:21'), (6503, 1, '75.00', '2018-05-30 12:37:30'), (6504, 1, '89.00', '2018-05-30 12:37:39'), (6505, 1, '79.00', '2018-05-30 12:37:49'), (6506, 1, '62.00', '2018-05-30 12:37:58'), (6507, 1, '79.00', '2018-05-30 12:38:07'), (6508, 1, '94.00', '2018-05-30 12:38:16'), (6509, 1, '73.00', '2018-05-30 12:38:26'), (6510, 1, '82.00', '2018-05-30 12:38:35'), (6511, 1, '86.00', '2018-05-30 12:38:45'), (6512, 1, '68.00', '2018-05-30 12:38:55'), (6513, 1, '80.00', '2018-05-30 12:39:04'), (6514, 1, '71.00', '2018-05-30 12:39:14'), (6515, 1, '93.00', '2018-05-30 12:39:23'), (6516, 1, '95.00', '2018-05-30 12:39:34'), (6517, 1, '94.00', '2018-05-30 12:39:43'), (6518, 1, '83.00', '2018-05-30 12:39:53'), (6519, 1, '93.00', '2018-05-30 12:40:02'), (6520, 1, '68.00', '2018-05-30 12:40:12'), (6521, 1, '95.00', '2018-05-30 12:40:22'), (6522, 1, '63.00', '2018-05-30 12:40:31'), (6523, 1, '81.00', '2018-05-30 12:40:40'), (6524, 1, '87.00', '2018-05-30 12:40:50'), (6525, 1, '71.00', '2018-05-30 12:40:59'), (6526, 1, '89.00', '2018-05-30 12:41:09'), (6527, 1, '88.00', '2018-05-30 12:41:18'), (6528, 1, '81.00', '2018-05-30 12:41:27'), (6529, 1, '72.00', '2018-05-30 12:41:36'), (6530, 1, '98.00', '2018-05-30 12:41:50'), (6531, 1, '99.00', '2018-05-30 12:41:59'), (6532, 1, '79.00', '2018-05-30 12:42:09'), (6533, 1, '84.00', '2018-05-30 12:42:19'), (6534, 1, '73.00', '2018-05-30 12:42:28'), (6535, 1, '81.00', '2018-05-30 12:42:37'), (6536, 1, '73.00', '2018-05-30 12:42:47'), (6537, 1, '83.00', '2018-05-30 12:42:56'), (6538, 1, '79.00', '2018-05-30 12:43:05'), (6539, 1, '66.00', '2018-05-30 12:43:14'), (6540, 1, '62.00', '2018-05-30 12:43:23'), (6541, 1, '73.00', '2018-05-30 12:43:33'), (6542, 1, '69.00', '2018-05-30 12:43:42'), (6543, 1, '72.00', '2018-05-30 12:43:51'), (6544, 1, '90.00', '2018-05-30 12:44:00'), (6545, 1, '69.00', '2018-05-30 12:44:10'), (6546, 1, '92.00', '2018-05-30 12:44:19'), (6547, 1, '87.00', '2018-05-30 12:44:29'), (6548, 1, '89.00', '2018-05-30 12:44:39'), (6549, 1, '61.00', '2018-05-30 12:44:50'), (6550, 1, '87.00', '2018-05-30 12:44:59'), (6551, 1, '66.00', '2018-05-30 12:45:11'), (6552, 1, '74.00', '2018-05-30 12:45:20'), (6553, 1, '65.00', '2018-05-30 12:45:31'), (6554, 1, '85.00', '2018-05-30 12:45:41'), (6555, 1, '86.00', '2018-05-30 12:45:50'), (6556, 1, '97.00', '2018-05-30 12:46:00'), (6557, 1, '75.00', '2018-05-30 12:46:10'), (6558, 1, '60.00', '2018-05-30 12:46:21'), (6559, 1, '76.00', '2018-05-30 12:46:38'), (6560, 1, '62.00', '2018-05-30 12:46:49'), (6561, 1, '81.00', '2018-05-30 12:47:02'), (6562, 1, '92.00', '2018-05-30 12:47:11'), (6563, 1, '84.00', '2018-05-30 12:47:22'), (6564, 1, '80.00', '2018-05-30 12:47:33'), (6565, 1, '96.00', '2018-05-30 12:47:42'), (6566, 1, '98.00', '2018-05-30 12:47:53'), (6567, 1, '83.00', '2018-05-30 12:48:03'), (6568, 1, '68.00', '2018-05-30 12:48:14'), (6569, 1, '92.00', '2018-05-30 12:48:24'), (6570, 1, '61.00', '2018-05-30 12:48:34'), (6571, 1, '74.00', '2018-05-30 12:48:43'), (6572, 1, '63.00', '2018-05-30 12:48:54'), (6573, 1, '88.00', '2018-05-30 12:49:04'), (6574, 1, '94.00', '2018-05-30 12:49:14'), (6575, 1, '93.00', '2018-05-30 12:49:23'), (6576, 1, '94.00', '2018-05-30 12:49:33'), (6577, 1, '92.00', '2018-05-30 12:49:42'), (6578, 1, '75.00', '2018-05-30 12:49:52'), (6579, 1, '70.00', '2018-05-30 12:50:01'), (6580, 1, '93.00', '2018-05-30 12:50:10'), (6581, 1, '65.00', '2018-05-30 12:50:21'), (6582, 1, '69.00', '2018-05-30 12:50:30'), (6583, 1, '81.00', '2018-05-30 12:50:39'), (6584, 1, '80.00', '2018-05-30 12:50:50'), (6585, 1, '89.00', '2018-05-30 12:51:00'), (6586, 1, '82.00', '2018-05-30 12:51:14'), (6587, 1, '73.00', '2018-05-30 12:51:23'), (6588, 1, '94.00', '2018-05-30 12:51:32'), (6589, 1, '91.00', '2018-05-30 12:51:41'), (6590, 1, '86.00', '2018-05-30 12:51:50'), (6591, 1, '98.00', '2018-05-30 12:51:59'), (6592, 1, '63.00', '2018-05-30 12:52:08'), (6593, 1, '71.00', '2018-05-30 12:52:17'), (6594, 1, '66.00', '2018-05-30 12:52:26'), (6595, 1, '99.00', '2018-05-30 12:52:35'), (6596, 1, '73.00', '2018-05-30 12:52:44'), (6597, 1, '95.00', '2018-05-30 12:52:53'), (6598, 1, '95.00', '2018-05-30 12:53:02'), (6599, 1, '82.00', '2018-05-30 12:53:11'), (6600, 1, '95.00', '2018-05-30 12:53:20'), (6601, 1, '79.00', '2018-05-30 12:53:29'), (6602, 1, '97.00', '2018-05-30 12:53:38'), (6603, 1, '93.00', '2018-05-30 12:53:47'), (6604, 1, '60.00', '2018-05-30 12:53:56'), (6605, 1, '63.00', '2018-05-30 12:54:05'), (6606, 1, '93.00', '2018-05-30 12:54:14'), (6607, 1, '68.00', '2018-05-30 12:54:23'), (6608, 1, '85.00', '2018-05-30 12:54:32'), (6609, 1, '95.00', '2018-05-30 12:54:41'), (6610, 1, '74.00', '2018-05-30 12:54:50'), (6611, 1, '84.00', '2018-05-30 12:54:59'), (6612, 1, '76.00', '2018-05-30 12:55:08'), (6613, 1, '97.00', '2018-05-30 12:55:17'), (6614, 1, '99.00', '2018-05-30 12:55:26'), (6615, 1, '90.00', '2018-05-30 12:55:35'), (6616, 1, '66.00', '2018-05-30 12:55:44'), (6617, 1, '67.00', '2018-05-30 12:55:53'), (6618, 1, '78.00', '2018-05-30 12:56:02'), (6619, 1, '80.00', '2018-05-30 12:56:11'), (6620, 1, '99.00', '2018-05-30 12:56:20'), (6621, 1, '88.00', '2018-05-30 12:56:29'), (6622, 1, '66.00', '2018-05-30 12:56:38'), (6623, 1, '99.00', '2018-05-30 12:56:47'), (6624, 1, '89.00', '2018-05-30 12:56:56'), (6625, 1, '61.00', '2018-05-30 12:57:05'), (6626, 1, '78.00', '2018-05-30 12:57:13'), (6627, 1, '70.00', '2018-05-30 12:57:22'), (6628, 1, '90.00', '2018-05-30 12:57:31'), (6629, 1, '99.00', '2018-05-30 12:57:40'), (6630, 1, '77.00', '2018-05-30 12:57:49'), (6631, 1, '72.00', '2018-05-30 12:57:58'), (6632, 1, '63.00', '2018-05-30 12:58:07'), (6633, 1, '83.00', '2018-05-30 12:58:16'), (6634, 1, '70.00', '2018-05-30 12:58:25'), (6635, 1, '96.00', '2018-05-30 12:58:34'), (6636, 1, '93.00', '2018-05-30 12:58:43'), (6637, 1, '74.00', '2018-05-30 12:58:52'), (6638, 1, '80.00', '2018-05-30 12:59:01'), (6639, 1, '62.00', '2018-05-30 12:59:10'), (6640, 1, '95.00', '2018-05-30 12:59:19'), (6641, 1, '94.00', '2018-05-30 12:59:28'), (6642, 1, '80.00', '2018-05-30 12:59:37'), (6643, 1, '65.00', '2018-05-30 12:59:46'), (6644, 1, '93.00', '2018-05-30 12:59:55'), (6645, 1, '69.00', '2018-05-30 13:00:04'), (6646, 1, '74.00', '2018-05-30 13:00:13'), (6647, 1, '69.00', '2018-05-30 13:00:22'), (6648, 1, '69.00', '2018-05-30 13:00:31'), (6649, 1, '78.00', '2018-05-30 13:00:40'), (6650, 1, '66.00', '2018-05-30 13:00:49'), (6651, 1, '80.00', '2018-05-30 13:00:58'), (6652, 1, '91.00', '2018-05-30 13:01:07'), (6653, 1, '90.00', '2018-05-30 13:01:15'), (6654, 1, '65.00', '2018-05-30 13:01:24'), (6655, 1, '62.00', '2018-05-30 13:01:33'), (6656, 1, '67.00', '2018-05-30 13:01:42'), (6657, 1, '60.00', '2018-05-30 13:01:51'), (6658, 1, '84.00', '2018-05-30 13:02:00'), (6659, 1, '67.00', '2018-05-30 13:02:09'), (6660, 1, '72.00', '2018-05-30 13:02:18'), (6661, 1, '68.00', '2018-05-30 13:02:27'), (6662, 1, '92.00', '2018-05-30 13:02:36'), (6663, 1, '88.00', '2018-05-30 13:02:45'), (6664, 1, '99.00', '2018-05-30 13:02:54'), (6665, 1, '86.00', '2018-05-30 13:03:03'), (6666, 1, '97.00', '2018-05-30 13:03:12'), (6667, 1, '80.00', '2018-05-30 13:03:21'), (6668, 1, '71.00', '2018-05-30 13:03:30'), (6669, 1, '75.00', '2018-05-30 13:03:39'), (6670, 1, '94.00', '2018-05-30 13:03:49'), (6671, 1, '65.00', '2018-05-30 13:03:58'), (6672, 1, '85.00', '2018-05-30 13:04:07'), (6673, 1, '74.00', '2018-05-30 13:04:16'), (6674, 1, '69.00', '2018-05-30 13:04:26'), (6675, 1, '78.00', '2018-05-30 13:04:35'), (6676, 1, '82.00', '2018-05-30 13:04:44'), (6677, 1, '78.00', '2018-05-30 13:04:53'), (6678, 1, '60.00', '2018-05-30 13:05:02'), (6679, 1, '79.00', '2018-05-30 13:05:11'), (6680, 1, '92.00', '2018-05-30 13:05:20'), (6681, 1, '74.00', '2018-05-30 13:05:29'), (6682, 1, '87.00', '2018-05-30 13:05:38'), (6683, 1, '62.00', '2018-05-30 13:05:47'), (6684, 1, '94.00', '2018-05-30 13:05:55'), (6685, 1, '77.00', '2018-05-30 13:06:04'), (6686, 1, '61.00', '2018-05-30 13:06:13'), (6687, 1, '74.00', '2018-05-30 13:06:22'), (6688, 1, '86.00', '2018-05-30 13:06:31'), (6689, 1, '86.00', '2018-05-30 13:06:40'), (6690, 1, '85.00', '2018-05-30 13:06:49'), (6691, 1, '76.00', '2018-05-30 13:06:58'), (6692, 1, '80.00', '2018-05-30 13:07:07'), (6693, 1, '79.00', '2018-05-30 13:07:16'), (6694, 1, '81.00', '2018-05-30 13:07:25'), (6695, 1, '86.00', '2018-05-30 13:07:34'), (6696, 1, '77.00', '2018-05-30 13:07:43'), (6697, 1, '65.00', '2018-05-30 13:07:52'), (6698, 1, '95.00', '2018-05-30 13:08:01'), (6699, 1, '71.00', '2018-05-30 13:08:10'), (6700, 1, '73.00', '2018-05-30 13:08:19'), (6701, 1, '84.00', '2018-05-30 13:08:28'), (6702, 1, '85.00', '2018-05-30 13:08:37'), (6703, 1, '83.00', '2018-05-30 13:08:46'), (6704, 1, '98.00', '2018-05-30 13:08:55'), (6705, 1, '86.00', '2018-05-30 13:09:04'), (6706, 1, '69.00', '2018-05-30 13:09:13'), (6707, 1, '97.00', '2018-05-30 13:09:22'), (6708, 1, '76.00', '2018-05-30 13:09:31'), (6709, 1, '99.00', '2018-05-30 13:09:40'), (6710, 1, '80.00', '2018-05-30 13:09:49'), (6711, 1, '75.00', '2018-05-30 13:09:58'), (6712, 1, '86.00', '2018-05-30 13:10:07'), (6713, 1, '94.00', '2018-05-30 13:10:16'), (6714, 1, '60.00', '2018-05-30 13:10:24'), (6715, 1, '80.00', '2018-05-30 13:10:33'), (6716, 1, '91.00', '2018-05-30 13:10:42'), (6717, 1, '88.00', '2018-05-30 13:10:51'), (6718, 1, '93.00', '2018-05-30 13:11:00'), (6719, 1, '75.00', '2018-05-30 13:11:09'), (6720, 1, '79.00', '2018-05-30 13:11:18'), (6721, 1, '69.00', '2018-05-30 13:11:27'), (6722, 1, '82.00', '2018-05-30 13:11:36'), (6723, 1, '71.00', '2018-05-30 13:11:45'), (6724, 1, '96.00', '2018-05-30 13:11:54'), (6725, 1, '75.00', '2018-05-30 13:12:03'), (6726, 1, '94.00', '2018-05-30 13:12:12'), (6727, 1, '60.00', '2018-05-30 13:12:21'), (6728, 1, '75.00', '2018-05-30 13:12:30'), (6729, 1, '92.00', '2018-05-30 13:12:39'), (6730, 1, '63.00', '2018-05-30 13:12:48'), (6731, 1, '88.00', '2018-05-30 13:12:57'), (6732, 1, '94.00', '2018-05-30 13:13:06'), (6733, 1, '64.00', '2018-05-30 13:13:15'), (6734, 1, '61.00', '2018-05-30 13:13:24'), (6735, 1, '94.00', '2018-05-30 13:13:32'), (6736, 1, '86.00', '2018-05-30 13:13:41'), (6737, 1, '60.00', '2018-05-30 13:13:50'), (6738, 1, '62.00', '2018-05-30 13:13:59'), (6739, 1, '72.00', '2018-05-30 13:14:08'), (6740, 1, '67.00', '2018-05-30 13:14:17'), (6741, 1, '86.00', '2018-05-30 13:14:26'), (6742, 1, '85.00', '2018-05-30 13:14:35'), (6743, 1, '90.00', '2018-05-30 13:14:44'), (6744, 1, '85.00', '2018-05-30 13:14:53'), (6745, 1, '83.00', '2018-05-30 13:15:02'), (6746, 1, '84.00', '2018-05-30 13:15:11'), (6747, 1, '86.00', '2018-05-30 13:15:20'), (6748, 1, '72.00', '2018-05-30 13:15:29'), (6749, 1, '61.00', '2018-05-30 13:15:38'), (6750, 1, '72.00', '2018-05-30 13:15:47'), (6751, 1, '83.00', '2018-05-30 13:15:56'), (6752, 1, '60.00', '2018-05-30 13:16:05'), (6753, 1, '81.00', '2018-05-30 13:16:14'), (6754, 1, '97.00', '2018-05-30 13:16:23'), (6755, 1, '75.00', '2018-05-30 13:16:32'), (6756, 1, '69.00', '2018-05-30 13:16:41'), (6757, 1, '77.00', '2018-05-30 13:16:50'), (6758, 1, '67.00', '2018-05-30 13:16:59'), (6759, 1, '73.00', '2018-05-30 13:17:08'), (6760, 1, '73.00', '2018-05-30 13:17:17'), (6761, 1, '94.00', '2018-05-30 13:17:26'), (6762, 1, '62.00', '2018-05-30 13:17:44'), (6763, 1, '89.00', '2018-05-30 13:17:58'), (6764, 1, '61.00', '2018-05-30 13:18:07'), (6765, 1, '84.00', '2018-05-30 13:18:16'), (6766, 1, '63.00', '2018-05-30 13:18:25'), (6767, 1, '89.00', '2018-05-30 13:18:34'), (6768, 1, '79.00', '2018-05-30 13:18:43'), (6769, 1, '96.00', '2018-05-30 13:18:52'), (6770, 1, '75.00', '2018-05-30 13:19:01'), (6771, 1, '60.00', '2018-05-30 13:19:10'), (6772, 1, '65.00', '2018-05-30 13:19:19'), (6773, 1, '64.00', '2018-05-30 13:19:28'), (6774, 1, '97.00', '2018-05-30 13:19:37'), (6775, 1, '76.00', '2018-05-30 13:19:46'), (6776, 1, '68.00', '2018-05-30 13:19:55'), (6777, 1, '83.00', '2018-05-30 13:20:04'), (6778, 1, '97.00', '2018-05-30 13:20:13'), (6779, 1, '80.00', '2018-05-30 13:20:22'), (6780, 1, '82.00', '2018-05-30 13:20:31'), (6781, 1, '92.00', '2018-05-30 13:20:40'), (6782, 1, '93.00', '2018-05-30 13:20:49'), (6783, 1, '97.00', '2018-05-30 13:20:58'), (6784, 1, '69.00', '2018-05-30 13:21:07'), (6785, 1, '89.00', '2018-05-30 13:21:15'), (6786, 1, '69.00', '2018-05-30 13:21:24'), (6787, 1, '60.00', '2018-05-30 13:21:33'), (6788, 1, '95.00', '2018-05-30 13:21:42'), (6789, 1, '99.00', '2018-05-30 13:21:51'), (6790, 1, '77.00', '2018-05-30 13:22:00'), (6791, 1, '83.00', '2018-05-30 13:22:09'), (6792, 1, '87.00', '2018-05-30 13:22:18'), (6793, 1, '76.00', '2018-05-30 13:22:27'), (6794, 1, '84.00', '2018-05-30 13:22:36'), (6795, 1, '74.00', '2018-05-30 13:22:45'), (6796, 1, '76.00', '2018-05-30 13:22:54'), (6797, 1, '99.00', '2018-05-30 13:23:03'), (6798, 1, '95.00', '2018-05-30 13:23:12'), (6799, 1, '91.00', '2018-05-30 13:23:21'), (6800, 1, '95.00', '2018-05-30 13:23:30'), (6801, 1, '89.00', '2018-05-30 13:23:39'), (6802, 1, '89.00', '2018-05-30 13:23:48'), (6803, 1, '68.00', '2018-05-30 13:23:57'), (6804, 1, '67.00', '2018-05-30 13:24:06'), (6805, 1, '60.00', '2018-05-30 13:24:15'), (6806, 1, '75.00', '2018-05-30 13:24:24'), (6807, 1, '78.00', '2018-05-30 13:24:33'), (6808, 1, '79.00', '2018-05-30 13:24:42'), (6809, 1, '80.00', '2018-05-30 13:24:51'), (6810, 1, '84.00', '2018-05-30 13:25:00'), (6811, 1, '93.00', '2018-05-30 13:25:09'), (6812, 1, '74.00', '2018-05-30 13:25:18'), (6813, 1, '70.00', '2018-05-30 13:25:27'), (6814, 1, '73.00', '2018-05-30 13:25:36'), (6815, 1, '86.00', '2018-05-30 13:25:44'), (6816, 1, '87.00', '2018-05-30 13:25:53'), (6817, 1, '61.00', '2018-05-30 13:26:02'), (6818, 1, '98.00', '2018-05-30 13:26:11'), (6819, 1, '97.00', '2018-05-30 13:26:20'), (6820, 1, '89.00', '2018-05-30 13:26:29'), (6821, 1, '99.00', '2018-05-30 13:26:38'), (6822, 1, '73.00', '2018-05-30 13:26:47'), (6823, 1, '93.00', '2018-05-30 13:26:56'), (6824, 1, '84.00', '2018-05-30 13:27:05'), (6825, 1, '66.00', '2018-05-30 13:27:14'), (6826, 1, '77.00', '2018-05-30 13:27:23'), (6827, 1, '95.00', '2018-05-30 13:27:32'), (6828, 1, '95.00', '2018-05-30 13:27:41'), (6829, 1, '87.00', '2018-05-30 13:27:50'), (6830, 1, '86.00', '2018-05-30 13:27:59'), (6831, 1, '87.00', '2018-05-30 13:28:08'), (6832, 1, '83.00', '2018-05-30 13:28:17'), (6833, 1, '73.00', '2018-05-30 13:28:26'), (6834, 1, '86.00', '2018-05-30 13:28:35'), (6835, 1, '97.00', '2018-05-30 13:28:44'), (6836, 1, '93.00', '2018-05-30 13:28:53'), (6837, 1, '88.00', '2018-05-30 13:29:02'), (6838, 1, '66.00', '2018-05-30 13:29:11'), (6839, 1, '88.00', '2018-05-30 13:29:20'), (6840, 1, '66.00', '2018-05-30 13:29:29'), (6841, 1, '94.00', '2018-05-30 13:29:38'), (6842, 1, '70.00', '2018-05-30 13:29:47'), (6843, 1, '88.00', '2018-05-30 13:29:56'), (6844, 1, '72.00', '2018-05-30 13:30:05'), (6845, 1, '76.00', '2018-05-30 13:30:14'), (6846, 1, '98.00', '2018-05-30 13:30:23'), (6847, 1, '94.00', '2018-05-30 13:30:32'), (6848, 1, '94.00', '2018-05-30 13:30:41'), (6849, 1, '82.00', '2018-05-30 13:30:50'), (6850, 1, '78.00', '2018-05-30 13:30:59'), (6851, 1, '68.00', '2018-05-30 13:31:07'), (6852, 1, '73.00', '2018-05-30 13:31:16'), (6853, 1, '94.00', '2018-05-30 13:31:25'), (6854, 1, '75.00', '2018-05-30 13:31:34'), (6855, 1, '65.00', '2018-05-30 13:31:43'), (6856, 1, '98.00', '2018-05-30 13:31:52'), (6857, 1, '77.00', '2018-05-30 13:32:01'), (6858, 1, '73.00', '2018-05-30 13:32:10'), (6859, 1, '64.00', '2018-05-30 13:32:19'), (6860, 1, '84.00', '2018-05-30 13:32:28'), (6861, 1, '93.00', '2018-05-30 13:32:37'), (6862, 1, '81.00', '2018-05-30 13:32:46'), (6863, 1, '79.00', '2018-05-30 13:32:55'), (6864, 1, '83.00', '2018-05-30 13:33:04'), (6865, 1, '96.00', '2018-05-30 13:33:13'), (6866, 1, '95.00', '2018-05-30 13:33:22'), (6867, 1, '73.00', '2018-05-30 13:33:31'), (6868, 1, '81.00', '2018-05-30 13:33:40'), (6869, 1, '98.00', '2018-05-30 13:33:49'), (6870, 1, '90.00', '2018-05-30 13:33:58'), (6871, 1, '67.00', '2018-05-30 13:34:07'), (6872, 1, '88.00', '2018-05-30 13:34:15'), (6873, 1, '61.00', '2018-05-30 13:34:24'), (6874, 1, '88.00', '2018-05-30 13:34:33'), (6875, 1, '94.00', '2018-05-30 13:34:42'), (6876, 1, '69.00', '2018-05-30 13:34:51'), (6877, 1, '61.00', '2018-05-30 13:35:00'), (6878, 1, '96.00', '2018-05-30 13:35:09'), (6879, 1, '91.00', '2018-05-30 13:35:18'), (6880, 1, '93.00', '2018-05-30 13:35:27'), (6881, 1, '83.00', '2018-05-30 13:35:36'), (6882, 1, '92.00', '2018-05-30 13:35:45'), (6883, 1, '66.00', '2018-05-30 13:35:54'), (6884, 1, '72.00', '2018-05-30 13:36:03'), (6885, 1, '86.00', '2018-05-30 13:36:13'), (6886, 1, '83.00', '2018-05-30 13:36:22'), (6887, 1, '66.00', '2018-05-30 13:36:30'), (6888, 1, '93.00', '2018-05-30 13:36:39'), (6889, 1, '78.00', '2018-05-30 13:36:48'), (6890, 1, '93.00', '2018-05-30 13:36:57'), (6891, 1, '92.00', '2018-05-30 13:37:06'), (6892, 1, '94.00', '2018-05-30 13:37:15'), (6893, 1, '85.00', '2018-05-30 13:37:24'), (6894, 1, '97.00', '2018-05-30 13:37:33'), (6895, 1, '65.00', '2018-05-30 13:37:42'), (6896, 1, '93.00', '2018-05-30 13:37:51'), (6897, 1, '64.00', '2018-05-30 13:38:00'), (6898, 1, '93.00', '2018-05-30 13:38:09'), (6899, 1, '64.00', '2018-05-30 13:38:18'), (6900, 1, '93.00', '2018-05-30 13:38:27'), (6901, 1, '67.00', '2018-05-30 13:38:36'), (6902, 1, '72.00', '2018-05-30 13:38:45'), (6903, 1, '79.00', '2018-05-30 13:38:54'), (6904, 1, '76.00', '2018-05-30 13:39:03'), (6905, 1, '62.00', '2018-05-30 13:39:12'), (6906, 1, '80.00', '2018-05-30 13:39:22'), (6907, 1, '87.00', '2018-05-30 13:39:31'), (6908, 1, '72.00', '2018-05-30 13:39:40'), (6909, 1, '61.00', '2018-05-30 13:39:49'), (6910, 1, '82.00', '2018-05-30 13:39:58'), (6911, 1, '82.00', '2018-05-30 13:40:07'), (6912, 1, '92.00', '2018-05-30 13:40:16'), (6913, 1, '78.00', '2018-05-30 13:40:25'), (6914, 1, '72.00', '2018-05-30 13:40:34'), (6915, 1, '91.00', '2018-05-30 13:40:43'), (6916, 1, '81.00', '2018-05-30 13:40:52'), (6917, 1, '97.00', '2018-05-30 13:41:01'), (6918, 1, '72.00', '2018-05-30 13:41:10'), (6919, 1, '98.00', '2018-05-30 13:41:19'), (6920, 1, '87.00', '2018-05-30 13:41:28'), (6921, 1, '75.00', '2018-05-30 13:41:37'), (6922, 1, '79.00', '2018-05-30 13:41:46'), (6923, 1, '70.00', '2018-05-30 13:41:55'), (6924, 1, '89.00', '2018-05-30 13:42:04'), (6925, 1, '87.00', '2018-05-30 13:42:14'), (6926, 1, '99.00', '2018-05-30 13:42:22'), (6927, 1, '90.00', '2018-05-30 13:42:32'), (6928, 1, '61.00', '2018-05-30 13:42:41'), (6929, 1, '87.00', '2018-05-30 13:42:50'), (6930, 1, '78.00', '2018-05-30 13:42:59'), (6931, 1, '84.00', '2018-05-30 13:43:08'), (6932, 1, '77.00', '2018-05-30 13:43:16'), (6933, 1, '73.00', '2018-05-30 13:43:25'), (6934, 1, '65.00', '2018-05-30 13:43:35'), (6935, 1, '76.00', '2018-05-30 13:43:43'), (6936, 1, '98.00', '2018-05-30 13:43:52'), (6937, 1, '63.00', '2018-05-30 13:44:02'), (6938, 1, '66.00', '2018-05-30 13:44:10'), (6939, 1, '91.00', '2018-05-30 13:44:19'), (6940, 1, '60.00', '2018-05-30 13:44:28'), (6941, 1, '71.00', '2018-05-30 13:44:37'), (6942, 1, '85.00', '2018-05-30 13:44:46'), (6943, 1, '81.00', '2018-05-30 13:44:55'), (6944, 1, '94.00', '2018-05-30 13:45:04'), (6945, 1, '98.00', '2018-05-30 13:45:14'), (6946, 1, '69.00', '2018-05-30 13:45:23'), (6947, 1, '90.00', '2018-05-30 13:45:31'), (6948, 1, '90.00', '2018-05-30 13:45:40'), (6949, 1, '88.00', '2018-05-30 13:45:49'), (6950, 1, '76.00', '2018-05-30 13:45:58'), (6951, 1, '98.00', '2018-05-30 13:46:07'), (6952, 1, '83.00', '2018-05-30 13:46:16'), (6953, 1, '73.00', '2018-05-30 13:46:25'), (6954, 1, '83.00', '2018-05-30 13:46:34'), (6955, 1, '84.00', '2018-05-30 13:46:43'), (6956, 1, '68.00', '2018-05-30 13:46:52'), (6957, 1, '64.00', '2018-05-30 13:47:01'), (6958, 1, '86.00', '2018-05-30 13:47:10'), (6959, 1, '74.00', '2018-05-30 13:47:19'), (6960, 1, '94.00', '2018-05-30 13:47:28'), (6961, 1, '79.00', '2018-05-30 13:47:37'), (6962, 1, '75.00', '2018-05-30 13:47:46'), (6963, 1, '99.00', '2018-05-30 13:47:55'), (6964, 1, '62.00', '2018-05-30 13:48:04'), (6965, 1, '78.00', '2018-05-30 13:48:13'), (6966, 1, '89.00', '2018-05-30 13:48:21'), (6967, 1, '67.00', '2018-05-30 13:48:31'), (6968, 1, '83.00', '2018-05-30 13:48:40'), (6969, 1, '89.00', '2018-05-30 13:48:48'), (6970, 1, '72.00', '2018-05-30 13:48:57'), (6971, 1, '82.00', '2018-05-30 13:49:06'), (6972, 1, '66.00', '2018-05-30 13:49:15'), (6973, 1, '88.00', '2018-05-30 13:49:24'), (6974, 1, '88.00', '2018-05-30 13:49:33'), (6975, 1, '71.00', '2018-05-30 13:49:42'), (6976, 1, '98.00', '2018-05-30 13:49:51'), (6977, 1, '69.00', '2018-05-30 13:50:00'), (6978, 1, '78.00', '2018-05-30 13:50:09'), (6979, 1, '88.00', '2018-05-30 13:50:18'), (6980, 1, '71.00', '2018-05-30 13:50:27'), (6981, 1, '82.00', '2018-05-30 13:50:36'), (6982, 1, '78.00', '2018-05-30 13:50:45'), (6983, 1, '73.00', '2018-05-30 13:50:54'), (6984, 1, '92.00', '2018-05-30 13:51:02'), (6985, 1, '77.00', '2018-05-30 13:51:12'), (6986, 1, '66.00', '2018-05-30 13:51:20'), (6987, 1, '66.00', '2018-05-30 13:51:29'), (6988, 1, '66.00', '2018-05-30 13:51:38'), (6989, 1, '64.00', '2018-05-30 13:51:47'), (6990, 1, '64.00', '2018-05-30 13:51:56'), (6991, 1, '67.00', '2018-05-30 13:52:05'), (6992, 1, '76.00', '2018-05-30 13:52:14'), (6993, 1, '85.00', '2018-05-30 13:52:23'), (6994, 1, '90.00', '2018-05-30 13:52:32'), (6995, 1, '99.00', '2018-05-30 13:52:41'), (6996, 1, '92.00', '2018-05-30 13:52:50'), (6997, 1, '83.00', '2018-05-30 13:52:59'), (6998, 1, '91.00', '2018-05-30 13:53:08'), (6999, 1, '86.00', '2018-05-30 13:53:17'), (7000, 1, '77.00', '2018-05-30 13:53:26'), (7001, 1, '88.00', '2018-05-30 13:53:35'), (7002, 1, '93.00', '2018-05-30 13:53:44'), (7003, 1, '79.00', '2018-05-30 13:53:53'), (7004, 1, '93.00', '2018-05-30 13:54:02'), (7005, 1, '67.00', '2018-05-30 13:54:11'), (7006, 1, '97.00', '2018-05-30 13:54:20'), (7007, 1, '60.00', '2018-05-30 13:54:29'), (7008, 1, '99.00', '2018-05-30 13:54:38'), (7009, 1, '67.00', '2018-05-30 13:54:47'), (7010, 1, '64.00', '2018-05-30 13:54:56'), (7011, 1, '73.00', '2018-05-30 13:55:05'), (7012, 1, '70.00', '2018-05-30 13:55:14'), (7013, 1, '68.00', '2018-05-30 13:55:23'), (7014, 1, '62.00', '2018-05-30 13:55:32'), (7015, 1, '95.00', '2018-05-30 13:55:41'), (7016, 1, '85.00', '2018-05-30 13:55:50'), (7017, 1, '83.00', '2018-05-30 13:55:59'), (7018, 1, '67.00', '2018-05-30 13:56:08'), (7019, 1, '91.00', '2018-05-30 13:56:17'), (7020, 1, '97.00', '2018-05-30 13:56:26'), (7021, 1, '87.00', '2018-05-30 13:56:35'), (7022, 1, '91.00', '2018-05-30 13:56:43'), (7023, 1, '76.00', '2018-05-30 13:56:52'), (7024, 1, '67.00', '2018-05-30 13:57:01'), (7025, 1, '71.00', '2018-05-30 13:57:10'), (7026, 1, '61.00', '2018-05-30 13:57:19'), (7027, 1, '80.00', '2018-05-30 13:57:28'), (7028, 1, '61.00', '2018-05-30 13:57:37'), (7029, 1, '88.00', '2018-05-30 13:57:46'), (7030, 1, '85.00', '2018-05-30 13:57:55'), (7031, 1, '99.00', '2018-05-30 13:58:04'), (7032, 1, '78.00', '2018-05-30 13:58:13'), (7033, 1, '67.00', '2018-05-30 13:58:22'), (7034, 1, '63.00', '2018-05-30 13:58:31'), (7035, 1, '98.00', '2018-05-30 13:58:40'), (7036, 1, '71.00', '2018-05-30 13:58:49'), (7037, 1, '69.00', '2018-05-30 13:58:58'), (7038, 1, '87.00', '2018-05-30 13:59:07'), (7039, 1, '90.00', '2018-05-30 13:59:16'), (7040, 1, '69.00', '2018-05-30 13:59:25'), (7041, 1, '73.00', '2018-05-30 13:59:34'), (7042, 1, '81.00', '2018-05-30 13:59:43'), (7043, 1, '78.00', '2018-05-30 13:59:52'), (7044, 1, '96.00', '2018-05-30 14:00:01'), (7045, 1, '89.00', '2018-05-30 14:00:10'), (7046, 1, '91.00', '2018-05-30 14:00:19'), (7047, 1, '81.00', '2018-05-30 14:00:28'), (7048, 1, '80.00', '2018-05-30 14:00:37'), (7049, 1, '92.00', '2018-05-30 14:00:47'), (7050, 1, '79.00', '2018-05-30 14:00:55'), (7051, 1, '61.00', '2018-05-30 14:01:04'), (7052, 1, '69.00', '2018-05-30 14:01:13'), (7053, 1, '88.00', '2018-05-30 14:01:22'), (7054, 1, '88.00', '2018-05-30 14:01:31'), (7055, 1, '79.00', '2018-05-30 14:01:40'), (7056, 1, '92.00', '2018-05-30 14:01:49'), (7057, 1, '62.00', '2018-05-30 14:01:58'), (7058, 1, '66.00', '2018-05-30 14:02:07'), (7059, 1, '89.00', '2018-05-30 14:02:16'), (7060, 1, '84.00', '2018-05-30 14:02:25'), (7061, 1, '72.00', '2018-05-30 14:02:34'), (7062, 1, '61.00', '2018-05-30 14:02:43'), (7063, 1, '65.00', '2018-05-30 14:02:52'), (7064, 1, '94.00', '2018-05-30 14:03:01'), (7065, 1, '69.00', '2018-05-30 14:03:10'), (7066, 1, '82.00', '2018-05-30 14:03:19'), (7067, 1, '95.00', '2018-05-30 14:03:28'), (7068, 1, '81.00', '2018-05-30 14:03:37'), (7069, 1, '99.00', '2018-05-30 14:03:46'), (7070, 1, '94.00', '2018-05-30 14:03:55'), (7071, 1, '70.00', '2018-05-30 14:04:04'), (7072, 1, '88.00', '2018-05-30 14:04:13'), (7073, 1, '67.00', '2018-05-30 14:04:22'), (7074, 1, '82.00', '2018-05-30 14:04:31'), (7075, 1, '86.00', '2018-05-30 14:04:40'), (7076, 1, '62.00', '2018-05-30 14:04:49'), (7077, 1, '83.00', '2018-05-30 14:04:58'), (7078, 1, '70.00', '2018-05-30 14:05:07'), (7079, 1, '84.00', '2018-05-30 14:05:16'), (7080, 1, '63.00', '2018-05-30 14:05:25'), (7081, 1, '82.00', '2018-05-30 14:05:33'), (7082, 1, '71.00', '2018-05-30 14:05:42'), (7083, 1, '65.00', '2018-05-30 14:05:51'), (7084, 1, '82.00', '2018-05-30 14:06:00'), (7085, 1, '94.00', '2018-05-30 14:06:09'), (7086, 1, '92.00', '2018-05-30 14:06:18'), (7087, 1, '78.00', '2018-05-30 14:06:27'), (7088, 1, '73.00', '2018-05-30 14:06:36'), (7089, 1, '97.00', '2018-05-30 14:06:45'), (7090, 1, '83.00', '2018-05-30 14:06:54'), (7091, 1, '95.00', '2018-05-30 14:07:03'), (7092, 1, '62.00', '2018-05-30 14:07:12'), (7093, 1, '79.00', '2018-05-30 14:07:21'), (7094, 1, '61.00', '2018-05-30 14:07:30'), (7095, 1, '94.00', '2018-05-30 14:07:39'), (7096, 1, '87.00', '2018-05-30 14:07:48'), (7097, 1, '83.00', '2018-05-30 14:07:57'), (7098, 1, '75.00', '2018-05-30 14:08:06'), (7099, 1, '95.00', '2018-05-30 14:08:15'), (7100, 1, '89.00', '2018-05-30 14:08:24'), (7101, 1, '78.00', '2018-05-30 14:08:33'), (7102, 1, '85.00', '2018-05-30 14:08:42'), (7103, 1, '68.00', '2018-05-30 14:08:51'), (7104, 1, '65.00', '2018-05-30 14:09:00'), (7105, 1, '99.00', '2018-05-30 14:09:09'), (7106, 1, '67.00', '2018-05-30 14:09:19'), (7107, 1, '91.00', '2018-05-30 14:09:28'), (7108, 1, '74.00', '2018-05-30 14:09:37'), (7109, 1, '72.00', '2018-05-30 14:09:46'), (7110, 1, '66.00', '2018-05-30 14:09:55'), (7111, 1, '83.00', '2018-05-30 14:10:04'), (7112, 1, '80.00', '2018-05-30 14:10:13'), (7113, 1, '61.00', '2018-05-30 14:10:22'), (7114, 1, '97.00', '2018-05-30 14:10:31'), (7115, 1, '80.00', '2018-05-30 14:10:40'), (7116, 1, '99.00', '2018-05-30 14:10:49'), (7117, 1, '86.00', '2018-05-30 14:10:58'), (7118, 1, '81.00', '2018-05-30 14:11:07'), (7119, 1, '92.00', '2018-05-30 14:11:16'), (7120, 1, '94.00', '2018-05-30 14:11:25'), (7121, 1, '64.00', '2018-05-30 14:11:34'), (7122, 1, '82.00', '2018-05-30 14:11:43'), (7123, 1, '60.00', '2018-05-30 14:11:52'), (7124, 1, '63.00', '2018-05-30 14:12:00'), (7125, 1, '77.00', '2018-05-30 14:12:09'), (7126, 1, '77.00', '2018-05-30 14:12:19'), (7127, 1, '97.00', '2018-05-30 14:12:28'), (7128, 1, '84.00', '2018-05-30 14:12:36'), (7129, 1, '79.00', '2018-05-30 14:12:45'), (7130, 1, '94.00', '2018-05-30 14:12:54'), (7131, 1, '60.00', '2018-05-30 14:13:03'), (7132, 1, '76.00', '2018-05-30 14:13:12'), (7133, 1, '82.00', '2018-05-30 14:13:21'), (7134, 1, '84.00', '2018-05-30 14:13:30'), (7135, 1, '68.00', '2018-05-30 14:13:39'), (7136, 1, '82.00', '2018-05-30 14:13:48'), (7137, 1, '96.00', '2018-05-30 14:13:57'), (7138, 1, '61.00', '2018-05-30 14:14:06'), (7139, 1, '83.00', '2018-05-30 14:14:15'), (7140, 1, '77.00', '2018-05-30 14:14:24'), (7141, 1, '75.00', '2018-05-30 14:14:33'), (7142, 1, '81.00', '2018-05-30 14:14:42'), (7143, 1, '68.00', '2018-05-30 14:14:51'), (7144, 1, '69.00', '2018-05-30 14:15:00'), (7145, 1, '65.00', '2018-05-30 14:15:09'), (7146, 1, '80.00', '2018-05-30 14:15:18'), (7147, 1, '83.00', '2018-05-30 14:15:27'), (7148, 1, '64.00', '2018-05-30 14:15:36'), (7149, 1, '72.00', '2018-05-30 14:15:45'), (7150, 1, '97.00', '2018-05-30 14:15:54'), (7151, 1, '95.00', '2018-05-30 14:16:03'), (7152, 1, '72.00', '2018-05-30 14:16:12'), (7153, 1, '98.00', '2018-05-30 14:16:21'), (7154, 1, '78.00', '2018-05-30 14:16:30'), (7155, 1, '82.00', '2018-05-30 14:16:39'), (7156, 1, '70.00', '2018-05-30 14:16:48'), (7157, 1, '86.00', '2018-05-30 14:16:57'), (7158, 1, '63.00', '2018-05-30 14:17:05'), (7159, 1, '79.00', '2018-05-30 14:17:14'), (7160, 1, '91.00', '2018-05-30 14:17:23'), (7161, 1, '64.00', '2018-05-30 14:17:32'), (7162, 1, '94.00', '2018-05-30 14:17:41'), (7163, 1, '67.00', '2018-05-30 14:17:50'), (7164, 1, '85.00', '2018-05-30 14:17:59'), (7165, 1, '82.00', '2018-05-30 14:18:08'), (7166, 1, '61.00', '2018-05-30 14:18:17'), (7167, 1, '80.00', '2018-05-30 14:18:26'), (7168, 1, '78.00', '2018-05-30 14:18:35'), (7169, 1, '73.00', '2018-05-30 14:18:44'), (7170, 1, '76.00', '2018-05-30 14:18:53'), (7171, 1, '73.00', '2018-05-30 14:19:02'), (7172, 1, '87.00', '2018-05-30 14:19:11'), (7173, 1, '71.00', '2018-05-30 14:19:20'), (7174, 1, '75.00', '2018-05-30 14:19:29'), (7175, 1, '95.00', '2018-05-30 14:19:38'), (7176, 1, '77.00', '2018-05-30 14:19:47'), (7177, 1, '67.00', '2018-05-30 14:19:56'), (7178, 1, '75.00', '2018-05-30 14:20:05'), (7179, 1, '78.00', '2018-05-30 14:20:14'), (7180, 1, '69.00', '2018-05-30 14:20:22'), (7181, 1, '87.00', '2018-05-30 14:20:31'), (7182, 1, '87.00', '2018-05-30 14:20:40'), (7183, 1, '81.00', '2018-05-30 14:20:49'), (7184, 1, '75.00', '2018-05-30 14:20:58'), (7185, 1, '62.00', '2018-05-30 14:21:07'), (7186, 1, '83.00', '2018-05-30 14:21:16'), (7187, 1, '95.00', '2018-05-30 14:21:25'), (7188, 1, '63.00', '2018-05-30 14:21:34'), (7189, 1, '97.00', '2018-05-30 14:21:43'), (7190, 1, '69.00', '2018-05-30 14:21:52'), (7191, 1, '68.00', '2018-05-30 14:22:01'), (7192, 1, '76.00', '2018-05-30 14:22:10'), (7193, 1, '82.00', '2018-05-30 14:22:19'), (7194, 1, '66.00', '2018-05-30 14:22:28'), (7195, 1, '91.00', '2018-05-30 14:22:37'), (7196, 1, '84.00', '2018-05-30 14:22:46'), (7197, 1, '89.00', '2018-05-30 14:22:55'), (7198, 1, '62.00', '2018-05-30 14:23:04'), (7199, 1, '96.00', '2018-05-30 14:23:13'), (7200, 1, '76.00', '2018-05-30 14:23:21'), (7201, 1, '98.00', '2018-05-30 14:23:30'), (7202, 1, '64.00', '2018-05-30 14:23:39'), (7203, 1, '98.00', '2018-05-30 14:23:49'), (7204, 1, '70.00', '2018-05-30 14:23:58'), (7205, 1, '61.00', '2018-05-30 14:24:06'), (7206, 1, '80.00', '2018-05-30 14:24:15'), (7207, 1, '90.00', '2018-05-30 14:24:24'), (7208, 1, '64.00', '2018-05-30 14:24:33'), (7209, 1, '62.00', '2018-05-30 14:24:42'), (7210, 1, '85.00', '2018-05-30 14:24:51'), (7211, 1, '73.00', '2018-05-30 14:25:00'), (7212, 1, '75.00', '2018-05-30 14:25:09'), (7213, 1, '92.00', '2018-05-30 14:25:19'), (7214, 1, '64.00', '2018-05-30 14:25:28'), (7215, 1, '95.00', '2018-05-30 14:25:37'), (7216, 1, '71.00', '2018-05-30 14:25:46'), (7217, 1, '81.00', '2018-05-30 14:25:55'), (7218, 1, '72.00', '2018-05-30 14:26:04'), (7219, 1, '61.00', '2018-05-30 14:26:13'), (7220, 1, '67.00', '2018-05-30 14:26:22'), (7221, 1, '78.00', '2018-05-30 14:26:31'), (7222, 1, '80.00', '2018-05-30 14:26:40'), (7223, 1, '69.00', '2018-05-30 14:26:49'), (7224, 1, '99.00', '2018-05-30 14:26:58'), (7225, 1, '94.00', '2018-05-30 14:27:07'), (7226, 1, '64.00', '2018-05-30 14:27:16'), (7227, 1, '92.00', '2018-05-30 14:27:25'), (7228, 1, '68.00', '2018-05-30 14:27:33'), (7229, 1, '88.00', '2018-05-30 14:27:42'), (7230, 1, '95.00', '2018-05-30 14:27:51'), (7231, 1, '67.00', '2018-05-30 14:28:00'), (7232, 1, '88.00', '2018-05-30 14:28:09'), (7233, 1, '74.00', '2018-05-30 14:28:18'), (7234, 1, '66.00', '2018-05-30 14:28:27'), (7235, 1, '74.00', '2018-05-30 14:28:36'), (7236, 1, '78.00', '2018-05-30 14:28:45'), (7237, 1, '79.00', '2018-05-30 14:28:54'), (7238, 1, '70.00', '2018-05-30 14:29:03'), (7239, 1, '64.00', '2018-05-30 14:29:12'), (7240, 1, '74.00', '2018-05-30 14:29:21'), (7241, 1, '89.00', '2018-05-30 14:29:30'), (7242, 1, '92.00', '2018-05-30 14:29:39'), (7243, 1, '71.00', '2018-05-30 14:29:48'), (7244, 1, '72.00', '2018-05-30 14:29:57'), (7245, 1, '73.00', '2018-05-30 14:30:06'), (7246, 1, '86.00', '2018-05-30 14:30:15'), (7247, 1, '89.00', '2018-05-30 14:30:24'), (7248, 1, '81.00', '2018-05-30 14:30:33'), (7249, 1, '73.00', '2018-05-30 14:30:42'), (7250, 1, '62.00', '2018-05-30 14:30:51'), (7251, 1, '94.00', '2018-05-30 14:31:00'), (7252, 1, '65.00', '2018-05-30 14:31:09'), (7253, 1, '69.00', '2018-05-30 14:31:18'), (7254, 1, '97.00', '2018-05-30 14:31:27'), (7255, 1, '82.00', '2018-05-30 14:31:36'), (7256, 1, '75.00', '2018-05-30 14:31:44'), (7257, 1, '96.00', '2018-05-30 14:31:53'), (7258, 1, '73.00', '2018-05-30 14:32:02'), (7259, 1, '84.00', '2018-05-30 14:32:11'), (7260, 1, '99.00', '2018-05-30 14:32:20'), (7261, 1, '96.00', '2018-05-30 14:32:29'), (7262, 1, '91.00', '2018-05-30 14:32:38'), (7263, 1, '87.00', '2018-05-30 14:32:47'), (7264, 1, '66.00', '2018-05-30 14:32:56'), (7265, 1, '76.00', '2018-05-30 14:33:05'), (7266, 1, '66.00', '2018-05-30 14:33:14'), (7267, 1, '97.00', '2018-05-30 14:33:23'), (7268, 1, '85.00', '2018-05-30 14:33:32'), (7269, 1, '80.00', '2018-05-30 14:33:41'), (7270, 1, '67.00', '2018-05-30 14:33:50'), (7271, 1, '81.00', '2018-05-30 14:33:59'), (7272, 1, '91.00', '2018-05-30 14:34:08'), (7273, 1, '92.00', '2018-05-30 14:34:17'), (7274, 1, '80.00', '2018-05-30 14:34:26'), (7275, 1, '71.00', '2018-05-30 14:34:35'), (7276, 1, '89.00', '2018-05-30 14:34:44'), (7277, 1, '83.00', '2018-05-30 14:34:53'), (7278, 1, '82.00', '2018-05-30 14:35:02'), (7279, 1, '64.00', '2018-05-30 14:35:11'), (7280, 1, '72.00', '2018-05-30 14:35:20'), (7281, 1, '86.00', '2018-05-30 14:35:29'), (7282, 1, '87.00', '2018-05-30 14:35:38'), (7283, 1, '75.00', '2018-05-30 14:35:47'), (7284, 1, '81.00', '2018-05-30 14:35:56'), (7285, 1, '61.00', '2018-05-30 14:36:04'), (7286, 1, '63.00', '2018-05-30 14:36:13'), (7287, 1, '95.00', '2018-05-30 14:36:22'), (7288, 1, '68.00', '2018-05-30 14:36:31'), (7289, 1, '95.00', '2018-05-30 14:36:40'), (7290, 1, '93.00', '2018-05-30 14:36:49'), (7291, 1, '67.00', '2018-05-30 14:36:58'), (7292, 1, '94.00', '2018-05-30 14:37:07'), (7293, 1, '74.00', '2018-05-30 14:37:16'), (7294, 1, '75.00', '2018-05-30 14:37:25'), (7295, 1, '78.00', '2018-05-30 14:37:34'), (7296, 1, '94.00', '2018-05-30 14:37:43'), (7297, 1, '81.00', '2018-05-30 14:37:52'), (7298, 1, '62.00', '2018-05-30 14:38:01'), (7299, 1, '89.00', '2018-05-30 14:38:10'), (7300, 1, '64.00', '2018-05-30 14:38:19'), (7301, 1, '87.00', '2018-05-30 14:38:28'), (7302, 1, '95.00', '2018-05-30 14:38:37'), (7303, 1, '83.00', '2018-05-30 14:38:46'), (7304, 1, '82.00', '2018-05-30 14:38:55'), (7305, 1, '77.00', '2018-05-30 14:39:04'), (7306, 1, '83.00', '2018-05-30 14:39:13'), (7307, 1, '62.00', '2018-05-30 14:39:22'), (7308, 1, '82.00', '2018-05-30 14:39:31'), (7309, 1, '74.00', '2018-05-30 14:39:40'), (7310, 1, '70.00', '2018-05-30 14:39:49'), (7311, 1, '83.00', '2018-05-30 14:39:57'), (7312, 1, '71.00', '2018-05-30 14:40:06'), (7313, 1, '82.00', '2018-05-30 14:40:15'), (7314, 1, '63.00', '2018-05-30 14:40:24'), (7315, 1, '94.00', '2018-05-30 14:40:33'), (7316, 1, '96.00', '2018-05-30 14:40:42'), (7317, 1, '77.00', '2018-05-30 14:40:51'), (7318, 1, '74.00', '2018-05-30 14:41:00'), (7319, 1, '79.00', '2018-05-30 14:41:09'), (7320, 1, '88.00', '2018-05-30 14:41:18'), (7321, 1, '97.00', '2018-05-30 14:41:27'), (7322, 1, '70.00', '2018-05-30 14:41:36'), (7323, 1, '63.00', '2018-05-30 14:41:45'), (7324, 1, '64.00', '2018-05-30 14:41:54'), (7325, 1, '87.00', '2018-05-30 14:42:03'), (7326, 1, '72.00', '2018-05-30 14:42:12'), (7327, 1, '64.00', '2018-05-30 14:42:21'), (7328, 1, '80.00', '2018-05-30 14:42:30'), (7329, 1, '86.00', '2018-05-30 14:42:39'); INSERT INTO `leitura` (`idLeitura`, `idMonitor`, `nivel`, `dataHora`) VALUES (7330, 1, '65.00', '2018-05-30 14:42:48'), (7331, 1, '77.00', '2018-05-30 14:42:57'), (7332, 1, '63.00', '2018-05-30 14:43:06'), (7333, 1, '91.00', '2018-05-30 14:43:15'), (7334, 1, '66.00', '2018-05-30 14:43:24'), (7335, 1, '60.00', '2018-05-30 14:43:33'), (7336, 1, '75.00', '2018-05-30 14:43:42'), (7337, 1, '90.00', '2018-05-30 14:43:51'), (7338, 1, '98.00', '2018-05-30 14:44:00'), (7339, 1, '72.00', '2018-05-30 14:44:09'), (7340, 1, '73.00', '2018-05-30 14:44:18'), (7341, 1, '66.00', '2018-05-30 14:44:27'), (7342, 1, '89.00', '2018-05-30 14:44:36'), (7343, 1, '76.00', '2018-05-30 14:44:44'), (7344, 1, '66.00', '2018-05-30 14:44:53'), (7345, 1, '90.00', '2018-05-30 14:45:02'), (7346, 1, '66.00', '2018-05-30 14:45:11'), (7347, 1, '94.00', '2018-05-30 14:45:20'), (7348, 1, '76.00', '2018-05-30 14:45:29'), (7349, 1, '69.00', '2018-05-30 14:45:38'), (7350, 1, '66.00', '2018-05-30 14:45:47'), (7351, 1, '77.00', '2018-05-30 14:45:56'), (7352, 1, '74.00', '2018-05-30 14:46:05'), (7353, 1, '68.00', '2018-05-30 14:46:14'), (7354, 1, '70.00', '2018-05-30 14:46:23'), (7355, 1, '94.00', '2018-05-30 14:46:32'), (7356, 1, '80.00', '2018-05-30 14:46:41'), (7357, 1, '67.00', '2018-05-30 14:46:50'), (7358, 1, '60.00', '2018-05-30 14:46:59'), (7359, 1, '99.00', '2018-05-30 14:47:08'), (7360, 1, '97.00', '2018-05-30 14:47:18'), (7361, 1, '80.00', '2018-05-30 14:47:26'), (7362, 1, '70.00', '2018-05-30 14:47:35'), (7363, 1, '86.00', '2018-05-30 14:47:44'), (7364, 1, '63.00', '2018-05-30 14:47:53'), (7365, 1, '85.00', '2018-05-30 14:48:02'), (7366, 1, '74.00', '2018-05-30 14:48:11'), (7367, 1, '67.00', '2018-05-30 14:48:20'), (7368, 1, '71.00', '2018-05-30 14:48:29'), (7369, 1, '72.00', '2018-05-30 14:48:38'), (7370, 1, '95.00', '2018-05-30 14:48:47'), (7371, 1, '93.00', '2018-05-30 14:48:56'), (7372, 1, '89.00', '2018-05-30 14:49:05'), (7373, 1, '64.00', '2018-05-30 14:49:14'), (7374, 1, '89.00', '2018-05-30 14:49:23'), (7375, 1, '67.00', '2018-05-30 14:49:32'), (7376, 1, '61.00', '2018-05-30 14:49:41'), (7377, 1, '85.00', '2018-05-30 14:49:50'), (7378, 1, '68.00', '2018-05-30 14:49:59'), (7379, 1, '78.00', '2018-05-30 14:50:08'), (7380, 1, '97.00', '2018-05-30 14:50:17'), (7381, 1, '95.00', '2018-05-30 14:50:26'), (7382, 1, '90.00', '2018-05-30 14:50:35'), (7383, 1, '99.00', '2018-05-30 14:50:44'), (7384, 1, '86.00', '2018-05-30 14:50:53'), (7385, 1, '65.00', '2018-05-30 14:51:02'), (7386, 1, '70.00', '2018-05-30 14:51:11'), (7387, 1, '85.00', '2018-05-30 14:51:20'), (7388, 1, '93.00', '2018-05-30 14:51:29'), (7389, 1, '98.00', '2018-05-30 14:51:38'), (7390, 1, '96.00', '2018-05-30 14:51:47'), (7391, 1, '94.00', '2018-05-30 14:51:56'), (7392, 1, '80.00', '2018-05-30 14:52:05'), (7393, 1, '67.00', '2018-05-30 14:52:14'), (7394, 1, '90.00', '2018-05-30 14:52:22'), (7395, 1, '87.00', '2018-05-30 14:52:31'), (7396, 1, '97.00', '2018-05-30 14:52:40'), (7397, 1, '99.00', '2018-05-30 14:52:49'), (7398, 1, '86.00', '2018-05-30 14:52:58'), (7399, 1, '96.00', '2018-05-30 14:53:07'), (7400, 1, '85.00', '2018-05-30 14:53:16'), (7401, 1, '97.00', '2018-05-30 14:53:25'), (7402, 1, '86.00', '2018-05-30 14:53:34'), (7403, 1, '62.00', '2018-05-30 14:53:43'), (7404, 1, '73.00', '2018-05-30 14:53:52'), (7405, 1, '98.00', '2018-05-30 14:54:01'), (7406, 1, '60.00', '2018-05-30 14:54:10'), (7407, 1, '97.00', '2018-05-30 14:54:19'), (7408, 1, '87.00', '2018-05-30 14:54:28'), (7409, 1, '66.00', '2018-05-30 14:54:37'), (7410, 1, '76.00', '2018-05-30 14:54:46'), (7411, 1, '84.00', '2018-05-30 14:54:55'), (7412, 1, '63.00', '2018-05-30 14:55:04'), (7413, 1, '67.00', '2018-05-30 14:55:13'), (7414, 1, '68.00', '2018-05-30 14:55:22'), (7415, 1, '74.00', '2018-05-30 14:55:31'), (7416, 1, '74.00', '2018-05-30 14:55:40'), (7417, 1, '79.00', '2018-05-30 14:55:49'), (7418, 1, '85.00', '2018-05-30 14:55:58'), (7419, 1, '60.00', '2018-05-30 14:56:07'), (7420, 1, '85.00', '2018-05-30 14:56:16'), (7421, 1, '95.00', '2018-05-30 14:56:25'), (7422, 1, '61.00', '2018-05-30 14:56:34'), (7423, 1, '74.00', '2018-05-30 14:56:43'), (7424, 1, '98.00', '2018-05-30 14:56:52'), (7425, 1, '86.00', '2018-05-30 14:57:01'), (7426, 1, '99.00', '2018-05-30 14:57:10'), (7427, 1, '70.00', '2018-05-30 14:57:19'), (7428, 1, '71.00', '2018-05-30 14:57:28'), (7429, 1, '93.00', '2018-05-30 14:57:37'), (7430, 1, '97.00', '2018-05-30 14:57:46'), (7431, 1, '88.00', '2018-05-30 14:57:55'), (7432, 1, '65.00', '2018-05-30 14:58:04'), (7433, 1, '89.00', '2018-05-30 14:58:13'), (7434, 1, '84.00', '2018-05-30 14:58:22'), (7435, 1, '62.00', '2018-05-30 14:58:31'), (7436, 1, '94.00', '2018-05-30 14:58:40'), (7437, 1, '79.00', '2018-05-30 14:58:49'), (7438, 1, '78.00', '2018-05-30 14:58:58'), (7439, 1, '96.00', '2018-05-30 14:59:08'), (7440, 1, '96.00', '2018-05-30 14:59:17'), (7441, 1, '69.00', '2018-05-30 14:59:25'), (7442, 1, '69.00', '2018-05-30 14:59:35'), (7443, 1, '68.00', '2018-05-30 14:59:44'), (7444, 1, '63.00', '2018-05-30 14:59:53'), (7445, 1, '95.00', '2018-05-30 15:00:02'), (7446, 1, '93.00', '2018-05-30 15:00:11'), (7447, 1, '66.00', '2018-05-30 15:00:20'), (7448, 1, '76.00', '2018-05-30 15:00:29'), (7449, 1, '69.00', '2018-05-30 15:00:38'), (7450, 1, '74.00', '2018-05-30 15:00:47'), (7451, 1, '73.00', '2018-05-30 15:00:56'), (7452, 1, '83.00', '2018-05-30 15:01:05'), (7453, 1, '71.00', '2018-05-30 15:01:14'), (7454, 1, '95.00', '2018-05-30 15:01:23'), (7455, 1, '70.00', '2018-05-30 15:01:32'), (7456, 1, '94.00', '2018-05-30 15:01:41'), (7457, 1, '68.00', '2018-05-30 15:01:50'), (7458, 1, '87.00', '2018-05-30 15:01:59'), (7459, 1, '66.00', '2018-05-30 15:02:08'), (7460, 1, '80.00', '2018-05-30 15:02:17'), (7461, 1, '65.00', '2018-05-30 15:02:26'), (7462, 1, '83.00', '2018-05-30 15:02:35'), (7463, 1, '73.00', '2018-05-30 15:02:44'), (7464, 1, '69.00', '2018-05-30 15:02:53'), (7465, 1, '94.00', '2018-05-30 15:03:02'), (7466, 1, '88.00', '2018-05-30 15:03:11'), (7467, 1, '72.00', '2018-05-30 15:03:20'), (7468, 1, '85.00', '2018-05-30 15:03:29'), (7469, 1, '98.00', '2018-05-30 15:03:38'), (7470, 1, '89.00', '2018-05-30 15:03:47'), (7471, 1, '78.00', '2018-05-30 15:03:56'), (7472, 1, '95.00', '2018-05-30 15:04:05'), (7473, 1, '76.00', '2018-05-30 15:04:14'), (7474, 1, '96.00', '2018-05-30 15:04:23'), (7475, 1, '72.00', '2018-05-30 15:04:32'), (7476, 1, '61.00', '2018-05-30 15:04:41'), (7477, 1, '96.00', '2018-05-30 15:04:50'), (7478, 1, '75.00', '2018-05-30 15:04:59'), (7479, 1, '81.00', '2018-05-30 15:05:08'), (7480, 1, '69.00', '2018-05-30 15:05:17'), (7481, 1, '62.00', '2018-05-30 15:05:26'), (7482, 1, '89.00', '2018-05-30 15:05:34'), (7483, 1, '92.00', '2018-05-30 15:05:43'), (7484, 1, '87.00', '2018-05-30 15:05:52'), (7485, 1, '61.00', '2018-05-30 15:06:01'), (7486, 1, '68.00', '2018-05-30 15:06:10'), (7487, 1, '89.00', '2018-05-30 15:06:20'), (7488, 1, '64.00', '2018-05-30 15:06:29'), (7489, 1, '84.00', '2018-05-30 15:06:38'), (7490, 1, '92.00', '2018-05-30 15:06:47'), (7491, 1, '71.00', '2018-05-30 15:06:56'), (7492, 1, '93.00', '2018-05-30 15:07:05'), (7493, 1, '62.00', '2018-05-30 15:07:14'), (7494, 1, '61.00', '2018-05-30 15:07:23'), (7495, 1, '76.00', '2018-05-30 15:07:32'), (7496, 1, '83.00', '2018-05-30 15:07:41'), (7497, 1, '67.00', '2018-05-30 15:07:50'), (7498, 1, '90.00', '2018-05-30 15:07:59'), (7499, 1, '84.00', '2018-05-30 15:08:08'), (7500, 1, '61.00', '2018-05-30 15:08:18'), (7501, 1, '65.00', '2018-05-30 15:08:27'), (7502, 1, '96.00', '2018-05-30 15:08:36'), (7503, 1, '98.00', '2018-05-30 15:08:45'), (7504, 1, '97.00', '2018-05-30 15:08:54'), (7505, 1, '83.00', '2018-05-30 15:09:03'), (7506, 1, '90.00', '2018-05-30 15:09:12'), (7507, 1, '97.00', '2018-05-30 15:09:21'), (7508, 1, '60.00', '2018-05-30 15:09:30'), (7509, 1, '89.00', '2018-05-30 15:09:39'), (7510, 1, '63.00', '2018-05-30 15:09:48'), (7511, 1, '65.00', '2018-05-30 15:09:57'), (7512, 1, '66.00', '2018-05-30 15:10:06'), (7513, 1, '65.00', '2018-05-30 15:10:15'), (7514, 1, '79.00', '2018-05-30 15:10:24'), (7515, 1, '77.00', '2018-05-30 15:10:33'), (7516, 1, '68.00', '2018-05-30 15:10:42'), (7517, 1, '90.00', '2018-05-30 15:10:51'), (7518, 1, '64.00', '2018-05-30 15:11:00'), (7519, 1, '94.00', '2018-05-30 15:11:09'), (7520, 1, '75.00', '2018-05-30 15:11:18'), (7521, 1, '82.00', '2018-05-30 15:11:27'), (7522, 1, '68.00', '2018-05-30 15:11:36'), (7523, 1, '69.00', '2018-05-30 15:11:45'), (7524, 1, '94.00', '2018-05-30 15:11:54'), (7525, 1, '88.00', '2018-05-30 15:12:03'), (7526, 1, '81.00', '2018-05-30 15:12:12'), (7527, 1, '72.00', '2018-05-30 15:12:21'), (7528, 1, '88.00', '2018-05-30 15:12:30'), (7529, 1, '64.00', '2018-05-30 15:12:39'), (7530, 1, '61.00', '2018-05-30 15:12:48'), (7531, 1, '64.00', '2018-05-30 15:12:57'), (7532, 1, '65.00', '2018-05-30 15:13:06'), (7533, 1, '64.00', '2018-05-30 15:13:15'), (7534, 1, '97.00', '2018-05-30 15:13:24'), (7535, 1, '82.00', '2018-05-30 15:13:33'), (7536, 1, '81.00', '2018-05-30 15:13:42'), (7537, 1, '93.00', '2018-05-30 15:13:50'), (7538, 1, '60.00', '2018-05-30 15:13:59'), (7539, 1, '99.00', '2018-05-30 15:14:08'), (7540, 1, '83.00', '2018-05-30 15:14:17'), (7541, 1, '69.00', '2018-05-30 15:14:26'), (7542, 1, '70.00', '2018-05-30 15:14:35'), (7543, 1, '68.00', '2018-05-30 15:14:44'), (7544, 1, '61.00', '2018-05-30 15:14:53'), (7545, 1, '82.00', '2018-05-30 15:15:02'), (7546, 1, '76.00', '2018-05-30 15:15:11'), (7547, 1, '80.00', '2018-05-30 15:15:20'), (7548, 1, '98.00', '2018-05-30 15:15:29'), (7549, 1, '97.00', '2018-05-30 15:15:38'), (7550, 1, '78.00', '2018-05-30 15:15:47'), (7551, 1, '71.00', '2018-05-30 15:15:56'), (7552, 1, '93.00', '2018-05-30 15:16:05'), (7553, 1, '64.00', '2018-05-30 15:16:14'), (7554, 1, '63.00', '2018-05-30 15:16:23'), (7555, 1, '84.00', '2018-05-30 15:16:32'), (7556, 1, '88.00', '2018-05-30 15:16:40'), (7557, 1, '68.00', '2018-05-30 15:16:49'), (7558, 1, '93.00', '2018-05-30 15:16:58'), (7559, 1, '84.00', '2018-05-30 15:17:07'), (7560, 1, '83.00', '2018-05-30 15:17:16'), (7561, 1, '72.00', '2018-05-30 15:17:25'), (7562, 1, '73.00', '2018-05-30 15:17:34'), (7563, 1, '64.00', '2018-05-30 15:17:43'), (7564, 1, '91.00', '2018-05-30 15:17:52'), (7565, 1, '79.00', '2018-05-30 15:18:01'), (7566, 1, '75.00', '2018-05-30 15:18:10'), (7567, 1, '87.00', '2018-05-30 15:18:19'), (7568, 1, '84.00', '2018-05-30 15:18:28'), (7569, 1, '79.00', '2018-05-30 15:18:38'), (7570, 1, '92.00', '2018-05-30 15:18:46'), (7571, 1, '91.00', '2018-05-30 15:18:55'), (7572, 1, '90.00', '2018-05-30 15:19:04'), (7573, 1, '76.00', '2018-05-30 15:19:13'), (7574, 1, '70.00', '2018-05-30 15:19:22'), (7575, 1, '93.00', '2018-05-30 15:19:31'), (7576, 1, '97.00', '2018-05-30 15:19:40'), (7577, 1, '96.00', '2018-05-30 15:19:49'), (7578, 1, '68.00', '2018-05-30 15:19:58'), (7579, 1, '82.00', '2018-05-30 15:20:07'), (7580, 1, '61.00', '2018-05-30 15:20:16'), (7581, 1, '79.00', '2018-05-30 15:20:25'), (7582, 1, '61.00', '2018-05-30 15:20:34'), (7583, 1, '66.00', '2018-05-30 15:20:43'), (7584, 1, '79.00', '2018-05-30 15:20:52'), (7585, 1, '90.00', '2018-05-30 15:21:01'), (7586, 1, '83.00', '2018-05-30 15:21:10'), (7587, 1, '78.00', '2018-05-30 15:21:19'), (7588, 1, '61.00', '2018-05-30 15:21:28'), (7589, 1, '70.00', '2018-05-30 15:21:37'), (7590, 1, '83.00', '2018-05-30 15:21:46'), (7591, 1, '61.00', '2018-05-30 15:21:55'), (7592, 1, '60.00', '2018-05-30 15:22:04'), (7593, 1, '75.00', '2018-05-30 15:22:13'), (7594, 1, '97.00', '2018-05-30 15:22:22'), (7595, 1, '61.00', '2018-05-30 15:22:31'), (7596, 1, '98.00', '2018-05-30 15:22:40'), (7597, 1, '97.00', '2018-05-30 15:22:49'), (7598, 1, '79.00', '2018-05-30 15:22:58'), (7599, 1, '93.00', '2018-05-30 15:23:06'), (7600, 1, '86.00', '2018-05-30 15:23:15'), (7601, 1, '86.00', '2018-05-30 15:23:25'), (7602, 1, '85.00', '2018-05-30 15:23:34'), (7603, 1, '84.00', '2018-05-30 15:23:42'), (7604, 1, '98.00', '2018-05-30 15:23:51'), (7605, 1, '60.00', '2018-05-30 15:24:01'), (7606, 1, '76.00', '2018-05-30 15:24:10'), (7607, 1, '90.00', '2018-05-30 15:24:19'), (7608, 1, '95.00', '2018-05-30 15:24:28'), (7609, 1, '96.00', '2018-05-30 15:24:37'), (7610, 1, '88.00', '2018-05-30 15:24:46'), (7611, 1, '92.00', '2018-05-30 15:24:55'), (7612, 1, '99.00', '2018-05-30 15:25:03'), (7613, 1, '71.00', '2018-05-30 15:25:12'), (7614, 1, '80.00', '2018-05-30 15:25:21'), (7615, 1, '61.00', '2018-05-30 15:25:30'), (7616, 1, '76.00', '2018-05-30 15:25:39'), (7617, 1, '76.00', '2018-05-30 15:25:49'), (7618, 1, '91.00', '2018-05-30 15:25:58'), (7619, 1, '89.00', '2018-05-30 15:26:07'), (7620, 1, '97.00', '2018-05-30 15:26:16'), (7621, 1, '93.00', '2018-05-30 15:26:25'), (7622, 1, '90.00', '2018-05-30 15:26:34'), (7623, 1, '94.00', '2018-05-30 15:26:43'), (7624, 1, '96.00', '2018-05-30 15:26:52'), (7625, 1, '87.00', '2018-05-30 15:27:01'), (7626, 1, '67.00', '2018-05-30 15:27:10'), (7627, 1, '71.00', '2018-05-30 15:27:19'), (7628, 1, '97.00', '2018-05-30 15:27:28'), (7629, 1, '70.00', '2018-05-30 15:27:37'), (7630, 1, '96.00', '2018-05-30 15:27:46'), (7631, 1, '76.00', '2018-05-30 15:27:55'), (7632, 1, '93.00', '2018-05-30 15:28:04'), (7633, 1, '91.00', '2018-05-30 15:28:13'), (7634, 1, '72.00', '2018-05-30 15:28:21'), (7635, 1, '93.00', '2018-05-30 15:28:31'), (7636, 1, '68.00', '2018-05-30 15:28:39'), (7637, 1, '84.00', '2018-05-30 15:28:48'), (7638, 1, '82.00', '2018-05-30 15:28:57'), (7639, 1, '91.00', '2018-05-30 15:29:06'), (7640, 1, '89.00', '2018-05-30 15:29:15'), (7641, 1, '60.00', '2018-05-30 15:29:24'), (7642, 1, '61.00', '2018-05-30 15:29:33'), (7643, 1, '68.00', '2018-05-30 15:29:42'), (7644, 1, '80.00', '2018-05-30 15:29:51'), (7645, 1, '63.00', '2018-05-30 15:30:00'), (7646, 1, '85.00', '2018-05-30 15:30:09'), (7647, 1, '76.00', '2018-05-30 15:30:18'), (7648, 1, '91.00', '2018-05-30 15:30:27'), (7649, 1, '82.00', '2018-05-30 15:30:36'), (7650, 1, '61.00', '2018-05-30 15:30:45'), (7651, 1, '71.00', '2018-05-30 15:30:54'), (7652, 1, '74.00', '2018-05-30 15:31:03'), (7653, 1, '63.00', '2018-05-30 15:31:12'), (7654, 1, '82.00', '2018-05-30 15:31:21'), (7655, 1, '99.00', '2018-05-30 15:31:30'), (7656, 1, '83.00', '2018-05-30 15:31:39'), (7657, 1, '68.00', '2018-05-30 15:31:48'), (7658, 1, '69.00', '2018-05-30 15:31:57'), (7659, 1, '90.00', '2018-05-30 15:32:06'), (7660, 1, '97.00', '2018-05-30 15:32:15'), (7661, 1, '66.00', '2018-05-30 15:32:24'), (7662, 1, '93.00', '2018-05-30 15:32:33'), (7663, 1, '80.00', '2018-05-30 15:32:42'), (7664, 1, '62.00', '2018-05-30 15:32:51'), (7665, 1, '73.00', '2018-05-30 15:33:00'), (7666, 1, '78.00', '2018-05-30 15:33:09'), (7667, 1, '88.00', '2018-05-30 15:33:18'), (7668, 1, '67.00', '2018-05-30 15:33:27'), (7669, 1, '88.00', '2018-05-30 15:33:36'), (7670, 1, '99.00', '2018-05-30 15:33:45'), (7671, 1, '95.00', '2018-05-30 15:33:54'), (7672, 1, '74.00', '2018-05-30 15:34:03'), (7673, 1, '89.00', '2018-05-30 15:34:12'), (7674, 1, '63.00', '2018-05-30 15:34:21'), (7675, 1, '97.00', '2018-05-30 15:34:30'), (7676, 1, '79.00', '2018-05-30 15:34:39'), (7677, 1, '72.00', '2018-05-30 15:34:48'), (7678, 1, '66.00', '2018-05-30 15:34:57'), (7679, 1, '95.00', '2018-05-30 15:35:06'), (7680, 1, '83.00', '2018-05-30 15:35:15'), (7681, 1, '95.00', '2018-05-30 15:35:24'), (7682, 1, '84.00', '2018-05-30 15:35:33'), (7683, 1, '60.00', '2018-05-30 15:35:42'), (7684, 1, '88.00', '2018-05-30 15:35:51'), (7685, 1, '73.00', '2018-05-30 15:36:00'), (7686, 1, '77.00', '2018-05-30 15:36:09'), (7687, 1, '73.00', '2018-05-30 15:36:18'), (7688, 1, '84.00', '2018-05-30 15:36:27'), (7689, 1, '87.00', '2018-05-30 15:36:36'), (7690, 1, '78.00', '2018-05-30 15:36:45'), (7691, 1, '66.00', '2018-05-30 15:36:54'), (7692, 1, '92.00', '2018-05-30 15:37:03'), (7693, 1, '96.00', '2018-05-30 15:37:13'), (7694, 1, '77.00', '2018-05-30 15:37:21'), (7695, 1, '67.00', '2018-05-30 15:37:30'), (7696, 1, '92.00', '2018-05-30 15:37:40'), (7697, 1, '90.00', '2018-05-30 15:37:49'), (7698, 1, '82.00', '2018-05-30 15:37:57'), (7699, 1, '75.00', '2018-05-30 15:38:07'), (7700, 1, '72.00', '2018-05-30 15:38:15'), (7701, 1, '91.00', '2018-05-30 15:38:24'), (7702, 1, '67.00', '2018-05-30 15:38:33'), (7703, 1, '74.00', '2018-05-30 15:38:42'), (7704, 1, '75.00', '2018-05-30 15:38:51'), (7705, 1, '97.00', '2018-05-30 15:39:00'), (7706, 1, '71.00', '2018-05-30 15:39:09'), (7707, 1, '79.00', '2018-05-30 15:39:18'), (7708, 1, '90.00', '2018-05-30 15:39:27'), (7709, 1, '74.00', '2018-05-30 15:39:36'), (7710, 1, '75.00', '2018-05-30 15:39:45'), (7711, 1, '82.00', '2018-05-30 15:39:54'), (7712, 1, '69.00', '2018-05-30 15:40:03'), (7713, 1, '84.00', '2018-05-30 15:40:12'), (7714, 1, '68.00', '2018-05-30 15:40:21'), (7715, 1, '99.00', '2018-05-30 15:40:30'), (7716, 1, '83.00', '2018-05-30 15:40:39'), (7717, 1, '88.00', '2018-05-30 15:40:48'), (7718, 1, '78.00', '2018-05-30 15:40:57'), (7719, 1, '74.00', '2018-05-30 15:41:06'), (7720, 1, '73.00', '2018-05-30 15:41:15'), (7721, 1, '89.00', '2018-05-30 15:41:24'), (7722, 1, '75.00', '2018-05-30 15:41:33'), (7723, 1, '85.00', '2018-05-30 15:41:42'), (7724, 1, '88.00', '2018-05-30 15:41:51'), (7725, 1, '87.00', '2018-05-30 15:42:00'), (7726, 1, '81.00', '2018-05-30 15:42:09'), (7727, 1, '76.00', '2018-05-30 15:42:18'), (7728, 1, '65.00', '2018-05-30 15:42:27'), (7729, 1, '80.00', '2018-05-30 15:42:36'), (7730, 1, '91.00', '2018-05-30 15:42:45'), (7731, 1, '66.00', '2018-05-30 15:42:54'), (7732, 1, '85.00', '2018-05-30 15:43:03'), (7733, 1, '79.00', '2018-05-30 15:43:12'), (7734, 1, '74.00', '2018-05-30 15:43:22'), (7735, 1, '90.00', '2018-05-30 15:43:31'), (7736, 1, '98.00', '2018-05-30 15:43:40'), (7737, 1, '77.00', '2018-05-30 15:43:49'), (7738, 1, '81.00', '2018-05-30 15:43:57'), (7739, 1, '88.00', '2018-05-30 15:44:06'), (7740, 1, '91.00', '2018-05-30 15:44:15'), (7741, 1, '66.00', '2018-05-30 15:44:24'), (7742, 1, '78.00', '2018-05-30 15:44:33'), (7743, 1, '73.00', '2018-05-30 15:44:42'), (7744, 1, '72.00', '2018-05-30 15:44:51'), (7745, 1, '65.00', '2018-05-30 15:45:00'), (7746, 1, '64.00', '2018-05-30 15:45:09'), (7747, 1, '97.00', '2018-05-30 15:45:18'), (7748, 1, '82.00', '2018-05-30 15:45:27'), (7749, 1, '80.00', '2018-05-30 15:45:36'), (7750, 1, '95.00', '2018-05-30 15:45:45'), (7751, 1, '75.00', '2018-05-30 15:45:54'), (7752, 1, '63.00', '2018-05-30 15:46:03'), (7753, 1, '69.00', '2018-05-30 15:46:12'), (7754, 1, '61.00', '2018-05-30 15:46:21'), (7755, 1, '69.00', '2018-05-30 15:46:30'), (7756, 1, '72.00', '2018-05-30 15:46:39'), (7757, 1, '84.00', '2018-05-30 15:46:48'), (7758, 1, '65.00', '2018-05-30 15:46:57'), (7759, 1, '60.00', '2018-05-30 15:47:06'), (7760, 1, '91.00', '2018-05-30 15:47:15'), (7761, 1, '81.00', '2018-05-30 15:47:24'), (7762, 1, '94.00', '2018-05-30 15:47:33'), (7763, 1, '77.00', '2018-05-30 15:47:42'), (7764, 1, '73.00', '2018-05-30 15:47:51'), (7765, 1, '72.00', '2018-05-30 15:48:00'), (7766, 1, '61.00', '2018-05-30 15:48:09'), (7767, 1, '88.00', '2018-05-30 15:48:17'), (7768, 1, '88.00', '2018-05-30 15:48:26'), (7769, 1, '61.00', '2018-05-30 15:48:35'), (7770, 1, '60.00', '2018-05-30 15:48:44'), (7771, 1, '82.00', '2018-05-30 15:48:53'), (7772, 1, '66.00', '2018-05-30 15:49:02'), (7773, 1, '86.00', '2018-05-30 15:49:11'), (7774, 1, '79.00', '2018-05-30 15:49:20'), (7775, 1, '97.00', '2018-05-30 15:49:29'), (7776, 1, '90.00', '2018-05-30 15:49:38'), (7777, 1, '94.00', '2018-05-30 15:49:47'), (7778, 1, '80.00', '2018-05-30 15:49:56'), (7779, 1, '68.00', '2018-05-30 15:50:05'), (7780, 1, '81.00', '2018-05-30 15:50:14'), (7781, 1, '92.00', '2018-05-30 15:50:23'), (7782, 1, '71.00', '2018-05-30 15:50:32'), (7783, 1, '73.00', '2018-05-30 15:50:41'), (7784, 1, '99.00', '2018-05-30 15:50:50'), (7785, 1, '99.00', '2018-05-30 15:50:59'), (7786, 1, '78.00', '2018-05-30 15:51:08'), (7787, 1, '73.00', '2018-05-30 15:51:17'), (7788, 1, '84.00', '2018-05-30 15:51:26'), (7789, 1, '79.00', '2018-05-30 15:51:35'), (7790, 1, '83.00', '2018-05-30 15:51:44'), (7791, 1, '80.00', '2018-05-30 15:51:53'), (7792, 1, '77.00', '2018-05-30 15:52:02'), (7793, 1, '68.00', '2018-05-30 15:52:11'), (7794, 1, '83.00', '2018-05-30 15:52:20'), (7795, 1, '74.00', '2018-05-30 15:52:29'), (7796, 1, '80.00', '2018-05-30 15:52:38'), (7797, 1, '94.00', '2018-05-30 15:52:47'), (7798, 1, '88.00', '2018-05-30 15:52:56'), (7799, 1, '76.00', '2018-05-30 15:53:05'), (7800, 1, '92.00', '2018-05-30 15:53:14'), (7801, 1, '67.00', '2018-05-30 15:53:23'), (7802, 1, '77.00', '2018-05-30 15:53:32'), (7803, 1, '60.00', '2018-05-30 15:53:41'), (7804, 1, '71.00', '2018-05-30 15:53:50'), (7805, 1, '80.00', '2018-05-30 15:53:59'), (7806, 1, '95.00', '2018-05-30 15:54:08'), (7807, 1, '85.00', '2018-05-30 15:54:17'), (7808, 1, '61.00', '2018-05-30 15:54:26'), (7809, 1, '79.00', '2018-05-30 15:54:35'), (7810, 1, '92.00', '2018-05-30 15:54:44'), (7811, 1, '88.00', '2018-05-30 15:54:53'), (7812, 1, '93.00', '2018-05-30 15:55:02'), (7813, 1, '60.00', '2018-05-30 15:55:11'), (7814, 1, '62.00', '2018-05-30 15:55:20'), (7815, 1, '79.00', '2018-05-30 15:55:29'), (7816, 1, '62.00', '2018-05-30 15:55:38'), (7817, 1, '81.00', '2018-05-30 15:55:47'), (7818, 1, '83.00', '2018-05-30 15:55:56'), (7819, 1, '92.00', '2018-05-30 15:56:05'), (7820, 1, '79.00', '2018-05-30 15:56:14'), (7821, 1, '64.00', '2018-05-30 15:56:23'), (7822, 1, '76.00', '2018-05-30 15:56:31'), (7823, 1, '81.00', '2018-05-30 15:56:40'), (7824, 1, '73.00', '2018-05-30 15:56:49'), (7825, 1, '95.00', '2018-05-30 15:56:58'), (7826, 1, '76.00', '2018-05-30 15:57:07'), (7827, 1, '87.00', '2018-05-30 15:57:16'), (7828, 1, '93.00', '2018-05-30 15:57:25'), (7829, 1, '98.00', '2018-05-30 15:57:34'), (7830, 1, '87.00', '2018-05-30 15:57:43'), (7831, 1, '66.00', '2018-05-30 15:57:52'), (7832, 1, '78.00', '2018-05-30 15:58:02'), (7833, 1, '71.00', '2018-05-30 15:58:11'), (7834, 1, '91.00', '2018-05-30 15:58:20'), (7835, 1, '64.00', '2018-05-30 15:58:29'), (7836, 1, '98.00', '2018-05-30 15:58:38'), (7837, 1, '80.00', '2018-05-30 15:58:47'), (7838, 1, '62.00', '2018-05-30 15:58:56'), (7839, 1, '67.00', '2018-05-30 15:59:05'), (7840, 1, '67.00', '2018-05-30 15:59:14'), (7841, 1, '64.00', '2018-05-30 15:59:23'), (7842, 1, '80.00', '2018-05-30 15:59:32'), (7843, 1, '62.00', '2018-05-30 15:59:41'), (7844, 1, '71.00', '2018-05-30 15:59:50'), (7845, 1, '72.00', '2018-05-30 15:59:59'), (7846, 1, '65.00', '2018-05-30 16:00:07'), (7847, 1, '76.00', '2018-05-30 16:00:17'), (7848, 1, '86.00', '2018-05-30 16:00:26'), (7849, 1, '70.00', '2018-05-30 16:00:35'), (7850, 1, '69.00', '2018-05-30 16:00:44'), (7851, 1, '74.00', '2018-05-30 16:00:53'), (7852, 1, '61.00', '2018-05-30 16:01:02'), (7853, 1, '99.00', '2018-05-30 16:01:11'), (7854, 1, '61.00', '2018-05-30 16:01:19'), (7855, 1, '93.00', '2018-05-30 16:01:29'), (7856, 1, '89.00', '2018-05-30 16:01:38'), (7857, 1, '88.00', '2018-05-30 16:01:47'), (7858, 1, '80.00', '2018-05-30 16:01:57'), (7859, 1, '98.00', '2018-05-30 16:02:06'), (7860, 1, '79.00', '2018-05-30 16:02:15'), (7861, 1, '73.00', '2018-05-30 16:02:24'), (7862, 1, '75.00', '2018-05-30 16:02:34'), (7863, 1, '78.00', '2018-05-30 16:02:43'), (7864, 1, '74.00', '2018-05-30 16:02:52'), (7865, 1, '61.00', '2018-05-30 16:03:00'), (7866, 1, '93.00', '2018-05-30 16:03:09'), (7867, 1, '81.00', '2018-05-30 16:03:18'), (7868, 1, '78.00', '2018-05-30 16:03:27'), (7869, 1, '97.00', '2018-05-30 16:03:36'), (7870, 1, '67.00', '2018-05-30 16:03:45'), (7871, 1, '68.00', '2018-05-30 16:03:54'), (7872, 1, '92.00', '2018-05-30 16:04:03'), (7873, 1, '84.00', '2018-05-30 16:04:12'), (7874, 1, '73.00', '2018-05-30 16:04:22'), (7875, 1, '98.00', '2018-05-30 16:04:31'), (7876, 1, '63.00', '2018-05-30 16:04:40'), (7877, 1, '60.00', '2018-05-30 16:04:49'), (7878, 1, '85.00', '2018-05-30 16:04:58'), (7879, 1, '78.00', '2018-05-30 16:05:07'), (7880, 1, '91.00', '2018-05-30 16:05:16'), (7881, 1, '79.00', '2018-05-30 16:05:26'), (7882, 1, '69.00', '2018-05-30 16:05:35'), (7883, 1, '98.00', '2018-05-30 16:05:44'), (7884, 1, '61.00', '2018-05-30 16:05:53'), (7885, 1, '93.00', '2018-05-30 16:06:02'), (7886, 1, '95.00', '2018-05-30 16:06:11'), (7887, 1, '84.00', '2018-05-30 16:06:20'), (7888, 1, '97.00', '2018-05-30 16:06:29'), (7889, 1, '63.00', '2018-05-30 16:06:38'), (7890, 1, '65.00', '2018-05-30 16:06:47'), (7891, 1, '69.00', '2018-05-30 16:06:56'), (7892, 1, '62.00', '2018-05-30 16:07:05'), (7893, 1, '62.00', '2018-05-30 16:07:14'), (7894, 1, '60.00', '2018-05-30 16:07:23'), (7895, 1, '73.00', '2018-05-30 16:07:32'), (7896, 1, '91.00', '2018-05-30 16:07:41'), (7897, 1, '74.00', '2018-05-30 16:07:50'), (7898, 1, '81.00', '2018-05-30 16:07:59'), (7899, 1, '79.00', '2018-05-30 16:08:08'), (7900, 1, '97.00', '2018-05-30 16:08:17'), (7901, 1, '65.00', '2018-05-30 16:08:26'), (7902, 1, '85.00', '2018-05-30 16:08:35'), (7903, 1, '76.00', '2018-05-30 16:08:44'), (7904, 1, '66.00', '2018-05-30 16:08:53'), (7905, 1, '98.00', '2018-05-30 16:09:02'), (7906, 1, '74.00', '2018-05-30 16:09:11'), (7907, 1, '62.00', '2018-05-30 16:09:20'), (7908, 1, '75.00', '2018-05-30 16:09:29'), (7909, 1, '62.00', '2018-05-30 16:09:38'), (7910, 1, '99.00', '2018-05-30 16:09:48'), (7911, 1, '93.00', '2018-05-30 16:09:57'), (7912, 1, '77.00', '2018-05-30 16:10:06'), (7913, 1, '68.00', '2018-05-30 16:10:15'), (7914, 1, '96.00', '2018-05-30 16:10:24'), (7915, 1, '94.00', '2018-05-30 16:10:33'), (7916, 1, '60.00', '2018-05-30 16:10:42'), (7917, 1, '72.00', '2018-05-30 16:10:51'), (7918, 1, '70.00', '2018-05-30 16:11:00'), (7919, 1, '85.00', '2018-05-30 16:11:09'), (7920, 1, '98.00', '2018-05-30 16:11:18'), (7921, 1, '68.00', '2018-05-30 16:11:27'), (7922, 1, '60.00', '2018-05-30 16:11:36'), (7923, 1, '76.00', '2018-05-30 16:11:45'), (7924, 1, '89.00', '2018-05-30 16:11:54'), (7925, 1, '98.00', '2018-05-30 16:12:04'), (7926, 1, '69.00', '2018-05-30 16:12:14'), (7927, 1, '89.00', '2018-05-30 16:12:25'), (7928, 1, '61.00', '2018-05-30 16:12:36'), (7929, 1, '70.00', '2018-05-30 16:12:45'), (7930, 1, '88.00', '2018-05-30 16:12:54'), (7931, 1, '98.00', '2018-05-30 16:13:03'), (7932, 1, '76.00', '2018-05-30 16:13:12'), (7933, 1, '94.00', '2018-05-30 16:13:21'), (7934, 1, '89.00', '2018-05-30 16:13:30'), (7935, 1, '78.00', '2018-05-30 16:13:39'), (7936, 1, '78.00', '2018-05-30 16:13:48'), (7937, 1, '76.00', '2018-05-30 16:13:57'), (7938, 1, '69.00', '2018-05-30 16:14:06'), (7939, 1, '82.00', '2018-05-30 16:14:16'), (7940, 1, '87.00', '2018-05-30 16:14:25'), (7941, 1, '99.00', '2018-05-30 16:14:34'), (7942, 1, '74.00', '2018-05-30 16:14:43'), (7943, 1, '71.00', '2018-05-30 16:14:52'), (7944, 1, '94.00', '2018-05-30 16:15:02'), (7945, 1, '66.00', '2018-05-30 16:15:11'), (7946, 1, '69.00', '2018-05-30 16:15:20'), (7947, 1, '62.00', '2018-05-30 16:15:29'), (7948, 1, '85.00', '2018-05-30 16:15:38'), (7949, 1, '93.00', '2018-05-30 16:15:47'), (7950, 1, '70.00', '2018-05-30 16:15:56'), (7951, 1, '75.00', '2018-05-30 16:16:05'), (7952, 1, '74.00', '2018-05-30 16:16:14'), (7953, 1, '67.00', '2018-05-30 16:16:25'), (7954, 1, '66.00', '2018-05-30 16:16:35'), (7955, 1, '94.00', '2018-05-30 16:16:45'), (7956, 1, '98.00', '2018-05-31 08:46:31'), (7957, 1, '75.00', '2018-05-31 08:46:40'), (7958, 1, '68.00', '2018-05-31 08:46:49'), (7959, 1, '65.00', '2018-05-31 08:46:58'), (7960, 1, '61.00', '2018-05-31 08:47:07'), (7961, 1, '98.00', '2018-05-31 08:47:16'), (7962, 1, '82.00', '2018-05-31 08:47:25'), (7963, 1, '65.00', '2018-05-31 08:47:34'), (7964, 1, '64.00', '2018-05-31 08:47:43'), (7965, 1, '92.00', '2018-05-31 08:47:52'), (7966, 1, '88.00', '2018-05-31 08:48:01'), (7967, 1, '78.00', '2018-05-31 08:48:10'), (7968, 1, '72.00', '2018-05-31 08:48:19'), (7969, 1, '64.00', '2018-05-31 08:48:28'), (7970, 1, '84.00', '2018-05-31 08:48:37'), (7971, 1, '76.00', '2018-05-31 08:48:46'), (7972, 1, '72.00', '2018-05-31 08:48:55'), (7973, 1, '83.00', '2018-05-31 08:49:04'), (7974, 1, '75.00', '2018-05-31 08:49:13'), (7975, 1, '81.00', '2018-05-31 08:49:22'), (7976, 1, '68.00', '2018-05-31 08:49:31'), (7977, 1, '72.00', '2018-05-31 08:49:40'), (7978, 1, '76.00', '2018-05-31 08:49:56'), (7979, 1, '81.00', '2018-05-31 08:50:05'), (7980, 1, '78.00', '2018-05-31 08:50:14'), (7981, 1, '66.00', '2018-05-31 08:50:23'), (7982, 1, '78.00', '2018-05-31 08:50:32'), (7983, 1, '69.00', '2018-05-31 08:50:41'), (7984, 1, '89.00', '2018-05-31 08:50:50'), (7985, 1, '65.00', '2018-05-31 08:50:59'), (7986, 1, '72.00', '2018-05-31 08:51:08'), (7987, 1, '65.00', '2018-05-31 08:51:17'), (7988, 1, '61.00', '2018-05-31 08:51:43'), (7989, 1, '68.00', '2018-05-31 08:51:52'), (7990, 1, '80.00', '2018-05-31 08:52:02'), (7991, 1, '78.00', '2018-05-31 08:52:11'), (7992, 1, '62.00', '2018-05-31 08:52:20'), (7993, 1, '98.00', '2018-05-31 08:52:29'), (7994, 1, '68.00', '2018-05-31 08:52:38'), (7995, 1, '70.00', '2018-05-31 08:52:47'), (7996, 1, '96.00', '2018-05-31 08:52:56'), (7997, 1, '98.00', '2018-05-31 08:53:05'), (7998, 1, '63.00', '2018-05-31 08:53:14'), (7999, 1, '68.00', '2018-05-31 08:53:22'), (8000, 1, '88.00', '2018-05-31 08:53:31'), (8001, 1, '91.00', '2018-05-31 08:53:40'), (8002, 1, '67.00', '2018-05-31 08:53:50'), (8003, 1, '77.00', '2018-05-31 08:53:59'), (8004, 1, '61.00', '2018-05-31 08:54:08'), (8005, 1, '71.00', '2018-05-31 08:54:17'), (8006, 1, '91.00', '2018-05-31 08:54:26'), (8007, 1, '99.00', '2018-05-31 08:54:35'), (8008, 1, '88.00', '2018-05-31 08:58:36'), (8009, 1, '84.00', '2018-05-31 08:58:45'), (8010, 1, '84.00', '2018-05-31 08:58:54'), (8011, 1, '75.00', '2018-05-31 08:59:03'), (8012, 1, '88.00', '2018-05-31 08:59:12'), (8013, 1, '69.00', '2018-05-31 08:59:21'), (8014, 1, '71.00', '2018-05-31 08:59:30'), (8015, 1, '79.00', '2018-05-31 08:59:39'), (8016, 1, '60.00', '2018-05-31 08:59:48'), (8017, 1, '96.00', '2018-05-31 08:59:57'), (8018, 1, '84.00', '2018-05-31 09:00:06'), (8019, 1, '96.00', '2018-05-31 09:00:15'), (8020, 1, '85.00', '2018-05-31 09:00:24'), (8021, 1, '61.00', '2018-05-31 09:00:33'), (8022, 1, '99.00', '2018-05-31 09:00:42'), (8023, 1, '88.00', '2018-05-31 09:00:51'), (8024, 1, '62.00', '2018-05-31 09:01:00'), (8025, 1, '95.00', '2018-05-31 09:01:09'), (8026, 1, '86.00', '2018-05-31 09:01:18'), (8027, 1, '98.00', '2018-05-31 09:01:27'), (8028, 1, '62.00', '2018-05-31 09:01:36'), (8029, 1, '82.00', '2018-05-31 09:01:45'), (8030, 1, '83.00', '2018-05-31 09:01:54'), (8031, 1, '79.00', '2018-05-31 09:02:03'), (8032, 1, '69.00', '2018-05-31 09:02:11'), (8033, 1, '98.00', '2018-05-31 09:02:20'), (8034, 1, '80.00', '2018-05-31 09:02:29'), (8035, 1, '61.00', '2018-05-31 09:02:38'), (8036, 1, '71.00', '2018-05-31 09:02:47'), (8037, 1, '87.00', '2018-05-31 09:02:56'), (8038, 1, '80.00', '2018-05-31 09:03:06'), (8039, 1, '74.00', '2018-05-31 09:03:15'), (8040, 1, '64.00', '2018-05-31 09:03:24'), (8041, 1, '63.00', '2018-05-31 09:03:33'), (8042, 1, '60.00', '2018-05-31 09:03:42'), (8043, 1, '65.00', '2018-05-31 09:03:51'), (8044, 1, '84.00', '2018-05-31 09:04:00'), (8045, 1, '92.00', '2018-05-31 09:04:09'), (8046, 1, '77.00', '2018-05-31 09:04:18'), (8047, 1, '68.00', '2018-05-31 09:04:27'), (8048, 1, '77.00', '2018-05-31 09:04:36'), (8049, 1, '69.00', '2018-05-31 09:04:46'), (8050, 1, '97.00', '2018-05-31 09:04:55'), (8051, 1, '92.00', '2018-05-31 09:06:34'), (8052, 1, '97.00', '2018-05-31 09:06:43'), (8053, 1, '69.00', '2018-05-31 09:06:52'), (8054, 1, '99.00', '2018-05-31 09:07:01'), (8055, 1, '81.00', '2018-05-31 09:07:10'), (8056, 1, '88.00', '2018-05-31 09:07:10'), (8057, 1, '73.00', '2018-05-31 09:07:19'), (8058, 1, '66.00', '2018-05-31 09:07:28'), (8059, 1, '77.00', '2018-05-31 09:07:37'), (8060, 1, '90.00', '2018-05-31 09:07:46'), (8061, 1, '85.00', '2018-05-31 09:07:55'), (8062, 1, '67.00', '2018-05-31 09:08:04'), (8063, 1, '97.00', '2018-05-31 09:08:13'), (8064, 1, '73.00', '2018-05-31 09:08:22'), (8065, 1, '87.00', '2018-05-31 09:08:31'), (8066, 1, '85.00', '2018-05-31 09:08:40'), (8067, 1, '60.00', '2018-05-31 09:08:49'), (8068, 1, '71.00', '2018-05-31 09:08:58'), (8069, 1, '93.00', '2018-05-31 09:09:07'), (8070, 1, '88.00', '2018-05-31 09:09:16'), (8071, 1, '71.00', '2018-05-31 09:09:25'), (8072, 1, '77.00', '2018-05-31 09:09:34'), (8073, 1, '66.00', '2018-05-31 09:09:43'), (8074, 1, '64.00', '2018-05-31 09:09:52'), (8075, 1, '66.00', '2018-05-31 09:10:01'), (8076, 1, '65.00', '2018-05-31 09:10:10'), (8077, 1, '88.00', '2018-05-31 09:10:19'), (8078, 1, '60.00', '2018-05-31 09:10:28'), (8079, 1, '72.00', '2018-05-31 09:10:37'), (8080, 1, '84.00', '2018-05-31 09:10:46'), (8081, 1, '79.00', '2018-05-31 09:10:55'), (8082, 1, '82.00', '2018-05-31 09:11:04'), (8083, 1, '93.00', '2018-05-31 09:11:13'), (8084, 1, '89.00', '2018-05-31 09:11:22'), (8085, 1, '70.00', '2018-05-31 09:11:31'), (8086, 1, '76.00', '2018-05-31 09:11:40'), (8087, 1, '80.00', '2018-05-31 09:11:50'), (8088, 1, '84.00', '2018-05-31 09:11:59'), (8089, 1, '91.00', '2018-05-31 09:12:08'), (8090, 1, '82.00', '2018-05-31 09:12:17'), (8091, 1, '68.00', '2018-05-31 09:12:26'), (8092, 1, '71.00', '2018-05-31 09:12:35'), (8093, 1, '64.00', '2018-05-31 09:12:44'), (8094, 1, '97.00', '2018-05-31 09:12:53'), (8095, 1, '91.00', '2018-05-31 09:13:02'), (8096, 1, '95.00', '2018-05-31 09:13:11'), (8097, 1, '85.00', '2018-05-31 09:13:20'), (8098, 1, '90.00', '2018-05-31 09:13:29'), (8099, 1, '91.00', '2018-05-31 09:13:38'), (8100, 1, '91.00', '2018-05-31 09:13:47'), (8101, 1, '69.00', '2018-05-31 09:13:56'), (8102, 1, '87.00', '2018-05-31 09:14:05'), (8103, 1, '74.00', '2018-05-31 09:14:14'), (8104, 1, '89.00', '2018-05-31 09:14:23'), (8105, 1, '70.00', '2018-05-31 09:14:32'), (8106, 1, '73.00', '2018-05-31 09:14:41'), (8107, 1, '85.00', '2018-05-31 09:14:50'), (8108, 1, '75.00', '2018-05-31 09:14:59'), (8109, 1, '87.00', '2018-05-31 09:15:08'), (8110, 1, '95.00', '2018-05-31 09:15:17'), (8111, 1, '98.00', '2018-05-31 09:15:26'), (8112, 1, '99.00', '2018-05-31 09:15:35'), (8113, 1, '64.00', '2018-05-31 09:15:44'), (8114, 1, '61.00', '2018-05-31 09:15:53'), (8115, 1, '84.00', '2018-05-31 09:16:02'), (8116, 1, '72.00', '2018-05-31 09:16:10'), (8117, 1, '94.00', '2018-05-31 09:16:19'), (8118, 1, '95.00', '2018-05-31 09:16:28'), (8119, 1, '78.00', '2018-05-31 09:16:37'), (8120, 1, '97.00', '2018-05-31 09:16:46'), (8121, 1, '82.00', '2018-05-31 09:16:55'), (8122, 1, '61.00', '2018-05-31 09:17:04'), (8123, 1, '82.00', '2018-05-31 09:17:13'), (8124, 1, '73.00', '2018-05-31 09:17:22'), (8125, 1, '86.00', '2018-05-31 09:17:31'), (8126, 1, '70.00', '2018-05-31 09:17:40'), (8127, 1, '96.00', '2018-05-31 09:17:49'), (8128, 1, '65.00', '2018-05-31 09:17:58'), (8129, 1, '93.00', '2018-05-31 09:18:07'), (8130, 1, '92.00', '2018-05-31 09:18:16'), (8131, 1, '92.00', '2018-05-31 09:18:25'), (8132, 1, '71.00', '2018-05-31 09:18:34'), (8133, 1, '92.00', '2018-05-31 09:18:43'), (8134, 1, '96.00', '2018-05-31 09:18:52'), (8135, 1, '86.00', '2018-05-31 09:19:01'), (8136, 1, '68.00', '2018-05-31 09:19:11'), (8137, 1, '76.00', '2018-05-31 09:19:20'), (8138, 1, '61.00', '2018-05-31 09:19:29'), (8139, 1, '96.00', '2018-05-31 09:19:38'), (8140, 1, '87.00', '2018-05-31 09:19:46'), (8141, 1, '76.00', '2018-05-31 09:19:55'), (8142, 1, '94.00', '2018-05-31 09:20:04'), (8143, 1, '66.00', '2018-05-31 09:20:13'), (8144, 1, '72.00', '2018-05-31 09:20:22'), (8145, 1, '96.00', '2018-05-31 09:20:31'), (8146, 1, '63.00', '2018-05-31 09:20:41'), (8147, 1, '93.00', '2018-05-31 09:20:50'), (8148, 1, '71.00', '2018-05-31 09:20:59'), (8149, 1, '72.00', '2018-05-31 09:21:08'), (8150, 1, '80.00', '2018-05-31 09:21:18'), (8151, 1, '70.00', '2018-05-31 09:21:27'), (8152, 1, '93.00', '2018-05-31 09:21:36'), (8153, 1, '68.00', '2018-05-31 09:21:45'), (8154, 1, '86.00', '2018-05-31 09:21:54'), (8155, 1, '79.00', '2018-05-31 09:22:03'), (8156, 1, '74.00', '2018-05-31 09:22:12'), (8157, 1, '70.00', '2018-05-31 09:22:22'), (8158, 1, '61.00', '2018-05-31 09:22:31'), (8159, 1, '75.00', '2018-05-31 09:22:40'), (8160, 1, '97.00', '2018-05-31 09:22:49'), (8161, 1, '63.00', '2018-05-31 09:22:57'), (8162, 1, '86.00', '2018-05-31 09:23:06'), (8163, 1, '97.00', '2018-05-31 09:23:15'), (8164, 1, '85.00', '2018-05-31 09:23:24'), (8165, 1, '64.00', '2018-05-31 09:23:33'), (8166, 1, '79.00', '2018-05-31 09:23:42'), (8167, 1, '87.00', '2018-05-31 09:23:52'), (8168, 1, '81.00', '2018-05-31 09:24:01'), (8169, 1, '70.00', '2018-05-31 09:24:10'), (8170, 1, '79.00', '2018-05-31 09:24:18'), (8171, 1, '99.00', '2018-05-31 09:24:27'), (8172, 1, '77.00', '2018-05-31 09:24:36'), (8173, 1, '88.00', '2018-05-31 09:24:45'), (8174, 1, '94.00', '2018-05-31 09:24:54'), (8175, 1, '87.00', '2018-05-31 09:25:03'), (8176, 1, '93.00', '2018-05-31 09:25:12'), (8177, 1, '70.00', '2018-05-31 09:25:21'), (8178, 1, '95.00', '2018-05-31 09:25:30'), (8179, 1, '95.00', '2018-05-31 09:25:39'), (8180, 1, '69.00', '2018-05-31 09:25:48'), (8181, 1, '88.00', '2018-05-31 09:25:57'), (8182, 1, '98.00', '2018-05-31 09:26:06'), (8183, 1, '62.00', '2018-05-31 09:26:15'), (8184, 1, '91.00', '2018-05-31 09:26:24'), (8185, 1, '75.00', '2018-05-31 09:26:33'), (8186, 1, '93.00', '2018-05-31 09:26:42'), (8187, 1, '62.00', '2018-05-31 09:26:51'), (8188, 1, '79.00', '2018-05-31 09:27:00'), (8189, 1, '88.00', '2018-05-31 09:27:09'), (8190, 1, '83.00', '2018-05-31 09:27:18'), (8191, 1, '99.00', '2018-05-31 09:27:27'), (8192, 1, '90.00', '2018-05-31 09:27:36'), (8193, 1, '79.00', '2018-05-31 09:27:45'), (8194, 1, '75.00', '2018-05-31 09:27:54'), (8195, 1, '83.00', '2018-05-31 09:28:03'), (8196, 1, '98.00', '2018-05-31 09:28:12'), (8197, 1, '88.00', '2018-05-31 09:28:21'), (8198, 1, '84.00', '2018-05-31 09:28:30'), (8199, 1, '81.00', '2018-05-31 09:28:39'), (8200, 1, '94.00', '2018-05-31 09:28:48'), (8201, 1, '88.00', '2018-05-31 09:28:57'), (8202, 1, '98.00', '2018-05-31 09:29:06'), (8203, 1, '67.00', '2018-05-31 09:29:15'), (8204, 1, '94.00', '2018-05-31 09:29:24'), (8205, 1, '64.00', '2018-05-31 09:29:33'), (8206, 1, '78.00', '2018-05-31 09:29:43'), (8207, 1, '87.00', '2018-05-31 09:29:52'), (8208, 1, '82.00', '2018-05-31 09:30:01'), (8209, 1, '86.00', '2018-05-31 09:30:10'), (8210, 1, '92.00', '2018-05-31 09:30:19'), (8211, 1, '70.00', '2018-05-31 09:30:28'), (8212, 1, '95.00', '2018-05-31 09:30:37'), (8213, 1, '94.00', '2018-05-31 09:30:46'), (8214, 1, '69.00', '2018-05-31 09:30:55'), (8215, 1, '94.00', '2018-05-31 09:31:04'), (8216, 1, '62.00', '2018-05-31 09:31:13'), (8217, 1, '81.00', '2018-05-31 09:31:22'), (8218, 1, '84.00', '2018-05-31 09:31:31'), (8219, 1, '86.00', '2018-05-31 09:31:39'), (8220, 1, '92.00', '2018-05-31 09:31:48'), (8221, 1, '95.00', '2018-05-31 09:31:57'), (8222, 1, '87.00', '2018-05-31 09:32:06'), (8223, 1, '84.00', '2018-05-31 09:32:15'), (8224, 1, '84.00', '2018-05-31 09:32:24'), (8225, 1, '65.00', '2018-05-31 09:32:33'), (8226, 1, '97.00', '2018-05-31 09:32:42'), (8227, 1, '99.00', '2018-05-31 09:32:51'), (8228, 1, '70.00', '2018-05-31 09:33:00'), (8229, 1, '94.00', '2018-05-31 09:33:09'), (8230, 1, '65.00', '2018-05-31 09:33:18'), (8231, 1, '73.00', '2018-05-31 09:33:27'), (8232, 1, '74.00', '2018-05-31 09:33:36'), (8233, 1, '85.00', '2018-05-31 09:33:46'), (8234, 1, '95.00', '2018-05-31 09:33:54'), (8235, 1, '80.00', '2018-05-31 09:34:03'), (8236, 1, '71.00', '2018-05-31 09:34:12'), (8237, 1, '74.00', '2018-05-31 09:34:21'), (8238, 1, '79.00', '2018-05-31 09:34:30'), (8239, 1, '75.00', '2018-05-31 09:34:40'), (8240, 1, '62.00', '2018-05-31 09:34:50'), (8241, 1, '86.00', '2018-05-31 09:34:59'), (8242, 1, '90.00', '2018-05-31 09:35:08'), (8243, 1, '61.00', '2018-05-31 09:35:17'), (8244, 1, '73.00', '2018-05-31 09:35:26'), (8245, 1, '76.00', '2018-05-31 09:35:35'), (8246, 1, '98.00', '2018-05-31 09:35:44'), (8247, 1, '89.00', '2018-05-31 09:35:53'), (8248, 1, '68.00', '2018-05-31 09:36:02'), (8249, 1, '87.00', '2018-05-31 09:36:11'), (8250, 1, '98.00', '2018-05-31 09:36:20'), (8251, 1, '70.00', '2018-05-31 09:36:30'), (8252, 1, '62.00', '2018-05-31 09:36:39'), (8253, 1, '76.00', '2018-05-31 09:36:49'), (8254, 1, '81.00', '2018-05-31 09:36:58'), (8255, 1, '97.00', '2018-05-31 09:37:08'), (8256, 1, '85.00', '2018-05-31 09:37:18'), (8257, 1, '66.00', '2018-05-31 09:37:27'), (8258, 1, '81.00', '2018-05-31 09:37:36'), (8259, 1, '88.00', '2018-05-31 09:37:46'), (8260, 1, '95.00', '2018-05-31 09:37:55'), (8261, 1, '90.00', '2018-05-31 09:38:04'), (8262, 1, '95.00', '2018-05-31 09:38:13'), (8263, 1, '60.00', '2018-05-31 09:38:23'), (8264, 1, '96.00', '2018-05-31 09:38:32'), (8265, 1, '97.00', '2018-05-31 09:38:41'), (8266, 1, '63.00', '2018-05-31 09:38:50'), (8267, 1, '60.00', '2018-05-31 09:39:00'), (8268, 1, '86.00', '2018-05-31 09:39:09'), (8269, 1, '88.00', '2018-05-31 09:39:18'), (8270, 1, '68.00', '2018-05-31 09:39:27'), (8271, 1, '71.00', '2018-05-31 09:39:36'), (8272, 1, '76.00', '2018-05-31 09:39:45'), (8273, 1, '86.00', '2018-05-31 09:39:54'), (8274, 1, '77.00', '2018-05-31 09:40:03'), (8275, 1, '64.00', '2018-05-31 09:40:12'), (8276, 1, '93.00', '2018-05-31 09:40:21'), (8277, 1, '88.00', '2018-05-31 09:40:31'), (8278, 1, '82.00', '2018-05-31 09:40:40'), (8279, 1, '89.00', '2018-05-31 09:40:49'), (8280, 1, '75.00', '2018-05-31 09:40:57'), (8281, 1, '63.00', '2018-05-31 09:41:07'), (8282, 1, '84.00', '2018-05-31 09:41:15'), (8283, 1, '83.00', '2018-05-31 09:41:24'), (8284, 1, '72.00', '2018-05-31 09:41:33'), (8285, 1, '68.00', '2018-05-31 09:41:42'), (8286, 1, '88.00', '2018-05-31 09:41:51'), (8287, 1, '64.00', '2018-05-31 09:42:00'), (8288, 1, '63.00', '2018-05-31 09:42:09'), (8289, 1, '95.00', '2018-05-31 09:42:18'), (8290, 1, '60.00', '2018-05-31 09:42:27'), (8291, 1, '85.00', '2018-05-31 09:42:36'), (8292, 1, '85.00', '2018-05-31 09:42:45'), (8293, 1, '93.00', '2018-05-31 09:42:54'), (8294, 1, '70.00', '2018-05-31 09:43:03'), (8295, 1, '89.00', '2018-05-31 09:43:12'), (8296, 1, '63.00', '2018-05-31 09:43:21'), (8297, 1, '91.00', '2018-05-31 09:43:30'), (8298, 1, '99.00', '2018-05-31 09:43:39'), (8299, 1, '88.00', '2018-05-31 09:43:48'), (8300, 1, '96.00', '2018-05-31 09:43:57'), (8301, 1, '63.00', '2018-05-31 09:44:07'), (8302, 1, '84.00', '2018-05-31 09:44:16'), (8303, 1, '81.00', '2018-05-31 09:44:25'), (8304, 1, '62.00', '2018-05-31 09:44:34'), (8305, 1, '82.00', '2018-05-31 09:44:43'), (8306, 1, '84.00', '2018-05-31 09:44:52'), (8307, 1, '82.00', '2018-05-31 09:45:01'), (8308, 1, '81.00', '2018-05-31 09:45:10'), (8309, 1, '63.00', '2018-05-31 09:45:19'), (8310, 1, '81.00', '2018-05-31 09:45:28'), (8311, 1, '82.00', '2018-05-31 09:45:37'), (8312, 1, '71.00', '2018-05-31 09:45:46'), (8313, 1, '98.00', '2018-05-31 09:45:55'), (8314, 1, '63.00', '2018-05-31 09:46:04'), (8315, 1, '82.00', '2018-05-31 09:46:14'), (8316, 1, '79.00', '2018-05-31 09:46:23'), (8317, 1, '72.00', '2018-05-31 09:46:32'), (8318, 1, '61.00', '2018-05-31 09:46:41'), (8319, 1, '98.00', '2018-05-31 09:48:20'), (8320, 1, '84.00', '2018-05-31 09:48:30'), (8321, 1, '80.00', '2018-05-31 09:48:39'), (8322, 1, '89.00', '2018-05-31 09:48:48'), (8323, 1, '90.00', '2018-05-31 09:48:55'), (8324, 1, '68.00', '2018-05-31 09:48:57'), (8325, 1, '92.00', '2018-05-31 09:49:06'), (8326, 1, '75.00', '2018-05-31 09:49:15'), (8327, 1, '76.00', '2018-05-31 09:49:24'), (8328, 1, '60.00', '2018-05-31 09:49:34'), (8329, 1, '88.00', '2018-05-31 09:49:43'), (8330, 1, '66.00', '2018-05-31 09:49:52'), (8331, 1, '79.00', '2018-05-31 09:50:01'), (8332, 1, '94.00', '2018-05-31 09:50:10'), (8333, 1, '71.00', '2018-05-31 09:50:19'), (8334, 1, '67.00', '2018-05-31 09:50:27'), (8335, 1, '86.00', '2018-05-31 09:50:36'), (8336, 1, '71.00', '2018-05-31 09:50:45'), (8337, 1, '65.00', '2018-05-31 09:50:54'), (8338, 1, '76.00', '2018-05-31 09:51:03'), (8339, 1, '73.00', '2018-05-31 09:51:12'), (8340, 1, '68.00', '2018-05-31 09:51:21'), (8341, 1, '84.00', '2018-05-31 09:51:30'), (8342, 1, '71.00', '2018-05-31 09:51:39'), (8343, 1, '85.00', '2018-05-31 09:51:48'), (8344, 1, '83.00', '2018-05-31 09:51:58'), (8345, 1, '69.00', '2018-05-31 09:52:07'), (8346, 1, '80.00', '2018-05-31 09:52:16'), (8347, 1, '77.00', '2018-05-31 09:52:25'), (8348, 1, '89.00', '2018-05-31 09:52:33'), (8349, 1, '80.00', '2018-05-31 09:52:42'), (8350, 1, '80.00', '2018-05-31 09:52:51'), (8351, 1, '86.00', '2018-05-31 09:53:00'), (8352, 1, '62.00', '2018-05-31 09:53:09'), (8353, 1, '73.00', '2018-05-31 09:53:18'), (8354, 1, '82.00', '2018-05-31 09:53:27'), (8355, 1, '64.00', '2018-05-31 09:53:36'), (8356, 1, '87.00', '2018-05-31 09:53:45'), (8357, 1, '77.00', '2018-05-31 09:53:54'), (8358, 1, '76.00', '2018-05-31 09:54:03'), (8359, 1, '99.00', '2018-05-31 09:54:12'), (8360, 1, '70.00', '2018-05-31 09:54:21'), (8361, 1, '99.00', '2018-05-31 09:54:30'), (8362, 1, '81.00', '2018-05-31 09:54:39'), (8363, 1, '67.00', '2018-05-31 09:54:48'), (8364, 1, '68.00', '2018-05-31 09:54:57'), (8365, 1, '72.00', '2018-05-31 09:55:07'), (8366, 1, '60.00', '2018-05-31 09:55:16'), (8367, 1, '70.00', '2018-05-31 09:55:24'), (8368, 1, '63.00', '2018-05-31 09:55:33'), (8369, 1, '74.00', '2018-05-31 09:55:42'), (8370, 1, '68.00', '2018-05-31 09:55:51'), (8371, 1, '75.00', '2018-05-31 09:56:00'), (8372, 1, '82.00', '2018-05-31 09:56:09'), (8373, 1, '61.00', '2018-05-31 09:56:18'), (8374, 1, '62.00', '2018-05-31 09:56:27'), (8375, 1, '82.00', '2018-05-31 09:56:36'), (8376, 1, '79.00', '2018-05-31 09:56:45'), (8377, 1, '70.00', '2018-05-31 09:56:54'), (8378, 1, '99.00', '2018-05-31 09:57:03'), (8379, 1, '93.00', '2018-05-31 09:57:12'), (8380, 1, '60.00', '2018-05-31 09:57:21'), (8381, 1, '80.00', '2018-05-31 09:57:30'), (8382, 1, '80.00', '2018-05-31 09:57:39'), (8383, 1, '69.00', '2018-05-31 09:57:48'), (8384, 1, '89.00', '2018-05-31 09:57:57'), (8385, 1, '67.00', '2018-05-31 09:58:06'), (8386, 1, '70.00', '2018-05-31 09:58:15'), (8387, 1, '82.00', '2018-05-31 09:58:24'), (8388, 1, '68.00', '2018-05-31 09:58:33'), (8389, 1, '69.00', '2018-05-31 09:58:42'), (8390, 1, '97.00', '2018-05-31 09:58:51'), (8391, 1, '71.00', '2018-05-31 09:59:00'), (8392, 1, '94.00', '2018-05-31 09:59:10'), (8393, 1, '83.00', '2018-05-31 09:59:20'), (8394, 1, '95.00', '2018-05-31 09:59:30'), (8395, 1, '99.00', '2018-05-31 09:59:39'), (8396, 1, '67.00', '2018-05-31 09:59:48'), (8397, 1, '61.00', '2018-05-31 09:59:57'), (8398, 1, '95.00', '2018-05-31 10:00:07'), (8399, 1, '98.00', '2018-05-31 10:00:16'), (8400, 1, '82.00', '2018-05-31 10:00:25'), (8401, 1, '83.00', '2018-05-31 10:00:34'), (8402, 1, '77.00', '2018-05-31 10:00:43'), (8403, 1, '87.00', '2018-05-31 10:00:52'), (8404, 1, '93.00', '2018-05-31 10:01:01'), (8405, 1, '86.00', '2018-05-31 10:01:10'), (8406, 1, '73.00', '2018-05-31 10:01:19'), (8407, 1, '97.00', '2018-05-31 10:01:28'), (8408, 1, '88.00', '2018-05-31 10:01:37'), (8409, 1, '79.00', '2018-05-31 10:01:46'), (8410, 1, '68.00', '2018-05-31 10:01:55'), (8411, 1, '64.00', '2018-05-31 10:02:04'), (8412, 1, '98.00', '2018-05-31 10:02:13'), (8413, 1, '94.00', '2018-05-31 10:02:22'), (8414, 1, '64.00', '2018-05-31 10:02:31'), (8415, 1, '94.00', '2018-05-31 10:02:40'), (8416, 1, '75.00', '2018-05-31 10:02:49'), (8417, 1, '83.00', '2018-05-31 10:02:58'), (8418, 1, '83.00', '2018-05-31 10:03:07'), (8419, 1, '99.00', '2018-05-31 10:03:16'), (8420, 1, '99.00', '2018-05-31 10:03:25'), (8421, 1, '73.00', '2018-05-31 10:03:34'), (8422, 1, '70.00', '2018-05-31 10:03:43'), (8423, 1, '91.00', '2018-05-31 10:03:52'), (8424, 1, '95.00', '2018-05-31 10:04:01'), (8425, 1, '74.00', '2018-05-31 10:04:10'), (8426, 1, '70.00', '2018-05-31 10:04:19'), (8427, 1, '88.00', '2018-05-31 10:04:28'), (8428, 1, '88.00', '2018-05-31 10:04:37'), (8429, 1, '81.00', '2018-05-31 10:04:46'), (8430, 1, '75.00', '2018-05-31 10:04:55'), (8431, 1, '87.00', '2018-05-31 10:05:04'), (8432, 1, '70.00', '2018-05-31 10:05:13'), (8433, 1, '85.00', '2018-05-31 10:05:22'), (8434, 1, '95.00', '2018-05-31 10:05:31'), (8435, 1, '85.00', '2018-05-31 10:05:40'), (8436, 1, '62.00', '2018-05-31 10:05:49'), (8437, 1, '96.00', '2018-05-31 10:05:58'), (8438, 1, '75.00', '2018-05-31 10:06:07'), (8439, 1, '94.00', '2018-05-31 10:06:16'), (8440, 1, '60.00', '2018-05-31 10:06:25'), (8441, 1, '97.00', '2018-05-31 10:06:34'), (8442, 1, '86.00', '2018-05-31 10:06:43'), (8443, 1, '63.00', '2018-05-31 10:06:52'), (8444, 1, '74.00', '2018-05-31 10:07:02'), (8445, 1, '84.00', '2018-05-31 10:07:11'), (8446, 1, '88.00', '2018-05-31 10:07:20'), (8447, 1, '94.00', '2018-05-31 10:07:29'), (8448, 1, '89.00', '2018-05-31 10:07:38'), (8449, 1, '74.00', '2018-05-31 10:07:47'), (8450, 1, '97.00', '2018-05-31 10:07:56'), (8451, 1, '90.00', '2018-05-31 10:08:05'), (8452, 1, '92.00', '2018-05-31 10:08:14'), (8453, 1, '94.00', '2018-05-31 10:08:24'), (8454, 1, '85.00', '2018-05-31 10:08:33'), (8455, 1, '61.00', '2018-05-31 10:08:42'), (8456, 1, '74.00', '2018-05-31 10:08:51'), (8457, 1, '72.00', '2018-05-31 10:09:00'), (8458, 1, '83.00', '2018-05-31 10:09:09'), (8459, 1, '75.00', '2018-05-31 10:09:18'), (8460, 1, '98.00', '2018-05-31 10:09:27'), (8461, 1, '99.00', '2018-05-31 10:09:36'), (8462, 1, '88.00', '2018-05-31 10:09:46'), (8463, 1, '61.00', '2018-05-31 10:09:55'), (8464, 1, '86.00', '2018-05-31 10:10:04'), (8465, 1, '65.00', '2018-05-31 10:10:13'), (8466, 1, '86.00', '2018-05-31 10:10:22'), (8467, 1, '94.00', '2018-05-31 10:10:31'), (8468, 1, '70.00', '2018-05-31 10:10:40'), (8469, 1, '68.00', '2018-05-31 10:10:49'), (8470, 1, '97.00', '2018-05-31 10:10:58'), (8471, 1, '79.00', '2018-05-31 10:11:07'), (8472, 1, '94.00', '2018-05-31 10:11:16'), (8473, 1, '73.00', '2018-05-31 10:11:25'), (8474, 1, '76.00', '2018-05-31 10:11:34'), (8475, 1, '92.00', '2018-05-31 10:11:43'), (8476, 1, '66.00', '2018-05-31 10:11:51'), (8477, 1, '64.00', '2018-05-31 10:12:01'), (8478, 1, '93.00', '2018-05-31 10:12:10'), (8479, 1, '94.00', '2018-05-31 10:12:19'), (8480, 1, '85.00', '2018-05-31 10:12:28'), (8481, 1, '86.00', '2018-05-31 10:12:36'), (8482, 1, '97.00', '2018-05-31 10:12:45'), (8483, 1, '80.00', '2018-05-31 10:12:54'), (8484, 1, '70.00', '2018-05-31 10:13:03'), (8485, 1, '95.00', '2018-05-31 10:13:12'), (8486, 1, '62.00', '2018-05-31 10:13:21'), (8487, 1, '89.00', '2018-05-31 10:13:31'), (8488, 1, '81.00', '2018-05-31 10:13:40'), (8489, 1, '72.00', '2018-05-31 10:13:49'), (8490, 1, '76.00', '2018-05-31 10:13:58'), (8491, 1, '93.00', '2018-05-31 10:14:07'), (8492, 1, '64.00', '2018-05-31 10:14:16'), (8493, 1, '65.00', '2018-05-31 10:14:25'), (8494, 1, '86.00', '2018-05-31 10:14:34'), (8495, 1, '66.00', '2018-05-31 10:14:43'), (8496, 1, '81.00', '2018-05-31 10:14:52'), (8497, 1, '96.00', '2018-05-31 10:15:01'), (8498, 1, '86.00', '2018-05-31 10:15:10'), (8499, 1, '96.00', '2018-05-31 10:15:19'), (8500, 1, '99.00', '2018-05-31 10:15:28'), (8501, 1, '97.00', '2018-05-31 10:15:37'), (8502, 1, '96.00', '2018-05-31 10:15:46'), (8503, 1, '85.00', '2018-05-31 10:15:55'), (8504, 1, '70.00', '2018-05-31 10:16:04'), (8505, 1, '73.00', '2018-05-31 10:16:13'), (8506, 1, '98.00', '2018-05-31 10:16:22'), (8507, 1, '93.00', '2018-05-31 10:16:31'), (8508, 1, '97.00', '2018-05-31 10:16:40'), (8509, 1, '60.00', '2018-05-31 10:16:50'), (8510, 1, '76.00', '2018-05-31 10:16:59'), (8511, 1, '86.00', '2018-05-31 10:17:08'), (8512, 1, '89.00', '2018-05-31 10:17:17'), (8513, 1, '72.00', '2018-05-31 10:17:26'), (8514, 1, '86.00', '2018-05-31 10:17:35'), (8515, 1, '99.00', '2018-05-31 10:17:44'), (8516, 1, '82.00', '2018-05-31 10:17:53'), (8517, 1, '68.00', '2018-05-31 10:18:02'), (8518, 1, '96.00', '2018-05-31 10:18:11'), (8519, 1, '64.00', '2018-05-31 10:18:20'), (8520, 1, '93.00', '2018-05-31 10:18:29'), (8521, 1, '98.00', '2018-05-31 10:18:38'), (8522, 1, '93.00', '2018-05-31 10:20:17'), (8523, 1, '93.00', '2018-05-31 10:20:26'), (8524, 1, '84.00', '2018-05-31 10:20:35'), (8525, 1, '70.00', '2018-05-31 10:20:44'), (8526, 1, '71.00', '2018-05-31 10:20:52'), (8527, 1, '74.00', '2018-05-31 10:20:53'), (8528, 1, '62.00', '2018-05-31 10:21:02'), (8529, 1, '63.00', '2018-05-31 10:21:11'), (8530, 1, '76.00', '2018-05-31 10:21:20'), (8531, 1, '69.00', '2018-05-31 10:21:29'), (8532, 1, '87.00', '2018-05-31 10:21:38'), (8533, 1, '83.00', '2018-05-31 10:21:47'), (8534, 1, '73.00', '2018-05-31 10:21:56'), (8535, 1, '60.00', '2018-05-31 10:22:05'), (8536, 1, '67.00', '2018-05-31 10:22:14'), (8537, 1, '60.00', '2018-05-31 10:22:23'), (8538, 1, '80.00', '2018-05-31 10:22:32'), (8539, 1, '81.00', '2018-05-31 10:22:41'), (8540, 1, '66.00', '2018-05-31 10:22:50'), (8541, 1, '62.00', '2018-05-31 10:22:59'), (8542, 1, '91.00', '2018-05-31 10:23:08'), (8543, 1, '88.00', '2018-05-31 10:23:17'), (8544, 1, '78.00', '2018-05-31 10:23:26'), (8545, 1, '85.00', '2018-05-31 10:23:35'), (8546, 1, '78.00', '2018-05-31 10:23:44'); INSERT INTO `leitura` (`idLeitura`, `idMonitor`, `nivel`, `dataHora`) VALUES (8547, 1, '85.00', '2018-05-31 10:23:54'), (8548, 1, '71.00', '2018-05-31 10:24:03'), (8549, 1, '78.00', '2018-05-31 10:24:12'), (8550, 1, '93.00', '2018-05-31 10:24:21'), (8551, 1, '96.00', '2018-05-31 10:24:30'), (8552, 1, '81.00', '2018-05-31 10:24:39'), (8553, 1, '61.00', '2018-05-31 10:24:48'), (8554, 1, '93.00', '2018-05-31 10:24:57'), (8555, 1, '97.00', '2018-05-31 10:25:06'), (8556, 1, '96.00', '2018-05-31 10:25:15'), (8557, 1, '83.00', '2018-05-31 10:25:24'), (8558, 1, '97.00', '2018-05-31 10:25:33'), (8559, 1, '94.00', '2018-05-31 10:25:42'), (8560, 1, '64.00', '2018-05-31 10:25:51'), (8561, 1, '98.00', '2018-05-31 10:26:00'), (8562, 1, '67.00', '2018-05-31 10:26:09'), (8563, 1, '96.00', '2018-05-31 10:26:18'), (8564, 1, '77.00', '2018-05-31 10:26:27'), (8565, 1, '89.00', '2018-05-31 10:26:36'), (8566, 1, '88.00', '2018-05-31 10:26:45'), (8567, 1, '92.00', '2018-05-31 10:26:54'), (8568, 1, '70.00', '2018-05-31 10:27:03'), (8569, 1, '63.00', '2018-05-31 10:27:12'), (8570, 1, '77.00', '2018-05-31 10:27:21'), (8571, 1, '63.00', '2018-05-31 10:27:30'), (8572, 1, '94.00', '2018-05-31 10:27:39'), (8573, 1, '89.00', '2018-05-31 10:27:48'), (8574, 1, '78.00', '2018-05-31 10:27:57'), (8575, 1, '69.00', '2018-05-31 10:28:06'), (8576, 1, '72.00', '2018-05-31 10:28:15'), (8577, 1, '83.00', '2018-05-31 10:28:24'), (8578, 1, '75.00', '2018-05-31 10:28:33'), (8579, 1, '77.00', '2018-05-31 10:28:42'), (8580, 1, '97.00', '2018-05-31 10:28:51'), (8581, 1, '95.00', '2018-05-31 10:29:00'), (8582, 1, '95.00', '2018-05-31 10:29:09'), (8583, 1, '90.00', '2018-05-31 10:29:18'), (8584, 1, '90.00', '2018-05-31 10:29:27'), (8585, 1, '72.00', '2018-05-31 10:29:36'), (8586, 1, '87.00', '2018-05-31 10:29:45'), (8587, 1, '98.00', '2018-05-31 10:29:54'), (8588, 1, '60.00', '2018-05-31 10:30:03'), (8589, 1, '96.00', '2018-05-31 10:30:12'), (8590, 1, '89.00', '2018-05-31 10:30:21'), (8591, 1, '60.00', '2018-05-31 10:30:30'), (8592, 1, '60.00', '2018-05-31 10:30:39'), (8593, 1, '89.00', '2018-05-31 10:30:48'), (8594, 1, '72.00', '2018-05-31 10:30:57'), (8595, 1, '68.00', '2018-05-31 10:31:06'), (8596, 1, '92.00', '2018-05-31 10:31:15'), (8597, 1, '77.00', '2018-05-31 10:31:24'), (8598, 1, '97.00', '2018-05-31 10:31:33'), (8599, 1, '85.00', '2018-05-31 10:31:42'), (8600, 1, '74.00', '2018-05-31 10:31:51'), (8601, 1, '67.00', '2018-05-31 10:32:00'), (8602, 1, '71.00', '2018-05-31 10:32:09'), (8603, 1, '88.00', '2018-05-31 10:32:18'), (8604, 1, '98.00', '2018-05-31 10:32:27'), (8605, 1, '87.00', '2018-05-31 10:32:36'), (8606, 1, '64.00', '2018-05-31 10:32:45'), (8607, 1, '90.00', '2018-05-31 10:32:54'), (8608, 1, '83.00', '2018-05-31 10:33:03'), (8609, 1, '99.00', '2018-05-31 10:33:12'), (8610, 1, '66.00', '2018-05-31 10:33:21'), (8611, 1, '79.00', '2018-05-31 10:33:30'), (8612, 1, '93.00', '2018-05-31 10:33:39'), (8613, 1, '74.00', '2018-05-31 10:33:48'), (8614, 1, '71.00', '2018-05-31 10:33:57'), (8615, 1, '81.00', '2018-05-31 10:34:06'), (8616, 1, '89.00', '2018-05-31 10:34:15'), (8617, 1, '71.00', '2018-05-31 10:34:24'), (8618, 1, '66.00', '2018-05-31 10:34:33'), (8619, 1, '72.00', '2018-05-31 10:34:42'), (8620, 1, '72.00', '2018-05-31 10:34:51'), (8621, 1, '96.00', '2018-05-31 10:35:00'), (8622, 1, '62.00', '2018-05-31 10:35:09'), (8623, 1, '85.00', '2018-05-31 10:35:18'), (8624, 1, '84.00', '2018-05-31 10:35:27'), (8625, 1, '98.00', '2018-05-31 10:35:36'), (8626, 1, '75.00', '2018-05-31 10:35:45'), (8627, 1, '74.00', '2018-05-31 10:35:55'), (8628, 1, '69.00', '2018-05-31 10:36:04'), (8629, 1, '79.00', '2018-05-31 10:36:18'), (8630, 1, '79.00', '2018-05-31 10:36:32'), (8631, 1, '74.00', '2018-05-31 10:36:55'), (8632, 1, '84.00', '2018-05-31 10:37:12'), (8633, 1, '69.00', '2018-05-31 10:37:25'), (8634, 1, '74.00', '2018-05-31 10:37:39'), (8635, 1, '64.00', '2018-05-31 10:37:54'), (8636, 1, '81.00', '2018-05-31 10:38:12'), (8637, 1, '91.00', '2018-05-31 10:38:38'), (8638, 1, '87.00', '2018-05-31 10:38:51'), (8639, 1, '60.00', '2018-05-31 10:39:02'), (8640, 1, '65.00', '2018-05-31 10:39:12'), (8641, 1, '80.00', '2018-05-31 10:39:33'), (8642, 1, '81.00', '2018-05-31 10:39:44'), (8643, 1, '60.00', '2018-05-31 10:40:00'), (8644, 1, '83.00', '2018-05-31 10:40:09'), (8645, 1, '76.00', '2018-05-31 10:40:21'), (8646, 1, '71.00', '2018-05-31 10:40:32'), (8647, 1, '79.00', '2018-05-31 10:40:42'), (8648, 1, '74.00', '2018-05-31 10:40:54'), (8649, 1, '76.00', '2018-05-31 10:41:07'), (8650, 1, '92.00', '2018-05-31 10:41:19'), (8651, 1, '75.00', '2018-05-31 10:41:30'), (8652, 1, '65.00', '2018-05-31 10:41:40'), (8653, 1, '77.00', '2018-05-31 10:41:49'), (8654, 1, '87.00', '2018-05-31 10:41:59'), (8655, 1, '84.00', '2018-05-31 10:42:10'), (8656, 1, '78.00', '2018-05-31 10:42:27'), (8657, 1, '70.00', '2018-05-31 10:42:46'), (8658, 1, '88.00', '2018-05-31 10:42:56'), (8659, 1, '74.00', '2018-05-31 10:43:08'), (8660, 1, '81.00', '2018-05-31 10:43:20'), (8661, 1, '72.00', '2018-05-31 10:43:36'), (8662, 1, '62.00', '2018-05-31 10:43:50'), (8663, 1, '88.00', '2018-05-31 10:43:59'), (8664, 1, '61.00', '2018-05-31 10:44:09'), (8665, 1, '85.00', '2018-05-31 10:44:19'), (8666, 1, '60.00', '2018-05-31 10:44:39'), (8667, 1, '67.00', '2018-05-31 10:44:51'), (8668, 1, '79.00', '2018-05-31 10:45:02'), (8669, 1, '62.00', '2018-05-31 10:45:14'), (8670, 1, '79.00', '2018-05-31 10:45:25'), (8671, 1, '93.00', '2018-05-31 10:45:35'), (8672, 1, '83.00', '2018-05-31 10:45:44'), (8673, 1, '99.00', '2018-05-31 10:45:53'), (8674, 1, '81.00', '2018-05-31 10:46:03'), (8675, 1, '77.00', '2018-05-31 10:46:14'), (8676, 1, '68.00', '2018-05-31 10:46:31'), (8677, 1, '86.00', '2018-05-31 10:46:41'), (8678, 1, '80.00', '2018-05-31 10:46:50'), (8679, 1, '99.00', '2018-05-31 10:47:00'), (8680, 1, '96.00', '2018-05-31 10:47:11'), (8681, 1, '92.00', '2018-05-31 10:47:20'), (8682, 1, '92.00', '2018-05-31 10:47:33'), (8683, 1, '79.00', '2018-05-31 10:47:43'), (8684, 1, '66.00', '2018-05-31 10:47:54'), (8685, 1, '62.00', '2018-05-31 10:48:03'), (8686, 1, '64.00', '2018-05-31 10:48:13'), (8687, 1, '97.00', '2018-05-31 10:48:24'), (8688, 1, '73.00', '2018-05-31 10:48:33'), (8689, 1, '67.00', '2018-05-31 10:48:43'), (8690, 1, '78.00', '2018-05-31 10:48:55'), (8691, 1, '80.00', '2018-05-31 10:49:05'), (8692, 1, '71.00', '2018-05-31 10:49:15'), (8693, 1, '97.00', '2018-05-31 10:49:25'), (8694, 1, '86.00', '2018-05-31 10:49:34'), (8695, 1, '83.00', '2018-05-31 10:49:44'), (8696, 1, '87.00', '2018-05-31 10:49:56'), (8697, 1, '60.00', '2018-05-31 10:50:08'), (8698, 1, '80.00', '2018-05-31 10:50:18'), (8699, 1, '80.00', '2018-05-31 10:50:31'), (8700, 1, '64.00', '2018-05-31 10:50:42'), (8701, 1, '66.00', '2018-05-31 10:50:52'), (8702, 1, '61.00', '2018-05-31 10:51:02'), (8703, 1, '97.00', '2018-05-31 10:51:11'), (8704, 1, '75.00', '2018-05-31 10:51:22'), (8705, 1, '74.00', '2018-05-31 10:51:33'), (8706, 1, '88.00', '2018-05-31 10:51:43'), (8707, 1, '94.00', '2018-05-31 10:51:54'), (8708, 1, '61.00', '2018-05-31 10:52:04'), (8709, 1, '95.00', '2018-05-31 10:52:13'), (8710, 1, '80.00', '2018-05-31 10:52:22'), (8711, 1, '68.00', '2018-05-31 10:52:33'), (8712, 1, '81.00', '2018-05-31 10:52:42'), (8713, 1, '90.00', '2018-05-31 10:52:56'), (8714, 1, '97.00', '2018-05-31 10:53:05'), (8715, 1, '89.00', '2018-05-31 10:53:15'), (8716, 1, '66.00', '2018-05-31 10:53:25'), (8717, 1, '96.00', '2018-05-31 10:53:35'), (8718, 1, '69.00', '2018-05-31 10:53:44'), (8719, 1, '72.00', '2018-05-31 10:53:54'), (8720, 1, '74.00', '2018-05-31 10:54:04'), (8721, 1, '60.00', '2018-05-31 10:54:15'), (8722, 1, '88.00', '2018-05-31 10:54:25'), (8723, 1, '84.00', '2018-05-31 10:54:34'), (8724, 1, '98.00', '2018-05-31 10:54:44'), (8725, 1, '87.00', '2018-05-31 10:54:54'), (8726, 1, '91.00', '2018-05-31 10:55:03'), (8727, 1, '70.00', '2018-05-31 10:55:13'), (8728, 1, '62.00', '2018-05-31 10:55:23'), (8729, 1, '75.00', '2018-05-31 10:55:39'), (8730, 1, '64.00', '2018-05-31 10:55:52'), (8731, 1, '81.00', '2018-05-31 10:56:01'), (8732, 1, '99.00', '2018-05-31 10:56:12'), (8733, 1, '66.00', '2018-05-31 10:56:23'), (8734, 1, '63.00', '2018-05-31 10:56:32'), (8735, 1, '98.00', '2018-05-31 10:56:42'), (8736, 1, '81.00', '2018-05-31 10:56:51'), (8737, 1, '86.00', '2018-05-31 10:57:03'), (8738, 1, '90.00', '2018-05-31 10:57:14'), (8739, 1, '96.00', '2018-05-31 10:57:24'), (8740, 1, '85.00', '2018-05-31 10:57:40'), (8741, 1, '75.00', '2018-05-31 10:57:49'), (8742, 1, '66.00', '2018-05-31 10:57:59'), (8743, 1, '97.00', '2018-05-31 10:58:08'), (8744, 1, '61.00', '2018-05-31 10:58:19'), (8745, 1, '95.00', '2018-05-31 10:58:28'), (8746, 1, '80.00', '2018-05-31 10:58:37'), (8747, 1, '82.00', '2018-05-31 10:58:46'), (8748, 1, '70.00', '2018-05-31 10:58:55'), (8749, 1, '73.00', '2018-05-31 10:59:06'), (8750, 1, '73.00', '2018-05-31 10:59:19'), (8751, 1, '71.00', '2018-05-31 10:59:31'), (8752, 1, '90.00', '2018-05-31 10:59:42'), (8753, 1, '76.00', '2018-05-31 10:59:55'), (8754, 1, '71.00', '2018-05-31 11:00:05'), (8755, 1, '88.00', '2018-05-31 11:00:15'), (8756, 1, '98.00', '2018-05-31 11:00:25'), (8757, 1, '92.00', '2018-05-31 11:00:35'), (8758, 1, '72.00', '2018-05-31 11:00:46'), (8759, 1, '75.00', '2018-05-31 11:00:56'), (8760, 1, '86.00', '2018-05-31 11:01:07'), (8761, 1, '72.00', '2018-05-31 11:01:18'), (8762, 1, '90.00', '2018-05-31 11:01:32'), (8763, 1, '93.00', '2018-05-31 11:01:43'), (8764, 1, '71.00', '2018-05-31 11:01:55'), (8765, 1, '75.00', '2018-05-31 11:02:04'), (8766, 1, '66.00', '2018-05-31 11:02:15'), (8767, 1, '70.00', '2018-05-31 11:02:25'), (8768, 1, '98.00', '2018-05-31 11:02:35'), (8769, 1, '92.00', '2018-05-31 11:02:46'), (8770, 1, '65.00', '2018-05-31 11:02:56'), (8771, 1, '86.00', '2018-05-31 11:03:06'), (8772, 1, '65.00', '2018-05-31 11:03:19'), (8773, 1, '96.00', '2018-05-31 11:03:29'), (8774, 1, '69.00', '2018-05-31 11:03:39'), (8775, 1, '80.00', '2018-05-31 11:03:54'), (8776, 1, '84.00', '2018-05-31 11:04:06'), (8777, 1, '80.00', '2018-05-31 11:04:16'), (8778, 1, '76.00', '2018-05-31 11:04:25'), (8779, 1, '70.00', '2018-05-31 11:04:35'), (8780, 1, '60.00', '2018-05-31 11:04:44'), (8781, 1, '62.00', '2018-05-31 11:04:55'), (8782, 1, '94.00', '2018-05-31 11:05:05'), (8783, 1, '66.00', '2018-05-31 11:05:15'), (8784, 1, '89.00', '2018-05-31 11:05:25'), (8785, 1, '99.00', '2018-05-31 11:05:34'), (8786, 1, '77.00', '2018-05-31 11:05:43'), (8787, 1, '99.00', '2018-05-31 11:05:52'), (8788, 1, '81.00', '2018-05-31 11:06:01'), (8789, 1, '96.00', '2018-05-31 11:06:10'), (8790, 1, '68.00', '2018-05-31 11:06:19'), (8791, 1, '87.00', '2018-05-31 11:06:28'), (8792, 1, '62.00', '2018-05-31 11:06:37'), (8793, 1, '78.00', '2018-05-31 11:06:46'), (8794, 1, '65.00', '2018-05-31 11:06:55'), (8795, 1, '91.00', '2018-05-31 11:07:04'), (8796, 1, '72.00', '2018-05-31 11:07:13'), (8797, 1, '69.00', '2018-05-31 11:07:22'), (8798, 1, '78.00', '2018-05-31 11:07:31'), (8799, 1, '61.00', '2018-05-31 11:07:40'), (8800, 1, '72.00', '2018-05-31 11:07:49'), (8801, 1, '64.00', '2018-05-31 11:07:58'), (8802, 1, '99.00', '2018-05-31 11:08:07'), (8803, 1, '68.00', '2018-05-31 11:08:16'), (8804, 1, '71.00', '2018-05-31 11:08:25'), (8805, 1, '62.00', '2018-05-31 11:08:34'), (8806, 1, '85.00', '2018-05-31 11:08:43'), (8807, 1, '71.00', '2018-05-31 11:08:52'), (8808, 1, '65.00', '2018-05-31 11:09:01'), (8809, 1, '82.00', '2018-05-31 11:09:10'), (8810, 1, '79.00', '2018-05-31 11:09:19'), (8811, 1, '92.00', '2018-05-31 11:09:28'), (8812, 1, '65.00', '2018-05-31 11:09:37'), (8813, 1, '79.00', '2018-05-31 11:09:46'), (8814, 1, '82.00', '2018-05-31 11:09:55'), (8815, 1, '97.00', '2018-05-31 11:10:04'), (8816, 1, '99.00', '2018-05-31 11:10:14'), (8817, 1, '99.00', '2018-05-31 11:10:23'), (8818, 1, '84.00', '2018-05-31 11:10:32'), (8819, 1, '94.00', '2018-05-31 11:10:41'), (8820, 1, '75.00', '2018-05-31 11:10:50'), (8821, 1, '63.00', '2018-05-31 11:10:59'), (8822, 1, '73.00', '2018-05-31 11:11:08'), (8823, 1, '65.00', '2018-05-31 11:11:17'), (8824, 1, '75.00', '2018-05-31 11:11:26'), (8825, 1, '66.00', '2018-05-31 11:11:35'), (8826, 1, '92.00', '2018-05-31 11:11:44'), (8827, 1, '79.00', '2018-05-31 11:11:53'), (8828, 1, '78.00', '2018-05-31 11:12:02'), (8829, 1, '69.00', '2018-05-31 11:12:11'), (8830, 1, '78.00', '2018-05-31 11:12:20'), (8831, 1, '60.00', '2018-05-31 11:12:29'), (8832, 1, '93.00', '2018-05-31 11:12:38'), (8833, 1, '62.00', '2018-05-31 11:12:47'), (8834, 1, '83.00', '2018-05-31 11:12:56'), (8835, 1, '98.00', '2018-05-31 11:13:05'), (8836, 1, '77.00', '2018-05-31 11:13:15'), (8837, 1, '67.00', '2018-05-31 11:13:23'), (8838, 1, '88.00', '2018-05-31 11:13:32'), (8839, 1, '96.00', '2018-05-31 11:13:42'), (8840, 1, '91.00', '2018-05-31 11:13:51'), (8841, 1, '77.00', '2018-05-31 11:14:00'), (8842, 1, '67.00', '2018-05-31 11:14:09'), (8843, 1, '60.00', '2018-05-31 11:14:18'), (8844, 1, '99.00', '2018-05-31 11:14:27'), (8845, 1, '63.00', '2018-05-31 11:14:36'), (8846, 1, '79.00', '2018-05-31 11:14:45'), (8847, 1, '67.00', '2018-05-31 11:14:54'), (8848, 1, '95.00', '2018-05-31 11:15:03'), (8849, 1, '87.00', '2018-05-31 11:15:12'), (8850, 1, '66.00', '2018-05-31 11:15:21'), (8851, 1, '82.00', '2018-05-31 11:15:30'), (8852, 1, '64.00', '2018-05-31 11:15:39'), (8853, 1, '96.00', '2018-05-31 11:15:48'), (8854, 1, '67.00', '2018-05-31 11:15:57'), (8855, 1, '72.00', '2018-05-31 11:16:06'), (8856, 1, '62.00', '2018-05-31 11:16:15'), (8857, 1, '94.00', '2018-05-31 11:16:24'), (8858, 1, '78.00', '2018-05-31 11:16:33'), (8859, 1, '60.00', '2018-05-31 11:16:42'), (8860, 1, '87.00', '2018-05-31 11:16:51'), (8861, 1, '88.00', '2018-05-31 11:17:00'), (8862, 1, '69.00', '2018-05-31 11:17:09'), (8863, 1, '86.00', '2018-05-31 11:17:18'), (8864, 1, '79.00', '2018-05-31 11:17:27'), (8865, 1, '85.00', '2018-05-31 11:17:36'), (8866, 1, '76.00', '2018-05-31 11:17:45'), (8867, 1, '75.00', '2018-05-31 11:17:54'), (8868, 1, '90.00', '2018-05-31 11:18:03'), (8869, 1, '60.00', '2018-05-31 11:18:12'), (8870, 1, '64.00', '2018-05-31 11:18:21'), (8871, 1, '79.00', '2018-05-31 11:18:30'), (8872, 1, '72.00', '2018-05-31 11:18:39'), (8873, 1, '73.00', '2018-05-31 11:18:48'), (8874, 1, '96.00', '2018-05-31 11:18:57'), (8875, 1, '79.00', '2018-05-31 11:19:06'), (8876, 1, '73.00', '2018-05-31 11:19:15'), (8877, 1, '93.00', '2018-05-31 11:19:24'), (8878, 1, '87.00', '2018-05-31 11:19:33'), (8879, 1, '74.00', '2018-05-31 11:19:42'), (8880, 1, '94.00', '2018-05-31 11:19:51'), (8881, 1, '93.00', '2018-05-31 11:20:00'), (8882, 1, '61.00', '2018-05-31 11:20:09'), (8883, 1, '72.00', '2018-05-31 11:20:19'), (8884, 1, '78.00', '2018-05-31 11:20:29'), (8885, 1, '62.00', '2018-05-31 11:20:38'), (8886, 1, '63.00', '2018-05-31 11:20:47'), (8887, 1, '92.00', '2018-05-31 11:20:57'), (8888, 1, '91.00', '2018-05-31 11:21:13'), (8889, 1, '65.00', '2018-05-31 11:21:22'), (8890, 1, '91.00', '2018-05-31 11:21:35'), (8891, 1, '74.00', '2018-05-31 11:21:45'), (8892, 1, '94.00', '2018-05-31 11:21:54'), (8893, 1, '89.00', '2018-05-31 11:22:03'), (8894, 1, '95.00', '2018-05-31 11:22:15'), (8895, 1, '62.00', '2018-05-31 11:22:25'), (8896, 1, '71.00', '2018-05-31 11:22:34'), (8897, 1, '90.00', '2018-05-31 11:22:43'), (8898, 1, '83.00', '2018-05-31 11:22:52'), (8899, 1, '70.00', '2018-05-31 11:23:02'), (8900, 1, '69.00', '2018-05-31 11:23:12'), (8901, 1, '64.00', '2018-05-31 11:23:21'), (8902, 1, '90.00', '2018-05-31 11:23:32'), (8903, 1, '68.00', '2018-05-31 11:23:44'), (8904, 1, '90.00', '2018-05-31 11:23:54'), (8905, 1, '83.00', '2018-05-31 11:24:03'), (8906, 1, '95.00', '2018-05-31 11:24:14'), (8907, 1, '79.00', '2018-05-31 11:24:25'), (8908, 1, '94.00', '2018-05-31 11:24:34'), (8909, 1, '82.00', '2018-05-31 11:24:43'), (8910, 1, '63.00', '2018-05-31 11:24:52'), (8911, 1, '66.00', '2018-05-31 11:25:01'), (8912, 1, '69.00', '2018-05-31 11:25:10'), (8913, 1, '84.00', '2018-05-31 11:25:19'), (8914, 1, '86.00', '2018-05-31 11:25:29'), (8915, 1, '94.00', '2018-05-31 11:25:40'), (8916, 1, '85.00', '2018-05-31 11:25:52'), (8917, 1, '86.00', '2018-05-31 11:26:02'), (8918, 1, '96.00', '2018-05-31 11:26:12'), (8919, 1, '84.00', '2018-05-31 11:26:22'), (8920, 1, '99.00', '2018-05-31 11:26:33'), (8921, 1, '67.00', '2018-05-31 11:26:42'), (8922, 1, '73.00', '2018-05-31 11:26:51'), (8923, 1, '72.00', '2018-05-31 11:27:00'), (8924, 1, '84.00', '2018-05-31 11:27:09'), (8925, 1, '64.00', '2018-05-31 11:27:18'), (8926, 1, '62.00', '2018-05-31 11:27:27'), (8927, 1, '60.00', '2018-05-31 11:27:36'), (8928, 1, '94.00', '2018-05-31 11:27:45'), (8929, 1, '70.00', '2018-05-31 11:27:54'), (8930, 1, '68.00', '2018-05-31 11:28:03'), (8931, 1, '74.00', '2018-05-31 11:28:12'), (8932, 1, '75.00', '2018-05-31 11:28:21'), (8933, 1, '92.00', '2018-05-31 11:28:30'), (8934, 1, '60.00', '2018-05-31 11:28:39'), (8935, 1, '62.00', '2018-05-31 11:28:48'), (8936, 1, '95.00', '2018-05-31 11:28:57'), (8937, 1, '93.00', '2018-05-31 11:29:06'), (8938, 1, '62.00', '2018-05-31 11:29:15'), (8939, 1, '92.00', '2018-05-31 11:29:24'), (8940, 1, '64.00', '2018-05-31 11:29:32'), (8941, 1, '91.00', '2018-05-31 11:29:41'), (8942, 1, '79.00', '2018-05-31 11:29:53'), (8943, 1, '74.00', '2018-05-31 11:30:06'), (8944, 1, '68.00', '2018-05-31 11:30:15'), (8945, 1, '66.00', '2018-05-31 11:30:24'), (8946, 1, '89.00', '2018-05-31 11:30:33'), (8947, 1, '93.00', '2018-05-31 11:30:42'), (8948, 1, '84.00', '2018-05-31 11:30:51'), (8949, 1, '98.00', '2018-05-31 11:31:00'), (8950, 1, '94.00', '2018-05-31 11:31:09'), (8951, 1, '85.00', '2018-05-31 11:31:18'), (8952, 1, '67.00', '2018-05-31 11:31:27'), (8953, 1, '97.00', '2018-05-31 11:31:36'), (8954, 1, '78.00', '2018-05-31 11:31:45'), (8955, 1, '66.00', '2018-05-31 11:31:54'), (8956, 1, '96.00', '2018-05-31 11:32:03'), (8957, 1, '93.00', '2018-05-31 11:32:12'), (8958, 1, '70.00', '2018-05-31 11:32:21'), (8959, 1, '61.00', '2018-05-31 11:32:30'), (8960, 1, '97.00', '2018-05-31 11:32:39'), (8961, 1, '82.00', '2018-05-31 11:32:48'), (8962, 1, '94.00', '2018-05-31 11:32:57'), (8963, 1, '70.00', '2018-05-31 11:33:06'), (8964, 1, '98.00', '2018-05-31 11:33:15'), (8965, 1, '83.00', '2018-05-31 11:33:24'), (8966, 1, '81.00', '2018-05-31 11:33:34'), (8967, 1, '75.00', '2018-05-31 11:33:43'), (8968, 1, '88.00', '2018-05-31 11:33:54'), (8969, 1, '69.00', '2018-05-31 11:34:11'), (8970, 1, '64.00', '2018-05-31 11:34:23'), (8971, 1, '74.00', '2018-05-31 11:34:34'), (8972, 1, '97.00', '2018-05-31 11:34:46'), (8973, 1, '62.00', '2018-05-31 11:34:55'), (8974, 1, '96.00', '2018-05-31 11:35:11'), (8975, 1, '74.00', '2018-05-31 11:35:22'), (8976, 1, '92.00', '2018-05-31 11:35:37'), (8977, 1, '77.00', '2018-05-31 11:35:48'), (8978, 1, '74.00', '2018-05-31 11:36:11'), (8979, 1, '88.00', '2018-05-31 11:36:36'), (8980, 1, '64.00', '2018-05-31 11:36:46'), (8981, 1, '72.00', '2018-05-31 11:36:56'), (8982, 1, '93.00', '2018-05-31 11:37:17'), (8983, 1, '75.00', '2018-05-31 11:37:28'), (8984, 1, '85.00', '2018-05-31 11:37:38'), (8985, 1, '71.00', '2018-05-31 11:37:51'), (8986, 1, '92.00', '2018-05-31 11:38:00'), (8987, 1, '96.00', '2018-05-31 11:38:10'), (8988, 1, '85.00', '2018-05-31 11:38:19'), (8989, 1, '98.00', '2018-05-31 11:38:29'), (8990, 1, '76.00', '2018-05-31 11:38:38'), (8991, 1, '99.00', '2018-05-31 11:38:48'), (8992, 1, '95.00', '2018-05-31 11:39:13'), (8993, 1, '98.00', '2018-05-31 11:39:50'), (8994, 1, '93.00', '2018-05-31 11:40:22'), (8995, 1, '74.00', '2018-05-31 11:40:45'), (8996, 1, '66.00', '2018-05-31 11:41:08'), (8997, 1, '74.00', '2018-05-31 11:42:34'), (8998, 1, '75.00', '2018-05-31 11:42:47'), (8999, 1, '90.00', '2018-05-31 11:42:57'), (9000, 1, '83.00', '2018-05-31 11:43:08'), (9001, 1, '94.00', '2018-05-31 11:43:20'), (9002, 1, '88.00', '2018-05-31 11:43:33'), (9003, 1, '94.00', '2018-05-31 11:43:45'), (9004, 1, '88.00', '2018-05-31 11:43:55'), (9005, 1, '79.00', '2018-05-31 11:44:04'), (9006, 1, '80.00', '2018-05-31 11:44:16'), (9007, 1, '89.00', '2018-05-31 11:44:26'), (9008, 1, '61.00', '2018-05-31 11:44:36'), (9009, 1, '85.00', '2018-05-31 11:44:46'), (9010, 1, '73.00', '2018-05-31 11:44:57'), (9011, 1, '83.00', '2018-05-31 11:45:07'), (9012, 1, '82.00', '2018-05-31 11:45:17'), (9013, 1, '64.00', '2018-05-31 11:45:26'), (9014, 1, '89.00', '2018-05-31 11:45:37'), (9015, 1, '65.00', '2018-05-31 11:45:47'), (9016, 1, '75.00', '2018-05-31 11:45:56'), (9017, 1, '81.00', '2018-05-31 11:46:05'), (9018, 1, '87.00', '2018-05-31 11:46:14'), (9019, 1, '77.00', '2018-05-31 11:46:23'), (9020, 1, '83.00', '2018-05-31 11:46:32'), (9021, 1, '97.00', '2018-05-31 11:46:41'), (9022, 1, '60.00', '2018-05-31 11:46:51'), (9023, 1, '66.00', '2018-05-31 11:47:00'), (9024, 1, '80.00', '2018-05-31 11:47:09'), (9025, 1, '74.00', '2018-05-31 11:47:20'), (9026, 1, '84.00', '2018-05-31 11:47:29'), (9027, 1, '97.00', '2018-05-31 11:47:40'), (9028, 1, '93.00', '2018-05-31 11:47:50'), (9029, 1, '61.00', '2018-05-31 11:47:59'), (9030, 1, '69.00', '2018-05-31 11:48:08'), (9031, 1, '85.00', '2018-05-31 11:48:18'), (9032, 1, '60.00', '2018-05-31 11:48:31'), (9033, 1, '82.00', '2018-05-31 11:48:40'), (9034, 1, '74.00', '2018-05-31 11:48:51'), (9035, 1, '92.00', '2018-05-31 11:49:00'), (9036, 1, '87.00', '2018-05-31 11:49:09'), (9037, 1, '92.00', '2018-05-31 11:49:18'), (9038, 1, '61.00', '2018-05-31 11:49:29'), (9039, 1, '95.00', '2018-05-31 11:49:39'), (9040, 1, '62.00', '2018-05-31 11:49:48'), (9041, 1, '80.00', '2018-05-31 11:49:57'), (9042, 1, '88.00', '2018-05-31 11:50:08'), (9043, 1, '74.00', '2018-05-31 11:50:17'), (9044, 1, '61.00', '2018-05-31 11:50:26'), (9045, 1, '63.00', '2018-05-31 11:50:35'), (9046, 1, '94.00', '2018-05-31 11:50:45'), (9047, 1, '84.00', '2018-05-31 11:50:54'), (9048, 1, '87.00', '2018-05-31 11:51:04'), (9049, 1, '89.00', '2018-05-31 11:51:13'), (9050, 1, '67.00', '2018-05-31 11:51:22'), (9051, 1, '61.00', '2018-05-31 11:51:33'), (9052, 1, '89.00', '2018-05-31 11:51:43'), (9053, 1, '66.00', '2018-05-31 11:51:54'), (9054, 1, '84.00', '2018-05-31 11:52:04'), (9055, 1, '73.00', '2018-05-31 11:52:13'), (9056, 1, '65.00', '2018-05-31 11:52:30'), (9057, 1, '70.00', '2018-05-31 11:52:40'), (9058, 1, '78.00', '2018-05-31 11:52:52'), (9059, 1, '80.00', '2018-05-31 11:53:01'), (9060, 1, '89.00', '2018-05-31 11:53:13'), (9061, 1, '87.00', '2018-05-31 11:53:24'), (9062, 1, '93.00', '2018-05-31 11:53:36'), (9063, 1, '73.00', '2018-05-31 11:53:46'), (9064, 1, '83.00', '2018-05-31 11:53:56'), (9065, 1, '63.00', '2018-05-31 11:54:12'), (9066, 1, '77.00', '2018-05-31 11:54:26'), (9067, 1, '94.00', '2018-05-31 11:54:37'), (9068, 1, '82.00', '2018-05-31 11:54:47'), (9069, 1, '84.00', '2018-05-31 11:54:56'), (9070, 1, '68.00', '2018-05-31 11:55:05'), (9071, 1, '67.00', '2018-05-31 11:55:15'), (9072, 1, '99.00', '2018-05-31 11:55:24'), (9073, 1, '80.00', '2018-05-31 11:55:33'), (9074, 1, '79.00', '2018-05-31 11:55:42'), (9075, 1, '73.00', '2018-05-31 11:55:51'), (9076, 1, '82.00', '2018-05-31 11:56:00'), (9077, 1, '95.00', '2018-05-31 11:56:09'), (9078, 1, '84.00', '2018-05-31 11:56:18'), (9079, 1, '74.00', '2018-05-31 11:56:27'), (9080, 1, '99.00', '2018-05-31 11:56:36'), (9081, 1, '89.00', '2018-05-31 11:56:45'), (9082, 1, '93.00', '2018-05-31 11:56:54'), (9083, 1, '85.00', '2018-05-31 11:57:03'), (9084, 1, '62.00', '2018-05-31 11:57:13'), (9085, 1, '93.00', '2018-05-31 11:57:22'), (9086, 1, '89.00', '2018-05-31 11:57:31'), (9087, 1, '65.00', '2018-05-31 11:57:40'), (9088, 1, '77.00', '2018-05-31 11:57:49'), (9089, 1, '82.00', '2018-05-31 11:57:58'), (9090, 1, '96.00', '2018-05-31 11:58:07'), (9091, 1, '67.00', '2018-05-31 11:58:16'), (9092, 1, '79.00', '2018-05-31 11:58:25'), (9093, 1, '85.00', '2018-05-31 11:58:34'), (9094, 1, '64.00', '2018-05-31 11:58:43'), (9095, 1, '63.00', '2018-05-31 11:58:52'), (9096, 1, '61.00', '2018-05-31 11:59:01'), (9097, 1, '83.00', '2018-05-31 11:59:11'), (9098, 1, '86.00', '2018-05-31 11:59:20'), (9099, 1, '79.00', '2018-05-31 11:59:29'), (9100, 1, '83.00', '2018-05-31 11:59:38'), (9101, 1, '74.00', '2018-05-31 11:59:47'), (9102, 1, '90.00', '2018-05-31 11:59:56'), (9103, 1, '73.00', '2018-05-31 12:00:05'), (9104, 1, '89.00', '2018-05-31 12:00:14'), (9105, 1, '97.00', '2018-05-31 12:00:23'), (9106, 1, '86.00', '2018-05-31 12:00:32'), (9107, 1, '90.00', '2018-05-31 12:00:41'), (9108, 1, '81.00', '2018-05-31 12:00:50'), (9109, 1, '83.00', '2018-05-31 12:00:59'), (9110, 1, '96.00', '2018-05-31 12:01:08'), (9111, 1, '86.00', '2018-05-31 12:01:17'), (9112, 1, '62.00', '2018-05-31 12:01:26'), (9113, 1, '77.00', '2018-05-31 12:01:35'), (9114, 1, '63.00', '2018-05-31 12:01:44'), (9115, 1, '83.00', '2018-05-31 12:01:53'), (9116, 1, '82.00', '2018-05-31 12:02:02'), (9117, 1, '92.00', '2018-05-31 12:02:11'), (9118, 1, '64.00', '2018-05-31 12:02:20'), (9119, 1, '60.00', '2018-05-31 12:02:29'), (9120, 1, '68.00', '2018-05-31 12:02:38'), (9121, 1, '64.00', '2018-05-31 12:02:47'), (9122, 1, '83.00', '2018-05-31 12:02:56'), (9123, 1, '62.00', '2018-05-31 12:03:05'), (9124, 1, '94.00', '2018-05-31 12:03:14'), (9125, 1, '70.00', '2018-05-31 12:03:23'), (9126, 1, '99.00', '2018-05-31 12:03:32'), (9127, 1, '73.00', '2018-05-31 12:03:41'), (9128, 1, '87.00', '2018-05-31 12:03:50'), (9129, 1, '82.00', '2018-05-31 12:03:59'), (9130, 1, '62.00', '2018-05-31 12:04:08'), (9131, 1, '98.00', '2018-05-31 12:04:17'), (9132, 1, '65.00', '2018-05-31 12:04:26'), (9133, 1, '61.00', '2018-05-31 12:04:35'), (9134, 1, '64.00', '2018-05-31 12:04:44'), (9135, 1, '60.00', '2018-05-31 12:04:53'), (9136, 1, '94.00', '2018-05-31 12:05:02'), (9137, 1, '79.00', '2018-05-31 12:05:11'), (9138, 1, '80.00', '2018-05-31 12:05:20'), (9139, 1, '68.00', '2018-05-31 12:05:29'), (9140, 1, '71.00', '2018-05-31 12:05:38'), (9141, 1, '69.00', '2018-05-31 12:05:47'), (9142, 1, '79.00', '2018-05-31 12:05:56'), (9143, 1, '91.00', '2018-05-31 12:06:05'), (9144, 1, '95.00', '2018-05-31 12:06:14'), (9145, 1, '86.00', '2018-05-31 12:06:23'), (9146, 1, '99.00', '2018-05-31 12:06:32'), (9147, 1, '61.00', '2018-05-31 12:06:41'), (9148, 1, '76.00', '2018-05-31 12:06:50'), (9149, 1, '74.00', '2018-05-31 12:06:59'), (9150, 1, '97.00', '2018-05-31 12:07:08'), (9151, 1, '71.00', '2018-05-31 12:07:17'), (9152, 1, '85.00', '2018-05-31 12:07:26'), (9153, 1, '94.00', '2018-05-31 12:07:35'), (9154, 1, '92.00', '2018-05-31 12:07:44'), (9155, 1, '76.00', '2018-05-31 12:07:53'), (9156, 1, '76.00', '2018-05-31 12:08:02'), (9157, 1, '94.00', '2018-05-31 12:08:11'), (9158, 1, '96.00', '2018-05-31 12:08:20'), (9159, 1, '76.00', '2018-05-31 12:08:29'), (9160, 1, '60.00', '2018-05-31 12:08:38'), (9161, 1, '96.00', '2018-05-31 12:08:47'), (9162, 1, '93.00', '2018-05-31 12:08:56'), (9163, 1, '91.00', '2018-05-31 12:09:05'), (9164, 1, '93.00', '2018-05-31 12:09:14'), (9165, 1, '82.00', '2018-05-31 12:09:23'), (9166, 1, '60.00', '2018-05-31 12:09:32'), (9167, 1, '96.00', '2018-05-31 12:09:41'), (9168, 1, '60.00', '2018-05-31 12:09:49'), (9169, 1, '61.00', '2018-05-31 12:09:59'), (9170, 1, '61.00', '2018-05-31 12:10:08'), (9171, 1, '70.00', '2018-05-31 12:10:17'), (9172, 1, '92.00', '2018-05-31 12:10:26'), (9173, 1, '71.00', '2018-05-31 12:10:35'), (9174, 1, '75.00', '2018-05-31 12:10:44'), (9175, 1, '82.00', '2018-05-31 12:10:53'), (9176, 1, '72.00', '2018-05-31 12:11:02'), (9177, 1, '91.00', '2018-05-31 12:11:11'), (9178, 1, '81.00', '2018-05-31 12:11:19'), (9179, 1, '69.00', '2018-05-31 12:11:28'), (9180, 1, '91.00', '2018-05-31 12:11:37'), (9181, 1, '80.00', '2018-05-31 12:11:47'), (9182, 1, '76.00', '2018-05-31 12:11:56'), (9183, 1, '69.00', '2018-05-31 12:12:06'), (9184, 1, '67.00', '2018-05-31 12:12:24'), (9185, 1, '63.00', '2018-05-31 12:12:36'), (9186, 1, '84.00', '2018-05-31 12:12:45'), (9187, 1, '71.00', '2018-05-31 12:12:54'), (9188, 1, '62.00', '2018-05-31 12:13:03'), (9189, 1, '60.00', '2018-05-31 12:13:12'), (9190, 1, '99.00', '2018-05-31 12:13:24'), (9191, 1, '86.00', '2018-05-31 12:13:33'), (9192, 1, '91.00', '2018-05-31 12:13:42'), (9193, 1, '97.00', '2018-05-31 12:13:53'), (9194, 1, '90.00', '2018-05-31 12:14:03'), (9195, 1, '68.00', '2018-05-31 12:14:12'), (9196, 1, '75.00', '2018-05-31 12:14:21'), (9197, 1, '88.00', '2018-05-31 12:14:31'), (9198, 1, '61.00', '2018-05-31 12:14:44'), (9199, 1, '72.00', '2018-05-31 12:14:54'), (9200, 1, '69.00', '2018-05-31 12:15:04'), (9201, 1, '85.00', '2018-05-31 12:15:13'), (9202, 1, '92.00', '2018-05-31 12:15:22'), (9203, 1, '98.00', '2018-05-31 12:15:32'), (9204, 1, '88.00', '2018-05-31 12:15:41'), (9205, 1, '91.00', '2018-05-31 12:15:51'), (9206, 1, '74.00', '2018-05-31 12:16:01'), (9207, 1, '71.00', '2018-05-31 12:16:12'), (9208, 1, '62.00', '2018-05-31 12:16:22'), (9209, 1, '86.00', '2018-05-31 12:16:33'), (9210, 1, '66.00', '2018-05-31 12:16:44'), (9211, 1, '96.00', '2018-05-31 12:16:55'), (9212, 1, '86.00', '2018-05-31 12:17:04'), (9213, 1, '70.00', '2018-05-31 12:17:14'), (9214, 1, '67.00', '2018-05-31 12:17:23'), (9215, 1, '73.00', '2018-05-31 12:17:32'), (9216, 1, '72.00', '2018-05-31 12:17:42'), (9217, 1, '61.00', '2018-05-31 12:17:52'), (9218, 1, '93.00', '2018-05-31 12:18:04'), (9219, 1, '94.00', '2018-05-31 12:18:13'), (9220, 1, '82.00', '2018-05-31 12:18:23'), (9221, 1, '70.00', '2018-05-31 12:18:34'), (9222, 1, '96.00', '2018-05-31 12:18:43'), (9223, 1, '66.00', '2018-05-31 12:18:54'), (9224, 1, '75.00', '2018-05-31 12:19:04'), (9225, 1, '93.00', '2018-05-31 12:19:13'), (9226, 1, '79.00', '2018-05-31 12:19:22'), (9227, 1, '85.00', '2018-05-31 12:19:32'), (9228, 1, '66.00', '2018-05-31 12:19:40'), (9229, 1, '80.00', '2018-05-31 12:19:49'), (9230, 1, '94.00', '2018-05-31 12:20:00'), (9231, 1, '65.00', '2018-05-31 12:20:10'), (9232, 1, '96.00', '2018-05-31 12:20:19'), (9233, 1, '78.00', '2018-05-31 12:20:29'), (9234, 1, '89.00', '2018-05-31 12:20:38'), (9235, 1, '87.00', '2018-05-31 12:20:47'), (9236, 1, '73.00', '2018-05-31 12:20:56'), (9237, 1, '68.00', '2018-05-31 12:21:04'), (9238, 1, '70.00', '2018-05-31 12:21:13'), (9239, 1, '62.00', '2018-05-31 12:21:22'), (9240, 1, '87.00', '2018-05-31 12:21:31'), (9241, 1, '93.00', '2018-05-31 12:21:40'), (9242, 1, '62.00', '2018-05-31 12:21:49'), (9243, 1, '68.00', '2018-05-31 12:21:58'), (9244, 1, '80.00', '2018-05-31 12:22:07'), (9245, 1, '82.00', '2018-05-31 12:22:16'), (9246, 1, '84.00', '2018-05-31 12:22:25'), (9247, 1, '96.00', '2018-05-31 12:22:34'), (9248, 1, '75.00', '2018-05-31 12:22:43'), (9249, 1, '85.00', '2018-05-31 12:22:52'), (9250, 1, '90.00', '2018-05-31 12:23:01'), (9251, 1, '93.00', '2018-05-31 12:23:11'), (9252, 1, '65.00', '2018-05-31 12:23:20'), (9253, 1, '78.00', '2018-05-31 12:23:29'), (9254, 1, '72.00', '2018-05-31 12:23:42'), (9255, 1, '75.00', '2018-05-31 12:23:53'), (9256, 1, '78.00', '2018-05-31 12:24:02'), (9257, 1, '82.00', '2018-05-31 12:24:11'), (9258, 1, '84.00', '2018-05-31 12:24:20'), (9259, 1, '95.00', '2018-05-31 12:24:29'), (9260, 1, '83.00', '2018-05-31 12:24:38'), (9261, 1, '67.00', '2018-05-31 12:24:47'), (9262, 1, '71.00', '2018-05-31 12:24:57'), (9263, 1, '62.00', '2018-05-31 12:25:06'), (9264, 1, '79.00', '2018-05-31 12:25:16'), (9265, 1, '98.00', '2018-05-31 12:25:26'), (9266, 1, '71.00', '2018-05-31 12:25:35'), (9267, 1, '90.00', '2018-05-31 12:25:46'), (9268, 1, '67.00', '2018-05-31 12:25:56'), (9269, 1, '70.00', '2018-05-31 12:26:07'), (9270, 1, '61.00', '2018-05-31 12:26:16'), (9271, 1, '66.00', '2018-05-31 12:26:27'), (9272, 1, '72.00', '2018-05-31 12:26:36'), (9273, 1, '78.00', '2018-05-31 12:26:46'), (9274, 1, '77.00', '2018-05-31 12:26:55'), (9275, 1, '79.00', '2018-05-31 12:27:05'), (9276, 1, '64.00', '2018-05-31 12:27:14'), (9277, 1, '96.00', '2018-05-31 12:27:23'), (9278, 1, '69.00', '2018-05-31 12:27:32'), (9279, 1, '98.00', '2018-05-31 12:27:41'), (9280, 1, '82.00', '2018-05-31 12:27:51'), (9281, 1, '87.00', '2018-05-31 12:28:01'), (9282, 1, '96.00', '2018-05-31 12:28:11'), (9283, 1, '79.00', '2018-05-31 12:28:20'), (9284, 1, '73.00', '2018-05-31 12:28:30'), (9285, 1, '89.00', '2018-05-31 12:28:39'), (9286, 1, '67.00', '2018-05-31 12:28:52'), (9287, 1, '90.00', '2018-05-31 12:29:03'), (9288, 1, '86.00', '2018-05-31 12:29:13'), (9289, 1, '76.00', '2018-05-31 12:29:22'), (9290, 1, '80.00', '2018-05-31 12:29:32'), (9291, 1, '93.00', '2018-05-31 12:29:41'), (9292, 1, '71.00', '2018-05-31 12:29:50'), (9293, 1, '94.00', '2018-05-31 12:29:59'), (9294, 1, '75.00', '2018-05-31 12:30:09'), (9295, 1, '99.00', '2018-05-31 12:30:19'), (9296, 1, '86.00', '2018-05-31 12:30:28'), (9297, 1, '90.00', '2018-05-31 12:30:38'), (9298, 1, '97.00', '2018-05-31 12:30:47'), (9299, 1, '72.00', '2018-05-31 12:30:56'), (9300, 1, '70.00', '2018-05-31 12:31:06'), (9301, 1, '94.00', '2018-05-31 12:31:15'), (9302, 1, '99.00', '2018-05-31 12:31:24'), (9303, 1, '60.00', '2018-05-31 12:31:35'), (9304, 1, '68.00', '2018-05-31 12:31:44'), (9305, 1, '75.00', '2018-05-31 12:31:53'), (9306, 1, '75.00', '2018-05-31 12:32:03'), (9307, 1, '94.00', '2018-05-31 12:32:12'), (9308, 1, '99.00', '2018-05-31 12:32:22'), (9309, 1, '99.00', '2018-05-31 12:32:31'), (9310, 1, '92.00', '2018-05-31 12:32:40'), (9311, 1, '78.00', '2018-05-31 12:32:49'), (9312, 1, '90.00', '2018-05-31 12:32:58'), (9313, 1, '82.00', '2018-05-31 12:33:07'), (9314, 1, '73.00', '2018-05-31 12:33:16'), (9315, 1, '71.00', '2018-05-31 12:33:24'), (9316, 1, '81.00', '2018-05-31 12:33:33'), (9317, 1, '74.00', '2018-05-31 12:33:42'), (9318, 1, '81.00', '2018-05-31 12:33:51'), (9319, 1, '78.00', '2018-05-31 12:34:00'), (9320, 1, '82.00', '2018-05-31 12:34:09'), (9321, 1, '62.00', '2018-05-31 12:34:18'), (9322, 1, '79.00', '2018-05-31 12:34:27'), (9323, 1, '88.00', '2018-05-31 12:34:36'), (9324, 1, '75.00', '2018-05-31 12:34:45'), (9325, 1, '60.00', '2018-05-31 12:34:54'), (9326, 1, '80.00', '2018-05-31 12:35:03'), (9327, 1, '71.00', '2018-05-31 12:35:12'), (9328, 1, '67.00', '2018-05-31 12:35:21'), (9329, 1, '98.00', '2018-05-31 12:35:30'), (9330, 1, '97.00', '2018-05-31 12:35:39'), (9331, 1, '69.00', '2018-05-31 12:35:48'), (9332, 1, '65.00', '2018-05-31 12:35:57'), (9333, 1, '91.00', '2018-05-31 12:36:06'), (9334, 1, '92.00', '2018-05-31 12:36:15'), (9335, 1, '92.00', '2018-05-31 12:36:24'), (9336, 1, '90.00', '2018-05-31 12:36:33'), (9337, 1, '96.00', '2018-05-31 12:36:42'), (9338, 1, '63.00', '2018-05-31 12:36:51'), (9339, 1, '68.00', '2018-05-31 12:37:00'), (9340, 1, '85.00', '2018-05-31 12:37:09'), (9341, 1, '90.00', '2018-05-31 12:37:18'), (9342, 1, '72.00', '2018-05-31 12:37:27'), (9343, 1, '60.00', '2018-05-31 12:37:36'), (9344, 1, '92.00', '2018-05-31 12:37:45'), (9345, 1, '84.00', '2018-05-31 12:37:54'), (9346, 1, '82.00', '2018-05-31 12:38:03'), (9347, 1, '63.00', '2018-05-31 12:38:12'), (9348, 1, '87.00', '2018-05-31 12:38:21'), (9349, 1, '92.00', '2018-05-31 12:38:30'), (9350, 1, '68.00', '2018-05-31 12:38:39'), (9351, 1, '89.00', '2018-05-31 12:38:48'), (9352, 1, '76.00', '2018-05-31 12:38:56'), (9353, 1, '70.00', '2018-05-31 12:39:05'), (9354, 1, '97.00', '2018-05-31 12:39:14'), (9355, 1, '72.00', '2018-05-31 12:39:23'), (9356, 1, '94.00', '2018-05-31 12:39:32'), (9357, 1, '83.00', '2018-05-31 12:39:41'), (9358, 1, '63.00', '2018-05-31 12:39:50'), (9359, 1, '82.00', '2018-05-31 12:39:59'), (9360, 1, '65.00', '2018-05-31 12:40:08'), (9361, 1, '87.00', '2018-05-31 12:40:17'), (9362, 1, '61.00', '2018-05-31 12:40:26'), (9363, 1, '87.00', '2018-05-31 12:40:35'), (9364, 1, '76.00', '2018-05-31 12:40:44'), (9365, 1, '89.00', '2018-05-31 12:40:53'), (9366, 1, '71.00', '2018-05-31 12:41:02'), (9367, 1, '82.00', '2018-05-31 12:41:11'), (9368, 1, '91.00', '2018-05-31 12:41:20'), (9369, 1, '91.00', '2018-05-31 12:41:29'), (9370, 1, '95.00', '2018-05-31 12:41:38'), (9371, 1, '86.00', '2018-05-31 12:41:47'), (9372, 1, '68.00', '2018-05-31 12:41:56'), (9373, 1, '88.00', '2018-05-31 12:42:05'), (9374, 1, '60.00', '2018-05-31 12:42:14'), (9375, 1, '65.00', '2018-05-31 12:42:23'), (9376, 1, '72.00', '2018-05-31 12:42:32'), (9377, 1, '79.00', '2018-05-31 12:42:41'), (9378, 1, '76.00', '2018-05-31 12:42:50'), (9379, 1, '99.00', '2018-05-31 12:42:59'), (9380, 1, '83.00', '2018-05-31 12:43:08'), (9381, 1, '68.00', '2018-05-31 12:43:16'), (9382, 1, '82.00', '2018-05-31 12:43:25'), (9383, 1, '62.00', '2018-05-31 12:43:34'), (9384, 1, '63.00', '2018-05-31 12:43:43'), (9385, 1, '80.00', '2018-05-31 12:43:52'), (9386, 1, '94.00', '2018-05-31 12:44:01'), (9387, 1, '90.00', '2018-05-31 12:44:10'), (9388, 1, '88.00', '2018-05-31 12:44:19'), (9389, 1, '76.00', '2018-05-31 12:44:28'), (9390, 1, '98.00', '2018-05-31 12:44:37'), (9391, 1, '69.00', '2018-05-31 12:44:46'), (9392, 1, '83.00', '2018-05-31 12:44:55'), (9393, 1, '61.00', '2018-05-31 12:45:04'), (9394, 1, '90.00', '2018-05-31 12:45:13'), (9395, 1, '76.00', '2018-05-31 12:45:22'), (9396, 1, '67.00', '2018-05-31 12:45:31'), (9397, 1, '95.00', '2018-05-31 12:45:40'), (9398, 1, '92.00', '2018-05-31 12:45:49'), (9399, 1, '87.00', '2018-05-31 12:45:58'), (9400, 1, '64.00', '2018-05-31 12:46:07'), (9401, 1, '86.00', '2018-05-31 12:46:16'), (9402, 1, '88.00', '2018-05-31 12:46:24'), (9403, 1, '83.00', '2018-05-31 12:46:33'), (9404, 1, '92.00', '2018-05-31 12:46:42'), (9405, 1, '94.00', '2018-05-31 12:46:51'), (9406, 1, '95.00', '2018-05-31 12:47:00'), (9407, 1, '87.00', '2018-05-31 12:47:09'), (9408, 1, '63.00', '2018-05-31 12:47:18'), (9409, 1, '96.00', '2018-05-31 12:47:27'), (9410, 1, '76.00', '2018-05-31 12:47:36'), (9411, 1, '72.00', '2018-05-31 12:47:45'), (9412, 1, '93.00', '2018-05-31 12:47:54'), (9413, 1, '71.00', '2018-05-31 12:48:03'), (9414, 1, '67.00', '2018-05-31 12:48:12'), (9415, 1, '81.00', '2018-05-31 12:48:20'), (9416, 1, '86.00', '2018-05-31 12:48:29'), (9417, 1, '72.00', '2018-05-31 12:48:38'), (9418, 1, '90.00', '2018-05-31 12:48:47'), (9419, 1, '70.00', '2018-05-31 12:48:56'), (9420, 1, '89.00', '2018-05-31 12:49:05'), (9421, 1, '67.00', '2018-05-31 12:49:14'), (9422, 1, '82.00', '2018-05-31 12:49:23'), (9423, 1, '69.00', '2018-05-31 12:49:32'), (9424, 1, '81.00', '2018-05-31 12:49:41'), (9425, 1, '80.00', '2018-05-31 12:49:50'), (9426, 1, '90.00', '2018-05-31 12:49:59'), (9427, 1, '94.00', '2018-05-31 12:50:08'), (9428, 1, '76.00', '2018-05-31 12:50:17'), (9429, 1, '60.00', '2018-05-31 12:50:26'), (9430, 1, '68.00', '2018-05-31 12:50:35'), (9431, 1, '89.00', '2018-05-31 12:50:43'), (9432, 1, '92.00', '2018-05-31 12:50:52'), (9433, 1, '91.00', '2018-05-31 12:51:01'), (9434, 1, '92.00', '2018-05-31 12:51:10'), (9435, 1, '74.00', '2018-05-31 12:51:19'), (9436, 1, '72.00', '2018-05-31 12:51:28'), (9437, 1, '61.00', '2018-05-31 12:51:37'), (9438, 1, '82.00', '2018-05-31 12:51:46'), (9439, 1, '72.00', '2018-05-31 12:51:55'), (9440, 1, '70.00', '2018-05-31 12:52:04'), (9441, 1, '74.00', '2018-05-31 12:52:13'), (9442, 1, '80.00', '2018-05-31 12:52:22'), (9443, 1, '77.00', '2018-05-31 12:52:31'), (9444, 1, '64.00', '2018-05-31 12:52:40'), (9445, 1, '65.00', '2018-05-31 12:52:49'), (9446, 1, '85.00', '2018-05-31 12:52:58'), (9447, 1, '83.00', '2018-05-31 12:53:07'), (9448, 1, '76.00', '2018-05-31 12:53:16'), (9449, 1, '81.00', '2018-05-31 12:53:24'), (9450, 1, '93.00', '2018-05-31 12:53:33'), (9451, 1, '96.00', '2018-05-31 12:53:42'), (9452, 1, '60.00', '2018-05-31 12:53:51'), (9453, 1, '65.00', '2018-05-31 12:54:00'), (9454, 1, '78.00', '2018-05-31 12:54:09'), (9455, 1, '92.00', '2018-05-31 12:54:18'), (9456, 1, '67.00', '2018-05-31 12:54:27'), (9457, 1, '67.00', '2018-05-31 12:54:36'), (9458, 1, '84.00', '2018-05-31 12:54:45'), (9459, 1, '87.00', '2018-05-31 12:54:54'), (9460, 1, '79.00', '2018-05-31 12:55:03'), (9461, 1, '87.00', '2018-05-31 12:55:12'), (9462, 1, '62.00', '2018-05-31 12:55:21'), (9463, 1, '80.00', '2018-05-31 12:55:30'), (9464, 1, '74.00', '2018-05-31 12:55:39'), (9465, 1, '88.00', '2018-05-31 12:55:48'), (9466, 1, '66.00', '2018-05-31 12:55:57'), (9467, 1, '94.00', '2018-05-31 12:56:06'), (9468, 1, '89.00', '2018-05-31 12:56:15'), (9469, 1, '62.00', '2018-05-31 12:56:24'), (9470, 1, '92.00', '2018-05-31 12:56:32'), (9471, 1, '90.00', '2018-05-31 12:56:41'), (9472, 1, '79.00', '2018-05-31 12:56:51'), (9473, 1, '92.00', '2018-05-31 12:57:00'), (9474, 1, '85.00', '2018-05-31 12:57:09'), (9475, 1, '95.00', '2018-05-31 12:57:18'), (9476, 1, '97.00', '2018-05-31 12:57:27'), (9477, 1, '69.00', '2018-05-31 12:57:36'), (9478, 1, '81.00', '2018-05-31 12:57:45'), (9479, 1, '78.00', '2018-05-31 12:57:54'), (9480, 1, '81.00', '2018-05-31 12:58:03'), (9481, 1, '78.00', '2018-05-31 12:58:12'), (9482, 1, '77.00', '2018-05-31 12:58:21'), (9483, 1, '91.00', '2018-05-31 12:58:30'), (9484, 1, '84.00', '2018-05-31 12:58:38'), (9485, 1, '75.00', '2018-05-31 12:58:47'), (9486, 1, '71.00', '2018-05-31 12:58:56'), (9487, 1, '94.00', '2018-05-31 12:59:05'), (9488, 1, '62.00', '2018-05-31 12:59:14'), (9489, 1, '75.00', '2018-05-31 12:59:23'), (9490, 1, '71.00', '2018-05-31 12:59:32'), (9491, 1, '98.00', '2018-05-31 12:59:41'), (9492, 1, '65.00', '2018-05-31 12:59:50'), (9493, 1, '74.00', '2018-05-31 12:59:59'), (9494, 1, '71.00', '2018-05-31 13:00:08'), (9495, 1, '81.00', '2018-05-31 13:00:18'), (9496, 1, '88.00', '2018-05-31 13:00:28'), (9497, 1, '86.00', '2018-05-31 13:00:38'), (9498, 1, '96.00', '2018-05-31 13:00:48'), (9499, 1, '83.00', '2018-05-31 13:00:59'), (9500, 1, '68.00', '2018-05-31 13:01:09'), (9501, 1, '65.00', '2018-05-31 13:01:19'), (9502, 1, '85.00', '2018-05-31 13:01:28'), (9503, 1, '87.00', '2018-05-31 13:01:38'), (9504, 1, '94.00', '2018-05-31 13:01:47'), (9505, 1, '73.00', '2018-05-31 13:01:56'), (9506, 1, '60.00', '2018-05-31 13:02:05'), (9507, 1, '94.00', '2018-05-31 13:02:14'), (9508, 1, '79.00', '2018-05-31 13:02:23'), (9509, 1, '75.00', '2018-05-31 13:02:32'), (9510, 1, '75.00', '2018-05-31 13:02:41'), (9511, 1, '99.00', '2018-05-31 13:02:50'), (9512, 1, '75.00', '2018-05-31 13:02:59'), (9513, 1, '71.00', '2018-05-31 13:03:08'), (9514, 1, '91.00', '2018-05-31 13:03:17'), (9515, 1, '86.00', '2018-05-31 13:03:26'), (9516, 1, '60.00', '2018-05-31 13:03:35'), (9517, 1, '97.00', '2018-05-31 13:03:44'), (9518, 1, '98.00', '2018-05-31 13:03:53'), (9519, 1, '69.00', '2018-05-31 13:04:02'), (9520, 1, '68.00', '2018-05-31 13:04:11'), (9521, 1, '84.00', '2018-05-31 13:04:20'), (9522, 1, '61.00', '2018-05-31 13:04:29'), (9523, 1, '81.00', '2018-05-31 13:04:38'), (9524, 1, '84.00', '2018-05-31 13:04:47'), (9525, 1, '73.00', '2018-05-31 13:04:55'), (9526, 1, '94.00', '2018-05-31 13:05:05'), (9527, 1, '97.00', '2018-05-31 13:05:14'), (9528, 1, '66.00', '2018-05-31 13:05:23'), (9529, 1, '81.00', '2018-05-31 13:05:32'), (9530, 1, '77.00', '2018-05-31 13:05:41'), (9531, 1, '84.00', '2018-05-31 13:05:50'), (9532, 1, '92.00', '2018-05-31 13:05:59'), (9533, 1, '95.00', '2018-05-31 13:06:08'), (9534, 1, '80.00', '2018-05-31 13:06:17'), (9535, 1, '66.00', '2018-05-31 13:06:26'), (9536, 1, '78.00', '2018-05-31 13:06:35'), (9537, 1, '75.00', '2018-05-31 13:06:44'), (9538, 1, '79.00', '2018-05-31 13:06:53'), (9539, 1, '87.00', '2018-05-31 13:07:02'), (9540, 1, '62.00', '2018-05-31 13:07:11'), (9541, 1, '90.00', '2018-05-31 13:07:20'), (9542, 1, '65.00', '2018-05-31 13:07:29'), (9543, 1, '95.00', '2018-05-31 13:07:38'), (9544, 1, '74.00', '2018-05-31 13:07:47'), (9545, 1, '78.00', '2018-05-31 13:07:55'), (9546, 1, '61.00', '2018-05-31 13:08:04'), (9547, 1, '70.00', '2018-05-31 13:08:13'), (9548, 1, '87.00', '2018-05-31 13:08:23'), (9549, 1, '81.00', '2018-05-31 13:08:32'), (9550, 1, '94.00', '2018-05-31 13:08:41'), (9551, 1, '69.00', '2018-05-31 13:08:50'), (9552, 1, '79.00', '2018-05-31 13:08:59'), (9553, 1, '61.00', '2018-05-31 13:09:08'), (9554, 1, '91.00', '2018-05-31 13:09:17'), (9555, 1, '86.00', '2018-05-31 13:09:26'), (9556, 1, '85.00', '2018-05-31 13:09:35'), (9557, 1, '87.00', '2018-05-31 13:09:44'), (9558, 1, '88.00', '2018-05-31 13:09:55'), (9559, 1, '87.00', '2018-05-31 13:10:05'), (9560, 1, '64.00', '2018-05-31 13:10:14'), (9561, 1, '92.00', '2018-05-31 13:10:22'), (9562, 1, '78.00', '2018-05-31 13:10:32'), (9563, 1, '71.00', '2018-05-31 13:10:41'), (9564, 1, '95.00', '2018-05-31 13:10:50'), (9565, 1, '83.00', '2018-05-31 13:10:59'), (9566, 1, '66.00', '2018-05-31 13:11:08'), (9567, 1, '85.00', '2018-05-31 13:11:17'), (9568, 1, '83.00', '2018-05-31 13:11:26'), (9569, 1, '78.00', '2018-05-31 13:11:35'), (9570, 1, '86.00', '2018-05-31 13:11:44'), (9571, 1, '90.00', '2018-05-31 13:11:53'), (9572, 1, '77.00', '2018-05-31 13:12:02'), (9573, 1, '91.00', '2018-05-31 13:12:11'), (9574, 1, '60.00', '2018-05-31 13:12:20'), (9575, 1, '77.00', '2018-05-31 13:12:29'), (9576, 1, '91.00', '2018-05-31 13:12:38'), (9577, 1, '85.00', '2018-05-31 13:12:47'), (9578, 1, '65.00', '2018-05-31 13:12:56'), (9579, 1, '97.00', '2018-05-31 13:13:05'), (9580, 1, '99.00', '2018-05-31 13:13:14'), (9581, 1, '73.00', '2018-05-31 13:13:23'), (9582, 1, '68.00', '2018-05-31 13:13:32'), (9583, 1, '85.00', '2018-05-31 13:13:41'), (9584, 1, '71.00', '2018-05-31 13:13:50'), (9585, 1, '94.00', '2018-05-31 13:13:59'), (9586, 1, '67.00', '2018-05-31 13:14:08'), (9587, 1, '68.00', '2018-05-31 13:14:17'), (9588, 1, '79.00', '2018-05-31 13:14:26'), (9589, 1, '92.00', '2018-05-31 13:14:35'), (9590, 1, '67.00', '2018-05-31 13:14:44'), (9591, 1, '90.00', '2018-05-31 13:14:53'), (9592, 1, '88.00', '2018-05-31 13:15:02'), (9593, 1, '93.00', '2018-05-31 13:15:11'), (9594, 1, '93.00', '2018-05-31 13:15:20'), (9595, 1, '67.00', '2018-05-31 13:15:29'), (9596, 1, '95.00', '2018-05-31 13:15:38'), (9597, 1, '94.00', '2018-05-31 13:15:47'), (9598, 1, '91.00', '2018-05-31 13:15:56'), (9599, 1, '92.00', '2018-05-31 13:16:05'), (9600, 1, '81.00', '2018-05-31 13:16:14'), (9601, 1, '80.00', '2018-05-31 13:16:23'), (9602, 1, '78.00', '2018-05-31 13:16:32'), (9603, 1, '98.00', '2018-05-31 13:16:41'), (9604, 1, '80.00', '2018-05-31 13:16:50'), (9605, 1, '65.00', '2018-05-31 13:16:59'), (9606, 1, '60.00', '2018-05-31 13:17:08'), (9607, 1, '68.00', '2018-05-31 13:17:16'), (9608, 1, '96.00', '2018-05-31 13:17:25'), (9609, 1, '84.00', '2018-05-31 13:17:34'), (9610, 1, '93.00', '2018-05-31 13:17:43'), (9611, 1, '95.00', '2018-05-31 13:17:52'), (9612, 1, '98.00', '2018-05-31 13:18:01'), (9613, 1, '63.00', '2018-05-31 13:18:10'), (9614, 1, '80.00', '2018-05-31 13:18:19'), (9615, 1, '65.00', '2018-05-31 13:18:28'), (9616, 1, '91.00', '2018-05-31 13:18:37'), (9617, 1, '96.00', '2018-05-31 13:18:46'), (9618, 1, '90.00', '2018-05-31 13:18:55'), (9619, 1, '79.00', '2018-05-31 13:19:04'), (9620, 1, '68.00', '2018-05-31 13:19:13'), (9621, 1, '71.00', '2018-05-31 13:19:22'), (9622, 1, '99.00', '2018-05-31 13:19:31'), (9623, 1, '99.00', '2018-05-31 13:19:40'), (9624, 1, '84.00', '2018-05-31 13:19:49'), (9625, 1, '89.00', '2018-05-31 13:19:58'), (9626, 1, '62.00', '2018-05-31 13:20:07'), (9627, 1, '79.00', '2018-05-31 13:20:16'), (9628, 1, '69.00', '2018-05-31 13:20:25'), (9629, 1, '99.00', '2018-05-31 13:20:34'), (9630, 1, '82.00', '2018-05-31 13:20:43'), (9631, 1, '88.00', '2018-05-31 13:20:51'), (9632, 1, '86.00', '2018-05-31 13:21:00'), (9633, 1, '71.00', '2018-05-31 13:21:09'), (9634, 1, '61.00', '2018-05-31 13:21:19'), (9635, 1, '70.00', '2018-05-31 13:21:27'), (9636, 1, '91.00', '2018-05-31 13:21:36'), (9637, 1, '82.00', '2018-05-31 13:21:46'), (9638, 1, '67.00', '2018-05-31 13:21:54'), (9639, 1, '61.00', '2018-05-31 13:22:04'), (9640, 1, '76.00', '2018-05-31 13:22:12'), (9641, 1, '85.00', '2018-05-31 13:22:21'), (9642, 1, '63.00', '2018-05-31 13:22:30'), (9643, 1, '90.00', '2018-05-31 13:22:39'), (9644, 1, '69.00', '2018-05-31 13:22:49'), (9645, 1, '95.00', '2018-05-31 13:22:58'), (9646, 1, '94.00', '2018-05-31 13:23:07'), (9647, 1, '88.00', '2018-05-31 13:23:15'), (9648, 1, '65.00', '2018-05-31 13:23:24'), (9649, 1, '79.00', '2018-05-31 13:23:33'), (9650, 1, '66.00', '2018-05-31 13:23:43'), (9651, 1, '99.00', '2018-05-31 13:23:52'), (9652, 1, '75.00', '2018-05-31 13:24:01'), (9653, 1, '70.00', '2018-05-31 13:24:10'), (9654, 1, '61.00', '2018-05-31 13:24:19'), (9655, 1, '90.00', '2018-05-31 13:24:28'), (9656, 1, '67.00', '2018-05-31 13:24:37'), (9657, 1, '84.00', '2018-05-31 13:24:46'), (9658, 1, '90.00', '2018-05-31 13:24:55'), (9659, 1, '91.00', '2018-05-31 13:25:04'), (9660, 1, '83.00', '2018-05-31 13:25:13'), (9661, 1, '91.00', '2018-05-31 13:25:22'), (9662, 1, '77.00', '2018-05-31 13:25:32'), (9663, 1, '73.00', '2018-05-31 13:25:41'), (9664, 1, '64.00', '2018-05-31 13:25:50'), (9665, 1, '83.00', '2018-05-31 13:25:59'), (9666, 1, '64.00', '2018-05-31 13:26:08'), (9667, 1, '97.00', '2018-05-31 13:26:16'), (9668, 1, '66.00', '2018-05-31 13:26:25'), (9669, 1, '98.00', '2018-05-31 13:26:34'), (9670, 1, '72.00', '2018-05-31 13:26:43'), (9671, 1, '60.00', '2018-05-31 13:26:52'), (9672, 1, '62.00', '2018-05-31 13:27:01'), (9673, 1, '74.00', '2018-05-31 13:27:10'), (9674, 1, '87.00', '2018-05-31 13:27:19'), (9675, 1, '95.00', '2018-05-31 13:27:28'), (9676, 1, '98.00', '2018-05-31 13:27:37'), (9677, 1, '86.00', '2018-05-31 13:27:46'), (9678, 1, '75.00', '2018-05-31 13:27:55'), (9679, 1, '67.00', '2018-05-31 13:28:04'), (9680, 1, '80.00', '2018-05-31 13:28:13'), (9681, 1, '91.00', '2018-05-31 13:28:22'), (9682, 1, '60.00', '2018-05-31 13:28:31'), (9683, 1, '74.00', '2018-05-31 13:28:40'), (9684, 1, '93.00', '2018-05-31 13:28:49'), (9685, 1, '90.00', '2018-05-31 13:28:58'), (9686, 1, '60.00', '2018-05-31 13:29:07'), (9687, 1, '64.00', '2018-05-31 13:29:16'), (9688, 1, '69.00', '2018-05-31 13:29:25'), (9689, 1, '61.00', '2018-05-31 13:29:34'), (9690, 1, '68.00', '2018-05-31 13:29:43'), (9691, 1, '93.00', '2018-05-31 13:29:52'), (9692, 1, '61.00', '2018-05-31 13:30:01'), (9693, 1, '91.00', '2018-05-31 13:30:10'), (9694, 1, '87.00', '2018-05-31 13:30:19'), (9695, 1, '75.00', '2018-05-31 13:30:28'), (9696, 1, '85.00', '2018-05-31 13:30:37'), (9697, 1, '94.00', '2018-05-31 13:30:46'), (9698, 1, '78.00', '2018-05-31 13:30:55'), (9699, 1, '72.00', '2018-05-31 13:31:04'), (9700, 1, '78.00', '2018-05-31 13:31:13'), (9701, 1, '86.00', '2018-05-31 13:31:22'), (9702, 1, '62.00', '2018-05-31 13:31:31'), (9703, 1, '66.00', '2018-05-31 13:31:40'), (9704, 1, '88.00', '2018-05-31 13:31:49'), (9705, 1, '76.00', '2018-05-31 13:31:58'), (9706, 1, '90.00', '2018-05-31 13:32:07'), (9707, 1, '69.00', '2018-05-31 13:32:16'), (9708, 1, '67.00', '2018-05-31 13:32:25'), (9709, 1, '99.00', '2018-05-31 13:32:34'), (9710, 1, '79.00', '2018-05-31 13:32:43'), (9711, 1, '63.00', '2018-05-31 13:32:52'), (9712, 1, '99.00', '2018-05-31 13:33:01'), (9713, 1, '66.00', '2018-05-31 13:33:10'), (9714, 1, '86.00', '2018-05-31 13:33:19'), (9715, 1, '80.00', '2018-05-31 13:33:28'), (9716, 1, '86.00', '2018-05-31 13:33:37'), (9717, 1, '81.00', '2018-05-31 13:33:46'), (9718, 1, '96.00', '2018-05-31 13:33:55'), (9719, 1, '91.00', '2018-05-31 13:34:04'), (9720, 1, '92.00', '2018-05-31 13:34:13'), (9721, 1, '84.00', '2018-05-31 13:34:22'), (9722, 1, '68.00', '2018-05-31 13:34:31'), (9723, 1, '71.00', '2018-05-31 13:34:40'), (9724, 1, '74.00', '2018-05-31 13:34:49'), (9725, 1, '95.00', '2018-05-31 13:34:58'), (9726, 1, '79.00', '2018-05-31 13:35:07'), (9727, 1, '73.00', '2018-05-31 13:35:16'), (9728, 1, '87.00', '2018-05-31 13:35:25'), (9729, 1, '97.00', '2018-05-31 13:35:34'), (9730, 1, '83.00', '2018-05-31 13:35:43'), (9731, 1, '89.00', '2018-05-31 13:35:52'), (9732, 1, '78.00', '2018-05-31 13:36:01'), (9733, 1, '82.00', '2018-05-31 13:36:10'), (9734, 1, '87.00', '2018-05-31 13:36:19'), (9735, 1, '86.00', '2018-05-31 13:36:28'), (9736, 1, '89.00', '2018-05-31 13:36:37'), (9737, 1, '97.00', '2018-05-31 13:36:46'), (9738, 1, '89.00', '2018-05-31 13:36:55'), (9739, 1, '77.00', '2018-05-31 13:37:04'), (9740, 1, '87.00', '2018-05-31 13:37:13'), (9741, 1, '89.00', '2018-05-31 13:37:22'), (9742, 1, '62.00', '2018-05-31 13:37:31'), (9743, 1, '84.00', '2018-05-31 13:37:41'), (9744, 1, '77.00', '2018-05-31 13:37:49'), (9745, 1, '68.00', '2018-05-31 13:37:58'), (9746, 1, '67.00', '2018-05-31 13:38:07'), (9747, 1, '93.00', '2018-05-31 13:38:17'), (9748, 1, '75.00', '2018-05-31 13:38:26'), (9749, 1, '67.00', '2018-05-31 13:38:35'), (9750, 1, '81.00', '2018-05-31 13:38:43'), (9751, 1, '94.00', '2018-05-31 13:38:52'), (9752, 1, '62.00', '2018-05-31 13:39:01'), (9753, 1, '88.00', '2018-05-31 13:39:10'), (9754, 1, '71.00', '2018-05-31 13:39:19'), (9755, 1, '94.00', '2018-05-31 13:39:28'), (9756, 1, '69.00', '2018-05-31 13:39:38'), (9757, 1, '93.00', '2018-05-31 13:39:47'), (9758, 1, '94.00', '2018-05-31 13:39:56'), (9759, 1, '75.00', '2018-05-31 13:40:06'), (9760, 1, '87.00', '2018-05-31 13:40:15'), (9761, 1, '71.00', '2018-05-31 13:40:24'), (9762, 1, '62.00', '2018-05-31 13:40:33'), (9763, 1, '82.00', '2018-05-31 13:40:41'); INSERT INTO `leitura` (`idLeitura`, `idMonitor`, `nivel`, `dataHora`) VALUES (9764, 1, '66.00', '2018-05-31 13:40:50'), (9765, 1, '91.00', '2018-05-31 13:40:59'), (9766, 1, '94.00', '2018-05-31 13:41:08'), (9767, 1, '81.00', '2018-05-31 13:41:17'), (9768, 1, '69.00', '2018-05-31 13:41:26'), (9769, 1, '64.00', '2018-05-31 13:41:36'), (9770, 1, '65.00', '2018-05-31 13:41:45'), (9771, 1, '78.00', '2018-05-31 13:41:53'), (9772, 1, '80.00', '2018-05-31 13:42:02'), (9773, 1, '68.00', '2018-05-31 13:42:11'), (9774, 1, '90.00', '2018-05-31 13:42:20'), (9775, 1, '83.00', '2018-05-31 13:42:29'), (9776, 1, '76.00', '2018-05-31 13:42:38'), (9777, 1, '90.00', '2018-05-31 13:42:47'), (9778, 1, '94.00', '2018-05-31 13:42:57'), (9779, 1, '74.00', '2018-05-31 13:43:06'), (9780, 1, '98.00', '2018-05-31 13:43:15'), (9781, 1, '66.00', '2018-05-31 13:43:25'), (9782, 1, '79.00', '2018-05-31 13:43:36'), (9783, 1, '86.00', '2018-05-31 13:43:50'), (9784, 1, '79.00', '2018-05-31 13:44:36'), (9785, 1, '95.00', '2018-05-31 13:45:54'), (9786, 1, '81.00', '2018-05-31 13:47:19'), (9787, 1, '73.00', '2018-05-31 13:47:33'), (9788, 1, '92.00', '2018-05-31 13:47:45'), (9789, 1, '99.00', '2018-05-31 13:47:55'), (9790, 1, '69.00', '2018-05-31 13:48:05'), (9791, 1, '84.00', '2018-05-31 13:48:15'), (9792, 1, '82.00', '2018-05-31 13:48:25'), (9793, 1, '66.00', '2018-05-31 13:48:34'), (9794, 1, '90.00', '2018-05-31 13:48:43'), (9795, 1, '72.00', '2018-05-31 13:48:52'), (9796, 1, '89.00', '2018-05-31 13:49:03'), (9797, 1, '76.00', '2018-05-31 13:49:12'), (9798, 1, '92.00', '2018-05-31 13:49:23'), (9799, 1, '96.00', '2018-05-31 13:49:32'), (9800, 1, '81.00', '2018-05-31 13:49:42'), (9801, 1, '66.00', '2018-05-31 13:49:52'), (9802, 1, '84.00', '2018-05-31 13:50:02'), (9803, 1, '79.00', '2018-05-31 13:50:11'), (9804, 1, '95.00', '2018-05-31 13:50:21'), (9805, 1, '94.00', '2018-05-31 13:50:30'), (9806, 1, '82.00', '2018-05-31 13:50:43'), (9807, 1, '76.00', '2018-05-31 13:50:52'), (9808, 1, '83.00', '2018-05-31 13:51:01'), (9809, 1, '79.00', '2018-05-31 13:51:10'), (9810, 1, '90.00', '2018-05-31 13:51:20'), (9811, 1, '88.00', '2018-05-31 13:51:31'), (9812, 1, '67.00', '2018-05-31 13:51:40'), (9813, 1, '98.00', '2018-05-31 13:51:51'), (9814, 1, '79.00', '2018-05-31 13:52:00'), (9815, 1, '85.00', '2018-05-31 13:52:10'), (9816, 1, '66.00', '2018-05-31 13:52:20'), (9817, 1, '81.00', '2018-05-31 13:52:29'), (9818, 1, '61.00', '2018-05-31 13:52:38'), (9819, 1, '80.00', '2018-05-31 13:52:48'), (9820, 1, '85.00', '2018-05-31 13:52:57'), (9821, 1, '71.00', '2018-05-31 13:53:06'), (9822, 1, '71.00', '2018-05-31 13:53:15'), (9823, 1, '61.00', '2018-05-31 13:53:24'), (9824, 1, '89.00', '2018-05-31 13:53:34'), (9825, 1, '82.00', '2018-05-31 13:53:43'), (9826, 1, '87.00', '2018-05-31 13:53:52'), (9827, 1, '72.00', '2018-05-31 13:54:01'), (9828, 1, '67.00', '2018-05-31 13:54:10'), (9829, 1, '79.00', '2018-05-31 13:54:20'), (9830, 1, '88.00', '2018-05-31 13:54:30'), (9831, 1, '71.00', '2018-05-31 13:54:40'), (9832, 1, '79.00', '2018-05-31 13:54:49'), (9833, 1, '82.00', '2018-05-31 13:54:59'), (9834, 1, '67.00', '2018-05-31 13:55:08'), (9835, 1, '67.00', '2018-05-31 13:55:17'), (9836, 1, '71.00', '2018-05-31 13:55:27'), (9837, 1, '67.00', '2018-05-31 13:55:37'), (9838, 1, '92.00', '2018-05-31 13:55:47'), (9839, 1, '92.00', '2018-05-31 13:55:56'), (9840, 1, '62.00', '2018-05-31 13:56:05'), (9841, 1, '96.00', '2018-05-31 13:56:14'), (9842, 1, '61.00', '2018-05-31 13:56:23'), (9843, 1, '92.00', '2018-05-31 13:56:31'), (9844, 1, '83.00', '2018-05-31 13:56:40'), (9845, 1, '75.00', '2018-05-31 13:56:49'), (9846, 1, '72.00', '2018-05-31 13:56:58'), (9847, 1, '91.00', '2018-05-31 13:57:07'), (9848, 1, '86.00', '2018-05-31 13:57:16'), (9849, 1, '67.00', '2018-05-31 13:57:25'), (9850, 1, '75.00', '2018-05-31 13:57:34'), (9851, 1, '83.00', '2018-05-31 13:57:43'), (9852, 1, '91.00', '2018-05-31 13:57:52'), (9853, 1, '89.00', '2018-05-31 13:58:01'), (9854, 1, '84.00', '2018-05-31 13:58:10'), (9855, 1, '95.00', '2018-05-31 13:58:19'), (9856, 1, '64.00', '2018-05-31 13:58:28'), (9857, 1, '89.00', '2018-05-31 13:58:37'), (9858, 1, '82.00', '2018-05-31 13:58:46'), (9859, 1, '61.00', '2018-05-31 13:58:55'), (9860, 1, '66.00', '2018-05-31 13:59:04'), (9861, 1, '65.00', '2018-05-31 13:59:13'), (9862, 1, '95.00', '2018-05-31 13:59:22'), (9863, 1, '91.00', '2018-05-31 13:59:32'), (9864, 1, '62.00', '2018-05-31 14:00:14'), (9865, 1, '87.00', '2018-05-31 14:00:45'), (9866, 1, '97.00', '2018-05-31 14:01:14'), (9867, 1, '83.00', '2018-05-31 14:01:25'), (9868, 1, '64.00', '2018-05-31 14:01:45'), (9869, 1, '72.00', '2018-05-31 14:02:12'), (9870, 1, '79.00', '2018-05-31 14:02:25'), (9871, 1, '68.00', '2018-05-31 14:02:41'), (9872, 1, '97.00', '2018-05-31 14:02:50'), (9873, 1, '69.00', '2018-05-31 14:02:59'), (9874, 1, '85.00', '2018-05-31 14:03:10'), (9875, 1, '97.00', '2018-05-31 14:03:20'), (9876, 1, '71.00', '2018-05-31 14:03:30'), (9877, 1, '81.00', '2018-05-31 14:03:39'), (9878, 1, '99.00', '2018-05-31 14:03:48'), (9879, 1, '60.00', '2018-05-31 14:03:57'), (9880, 1, '86.00', '2018-05-31 14:04:06'), (9881, 1, '79.00', '2018-05-31 14:04:15'), (9882, 1, '92.00', '2018-05-31 14:04:24'), (9883, 1, '63.00', '2018-05-31 14:04:33'), (9884, 1, '60.00', '2018-05-31 14:04:43'), (9885, 1, '82.00', '2018-05-31 14:04:52'), (9886, 1, '64.00', '2018-05-31 14:05:01'), (9887, 1, '83.00', '2018-05-31 14:05:10'), (9888, 1, '84.00', '2018-05-31 14:05:20'), (9889, 1, '78.00', '2018-05-31 14:05:31'), (9890, 1, '71.00', '2018-05-31 14:05:40'), (9891, 1, '78.00', '2018-05-31 14:05:49'), (9892, 1, '65.00', '2018-05-31 14:05:59'), (9893, 1, '91.00', '2018-05-31 14:06:08'), (9894, 1, '71.00', '2018-05-31 14:06:17'), (9895, 1, '88.00', '2018-05-31 14:06:27'), (9896, 1, '61.00', '2018-05-31 14:06:36'), (9897, 1, '65.00', '2018-05-31 14:06:45'), (9898, 1, '75.00', '2018-05-31 14:06:55'), (9899, 1, '68.00', '2018-05-31 14:07:04'), (9900, 1, '94.00', '2018-05-31 14:07:13'), (9901, 1, '65.00', '2018-05-31 14:07:23'), (9902, 1, '90.00', '2018-05-31 14:07:32'), (9903, 1, '87.00', '2018-05-31 14:07:43'), (9904, 1, '86.00', '2018-05-31 14:07:53'), (9905, 1, '66.00', '2018-05-31 14:08:02'), (9906, 1, '76.00', '2018-05-31 14:08:12'), (9907, 1, '88.00', '2018-05-31 14:08:21'), (9908, 1, '73.00', '2018-05-31 14:08:30'), (9909, 1, '74.00', '2018-05-31 14:08:40'), (9910, 1, '85.00', '2018-05-31 14:08:49'), (9911, 1, '85.00', '2018-05-31 14:08:59'), (9912, 1, '63.00', '2018-05-31 14:09:08'), (9913, 1, '96.00', '2018-05-31 14:09:17'), (9914, 1, '94.00', '2018-05-31 14:09:26'), (9915, 1, '90.00', '2018-05-31 14:09:36'), (9916, 1, '83.00', '2018-05-31 14:09:45'), (9917, 1, '68.00', '2018-05-31 14:09:54'), (9918, 1, '79.00', '2018-05-31 14:10:04'), (9919, 1, '87.00', '2018-05-31 14:10:13'), (9920, 1, '62.00', '2018-05-31 14:10:22'), (9921, 1, '82.00', '2018-05-31 14:10:32'), (9922, 1, '97.00', '2018-05-31 14:10:43'), (9923, 1, '85.00', '2018-05-31 14:10:56'), (9924, 1, '92.00', '2018-05-31 14:11:06'), (9925, 1, '67.00', '2018-05-31 14:11:16'), (9926, 1, '94.00', '2018-05-31 14:11:25'), (9927, 1, '81.00', '2018-05-31 14:11:35'), (9928, 1, '83.00', '2018-05-31 14:11:45'), (9929, 1, '82.00', '2018-05-31 14:11:54'), (9930, 1, '73.00', '2018-05-31 14:12:04'), (9931, 1, '88.00', '2018-05-31 14:12:14'), (9932, 1, '93.00', '2018-05-31 14:12:23'), (9933, 1, '78.00', '2018-05-31 14:12:33'), (9934, 1, '65.00', '2018-05-31 14:12:43'), (9935, 1, '91.00', '2018-05-31 14:12:52'), (9936, 1, '97.00', '2018-05-31 14:13:02'), (9937, 1, '70.00', '2018-05-31 14:13:12'), (9938, 1, '90.00', '2018-05-31 14:13:20'), (9939, 1, '95.00', '2018-05-31 14:13:30'), (9940, 1, '92.00', '2018-05-31 14:13:40'), (9941, 1, '86.00', '2018-05-31 14:13:49'), (9942, 1, '68.00', '2018-05-31 14:13:58'), (9943, 1, '88.00', '2018-05-31 14:14:07'), (9944, 1, '71.00', '2018-05-31 14:14:17'), (9945, 1, '82.00', '2018-05-31 14:14:26'), (9946, 1, '98.00', '2018-05-31 14:14:36'), (9947, 1, '70.00', '2018-05-31 14:14:45'), (9948, 1, '67.00', '2018-05-31 14:14:55'), (9949, 1, '71.00', '2018-05-31 14:15:04'), (9950, 1, '90.00', '2018-05-31 14:15:16'), (9951, 1, '81.00', '2018-05-31 14:15:27'), (9952, 1, '79.00', '2018-05-31 14:15:36'), (9953, 1, '63.00', '2018-05-31 14:15:45'), (9954, 1, '61.00', '2018-05-31 14:15:54'), (9955, 1, '80.00', '2018-05-31 14:16:05'), (9956, 1, '97.00', '2018-05-31 14:16:15'), (9957, 1, '98.00', '2018-05-31 14:16:24'), (9958, 1, '88.00', '2018-05-31 14:16:36'), (9959, 1, '87.00', '2018-05-31 14:16:45'), (9960, 1, '75.00', '2018-05-31 14:16:55'), (9961, 1, '71.00', '2018-05-31 14:17:04'), (9962, 1, '61.00', '2018-05-31 14:17:13'), (9963, 1, '70.00', '2018-05-31 14:17:23'), (9964, 1, '98.00', '2018-05-31 14:17:32'), (9965, 1, '83.00', '2018-05-31 14:17:41'), (9966, 1, '91.00', '2018-05-31 14:17:51'), (9967, 1, '60.00', '2018-05-31 14:18:00'), (9968, 1, '72.00', '2018-05-31 14:18:09'), (9969, 1, '86.00', '2018-05-31 14:18:19'), (9970, 1, '68.00', '2018-05-31 14:18:28'), (9971, 1, '73.00', '2018-05-31 14:18:38'), (9972, 1, '95.00', '2018-05-31 14:18:47'), (9973, 1, '88.00', '2018-05-31 14:18:56'), (9974, 1, '98.00', '2018-05-31 14:19:05'), (9975, 1, '81.00', '2018-05-31 14:19:15'), (9976, 1, '74.00', '2018-05-31 14:19:24'), (9977, 1, '78.00', '2018-05-31 14:19:33'), (9978, 1, '81.00', '2018-05-31 14:19:43'), (9979, 1, '94.00', '2018-05-31 14:19:54'), (9980, 1, '77.00', '2018-05-31 14:20:04'), (9981, 1, '99.00', '2018-05-31 14:20:14'), (9982, 1, '95.00', '2018-05-31 14:20:23'), (9983, 1, '75.00', '2018-05-31 14:20:32'), (9984, 1, '73.00', '2018-05-31 14:20:42'), (9985, 1, '96.00', '2018-05-31 14:20:51'), (9986, 1, '76.00', '2018-05-31 14:21:01'), (9987, 1, '82.00', '2018-05-31 14:21:10'), (9988, 1, '93.00', '2018-05-31 14:21:22'), (9989, 1, '80.00', '2018-05-31 14:21:32'), (9990, 1, '84.00', '2018-05-31 14:21:41'), (9991, 1, '80.00', '2018-05-31 14:21:50'), (9992, 1, '68.00', '2018-05-31 14:21:59'), (9993, 1, '86.00', '2018-05-31 14:22:09'), (9994, 1, '86.00', '2018-05-31 14:22:18'), (9995, 1, '69.00', '2018-05-31 14:22:28'), (9996, 1, '61.00', '2018-05-31 14:22:37'), (9997, 1, '73.00', '2018-05-31 14:22:46'), (9998, 1, '66.00', '2018-05-31 14:22:56'), (9999, 1, '82.00', '2018-05-31 14:23:09'), (10000, 1, '71.00', '2018-05-31 14:23:20'), (10001, 1, '62.00', '2018-05-31 14:23:30'), (10002, 1, '91.00', '2018-05-31 14:23:40'), (10003, 1, '64.00', '2018-05-31 14:23:50'), (10004, 1, '69.00', '2018-05-31 14:24:01'), (10005, 1, '67.00', '2018-05-31 14:24:11'), (10006, 1, '67.00', '2018-05-31 14:24:20'), (10007, 1, '96.00', '2018-05-31 14:24:33'), (10008, 1, '94.00', '2018-05-31 14:24:43'), (10009, 1, '63.00', '2018-05-31 14:24:52'), (10010, 1, '68.00', '2018-05-31 14:25:01'), (10011, 1, '62.00', '2018-05-31 14:25:10'), (10012, 1, '96.00', '2018-05-31 14:25:20'), (10013, 1, '80.00', '2018-05-31 14:25:29'), (10014, 1, '60.00', '2018-05-31 14:25:38'), (10015, 1, '87.00', '2018-05-31 14:25:48'), (10016, 1, '72.00', '2018-05-31 14:25:57'), (10017, 1, '85.00', '2018-05-31 14:26:07'), (10018, 1, '62.00', '2018-05-31 14:26:16'), (10019, 1, '84.00', '2018-05-31 14:26:26'), (10020, 1, '85.00', '2018-05-31 14:26:35'), (10021, 1, '99.00', '2018-05-31 14:26:45'), (10022, 1, '64.00', '2018-05-31 14:26:55'), (10023, 1, '82.00', '2018-05-31 14:27:04'), (10024, 1, '90.00', '2018-05-31 14:27:13'), (10025, 1, '83.00', '2018-05-31 14:27:22'), (10026, 1, '67.00', '2018-05-31 14:27:32'), (10027, 1, '93.00', '2018-05-31 14:27:42'), (10028, 1, '78.00', '2018-05-31 14:27:51'), (10029, 1, '95.00', '2018-05-31 14:28:07'), (10030, 1, '73.00', '2018-05-31 14:28:17'), (10031, 1, '61.00', '2018-05-31 14:28:28'), (10032, 1, '75.00', '2018-05-31 14:28:40'), (10033, 1, '79.00', '2018-05-31 14:28:49'), (10034, 1, '68.00', '2018-05-31 14:29:00'), (10035, 1, '62.00', '2018-05-31 14:29:09'), (10036, 1, '91.00', '2018-05-31 14:29:19'), (10037, 1, '99.00', '2018-05-31 14:29:29'), (10038, 1, '86.00', '2018-05-31 14:29:39'), (10039, 1, '91.00', '2018-05-31 14:29:49'), (10040, 1, '74.00', '2018-05-31 14:29:58'), (10041, 1, '61.00', '2018-05-31 14:30:07'), (10042, 1, '83.00', '2018-05-31 14:30:17'), (10043, 1, '91.00', '2018-05-31 14:30:28'), (10044, 1, '67.00', '2018-05-31 14:30:37'), (10045, 1, '96.00', '2018-05-31 14:30:47'), (10046, 1, '64.00', '2018-05-31 14:30:57'), (10047, 1, '97.00', '2018-05-31 14:31:08'), (10048, 1, '80.00', '2018-05-31 14:31:17'), (10049, 1, '89.00', '2018-05-31 14:31:31'), (10050, 1, '61.00', '2018-05-31 14:31:41'), (10051, 1, '97.00', '2018-05-31 14:31:50'), (10052, 1, '84.00', '2018-05-31 14:31:59'), (10053, 1, '96.00', '2018-05-31 14:32:09'), (10054, 1, '89.00', '2018-05-31 14:32:20'), (10055, 1, '71.00', '2018-05-31 14:32:30'), (10056, 1, '73.00', '2018-05-31 14:32:40'), (10057, 1, '70.00', '2018-05-31 14:32:50'), (10058, 1, '70.00', '2018-05-31 14:32:59'), (10059, 1, '71.00', '2018-05-31 14:33:10'), (10060, 1, '75.00', '2018-05-31 14:33:19'), (10061, 1, '92.00', '2018-05-31 14:33:29'), (10062, 1, '64.00', '2018-05-31 14:33:39'), (10063, 1, '80.00', '2018-05-31 14:33:48'), (10064, 1, '61.00', '2018-05-31 14:33:58'), (10065, 1, '63.00', '2018-05-31 14:34:07'), (10066, 1, '82.00', '2018-05-31 14:34:16'), (10067, 1, '81.00', '2018-05-31 14:34:25'), (10068, 1, '61.00', '2018-05-31 14:34:35'), (10069, 1, '65.00', '2018-05-31 14:34:44'), (10070, 1, '99.00', '2018-05-31 14:34:55'), (10071, 1, '82.00', '2018-05-31 14:35:04'), (10072, 1, '72.00', '2018-05-31 14:35:13'), (10073, 1, '76.00', '2018-05-31 14:35:24'), (10074, 1, '68.00', '2018-05-31 14:35:33'), (10075, 1, '60.00', '2018-05-31 14:35:43'), (10076, 1, '66.00', '2018-05-31 14:35:53'), (10077, 1, '79.00', '2018-05-31 14:36:02'), (10078, 1, '76.00', '2018-05-31 14:36:12'), (10079, 1, '74.00', '2018-05-31 14:36:22'), (10080, 1, '88.00', '2018-05-31 14:36:31'), (10081, 1, '81.00', '2018-05-31 14:36:41'), (10082, 1, '68.00', '2018-05-31 14:36:50'), (10083, 1, '86.00', '2018-05-31 14:37:00'), (10084, 1, '61.00', '2018-05-31 14:37:09'), (10085, 1, '68.00', '2018-05-31 14:37:18'), (10086, 1, '86.00', '2018-05-31 14:37:28'), (10087, 1, '72.00', '2018-05-31 14:37:39'), (10088, 1, '78.00', '2018-05-31 14:37:59'), (10089, 1, '89.00', '2018-05-31 14:38:09'), (10090, 1, '71.00', '2018-05-31 14:38:22'), (10091, 1, '75.00', '2018-05-31 14:38:33'), (10092, 1, '84.00', '2018-05-31 14:38:43'), (10093, 1, '64.00', '2018-05-31 14:38:52'), (10094, 1, '72.00', '2018-05-31 14:39:03'), (10095, 1, '84.00', '2018-05-31 14:39:12'), (10096, 1, '77.00', '2018-05-31 14:39:24'), (10097, 1, '80.00', '2018-05-31 14:39:33'), (10098, 1, '88.00', '2018-05-31 14:39:42'), (10099, 1, '61.00', '2018-05-31 14:39:53'), (10100, 1, '80.00', '2018-05-31 14:40:03'), (10101, 1, '79.00', '2018-05-31 14:40:12'), (10102, 1, '90.00', '2018-05-31 14:40:21'), (10103, 1, '94.00', '2018-05-31 14:40:31'), (10104, 1, '90.00', '2018-05-31 14:40:45'), (10105, 1, '96.00', '2018-05-31 14:40:54'), (10106, 1, '68.00', '2018-05-31 14:41:04'), (10107, 1, '80.00', '2018-05-31 14:41:13'), (10108, 1, '63.00', '2018-05-31 14:41:22'), (10109, 1, '90.00', '2018-05-31 14:41:32'), (10110, 1, '71.00', '2018-05-31 14:41:42'), (10111, 1, '89.00', '2018-05-31 14:41:53'), (10112, 1, '86.00', '2018-05-31 14:42:02'), (10113, 1, '89.00', '2018-05-31 14:42:13'), (10114, 1, '77.00', '2018-05-31 14:42:22'), (10115, 1, '88.00', '2018-05-31 14:42:31'), (10116, 1, '74.00', '2018-05-31 14:42:40'), (10117, 1, '61.00', '2018-05-31 14:42:50'), (10118, 1, '95.00', '2018-05-31 14:42:59'), (10119, 1, '70.00', '2018-05-31 14:43:10'), (10120, 1, '97.00', '2018-05-31 14:43:21'), (10121, 1, '98.00', '2018-05-31 14:43:30'), (10122, 1, '61.00', '2018-05-31 14:43:40'), (10123, 1, '62.00', '2018-05-31 14:43:49'), (10124, 1, '81.00', '2018-05-31 14:44:00'), (10125, 1, '99.00', '2018-05-31 14:44:09'), (10126, 1, '80.00', '2018-05-31 14:44:20'), (10127, 1, '74.00', '2018-05-31 14:44:31'), (10128, 1, '68.00', '2018-05-31 14:44:46'), (10129, 1, '92.00', '2018-05-31 14:44:57'), (10130, 1, '95.00', '2018-05-31 14:45:06'), (10131, 1, '88.00', '2018-05-31 14:45:17'), (10132, 1, '98.00', '2018-05-31 14:45:27'), (10133, 1, '93.00', '2018-05-31 14:45:38'), (10134, 1, '74.00', '2018-05-31 14:45:47'), (10135, 1, '96.00', '2018-05-31 14:45:57'), (10136, 1, '81.00', '2018-05-31 14:46:07'), (10137, 1, '93.00', '2018-05-31 14:46:18'), (10138, 1, '95.00', '2018-05-31 14:46:27'), (10139, 1, '73.00', '2018-05-31 14:46:36'), (10140, 1, '96.00', '2018-05-31 14:46:47'), (10141, 1, '64.00', '2018-05-31 14:46:56'), (10142, 1, '70.00', '2018-05-31 14:47:05'), (10143, 1, '61.00', '2018-05-31 14:47:14'), (10144, 1, '81.00', '2018-05-31 14:47:23'), (10145, 1, '67.00', '2018-05-31 14:47:32'), (10146, 1, '88.00', '2018-05-31 14:47:41'), (10147, 1, '79.00', '2018-05-31 14:47:50'), (10148, 1, '84.00', '2018-05-31 14:47:59'), (10149, 1, '65.00', '2018-05-31 14:48:08'), (10150, 1, '79.00', '2018-05-31 14:48:17'), (10151, 1, '90.00', '2018-05-31 14:48:26'), (10152, 1, '87.00', '2018-05-31 14:48:35'), (10153, 1, '90.00', '2018-05-31 14:48:44'), (10154, 1, '65.00', '2018-05-31 14:48:54'), (10155, 1, '62.00', '2018-05-31 14:49:02'), (10156, 1, '92.00', '2018-05-31 14:49:12'), (10157, 1, '84.00', '2018-05-31 14:49:21'), (10158, 1, '74.00', '2018-05-31 14:49:30'), (10159, 1, '61.00', '2018-05-31 14:49:39'), (10160, 1, '76.00', '2018-05-31 14:49:48'), (10161, 1, '92.00', '2018-05-31 14:49:58'), (10162, 1, '94.00', '2018-05-31 14:50:07'), (10163, 1, '70.00', '2018-05-31 14:50:16'), (10164, 1, '92.00', '2018-05-31 14:50:25'), (10165, 1, '86.00', '2018-05-31 14:50:34'), (10166, 1, '70.00', '2018-05-31 14:50:43'), (10167, 1, '71.00', '2018-05-31 14:50:52'), (10168, 1, '71.00', '2018-05-31 14:51:01'), (10169, 1, '89.00', '2018-05-31 14:51:10'), (10170, 1, '72.00', '2018-05-31 14:51:19'), (10171, 1, '82.00', '2018-05-31 14:51:28'), (10172, 1, '99.00', '2018-05-31 14:51:37'), (10173, 1, '63.00', '2018-05-31 14:51:46'), (10174, 1, '96.00', '2018-05-31 14:51:55'), (10175, 1, '85.00', '2018-05-31 14:52:04'), (10176, 1, '83.00', '2018-05-31 14:52:13'), (10177, 1, '83.00', '2018-05-31 14:52:22'), (10178, 1, '88.00', '2018-05-31 14:52:31'), (10179, 1, '73.00', '2018-05-31 14:52:40'), (10180, 1, '74.00', '2018-05-31 14:52:49'), (10181, 1, '91.00', '2018-05-31 14:52:58'), (10182, 1, '62.00', '2018-05-31 14:53:07'), (10183, 1, '71.00', '2018-05-31 14:53:16'), (10184, 1, '61.00', '2018-05-31 14:53:26'), (10185, 1, '61.00', '2018-05-31 14:53:35'), (10186, 1, '95.00', '2018-05-31 14:53:44'), (10187, 1, '73.00', '2018-05-31 14:53:56'), (10188, 1, '83.00', '2018-05-31 14:54:06'), (10189, 1, '71.00', '2018-05-31 14:54:15'), (10190, 1, '74.00', '2018-05-31 14:54:24'), (10191, 1, '82.00', '2018-05-31 14:54:35'), (10192, 1, '61.00', '2018-05-31 14:54:44'), (10193, 1, '85.00', '2018-05-31 14:54:55'), (10194, 1, '95.00', '2018-05-31 14:55:07'), (10195, 1, '94.00', '2018-05-31 14:55:17'), (10196, 1, '95.00', '2018-05-31 14:55:28'), (10197, 1, '85.00', '2018-05-31 14:55:38'), (10198, 1, '65.00', '2018-05-31 14:55:48'), (10199, 1, '89.00', '2018-05-31 14:55:57'), (10200, 1, '76.00', '2018-05-31 14:56:06'), (10201, 1, '86.00', '2018-05-31 14:56:15'), (10202, 1, '70.00', '2018-05-31 14:56:27'), (10203, 1, '83.00', '2018-05-31 14:56:36'), (10204, 1, '99.00', '2018-05-31 14:56:45'), (10205, 1, '72.00', '2018-05-31 14:56:55'), (10206, 1, '98.00', '2018-05-31 14:57:04'), (10207, 1, '96.00', '2018-05-31 14:57:13'), (10208, 1, '69.00', '2018-05-31 14:57:24'), (10209, 1, '90.00', '2018-05-31 14:57:33'), (10210, 1, '78.00', '2018-05-31 14:57:43'), (10211, 1, '68.00', '2018-05-31 14:57:53'), (10212, 1, '99.00', '2018-05-31 14:58:03'), (10213, 1, '95.00', '2018-05-31 14:58:13'), (10214, 1, '74.00', '2018-05-31 14:58:22'), (10215, 1, '77.00', '2018-05-31 14:58:32'), (10216, 1, '66.00', '2018-05-31 14:58:42'), (10217, 1, '87.00', '2018-05-31 14:58:51'), (10218, 1, '91.00', '2018-05-31 14:59:01'), (10219, 1, '88.00', '2018-05-31 14:59:10'), (10220, 1, '80.00', '2018-05-31 14:59:19'), (10221, 1, '67.00', '2018-05-31 14:59:28'), (10222, 1, '80.00', '2018-05-31 14:59:37'), (10223, 1, '64.00', '2018-05-31 14:59:46'), (10224, 1, '81.00', '2018-05-31 14:59:55'), (10225, 1, '97.00', '2018-05-31 15:00:04'), (10226, 1, '84.00', '2018-05-31 15:00:13'), (10227, 1, '98.00', '2018-05-31 15:00:22'), (10228, 1, '92.00', '2018-05-31 15:00:31'), (10229, 1, '78.00', '2018-05-31 15:00:40'), (10230, 1, '71.00', '2018-05-31 15:00:49'), (10231, 1, '81.00', '2018-05-31 15:00:58'), (10232, 1, '95.00', '2018-05-31 15:01:07'), (10233, 1, '75.00', '2018-05-31 15:01:16'), (10234, 1, '85.00', '2018-05-31 15:01:25'), (10235, 1, '99.00', '2018-05-31 15:01:34'), (10236, 1, '85.00', '2018-05-31 15:01:43'), (10237, 1, '99.00', '2018-05-31 15:01:52'), (10238, 1, '87.00', '2018-05-31 15:02:01'), (10239, 1, '83.00', '2018-05-31 15:02:10'), (10240, 1, '68.00', '2018-05-31 15:02:19'), (10241, 1, '92.00', '2018-05-31 15:02:28'), (10242, 1, '98.00', '2018-05-31 15:02:37'), (10243, 1, '76.00', '2018-05-31 15:02:46'), (10244, 1, '96.00', '2018-05-31 15:02:56'), (10245, 1, '66.00', '2018-05-31 15:03:04'), (10246, 1, '92.00', '2018-05-31 15:03:13'), (10247, 1, '94.00', '2018-05-31 15:03:22'), (10248, 1, '72.00', '2018-05-31 15:03:31'), (10249, 1, '76.00', '2018-05-31 15:03:40'), (10250, 1, '73.00', '2018-05-31 15:03:49'), (10251, 1, '74.00', '2018-05-31 15:03:58'), (10252, 1, '89.00', '2018-05-31 15:04:07'), (10253, 1, '75.00', '2018-05-31 15:04:16'), (10254, 1, '82.00', '2018-05-31 15:04:25'), (10255, 1, '60.00', '2018-05-31 15:04:34'), (10256, 1, '78.00', '2018-05-31 15:04:43'), (10257, 1, '63.00', '2018-05-31 15:04:52'), (10258, 1, '80.00', '2018-05-31 15:05:02'), (10259, 1, '79.00', '2018-05-31 15:05:11'), (10260, 1, '75.00', '2018-05-31 15:05:20'), (10261, 1, '99.00', '2018-05-31 15:05:29'), (10262, 1, '74.00', '2018-05-31 15:05:37'), (10263, 1, '61.00', '2018-05-31 15:05:47'), (10264, 1, '78.00', '2018-05-31 15:05:56'), (10265, 1, '76.00', '2018-05-31 15:06:05'), (10266, 1, '89.00', '2018-05-31 15:06:14'), (10267, 1, '93.00', '2018-05-31 15:06:23'), (10268, 1, '83.00', '2018-05-31 15:06:32'), (10269, 1, '63.00', '2018-05-31 15:06:41'), (10270, 1, '63.00', '2018-05-31 15:06:50'), (10271, 1, '93.00', '2018-05-31 15:06:59'), (10272, 1, '96.00', '2018-05-31 15:07:08'), (10273, 1, '75.00', '2018-05-31 15:07:18'), (10274, 1, '63.00', '2018-05-31 15:07:27'), (10275, 1, '87.00', '2018-05-31 15:07:36'), (10276, 1, '74.00', '2018-05-31 15:07:45'), (10277, 1, '64.00', '2018-05-31 15:07:54'), (10278, 1, '61.00', '2018-05-31 15:08:03'), (10279, 1, '73.00', '2018-05-31 15:08:12'), (10280, 1, '60.00', '2018-05-31 15:08:21'), (10281, 1, '68.00', '2018-05-31 15:08:30'), (10282, 1, '74.00', '2018-05-31 15:08:39'), (10283, 1, '95.00', '2018-05-31 15:08:48'), (10284, 1, '72.00', '2018-05-31 15:08:57'), (10285, 1, '95.00', '2018-05-31 15:09:06'), (10286, 1, '95.00', '2018-05-31 15:09:15'), (10287, 1, '71.00', '2018-05-31 15:09:23'), (10288, 1, '92.00', '2018-05-31 15:09:33'), (10289, 1, '85.00', '2018-05-31 15:09:42'), (10290, 1, '97.00', '2018-05-31 15:09:52'), (10291, 1, '84.00', '2018-05-31 15:10:01'), (10292, 1, '83.00', '2018-05-31 15:10:10'), (10293, 1, '89.00', '2018-05-31 15:10:19'), (10294, 1, '76.00', '2018-05-31 15:10:28'), (10295, 1, '93.00', '2018-05-31 15:10:37'), (10296, 1, '95.00', '2018-05-31 15:10:46'), (10297, 1, '69.00', '2018-05-31 15:10:55'), (10298, 1, '96.00', '2018-05-31 15:11:04'), (10299, 1, '95.00', '2018-05-31 15:11:13'), (10300, 1, '83.00', '2018-05-31 15:11:22'), (10301, 1, '70.00', '2018-05-31 15:11:31'), (10302, 1, '82.00', '2018-05-31 15:11:40'), (10303, 1, '70.00', '2018-05-31 15:11:49'), (10304, 1, '83.00', '2018-05-31 15:11:59'), (10305, 1, '70.00', '2018-05-31 15:12:08'), (10306, 1, '85.00', '2018-05-31 15:12:17'), (10307, 1, '98.00', '2018-05-31 15:12:26'), (10308, 1, '88.00', '2018-05-31 15:12:35'), (10309, 1, '61.00', '2018-05-31 15:12:44'), (10310, 1, '69.00', '2018-05-31 15:12:53'), (10311, 1, '92.00', '2018-05-31 15:13:02'), (10312, 1, '61.00', '2018-05-31 15:13:11'), (10313, 1, '80.00', '2018-05-31 15:13:20'), (10314, 1, '76.00', '2018-05-31 15:13:29'), (10315, 1, '79.00', '2018-05-31 15:13:38'), (10316, 1, '92.00', '2018-05-31 15:13:47'), (10317, 1, '64.00', '2018-05-31 15:13:56'), (10318, 1, '75.00', '2018-05-31 15:14:05'), (10319, 1, '61.00', '2018-05-31 15:14:14'), (10320, 1, '71.00', '2018-05-31 15:14:23'), (10321, 1, '93.00', '2018-05-31 15:14:32'), (10322, 1, '82.00', '2018-05-31 15:14:41'), (10323, 1, '81.00', '2018-05-31 15:14:50'), (10324, 1, '79.00', '2018-05-31 15:14:59'), (10325, 1, '86.00', '2018-05-31 15:15:08'), (10326, 1, '64.00', '2018-05-31 15:15:17'), (10327, 1, '85.00', '2018-05-31 15:15:26'), (10328, 1, '92.00', '2018-05-31 15:15:35'), (10329, 1, '86.00', '2018-05-31 15:15:44'), (10330, 1, '74.00', '2018-05-31 15:15:54'), (10331, 1, '61.00', '2018-05-31 15:16:03'), (10332, 1, '95.00', '2018-05-31 15:16:13'), (10333, 1, '80.00', '2018-05-31 15:16:22'), (10334, 1, '99.00', '2018-05-31 15:16:31'), (10335, 1, '62.00', '2018-05-31 15:16:40'), (10336, 1, '91.00', '2018-05-31 15:16:49'), (10337, 1, '61.00', '2018-05-31 15:16:58'), (10338, 1, '65.00', '2018-05-31 15:17:07'), (10339, 1, '72.00', '2018-05-31 15:17:16'), (10340, 1, '77.00', '2018-05-31 15:17:25'), (10341, 1, '91.00', '2018-05-31 15:17:34'), (10342, 1, '70.00', '2018-05-31 15:17:43'), (10343, 1, '91.00', '2018-05-31 15:17:52'), (10344, 1, '78.00', '2018-05-31 15:18:01'), (10345, 1, '65.00', '2018-05-31 15:18:10'), (10346, 1, '96.00', '2018-05-31 15:18:19'), (10347, 1, '78.00', '2018-05-31 15:18:28'), (10348, 1, '89.00', '2018-05-31 15:18:37'), (10349, 1, '68.00', '2018-05-31 15:18:46'), (10350, 1, '62.00', '2018-05-31 15:18:55'), (10351, 1, '78.00', '2018-05-31 15:19:05'), (10352, 1, '76.00', '2018-05-31 15:19:14'), (10353, 1, '98.00', '2018-05-31 15:19:23'), (10354, 1, '80.00', '2018-05-31 15:19:32'), (10355, 1, '92.00', '2018-05-31 15:19:41'), (10356, 1, '96.00', '2018-05-31 15:19:50'), (10357, 1, '79.00', '2018-05-31 15:19:59'), (10358, 1, '68.00', '2018-05-31 15:20:09'), (10359, 1, '93.00', '2018-05-31 15:20:18'), (10360, 1, '68.00', '2018-05-31 15:20:27'), (10361, 1, '77.00', '2018-05-31 15:20:37'), (10362, 1, '71.00', '2018-05-31 15:20:46'), (10363, 1, '79.00', '2018-05-31 15:20:55'), (10364, 1, '98.00', '2018-05-31 15:21:04'), (10365, 1, '80.00', '2018-05-31 15:21:13'), (10366, 1, '66.00', '2018-05-31 15:21:22'), (10367, 1, '77.00', '2018-05-31 15:21:31'), (10368, 1, '87.00', '2018-05-31 15:21:42'), (10369, 1, '91.00', '2018-05-31 15:21:51'), (10370, 1, '67.00', '2018-05-31 15:22:00'), (10371, 1, '83.00', '2018-05-31 15:22:09'), (10372, 1, '82.00', '2018-05-31 15:22:19'), (10373, 1, '70.00', '2018-05-31 15:22:28'), (10374, 1, '65.00', '2018-05-31 15:22:37'), (10375, 1, '85.00', '2018-05-31 15:22:46'), (10376, 1, '66.00', '2018-05-31 15:22:55'), (10377, 1, '93.00', '2018-05-31 15:23:04'), (10378, 1, '89.00', '2018-05-31 15:23:13'), (10379, 1, '83.00', '2018-05-31 15:23:21'), (10380, 1, '91.00', '2018-05-31 15:23:30'), (10381, 1, '94.00', '2018-05-31 15:23:39'), (10382, 1, '74.00', '2018-05-31 15:23:48'), (10383, 1, '96.00', '2018-05-31 15:23:57'), (10384, 1, '99.00', '2018-05-31 15:24:06'), (10385, 1, '70.00', '2018-05-31 15:24:16'), (10386, 1, '62.00', '2018-05-31 15:24:25'), (10387, 1, '72.00', '2018-05-31 15:24:34'), (10388, 1, '82.00', '2018-05-31 15:24:42'), (10389, 1, '68.00', '2018-05-31 15:24:51'), (10390, 1, '61.00', '2018-05-31 15:25:00'), (10391, 1, '61.00', '2018-05-31 15:25:10'), (10392, 1, '78.00', '2018-05-31 15:25:19'), (10393, 1, '77.00', '2018-05-31 15:25:28'), (10394, 1, '86.00', '2018-05-31 15:25:36'), (10395, 1, '67.00', '2018-05-31 15:25:46'), (10396, 1, '81.00', '2018-05-31 15:25:55'), (10397, 1, '69.00', '2018-05-31 15:26:04'), (10398, 1, '63.00', '2018-05-31 15:26:13'), (10399, 1, '70.00', '2018-05-31 15:26:22'), (10400, 1, '87.00', '2018-05-31 15:26:31'), (10401, 1, '93.00', '2018-05-31 15:26:40'), (10402, 1, '74.00', '2018-05-31 15:26:49'), (10403, 1, '64.00', '2018-05-31 15:26:58'), (10404, 1, '64.00', '2018-05-31 15:27:07'), (10405, 1, '77.00', '2018-05-31 15:27:16'), (10406, 1, '64.00', '2018-05-31 15:27:25'), (10407, 1, '63.00', '2018-05-31 15:27:33'), (10408, 1, '64.00', '2018-05-31 15:27:43'), (10409, 1, '96.00', '2018-05-31 15:27:51'), (10410, 1, '93.00', '2018-05-31 15:28:00'), (10411, 1, '77.00', '2018-05-31 15:28:09'), (10412, 1, '80.00', '2018-05-31 15:28:18'), (10413, 1, '91.00', '2018-05-31 15:28:27'), (10414, 1, '72.00', '2018-05-31 15:28:36'), (10415, 1, '92.00', '2018-05-31 15:28:45'), (10416, 1, '82.00', '2018-05-31 15:28:54'), (10417, 1, '63.00', '2018-05-31 15:29:03'), (10418, 1, '80.00', '2018-05-31 15:29:12'), (10419, 1, '87.00', '2018-05-31 15:29:21'), (10420, 1, '65.00', '2018-05-31 15:29:30'), (10421, 1, '78.00', '2018-05-31 15:29:39'), (10422, 1, '63.00', '2018-05-31 15:29:48'), (10423, 1, '70.00', '2018-05-31 15:29:58'), (10424, 1, '73.00', '2018-05-31 15:30:07'), (10425, 1, '75.00', '2018-05-31 15:30:16'), (10426, 1, '74.00', '2018-05-31 15:30:25'), (10427, 1, '69.00', '2018-05-31 15:30:35'), (10428, 1, '87.00', '2018-05-31 15:30:44'), (10429, 1, '70.00', '2018-05-31 15:30:53'), (10430, 1, '84.00', '2018-05-31 15:31:02'), (10431, 1, '70.00', '2018-05-31 15:31:11'), (10432, 1, '75.00', '2018-05-31 15:31:20'), (10433, 1, '77.00', '2018-05-31 15:31:29'), (10434, 1, '74.00', '2018-05-31 15:31:38'), (10435, 1, '90.00', '2018-05-31 15:31:47'), (10436, 1, '73.00', '2018-05-31 15:31:57'), (10437, 1, '64.00', '2018-05-31 15:32:06'), (10438, 1, '72.00', '2018-05-31 15:32:15'), (10439, 1, '74.00', '2018-05-31 15:32:24'), (10440, 1, '60.00', '2018-05-31 15:32:33'), (10441, 1, '87.00', '2018-05-31 15:32:42'), (10442, 1, '74.00', '2018-05-31 15:32:51'), (10443, 1, '72.00', '2018-05-31 15:32:59'), (10444, 1, '62.00', '2018-05-31 15:33:09'), (10445, 1, '83.00', '2018-05-31 15:33:18'), (10446, 1, '83.00', '2018-05-31 15:33:27'), (10447, 1, '74.00', '2018-05-31 15:33:36'), (10448, 1, '90.00', '2018-05-31 15:33:45'), (10449, 1, '80.00', '2018-05-31 15:33:54'), (10450, 1, '90.00', '2018-05-31 15:34:03'), (10451, 1, '79.00', '2018-05-31 15:34:12'), (10452, 1, '91.00', '2018-05-31 15:34:23'), (10453, 1, '81.00', '2018-05-31 15:34:32'), (10454, 1, '67.00', '2018-05-31 15:34:41'), (10455, 1, '74.00', '2018-05-31 15:34:50'), (10456, 1, '93.00', '2018-05-31 15:34:59'), (10457, 1, '98.00', '2018-05-31 15:35:08'), (10458, 1, '82.00', '2018-05-31 15:35:17'), (10459, 1, '71.00', '2018-05-31 15:35:26'), (10460, 1, '78.00', '2018-05-31 15:35:35'), (10461, 1, '91.00', '2018-05-31 15:35:44'), (10462, 1, '94.00', '2018-05-31 15:35:53'), (10463, 1, '99.00', '2018-05-31 15:36:02'), (10464, 1, '91.00', '2018-05-31 15:36:11'), (10465, 1, '92.00', '2018-05-31 15:36:20'), (10466, 1, '96.00', '2018-05-31 15:36:29'), (10467, 1, '61.00', '2018-05-31 15:36:38'), (10468, 1, '87.00', '2018-05-31 15:36:47'), (10469, 1, '65.00', '2018-05-31 15:36:56'), (10470, 1, '93.00', '2018-05-31 15:37:05'), (10471, 1, '74.00', '2018-05-31 15:37:14'), (10472, 1, '86.00', '2018-05-31 15:37:23'), (10473, 1, '67.00', '2018-05-31 15:37:33'), (10474, 1, '62.00', '2018-05-31 15:37:43'), (10475, 1, '62.00', '2018-05-31 15:37:52'), (10476, 1, '75.00', '2018-05-31 15:38:01'), (10477, 1, '73.00', '2018-05-31 15:38:11'), (10478, 1, '76.00', '2018-05-31 15:38:20'), (10479, 1, '81.00', '2018-05-31 15:38:29'), (10480, 1, '96.00', '2018-05-31 15:38:38'), (10481, 1, '76.00', '2018-05-31 15:38:47'), (10482, 1, '91.00', '2018-05-31 15:38:56'), (10483, 1, '74.00', '2018-05-31 15:39:05'), (10484, 1, '72.00', '2018-05-31 15:39:14'), (10485, 1, '61.00', '2018-05-31 15:39:23'), (10486, 1, '60.00', '2018-05-31 15:39:32'), (10487, 1, '96.00', '2018-05-31 15:39:41'), (10488, 1, '69.00', '2018-05-31 15:39:50'), (10489, 1, '88.00', '2018-05-31 15:39:59'), (10490, 1, '80.00', '2018-05-31 15:40:08'), (10491, 1, '98.00', '2018-05-31 15:40:17'), (10492, 1, '90.00', '2018-05-31 15:40:26'), (10493, 1, '97.00', '2018-05-31 15:40:35'), (10494, 1, '94.00', '2018-05-31 15:40:44'), (10495, 1, '87.00', '2018-05-31 15:40:53'), (10496, 1, '83.00', '2018-05-31 15:41:03'), (10497, 1, '70.00', '2018-05-31 15:41:12'), (10498, 1, '79.00', '2018-05-31 15:41:21'), (10499, 1, '76.00', '2018-05-31 15:41:30'), (10500, 1, '77.00', '2018-05-31 15:41:39'), (10501, 1, '78.00', '2018-05-31 15:41:48'), (10502, 1, '92.00', '2018-05-31 15:41:57'), (10503, 1, '69.00', '2018-05-31 15:42:06'), (10504, 1, '62.00', '2018-05-31 15:42:15'), (10505, 1, '65.00', '2018-05-31 15:42:24'), (10506, 1, '64.00', '2018-05-31 15:42:33'), (10507, 1, '74.00', '2018-05-31 15:42:42'), (10508, 1, '71.00', '2018-05-31 15:42:52'), (10509, 1, '94.00', '2018-05-31 15:43:01'), (10510, 1, '80.00', '2018-05-31 15:43:11'), (10511, 1, '85.00', '2018-05-31 15:43:20'), (10512, 1, '80.00', '2018-05-31 15:43:30'), (10513, 1, '73.00', '2018-05-31 15:43:39'), (10514, 1, '81.00', '2018-05-31 15:43:47'), (10515, 1, '87.00', '2018-05-31 15:43:57'), (10516, 1, '77.00', '2018-05-31 15:44:06'), (10517, 1, '79.00', '2018-05-31 15:44:15'), (10518, 1, '70.00', '2018-05-31 15:44:24'), (10519, 1, '69.00', '2018-05-31 15:44:33'), (10520, 1, '85.00', '2018-05-31 15:44:43'), (10521, 1, '76.00', '2018-05-31 15:44:52'), (10522, 1, '74.00', '2018-05-31 15:45:01'), (10523, 1, '71.00', '2018-05-31 15:45:10'), (10524, 1, '76.00', '2018-05-31 15:45:18'), (10525, 1, '70.00', '2018-05-31 15:45:28'), (10526, 1, '65.00', '2018-05-31 15:45:36'), (10527, 1, '76.00', '2018-05-31 15:45:45'), (10528, 1, '96.00', '2018-05-31 15:45:54'), (10529, 1, '94.00', '2018-05-31 15:46:03'), (10530, 1, '84.00', '2018-05-31 15:46:12'), (10531, 1, '95.00', '2018-05-31 15:46:21'), (10532, 1, '84.00', '2018-05-31 15:46:31'), (10533, 1, '79.00', '2018-05-31 15:46:39'), (10534, 1, '90.00', '2018-05-31 15:46:48'), (10535, 1, '65.00', '2018-05-31 15:46:57'), (10536, 1, '83.00', '2018-05-31 15:47:06'), (10537, 1, '61.00', '2018-05-31 15:47:15'), (10538, 1, '61.00', '2018-05-31 15:47:24'), (10539, 1, '78.00', '2018-05-31 15:47:33'), (10540, 1, '86.00', '2018-05-31 15:47:42'), (10541, 1, '78.00', '2018-05-31 15:47:51'), (10542, 1, '96.00', '2018-05-31 15:48:01'), (10543, 1, '96.00', '2018-05-31 15:48:11'), (10544, 1, '96.00', '2018-05-31 15:48:20'), (10545, 1, '94.00', '2018-05-31 15:48:29'), (10546, 1, '76.00', '2018-05-31 15:48:37'), (10547, 1, '85.00', '2018-05-31 15:48:47'), (10548, 1, '77.00', '2018-05-31 15:48:56'), (10549, 1, '93.00', '2018-05-31 15:49:05'), (10550, 1, '90.00', '2018-05-31 15:49:14'), (10551, 1, '88.00', '2018-05-31 15:49:23'), (10552, 1, '69.00', '2018-05-31 15:49:33'), (10553, 1, '69.00', '2018-05-31 15:49:42'), (10554, 1, '83.00', '2018-05-31 15:49:51'), (10555, 1, '72.00', '2018-05-31 15:50:00'), (10556, 1, '87.00', '2018-05-31 15:50:09'), (10557, 1, '94.00', '2018-05-31 15:50:18'), (10558, 1, '77.00', '2018-05-31 15:50:28'), (10559, 1, '66.00', '2018-05-31 15:50:36'), (10560, 1, '84.00', '2018-05-31 15:50:45'), (10561, 1, '72.00', '2018-05-31 15:50:54'), (10562, 1, '66.00', '2018-05-31 15:51:03'), (10563, 1, '76.00', '2018-05-31 15:51:12'), (10564, 1, '99.00', '2018-05-31 15:51:21'), (10565, 1, '89.00', '2018-05-31 15:51:30'), (10566, 1, '72.00', '2018-05-31 15:51:39'), (10567, 1, '95.00', '2018-05-31 15:51:48'), (10568, 1, '62.00', '2018-05-31 15:51:57'), (10569, 1, '87.00', '2018-05-31 15:52:06'), (10570, 1, '88.00', '2018-05-31 15:52:15'), (10571, 1, '82.00', '2018-05-31 15:52:25'), (10572, 1, '72.00', '2018-05-31 15:52:34'), (10573, 1, '97.00', '2018-05-31 15:52:44'), (10574, 1, '75.00', '2018-05-31 15:52:54'), (10575, 1, '87.00', '2018-05-31 15:53:03'), (10576, 1, '94.00', '2018-05-31 15:53:12'), (10577, 1, '82.00', '2018-05-31 15:53:21'), (10578, 1, '68.00', '2018-05-31 15:53:30'), (10579, 1, '61.00', '2018-05-31 15:53:39'), (10580, 1, '70.00', '2018-05-31 15:53:48'), (10581, 1, '60.00', '2018-05-31 15:53:57'), (10582, 1, '82.00', '2018-05-31 15:54:06'), (10583, 1, '64.00', '2018-05-31 15:54:15'), (10584, 1, '67.00', '2018-05-31 15:54:24'), (10585, 1, '60.00', '2018-05-31 15:54:33'), (10586, 1, '76.00', '2018-05-31 15:54:42'), (10587, 1, '84.00', '2018-05-31 15:54:51'), (10588, 1, '85.00', '2018-05-31 15:55:00'), (10589, 1, '92.00', '2018-05-31 15:55:09'), (10590, 1, '66.00', '2018-05-31 15:55:18'), (10591, 1, '70.00', '2018-05-31 15:55:28'), (10592, 1, '83.00', '2018-05-31 15:55:36'), (10593, 1, '81.00', '2018-05-31 15:55:45'), (10594, 1, '68.00', '2018-05-31 15:55:54'), (10595, 1, '60.00', '2018-05-31 15:56:03'), (10596, 1, '73.00', '2018-05-31 15:56:12'), (10597, 1, '84.00', '2018-05-31 15:56:21'), (10598, 1, '82.00', '2018-05-31 15:56:30'), (10599, 1, '82.00', '2018-05-31 15:56:39'), (10600, 1, '69.00', '2018-05-31 15:56:48'), (10601, 1, '93.00', '2018-05-31 15:56:57'), (10602, 1, '69.00', '2018-05-31 15:57:06'), (10603, 1, '86.00', '2018-05-31 15:57:15'), (10604, 1, '91.00', '2018-05-31 15:57:24'), (10605, 1, '70.00', '2018-05-31 15:57:33'), (10606, 1, '83.00', '2018-05-31 15:57:42'), (10607, 1, '81.00', '2018-05-31 15:57:51'), (10608, 1, '79.00', '2018-05-31 15:58:00'), (10609, 1, '78.00', '2018-05-31 15:58:10'), (10610, 1, '97.00', '2018-05-31 15:58:19'), (10611, 1, '61.00', '2018-05-31 15:58:28'), (10612, 1, '68.00', '2018-05-31 15:58:37'), (10613, 1, '90.00', '2018-05-31 15:58:46'), (10614, 1, '82.00', '2018-05-31 15:58:55'), (10615, 1, '63.00', '2018-05-31 15:59:04'), (10616, 1, '61.00', '2018-05-31 15:59:13'), (10617, 1, '70.00', '2018-05-31 15:59:22'), (10618, 1, '96.00', '2018-05-31 15:59:31'), (10619, 1, '67.00', '2018-05-31 15:59:40'), (10620, 1, '98.00', '2018-05-31 15:59:49'), (10621, 1, '67.00', '2018-05-31 15:59:58'), (10622, 1, '94.00', '2018-05-31 16:00:08'), (10623, 1, '91.00', '2018-05-31 16:00:17'), (10624, 1, '69.00', '2018-05-31 16:00:26'), (10625, 1, '74.00', '2018-05-31 16:00:34'), (10626, 1, '65.00', '2018-05-31 16:00:44'), (10627, 1, '91.00', '2018-05-31 16:00:53'), (10628, 1, '79.00', '2018-05-31 16:01:03'), (10629, 1, '74.00', '2018-05-31 16:01:12'), (10630, 1, '99.00', '2018-05-31 16:01:21'), (10631, 1, '78.00', '2018-05-31 16:01:30'), (10632, 1, '65.00', '2018-05-31 16:01:40'), (10633, 1, '92.00', '2018-05-31 16:01:49'), (10634, 1, '88.00', '2018-05-31 16:01:58'), (10635, 1, '77.00', '2018-05-31 16:02:07'), (10636, 1, '79.00', '2018-05-31 16:02:16'), (10637, 1, '84.00', '2018-05-31 16:02:25'), (10638, 1, '98.00', '2018-05-31 16:02:34'), (10639, 1, '94.00', '2018-05-31 16:02:43'), (10640, 1, '82.00', '2018-05-31 16:02:52'), (10641, 1, '71.00', '2018-05-31 16:03:01'), (10642, 1, '89.00', '2018-05-31 16:03:10'), (10643, 1, '91.00', '2018-05-31 16:03:19'), (10644, 1, '81.00', '2018-05-31 16:03:28'), (10645, 1, '82.00', '2018-05-31 16:03:37'), (10646, 1, '61.00', '2018-05-31 16:03:46'), (10647, 1, '71.00', '2018-05-31 16:03:55'), (10648, 1, '83.00', '2018-05-31 16:04:04'), (10649, 1, '98.00', '2018-05-31 16:04:13'), (10650, 1, '74.00', '2018-05-31 16:04:22'), (10651, 1, '89.00', '2018-05-31 16:04:31'), (10652, 1, '92.00', '2018-05-31 16:04:40'), (10653, 1, '97.00', '2018-05-31 16:04:49'), (10654, 1, '88.00', '2018-05-31 16:04:58'), (10655, 1, '77.00', '2018-05-31 16:05:07'), (10656, 1, '80.00', '2018-05-31 16:05:15'), (10657, 1, '70.00', '2018-05-31 16:05:24'), (10658, 1, '61.00', '2018-05-31 16:05:33'), (10659, 1, '61.00', '2018-05-31 16:05:42'), (10660, 1, '96.00', '2018-05-31 16:05:51'), (10661, 1, '62.00', '2018-05-31 16:06:00'), (10662, 1, '84.00', '2018-05-31 16:06:09'), (10663, 1, '79.00', '2018-05-31 16:06:18'), (10664, 1, '94.00', '2018-05-31 16:06:27'), (10665, 1, '67.00', '2018-05-31 16:06:36'), (10666, 1, '82.00', '2018-05-31 16:06:45'), (10667, 1, '67.00', '2018-05-31 16:06:54'), (10668, 1, '72.00', '2018-05-31 16:07:03'), (10669, 1, '85.00', '2018-05-31 16:07:12'), (10670, 1, '65.00', '2018-05-31 16:07:21'), (10671, 1, '92.00', '2018-05-31 16:07:30'), (10672, 1, '64.00', '2018-05-31 16:07:39'), (10673, 1, '86.00', '2018-05-31 16:07:48'), (10674, 1, '94.00', '2018-05-31 16:07:57'), (10675, 1, '80.00', '2018-05-31 16:08:06'), (10676, 1, '74.00', '2018-05-31 16:08:15'), (10677, 1, '69.00', '2018-05-31 16:08:24'), (10678, 1, '62.00', '2018-05-31 16:08:33'), (10679, 1, '84.00', '2018-05-31 16:08:42'), (10680, 1, '89.00', '2018-05-31 16:08:51'), (10681, 1, '90.00', '2018-05-31 16:09:00'), (10682, 1, '83.00', '2018-05-31 16:09:09'), (10683, 1, '99.00', '2018-05-31 16:09:18'), (10684, 1, '72.00', '2018-05-31 16:09:27'), (10685, 1, '66.00', '2018-05-31 16:09:36'), (10686, 1, '89.00', '2018-05-31 16:09:45'), (10687, 1, '67.00', '2018-05-31 16:09:54'), (10688, 1, '94.00', '2018-05-31 16:10:04'), (10689, 1, '74.00', '2018-05-31 16:10:13'), (10690, 1, '70.00', '2018-05-31 16:10:22'), (10691, 1, '69.00', '2018-05-31 16:10:31'), (10692, 1, '81.00', '2018-05-31 16:10:40'), (10693, 1, '94.00', '2018-05-31 16:10:49'), (10694, 1, '65.00', '2018-05-31 16:10:58'), (10695, 1, '77.00', '2018-05-31 16:11:07'), (10696, 1, '83.00', '2018-05-31 16:11:16'), (10697, 1, '97.00', '2018-05-31 16:11:25'), (10698, 1, '95.00', '2018-05-31 16:11:34'), (10699, 1, '69.00', '2018-05-31 16:11:43'), (10700, 1, '99.00', '2018-05-31 16:11:52'), (10701, 1, '81.00', '2018-05-31 16:12:01'), (10702, 1, '77.00', '2018-05-31 16:12:10'), (10703, 1, '99.00', '2018-05-31 16:12:19'), (10704, 1, '87.00', '2018-05-31 16:12:29'), (10705, 1, '96.00', '2018-05-31 16:12:38'), (10706, 1, '89.00', '2018-05-31 16:12:47'), (10707, 1, '89.00', '2018-05-31 16:12:56'), (10708, 1, '65.00', '2018-05-31 16:13:05'), (10709, 1, '94.00', '2018-05-31 16:13:14'), (10710, 1, '66.00', '2018-05-31 16:13:23'), (10711, 1, '79.00', '2018-05-31 16:13:32'), (10712, 1, '94.00', '2018-05-31 16:13:41'), (10713, 1, '62.00', '2018-05-31 16:13:50'), (10714, 1, '89.00', '2018-05-31 16:13:59'), (10715, 1, '72.00', '2018-05-31 16:14:08'), (10716, 1, '77.00', '2018-05-31 16:14:17'), (10717, 1, '82.00', '2018-05-31 16:14:26'), (10718, 1, '74.00', '2018-05-31 16:14:35'), (10719, 1, '95.00', '2018-05-31 16:14:44'), (10720, 1, '95.00', '2018-05-31 16:14:53'), (10721, 1, '80.00', '2018-05-31 16:15:02'), (10722, 1, '60.00', '2018-05-31 16:15:11'), (10723, 1, '96.00', '2018-05-31 16:15:20'), (10724, 1, '76.00', '2018-05-31 16:15:29'), (10725, 1, '67.00', '2018-05-31 16:15:38'), (10726, 1, '96.00', '2018-05-31 16:15:47'), (10727, 1, '90.00', '2018-05-31 16:15:56'), (10728, 1, '69.00', '2018-05-31 16:16:05'), (10729, 1, '87.00', '2018-05-31 16:16:14'), (10730, 1, '98.00', '2018-05-31 16:16:23'), (10731, 1, '79.00', '2018-05-31 16:16:32'), (10732, 1, '64.00', '2018-05-31 16:16:41'), (10733, 1, '96.00', '2018-05-31 16:16:50'), (10734, 1, '91.00', '2018-05-31 16:16:59'), (10735, 1, '94.00', '2018-05-31 16:17:08'), (10736, 1, '93.00', '2018-05-31 16:17:17'), (10737, 1, '97.00', '2018-05-31 16:17:26'), (10738, 1, '75.00', '2018-05-31 16:17:35'), (10739, 1, '68.00', '2018-05-31 16:17:44'), (10740, 1, '99.00', '2018-05-31 16:17:53'), (10741, 1, '73.00', '2018-05-31 16:18:02'), (10742, 1, '87.00', '2018-05-31 16:18:11'), (10743, 1, '91.00', '2018-05-31 16:18:20'), (10744, 1, '86.00', '2018-05-31 16:18:29'), (10745, 1, '85.00', '2018-05-31 16:18:38'), (10746, 1, '99.00', '2018-05-31 16:18:47'), (10747, 1, '66.00', '2018-05-31 16:18:56'), (10748, 1, '88.00', '2018-05-31 16:19:05'), (10749, 1, '77.00', '2018-05-31 16:19:14'), (10750, 1, '79.00', '2018-05-31 16:19:23'), (10751, 1, '74.00', '2018-05-31 16:19:32'), (10752, 1, '73.00', '2018-05-31 16:19:41'), (10753, 1, '84.00', '2018-05-31 16:19:50'), (10754, 1, '66.00', '2018-05-31 16:19:59'), (10755, 1, '70.00', '2018-05-31 16:20:08'), (10756, 1, '91.00', '2018-05-31 16:20:17'), (10757, 1, '88.00', '2018-05-31 16:20:26'), (10758, 1, '67.00', '2018-05-31 16:20:35'), (10759, 1, '68.00', '2018-05-31 16:20:44'), (10760, 1, '82.00', '2018-05-31 16:20:53'), (10761, 1, '76.00', '2018-05-31 16:21:02'), (10762, 1, '96.00', '2018-05-31 16:21:11'), (10763, 1, '77.00', '2018-05-31 16:21:20'), (10764, 1, '88.00', '2018-05-31 16:21:29'), (10765, 1, '83.00', '2018-05-31 16:21:38'), (10766, 1, '64.00', '2018-05-31 16:21:47'), (10767, 1, '76.00', '2018-05-31 16:21:57'), (10768, 1, '82.00', '2018-05-31 16:22:06'), (10769, 1, '70.00', '2018-05-31 16:22:15'), (10770, 1, '95.00', '2018-05-31 16:22:24'), (10771, 1, '61.00', '2018-05-31 16:22:33'), (10772, 1, '99.00', '2018-05-31 16:22:42'), (10773, 1, '79.00', '2018-05-31 16:22:51'), (10774, 1, '69.00', '2018-05-31 16:23:00'), (10775, 1, '71.00', '2018-05-31 16:23:09'), (10776, 1, '65.00', '2018-05-31 16:23:18'), (10777, 1, '69.00', '2018-05-31 16:23:27'), (10778, 1, '79.00', '2018-05-31 16:23:36'), (10779, 1, '95.00', '2018-05-31 16:23:45'), (10780, 1, '74.00', '2018-05-31 16:23:54'), (10781, 1, '83.00', '2018-05-31 16:24:03'), (10782, 1, '77.00', '2018-05-31 16:24:12'), (10783, 1, '80.00', '2018-05-31 16:24:21'), (10784, 1, '89.00', '2018-05-31 16:24:30'), (10785, 1, '61.00', '2018-05-31 16:24:39'), (10786, 1, '68.00', '2018-05-31 16:24:48'), (10787, 1, '86.00', '2018-05-31 16:24:57'), (10788, 1, '90.00', '2018-05-31 16:25:06'), (10789, 1, '69.00', '2018-05-31 16:25:15'), (10790, 1, '82.00', '2018-05-31 16:25:24'), (10791, 1, '80.00', '2018-05-31 16:25:33'), (10792, 1, '73.00', '2018-05-31 16:25:42'), (10793, 1, '64.00', '2018-05-31 16:25:51'), (10794, 1, '69.00', '2018-05-31 16:26:00'), (10795, 1, '68.00', '2018-05-31 16:26:09'), (10796, 1, '82.00', '2018-05-31 16:26:18'), (10797, 1, '77.00', '2018-05-31 16:26:27'), (10798, 1, '80.00', '2018-05-31 16:26:36'), (10799, 1, '63.00', '2018-05-31 16:26:45'), (10800, 1, '62.00', '2018-05-31 16:26:54'), (10801, 1, '88.00', '2018-05-31 16:27:04'), (10802, 1, '64.00', '2018-05-31 16:27:13'), (10803, 1, '78.00', '2018-05-31 16:27:22'), (10804, 1, '83.00', '2018-05-31 16:27:31'), (10805, 1, '61.00', '2018-05-31 16:27:40'), (10806, 1, '81.00', '2018-05-31 16:27:49'), (10807, 1, '98.00', '2018-05-31 16:27:58'), (10808, 1, '84.00', '2018-05-31 16:28:07'), (10809, 1, '89.00', '2018-05-31 16:28:16'), (10810, 1, '73.00', '2018-05-31 16:28:25'), (10811, 1, '75.00', '2018-05-31 16:28:34'), (10812, 1, '87.00', '2018-05-31 16:28:43'), (10813, 1, '84.00', '2018-05-31 16:28:52'), (10814, 1, '74.00', '2018-05-31 16:29:01'), (10815, 1, '62.00', '2018-05-31 16:29:10'), (10816, 1, '72.00', '2018-05-31 16:29:19'), (10817, 1, '88.00', '2018-05-31 16:29:28'), (10818, 1, '84.00', '2018-05-31 16:29:37'), (10819, 1, '99.00', '2018-05-31 16:29:46'), (10820, 1, '87.00', '2018-05-31 16:29:56'), (10821, 1, '83.00', '2018-05-31 16:30:05'), (10822, 1, '95.00', '2018-05-31 16:30:14'), (10823, 1, '88.00', '2018-05-31 16:30:23'), (10824, 1, '64.00', '2018-05-31 16:30:32'), (10825, 1, '72.00', '2018-05-31 16:30:41'), (10826, 1, '76.00', '2018-05-31 16:30:50'), (10827, 1, '99.00', '2018-05-31 16:30:59'), (10828, 1, '94.00', '2018-05-31 16:31:08'), (10829, 1, '68.00', '2018-05-31 16:31:17'), (10830, 1, '90.00', '2018-05-31 16:31:26'), (10831, 1, '77.00', '2018-05-31 16:31:35'), (10832, 1, '99.00', '2018-05-31 16:31:44'), (10833, 1, '92.00', '2018-05-31 16:31:53'), (10834, 1, '72.00', '2018-05-31 16:32:02'), (10835, 1, '77.00', '2018-05-31 16:32:11'), (10836, 1, '91.00', '2018-05-31 16:32:20'), (10837, 1, '60.00', '2018-05-31 16:32:30'), (10838, 1, '73.00', '2018-05-31 16:32:39'), (10839, 1, '60.00', '2018-05-31 16:32:48'), (10840, 1, '85.00', '2018-05-31 16:32:57'), (10841, 1, '68.00', '2018-05-31 16:33:06'), (10842, 1, '95.00', '2018-05-31 16:33:15'), (10843, 1, '98.00', '2018-05-31 16:33:25'), (10844, 1, '85.00', '2018-05-31 16:33:35'), (10845, 1, '91.00', '2018-05-31 16:33:47'), (10846, 1, '81.00', '2018-05-31 16:33:57'), (10847, 1, '94.00', '2018-05-31 16:34:06'), (10848, 1, '97.00', '2018-05-31 16:34:15'), (10849, 1, '63.00', '2018-05-31 16:34:25'), (10850, 1, '91.00', '2018-05-31 16:34:36'), (10851, 1, '85.00', '2018-05-31 16:34:45'), (10852, 1, '83.00', '2018-05-31 16:34:54'), (10853, 1, '88.00', '2018-05-31 16:35:03'), (10854, 1, '86.00', '2018-05-31 16:35:12'), (10855, 1, '69.00', '2018-05-31 16:35:22'), (10856, 1, '82.00', '2018-05-31 16:35:33'), (10857, 1, '77.00', '2018-05-31 16:35:44'), (10858, 1, '96.00', '2018-05-31 16:35:53'), (10859, 1, '85.00', '2018-05-31 16:36:03'), (10860, 1, '73.00', '2018-05-31 16:36:12'), (10861, 1, '73.00', '2018-05-31 16:36:22'), (10862, 1, '64.00', '2018-05-31 16:36:31'), (10863, 1, '85.00', '2018-05-31 16:36:40'), (10864, 1, '80.00', '2018-05-31 16:36:49'), (10865, 1, '94.00', '2018-05-31 16:36:59'), (10866, 1, '60.00', '2018-05-31 16:37:09'), (10867, 1, '63.00', '2018-05-31 16:37:18'), (10868, 1, '83.00', '2018-05-31 16:37:28'), (10869, 1, '99.00', '2018-05-31 16:37:38'), (10870, 1, '97.00', '2018-05-31 16:37:47'), (10871, 1, '90.00', '2018-05-31 16:37:56'), (10872, 1, '82.00', '2018-05-31 16:38:06'), (10873, 1, '80.00', '2018-05-31 16:38:15'), (10874, 1, '94.00', '2018-05-31 16:38:29'), (10875, 1, '98.00', '2018-05-31 16:38:38'), (10876, 1, '77.00', '2018-05-31 16:38:47'), (10877, 1, '69.00', '2018-05-31 16:38:57'), (10878, 1, '67.00', '2018-05-31 16:39:06'), (10879, 1, '62.00', '2018-05-31 16:39:16'), (10880, 1, '80.00', '2018-05-31 16:39:25'), (10881, 1, '98.00', '2018-05-31 16:39:34'), (10882, 1, '76.00', '2018-05-31 16:39:44'), (10883, 1, '92.00', '2018-05-31 16:39:57'), (10884, 1, '65.00', '2018-05-31 16:40:06'), (10885, 1, '99.00', '2018-05-31 16:40:15'), (10886, 1, '68.00', '2018-05-31 16:40:24'), (10887, 1, '94.00', '2018-05-31 16:40:35'), (10888, 1, '85.00', '2018-05-31 16:40:45'), (10889, 1, '93.00', '2018-05-31 16:40:54'), (10890, 1, '84.00', '2018-05-31 16:41:03'), (10891, 1, '70.00', '2018-05-31 16:41:15'), (10892, 1, '98.00', '2018-05-31 16:41:25'), (10893, 1, '95.00', '2018-05-31 16:41:35'), (10894, 1, '64.00', '2018-05-31 16:41:45'), (10895, 1, '71.00', '2018-05-31 16:41:54'), (10896, 1, '62.00', '2018-05-31 16:42:04'), (10897, 1, '76.00', '2018-05-31 16:42:13'), (10898, 1, '86.00', '2018-05-31 16:42:22'), (10899, 1, '72.00', '2018-05-31 16:42:33'), (10900, 1, '83.00', '2018-05-31 16:42:42'), (10901, 1, '78.00', '2018-05-31 16:42:52'), (10902, 1, '82.00', '2018-05-31 16:43:01'), (10903, 1, '92.00', '2018-05-31 16:43:10'), (10904, 1, '76.00', '2018-05-31 16:43:19'), (10905, 1, '73.00', '2018-05-31 16:43:28'), (10906, 1, '76.00', '2018-05-31 16:43:37'), (10907, 1, '65.00', '2018-05-31 16:43:46'), (10908, 1, '60.00', '2018-05-31 16:43:55'), (10909, 1, '89.00', '2018-05-31 16:44:04'), (10910, 1, '99.00', '2018-05-31 16:44:13'), (10911, 1, '63.00', '2018-05-31 16:44:22'), (10912, 1, '75.00', '2018-05-31 16:44:31'), (10913, 1, '69.00', '2018-05-31 16:44:40'), (10914, 1, '67.00', '2018-05-31 16:44:49'), (10915, 1, '71.00', '2018-05-31 16:44:58'), (10916, 1, '82.00', '2018-05-31 16:45:07'), (10917, 1, '86.00', '2018-05-31 16:45:16'), (10918, 1, '63.00', '2018-05-31 16:45:25'), (10919, 1, '62.00', '2018-05-31 16:45:34'), (10920, 1, '93.00', '2018-05-31 16:47:14'), (10921, 1, '99.00', '2018-05-31 16:47:23'), (10922, 1, '84.00', '2018-05-31 16:47:32'), (10923, 1, '87.00', '2018-05-31 16:47:41'), (10924, 1, '71.00', '2018-05-31 16:47:50'), (10925, 1, '67.00', '2018-05-31 16:47:50'), (10926, 1, '76.00', '2018-05-31 16:47:59'), (10927, 1, '83.00', '2018-05-31 16:48:08'), (10928, 1, '80.00', '2018-05-31 16:48:17'), (10929, 1, '96.00', '2018-05-31 16:48:26'), (10930, 1, '76.00', '2018-05-31 16:48:35'), (10931, 1, '93.00', '2018-05-31 16:48:44'), (10932, 1, '70.00', '2018-05-31 16:48:53'), (10933, 1, '72.00', '2018-05-31 16:49:02'), (10934, 1, '67.00', '2018-05-31 16:49:11'), (10935, 1, '70.00', '2018-05-31 16:49:20'), (10936, 1, '61.00', '2018-05-31 16:49:29'), (10937, 1, '96.00', '2018-05-31 16:49:38'), (10938, 1, '62.00', '2018-05-31 16:49:47'), (10939, 1, '65.00', '2018-05-31 16:49:56'), (10940, 1, '60.00', '2018-05-31 16:50:05'), (10941, 1, '93.00', '2018-05-31 16:50:14'), (10942, 1, '86.00', '2018-05-31 16:50:23'), (10943, 1, '93.00', '2018-05-31 16:50:32'), (10944, 1, '67.00', '2018-05-31 16:50:41'), (10945, 1, '64.00', '2018-05-31 16:50:51'), (10946, 1, '61.00', '2018-05-31 16:51:00'), (10947, 1, '72.00', '2018-05-31 16:51:09'), (10948, 1, '65.00', '2018-05-31 16:51:18'), (10949, 1, '93.00', '2018-05-31 16:51:27'), (10950, 1, '84.00', '2018-05-31 16:51:36'), (10951, 1, '65.00', '2018-05-31 16:51:45'), (10952, 1, '89.00', '2018-05-31 16:51:54'), (10953, 1, '78.00', '2018-05-31 16:52:04'), (10954, 1, '95.00', '2018-05-31 16:52:13'), (10955, 1, '62.00', '2018-05-31 16:52:21'), (10956, 1, '80.00', '2018-05-31 16:52:30'), (10957, 1, '97.00', '2018-05-31 16:52:39'); INSERT INTO `leitura` (`idLeitura`, `idMonitor`, `nivel`, `dataHora`) VALUES (10958, 1, '71.00', '2018-05-31 16:52:48'), (10959, 1, '66.00', '2018-05-31 16:52:57'), (10960, 1, '95.00', '2018-05-31 16:53:06'), (10961, 1, '98.00', '2018-05-31 16:53:15'), (10962, 1, '70.00', '2018-05-31 16:53:24'), (10963, 1, '63.00', '2018-05-31 16:53:33'), (10964, 1, '94.00', '2018-05-31 16:53:42'), (10965, 1, '76.00', '2018-05-31 16:53:51'), (10966, 1, '93.00', '2018-05-31 16:54:00'), (10967, 1, '71.00', '2018-05-31 16:54:09'), (10968, 1, '68.00', '2018-05-31 16:54:18'), (10969, 1, '93.00', '2018-05-31 16:54:27'), (10970, 1, '95.00', '2018-05-31 16:54:36'), (10971, 1, '67.00', '2018-05-31 16:54:45'), (10972, 1, '67.00', '2018-05-31 16:54:54'), (10973, 1, '61.00', '2018-05-31 16:55:03'), (10974, 1, '62.00', '2018-05-31 16:55:12'), (10975, 1, '88.00', '2018-05-31 16:55:21'), (10976, 1, '77.00', '2018-05-31 16:55:30'), (10977, 1, '66.00', '2018-05-31 16:55:39'), (10978, 1, '66.00', '2018-05-31 16:55:48'), (10979, 1, '86.00', '2018-05-31 16:55:57'), (10980, 1, '80.00', '2018-05-31 16:56:06'), (10981, 1, '83.00', '2018-05-31 16:56:15'), (10982, 1, '86.00', '2018-05-31 16:56:24'), (10983, 1, '97.00', '2018-05-31 16:56:33'), (10984, 1, '85.00', '2018-05-31 16:56:42'), (10985, 1, '85.00', '2018-05-31 16:56:52'), (10986, 1, '61.00', '2018-05-31 16:57:01'), (10987, 1, '99.00', '2018-05-31 16:57:10'), (10988, 1, '71.00', '2018-05-31 16:57:19'), (10989, 1, '69.00', '2018-05-31 16:57:29'), (10990, 1, '84.00', '2018-05-31 16:57:38'), (10991, 1, '79.00', '2018-05-31 16:57:47'), (10992, 1, '98.00', '2018-05-31 16:57:56'), (10993, 1, '74.00', '2018-05-31 16:58:06'), (10994, 1, '63.00', '2018-05-31 16:58:15'), (10995, 1, '90.00', '2018-05-31 16:58:24'), (10996, 1, '99.00', '2018-05-31 16:58:33'), (10997, 1, '71.00', '2018-05-31 16:58:42'), (10998, 1, '67.00', '2018-05-31 16:58:51'), (10999, 1, '90.00', '2018-05-31 16:59:00'), (11000, 1, '69.00', '2018-05-31 16:59:09'), (11001, 1, '82.00', '2018-05-31 16:59:18'), (11002, 1, '96.00', '2018-05-31 16:59:27'), (11003, 1, '76.00', '2018-05-31 16:59:36'), (11004, 1, '75.00', '2018-05-31 16:59:45'), (11005, 1, '63.00', '2018-05-31 16:59:54'), (11006, 1, '80.00', '2018-05-31 17:00:03'), (11007, 1, '75.00', '2018-05-31 17:00:12'), (11008, 1, '97.00', '2018-05-31 17:00:21'), (11009, 1, '91.00', '2018-05-31 17:00:30'), (11010, 1, '94.00', '2018-05-31 17:00:39'), (11011, 1, '76.00', '2018-05-31 17:00:48'), (11012, 1, '94.00', '2018-05-31 17:00:58'), (11013, 1, '99.00', '2018-05-31 17:01:07'), (11014, 1, '94.00', '2018-05-31 17:01:16'), (11015, 1, '63.00', '2018-05-31 17:01:25'), (11016, 1, '80.00', '2018-05-31 17:01:34'), (11017, 1, '89.00', '2018-05-31 17:01:43'), (11018, 1, '67.00', '2018-05-31 17:01:53'), (11019, 1, '79.00', '2018-05-31 17:02:02'), (11020, 1, '78.00', '2018-05-31 17:02:11'), (11021, 1, '92.00', '2018-05-31 17:02:20'), (11022, 1, '92.00', '2018-05-31 17:02:29'), (11023, 1, '85.00', '2018-05-31 17:02:38'), (11024, 1, '61.00', '2018-05-31 17:02:48'), (11025, 1, '95.00', '2018-05-31 17:02:57'), (11026, 1, '86.00', '2018-05-31 17:03:06'), (11027, 1, '88.00', '2018-05-31 17:03:15'), (11028, 1, '93.00', '2018-05-31 17:03:25'), (11029, 1, '95.00', '2018-05-31 17:03:34'), (11030, 1, '65.00', '2018-05-31 17:03:43'), (11031, 1, '90.00', '2018-05-31 17:03:53'), (11032, 1, '88.00', '2018-05-31 17:04:02'), (11033, 1, '72.00', '2018-05-31 17:04:11'), (11034, 1, '69.00', '2018-05-31 17:04:21'), (11035, 1, '79.00', '2018-05-31 17:04:30'), (11036, 1, '84.00', '2018-05-31 17:04:39'), (11037, 1, '94.00', '2018-05-31 17:04:49'), (11038, 1, '90.00', '2018-05-31 17:04:58'), (11039, 1, '60.00', '2018-05-31 17:05:07'), (11040, 1, '84.00', '2018-05-31 17:05:16'), (11041, 1, '85.00', '2018-05-31 17:05:25'), (11042, 1, '83.00', '2018-05-31 17:05:34'), (11043, 1, '80.00', '2018-05-31 17:05:43'), (11044, 1, '94.00', '2018-05-31 17:05:52'), (11045, 1, '74.00', '2018-05-31 17:06:01'), (11046, 1, '89.00', '2018-05-31 17:06:10'), (11047, 1, '75.00', '2018-05-31 17:06:19'), (11048, 1, '85.00', '2018-05-31 17:06:28'), (11049, 1, '81.00', '2018-05-31 17:06:37'), (11050, 1, '74.00', '2018-05-31 17:06:46'), (11051, 1, '94.00', '2018-05-31 17:06:55'), (11052, 1, '90.00', '2018-05-31 17:07:04'), (11053, 1, '73.00', '2018-05-31 17:07:14'), (11054, 1, '65.00', '2018-05-31 17:07:23'), (11055, 1, '85.00', '2018-05-31 17:07:32'), (11056, 1, '78.00', '2018-05-31 17:07:41'), (11057, 1, '61.00', '2018-05-31 17:07:50'), (11058, 1, '61.00', '2018-05-31 17:07:59'), (11059, 1, '72.00', '2018-05-31 17:08:09'), (11060, 1, '90.00', '2018-05-31 17:08:18'), (11061, 1, '77.00', '2018-05-31 17:08:27'), (11062, 1, '96.00', '2018-05-31 17:08:36'), (11063, 1, '80.00', '2018-05-31 17:08:45'), (11064, 1, '79.00', '2018-05-31 17:08:54'), (11065, 1, '80.00', '2018-05-31 17:09:03'), (11066, 1, '81.00', '2018-05-31 17:09:12'), (11067, 1, '64.00', '2018-05-31 17:09:21'), (11068, 1, '61.00', '2018-05-31 17:09:30'), (11069, 1, '77.00', '2018-05-31 17:09:39'), (11070, 1, '73.00', '2018-05-31 17:09:48'), (11071, 1, '78.00', '2018-05-31 17:09:58'), (11072, 1, '99.00', '2018-05-31 17:10:07'), (11073, 1, '89.00', '2018-05-31 17:10:16'), (11074, 1, '80.00', '2018-05-31 17:10:25'), (11075, 1, '98.00', '2018-05-31 17:10:34'), (11076, 1, '80.00', '2018-05-31 17:10:43'), (11077, 1, '84.00', '2018-05-31 17:10:52'), (11078, 1, '72.00', '2018-05-31 17:11:01'), (11079, 1, '68.00', '2018-05-31 17:11:10'), (11080, 1, '82.00', '2018-05-31 17:11:19'), (11081, 1, '92.00', '2018-05-31 17:11:29'), (11082, 1, '88.00', '2018-05-31 17:11:38'), (11083, 1, '91.00', '2018-05-31 17:11:47'), (11084, 1, '97.00', '2018-05-31 17:11:56'), (11085, 1, '87.00', '2018-05-31 17:12:05'), (11086, 1, '67.00', '2018-05-31 17:12:14'), (11087, 1, '99.00', '2018-05-31 17:12:23'), (11088, 1, '86.00', '2018-05-31 17:12:32'), (11089, 1, '94.00', '2018-05-31 17:12:41'), (11090, 1, '72.00', '2018-05-31 17:12:50'), (11091, 1, '69.00', '2018-05-31 17:12:59'), (11092, 1, '71.00', '2018-05-31 17:13:08'), (11093, 1, '76.00', '2018-05-31 17:13:18'), (11094, 1, '82.00', '2018-05-31 17:13:27'), (11095, 1, '75.00', '2018-05-31 17:13:36'), (11096, 1, '76.00', '2018-05-31 17:13:45'), (11097, 1, '75.00', '2018-05-31 17:13:55'), (11098, 1, '93.00', '2018-05-31 17:14:04'), (11099, 1, '65.00', '2018-05-31 17:14:13'), (11100, 1, '68.00', '2018-05-31 17:14:22'), (11101, 1, '73.00', '2018-05-31 17:14:31'), (11102, 1, '61.00', '2018-05-31 17:14:40'), (11103, 1, '72.00', '2018-05-31 17:14:49'), (11104, 1, '80.00', '2018-05-31 17:14:58'), (11105, 1, '99.00', '2018-05-31 17:15:07'), (11106, 1, '91.00', '2018-05-31 17:15:16'), (11107, 1, '84.00', '2018-05-31 17:15:25'), (11108, 1, '88.00', '2018-05-31 17:15:34'), (11109, 1, '84.00', '2018-05-31 17:15:43'), (11110, 1, '62.00', '2018-05-31 17:15:52'), (11111, 1, '82.00', '2018-05-31 17:16:01'), (11112, 1, '82.00', '2018-05-31 17:16:10'), (11113, 1, '63.00', '2018-05-31 17:16:19'), (11114, 1, '84.00', '2018-05-31 17:16:29'), (11115, 1, '79.00', '2018-05-31 17:16:38'), (11116, 1, '67.00', '2018-05-31 17:16:47'), (11117, 1, '78.00', '2018-05-31 17:16:56'), (11118, 1, '80.00', '2018-05-31 17:17:05'), (11119, 1, '76.00', '2018-05-31 17:17:15'), (11120, 1, '90.00', '2018-05-31 17:17:23'), (11121, 1, '79.00', '2018-05-31 17:17:33'), (11122, 1, '66.00', '2018-05-31 17:17:42'), (11123, 1, '75.00', '2018-05-31 17:17:51'), (11124, 1, '83.00', '2018-05-31 17:18:00'), (11125, 1, '65.00', '2018-05-31 17:18:08'), (11126, 1, '91.00', '2018-05-31 17:18:18'), (11127, 1, '83.00', '2018-05-31 17:18:26'), (11128, 1, '79.00', '2018-05-31 17:18:35'), (11129, 1, '77.00', '2018-05-31 17:18:44'), (11130, 1, '99.00', '2018-05-31 17:18:53'), (11131, 1, '96.00', '2018-05-31 17:19:02'), (11132, 1, '95.00', '2018-05-31 17:19:11'), (11133, 1, '74.00', '2018-05-31 17:19:20'), (11134, 1, '72.00', '2018-05-31 17:19:29'), (11135, 1, '71.00', '2018-05-31 17:19:38'), (11136, 1, '79.00', '2018-05-31 17:19:47'), (11137, 1, '92.00', '2018-05-31 17:19:57'), (11138, 1, '70.00', '2018-05-31 17:20:06'), (11139, 1, '73.00', '2018-05-31 17:20:15'), (11140, 1, '66.00', '2018-05-31 17:20:24'), (11141, 1, '90.00', '2018-05-31 17:20:32'), (11142, 1, '62.00', '2018-05-31 17:20:41'), (11143, 1, '68.00', '2018-05-31 17:20:50'), (11144, 1, '62.00', '2018-05-31 17:20:59'), (11145, 1, '82.00', '2018-05-31 17:21:08'), (11146, 1, '93.00', '2018-05-31 17:21:17'), (11147, 1, '72.00', '2018-05-31 17:21:26'), (11148, 1, '75.00', '2018-05-31 17:21:35'), (11149, 1, '89.00', '2018-05-31 17:21:44'), (11150, 1, '92.00', '2018-05-31 17:21:53'), (11151, 1, '83.00', '2018-05-31 17:22:02'), (11152, 1, '88.00', '2018-05-31 17:22:11'), (11153, 1, '61.00', '2018-05-31 17:22:20'), (11154, 1, '76.00', '2018-05-31 17:22:29'), (11155, 1, '94.00', '2018-05-31 17:22:38'), (11156, 1, '69.00', '2018-05-31 17:22:47'), (11157, 1, '73.00', '2018-05-31 17:22:56'), (11158, 1, '70.00', '2018-05-31 17:23:05'), (11159, 1, '62.00', '2018-05-31 17:23:14'), (11160, 1, '74.00', '2018-05-31 17:23:23'), (11161, 1, '83.00', '2018-05-31 17:23:32'), (11162, 1, '88.00', '2018-05-31 17:23:41'), (11163, 1, '94.00', '2018-05-31 17:23:50'), (11164, 1, '71.00', '2018-05-31 17:23:59'), (11165, 1, '89.00', '2018-05-31 17:24:08'), (11166, 1, '81.00', '2018-05-31 17:24:17'), (11167, 1, '91.00', '2018-05-31 17:24:26'), (11168, 1, '71.00', '2018-05-31 17:24:35'), (11169, 1, '77.00', '2018-05-31 17:24:44'), (11170, 1, '83.00', '2018-05-31 17:24:53'), (11171, 1, '99.00', '2018-05-31 17:25:02'), (11172, 1, '78.00', '2018-05-31 17:25:11'), (11173, 1, '96.00', '2018-05-31 17:25:20'), (11174, 1, '90.00', '2018-05-31 17:25:29'), (11175, 1, '77.00', '2018-05-31 17:25:38'), (11176, 1, '90.00', '2018-05-31 17:25:47'), (11177, 1, '82.00', '2018-05-31 17:25:56'), (11178, 1, '72.00', '2018-05-31 17:26:05'), (11179, 1, '80.00', '2018-05-31 17:26:14'), (11180, 1, '65.00', '2018-05-31 17:26:23'), (11181, 1, '62.00', '2018-05-31 17:26:32'), (11182, 1, '81.00', '2018-05-31 17:26:41'), (11183, 1, '69.00', '2018-05-31 17:26:50'), (11184, 1, '71.00', '2018-05-31 17:26:59'), (11185, 1, '77.00', '2018-05-31 17:27:08'), (11186, 1, '84.00', '2018-05-31 17:27:17'), (11187, 1, '69.00', '2018-05-31 17:27:26'), (11188, 1, '64.00', '2018-05-31 17:27:35'), (11189, 1, '75.00', '2018-05-31 17:27:44'), (11190, 1, '82.00', '2018-05-31 17:27:53'), (11191, 1, '77.00', '2018-05-31 17:28:02'), (11192, 1, '85.00', '2018-05-31 17:28:11'), (11193, 1, '69.00', '2018-05-31 17:28:20'), (11194, 1, '98.00', '2018-05-31 17:28:29'), (11195, 1, '88.00', '2018-05-31 17:28:38'), (11196, 1, '83.00', '2018-05-31 17:28:47'), (11197, 1, '93.00', '2018-05-31 17:28:56'), (11198, 1, '73.00', '2018-05-31 17:29:05'), (11199, 1, '83.00', '2018-05-31 17:29:14'), (11200, 1, '77.00', '2018-05-31 17:29:23'), (11201, 1, '70.00', '2018-05-31 17:29:31'), (11202, 1, '76.00', '2018-05-31 17:29:40'), (11203, 1, '81.00', '2018-05-31 17:29:49'), (11204, 1, '71.00', '2018-05-31 17:29:59'), (11205, 1, '85.00', '2018-05-31 17:30:08'), (11206, 1, '81.00', '2018-05-31 17:30:17'), (11207, 1, '69.00', '2018-05-31 17:30:26'), (11208, 1, '99.00', '2018-05-31 17:30:35'), (11209, 1, '81.00', '2018-05-31 17:30:44'), (11210, 1, '66.00', '2018-05-31 17:30:53'), (11211, 1, '72.00', '2018-05-31 17:31:02'), (11212, 1, '84.00', '2018-05-31 17:31:11'), (11213, 1, '64.00', '2018-05-31 17:31:20'), (11214, 1, '83.00', '2018-05-31 17:31:29'), (11215, 1, '99.00', '2018-05-31 17:31:38'), (11216, 1, '63.00', '2018-05-31 17:31:47'), (11217, 1, '89.00', '2018-05-31 17:31:56'), (11218, 1, '99.00', '2018-05-31 17:32:05'), (11219, 1, '91.00', '2018-05-31 17:32:14'), (11220, 1, '76.00', '2018-05-31 17:32:23'), (11221, 1, '88.00', '2018-05-31 17:32:33'), (11222, 1, '75.00', '2018-05-31 17:32:42'), (11223, 1, '64.00', '2018-05-31 17:32:51'), (11224, 1, '80.00', '2018-05-31 17:33:00'), (11225, 1, '91.00', '2018-05-31 17:33:09'), (11226, 1, '91.00', '2018-05-31 17:33:18'), (11227, 1, '81.00', '2018-05-31 17:33:27'), (11228, 1, '62.00', '2018-05-31 17:33:36'), (11229, 1, '76.00', '2018-05-31 17:33:45'), (11230, 1, '73.00', '2018-05-31 17:33:54'), (11231, 1, '64.00', '2018-05-31 17:34:03'), (11232, 1, '72.00', '2018-05-31 17:34:12'), (11233, 1, '92.00', '2018-05-31 17:34:21'), (11234, 1, '80.00', '2018-05-31 17:34:30'), (11235, 1, '82.00', '2018-05-31 17:34:39'), (11236, 1, '90.00', '2018-05-31 17:34:48'), (11237, 1, '97.00', '2018-05-31 17:34:57'), (11238, 1, '83.00', '2018-05-31 17:35:06'), (11239, 1, '93.00', '2018-05-31 17:35:15'), (11240, 1, '75.00', '2018-05-31 17:35:24'), (11241, 1, '91.00', '2018-05-31 17:35:33'), (11242, 1, '91.00', '2018-05-31 17:35:42'), (11243, 1, '92.00', '2018-05-31 17:35:51'), (11244, 1, '99.00', '2018-05-31 17:36:00'), (11245, 1, '76.00', '2018-05-31 17:36:09'), (11246, 1, '68.00', '2018-05-31 17:36:18'), (11247, 1, '94.00', '2018-05-31 17:36:27'), (11248, 1, '64.00', '2018-05-31 17:36:36'), (11249, 1, '61.00', '2018-05-31 17:36:45'), (11250, 1, '61.00', '2018-05-31 17:36:54'), (11251, 1, '93.00', '2018-05-31 17:37:03'), (11252, 1, '82.00', '2018-05-31 17:37:12'), (11253, 1, '61.00', '2018-05-31 17:37:21'), (11254, 1, '70.00', '2018-05-31 17:37:30'), (11255, 1, '64.00', '2018-05-31 17:37:39'), (11256, 1, '65.00', '2018-05-31 17:37:48'), (11257, 1, '62.00', '2018-05-31 17:37:58'), (11258, 1, '70.00', '2018-05-31 17:38:07'), (11259, 1, '63.00', '2018-05-31 17:38:16'), (11260, 1, '69.00', '2018-05-31 17:38:25'), (11261, 1, '81.00', '2018-05-31 17:38:34'), (11262, 1, '60.00', '2018-05-31 17:38:43'), (11263, 1, '82.00', '2018-05-31 17:38:52'), (11264, 1, '86.00', '2018-05-31 17:39:01'), (11265, 1, '62.00', '2018-05-31 17:39:10'), (11266, 1, '98.00', '2018-05-31 17:39:19'), (11267, 1, '85.00', '2018-05-31 17:39:28'), (11268, 1, '68.00', '2018-05-31 17:39:37'), (11269, 1, '91.00', '2018-05-31 17:39:46'), (11270, 1, '82.00', '2018-05-31 17:39:55'), (11271, 1, '77.00', '2018-05-31 17:40:04'), (11272, 1, '66.00', '2018-05-31 17:40:14'), (11273, 1, '61.00', '2018-05-31 17:40:23'), (11274, 1, '98.00', '2018-05-31 17:40:32'), (11275, 1, '98.00', '2018-05-31 17:40:40'), (11276, 1, '80.00', '2018-05-31 17:40:49'), (11277, 1, '67.00', '2018-05-31 17:40:59'), (11278, 1, '85.00', '2018-05-31 17:41:08'), (11279, 1, '71.00', '2018-05-31 17:41:16'), (11280, 1, '68.00', '2018-05-31 17:41:25'), (11281, 1, '87.00', '2018-05-31 17:41:34'), (11282, 1, '67.00', '2018-05-31 17:41:44'), (11283, 1, '96.00', '2018-05-31 17:41:53'), (11284, 1, '91.00', '2018-05-31 17:42:02'), (11285, 1, '81.00', '2018-05-31 17:42:11'), (11286, 1, '75.00', '2018-05-31 17:42:20'), (11287, 1, '77.00', '2018-05-31 17:42:29'), (11288, 1, '92.00', '2018-05-31 17:42:38'), (11289, 1, '68.00', '2018-05-31 17:42:47'), (11290, 1, '82.00', '2018-05-31 17:42:56'), (11291, 1, '94.00', '2018-05-31 17:43:05'), (11292, 1, '86.00', '2018-05-31 17:43:14'), (11293, 1, '60.00', '2018-05-31 17:43:23'), (11294, 1, '87.00', '2018-05-31 17:43:32'), (11295, 1, '93.00', '2018-05-31 17:43:41'), (11296, 1, '68.00', '2018-05-31 17:43:50'), (11297, 1, '92.00', '2018-05-31 17:43:59'), (11298, 1, '82.00', '2018-05-31 17:44:08'), (11299, 1, '72.00', '2018-05-31 17:44:17'), (11300, 1, '83.00', '2018-05-31 17:44:27'), (11301, 1, '86.00', '2018-05-31 17:44:36'), (11302, 1, '96.00', '2018-05-31 17:44:45'), (11303, 1, '83.00', '2018-05-31 17:44:54'), (11304, 1, '75.00', '2018-05-31 17:45:03'), (11305, 1, '93.00', '2018-05-31 17:45:12'), (11306, 1, '89.00', '2018-05-31 17:45:21'), (11307, 1, '99.00', '2018-05-31 17:45:30'), (11308, 1, '85.00', '2018-05-31 17:45:39'), (11309, 1, '76.00', '2018-05-31 17:45:48'), (11310, 1, '61.00', '2018-05-31 17:45:57'), (11311, 1, '69.00', '2018-05-31 17:46:06'), (11312, 1, '84.00', '2018-05-31 17:46:15'), (11313, 1, '92.00', '2018-05-31 17:46:24'), (11314, 1, '71.00', '2018-05-31 17:46:33'), (11315, 1, '92.00', '2018-05-31 17:46:42'), (11316, 1, '99.00', '2018-05-31 17:46:51'), (11317, 1, '84.00', '2018-05-31 17:47:00'), (11318, 1, '74.00', '2018-05-31 17:47:09'), (11319, 1, '95.00', '2018-05-31 17:47:18'), (11320, 1, '71.00', '2018-05-31 17:47:27'), (11321, 1, '61.00', '2018-05-31 17:47:36'), (11322, 1, '83.00', '2018-05-31 17:47:45'), (11323, 1, '70.00', '2018-05-31 17:47:54'), (11324, 1, '61.00', '2018-05-31 17:48:04'), (11325, 1, '78.00', '2018-05-31 17:48:13'), (11326, 1, '98.00', '2018-05-31 17:48:22'), (11327, 1, '78.00', '2018-05-31 17:48:31'), (11328, 1, '87.00', '2018-05-31 17:48:40'), (11329, 1, '83.00', '2018-05-31 17:48:49'), (11330, 1, '71.00', '2018-05-31 17:48:58'), (11331, 1, '94.00', '2018-05-31 17:49:08'), (11332, 1, '85.00', '2018-05-31 17:49:17'), (11333, 1, '99.00', '2018-05-31 17:49:26'), (11334, 1, '77.00', '2018-05-31 17:49:35'), (11335, 1, '66.00', '2018-05-31 17:49:44'), (11336, 1, '65.00', '2018-05-31 17:49:53'), (11337, 1, '91.00', '2018-05-31 17:50:02'), (11338, 1, '95.00', '2018-05-31 17:50:11'), (11339, 1, '93.00', '2018-05-31 17:50:20'), (11340, 1, '91.00', '2018-05-31 17:50:29'), (11341, 1, '78.00', '2018-05-31 17:50:38'), (11342, 1, '67.00', '2018-05-31 17:50:47'), (11343, 1, '99.00', '2018-05-31 17:50:56'), (11344, 1, '98.00', '2018-05-31 17:51:05'), (11345, 1, '77.00', '2018-05-31 17:51:14'), (11346, 1, '60.00', '2018-05-31 17:51:23'), (11347, 1, '73.00', '2018-05-31 17:51:32'), (11348, 1, '96.00', '2018-05-31 17:51:41'), (11349, 1, '91.00', '2018-05-31 17:51:50'), (11350, 1, '68.00', '2018-05-31 17:51:59'), (11351, 1, '85.00', '2018-05-31 17:52:08'), (11352, 1, '70.00', '2018-05-31 17:52:17'), (11353, 1, '88.00', '2018-05-31 17:52:26'), (11354, 1, '81.00', '2018-05-31 17:52:35'), (11355, 1, '80.00', '2018-05-31 17:52:44'), (11356, 1, '76.00', '2018-05-31 17:52:53'), (11357, 1, '92.00', '2018-05-31 17:53:02'), (11358, 1, '85.00', '2018-05-31 17:53:11'), (11359, 1, '68.00', '2018-05-31 17:53:20'), (11360, 1, '99.00', '2018-05-31 17:53:29'), (11361, 1, '83.00', '2018-05-31 17:53:38'), (11362, 1, '95.00', '2018-05-31 17:53:47'), (11363, 1, '76.00', '2018-05-31 17:53:56'), (11364, 1, '68.00', '2018-05-31 17:54:05'), (11365, 1, '72.00', '2018-05-31 17:54:14'), (11366, 1, '98.00', '2018-05-31 17:54:23'), (11367, 1, '69.00', '2018-05-31 17:54:32'), (11368, 1, '74.00', '2018-05-31 17:54:41'), (11369, 1, '61.00', '2018-05-31 17:54:50'), (11370, 1, '91.00', '2018-05-31 17:54:59'), (11371, 1, '62.00', '2018-05-31 17:55:08'), (11372, 1, '79.00', '2018-05-31 17:55:17'), (11373, 1, '77.00', '2018-05-31 17:55:26'), (11374, 1, '88.00', '2018-05-31 17:55:35'), (11375, 1, '87.00', '2018-05-31 17:55:44'), (11376, 1, '94.00', '2018-05-31 17:55:53'), (11377, 1, '87.00', '2018-05-31 17:56:02'), (11378, 1, '94.00', '2018-05-31 17:56:11'), (11379, 1, '97.00', '2018-05-31 17:56:20'), (11380, 1, '64.00', '2018-05-31 17:56:29'), (11381, 1, '88.00', '2018-05-31 17:56:38'), (11382, 1, '90.00', '2018-05-31 17:56:47'), (11383, 1, '95.00', '2018-05-31 17:56:56'), (11384, 1, '88.00', '2018-05-31 17:57:05'), (11385, 1, '75.00', '2018-05-31 17:57:14'), (11386, 1, '78.00', '2018-05-31 17:57:23'), (11387, 1, '79.00', '2018-05-31 17:57:32'), (11388, 1, '86.00', '2018-05-31 17:57:41'), (11389, 1, '95.00', '2018-05-31 17:57:50'), (11390, 1, '60.00', '2018-05-31 17:57:59'), (11391, 1, '61.00', '2018-05-31 17:58:08'), (11392, 1, '67.00', '2018-05-31 17:58:17'), (11393, 1, '63.00', '2018-05-31 17:58:26'), (11394, 1, '92.00', '2018-05-31 17:58:35'), (11395, 1, '87.00', '2018-05-31 17:58:44'), (11396, 1, '66.00', '2018-05-31 17:58:53'), (11397, 1, '97.00', '2018-05-31 17:59:02'), (11398, 1, '66.00', '2018-05-31 17:59:11'), (11399, 1, '81.00', '2018-05-31 17:59:20'), (11400, 1, '61.00', '2018-05-31 17:59:29'), (11401, 1, '81.00', '2018-05-31 17:59:38'), (11402, 1, '80.00', '2018-05-31 17:59:47'), (11403, 1, '82.00', '2018-05-31 17:59:56'), (11404, 1, '64.00', '2018-05-31 18:00:05'), (11405, 1, '77.00', '2018-05-31 18:00:14'), (11406, 1, '99.00', '2018-05-31 18:00:23'), (11407, 1, '97.00', '2018-05-31 18:00:32'), (11408, 1, '92.00', '2018-05-31 18:00:41'), (11409, 1, '94.00', '2018-05-31 18:00:49'), (11410, 1, '76.00', '2018-05-31 18:00:58'), (11411, 1, '68.00', '2018-05-31 18:01:07'), (11412, 1, '90.00', '2018-05-31 18:01:16'), (11413, 1, '83.00', '2018-05-31 18:01:25'), (11414, 1, '88.00', '2018-05-31 18:01:34'), (11415, 1, '95.00', '2018-05-31 18:01:43'), (11416, 1, '62.00', '2018-05-31 18:01:52'), (11417, 1, '62.00', '2018-05-31 18:02:01'), (11418, 1, '99.00', '2018-05-31 18:02:10'), (11419, 1, '69.00', '2018-05-31 18:02:19'), (11420, 1, '87.00', '2018-05-31 18:02:28'), (11421, 1, '81.00', '2018-05-31 18:02:37'), (11422, 1, '81.00', '2018-05-31 18:02:46'), (11423, 1, '68.00', '2018-05-31 18:02:55'), (11424, 1, '66.00', '2018-05-31 18:03:04'), (11425, 1, '83.00', '2018-05-31 18:03:13'), (11426, 1, '77.00', '2018-05-31 18:03:22'), (11427, 1, '81.00', '2018-05-31 18:03:31'), (11428, 1, '75.00', '2018-05-31 18:03:40'), (11429, 1, '92.00', '2018-05-31 18:03:49'), (11430, 1, '87.00', '2018-05-31 18:03:58'), (11431, 1, '62.00', '2018-05-31 18:04:07'), (11432, 1, '93.00', '2018-05-31 18:04:16'), (11433, 1, '81.00', '2018-05-31 18:04:25'), (11434, 1, '71.00', '2018-05-31 18:04:34'), (11435, 1, '88.00', '2018-05-31 18:04:43'), (11436, 1, '81.00', '2018-05-31 18:04:52'), (11437, 1, '97.00', '2018-05-31 18:05:01'), (11438, 1, '97.00', '2018-05-31 18:05:10'), (11439, 1, '93.00', '2018-05-31 18:05:19'), (11440, 1, '89.00', '2018-05-31 18:05:28'), (11441, 1, '93.00', '2018-05-31 18:05:37'), (11442, 1, '63.00', '2018-05-31 18:05:46'), (11443, 1, '93.00', '2018-05-31 18:05:55'), (11444, 1, '69.00', '2018-05-31 18:06:04'), (11445, 1, '67.00', '2018-05-31 18:06:13'), (11446, 1, '81.00', '2018-05-31 18:06:22'), (11447, 1, '63.00', '2018-05-31 18:06:31'), (11448, 1, '86.00', '2018-05-31 18:06:40'), (11449, 1, '63.00', '2018-05-31 18:06:49'), (11450, 1, '71.00', '2018-05-31 18:06:58'), (11451, 1, '71.00', '2018-05-31 18:07:07'), (11452, 1, '65.00', '2018-05-31 18:07:16'), (11453, 1, '85.00', '2018-05-31 18:07:25'), (11454, 1, '88.00', '2018-05-31 18:07:34'), (11455, 1, '86.00', '2018-05-31 18:07:43'), (11456, 1, '89.00', '2018-05-31 18:07:52'), (11457, 1, '81.00', '2018-05-31 18:08:00'), (11458, 1, '72.00', '2018-05-31 18:08:09'), (11459, 1, '73.00', '2018-05-31 18:08:18'), (11460, 1, '67.00', '2018-05-31 18:08:27'), (11461, 1, '97.00', '2018-05-31 18:08:36'), (11462, 1, '67.00', '2018-05-31 18:08:45'), (11463, 1, '79.00', '2018-05-31 18:08:54'), (11464, 1, '71.00', '2018-05-31 18:09:03'), (11465, 1, '95.00', '2018-05-31 18:09:12'), (11466, 1, '80.00', '2018-05-31 18:09:21'), (11467, 1, '88.00', '2018-05-31 18:09:30'), (11468, 1, '64.00', '2018-05-31 18:09:39'), (11469, 1, '90.00', '2018-05-31 18:09:48'), (11470, 1, '75.00', '2018-05-31 18:09:57'), (11471, 1, '69.00', '2018-05-31 18:10:06'), (11472, 1, '75.00', '2018-05-31 18:10:15'), (11473, 1, '61.00', '2018-05-31 18:10:24'), (11474, 1, '63.00', '2018-05-31 18:10:33'), (11475, 1, '61.00', '2018-05-31 18:10:42'), (11476, 1, '61.00', '2018-05-31 18:10:51'), (11477, 1, '92.00', '2018-05-31 18:11:00'), (11478, 1, '80.00', '2018-05-31 18:11:09'), (11479, 1, '98.00', '2018-05-31 18:11:18'), (11480, 1, '79.00', '2018-05-31 18:11:27'), (11481, 1, '70.00', '2018-05-31 18:11:36'), (11482, 1, '65.00', '2018-05-31 18:11:45'), (11483, 1, '75.00', '2018-05-31 18:11:54'), (11484, 1, '73.00', '2018-05-31 18:12:03'), (11485, 1, '88.00', '2018-05-31 18:12:12'), (11486, 1, '88.00', '2018-05-31 18:12:21'), (11487, 1, '74.00', '2018-05-31 18:12:30'), (11488, 1, '98.00', '2018-05-31 18:12:39'), (11489, 1, '63.00', '2018-05-31 18:12:48'), (11490, 1, '96.00', '2018-05-31 18:12:57'), (11491, 1, '70.00', '2018-05-31 18:13:06'), (11492, 1, '75.00', '2018-05-31 18:13:15'), (11493, 1, '99.00', '2018-05-31 18:13:24'), (11494, 1, '74.00', '2018-05-31 18:13:33'), (11495, 1, '63.00', '2018-05-31 18:13:42'), (11496, 1, '90.00', '2018-05-31 18:13:51'), (11497, 1, '61.00', '2018-05-31 18:14:00'), (11498, 1, '77.00', '2018-05-31 18:14:09'), (11499, 1, '85.00', '2018-05-31 18:14:18'), (11500, 1, '66.00', '2018-05-31 18:14:27'), (11501, 1, '79.00', '2018-05-31 18:14:36'), (11502, 1, '88.00', '2018-05-31 18:14:45'), (11503, 1, '78.00', '2018-05-31 18:14:54'), (11504, 1, '82.00', '2018-05-31 18:15:03'), (11505, 1, '80.00', '2018-05-31 18:15:12'), (11506, 1, '74.00', '2018-05-31 18:15:21'), (11507, 1, '66.00', '2018-05-31 18:15:30'), (11508, 1, '83.00', '2018-05-31 18:15:39'), (11509, 1, '87.00', '2018-05-31 18:15:48'), (11510, 1, '80.00', '2018-05-31 18:15:57'), (11511, 1, '70.00', '2018-05-31 18:16:06'), (11512, 1, '96.00', '2018-05-31 18:16:15'), (11513, 1, '70.00', '2018-05-31 18:16:24'), (11514, 1, '65.00', '2018-05-31 18:16:33'), (11515, 1, '85.00', '2018-05-31 18:16:42'), (11516, 1, '63.00', '2018-05-31 18:16:51'), (11517, 1, '79.00', '2018-05-31 18:17:00'), (11518, 1, '69.00', '2018-05-31 18:17:09'), (11519, 1, '70.00', '2018-05-31 18:17:18'), (11520, 1, '82.00', '2018-05-31 18:17:27'), (11521, 1, '86.00', '2018-05-31 18:17:36'), (11522, 1, '72.00', '2018-05-31 18:17:45'), (11523, 1, '75.00', '2018-05-31 18:17:54'), (11524, 1, '74.00', '2018-05-31 18:18:03'), (11525, 1, '60.00', '2018-05-31 18:18:12'), (11526, 1, '71.00', '2018-05-31 18:18:21'), (11527, 1, '78.00', '2018-05-31 18:18:30'), (11528, 1, '91.00', '2018-05-31 18:18:39'), (11529, 1, '98.00', '2018-05-31 18:18:48'), (11530, 1, '98.00', '2018-05-31 18:18:57'), (11531, 1, '94.00', '2018-05-31 18:19:06'), (11532, 1, '90.00', '2018-05-31 18:19:15'), (11533, 1, '76.00', '2018-05-31 18:19:24'), (11534, 1, '61.00', '2018-05-31 18:19:33'), (11535, 1, '86.00', '2018-05-31 18:19:42'), (11536, 1, '85.00', '2018-05-31 18:19:51'), (11537, 1, '79.00', '2018-05-31 18:20:00'), (11538, 1, '76.00', '2018-05-31 18:20:09'), (11539, 1, '85.00', '2018-05-31 18:20:18'), (11540, 1, '70.00', '2018-05-31 18:20:27'), (11541, 1, '81.00', '2018-05-31 18:20:36'), (11542, 1, '89.00', '2018-05-31 18:20:45'), (11543, 1, '83.00', '2018-05-31 18:20:54'), (11544, 1, '60.00', '2018-05-31 18:21:03'), (11545, 1, '80.00', '2018-05-31 18:21:12'), (11546, 1, '92.00', '2018-05-31 18:21:21'), (11547, 1, '99.00', '2018-05-31 18:21:30'), (11548, 1, '98.00', '2018-05-31 18:21:39'), (11549, 1, '85.00', '2018-05-31 18:21:48'), (11550, 1, '69.00', '2018-05-31 18:21:57'), (11551, 1, '82.00', '2018-05-31 18:22:06'), (11552, 1, '96.00', '2018-05-31 18:22:15'), (11553, 1, '87.00', '2018-05-31 18:22:24'), (11554, 1, '72.00', '2018-05-31 18:22:33'), (11555, 1, '82.00', '2018-05-31 18:22:42'), (11556, 1, '77.00', '2018-05-31 18:22:51'), (11557, 1, '90.00', '2018-05-31 18:23:00'), (11558, 1, '78.00', '2018-05-31 18:23:09'), (11559, 1, '96.00', '2018-05-31 18:23:18'), (11560, 1, '80.00', '2018-05-31 18:23:27'), (11561, 1, '71.00', '2018-05-31 18:23:36'), (11562, 1, '71.00', '2018-05-31 18:23:45'), (11563, 1, '92.00', '2018-05-31 18:23:54'), (11564, 1, '83.00', '2018-05-31 18:24:03'), (11565, 1, '98.00', '2018-05-31 18:24:12'), (11566, 1, '83.00', '2018-05-31 18:24:21'), (11567, 1, '86.00', '2018-05-31 18:24:30'), (11568, 1, '72.00', '2018-05-31 18:24:39'), (11569, 1, '62.00', '2018-05-31 18:24:48'), (11570, 1, '68.00', '2018-05-31 18:24:57'), (11571, 1, '85.00', '2018-05-31 18:25:06'), (11572, 1, '94.00', '2018-05-31 18:25:15'), (11573, 1, '68.00', '2018-05-31 18:25:24'), (11574, 1, '98.00', '2018-05-31 18:25:33'), (11575, 1, '89.00', '2018-05-31 18:25:42'), (11576, 1, '94.00', '2018-05-31 18:25:51'), (11577, 1, '84.00', '2018-05-31 18:26:00'), (11578, 1, '97.00', '2018-05-31 18:26:09'), (11579, 1, '69.00', '2018-05-31 18:26:18'), (11580, 1, '90.00', '2018-05-31 18:26:27'), (11581, 1, '87.00', '2018-05-31 18:26:36'), (11582, 1, '85.00', '2018-05-31 18:26:45'), (11583, 1, '98.00', '2018-05-31 18:26:54'), (11584, 1, '68.00', '2018-05-31 18:27:03'), (11585, 1, '74.00', '2018-05-31 18:27:12'), (11586, 1, '74.00', '2018-05-31 18:27:21'), (11587, 1, '97.00', '2018-05-31 18:27:30'), (11588, 1, '90.00', '2018-05-31 18:27:39'), (11589, 1, '65.00', '2018-05-31 18:27:48'), (11590, 1, '94.00', '2018-05-31 18:27:57'), (11591, 1, '98.00', '2018-05-31 18:28:06'), (11592, 1, '73.00', '2018-05-31 18:28:15'), (11593, 1, '72.00', '2018-05-31 18:28:24'), (11594, 1, '75.00', '2018-05-31 18:28:33'), (11595, 1, '84.00', '2018-05-31 18:28:42'), (11596, 1, '88.00', '2018-05-31 18:28:52'), (11597, 1, '76.00', '2018-05-31 18:29:01'), (11598, 1, '79.00', '2018-05-31 18:29:10'), (11599, 1, '97.00', '2018-05-31 18:29:19'), (11600, 1, '74.00', '2018-05-31 18:29:28'), (11601, 1, '60.00', '2018-05-31 18:29:37'), (11602, 1, '83.00', '2018-05-31 18:29:46'), (11603, 1, '73.00', '2018-05-31 18:29:55'), (11604, 1, '84.00', '2018-05-31 18:30:04'), (11605, 1, '93.00', '2018-05-31 18:30:12'), (11606, 1, '78.00', '2018-05-31 18:30:21'), (11607, 1, '89.00', '2018-05-31 18:30:30'), (11608, 1, '90.00', '2018-05-31 18:30:39'), (11609, 1, '88.00', '2018-05-31 18:30:48'), (11610, 1, '96.00', '2018-05-31 18:30:57'), (11611, 1, '79.00', '2018-05-31 18:31:06'), (11612, 1, '74.00', '2018-05-31 18:31:15'), (11613, 1, '69.00', '2018-05-31 18:31:24'), (11614, 1, '92.00', '2018-05-31 18:31:33'), (11615, 1, '99.00', '2018-05-31 18:31:42'), (11616, 1, '88.00', '2018-05-31 18:31:51'), (11617, 1, '62.00', '2018-05-31 18:32:00'), (11618, 1, '70.00', '2018-05-31 18:32:09'), (11619, 1, '78.00', '2018-05-31 18:32:18'), (11620, 1, '72.00', '2018-05-31 18:32:27'), (11621, 1, '93.00', '2018-05-31 18:32:36'), (11622, 1, '90.00', '2018-05-31 18:32:45'), (11623, 1, '89.00', '2018-05-31 18:32:54'), (11624, 1, '93.00', '2018-05-31 18:33:03'), (11625, 1, '74.00', '2018-05-31 18:33:12'), (11626, 1, '86.00', '2018-05-31 18:33:21'), (11627, 1, '78.00', '2018-05-31 18:33:30'), (11628, 1, '63.00', '2018-05-31 18:33:39'), (11629, 1, '95.00', '2018-05-31 18:33:48'), (11630, 1, '62.00', '2018-05-31 18:33:57'), (11631, 1, '75.00', '2018-05-31 18:34:06'), (11632, 1, '65.00', '2018-05-31 18:34:14'), (11633, 1, '74.00', '2018-05-31 18:34:23'), (11634, 1, '82.00', '2018-05-31 18:34:32'), (11635, 1, '97.00', '2018-05-31 18:34:41'), (11636, 1, '97.00', '2018-05-31 18:34:50'), (11637, 1, '85.00', '2018-05-31 18:34:59'), (11638, 1, '71.00', '2018-05-31 18:35:08'), (11639, 1, '73.00', '2018-05-31 18:35:17'), (11640, 1, '85.00', '2018-05-31 18:35:26'), (11641, 1, '73.00', '2018-05-31 18:35:35'), (11642, 1, '69.00', '2018-05-31 18:35:44'), (11643, 1, '78.00', '2018-05-31 18:35:53'), (11644, 1, '64.00', '2018-05-31 18:36:02'), (11645, 1, '65.00', '2018-05-31 18:36:11'), (11646, 1, '75.00', '2018-05-31 18:36:20'), (11647, 1, '68.00', '2018-05-31 18:36:29'), (11648, 1, '82.00', '2018-05-31 18:36:38'), (11649, 1, '72.00', '2018-05-31 18:36:47'), (11650, 1, '87.00', '2018-05-31 18:36:56'), (11651, 1, '90.00', '2018-05-31 18:37:05'), (11652, 1, '90.00', '2018-05-31 18:37:14'), (11653, 1, '91.00', '2018-05-31 18:37:23'), (11654, 1, '87.00', '2018-05-31 18:37:32'), (11655, 1, '73.00', '2018-05-31 18:37:41'), (11656, 1, '60.00', '2018-05-31 18:37:50'), (11657, 1, '81.00', '2018-05-31 18:37:59'), (11658, 1, '99.00', '2018-05-31 18:38:08'), (11659, 1, '96.00', '2018-05-31 18:38:17'), (11660, 1, '78.00', '2018-05-31 18:38:26'), (11661, 1, '63.00', '2018-05-31 18:38:35'), (11662, 1, '86.00', '2018-05-31 18:38:44'), (11663, 1, '63.00', '2018-05-31 18:38:53'), (11664, 1, '76.00', '2018-05-31 18:39:02'), (11665, 1, '71.00', '2018-05-31 18:39:11'), (11666, 1, '73.00', '2018-05-31 18:39:20'), (11667, 1, '67.00', '2018-05-31 18:39:29'), (11668, 1, '98.00', '2018-05-31 18:39:38'), (11669, 1, '60.00', '2018-05-31 18:39:47'), (11670, 1, '68.00', '2018-05-31 18:39:56'), (11671, 1, '74.00', '2018-05-31 18:40:05'), (11672, 1, '74.00', '2018-05-31 18:40:14'), (11673, 1, '76.00', '2018-05-31 18:40:23'), (11674, 1, '90.00', '2018-05-31 18:40:32'), (11675, 1, '68.00', '2018-05-31 18:40:41'), (11676, 1, '92.00', '2018-05-31 18:40:50'), (11677, 1, '83.00', '2018-05-31 18:40:59'), (11678, 1, '96.00', '2018-05-31 18:41:08'), (11679, 1, '72.00', '2018-05-31 18:41:17'), (11680, 1, '96.00', '2018-05-31 18:41:25'), (11681, 1, '90.00', '2018-05-31 18:41:34'), (11682, 1, '70.00', '2018-05-31 18:41:43'), (11683, 1, '65.00', '2018-05-31 18:41:52'), (11684, 1, '63.00', '2018-05-31 18:42:02'), (11685, 1, '93.00', '2018-05-31 18:42:11'), (11686, 1, '99.00', '2018-05-31 18:42:19'), (11687, 1, '82.00', '2018-05-31 18:42:29'), (11688, 1, '63.00', '2018-05-31 18:42:37'), (11689, 1, '96.00', '2018-05-31 18:42:46'), (11690, 1, '65.00', '2018-05-31 18:42:55'), (11691, 1, '77.00', '2018-05-31 18:43:04'), (11692, 1, '89.00', '2018-05-31 18:43:13'), (11693, 1, '84.00', '2018-05-31 18:43:22'), (11694, 1, '88.00', '2018-05-31 18:43:31'), (11695, 1, '91.00', '2018-05-31 18:43:40'), (11696, 1, '70.00', '2018-05-31 18:43:49'), (11697, 1, '98.00', '2018-05-31 18:43:58'), (11698, 1, '81.00', '2018-05-31 18:44:07'), (11699, 1, '96.00', '2018-05-31 18:44:16'), (11700, 1, '78.00', '2018-05-31 18:44:25'), (11701, 1, '91.00', '2018-05-31 18:44:34'), (11702, 1, '61.00', '2018-05-31 18:44:43'), (11703, 1, '72.00', '2018-05-31 18:44:52'), (11704, 1, '67.00', '2018-05-31 18:45:01'), (11705, 1, '70.00', '2018-05-31 18:45:10'), (11706, 1, '72.00', '2018-05-31 18:45:19'), (11707, 1, '93.00', '2018-05-31 18:45:28'), (11708, 1, '86.00', '2018-05-31 18:45:37'), (11709, 1, '92.00', '2018-05-31 18:45:46'), (11710, 1, '84.00', '2018-05-31 18:45:55'), (11711, 1, '62.00', '2018-05-31 18:46:04'), (11712, 1, '60.00', '2018-05-31 18:46:13'), (11713, 1, '84.00', '2018-05-31 18:46:22'), (11714, 1, '83.00', '2018-05-31 18:46:31'), (11715, 1, '74.00', '2018-05-31 18:46:40'), (11716, 1, '72.00', '2018-05-31 18:46:49'), (11717, 1, '97.00', '2018-05-31 18:46:58'), (11718, 1, '85.00', '2018-05-31 18:47:07'), (11719, 1, '79.00', '2018-05-31 18:47:16'), (11720, 1, '89.00', '2018-05-31 18:47:25'), (11721, 1, '67.00', '2018-05-31 18:47:34'), (11722, 1, '87.00', '2018-05-31 18:47:43'), (11723, 1, '94.00', '2018-05-31 18:47:52'), (11724, 1, '65.00', '2018-05-31 18:48:01'), (11725, 1, '76.00', '2018-05-31 18:48:10'), (11726, 1, '66.00', '2018-05-31 18:48:19'), (11727, 1, '73.00', '2018-05-31 18:48:28'), (11728, 1, '85.00', '2018-05-31 18:48:37'), (11729, 1, '64.00', '2018-05-31 18:48:46'), (11730, 1, '78.00', '2018-05-31 18:48:55'), (11731, 1, '69.00', '2018-05-31 18:49:04'), (11732, 1, '96.00', '2018-05-31 18:49:13'), (11733, 1, '77.00', '2018-05-31 18:49:22'), (11734, 1, '89.00', '2018-05-31 18:49:31'), (11735, 1, '84.00', '2018-05-31 18:49:40'), (11736, 1, '79.00', '2018-05-31 18:49:49'), (11737, 1, '78.00', '2018-05-31 18:49:58'), (11738, 1, '65.00', '2018-05-31 18:50:07'), (11739, 1, '84.00', '2018-05-31 18:50:16'), (11740, 1, '87.00', '2018-05-31 18:50:25'), (11741, 1, '93.00', '2018-05-31 18:50:34'), (11742, 1, '61.00', '2018-05-31 18:50:43'), (11743, 1, '95.00', '2018-05-31 18:50:52'), (11744, 1, '98.00', '2018-05-31 18:51:01'), (11745, 1, '89.00', '2018-05-31 18:51:11'), (11746, 1, '66.00', '2018-05-31 18:51:20'), (11747, 1, '94.00', '2018-05-31 18:51:29'), (11748, 1, '86.00', '2018-05-31 18:51:38'), (11749, 1, '65.00', '2018-05-31 18:51:47'), (11750, 1, '85.00', '2018-05-31 18:51:56'), (11751, 1, '89.00', '2018-05-31 18:52:05'), (11752, 1, '78.00', '2018-05-31 18:52:14'), (11753, 1, '87.00', '2018-05-31 18:52:23'), (11754, 1, '84.00', '2018-05-31 18:52:32'), (11755, 1, '72.00', '2018-05-31 18:52:41'), (11756, 1, '86.00', '2018-05-31 18:52:50'), (11757, 1, '65.00', '2018-05-31 18:52:59'), (11758, 1, '92.00', '2018-05-31 18:53:08'), (11759, 1, '79.00', '2018-05-31 18:53:17'), (11760, 1, '79.00', '2018-05-31 18:53:26'), (11761, 1, '86.00', '2018-05-31 18:53:35'), (11762, 1, '89.00', '2018-05-31 18:53:44'), (11763, 1, '76.00', '2018-05-31 18:53:53'), (11764, 1, '72.00', '2018-05-31 18:54:02'), (11765, 1, '64.00', '2018-05-31 18:54:11'), (11766, 1, '98.00', '2018-05-31 18:54:19'), (11767, 1, '91.00', '2018-05-31 18:54:28'), (11768, 1, '83.00', '2018-05-31 18:54:37'), (11769, 1, '71.00', '2018-05-31 18:54:46'), (11770, 1, '88.00', '2018-05-31 18:54:55'), (11771, 1, '73.00', '2018-05-31 18:55:04'), (11772, 1, '84.00', '2018-05-31 18:55:13'), (11773, 1, '92.00', '2018-05-31 18:55:22'), (11774, 1, '95.00', '2018-05-31 18:55:31'), (11775, 1, '90.00', '2018-05-31 18:55:40'), (11776, 1, '78.00', '2018-05-31 18:55:50'), (11777, 1, '99.00', '2018-05-31 18:55:59'), (11778, 1, '74.00', '2018-05-31 18:56:08'), (11779, 1, '82.00', '2018-05-31 18:56:17'), (11780, 1, '98.00', '2018-05-31 18:56:26'), (11781, 1, '79.00', '2018-05-31 18:56:35'), (11782, 1, '83.00', '2018-05-31 18:56:44'), (11783, 1, '93.00', '2018-05-31 18:56:53'), (11784, 1, '65.00', '2018-05-31 18:57:02'), (11785, 1, '76.00', '2018-05-31 18:57:11'), (11786, 1, '64.00', '2018-05-31 18:57:20'), (11787, 1, '65.00', '2018-05-31 18:57:29'), (11788, 1, '84.00', '2018-05-31 18:57:38'), (11789, 1, '79.00', '2018-05-31 18:57:47'), (11790, 1, '98.00', '2018-05-31 18:57:56'), (11791, 1, '75.00', '2018-05-31 18:58:05'), (11792, 1, '92.00', '2018-05-31 18:58:14'), (11793, 1, '86.00', '2018-05-31 18:58:23'), (11794, 1, '61.00', '2018-05-31 18:58:32'), (11795, 1, '70.00', '2018-05-31 18:58:41'), (11796, 1, '90.00', '2018-05-31 18:58:50'), (11797, 1, '93.00', '2018-05-31 18:58:59'), (11798, 1, '63.00', '2018-05-31 18:59:07'), (11799, 1, '89.00', '2018-05-31 18:59:16'), (11800, 1, '74.00', '2018-05-31 18:59:25'), (11801, 1, '84.00', '2018-05-31 18:59:34'), (11802, 1, '79.00', '2018-05-31 18:59:43'), (11803, 1, '70.00', '2018-05-31 18:59:52'), (11804, 1, '93.00', '2018-05-31 19:00:01'), (11805, 1, '61.00', '2018-05-31 19:00:11'), (11806, 1, '74.00', '2018-05-31 19:00:20'), (11807, 1, '71.00', '2018-05-31 19:00:29'), (11808, 1, '71.00', '2018-05-31 19:00:38'), (11809, 1, '75.00', '2018-05-31 19:00:47'), (11810, 1, '76.00', '2018-05-31 19:00:55'), (11811, 1, '68.00', '2018-05-31 19:01:04'), (11812, 1, '71.00', '2018-05-31 19:01:13'), (11813, 1, '84.00', '2018-05-31 19:01:22'), (11814, 1, '95.00', '2018-05-31 19:01:31'), (11815, 1, '75.00', '2018-05-31 19:01:40'), (11816, 1, '91.00', '2018-05-31 19:01:49'), (11817, 1, '74.00', '2018-05-31 19:01:58'), (11818, 1, '69.00', '2018-05-31 19:02:07'), (11819, 1, '60.00', '2018-05-31 19:02:16'), (11820, 1, '79.00', '2018-05-31 19:02:25'), (11821, 1, '97.00', '2018-05-31 19:02:34'), (11822, 1, '98.00', '2018-05-31 19:02:43'), (11823, 1, '72.00', '2018-05-31 19:02:52'), (11824, 1, '97.00', '2018-05-31 19:03:01'), (11825, 1, '87.00', '2018-05-31 19:03:10'), (11826, 1, '89.00', '2018-05-31 19:03:18'), (11827, 1, '69.00', '2018-05-31 19:03:27'), (11828, 1, '83.00', '2018-05-31 19:03:36'), (11829, 1, '96.00', '2018-05-31 19:03:45'), (11830, 1, '98.00', '2018-05-31 19:03:55'), (11831, 1, '72.00', '2018-05-31 19:04:04'), (11832, 1, '64.00', '2018-05-31 19:04:12'), (11833, 1, '83.00', '2018-05-31 19:04:21'), (11834, 1, '97.00', '2018-05-31 19:04:30'), (11835, 1, '80.00', '2018-05-31 19:04:39'), (11836, 1, '91.00', '2018-05-31 19:04:49'), (11837, 1, '61.00', '2018-05-31 19:04:58'), (11838, 1, '94.00', '2018-05-31 19:05:07'), (11839, 1, '69.00', '2018-05-31 19:05:16'), (11840, 1, '90.00', '2018-05-31 19:05:25'), (11841, 1, '99.00', '2018-05-31 19:05:34'), (11842, 1, '79.00', '2018-05-31 19:05:43'), (11843, 1, '94.00', '2018-05-31 19:05:52'), (11844, 1, '65.00', '2018-05-31 19:06:01'), (11845, 1, '68.00', '2018-05-31 19:06:10'), (11846, 1, '78.00', '2018-05-31 19:06:19'), (11847, 1, '65.00', '2018-05-31 19:06:28'), (11848, 1, '93.00', '2018-05-31 19:06:37'), (11849, 1, '77.00', '2018-05-31 19:06:46'), (11850, 1, '77.00', '2018-05-31 19:06:55'), (11851, 1, '85.00', '2018-05-31 19:07:04'), (11852, 1, '95.00', '2018-05-31 19:07:13'), (11853, 1, '88.00', '2018-05-31 19:07:22'), (11854, 1, '77.00', '2018-05-31 19:07:31'), (11855, 1, '70.00', '2018-05-31 19:07:40'), (11856, 1, '76.00', '2018-05-31 19:07:49'), (11857, 1, '63.00', '2018-05-31 19:07:58'), (11858, 1, '87.00', '2018-05-31 19:08:07'), (11859, 1, '66.00', '2018-05-31 19:08:16'), (11860, 1, '63.00', '2018-05-31 19:08:25'), (11861, 1, '95.00', '2018-05-31 19:08:34'), (11862, 1, '75.00', '2018-05-31 19:08:43'), (11863, 1, '92.00', '2018-05-31 19:08:52'), (11864, 1, '99.00', '2018-05-31 19:09:01'), (11865, 1, '91.00', '2018-05-31 19:09:10'), (11866, 1, '69.00', '2018-05-31 19:09:19'), (11867, 1, '72.00', '2018-05-31 19:09:28'), (11868, 1, '95.00', '2018-05-31 19:09:38'), (11869, 1, '94.00', '2018-05-31 19:09:47'), (11870, 1, '94.00', '2018-05-31 19:09:56'), (11871, 1, '77.00', '2018-05-31 19:10:05'), (11872, 1, '69.00', '2018-05-31 19:10:14'), (11873, 1, '68.00', '2018-05-31 19:10:23'), (11874, 1, '78.00', '2018-05-31 19:10:32'), (11875, 1, '64.00', '2018-06-01 07:59:14'), (11876, 1, '71.00', '2018-06-01 07:59:23'), (11877, 1, '69.00', '2018-06-01 07:59:32'), (11878, 1, '82.00', '2018-06-01 07:59:41'), (11879, 1, '83.00', '2018-06-01 07:59:51'), (11880, 1, '94.00', '2018-06-01 08:00:00'), (11881, 1, '60.00', '2018-06-01 08:00:09'), (11882, 1, '80.00', '2018-06-01 08:00:18'), (11883, 1, '96.00', '2018-06-01 08:00:27'), (11884, 1, '99.00', '2018-06-01 08:00:36'), (11885, 1, '94.00', '2018-06-01 08:00:45'), (11886, 1, '67.00', '2018-06-01 08:00:54'), (11887, 1, '68.00', '2018-06-01 08:01:03'), (11888, 1, '76.00', '2018-06-01 08:01:13'), (11889, 1, '89.00', '2018-06-01 08:01:22'), (11890, 1, '64.00', '2018-06-01 08:01:31'), (11891, 1, '74.00', '2018-06-01 08:01:40'), (11892, 1, '80.00', '2018-06-01 08:01:49'), (11893, 1, '91.00', '2018-06-01 08:01:58'), (11894, 1, '94.00', '2018-06-01 08:02:07'), (11895, 1, '88.00', '2018-06-01 08:02:16'), (11896, 1, '87.00', '2018-06-01 08:02:25'), (11897, 1, '78.00', '2018-06-01 08:02:34'), (11898, 1, '77.00', '2018-06-01 08:02:44'), (11899, 1, '71.00', '2018-06-01 08:02:53'), (11900, 1, '87.00', '2018-06-01 08:03:02'), (11901, 1, '89.00', '2018-06-01 08:03:11'), (11902, 1, '62.00', '2018-06-01 08:03:20'), (11903, 1, '68.00', '2018-06-01 08:03:29'), (11904, 1, '81.00', '2018-06-01 08:03:38'), (11905, 1, '99.00', '2018-06-01 08:03:47'), (11906, 1, '73.00', '2018-06-01 08:03:57'), (11907, 1, '92.00', '2018-06-01 08:04:06'), (11908, 1, '95.00', '2018-06-01 08:04:15'), (11909, 1, '88.00', '2018-06-01 08:04:24'), (11910, 1, '60.00', '2018-06-01 08:04:33'), (11911, 1, '60.00', '2018-06-01 08:04:42'), (11912, 1, '98.00', '2018-06-01 08:04:51'), (11913, 1, '73.00', '2018-06-01 08:05:00'), (11914, 1, '79.00', '2018-06-01 08:05:09'), (11915, 1, '97.00', '2018-06-01 08:05:18'), (11916, 1, '74.00', '2018-06-01 08:05:28'), (11917, 1, '71.00', '2018-06-01 08:05:37'), (11918, 1, '66.00', '2018-06-01 08:05:46'), (11919, 1, '79.00', '2018-06-01 08:05:55'), (11920, 1, '92.00', '2018-06-01 08:06:04'), (11921, 1, '72.00', '2018-06-01 08:06:13'), (11922, 1, '95.00', '2018-06-01 08:06:22'), (11923, 1, '62.00', '2018-06-01 08:06:31'), (11924, 1, '83.00', '2018-06-01 08:06:40'), (11925, 1, '84.00', '2018-06-01 08:06:50'), (11926, 1, '71.00', '2018-06-01 08:06:59'), (11927, 1, '87.00', '2018-06-01 08:07:08'), (11928, 1, '99.00', '2018-06-01 08:07:17'), (11929, 1, '87.00', '2018-06-01 08:07:26'), (11930, 1, '84.00', '2018-06-01 08:07:35'), (11931, 1, '82.00', '2018-06-01 08:07:44'), (11932, 1, '74.00', '2018-06-01 08:07:53'), (11933, 1, '90.00', '2018-06-01 08:08:03'), (11934, 1, '69.00', '2018-06-01 08:08:12'), (11935, 1, '82.00', '2018-06-01 08:08:21'), (11936, 1, '99.00', '2018-06-01 08:08:30'), (11937, 1, '96.00', '2018-06-01 08:08:39'), (11938, 1, '79.00', '2018-06-01 08:08:48'), (11939, 1, '82.00', '2018-06-01 08:08:58'), (11940, 1, '80.00', '2018-06-01 08:09:07'), (11941, 1, '93.00', '2018-06-01 08:09:16'), (11942, 1, '66.00', '2018-06-01 08:09:25'), (11943, 1, '91.00', '2018-06-01 08:09:35'), (11944, 1, '75.00', '2018-06-01 08:09:44'), (11945, 1, '95.00', '2018-06-01 08:09:53'), (11946, 1, '63.00', '2018-06-01 08:10:02'), (11947, 1, '83.00', '2018-06-01 08:10:11'), (11948, 1, '71.00', '2018-06-01 08:10:20'), (11949, 1, '87.00', '2018-06-01 08:10:29'), (11950, 1, '99.00', '2018-06-01 08:10:38'), (11951, 1, '95.00', '2018-06-01 08:10:47'), (11952, 1, '66.00', '2018-06-01 08:10:57'), (11953, 1, '90.00', '2018-06-01 08:11:06'), (11954, 1, '90.00', '2018-06-01 08:11:15'), (11955, 1, '60.00', '2018-06-01 08:11:24'), (11956, 1, '90.00', '2018-06-01 08:11:33'), (11957, 1, '91.00', '2018-06-01 08:11:42'), (11958, 1, '94.00', '2018-06-01 08:11:51'), (11959, 1, '63.00', '2018-06-01 08:12:01'), (11960, 1, '70.00', '2018-06-01 08:12:10'), (11961, 1, '69.00', '2018-06-01 08:12:19'), (11962, 1, '84.00', '2018-06-01 08:12:28'), (11963, 1, '89.00', '2018-06-01 08:12:37'), (11964, 1, '96.00', '2018-06-01 08:12:46'), (11965, 1, '78.00', '2018-06-01 08:12:55'), (11966, 1, '92.00', '2018-06-01 08:13:05'), (11967, 1, '99.00', '2018-06-01 08:13:14'), (11968, 1, '82.00', '2018-06-01 08:13:23'), (11969, 1, '95.00', '2018-06-01 08:13:32'), (11970, 1, '76.00', '2018-06-01 08:13:41'), (11971, 1, '63.00', '2018-06-01 08:13:50'), (11972, 1, '76.00', '2018-06-01 08:14:00'), (11973, 1, '97.00', '2018-06-01 08:14:09'), (11974, 1, '72.00', '2018-06-01 08:14:18'), (11975, 1, '81.00', '2018-06-01 08:14:27'), (11976, 1, '81.00', '2018-06-01 08:14:36'), (11977, 1, '74.00', '2018-06-01 08:14:45'), (11978, 1, '98.00', '2018-06-01 08:14:55'), (11979, 1, '75.00', '2018-06-01 08:15:04'), (11980, 1, '90.00', '2018-06-01 08:15:13'), (11981, 1, '72.00', '2018-06-01 08:15:22'), (11982, 1, '69.00', '2018-06-01 08:15:31'), (11983, 1, '67.00', '2018-06-01 08:15:40'), (11984, 1, '61.00', '2018-06-01 08:15:49'), (11985, 1, '71.00', '2018-06-01 08:15:58'), (11986, 1, '72.00', '2018-06-01 08:16:07'), (11987, 1, '81.00', '2018-06-01 08:16:16'), (11988, 1, '91.00', '2018-06-01 08:16:25'), (11989, 1, '69.00', '2018-06-01 08:16:34'), (11990, 1, '85.00', '2018-06-01 08:16:43'), (11991, 1, '79.00', '2018-06-01 08:16:52'), (11992, 1, '83.00', '2018-06-01 08:17:02'), (11993, 1, '77.00', '2018-06-01 08:17:11'), (11994, 1, '77.00', '2018-06-01 08:17:20'), (11995, 1, '67.00', '2018-06-01 08:17:29'), (11996, 1, '93.00', '2018-06-01 08:17:38'), (11997, 1, '86.00', '2018-06-01 08:17:47'), (11998, 1, '93.00', '2018-06-01 08:17:56'), (11999, 1, '60.00', '2018-06-01 08:18:05'), (12000, 1, '77.00', '2018-06-01 08:18:14'), (12001, 1, '82.00', '2018-06-01 08:18:23'), (12002, 1, '74.00', '2018-06-01 08:18:32'), (12003, 1, '61.00', '2018-06-01 08:18:41'), (12004, 1, '69.00', '2018-06-01 08:18:50'), (12005, 1, '79.00', '2018-06-01 08:18:59'), (12006, 1, '86.00', '2018-06-01 08:19:09'), (12007, 1, '99.00', '2018-06-01 08:19:18'), (12008, 1, '93.00', '2018-06-01 08:19:27'), (12009, 1, '89.00', '2018-06-01 08:19:36'), (12010, 1, '85.00', '2018-06-01 08:19:45'), (12011, 1, '98.00', '2018-06-01 08:19:54'), (12012, 1, '94.00', '2018-06-01 08:20:03'), (12013, 1, '91.00', '2018-06-01 08:20:13'), (12014, 1, '98.00', '2018-06-01 08:20:22'), (12015, 1, '82.00', '2018-06-01 08:20:31'), (12016, 1, '62.00', '2018-06-01 08:20:40'), (12017, 1, '61.00', '2018-06-01 08:20:49'), (12018, 1, '81.00', '2018-06-01 08:20:59'), (12019, 1, '81.00', '2018-06-01 08:21:08'), (12020, 1, '61.00', '2018-06-01 08:21:17'), (12021, 1, '74.00', '2018-06-01 08:21:26'), (12022, 1, '64.00', '2018-06-01 08:21:35'), (12023, 1, '73.00', '2018-06-01 08:21:44'), (12024, 1, '76.00', '2018-06-01 08:21:53'), (12025, 1, '93.00', '2018-06-01 08:22:02'), (12026, 1, '70.00', '2018-06-01 08:22:11'), (12027, 1, '91.00', '2018-06-01 08:22:20'), (12028, 1, '86.00', '2018-06-01 08:22:29'), (12029, 1, '92.00', '2018-06-01 08:22:38'), (12030, 1, '95.00', '2018-06-01 08:22:47'), (12031, 1, '69.00', '2018-06-01 08:22:57'), (12032, 1, '77.00', '2018-06-01 08:23:06'), (12033, 1, '86.00', '2018-06-01 08:23:15'), (12034, 1, '89.00', '2018-06-01 08:23:24'), (12035, 1, '99.00', '2018-06-01 08:23:33'), (12036, 1, '82.00', '2018-06-01 08:23:42'), (12037, 1, '97.00', '2018-06-01 08:23:51'), (12038, 1, '63.00', '2018-06-01 08:24:00'), (12039, 1, '82.00', '2018-06-01 08:24:09'), (12040, 1, '98.00', '2018-06-01 08:24:19'), (12041, 1, '89.00', '2018-06-01 08:24:28'), (12042, 1, '66.00', '2018-06-01 08:24:39'), (12043, 1, '89.00', '2018-06-01 08:24:49'), (12044, 1, '87.00', '2018-06-01 08:24:58'), (12045, 1, '83.00', '2018-06-01 08:25:07'), (12046, 1, '96.00', '2018-06-01 08:25:16'), (12047, 1, '98.00', '2018-06-01 08:25:25'), (12048, 1, '73.00', '2018-06-01 08:25:34'), (12049, 1, '73.00', '2018-06-01 08:25:43'), (12050, 1, '81.00', '2018-06-01 08:25:52'), (12051, 1, '82.00', '2018-06-01 08:26:01'), (12052, 1, '83.00', '2018-06-01 08:26:10'), (12053, 1, '82.00', '2018-06-01 08:26:20'), (12054, 1, '96.00', '2018-06-01 08:26:29'), (12055, 1, '82.00', '2018-06-01 08:26:38'), (12056, 1, '68.00', '2018-06-01 08:26:46'); -- -------------------------------------------------------- -- -- Estrutura da tabela `monitorinteligente` -- CREATE TABLE `monitorinteligente` ( `idMonitor` int(11) NOT NULL, `nome` varchar(50) NOT NULL, `tipo` tinyint(4) NOT NULL COMMENT '1=Líquido, 2=Sólido, 3=Gasoso', `unidade` varchar(10) NOT NULL, `dataCalibracao` date NOT NULL, `nivelAlarme` int(11) NOT NULL, `tempoColeta` int(11) NOT NULL, `mac` varchar(20) NOT NULL, `sensorTipo` int(11) NOT NULL COMMENT '0=pressao,1=gravimetrico,2=volumetro,3=barometrico', `sensorCalibracao` float(9,2) NOT NULL, `sensorDataCalibracao` date NOT NULL, `dataCadastro` date NOT NULL, `dataAlterado` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `monitorinteligente` -- INSERT INTO `monitorinteligente` (`idMonitor`, `nome`, `tipo`, `unidade`, `dataCalibracao`, `nivelAlarme`, `tempoColeta`, `mac`, `sensorTipo`, `sensorCalibracao`, `sensorDataCalibracao`, `dataCadastro`, `dataAlterado`) VALUES (1, 'Monitor 1', 1, 'L', '2017-10-17', 80, 30, 'teste', 0, 0.00, '0000-00-00', '0000-00-00', '0000-00-00'); -- -------------------------------------------------------- -- -- Estrutura da tabela `permissoes` -- CREATE TABLE `permissoes` ( `idPermissao` int(11) NOT NULL, `permissao` varchar(80) NOT NULL, `permissoes` text, `usuario` varchar(50) DEFAULT NULL, `status` tinyint(1) NOT NULL COMMENT '0=desativado,1=ativado', `codigo` varchar(100) NOT NULL, `sigla` varchar(100) NOT NULL, `setor` varchar(100) NOT NULL, `categoria` varchar(100) NOT NULL, `descricao` varchar(200) NOT NULL, `observacao` varchar(200) NOT NULL, `efetivado` tinyint(1) NOT NULL COMMENT '0=não efetivo, 1=efetivado', `dataCadastro` datetime NOT NULL, `dataAlterado` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `permissoes` -- INSERT INTO `permissoes` (`idPermissao`, `permissao`, `permissoes`, `usuario`, `status`, `codigo`, `sigla`, `setor`, `categoria`, `descricao`, `observacao`, `efetivado`, `dataCadastro`, `dataAlterado`) VALUES (5, 'adm', 'a:3:{s:19:\"gGestaoDispositivos\";s:1:\"1\";s:9:\"gGraficos\";s:1:\"1\";s:14:\"gConfiguracoes\";s:1:\"1\";}', NULL, 0, '', '', '', '', '', '', 0, '2018-05-28 11:38:27', '2018-05-28 11:38:27'), (6, 'Usuario', 'a:3:{s:19:\"gGestaoDispositivos\";s:1:\"1\";s:9:\"gGraficos\";s:1:\"1\";s:14:\"gConfiguracoes\";s:1:\"1\";}', NULL, 0, '', '', '', '', '', '', 0, '2018-05-29 15:33:09', '2018-05-29 15:33:09'), (7, 'User2', 'a:3:{s:19:\"gGestaoDispositivos\";s:1:\"1\";s:9:\"gGraficos\";s:1:\"1\";s:14:\"gConfiguracoes\";s:1:\"1\";}', NULL, 1, '123', 'a', 'a', 'a', 'a', 'a', 1, '2018-05-31 18:56:17', '2018-05-31 18:56:17'); -- -------------------------------------------------------- -- -- Estrutura da tabela `produtos` -- CREATE TABLE `produtos` ( `idProduto` int(11) NOT NULL, `nome` varchar(100) NOT NULL, `codigo` varchar(100) NOT NULL, `tipo` int(11) NOT NULL COMMENT '0=gasoso,1=liquido,2=solido', `unidade` varchar(50) NOT NULL, `tipoTransporte` int(11) NOT NULL COMMENT '0=terrestre,1=aereo,2=maritimo', `tipoArmazenagem` int(11) NOT NULL COMMENT '0=gasoso,1=liquido,2=solido', `temperatura` float(9,2) NOT NULL, `densidade` float(9,2) NOT NULL, `inflamavel` tinyint(1) NOT NULL COMMENT '0=não inflamavel,1=inflamavel', `dataCadastro` date NOT NULL, `dataAlterado` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `recargas` -- CREATE TABLE `recargas` ( `idRecarga` int(11) NOT NULL, `idCliente` int(11) NOT NULL, `idFornecedor` int(11) NOT NULL, `idMonitor` int(11) NOT NULL, `idTransporte` int(11) NOT NULL, `data` date NOT NULL, `volumeRecarga` float(9,2) NOT NULL, `statusRecarga` int(11) NOT NULL COMMENT '0=pendente,1=transito,2=finalizada' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tanquesgasosos` -- CREATE TABLE `tanquesgasosos` ( `idTanqueGasosos` int(11) NOT NULL, `idFornecedor` int(11) NOT NULL, `idCliente` int(11) DEFAULT NULL, `idMonitor` int(11) DEFAULT NULL, `idProduto` int(11) DEFAULT NULL, `identificacao` varchar(100) NOT NULL, `dataFabricacao` date NOT NULL, `dataInspecao` date NOT NULL, `dataManutencao` date NOT NULL, `capacidade` float(9,2) NOT NULL, `comprimento` float(9,2) NOT NULL, `altura` float(9,2) NOT NULL, `nivel` float(9,2) NOT NULL, `peso` float(9,2) NOT NULL, `pressao` float(9,2) NOT NULL, `temperatura` float(9,2) NOT NULL, `dataCadastro` date NOT NULL, `dataAlterado` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tanquesliquidos` -- CREATE TABLE `tanquesliquidos` ( `idTanqueLiquido` int(11) NOT NULL, `idFornecedor` int(11) NOT NULL, `idCliente` int(11) DEFAULT NULL, `idMonitor` int(11) DEFAULT NULL, `idProduto` int(11) DEFAULT NULL, `identificacao` varchar(100) NOT NULL, `dataFabricacao` date NOT NULL, `dataInspecao` date NOT NULL, `dataManutencao` date NOT NULL, `capacidade` float(9,2) NOT NULL, `comprimento` float(9,2) NOT NULL, `altura` float(9,2) NOT NULL, `nivel` float(9,2) NOT NULL, `peso` float(9,2) NOT NULL, `viscosidade` float(9,2) NOT NULL, `temperatura` float(9,2) NOT NULL, `dataCadastro` date NOT NULL, `dataAlterado` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tanquessolidos` -- CREATE TABLE `tanquessolidos` ( `idTanqueSolido` int(11) NOT NULL, `idFornecedor` int(11) NOT NULL, `idCliente` int(11) DEFAULT NULL, `idMonitor` int(11) DEFAULT NULL, `idProduto` int(11) DEFAULT NULL, `identificacao` varchar(100) NOT NULL, `dataFabricacao` date NOT NULL, `dataInspecao` date NOT NULL, `dataManutencao` date NOT NULL, `capacidade` float(9,2) NOT NULL, `comprimento` float(9,2) NOT NULL, `altura` float(9,2) NOT NULL, `nivel` float(9,2) NOT NULL, `peso` float(9,2) NOT NULL, `dataCadastro` date NOT NULL, `dataAlterado` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `transportes` -- CREATE TABLE `transportes` ( `idTransporte` int(11) NOT NULL, `status` int(11) NOT NULL COMMENT '0=disponivel,1=ocupado', `placa` varchar(50) NOT NULL, `antt` varchar(100) NOT NULL, `modelo` varchar(100) NOT NULL, `cor` varchar(100) NOT NULL, `anoFabricacao` date NOT NULL, `tara` float(9,2) NOT NULL, `bruto` float(9,2) NOT NULL, `dataManutencao` date NOT NULL, `tipo` varchar(100) NOT NULL COMMENT '0=gasoso,1=liquido,2=solido', `dataCadastro` date NOT NULL, `dataAlterado` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `usuario` -- CREATE TABLE `usuario` ( `idUsuario` int(11) NOT NULL, `idPermissao` int(11) NOT NULL, `idEmpresa` int(11) NOT NULL, `nomeCompleto` varchar(50) NOT NULL, `email` varchar(50) NOT NULL, `usuario` varchar(50) NOT NULL, `telefone` varchar(50) NOT NULL, `senha` varchar(50) NOT NULL, `tipo` tinyint(4) NOT NULL COMMENT '0 = Super Administrador, 1 = Cliente, 2 = Administrador', `situacao` double(3,1) NOT NULL COMMENT '0=desativado,1=ativado', `dataCadastro` datetime NOT NULL, `dataAlterado` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `usuario` -- INSERT INTO `usuario` (`idUsuario`, `idPermissao`, `idEmpresa`, `nomeCompleto`, `email`, `usuario`, `telefone`, `senha`, `tipo`, `situacao`, `dataCadastro`, `dataAlterado`) VALUES (1, 5, 0, '<NAME>', '<EMAIL>', 'root', '081996612071', 'c30b64068ce656db42765d5421b443038b8761cf', 0, 1.0, '2018-05-29 15:32:41', '2018-05-29 15:32:41'), (2, 6, 0, '<NAME>', '<EMAIL>', 'deby', '81997672733', '7110eda4d09e062aa5e4a390b0a572ac0d2c0220', 0, 1.0, '2018-05-29 15:34:06', '2018-05-29 15:34:06'); -- -- Indexes for dumped tables -- -- -- Indexes for table `ci_sessions` -- ALTER TABLE `ci_sessions` ADD KEY `ci_sessions_timestamp` (`timestamp`); -- -- Indexes for table `clientes` -- ALTER TABLE `clientes` ADD PRIMARY KEY (`idCliente`), ADD KEY `idUsuario` (`idUsuario`); -- -- Indexes for table `fornecedores` -- ALTER TABLE `fornecedores` ADD PRIMARY KEY (`idFornecedor`), ADD KEY `idUsuario` (`idUsuario`); -- -- Indexes for table `fornecedoresclientes` -- ALTER TABLE `fornecedoresclientes` ADD PRIMARY KEY (`idFornClient`), ADD KEY `idFornecedor` (`idFornecedor`), ADD KEY `idCliente` (`idCliente`); -- -- Indexes for table `leitura` -- ALTER TABLE `leitura` ADD PRIMARY KEY (`idLeitura`), ADD KEY `idMonitor` (`idMonitor`), ADD KEY `dataHora` (`dataHora`); -- -- Indexes for table `monitorinteligente` -- ALTER TABLE `monitorinteligente` ADD PRIMARY KEY (`idMonitor`); -- -- Indexes for table `permissoes` -- ALTER TABLE `permissoes` ADD PRIMARY KEY (`idPermissao`); -- -- Indexes for table `produtos` -- ALTER TABLE `produtos` ADD PRIMARY KEY (`idProduto`); -- -- Indexes for table `recargas` -- ALTER TABLE `recargas` ADD PRIMARY KEY (`idRecarga`), ADD KEY `idMonitor` (`idMonitor`), ADD KEY `idCliente` (`idCliente`), ADD KEY `idFornecedor` (`idFornecedor`), ADD KEY `idTransporte` (`idTransporte`); -- -- Indexes for table `tanquesgasosos` -- ALTER TABLE `tanquesgasosos` ADD PRIMARY KEY (`idTanqueGasosos`), ADD KEY `idCliente` (`idCliente`), ADD KEY `idMonitor` (`idMonitor`), ADD KEY `idFornecedor` (`idFornecedor`), ADD KEY `idProduto` (`idProduto`); -- -- Indexes for table `tanquesliquidos` -- ALTER TABLE `tanquesliquidos` ADD PRIMARY KEY (`idTanqueLiquido`), ADD KEY `idCliente` (`idCliente`), ADD KEY `idMonitor` (`idMonitor`), ADD KEY `idFornecedor` (`idFornecedor`), ADD KEY `idProduto` (`idProduto`); -- -- Indexes for table `tanquessolidos` -- ALTER TABLE `tanquessolidos` ADD PRIMARY KEY (`idTanqueSolido`), ADD KEY `idCliente` (`idCliente`), ADD KEY `idMonitor` (`idMonitor`), ADD KEY `idFornecedor` (`idFornecedor`), ADD KEY `idProduto` (`idProduto`); -- -- Indexes for table `transportes` -- ALTER TABLE `transportes` ADD PRIMARY KEY (`idTransporte`); -- -- Indexes for table `usuario` -- ALTER TABLE `usuario` ADD PRIMARY KEY (`idUsuario`), ADD KEY `idPermissao` (`idPermissao`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `clientes` -- ALTER TABLE `clientes` MODIFY `idCliente` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `fornecedores` -- ALTER TABLE `fornecedores` MODIFY `idFornecedor` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `fornecedoresclientes` -- ALTER TABLE `fornecedoresclientes` MODIFY `idFornClient` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `leitura` -- ALTER TABLE `leitura` MODIFY `idLeitura` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12057; -- -- AUTO_INCREMENT for table `monitorinteligente` -- ALTER TABLE `monitorinteligente` MODIFY `idMonitor` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `permissoes` -- ALTER TABLE `permissoes` MODIFY `idPermissao` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `produtos` -- ALTER TABLE `produtos` MODIFY `idProduto` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `recargas` -- ALTER TABLE `recargas` MODIFY `idRecarga` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tanquesgasosos` -- ALTER TABLE `tanquesgasosos` MODIFY `idTanqueGasosos` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tanquesliquidos` -- ALTER TABLE `tanquesliquidos` MODIFY `idTanqueLiquido` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tanquessolidos` -- ALTER TABLE `tanquessolidos` MODIFY `idTanqueSolido` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `transportes` -- ALTER TABLE `transportes` MODIFY `idTransporte` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `usuario` -- ALTER TABLE `usuario` MODIFY `idUsuario` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- Constraints for dumped tables -- -- -- Limitadores para a tabela `clientes` -- ALTER TABLE `clientes` ADD CONSTRAINT `fk_Cliente_Usuario` FOREIGN KEY (`idUsuario`) REFERENCES `usuario` (`idUsuario`); -- -- Limitadores para a tabela `fornecedores` -- ALTER TABLE `fornecedores` ADD CONSTRAINT `fk_Fornec_Usuario` FOREIGN KEY (`idUsuario`) REFERENCES `usuario` (`idUsuario`); -- -- Limitadores para a tabela `fornecedoresclientes` -- ALTER TABLE `fornecedoresclientes` ADD CONSTRAINT `fk_cliente_forncliente` FOREIGN KEY (`idCliente`) REFERENCES `clientes` (`idCliente`), ADD CONSTRAINT `fk_fornec_forncliente` FOREIGN KEY (`idFornecedor`) REFERENCES `fornecedores` (`idFornecedor`); -- -- Limitadores para a tabela `leitura` -- ALTER TABLE `leitura` ADD CONSTRAINT `fk_leitura.idMonitor_monitorInteligente.idMonitor` FOREIGN KEY (`idMonitor`) REFERENCES `monitorinteligente` (`idMonitor`); -- -- Limitadores para a tabela `recargas` -- ALTER TABLE `recargas` ADD CONSTRAINT `fk_recargas_clientes` FOREIGN KEY (`idCliente`) REFERENCES `clientes` (`idCliente`), ADD CONSTRAINT `fk_recargas_fornecedores` FOREIGN KEY (`idFornecedor`) REFERENCES `fornecedores` (`idFornecedor`), ADD CONSTRAINT `fk_recargas_monitoresInteligentes` FOREIGN KEY (`idMonitor`) REFERENCES `monitorinteligente` (`idMonitor`), ADD CONSTRAINT `fk_recargas_transportes` FOREIGN KEY (`idTransporte`) REFERENCES `transportes` (`idTransporte`); -- -- Limitadores para a tabela `tanquesgasosos` -- ALTER TABLE `tanquesgasosos` ADD CONSTRAINT `fk_tanquesgasosos_fornecedores` FOREIGN KEY (`idFornecedor`) REFERENCES `fornecedores` (`idFornecedor`); -- -- Limitadores para a tabela `tanquesliquidos` -- ALTER TABLE `tanquesliquidos` ADD CONSTRAINT `fk_tanquesliquidos_fornecedores` FOREIGN KEY (`idFornecedor`) REFERENCES `fornecedores` (`idFornecedor`); -- -- Limitadores para a tabela `tanquessolidos` -- ALTER TABLE `tanquessolidos` ADD CONSTRAINT `fk_tanquessolidos_fornecedores` FOREIGN KEY (`idFornecedor`) REFERENCES `fornecedores` (`idFornecedor`); -- -- Limitadores para a tabela `usuario` -- ALTER TABLE `usuario` ADD CONSTRAINT `fk_usuario.idPermissao_permissoes.idPermissao` FOREIGN KEY (`idPermissao`) REFERENCES `permissoes` (`idPermissao`); 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 */;
-- phpMyAdmin SQL Dump -- version 2.11.9 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Jan 15, 2015 at 12:06 PM -- Server version: 5.1.30 -- PHP Version: 5.2.10 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; /*!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 */; -- -- Database: `wordpress4` -- -- -------------------------------------------------------- -- -- Table structure for table `wp_commentmeta` -- CREATE TABLE IF NOT EXISTS `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=28 ; -- -- Dumping data for table `wp_commentmeta` -- INSERT INTO `wp_commentmeta` (`meta_id`, `comment_id`, `meta_key`, `meta_value`) VALUES (11, 10, 'akismet_error', '1421174539'), (12, 10, 'akismet_history', 'a:4:{s:4:"time";d:1421174539.98526096343994140625;s:7:"message";s:99:"Akismet was unable to check this comment (response: invalid), will automatically retry again later.";s:5:"event";s:11:"check-error";s:4:"user";s:4:"rsie";}'), (13, 10, 'akismet_as_submitted', 'a:13:{s:14:"comment_author";s:4:"rsie";s:20:"comment_author_email";s:27:"<EMAIL>";s:18:"comment_author_url";s:0:"";s:15:"comment_content";s:33:"Let''s see if this works easily...";s:12:"comment_type";s:0:"";s:7:"user_ID";i:1;s:7:"user_id";i:1;s:7:"user_ip";s:14:"172.16.17.32";s:10:"user_agent";s:108:"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36";s:4:"blog";s:48:"http://www.thespacetimecontinuum.com/wordpress_4";s:9:"blog_lang";s:5:"en_US";s:12:"blog_charset";s:5:"UTF-8";s:9:"permalink";s:60:"http://www.thespacetimecontinuum.com/wordpress_4/?page_id=26";}'), (14, 3, 'akismet_history', 'a:4:{s:4:"time";d:1421178776.5343101024627685546875;s:7:"message";s:45:"rsie changed the comment status to unapproved";s:5:"event";s:17:"status-unapproved";s:4:"user";s:4:"rsie";}'), (15, 2, 'akismet_history', 'a:4:{s:4:"time";d:1421178780.3268449306488037109375;s:7:"message";s:45:"rsie changed the comment status to unapproved";s:5:"event";s:17:"status-unapproved";s:4:"user";s:4:"rsie";}'), (16, 3, 'akismet_history', 'a:4:{s:4:"time";d:1421178901.2265288829803466796875;s:7:"message";s:40:"rsie changed the comment status to trash";s:5:"event";s:12:"status-trash";s:4:"user";s:4:"rsie";}'), (17, 3, '_wp_trash_meta_status', '0'), (18, 3, '_wp_trash_meta_time', '1421178901'), (19, 2, 'akismet_history', 'a:4:{s:4:"time";d:1421178905.03600311279296875;s:7:"message";s:40:"rsie changed the comment status to trash";s:5:"event";s:12:"status-trash";s:4:"user";s:4:"rsie";}'), (20, 2, '_wp_trash_meta_status', '0'), (21, 2, '_wp_trash_meta_time', '1421178905'), (22, 11, 'akismet_error', '1421189888'), (23, 11, 'akismet_history', 'a:4:{s:4:"time";d:1421189888.8919990062713623046875;s:7:"message";s:99:"Akismet was unable to check this comment (response: invalid), will automatically retry again later.";s:5:"event";s:11:"check-error";s:4:"user";s:4:"rsie";}'), (24, 11, 'akismet_as_submitted', 'a:13:{s:14:"comment_author";s:4:"rsie";s:20:"comment_author_email";s:27:"<EMAIL>";s:18:"comment_author_url";s:0:"";s:15:"comment_content";s:29:"Build them and they will come";s:12:"comment_type";s:0:"";s:7:"user_ID";i:1;s:7:"user_id";i:1;s:7:"user_ip";s:14:"172.16.17.32";s:10:"user_agent";s:108:"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36";s:4:"blog";s:48:"http://www.thespacetimecontinuum.com/wordpress_4";s:9:"blog_lang";s:5:"en_US";s:12:"blog_charset";s:5:"UTF-8";s:9:"permalink";s:55:"http://www.thespacetimecontinuum.com/wordpress_4/?p=117";}'), (25, 12, 'akismet_error', '1421264757'), (26, 12, 'akismet_history', 'a:4:{s:4:"time";d:1421264757.890881061553955078125;s:7:"message";s:99:"Akismet was unable to check this comment (response: invalid), will automatically retry again later.";s:5:"event";s:11:"check-error";s:4:"user";s:4:"rsie";}'), (27, 12, 'akismet_as_submitted', 'a:13:{s:14:"comment_author";s:4:"rsie";s:20:"comment_author_email";s:27:"<EMAIL>";s:18:"comment_author_url";s:0:"";s:15:"comment_content";s:145:"I think it would be good to identify sensors that have correlations and thereby have the ability to plot changes, which are the most interesting.";s:12:"comment_type";s:0:"";s:7:"user_ID";i:1;s:7:"user_id";i:1;s:7:"user_ip";s:14:"172.16.17.32";s:10:"user_agent";s:108:"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36";s:4:"blog";s:48:"http://www.thespacetimecontinuum.com/wordpress_4";s:9:"blog_lang";s:5:"en_US";s:12:"blog_charset";s:5:"UTF-8";s:9:"permalink";s:55:"http://www.thespacetimecontinuum.com/wordpress_4/?p=117";}'); -- -------------------------------------------------------- -- -- Table structure for table `wp_comments` -- CREATE TABLE IF NOT EXISTS `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext NOT NULL, `comment_author_email` varchar(100) NOT NULL DEFAULT '', `comment_author_url` varchar(200) NOT NULL DEFAULT '', `comment_author_IP` varchar(100) NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) NOT NULL DEFAULT '1', `comment_agent` varchar(255) NOT NULL DEFAULT '', `comment_type` varchar(20) NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=13 ; -- -- Dumping data for table `wp_comments` -- INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES (1, 1, 'Mr WordPress', '', 'https://wordpress.org/', '', '2014-12-23 23:14:56', '2014-12-23 23:14:56', 'Hi, this is a comment.\nTo delete a comment, just log in and view the post&#039;s comments. There you will have the option to edit or delete them.', 0, 'post-trashed', '', '', 0, 0), (2, 2, 'rsie', '<EMAIL>', '', '172.16.17.32', '2014-12-30 16:07:05', '2014-12-30 16:07:05', 'how to post a video', 0, 'trash', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36', '', 0, 1), (3, 2, 'rsie', '<EMAIL>', '', '172.16.17.32', '2014-12-30 16:17:41', '2014-12-30 16:17:41', 'https://www.youtube.com/watch?v=jRsVT4f4Jo8&spfreload=1\r\n\r\ncheck this out', 0, 'trash', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36', '', 0, 1), (8, 26, 'rsie', '<EMAIL>', '', '172.16.17.32', '2014-12-30 23:01:40', '2014-12-30 23:01:40', 'this is the event page comment', 0, '1', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36', '', 0, 1), (9, 26, 'rsie', '<EMAIL>', '', '172.16.17.32', '2014-12-30 23:02:24', '2014-12-30 23:02:24', 'another event comment for y''all', 0, '1', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36', '', 0, 1), (10, 26, 'rsie', '<EMAIL>', '', '172.16.17.32', '2015-01-13 18:42:19', '2015-01-13 18:42:19', 'Let''s see if this works easily...', 0, '1', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36', '', 8, 1), (11, 117, 'rsie', '<EMAIL>', '', '172.16.17.32', '2015-01-13 22:58:08', '2015-01-13 22:58:08', 'Build them and they will come', 0, '1', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36', '', 0, 1), (12, 117, 'rsie', '<EMAIL>', '', '172.16.17.32', '2015-01-14 19:45:57', '2015-01-14 19:45:57', 'I think it would be good to identify sensors that have correlations and thereby have the ability to plot changes, which are the most interesting.', 0, '1', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36', '', 0, 1); -- -------------------------------------------------------- -- -- Table structure for table `wp_links` -- CREATE TABLE IF NOT EXISTS `wp_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) NOT NULL DEFAULT '', `link_name` varchar(255) NOT NULL DEFAULT '', `link_image` varchar(255) NOT NULL DEFAULT '', `link_target` varchar(25) NOT NULL DEFAULT '', `link_description` varchar(255) NOT NULL DEFAULT '', `link_visible` varchar(20) NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) NOT NULL DEFAULT '', `link_notes` mediumtext NOT NULL, `link_rss` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `wp_links` -- -- -------------------------------------------------------- -- -- Table structure for table `wp_options` -- CREATE TABLE IF NOT EXISTS `wp_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(64) NOT NULL DEFAULT '', `option_value` longtext NOT NULL, `autoload` varchar(20) NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1002 ; -- -- Dumping data for table `wp_options` -- INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1, 'siteurl', 'http://www.thespacetimecontinuum.com/wordpress_4', 'yes'), (2, 'home', 'http://www.thespacetimecontinuum.com/wordpress_4', 'yes'), (3, 'blogname', 'Nodes-Talking', 'yes'), (4, 'blogdescription', 'A network of sensor nodes', 'yes'), (5, 'users_can_register', '0', 'yes'), (6, 'admin_email', '<EMAIL>', 'yes'), (7, 'start_of_week', '1', 'yes'), (8, 'use_balanceTags', '', 'yes'), (9, 'use_smilies', '1', 'yes'), (10, 'require_name_email', '1', 'yes'), (11, 'comments_notify', '1', 'yes'), (12, 'posts_per_rss', '10', 'yes'), (13, 'rss_use_excerpt', '0', 'yes'), (14, 'mailserver_url', '', 'yes'), (15, 'mailserver_login', '', 'yes'), (16, 'mailserver_pass', '', 'yes'), (17, 'mailserver_port', '110', 'yes'), (18, 'default_category', '7', 'yes'), (19, 'default_comment_status', 'closed', 'yes'), (20, 'default_ping_status', 'open', 'yes'), (21, 'default_pingback_flag', '1', 'yes'), (22, 'posts_per_page', '10', 'yes'), (23, 'date_format', 'F j, Y', 'yes'), (24, 'time_format', 'g:i a', 'yes'), (25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'), (26, 'comment_moderation', '1', 'yes'), (27, 'moderation_notify', '1', 'yes'), (28, 'permalink_structure', '', 'yes'), (29, 'gzipcompression', '0', 'yes'), (30, 'hack_file', '0', 'yes'), (31, 'blog_charset', 'UTF-8', 'yes'), (32, 'moderation_keys', '', 'no'), (33, 'active_plugins', 'a:3:{i:0;s:19:"akismet/akismet.php";i:1;s:17:"player/Player.php";i:2;s:34:"spider-event-calendar/calendar.php";}', 'yes'), (34, 'category_base', '', 'yes'), (35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'), (36, 'advanced_edit', '0', 'yes'), (37, 'comment_max_links', '2', 'yes'), (38, 'gmt_offset', '0', 'yes'), (39, 'default_email_category', '7', 'yes'), (40, 'recently_edited', 'a:5:{i:0;s:83:"/opt/lampstack-1.2-0/apps/wordpress_4/htdocs/wp-content/plugins/akismet/akismet.php";i:1;s:98:"/opt/lampstack-1.2-0/apps/wordpress_4/htdocs/wp-content/plugins/spider-event-calendar/calendar.php";i:2;s:85:"/opt/lampstack-1.2-0/apps/wordpress_4/htdocs/wp-content/themes/twentythirteen/404.php";i:3;s:86:"/opt/lampstack-1.2-0/apps/wordpress_4/htdocs/wp-content/themes/twentythirteen/page.php";i:4;s:87:"/opt/lampstack-1.2-0/apps/wordpress_4/htdocs/wp-content/themes/twentythirteen/style.css";}', 'no'), (41, 'template', 'twentythirteen', 'yes'), (42, 'stylesheet', 'twentythirteen', 'yes'), (43, 'comment_whitelist', '1', 'yes'), (44, 'blacklist_keys', '', 'no'), (45, 'comment_registration', '1', 'yes'), (46, 'html_type', 'text/html', 'yes'), (47, 'use_trackback', '0', 'yes'), (48, 'default_role', 'subscriber', 'yes'), (49, 'db_version', '30133', 'yes'), (50, 'uploads_use_yearmonth_folders', '1', 'yes'), (51, 'upload_path', '', 'yes'), (52, 'blog_public', '1', 'yes'), (53, 'default_link_category', '0', 'yes'), (54, 'show_on_front', 'page', 'yes'), (55, 'tag_base', '', 'yes'), (56, 'show_avatars', '1', 'yes'), (57, 'avatar_rating', 'G', 'yes'), (58, 'upload_url_path', '', 'yes'), (59, 'thumbnail_size_w', '150', 'yes'), (60, 'thumbnail_size_h', '150', 'yes'), (61, 'thumbnail_crop', '1', 'yes'), (62, 'medium_size_w', '300', 'yes'), (63, 'medium_size_h', '300', 'yes'), (64, 'avatar_default', 'mystery', 'yes'), (65, 'large_size_w', '1024', 'yes'), (66, 'large_size_h', '1024', 'yes'), (67, 'image_default_link_type', 'file', 'yes'), (68, 'image_default_size', '', 'yes'), (69, 'image_default_align', '', 'yes'), (70, 'close_comments_for_old_posts', '', 'yes'), (71, 'close_comments_days_old', '30', 'yes'), (72, 'thread_comments', '1', 'yes'), (73, 'thread_comments_depth', '5', 'yes'), (74, 'page_comments', '', 'yes'), (75, 'comments_per_page', '50', 'yes'), (76, 'default_comments_page', 'newest', 'yes'), (77, 'comment_order', 'asc', 'yes'), (78, 'sticky_posts', 'a:0:{}', 'yes'), (79, 'widget_categories', 'a:2:{i:2;a:4:{s:5:"title";s:0:"";s:5:"count";i:0;s:12:"hierarchical";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'), (80, 'widget_text', 'a:0:{}', 'yes'), (81, 'widget_rss', 'a:0:{}', 'yes'), (82, 'uninstall_plugins', 'a:0:{}', 'no'), (83, 'timezone_string', '', 'yes'), (84, 'page_for_posts', '26', 'yes'), (85, 'page_on_front', '2', 'yes'), (86, 'default_post_format', '0', 'yes'), (87, 'link_manager_enabled', '0', 'yes'), (88, 'initial_db_version', '30133', 'yes'), (89, 'wp_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:101:{s:13:"switch_themes";b:1;s:11:"edit_themes";b:1;s:16:"activate_plugins";b:1;s:12:"edit_plugins";b:1;s:10:"edit_users";b:1;s:10:"edit_files";b:1;s:14:"manage_options";b:1;s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:6:"import";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:8:"level_10";b:1;s:7:"level_9";b:1;s:7:"level_8";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;s:12:"delete_users";b:1;s:12:"create_users";b:1;s:17:"unfiltered_upload";b:1;s:14:"edit_dashboard";b:1;s:14:"update_plugins";b:1;s:14:"delete_plugins";b:1;s:15:"install_plugins";b:1;s:13:"update_themes";b:1;s:14:"install_themes";b:1;s:11:"update_core";b:1;s:10:"list_users";b:1;s:12:"remove_users";b:1;s:9:"add_users";b:1;s:13:"promote_users";b:1;s:18:"edit_theme_options";b:1;s:13:"delete_themes";b:1;s:6:"export";b:1;s:16:"edit_tribe_event";b:1;s:16:"read_tribe_event";b:1;s:18:"delete_tribe_event";b:1;s:19:"delete_tribe_events";b:1;s:17:"edit_tribe_events";b:1;s:24:"edit_others_tribe_events";b:1;s:26:"delete_others_tribe_events";b:1;s:20:"publish_tribe_events";b:1;s:27:"edit_published_tribe_events";b:1;s:29:"delete_published_tribe_events";b:1;s:27:"delete_private_tribe_events";b:1;s:25:"edit_private_tribe_events";b:1;s:25:"read_private_tribe_events";b:1;s:16:"edit_tribe_venue";b:1;s:16:"read_tribe_venue";b:1;s:18:"delete_tribe_venue";b:1;s:19:"delete_tribe_venues";b:1;s:17:"edit_tribe_venues";b:1;s:24:"edit_others_tribe_venues";b:1;s:26:"delete_others_tribe_venues";b:1;s:20:"publish_tribe_venues";b:1;s:27:"edit_published_tribe_venues";b:1;s:29:"delete_published_tribe_venues";b:1;s:27:"delete_private_tribe_venues";b:1;s:25:"edit_private_tribe_venues";b:1;s:25:"read_private_tribe_venues";b:1;s:20:"edit_tribe_organizer";b:1;s:20:"read_tribe_organizer";b:1;s:22:"delete_tribe_organizer";b:1;s:23:"delete_tribe_organizers";b:1;s:21:"edit_tribe_organizers";b:1;s:28:"edit_others_tribe_organizers";b:1;s:30:"delete_others_tribe_organizers";b:1;s:24:"publish_tribe_organizers";b:1;s:31:"edit_published_tribe_organizers";b:1;s:33:"delete_published_tribe_organizers";b:1;s:31:"delete_private_tribe_organizers";b:1;s:29:"edit_private_tribe_organizers";b:1;s:29:"read_private_tribe_organizers";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:73:{s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;s:16:"edit_tribe_event";b:1;s:16:"read_tribe_event";b:1;s:18:"delete_tribe_event";b:1;s:19:"delete_tribe_events";b:1;s:17:"edit_tribe_events";b:1;s:24:"edit_others_tribe_events";b:1;s:26:"delete_others_tribe_events";b:1;s:20:"publish_tribe_events";b:1;s:27:"edit_published_tribe_events";b:1;s:29:"delete_published_tribe_events";b:1;s:27:"delete_private_tribe_events";b:1;s:25:"edit_private_tribe_events";b:1;s:25:"read_private_tribe_events";b:1;s:16:"edit_tribe_venue";b:1;s:16:"read_tribe_venue";b:1;s:18:"delete_tribe_venue";b:1;s:19:"delete_tribe_venues";b:1;s:17:"edit_tribe_venues";b:1;s:24:"edit_others_tribe_venues";b:1;s:26:"delete_others_tribe_venues";b:1;s:20:"publish_tribe_venues";b:1;s:27:"edit_published_tribe_venues";b:1;s:29:"delete_published_tribe_venues";b:1;s:27:"delete_private_tribe_venues";b:1;s:25:"edit_private_tribe_venues";b:1;s:25:"read_private_tribe_venues";b:1;s:20:"edit_tribe_organizer";b:1;s:20:"read_tribe_organizer";b:1;s:22:"delete_tribe_organizer";b:1;s:23:"delete_tribe_organizers";b:1;s:21:"edit_tribe_organizers";b:1;s:28:"edit_others_tribe_organizers";b:1;s:30:"delete_others_tribe_organizers";b:1;s:24:"publish_tribe_organizers";b:1;s:31:"edit_published_tribe_organizers";b:1;s:33:"delete_published_tribe_organizers";b:1;s:31:"delete_private_tribe_organizers";b:1;s:29:"edit_private_tribe_organizers";b:1;s:29:"read_private_tribe_organizers";b:1;}}s:6:"author";a:2:{s:4:"name";s:6:"Author";s:12:"capabilities";a:34:{s:12:"upload_files";b:1;s:10:"edit_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:4:"read";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;s:22:"delete_published_posts";b:1;s:16:"edit_tribe_event";b:1;s:16:"read_tribe_event";b:1;s:18:"delete_tribe_event";b:1;s:19:"delete_tribe_events";b:1;s:17:"edit_tribe_events";b:1;s:20:"publish_tribe_events";b:1;s:27:"edit_published_tribe_events";b:1;s:29:"delete_published_tribe_events";b:1;s:16:"edit_tribe_venue";b:1;s:16:"read_tribe_venue";b:1;s:18:"delete_tribe_venue";b:1;s:19:"delete_tribe_venues";b:1;s:17:"edit_tribe_venues";b:1;s:20:"publish_tribe_venues";b:1;s:27:"edit_published_tribe_venues";b:1;s:29:"delete_published_tribe_venues";b:1;s:20:"edit_tribe_organizer";b:1;s:20:"read_tribe_organizer";b:1;s:22:"delete_tribe_organizer";b:1;s:23:"delete_tribe_organizers";b:1;s:21:"edit_tribe_organizers";b:1;s:24:"publish_tribe_organizers";b:1;s:31:"edit_published_tribe_organizers";b:1;s:33:"delete_published_tribe_organizers";b:1;}}s:11:"contributor";a:2:{s:4:"name";s:11:"Contributor";s:12:"capabilities";a:20:{s:10:"edit_posts";b:1;s:4:"read";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;s:16:"edit_tribe_event";b:1;s:16:"read_tribe_event";b:1;s:18:"delete_tribe_event";b:1;s:19:"delete_tribe_events";b:1;s:17:"edit_tribe_events";b:1;s:16:"edit_tribe_venue";b:1;s:16:"read_tribe_venue";b:1;s:18:"delete_tribe_venue";b:1;s:19:"delete_tribe_venues";b:1;s:17:"edit_tribe_venues";b:1;s:20:"edit_tribe_organizer";b:1;s:20:"read_tribe_organizer";b:1;s:22:"delete_tribe_organizer";b:1;s:23:"delete_tribe_organizers";b:1;s:21:"edit_tribe_organizers";b:1;}}s:10:"subscriber";a:2:{s:4:"name";s:10:"Subscriber";s:12:"capabilities";a:5:{s:4:"read";b:1;s:7:"level_0";b:1;s:16:"read_tribe_event";b:1;s:20:"read_tribe_organizer";b:1;s:16:"read_tribe_venue";b:1;}}}', 'yes'), (90, 'widget_search', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'), (91, 'widget_recent-posts', 'a:2:{i:2;a:3:{s:5:"title";s:0:"";s:6:"number";i:5;s:9:"show_date";b:1;}s:12:"_multiwidget";i:1;}', 'yes'), (92, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'), (93, 'widget_archives', 'a:2:{i:2;a:3:{s:5:"title";s:0:"";s:5:"count";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'), (94, 'widget_meta', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'), (95, 'sidebars_widgets', 'a:6:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:7:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";i:3;s:10:"archives-2";i:4;s:12:"categories-2";i:5;s:6:"meta-2";i:6;s:11:"tag_cloud-2";}s:11:"footer-left";a:0:{}s:13:"footer-center";a:0:{}s:12:"footer-right";a:0:{}s:13:"array_version";i:3;}', 'yes'), (96, 'cron', 'a:7:{i:1421344292;a:1:{s:29:"akismet_schedule_cron_recheck";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:2:{s:8:"schedule";b:0;s:4:"args";a:0:{}}}}i:1421347339;a:1:{s:24:"akismet_scheduled_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1421348760;a:1:{s:20:"wp_maybe_auto_update";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1421350665;a:1:{s:30:"wp_scheduled_auto_draft_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1421363709;a:3:{s:16:"wp_version_check";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:17:"wp_update_plugins";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:16:"wp_update_themes";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1421363764;a:1:{s:19:"wp_scheduled_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}s:7:"version";i:2;}', 'yes'), (98, '_site_transient_update_core', 'O:8:"stdClass":4:{s:7:"updates";a:1:{i:0;O:8:"stdClass":10:{s:8:"response";s:6:"latest";s:8:"download";s:57:"https://downloads.wordpress.org/release/wordpress-4.1.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:57:"https://downloads.wordpress.org/release/wordpress-4.1.zip";s:10:"no_content";s:68:"https://downloads.wordpress.org/release/wordpress-4.1-no-content.zip";s:11:"new_bundled";s:69:"https://downloads.wordpress.org/release/wordpress-4.1-new-bundled.zip";s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:3:"4.1";s:7:"version";s:3:"4.1";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"4.1";s:15:"partial_version";s:0:"";}}s:12:"last_checked";i:1421322688;s:15:"version_checked";s:3:"4.1";s:12:"translations";a:0:{}}', 'yes'), (99, '_transient_random_seed', '774214ab18c08c165aa07d6d8fbb1cca', 'yes'), (111, 'can_compress_scripts', '1', 'yes'), (126, '_transient_twentyfifteen_categories', '1', 'yes'), (129, 'current_theme', 'Twenty Thirteen', 'yes'), (130, 'theme_mods_twentyfourteen', 'a:6:{i:0;b:0;s:16:"background_color";s:6:"81d742";s:16:"header_textcolor";s:6:"eaef47";s:18:"nav_menu_locations";a:1:{s:9:"secondary";i:0;}s:12:"header_image";s:104:"http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-bioSpear.big_.61.png";s:17:"header_image_data";O:8:"stdClass":5:{s:13:"attachment_id";i:108;s:3:"url";s:104:"http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-bioSpear.big_.61.png";s:13:"thumbnail_url";s:104:"http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-bioSpear.big_.61.png";s:6:"height";i:282;s:5:"width";i:1260;}}', 'yes'), (131, 'theme_switched', '', 'yes'), (132, 'theme_switched_via_customizer', '', 'yes'), (138, 'recently_activated', 'a:1:{s:43:"the-events-calendar/the-events-calendar.php";i:1421196667;}', 'yes'), (142, 'theme_mods_supernova', 'a:5:{i:0;b:0;s:18:"nav_menu_locations";a:4:{s:10:"Header_Cat";i:2;s:8:"Main_Nav";i:2;s:10:"Footer_Nav";i:2;s:10:"Header_Nav";i:2;}s:21:"background_attachment";s:5:"fixed";s:12:"header_image";s:103:"http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-bioSpear.big_.7.png";s:17:"header_image_data";O:8:"stdClass":5:{s:13:"attachment_id";i:25;s:3:"url";s:103:"http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-bioSpear.big_.7.png";s:13:"thumbnail_url";s:103:"http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-bioSpear.big_.7.png";s:6:"height";i:335;s:5:"width";i:1500;}}', 'yes'), (143, 'supernova_file_write_status', 'failed', 'yes'), (144, 'supernova_settings', 'a:69:{s:7:"favicon";s:0:"";s:12:"layout-width";s:4:"1100";s:13:"content-width";s:2:"70";s:13:"sidebar-width";s:2:"30";s:11:"sidebar-pos";s:1:"2";s:12:"color-scheme";s:1:"1";s:10:"font-style";s:14:"Georgia, serif";s:9:"footer-bg";s:93:"http://www.thespacetimecontinuum.com/wordpress_4/wp-content/themes/supernova/images/black.png";s:12:"footer-color";s:6:"000000";s:7:"sup_css";s:0:"";s:14:"post-para-size";s:2:"14";s:17:"post-heading-size";s:2:"25";s:17:"site-heading-size";s:2:"30";s:14:"site-desc-size";s:2:"14";s:20:"sidebar-heading-size";s:2:"23";s:16:"footertext-color";s:6:"CCCCCC";s:19:"footerheading-color";s:6:"FFFFFF";s:15:"post-para-color";s:6:"000000";s:18:"post-heading-color";s:6:"525252";s:21:"sidebar-heading-color";s:6:"525252";s:4:"fat1";s:0:"";s:7:"slider1";s:91:"http://www.thespacetimecontinuum.com/wordpress_4/wp-content/themes/supernova/images/key.jpg";s:4:"fat2";s:0:"";s:7:"slider2";s:94:"http://www.thespacetimecontinuum.com/wordpress_4/wp-content/themes/supernova/images/statue.jpg";s:4:"fat3";s:0:"";s:7:"slider3";s:0:"";s:4:"fat4";s:0:"";s:7:"slider4";s:0:"";s:4:"fat5";s:0:"";s:7:"slider5";s:0:"";s:4:"fat6";s:0:"";s:7:"slider6";s:0:"";s:4:"fat7";s:0:"";s:7:"slider7";s:0:"";s:4:"fat8";s:0:"";s:7:"slider8";s:0:"";s:11:"fade-slider";s:5:"slide";s:16:"slider-from-page";s:1:"1";s:15:"automate-slides";s:1:"5";s:19:"slider-post-excerpt";s:1:"1";s:21:"slider-excerpt-length";s:2:"32";s:21:"slider-heading-length";s:2:"48";s:13:"facebook-link";s:19:"http://facebook.com";s:12:"twitter-link";s:18:"http://twitter.com";s:11:"google-link";s:24:"https://plus.google.com/";s:8:"rss-link";s:14:"http://rss.com";s:12:"youtube-link";s:18:"http://youtube.com";s:13:"linkedin-link";s:0:"";s:10:"icon-color";s:1:"1";s:11:"footer-text";s:22:"© 2014 Nodes-Talking";s:13:"header-script";s:0:"";s:11:"latest-blog";s:12:"Latest Blogs";s:12:"popular-text";s:13:"Popular Posts";s:8:"rec-text";s:11:"Recommended";s:11:"loader-text";s:9:"Show More";s:16:"poplular-pos-dep";s:1:"1";s:12:"meta-sorting";s:19:"Author,Date,Comment";s:12:"full-content";s:1:"1";s:19:"post-excerpt-length";s:2:"55";s:20:"list-thumbnail-width";s:2:"20";s:21:"list-thumbnail-height";s:3:"120";s:13:"default-thumb";s:95:"http://www.thespacetimecontinuum.com/wordpress_4/wp-content/themes/supernova/images/default.png";s:9:"header-ad";s:0:"";s:11:"belownav-ad";s:0:"";s:14:"above-posts-ad";s:0:"";s:14:"below-posts-ad";s:0:"";s:14:"abovefooter-ad";s:0:"";s:18:"abovesinglepost-ad";s:0:"";s:18:"belowsinglepost-ad";s:0:"";}', 'yes'), (276, 'widget_tag_cloud', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:8:"taxonomy";s:8:"post_tag";}s:12:"_multiwidget";i:1;}', 'yes'), (277, '_site_transient_timeout_wporg_theme_feature_list', '1419890110', 'yes'), (278, '_site_transient_wporg_theme_feature_list', 'a:4:{s:6:"Colors";a:15:{i:0;s:5:"black";i:1;s:4:"blue";i:2;s:5:"brown";i:3;s:4:"gray";i:4;s:5:"green";i:5;s:6:"orange";i:6;s:4:"pink";i:7;s:6:"purple";i:8;s:3:"red";i:9;s:6:"silver";i:10;s:3:"tan";i:11;s:5:"white";i:12;s:6:"yellow";i:13;s:4:"dark";i:14;s:5:"light";}s:6:"Layout";a:9:{i:0;s:12:"fixed-layout";i:1;s:12:"fluid-layout";i:2;s:17:"responsive-layout";i:3;s:10:"one-column";i:4;s:11:"two-columns";i:5;s:13:"three-columns";i:6;s:12:"four-columns";i:7;s:12:"left-sidebar";i:8;s:13:"right-sidebar";}s:8:"Features";a:20:{i:0;s:19:"accessibility-ready";i:1;s:8:"blavatar";i:2;s:10:"buddypress";i:3;s:17:"custom-background";i:4;s:13:"custom-colors";i:5;s:13:"custom-header";i:6;s:11:"custom-menu";i:7;s:12:"editor-style";i:8;s:21:"featured-image-header";i:9;s:15:"featured-images";i:10;s:15:"flexible-header";i:11;s:20:"front-page-post-form";i:12;s:19:"full-width-template";i:13;s:12:"microformats";i:14;s:12:"post-formats";i:15;s:20:"rtl-language-support";i:16;s:11:"sticky-post";i:17;s:13:"theme-options";i:18;s:17:"threaded-comments";i:19;s:17:"translation-ready";}s:7:"Subject";a:3:{i:0;s:7:"holiday";i:1;s:13:"photoblogging";i:2;s:8:"seasonal";}}', 'yes'), (280, 'theme_mods_alexandria', 'a:3:{i:0;b:0;s:18:"nav_menu_locations";a:1:{s:7:"primary";i:2;}s:16:"background_color";s:6:"7db8f2";}', 'yes'), (281, 'optionsframework', 'a:1:{s:2:"id";s:10:"alexandria";}', 'yes'), (285, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:0:{}}', 'yes'), (310, '_transient_all_the_cool_cats', '1', 'yes'), (419, '_site_transient_timeout_popular_importers_en_US', '1420161237', 'yes'), (420, '_site_transient_popular_importers_en_US', 'a:2:{s:9:"importers";a:8:{s:7:"blogger";a:4:{s:4:"name";s:7:"Blogger";s:11:"description";s:86:"Install the Blogger importer to import posts, comments, and users from a Blogger blog.";s:11:"plugin-slug";s:16:"blogger-importer";s:11:"importer-id";s:7:"blogger";}s:9:"wpcat2tag";a:4:{s:4:"name";s:29:"Categories and Tags Converter";s:11:"description";s:109:"Install the category/tag converter to convert existing categories to tags or tags to categories, selectively.";s:11:"plugin-slug";s:18:"wpcat2tag-importer";s:11:"importer-id";s:9:"wpcat2tag";}s:11:"livejournal";a:4:{s:4:"name";s:11:"LiveJournal";s:11:"description";s:82:"Install the LiveJournal importer to import posts from LiveJournal using their API.";s:11:"plugin-slug";s:20:"livejournal-importer";s:11:"importer-id";s:11:"livejournal";}s:11:"movabletype";a:4:{s:4:"name";s:24:"Movable Type and TypePad";s:11:"description";s:99:"Install the Movable Type importer to import posts and comments from a Movable Type or TypePad blog.";s:11:"plugin-slug";s:20:"movabletype-importer";s:11:"importer-id";s:2:"mt";}s:4:"opml";a:4:{s:4:"name";s:8:"Blogroll";s:11:"description";s:61:"Install the blogroll importer to import links in OPML format.";s:11:"plugin-slug";s:13:"opml-importer";s:11:"importer-id";s:4:"opml";}s:3:"rss";a:4:{s:4:"name";s:3:"RSS";s:11:"description";s:58:"Install the RSS importer to import posts from an RSS feed.";s:11:"plugin-slug";s:12:"rss-importer";s:11:"importer-id";s:3:"rss";}s:6:"tumblr";a:4:{s:4:"name";s:6:"Tumblr";s:11:"description";s:84:"Install the Tumblr importer to import posts &amp; media from Tumblr using their API.";s:11:"plugin-slug";s:15:"tumblr-importer";s:11:"importer-id";s:6:"tumblr";}s:9:"wordpress";a:4:{s:4:"name";s:9:"WordPress";s:11:"description";s:130:"Install the WordPress importer to import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.";s:11:"plugin-slug";s:18:"wordpress-importer";s:11:"importer-id";s:9:"wordpress";}}s:10:"translated";b:0;}', 'yes'), (729, '_site_transient_timeout_browser_5745179b6e4dc44155ca95a5622b2ca5', '1421777763', 'yes'), (730, '_site_transient_browser_5745179b6e4dc44155ca95a5622b2ca5', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:12:"39.0.2171.95";s:10:"update_url";s:28:"http://www.google.com/chrome";s:7:"img_src";s:49:"http://s.wordpress.org/images/browsers/chrome.png";s:11:"img_src_ssl";s:48:"https://wordpress.org/images/browsers/chrome.png";s:15:"current_version";s:2:"18";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'yes'), (747, '_site_transient_update_themes', 'O:8:"stdClass":4:{s:12:"last_checked";i:1421322692;s:7:"checked";a:5:{s:10:"alexandria";s:5:"2.2.1";s:9:"supernova";s:5:"1.5.9";s:13:"twentyfifteen";s:3:"1.0";s:14:"twentyfourteen";s:3:"1.3";s:14:"twentythirteen";s:3:"1.4";}s:8:"response";a:0:{}s:12:"translations";a:0:{}}', 'yes'), (835, '_transient_featured_content_ids', 'a:0:{}', 'yes'), (836, '_site_transient_timeout_available_translations', '1421195628', 'yes'), (837, '_site_transient_available_translations', 'a:46:{s:2:"ar";a:8:{s:8:"language";s:2:"ar";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-18 13:48:58";s:12:"english_name";s:6:"Arabic";s:11:"native_name";s:14:"العربية";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/ar.zip";s:3:"iso";a:2:{i:1;s:2:"ar";i:2;s:3:"ara";}s:7:"strings";a:1:{s:8:"continue";s:16:"المتابعة";}}s:2:"az";a:8:{s:8:"language";s:2:"az";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-09 18:52:27";s:12:"english_name";s:11:"Azerbaijani";s:11:"native_name";s:16:"Azərbaycan dili";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/az.zip";s:3:"iso";a:2:{i:1;s:2:"az";i:2;s:3:"aze";}s:7:"strings";a:1:{s:8:"continue";s:5:"Davam";}}s:5:"bg_BG";a:8:{s:8:"language";s:5:"bg_BG";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-04 21:03:27";s:12:"english_name";s:9:"Bulgarian";s:11:"native_name";s:18:"Български";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/bg_BG.zip";s:3:"iso";a:2:{i:1;s:2:"bg";i:2;s:3:"bul";}s:7:"strings";a:1:{s:8:"continue";s:22:"Продължение";}}s:5:"bs_BA";a:8:{s:8:"language";s:5:"bs_BA";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-08 17:39:56";s:12:"english_name";s:7:"Bosnian";s:11:"native_name";s:8:"Bosanski";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/bs_BA.zip";s:3:"iso";a:2:{i:1;s:2:"bs";i:2;s:3:"bos";}s:7:"strings";a:1:{s:8:"continue";s:7:"Nastavi";}}s:2:"ca";a:8:{s:8:"language";s:2:"ca";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-09 04:10:35";s:12:"english_name";s:7:"Catalan";s:11:"native_name";s:7:"Català";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/ca.zip";s:3:"iso";a:2:{i:1;s:2:"ca";i:2;s:3:"cat";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continua";}}s:2:"cy";a:8:{s:8:"language";s:2:"cy";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-09 11:12:57";s:12:"english_name";s:5:"Welsh";s:11:"native_name";s:7:"Cymraeg";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/cy.zip";s:3:"iso";a:2:{i:1;s:2:"cy";i:2;s:3:"cym";}s:7:"strings";a:1:{s:8:"continue";s:6:"Parhau";}}s:5:"da_DK";a:8:{s:8:"language";s:5:"da_DK";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-06 18:51:09";s:12:"english_name";s:6:"Danish";s:11:"native_name";s:5:"Dansk";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/da_DK.zip";s:3:"iso";a:2:{i:1;s:2:"da";i:2;s:3:"dan";}s:7:"strings";a:1:{s:8:"continue";s:12:"Forts&#230;t";}}s:5:"de_DE";a:8:{s:8:"language";s:5:"de_DE";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-04 15:21:32";s:12:"english_name";s:6:"German";s:11:"native_name";s:7:"Deutsch";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/de_DE.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:10:"Fortfahren";}}s:2:"el";a:8:{s:8:"language";s:2:"el";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-08 21:47:46";s:12:"english_name";s:5:"Greek";s:11:"native_name";s:16:"Ελληνικά";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/el.zip";s:3:"iso";a:2:{i:1;s:2:"el";i:2;s:3:"ell";}s:7:"strings";a:1:{s:8:"continue";s:16:"Συνέχεια";}}s:5:"en_GB";a:8:{s:8:"language";s:5:"en_GB";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-06 08:18:42";s:12:"english_name";s:12:"English (UK)";s:11:"native_name";s:12:"English (UK)";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/en_GB.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_CA";a:8:{s:8:"language";s:5:"en_CA";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-18 00:30:12";s:12:"english_name";s:16:"English (Canada)";s:11:"native_name";s:16:"English (Canada)";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/en_CA.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_AU";a:8:{s:8:"language";s:5:"en_AU";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-16 23:14:33";s:12:"english_name";s:19:"English (Australia)";s:11:"native_name";s:19:"English (Australia)";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/en_AU.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:2:"eo";a:8:{s:8:"language";s:2:"eo";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-08 22:46:58";s:12:"english_name";s:9:"Esperanto";s:11:"native_name";s:9:"Esperanto";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/eo.zip";s:3:"iso";a:2:{i:1;s:2:"eo";i:2;s:3:"epo";}s:7:"strings";a:1:{s:8:"continue";s:8:"Daŭrigi";}}s:5:"es_PE";a:8:{s:8:"language";s:5:"es_PE";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-19 08:14:32";s:12:"english_name";s:14:"Spanish (Peru)";s:11:"native_name";s:17:"Español de Perú";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/es_PE.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_ES";a:8:{s:8:"language";s:5:"es_ES";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-12 23:01:40";s:12:"english_name";s:15:"Spanish (Spain)";s:11:"native_name";s:8:"Español";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/es_ES.zip";s:3:"iso";a:1:{i:1;s:2:"es";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_MX";a:8:{s:8:"language";s:5:"es_MX";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-08 23:41:34";s:12:"english_name";s:16:"Spanish (Mexico)";s:11:"native_name";s:19:"Español de México";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/es_MX.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_CL";a:8:{s:8:"language";s:5:"es_CL";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 19:47:01";s:12:"english_name";s:15:"Spanish (Chile)";s:11:"native_name";s:17:"Español de Chile";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/es_CL.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:2:"eu";a:8:{s:8:"language";s:2:"eu";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-09 12:20:08";s:12:"english_name";s:6:"Basque";s:11:"native_name";s:7:"Euskara";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/eu.zip";s:3:"iso";a:2:{i:1;s:2:"eu";i:2;s:3:"eus";}s:7:"strings";a:1:{s:8:"continue";s:8:"Jarraitu";}}s:5:"fa_IR";a:8:{s:8:"language";s:5:"fa_IR";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-18 23:18:50";s:12:"english_name";s:7:"Persian";s:11:"native_name";s:10:"فارسی";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/fa_IR.zip";s:3:"iso";a:2:{i:1;s:2:"fa";i:2;s:3:"fas";}s:7:"strings";a:1:{s:8:"continue";s:10:"ادامه";}}s:2:"fi";a:8:{s:8:"language";s:2:"fi";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-17 07:01:16";s:12:"english_name";s:7:"Finnish";s:11:"native_name";s:5:"Suomi";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/fi.zip";s:3:"iso";a:2:{i:1;s:2:"fi";i:2;s:3:"fin";}s:7:"strings";a:1:{s:8:"continue";s:5:"Jatka";}}s:5:"fr_FR";a:8:{s:8:"language";s:5:"fr_FR";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-05 09:12:27";s:12:"english_name";s:15:"French (France)";s:11:"native_name";s:9:"Français";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/fr_FR.zip";s:3:"iso";a:1:{i:1;s:2:"fr";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuer";}}s:2:"gd";a:8:{s:8:"language";s:2:"gd";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-05 17:37:43";s:12:"english_name";s:15:"Scottish Gaelic";s:11:"native_name";s:9:"Gàidhlig";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/gd.zip";s:3:"iso";a:3:{i:1;s:2:"gd";i:2;s:3:"gla";i:3;s:3:"gla";}s:7:"strings";a:1:{s:8:"continue";s:15:"Lean air adhart";}}s:5:"gl_ES";a:8:{s:8:"language";s:5:"gl_ES";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-17 18:21:32";s:12:"english_name";s:8:"Galician";s:11:"native_name";s:6:"Galego";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/gl_ES.zip";s:3:"iso";a:2:{i:1;s:2:"gl";i:2;s:3:"glg";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"he_IL";a:8:{s:8:"language";s:5:"he_IL";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-18 06:09:08";s:12:"english_name";s:6:"Hebrew";s:11:"native_name";s:16:"עִבְרִית";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/he_IL.zip";s:3:"iso";a:1:{i:1;s:2:"he";}s:7:"strings";a:1:{s:8:"continue";s:12:"להמשיך";}}s:2:"hr";a:8:{s:8:"language";s:2:"hr";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-19 14:39:57";s:12:"english_name";s:8:"Croatian";s:11:"native_name";s:8:"Hrvatski";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/hr.zip";s:3:"iso";a:2:{i:1;s:2:"hr";i:2;s:3:"hrv";}s:7:"strings";a:1:{s:8:"continue";s:7:"Nastavi";}}s:5:"hu_HU";a:8:{s:8:"language";s:5:"hu_HU";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-07 11:10:15";s:12:"english_name";s:9:"Hungarian";s:11:"native_name";s:6:"Magyar";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/hu_HU.zip";s:3:"iso";a:2:{i:1;s:2:"hu";i:2;s:3:"hun";}s:7:"strings";a:1:{s:8:"continue";s:7:"Tovább";}}s:5:"id_ID";a:8:{s:8:"language";s:5:"id_ID";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-17 05:06:14";s:12:"english_name";s:10:"Indonesian";s:11:"native_name";s:16:"Bahasa Indonesia";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/id_ID.zip";s:3:"iso";a:2:{i:1;s:2:"id";i:2;s:3:"ind";}s:7:"strings";a:1:{s:8:"continue";s:9:"Lanjutkan";}}s:5:"it_IT";a:8:{s:8:"language";s:5:"it_IT";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-08 09:00:58";s:12:"english_name";s:7:"Italian";s:11:"native_name";s:8:"Italiano";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/it_IT.zip";s:3:"iso";a:2:{i:1;s:2:"it";i:2;s:3:"ita";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continua";}}s:2:"ja";a:8:{s:8:"language";s:2:"ja";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-11 02:43:36";s:12:"english_name";s:8:"Japanese";s:11:"native_name";s:9:"日本語";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/ja.zip";s:3:"iso";a:1:{i:1;s:2:"ja";}s:7:"strings";a:1:{s:8:"continue";s:9:"続ける";}}s:5:"ko_KR";a:8:{s:8:"language";s:5:"ko_KR";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-04 02:56:59";s:12:"english_name";s:6:"Korean";s:11:"native_name";s:9:"한국어";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/ko_KR.zip";s:3:"iso";a:2:{i:1;s:2:"ko";i:2;s:3:"kor";}s:7:"strings";a:1:{s:8:"continue";s:6:"계속";}}s:5:"my_MM";a:8:{s:8:"language";s:5:"my_MM";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-21 19:07:31";s:12:"english_name";s:7:"Burmese";s:11:"native_name";s:15:"ဗမာစာ";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/my_MM.zip";s:3:"iso";a:2:{i:1;s:2:"my";i:2;s:3:"mya";}s:7:"strings";a:1:{s:8:"continue";s:54:"ဆက်လက်လုပ်ေဆာင်ပါ။";}}s:5:"nb_NO";a:8:{s:8:"language";s:5:"nb_NO";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-10 16:35:13";s:12:"english_name";s:19:"Norwegian (Bokmål)";s:11:"native_name";s:13:"Norsk bokmål";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/nb_NO.zip";s:3:"iso";a:2:{i:1;s:2:"nb";i:2;s:3:"nob";}s:7:"strings";a:1:{s:8:"continue";s:8:"Fortsett";}}s:5:"nl_NL";a:8:{s:8:"language";s:5:"nl_NL";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-09 07:20:46";s:12:"english_name";s:5:"Dutch";s:11:"native_name";s:10:"Nederlands";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/nl_NL.zip";s:3:"iso";a:2:{i:1;s:2:"nl";i:2;s:3:"nld";}s:7:"strings";a:1:{s:8:"continue";s:8:"Doorgaan";}}s:5:"pl_PL";a:8:{s:8:"language";s:5:"pl_PL";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-09 15:11:56";s:12:"english_name";s:6:"Polish";s:11:"native_name";s:6:"Polski";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/pl_PL.zip";s:3:"iso";a:2:{i:1;s:2:"pl";i:2;s:3:"pol";}s:7:"strings";a:1:{s:8:"continue";s:9:"Kontynuuj";}}s:5:"pt_PT";a:8:{s:8:"language";s:5:"pt_PT";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-02 18:49:32";s:12:"english_name";s:21:"Portuguese (Portugal)";s:11:"native_name";s:10:"Português";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/pt_PT.zip";s:3:"iso";a:1:{i:1;s:2:"pt";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"pt_BR";a:8:{s:8:"language";s:5:"pt_BR";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-06 15:59:30";s:12:"english_name";s:19:"Portuguese (Brazil)";s:11:"native_name";s:20:"Português do Brasil";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/pt_BR.zip";s:3:"iso";a:2:{i:1;s:2:"pt";i:2;s:3:"por";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"ro_RO";a:8:{s:8:"language";s:5:"ro_RO";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-13 10:05:34";s:12:"english_name";s:8:"Romanian";s:11:"native_name";s:8:"Română";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/ro_RO.zip";s:3:"iso";a:2:{i:1;s:2:"ro";i:2;s:3:"ron";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuă";}}s:5:"ru_RU";a:8:{s:8:"language";s:5:"ru_RU";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-04 23:12:49";s:12:"english_name";s:7:"Russian";s:11:"native_name";s:14:"Русский";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/ru_RU.zip";s:3:"iso";a:2:{i:1;s:2:"ru";i:2;s:3:"rus";}s:7:"strings";a:1:{s:8:"continue";s:20:"Продолжить";}}s:5:"sk_SK";a:8:{s:8:"language";s:5:"sk_SK";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-12 19:18:28";s:12:"english_name";s:6:"Slovak";s:11:"native_name";s:11:"Slovenčina";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/sk_SK.zip";s:3:"iso";a:2:{i:1;s:2:"sk";i:2;s:3:"slk";}s:7:"strings";a:1:{s:8:"continue";s:12:"Pokračovať";}}s:5:"sl_SI";a:8:{s:8:"language";s:5:"sl_SI";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-08 07:31:14";s:12:"english_name";s:9:"Slovenian";s:11:"native_name";s:13:"Slovenščina";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/sl_SI.zip";s:3:"iso";a:2:{i:1;s:2:"sl";i:2;s:3:"slv";}s:7:"strings";a:1:{s:8:"continue";s:10:"Nadaljujte";}}s:5:"sr_RS";a:8:{s:8:"language";s:5:"sr_RS";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-18 19:08:01";s:12:"english_name";s:7:"Serbian";s:11:"native_name";s:23:"Српски језик";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/sr_RS.zip";s:3:"iso";a:2:{i:1;s:2:"sr";i:2;s:3:"srp";}s:7:"strings";a:1:{s:8:"continue";s:14:"Настави";}}s:5:"sv_SE";a:8:{s:8:"language";s:5:"sv_SE";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-18 13:39:48";s:12:"english_name";s:7:"Swedish";s:11:"native_name";s:7:"Svenska";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/sv_SE.zip";s:3:"iso";a:2:{i:1;s:2:"sv";i:2;s:3:"swe";}s:7:"strings";a:1:{s:8:"continue";s:9:"Fortsätt";}}s:2:"th";a:8:{s:8:"language";s:2:"th";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-18 16:15:24";s:12:"english_name";s:4:"Thai";s:11:"native_name";s:9:"ไทย";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/th.zip";s:3:"iso";a:2:{i:1;s:2:"th";i:2;s:3:"tha";}s:7:"strings";a:1:{s:8:"continue";s:15:"ต่อไป";}}s:5:"tr_TR";a:8:{s:8:"language";s:5:"tr_TR";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-10 11:11:55";s:12:"english_name";s:7:"Turkish";s:11:"native_name";s:8:"Türkçe";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/tr_TR.zip";s:3:"iso";a:2:{i:1;s:2:"tr";i:2;s:3:"tur";}s:7:"strings";a:1:{s:8:"continue";s:5:"Devam";}}s:5:"zh_CN";a:8:{s:8:"language";s:5:"zh_CN";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-26 02:21:02";s:12:"english_name";s:15:"Chinese (China)";s:11:"native_name";s:12:"简体中文";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/zh_CN.zip";s:3:"iso";a:2:{i:1;s:2:"zh";i:2;s:3:"zho";}s:7:"strings";a:1:{s:8:"continue";s:6:"继续";}}s:5:"zh_TW";a:8:{s:8:"language";s:5:"zh_TW";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-08 03:46:32";s:12:"english_name";s:16:"Chinese (Taiwan)";s:11:"native_name";s:12:"繁體中文";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/zh_TW.zip";s:3:"iso";a:2:{i:1;s:2:"zh";i:2;s:3:"zho";}s:7:"strings";a:1:{s:8:"continue";s:6:"繼續";}}}', 'yes'), (838, 'theme_mods_twentythirteen', 'a:4:{i:0;b:0;s:12:"header_image";s:120:"http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-cropped-cropped-bioSpear.big_.61.png";s:17:"header_image_data";O:8:"stdClass":5:{s:13:"attachment_id";i:112;s:3:"url";s:120:"http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-cropped-cropped-bioSpear.big_.61.png";s:13:"thumbnail_url";s:120:"http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-cropped-cropped-bioSpear.big_.61.png";s:6:"height";i:230;s:5:"width";i:1600;}s:16:"header_textcolor";s:6:"e5de59";}', 'yes'), (853, 'category_children', 'a:2:{i:1;a:1:{i:0;i:3;}i:4;a:1:{i:0;i:5;}}', 'yes'), (887, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1421206906', 'yes'), (888, '_site_transient_poptags_40cd750bba9870f18aada2478b24840a', 'a:40:{s:6:"widget";a:3:{s:4:"name";s:6:"widget";s:4:"slug";s:6:"widget";s:5:"count";s:4:"4851";}s:4:"post";a:3:{s:4:"name";s:4:"Post";s:4:"slug";s:4:"post";s:5:"count";s:4:"3015";}s:6:"plugin";a:3:{s:4:"name";s:6:"plugin";s:4:"slug";s:6:"plugin";s:5:"count";s:4:"2967";}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";s:4:"2471";}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";s:4:"2299";}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";s:4:"1879";}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";s:4:"1692";}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";s:4:"1646";}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";s:4:"1639";}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";s:4:"1623";}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";s:4:"1584";}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";s:4:"1564";}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";s:4:"1469";}s:8:"facebook";a:3:{s:4:"name";s:8:"Facebook";s:4:"slug";s:8:"facebook";s:5:"count";s:4:"1290";}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";s:4:"1243";}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";s:4:"1158";}s:9:"wordpress";a:3:{s:4:"name";s:9:"wordpress";s:4:"slug";s:9:"wordpress";s:5:"count";s:4:"1134";}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";s:4:"1065";}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";s:4:"1051";}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";s:3:"888";}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";s:3:"883";}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";s:3:"864";}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";s:3:"826";}s:6:"jquery";a:3:{s:4:"name";s:6:"jquery";s:4:"slug";s:6:"jquery";s:5:"count";s:3:"823";}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";s:3:"772";}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";s:3:"741";}s:4:"ajax";a:3:{s:4:"name";s:4:"AJAX";s:4:"slug";s:4:"ajax";s:5:"count";s:3:"740";}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";s:3:"694";}s:10:"javascript";a:3:{s:4:"name";s:10:"javascript";s:4:"slug";s:10:"javascript";s:5:"count";s:3:"682";}s:11:"woocommerce";a:3:{s:4:"name";s:11:"woocommerce";s:4:"slug";s:11:"woocommerce";s:5:"count";s:3:"662";}s:5:"login";a:3:{s:4:"name";s:5:"login";s:4:"slug";s:5:"login";s:5:"count";s:3:"655";}s:5:"photo";a:3:{s:4:"name";s:5:"photo";s:4:"slug";s:5:"photo";s:5:"count";s:3:"645";}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";s:3:"640";}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";s:3:"630";}s:4:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";s:3:"630";}s:6:"photos";a:3:{s:4:"name";s:6:"photos";s:4:"slug";s:6:"photos";s:5:"count";s:3:"616";}s:9:"ecommerce";a:3:{s:4:"name";s:9:"ecommerce";s:4:"slug";s:9:"ecommerce";s:5:"count";s:3:"608";}s:7:"youtube";a:3:{s:4:"name";s:7:"youtube";s:4:"slug";s:7:"youtube";s:5:"count";s:3:"590";}s:5:"share";a:3:{s:4:"name";s:5:"Share";s:4:"slug";s:5:"share";s:5:"count";s:3:"583";}s:8:"category";a:3:{s:4:"name";s:8:"category";s:4:"slug";s:8:"category";s:5:"count";s:3:"577";}}', 'yes'), (890, 'tribe_events_calendar_options', 'a:7:{s:27:"recurring_events_are_hidden";s:6:"hidden";s:19:"tribeEventsTemplate";s:0:"";s:21:"tribeEventsBeforeHTML";s:0:"";s:20:"tribeEventsAfterHTML";s:0:"";s:21:"previous_ecp_versions";a:1:{i:0;s:1:"0";}s:18:"latest_ecp_version";s:3:"3.9";s:19:"last-update-message";s:3:"3.9";}', 'yes'), (891, 'tribe_events_db_version', '3.0.0', 'yes'), (893, 'tribe_events_suite_versions', 'a:1:{s:19:"TribeEventsCalendar";s:3:"3.9";}', 'yes'), (894, '_transient_timeout_tribe-app-shop-products', '1421196691', 'no'); INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (895, '_transient_tribe-app-shop-products', 'O:8:"stdClass":4:{s:5:"error";b:0;s:5:"count";i:9;s:6:"banner";O:8:"stdClass":2:{s:14:"top_banner_url";s:73:"https://theeventscalendar.com/content/uploads/2014/12/banner_ecp_shop.jpg";s:15:"top_banner_link";s:94:"https://theeventscalendar.com/?utm_campaign=in-app&utm_source=addonspage&utm_medium=top-banner";}s:4:"data";a:9:{i:0;O:8:"stdClass":7:{s:5:"title";s:18:"Eventbrite Tickets";s:9:"permalink";s:149:"https://theeventscalendar.com/product/wordpress-eventbrite-tickets/?utm_campaign=in-app&utm_source=addonspage&utm_medium=wordpress-eventbrite-tickets";s:18:"featured_image_url";s:75:"https://theeventscalendar.com/content/uploads/2013/06/addon-eventbriete.jpg";s:11:"description";s:349:"<p>The Eventbrite Tickets add-on allows you to create &amp; sell tickets through The Events Calendar using the power of Eventbrite. Whether you&#8217;re creating your ticket on the WordPress dashboard or importing the details of an already-existing event from Eventbrite.com, this add-on brings the power of the Eventbrite API to your calendar.</p>\n";s:8:"category";s:7:"Premium";s:11:"last_update";N;s:7:"version";N;}i:1;O:8:"stdClass":7:{s:5:"title";s:19:"Events Calendar Pro";s:9:"permalink";s:151:"https://theeventscalendar.com/product/wordpress-events-calendar-pro/?utm_campaign=in-app&utm_source=addonspage&utm_medium=wordpress-events-calendar-pro";s:18:"featured_image_url";s:67:"https://theeventscalendar.com/content/uploads/2013/06/addon-pro.jpg";s:11:"description";s:372:"<p>The Events Calendar PRO is a paid Add-On to our open source WordPress plugin <a href="https://theeventscalendar.com/product/wordpress-events-calendar/">The Events Calendar</a>. PRO offers a whole host of event management features including recurring events, custom event attributes, saved venues &amp; organizers, venue pages, advanced event admin &amp; lots more.</p>\n";s:8:"category";s:7:"Premium";s:11:"last_update";N;s:7:"version";N;}i:2;O:8:"stdClass":7:{s:5:"title";s:16:"Community Events";s:9:"permalink";s:145:"https://theeventscalendar.com/product/wordpress-community-events/?utm_campaign=in-app&utm_source=addonspage&utm_medium=wordpress-community-events";s:18:"featured_image_url";s:72:"https://theeventscalendar.com/content/uploads/2013/06/addon-communty.jpg";s:11:"description";s:384:"<p>Enable users to submit events to your calendar with Community Events. You can require user accounts or allow visitors to submit without an account. Want to make sure that nothing fishy is going on? Just turn on moderation. Decide if users can edit and manage their own events, or simply submit. Plus, no scary form setup! Just activate, configure the options &amp; off you go.</p>\n";s:8:"category";s:7:"Premium";s:11:"last_update";N;s:7:"version";N;}i:3;O:8:"stdClass":7:{s:5:"title";s:15:"Facebook Events";s:9:"permalink";s:123:"https://theeventscalendar.com/product/facebook-events/?utm_campaign=in-app&utm_source=addonspage&utm_medium=facebook-events";s:18:"featured_image_url";s:72:"https://theeventscalendar.com/content/uploads/2013/06/addon-facebook.jpg";s:11:"description";s:366:"<p>With the Facebook Events add-on, imported events are manually or automagically created as entries in The Events Calendar. Basic event data along with venue &amp; organizer are populated appropriately. No more entering information in two places, or having to recreate someone else’s listing for a public event you want to include on your WordPress calendar.</p>\n";s:8:"category";s:7:"Premium";s:11:"last_update";N;s:7:"version";N;}i:4;O:8:"stdClass":7:{s:5:"title";s:19:"WooCommerce Tickets";s:9:"permalink";s:133:"https://theeventscalendar.com/product/wordpress-wootickets/?utm_campaign=in-app&utm_source=addonspage&utm_medium=wordpress-wootickets";s:18:"featured_image_url";s:67:"https://theeventscalendar.com/content/uploads/2013/06/addon-woo.jpg";s:11:"description";s:472:"<p>With the WooCommerce Tickets add-on for The Events Calendar/Events Calendar PRO, taking control of ticket sales for an upcoming event has never been easier. No third-party websites, no ticket fees…just you, your attendees and one kick ass event. By harnessing the capabilities of the powerful WooCommerce commerce plugin, WooCommerce Tickets allows you to add as many tickets as you wish to a given event, and then sell those tickets entirely within your site.</p>\n";s:8:"category";s:7:"Premium";s:11:"last_update";N;s:7:"version";N;}i:5;O:8:"stdClass":7:{s:5:"title";s:13:"Shopp Tickets";s:9:"permalink";s:139:"https://theeventscalendar.com/product/wordpress-shopp-tickets/?utm_campaign=in-app&utm_source=addonspage&utm_medium=wordpress-shopp-tickets";s:18:"featured_image_url";s:75:"https://theeventscalendar.com/content/uploads/2014/01/shopp_banner_crop.jpg";s:11:"description";s:496:"<p>Shopp Tickets harnesses the power of Shopp and allows you to add as many tickets as you wish to a given event, and then sell those tickets entirely within your site. Barry from the Shopp team coded this one for us and it&#8217;s loaded with features: ticket-specific header images, pricing, stock, SKU and specified ticket sale timeframe. Discounts can be applied, attendee lists can be viewed online or exported to meet your needs, and check-ins at the door are available out of the box.</p>\n";s:8:"category";s:7:"Premium";s:11:"last_update";N;s:7:"version";N;}i:6;O:8:"stdClass":7:{s:5:"title";s:21:"WP e-Commerce Tickets";s:9:"permalink";s:135:"https://theeventscalendar.com/product/wordpress-wpectickets/?utm_campaign=in-app&utm_source=addonspage&utm_medium=wordpress-wpectickets";s:18:"featured_image_url";s:68:"https://theeventscalendar.com/content/uploads/2014/01/wpec2-Crop.jpg";s:11:"description";s:446:"<p>WPEC Tickets taps into WP e-Commerce and allows you to add as many tickets as you wish to a given event, and then sell those tickets entirely within your site. Each ticket can have it’s own price, stock, SKU and specified timeframe for when ticket sales open/close. Aiming to give discounts to those who buy earlier than a week before the event? Dreaming of checking people in at the door from your laptop? WPEC Tickets has you covered.</p>\n";s:8:"category";s:7:"Premium";s:11:"last_update";N;s:7:"version";N;}i:7;O:8:"stdClass":7:{s:5:"title";s:10:"Filter Bar";s:9:"permalink";s:145:"https://theeventscalendar.com/product/wordpress-events-filterbar/?utm_campaign=in-app&utm_source=addonspage&utm_medium=wordpress-events-filterbar";s:18:"featured_image_url";s:94:"https://theeventscalendar.com/content/uploads/2014/03/Screen-Shot-2014-03-27-at-1.05.33-PM.png";s:11:"description";s:421:"<p>It is awesome that your calendar is <em>THE PLACE</em> to get hooked up with prime choice ways to spend time. You have more events than Jabba the Hutt has rolls. Too bad visitors are hiring a personal assistant to go through all the choices. Ever wish you could just filter the calendar to only show events in walking distance, on a weekend, that are free? BOOM. Now you can. Introducing&#8230;the Filter Bar.</p>\n";s:8:"category";s:7:"Premium";s:11:"last_update";N;s:7:"version";N;}i:8;O:8:"stdClass":7:{s:5:"title";s:30:"Easy Digital Downloads Tickets";s:9:"permalink";s:133:"https://theeventscalendar.com/product/wordpress-eddtickets/?utm_campaign=in-app&utm_source=addonspage&utm_medium=wordpress-eddtickets";s:18:"featured_image_url";s:69:"https://theeventscalendar.com/content/uploads/2013/12/edd_tickets.jpg";s:11:"description";s:441:"<p>If you&#8217;re looking too add ticket sales directly to your website without all the crazy hoopla that comes with massive e-commerce solutions, check out our EDD Tickets add-on for The Events Calendar/Events Calendar PRO. <NAME> of Easy Digital Downloads joined our team specifically to help build this plugin, which taps into EDD to allow ticket sales, accompanying attendee reports and more directly from your calendar.</p>\n";s:8:"category";s:7:"Premium";s:11:"last_update";N;s:7:"version";N;}}}', 'no'), (896, '_site_transient_update_plugins', 'O:8:"stdClass":5:{s:12:"last_checked";i:1421337141;s:7:"checked";a:5:{s:19:"akismet/akismet.php";s:5:"3.0.4";s:9:"hello.php";s:3:"1.6";s:34:"spider-event-calendar/calendar.php";s:6:"1.4.11";s:17:"player/Player.php";s:5:"1.5.4";s:43:"the-events-calendar/the-events-calendar.php";s:3:"3.9";}s:8:"response";a:1:{s:17:"player/Player.php";O:8:"stdClass":6:{s:2:"id";s:5:"34011";s:4:"slug";s:6:"player";s:6:"plugin";s:17:"player/Player.php";s:11:"new_version";s:5:"1.5.5";s:3:"url";s:37:"https://wordpress.org/plugins/player/";s:7:"package";s:55:"https://downloads.wordpress.org/plugin/player.1.5.5.zip";}}s:12:"translations";a:0:{}s:9:"no_update";a:4:{s:19:"akismet/akismet.php";O:8:"stdClass":6:{s:2:"id";s:2:"15";s:4:"slug";s:7:"akismet";s:6:"plugin";s:19:"akismet/akismet.php";s:11:"new_version";s:5:"3.0.4";s:3:"url";s:38:"https://wordpress.org/plugins/akismet/";s:7:"package";s:56:"https://downloads.wordpress.org/plugin/akismet.3.0.4.zip";}s:9:"hello.php";O:8:"stdClass":6:{s:2:"id";s:4:"3564";s:4:"slug";s:11:"hello-dolly";s:6:"plugin";s:9:"hello.php";s:11:"new_version";s:3:"1.6";s:3:"url";s:42:"https://wordpress.org/plugins/hello-dolly/";s:7:"package";s:58:"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip";}s:34:"spider-event-calendar/calendar.php";O:8:"stdClass":6:{s:2:"id";s:5:"37603";s:4:"slug";s:21:"spider-event-calendar";s:6:"plugin";s:34:"spider-event-calendar/calendar.php";s:11:"new_version";s:6:"1.4.11";s:3:"url";s:52:"https://wordpress.org/plugins/spider-event-calendar/";s:7:"package";s:71:"https://downloads.wordpress.org/plugin/spider-event-calendar.1.4.11.zip";}s:43:"the-events-calendar/the-events-calendar.php";O:8:"stdClass":6:{s:2:"id";s:5:"11861";s:4:"slug";s:19:"the-events-calendar";s:6:"plugin";s:43:"the-events-calendar/the-events-calendar.php";s:11:"new_version";s:3:"3.9";s:3:"url";s:50:"https://wordpress.org/plugins/the-events-calendar/";s:7:"package";s:66:"https://downloads.wordpress.org/plugin/the-events-calendar.3.9.zip";}}}', 'yes'), (971, '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1421381157', 'no'); INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (972, '_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:2:{s:29:"http://www.w3.org/2000/xmlns/";a:6:{s:7:"content";s:40:"http://purl.org/rss/1.0/modules/content/";s:3:"wfw";s:36:"http://wellformedweb.org/CommentAPI/";s:2:"dc";s:32:"http://purl.org/dc/elements/1.1/";s:4:"atom";s:27:"http://www.w3.org/2005/Atom";s:2:"sy";s:44:"http://purl.org/rss/1.0/modules/syndication/";s:5:"slash";s:38:"http://purl.org/rss/1.0/modules/slash/";}s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:26:"https://wordpress.org/news";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:13:"lastBuildDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 18 Dec 2014 18:57:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:39:"http://wordpress.org/?v=4.2-alpha-31178";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:10:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:25:"WordPress 4.1 “Dinah”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"https://wordpress.org/news/2014/12/dinah/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:50:"https://wordpress.org/news/2014/12/dinah/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 18 Dec 2014 18:35:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3386";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:360:"Version 4.1 of WordPress, named &#8220;Dinah&#8221; in honor of jazz singer <NAME>, is available for download or update in your WordPress dashboard. New features in WordPress 4.1 help you focus on your writing, and the new default theme lets you show it off in style. Introducing Twenty Fifteen Our newest default theme, Twenty Fifteen, is [&#8230;]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:24551:"<p>Version 4.1 of WordPress, named &#8220;Dinah&#8221; in honor of jazz singer <a href="http://wikipedia.org/wiki/Dinah_Washington">Dinah Washington</a>, is available for download or update in your WordPress dashboard. New features in WordPress 4.1 help you focus on your writing, and the new default theme lets you show it off in style.</p>\n<hr />\n<h2 style="text-align: center">Introducing Twenty Fifteen</h2>\n<p><img class="aligncenter size-large wp-image-3389" src="https://wordpress.org/news/files/2014/12/2015-laptop-1024x533.png" alt="2015-laptop" width="692" height="360" /></p>\n<h3>Our newest default theme, Twenty Fifteen, is a blog-focused theme designed for clarity.</h3>\n<p><img class="alignright wp-image-3426 size-medium" src="https://wordpress.org/news/files/2014/12/2015-phones-languages-small-300x250.png" alt="" width="300" height="250" />Twenty Fifteen has flawless language support, with help from <a href="https://www.google.com/get/noto/">Google’s Noto font family</a>.</p>\n<p>The straightforward typography is readable on any screen size.</p>\n<p>Your content always takes center stage, whether viewed on a phone, tablet, laptop, or desktop computer.</p>\n<hr />\n<h2 style="text-align: center">Distraction-free writing</h2>\n<p><img class="aligncenter size-large wp-image-3392" src="https://wordpress.org/news/files/2014/12/dfw-screen-1024x614.png" alt="dfw-screen" width="692" height="415" /></p>\n<h3 style="text-align: center"><em>Just write.</em></h3>\n<p>Sometimes, you just need to concentrate on putting your thoughts into words. Try turning on <strong>distraction-free writing mode</strong>. When you start typing, all the distractions will fade away, letting you focus solely on your writing. All your editing tools instantly return when you need them.</p>\n<hr />\n<h2 style="text-align: center">The Finer Points</h2>\n<h5><strong><img class="alignleft wp-image-3405" src="https://wordpress.org/news/files/2014/12/icon-language2.png" alt="" width="80" height="80" /></strong>Choose a language</h5>\n<p>Right now, WordPress 4.1 is already translated into over forty languages, with more always in progress. You can switch to any translation on the General Settings screen.</p>\n<h5><strong><img class="alignleft wp-image-3406" src="https://wordpress.org/news/files/2014/12/icon-logout1.png" alt="" width="80" height="80" /></strong>Log out everywhere</h5>\n<p>If you’ve ever worried you forgot to sign out from a shared computer, you can now go to your profile and log out everywhere.</p>\n<h5><strong><img class="alignleft wp-image-3407" src="https://wordpress.org/news/files/2014/12/icon-vine1.png" alt="" width="80" height="80" /></strong>Vine embeds</h5>\n<p>Embedding videos from Vine is as simple as pasting a URL onto its own line in a post. See the <a href="https://codex.wordpress.org/Embeds">full list</a> of supported embeds.</p>\n<h5><strong><img class="alignleft wp-image-3408" src="https://wordpress.org/news/files/2014/12/icon-recommended1.png" alt="" width="80" height="80" /></strong>Plugin recommendations</h5>\n<p>The plugin installer suggests plugins for you to try. Recommendations are based on the plugins you and other users have installed.</p>\n<hr />\n<h2 style="text-align: center">Under the Hood</h2>\n<h5>Complex Queries</h5>\n<p>Metadata, date, and term queries now support advanced conditional logic, like nested clauses and multiple operators — <code>A AND ( B OR C )</code>.</p>\n<h5>Customizer API</h5>\n<p>The customizer now supports conditionally showing panels and sections based on the page being previewed.</p>\n<h5><code>&lt;title&gt;</code> tags in themes</h5>\n<p><code>add_theme_support( ''title-tag'' )</code> tells WordPress to handle the complexities of document titles.</p>\n<h5>Developer Reference</h5>\n<p>Continued improvements to inline code documentation have made the <a href="https://developer.wordpress.org/reference/">developer reference</a> more complete than ever.</p>\n<hr />\n<h2 style="text-align: center">The Choir</h2>\n<p>This release was led by <a href="https://profiles.wordpress.org/johnbillion"><NAME></a>, with the help of these awesome folks. Check out some of their profiles while listening to Dinah Washington on the music service of your choice:</p>\n<a href="https://profiles.wordpress.org/aaroncampbell"><NAME></a>, <a href="https://profiles.wordpress.org/jorbin"><NAME></a>, <a href="https://profiles.wordpress.org/adamsilverstein"><NAME></a>, <a href="https://profiles.wordpress.org/akumria">akumria</a>, <a href="https://profiles.wordpress.org/xknown"><NAME></a>, <a href="https://profiles.wordpress.org/viper007bond"><NAME> (Viper007Bond)</a>, <a href="https://profiles.wordpress.org/tellyworth"><NAME></a>, <a href="https://profiles.wordpress.org/collinsinternet"><NAME></a>, <a href="https://profiles.wordpress.org/momo360modena"><NAME></a>, <a href="https://profiles.wordpress.org/amruta123b"><NAME>ale</a>, <a href="https://profiles.wordpress.org/afercia"><NAME></a>, <a href="https://profiles.wordpress.org/andg"><NAME></a>, <a href="https://profiles.wordpress.org/sumobi"><NAME> (sumobi)</a>, <a href="https://profiles.wordpress.org/nacin"><NAME></a>, <a href="https://profiles.wordpress.org/azaozz"><NAME>zz</a>, <a href="https://profiles.wordpress.org/andrewryno"><NAME></a>, <a href="https://profiles.wordpress.org/rarst"><NAME></a>, <a href="https://profiles.wordpress.org/ankitgadertcampcom"><NAME></a>, <a href="https://profiles.wordpress.org/ankit-k-gupta"><NAME></a>, <a href="https://profiles.wordpress.org/antpb">antpb</a>, <a href="https://profiles.wordpress.org/arippberger">arippberger</a>, <a href="https://profiles.wordpress.org/filosofo"><NAME></a>, <a href="https://profiles.wordpress.org/bainternet">Bainternet</a>, <a href="https://profiles.wordpress.org/barrykooij"><NAME></a>, <a href="https://profiles.wordpress.org/empireoflight"><NAME></a>, <a href="https://profiles.wordpress.org/benjmay"><NAME></a>, <a href="https://profiles.wordpress.org/neoxx"><NAME></a>, <a href="https://profiles.wordpress.org/birgire"><NAME> (birgire)</a>, <a href="https://profiles.wordpress.org/bobbingwide">bobbingwide</a>, <a href="https://profiles.wordpress.org/boonebgorges"><NAME></a>, <a href="https://profiles.wordpress.org/bradyvercher"><NAME></a>, <a href="https://profiles.wordpress.org/bramd"><NAME></a>, <a href="https://profiles.wordpress.org/kraftbj"><NAME></a>, <a href="https://profiles.wordpress.org/briandichiara"><NAME>ara</a>, <a href="https://profiles.wordpress.org/rzen"><NAME></a>, <a href="https://profiles.wordpress.org/bswatson"><NAME></a>, <a href="https://profiles.wordpress.org/camdensegal"><NAME></a>, <a href="https://profiles.wordpress.org/captaintheme">Captain Theme</a>, <a href="https://profiles.wordpress.org/hiwhatsup">Carlos</a>, <a href="https://profiles.wordpress.org/caspie">Caspie</a>, <a href="https://profiles.wordpress.org/ccprice">ccprice</a>, <a href="https://profiles.wordpress.org/mackensen"><NAME></a>, <a href="https://profiles.wordpress.org/chrico">ChriCo</a>, <a href="https://profiles.wordpress.org/aprea"><NAME></a>, <a href="https://profiles.wordpress.org/chrisbliss18"><NAME></a>, <a href="https://profiles.wordpress.org/cmmarslender"><NAME></a>, <a href="https://profiles.wordpress.org/jazzs3quence"><NAME></a>, <a href="https://profiles.wordpress.org/chriscct7">chriscct7</a>, <a href="https://profiles.wordpress.org/chrisl27">chrisl27</a>, <a href="https://profiles.wordpress.org/cfoellmann"><NAME></a>, <a href="https://profiles.wordpress.org/cfinke"><NAME></a>, <a href="https://profiles.wordpress.org/cyclometh"><NAME></a>, <a href="https://profiles.wordpress.org/corphi">Corphi</a>, <a href="https://profiles.wordpress.org/curtjen">curtjen</a>, <a href="https://profiles.wordpress.org/colorful-tones">Damon Cook</a>, <a href="https://profiles.wordpress.org/dancameron"><NAME></a>, <a href="https://profiles.wordpress.org/danielbachhuber"><NAME></a>, <a href="https://profiles.wordpress.org/convissor"><NAME></a>, <a href="https://profiles.wordpress.org/nerrad"><NAME> (nerrad)</a>, <a href="https://profiles.wordpress.org/koop"><NAME></a>, <a href="https://profiles.wordpress.org/dmchale"><NAME></a>, <a href="https://profiles.wordpress.org/davidakennedy"><NAME></a>, <a href="https://profiles.wordpress.org/dlh"><NAME></a>, <a href="https://profiles.wordpress.org/davidjlaietta"><NAME></a>, <a href="https://profiles.wordpress.org/technical_mastermind"><NAME></a>, <a href="https://profiles.wordpress.org/davidthemachine">DavidTheMachine</a>, <a href="https://profiles.wordpress.org/dcavins">dcavins</a>, <a href="https://profiles.wordpress.org/realloc"><NAME></a>, <a href="https://profiles.wordpress.org/dd32"><NAME></a>, <a href="https://profiles.wordpress.org/wedi"><NAME></a>, <a href="https://profiles.wordpress.org/ocean90"><NAME></a>, <a href="https://profiles.wordpress.org/dominikschwind-1"><NAME></a>, <a href="https://profiles.wordpress.org/drewapicture"><NAME></a>, <a href="https://profiles.wordpress.org/dustyf"><NAME></a>, <a href="https://profiles.wordpress.org/dustinhartzler"><NAME></a>, <a href="https://profiles.wordpress.org/eliorivero"><NAME>ivero</a>, <a href="https://profiles.wordpress.org/ebinnion"><NAME>ion</a>, <a href="https://profiles.wordpress.org/ew_holmes"><NAME></a>, <a href="https://profiles.wordpress.org/ericlewis"><NAME></a>, <a href="https://profiles.wordpress.org/fab1en"><NAME></a>, <a href="https://profiles.wordpress.org/florianziegler">florianziegler</a>, <a href="https://profiles.wordpress.org/hereswhatidid"><NAME>le</a>, <a href="https://profiles.wordpress.org/garyc40"><NAME></a>, <a href="https://profiles.wordpress.org/pento"><NAME></a>, <a href="https://profiles.wordpress.org/soulseekah"><NAME></a>, <a href="https://profiles.wordpress.org/babbardel"><NAME></a>, <a href="https://profiles.wordpress.org/georgestephanis"><NAME></a>, <a href="https://profiles.wordpress.org/gregrickaby"><NAME></a>, <a href="https://profiles.wordpress.org/gcorne"><NAME></a>, <a href="https://profiles.wordpress.org/tivnet"><NAME> (@tivnet)</a>, <a href="https://profiles.wordpress.org/bordoni"><NAME></a>, <a href="https://profiles.wordpress.org/hardy101">hardy101</a>, <a href="https://profiles.wordpress.org/hauvong">hauvong</a>, <a href="https://profiles.wordpress.org/helen"><NAME></a>, <a href="https://profiles.wordpress.org/heshiming">heshiming</a>, <a href="https://profiles.wordpress.org/honeysilvas">honeysilvas</a>, <a href="https://profiles.wordpress.org/hugodelgado">hugodelgado</a>, <a href="https://profiles.wordpress.org/iandstewart">Ian Stewart</a>, <a href="https://profiles.wordpress.org/ianmjones">ianmjones</a>, <a href="https://profiles.wordpress.org/igmoweb"><NAME></a>, <a href="https://profiles.wordpress.org/imath">imath</a>, <a href="https://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>, <a href="https://profiles.wordpress.org/ivankristianto"><NAME></a>, <a href="https://profiles.wordpress.org/jdgrimes"><NAME></a>, <a href="https://profiles.wordpress.org/jaimieolmstead">jaimieolmstead</a>, <a href="https://profiles.wordpress.org/jakubtyrcha">jakub.tyrcha</a>, <a href="https://profiles.wordpress.org/janhenckens">janhenckens</a>, <a href="https://profiles.wordpress.org/avryl"><NAME></a>, <a href="https://profiles.wordpress.org/japh">Japh</a>, <a href="https://profiles.wordpress.org/jwenerd"><NAME></a>, <a href="https://profiles.wordpress.org/jarednova">jarednova</a>, <a href="https://profiles.wordpress.org/jeanyoungkim">jeanyoungkim</a>, <a href="https://profiles.wordpress.org/jfarthing84"><NAME></a>, <a href="https://profiles.wordpress.org/jeffstieler"><NAME></a>, <a href="https://profiles.wordpress.org/jeremyfelt"><NAME></a>, <a href="https://profiles.wordpress.org/jeherve"><NAME></a>, <a href="https://profiles.wordpress.org/jesin"><NAME></a>, <a href="https://profiles.wordpress.org/jayjdk"><NAME> (jayjdk)</a>, <a href="https://profiles.wordpress.org/engelen"><NAME></a>, <a href="https://profiles.wordpress.org/jessepollak"><NAME></a>, <a href="https://profiles.wordpress.org/jipmoors">jipmoors</a>, <a href="https://profiles.wordpress.org/joedolson"><NAME></a>, <a href="https://profiles.wordpress.org/joemcgill">Joe McGill</a>, <a href="https://profiles.wordpress.org/johneckman"><NAME></a>, <a href="https://profiles.wordpress.org/johnrom">johnrom</a>, <a href="https://profiles.wordpress.org/johnstonphilip">johnstonphilip</a>, <a href="https://profiles.wordpress.org/jb510"><NAME></a>, <a href="https://profiles.wordpress.org/duck_"><NAME></a>, <a href="https://profiles.wordpress.org/jbrinley"><NAME></a>, <a href="https://profiles.wordpress.org/desrosj"><NAME></a>, <a href="https://profiles.wordpress.org/joostdevalk"><NAME></a>, <a href="https://profiles.wordpress.org/softmodeling"><NAME></a>, <a href="https://profiles.wordpress.org/joshuaabenazer"><NAME></a>, <a href="https://profiles.wordpress.org/tai">JOTAKI Taisuke</a>, <a href="https://profiles.wordpress.org/jrf">jrf</a>, <a href="https://profiles.wordpress.org/julien731"><NAME></a>, <a href="https://profiles.wordpress.org/justinsainton"><NAME></a>, <a href="https://profiles.wordpress.org/jtsternberg"><NAME>berg</a>, <a href="https://profiles.wordpress.org/kadamwhite">K.<NAME></a>, <a href="https://profiles.wordpress.org/trepmal">Kailey (trepmal)</a>, <a href="https://profiles.wordpress.org/kamelkev">kamelkev</a>, <a href="https://profiles.wordpress.org/karpstrucking">karpstrucking</a>, <a href="https://profiles.wordpress.org/keesiemeijer">keesiemeijer</a>, <a href="https://profiles.wordpress.org/ryelle"><NAME></a>, <a href="https://profiles.wordpress.org/kevinlangleyjr"><NAME></a>, <a href="https://profiles.wordpress.org/kdoran"><NAME></a>, <a href="https://profiles.wordpress.org/kpdesign">Kim Parsell</a>, <a href="https://profiles.wordpress.org/kwight"><NAME></a>, <a href="https://profiles.wordpress.org/kitchin">kitchin</a>, <a href="https://profiles.wordpress.org/ixkaito">Kite</a>, <a href="https://profiles.wordpress.org/knutsp">Knut Sparhell</a>, <a href="https://profiles.wordpress.org/kovshenin"><NAME></a>, <a href="https://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="https://profiles.wordpress.org/kosvrouvas"><NAME></a>, <a href="https://profiles.wordpress.org/kraftner">kraftner</a>, <a href="https://profiles.wordpress.org/kristastevens">kristastevens</a>, <a href="https://profiles.wordpress.org/kurtpayne"><NAME></a>, <a href="https://profiles.wordpress.org/lancewillett"><NAME>lett</a>, <a href="https://profiles.wordpress.org/offereins">Laurens Offereins</a>, <a href="https://profiles.wordpress.org/linuxologos">linuxologos</a>, <a href="https://profiles.wordpress.org/ideag"><NAME></a>, <a href="https://profiles.wordpress.org/loushou">loushou</a>, <a href="https://profiles.wordpress.org/latz"><NAME>roer</a>, <a href="https://profiles.wordpress.org/manoz69">Manoz69</a>, <a href="https://profiles.wordpress.org/mantismamita">mantismamita</a>, <a href="https://profiles.wordpress.org/marcosf"><NAME></a>, <a href="https://profiles.wordpress.org/nofearinc"><NAME></a>, <a href="https://profiles.wordpress.org/clorith">Marius (Clorith)</a>, <a href="https://profiles.wordpress.org/landakram"><NAME></a>, <a href="https://profiles.wordpress.org/markjaquith"><NAME></a>, <a href="https://profiles.wordpress.org/senff"><NAME></a>, <a href="https://profiles.wordpress.org/markoheijnen"><NAME></a>, <a href="https://profiles.wordpress.org/marsjaninzmarsa">marsjaninzmarsa</a>, <a href="https://profiles.wordpress.org/matveb"><NAME></a>, <a href="https://profiles.wordpress.org/matt"><NAME></a>, <a href="https://profiles.wordpress.org/mattwiebe"><NAME></a>, <a href="https://profiles.wordpress.org/mboynes"><NAME></a>, <a href="https://profiles.wordpress.org/mattheu"><NAME>-Young</a>, <a href="https://profiles.wordpress.org/mattkeys">mattkeys</a>, <a href="https://profiles.wordpress.org/mlteal">Maura Teal</a>, <a href="https://profiles.wordpress.org/melchoyce">Mel Choyce</a>, <a href="https://profiles.wordpress.org/merty"><NAME></a>, <a href="https://profiles.wordpress.org/mdawaffe"><NAME> (mdawaffe)</a>, <a href="https://profiles.wordpress.org/michael-arestad"><NAME></a>, <a href="https://profiles.wordpress.org/tw2113"><NAME></a>, <a href="https://profiles.wordpress.org/cainm"><NAME></a>, <a href="https://profiles.wordpress.org/smashcut"><NAME></a>, <a href="https://profiles.wordpress.org/michalzuber">michalzuber</a>, <a href="https://profiles.wordpress.org/chellycat"><NAME></a>, <a href="https://profiles.wordpress.org/mcsf"><NAME></a>, <a href="https://profiles.wordpress.org/mikehansenme"><NAME></a>, <a href="https://profiles.wordpress.org/mikejolley"><NAME></a>, <a href="https://profiles.wordpress.org/mnelson4"><NAME></a>, <a href="https://profiles.wordpress.org/dh-shredder"><NAME></a>, <a href="https://profiles.wordpress.org/mikeyarce"><NAME></a>, <a href="https://profiles.wordpress.org/studionashvegas"><NAME> (studionashvegas)</a>, <a href="https://profiles.wordpress.org/morganestes">Morgan Estes</a>, <a href="https://profiles.wordpress.org/mor10"><NAME>-Hendriksen</a>, <a href="https://profiles.wordpress.org/mvd7793">mvd7793</a>, <a href="https://profiles.wordpress.org/alex-ye">Nashwan Doaqan</a>, <a href="https://profiles.wordpress.org/niallkennedy">Niall Kennedy</a>, <a href="https://profiles.wordpress.org/celloexpressions"><NAME></a>, <a href="https://profiles.wordpress.org/nikv"><NAME> (NikV)</a>, <a href="https://profiles.wordpress.org/nikolovtmw"><NAME></a>, <a href="https://profiles.wordpress.org/nobleclem">nobleclem</a>, <a href="https://profiles.wordpress.org/noplanman">noplanman</a>, <a href="https://profiles.wordpress.org/nvwd">Nowell VanHoesen</a>, <a href="https://profiles.wordpress.org/originalexe">OriginalEXE</a>, <a href="https://profiles.wordpress.org/p_enrique">p_enrique</a>, <a href="https://profiles.wordpress.org/pushplaybang">Paul</a>, <a href="https://profiles.wordpress.org/pauldewouters"><NAME></a>, <a href="https://profiles.wordpress.org/paulschreiber"><NAME></a>, <a href="https://profiles.wordpress.org/paulwilde"><NAME></a>, <a href="https://profiles.wordpress.org/pavelevap">pavelevap</a>, <a href="https://profiles.wordpress.org/peterchester"><NAME></a>, <a href="https://profiles.wordpress.org/donutz"><NAME></a>, <a href="https://profiles.wordpress.org/westi"><NAME>wood</a>, <a href="https://profiles.wordpress.org/peterwilsoncc"><NAME></a>, <a href="https://profiles.wordpress.org/philiparthurmoore"><NAME></a>, <a href="https://profiles.wordpress.org/phpmypython">phpmypython</a>, <a href="https://profiles.wordpress.org/mordauk"><NAME></a>, <a href="https://profiles.wordpress.org/nprasath002"><NAME></a>, <a href="https://profiles.wordpress.org/psycleuk">psycleuk</a>, <a href="https://profiles.wordpress.org/ptahdunbar">Ptah Dunbar</a>, <a href="https://profiles.wordpress.org/quietnic">quietnic</a>, <a href="https://profiles.wordpress.org/rachelbaker"><NAME></a>, <a href="https://profiles.wordpress.org/ramiy"><NAME></a>, <a href="https://profiles.wordpress.org/ramiabraham">ramiabraham</a>, <a href="https://profiles.wordpress.org/greuben">Reuben Gunday</a>, <a href="https://profiles.wordpress.org/rianrietveld"><NAME></a>, <a href="https://profiles.wordpress.org/richardmtl"><NAME></a>, <a href="https://profiles.wordpress.org/rickalee"><NAME></a>, <a href="https://profiles.wordpress.org/miqrogroove"><NAME></a>, <a href="https://profiles.wordpress.org/rodrigosprimo"><NAME></a>, <a href="https://profiles.wordpress.org/ryan"><NAME></a>, <a href="https://profiles.wordpress.org/ryankienstra"><NAME></a>, <a href="https://profiles.wordpress.org/rmccue"><NAME></a>, <a href="https://profiles.wordpress.org/sakinshrestha"><NAME></a>, <a href="https://profiles.wordpress.org/samhotchkiss"><NAME></a>, <a href="https://profiles.wordpress.org/otto42"><NAME> (Otto)</a>, <a href="https://profiles.wordpress.org/sc0ttkclark"><NAME></a>, <a href="https://profiles.wordpress.org/coffee2code"><NAME>illy</a>, <a href="https://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>, <a href="https://profiles.wordpress.org/sergeybiryukov"><NAME></a>, <a href="https://profiles.wordpress.org/shooper"><NAME></a>, <a href="https://profiles.wordpress.org/simonp303"><NAME></a>, <a href="https://profiles.wordpress.org/simonwheatley"><NAME></a>, <a href="https://profiles.wordpress.org/skaeser">skaeser</a>, <a href="https://profiles.wordpress.org/slobodanmanic">Slobodan Manic</a>, <a href="https://profiles.wordpress.org/socki03">socki03</a>, <a href="https://profiles.wordpress.org/solarissmoke">solarissmoke</a>, <a href="https://profiles.wordpress.org/stephdau"><NAME></a>, <a href="https://profiles.wordpress.org/netweb"><NAME></a>, <a href="https://profiles.wordpress.org/stephenharris"><NAME></a>, <a href="https://profiles.wordpress.org/stevegrunwell"><NAME></a>, <a href="https://profiles.wordpress.org/5um17"><NAME></a>, <a href="https://profiles.wordpress.org/tacoverdo">TacoVerdo</a>, <a href="https://profiles.wordpress.org/iamtakashi"><NAME></a>, <a href="https://profiles.wordpress.org/miyauchi">Takayuki Miyauchi</a>, <a href="https://profiles.wordpress.org/karmatosed">Tammie</a>, <a href="https://profiles.wordpress.org/tareq1988">T<NAME></a>, <a href="https://profiles.wordpress.org/tlovett1"><NAME></a>, <a href="https://profiles.wordpress.org/ipm-frommen"><NAME></a>, <a href="https://profiles.wordpress.org/tillkruess"><NAME></a>, <a href="https://profiles.wordpress.org/tschutter"><NAME></a>, <a href="https://profiles.wordpress.org/tobiasbg">TobiasBg</a>, <a href="https://profiles.wordpress.org/tmtrademark"><NAME>Kes</a>, <a href="https://profiles.wordpress.org/tjnowell"><NAME></a>, <a href="https://profiles.wordpress.org/tomasm"><NAME></a>, <a href="https://profiles.wordpress.org/tomharrigan">TomHarrigan</a>, <a href="https://profiles.wordpress.org/topher1kenobe">Topher</a>, <a href="https://profiles.wordpress.org/zodiac1978"><NAME></a>, <a href="https://profiles.wordpress.org/liljimmi"><NAME></a>, <a href="https://profiles.wordpress.org/transom">transom</a>, <a href="https://profiles.wordpress.org/wpsmith"><NAME></a>, <a href="https://profiles.wordpress.org/tywayne"><NAME></a>, <a href="https://profiles.wordpress.org/desaiuditd"><NAME></a>, <a href="https://profiles.wordpress.org/umeshsingla"><NAME></a>, <a href="https://profiles.wordpress.org/vinod-dalvi"><NAME></a>, <a href="https://profiles.wordpress.org/vlajos">vlajos</a>, <a href="https://profiles.wordpress.org/voldemortensen">voldemortensen</a>, <a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>, <a href="https://profiles.wordpress.org/yoavf"><NAME></a>, <a href="https://profiles.wordpress.org/nobinobi">Yuta Sekine</a>, <a href="https://profiles.wordpress.org/zrothauser"><NAME></a>, and <a href="https://profiles.wordpress.org/tollmanz"><NAME></a>.\n<p>There were 283 contributors to this release, again a new high.</p>\n<p>If you want to help out or follow along, check out <a href="https://make.wordpress.org/">Make WordPress</a> and our <a href="https://make.wordpress.org/core/">core development blog</a>.</p>\n<p>Thanks for choosing WordPress. Happy holidays and see you next year for version 4.2!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:46:"https://wordpress.org/news/2014/12/dinah/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"WordPress 4.1 Release Candidate 3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:69:"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate-3/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:78:"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate-3/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 18 Dec 2014 02:22:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3411";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:429:"The next release candidate for WordPress 4.1 is now available for testing. Seventy changes have gone in since the first release candidate. With no known issues left, we plan to release 4.1 tomorrow, December 18. To test, try the WordPress Beta Tester plugin (you&#8217;ll want &#8220;bleeding edge nightlies&#8221;). Or you can download the release candidate here (zip). If you&#8217;d like to learn more about [&#8230;]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1465:"<p>The next release candidate for WordPress 4.1 is now available for testing.</p>\n<p><a href="https://core.trac.wordpress.org/log/trunk?rev=30961&amp;stop_rev=30827">Seventy changes</a> have gone in since the <a href="https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate/">first release candidate</a>. With no known issues left, we plan to release 4.1 tomorrow, December 18.</p>\n<p>To test, try the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you&#8217;ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href="https://wordpress.org/wordpress-4.1-RC3.zip">download the release candidate here</a> (zip). If you&#8217;d like to learn more about what&#8217;s new in WordPress 4.1, visit the updated About screen in your dashboard (<strong><img src="https://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png" alt="" width="16" height="16" /> → About</strong> in the toolbar) and also check out <a href="https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/">the Beta 1 post</a>.</p>\n<p><strong>Plugin authors:</strong> Remember to test your plugins against 4.1, and if they&#8217;re compatible, make sure they are marked as tested up to 4.1. Be sure to follow along the core development blog; we&#8217;ve been posting <a href="https://make.wordpress.org/core/tag/4-1-dev-notes/">notes for developers for 4.1</a> as always.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:74:"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate-3/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:31:"WordPress 4.1 Release Candidate";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:76:"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 11 Dec 2014 11:52:16 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:3:"4.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3375";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:341:"The release candidate for WordPress 4.1 is now available. We&#8217;ve made a lot of refinements over the last few weeks. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.1 on Tuesday, December 16, but we need your [&#8230;]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2301:"<p>The release candidate for WordPress 4.1 is now available.</p>\n<p>We&#8217;ve made a lot of refinements over the last few weeks. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.1 on Tuesday, December 16, but we need your help to get there. If you haven’t tested 4.1 yet, now is the time! (Please though, not on your live site unless you’re adventurous.)</p>\n<p><strong>Think you&#8217;ve found a bug?</strong> Please post to the <a href="https://wordpress.org/support/forum/alphabeta/">Alpha/Beta support forum</a>. If any known issues come up, you&#8217;ll be able to <a href="https://core.trac.wordpress.org/report/5">find them here</a>.</p>\n<p>To test WordPress 4.1 RC1, you can use the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin or you can <a href="https://wordpress.org/wordpress-4.1-RC1.zip">download the release candidate here</a> (zip). If you&#8217;d like to learn more about what&#8217;s new in WordPress 4.1, visit the About screen in your dashboard (<strong><img src="https://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png" alt="" width="16" height="16" /> → About</strong> in the toolbar) or check out the <a href="https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/">beta announcement</a>.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.1 and update your plugin&#8217;s <em>Tested up to</em> version in the readme to 4.1 before next week. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.</p>\n<p>Be sure to <a href="https://make.wordpress.org/core/">follow along the core development blog</a>, where we&#8217;ll continue to post <a href="https://make.wordpress.org/core/tag/4-1-dev-notes/">notes for developers</a> for 4.1. (For example: if you&#8217;ve written a child theme for Twenty Fifteen, some of the new pagination functions have been renamed for clarity.)</p>\n<p><em>Testing four point one</em><br />\n<em>Why are we up at this hour?</em><br />\n<em>Code is poetry</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:72:"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:32:"WordPress 4.0.1 Security Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/news/2014/11/wordpress-4-0-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/news/2014/11/wordpress-4-0-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Nov 2014 18:55:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3363";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:345:"WordPress 4.0.1 is now available. This is a critical security release for all previous versions and we strongly encourage you to update your sites immediately. Sites that support automatic background updates will be updated to WordPress 4.0.1 within the next few hours. If you are still on WordPress 3.9.2, 3.8.4, or 3.7.4, you will be [&#8230;]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3395:"<p>WordPress 4.0.1 is now available. This is a <strong>critical security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>Sites that support automatic background updates will be updated to WordPress 4.0.1 within the next few hours. If you are still on WordPress 3.9.2, 3.8.4, or 3.7.4, you will be updated to 3.9.3, 3.8.5, or 3.7.5 to keep everything secure. (We don’t support older versions, so please update to 4.0.1 for the latest and greatest.)</p>\n<p>WordPress versions 3.9.2 and earlier are affected by a critical cross-site scripting vulnerability, which could enable anonymous users to compromise a site. This was reported by <a href="http://klikki.fi/"><NAME></a>. This issue does not affect version 4.0, but version 4.0.1 does address these eight security issues:</p>\n<ul>\n<li>Three cross-site scripting issues that a contributor or author could use to compromise a site. Discovered by <a href="http://joncave.co.uk/"><NAME></a>, <a href="http://www.miqrogroove.com/"><NAME></a>, and <a href="https://johnblackbourn.com/"><NAME></a> of the WordPress security team.</li>\n<li>A cross-site request forgery that could be used to trick a user into changing their password.</li>\n<li>An issue that could lead to a denial of service when passwords are checked. Reported by <a href="http://www.behindthefirewalls.com/"><NAME></a> and <a href="http://www.devconsole.info/"><NAME></a>.</li>\n<li>Additional protections for server-side request forgery attacks when WordPress makes HTTP requests. Reported by <NAME> (vortfu).</li>\n<li>An extremely unlikely hash collision could allow a user&#8217;s account to be compromised, that also required that they haven&#8217;t logged in since 2008 (I wish I were kidding). Reported by <a href="http://david.dw-perspective.org.uk"><NAME></a>.</li>\n<li>WordPress now invalidates the links in a password reset email if the user remembers their password, logs in, and changes their email address. Reported separately by <a href="https://twitter.com/MomenBassel"><NAME></a>, <a href="http://c0dehouse.blogspot.in/"><NAME></a>, and <a href="https://managewp.com/"><NAME>ć of ManageWP</a>.</li>\n</ul>\n<p>Version 4.0.1 also fixes 23 bugs with 4.0, and we&#8217;ve made two hardening changes, including better validation of EXIF data we are extracting from uploaded photos. Reported by <a href="http://www.securesolutions.no/"><NAME></a>.</p>\n<p>We appreciated the <a href="https://codex.wordpress.org/FAQ_Security">responsible disclosure</a> of these issues directly to our security team. For more information, see the <a href="https://codex.wordpress.org/Version_4.0.1">release notes</a> or consult the <a href="https://core.trac.wordpress.org/log/branches/4.0?rev=30475&amp;stop_rev=29710">list of changes</a>.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 4.0.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now”.</p>\n<p><em>Already testing WordPress 4.1? The second beta is now available (<a href="https://wordpress.org/wordpress-4.1-beta2.zip">zip</a>) and it contains these security fixes. For more on 4.1, see <a href="https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/">the beta 1 announcement post</a>.</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2014/11/wordpress-4-0-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.1 Beta 1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:65:"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Nov 2014 22:35:34 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:4:"beta";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3352";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:346:"Welcome, everyone, to WordPress 4.1 Beta 1! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.1, try the WordPress Beta Tester plugin (you&#8217;ll want &#8220;bleeding edge nightlies&#8221;). Or you can [&#8230;]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3409:"<p>Welcome, everyone, to WordPress 4.1 Beta 1!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.1, try the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you&#8217;ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href="//wordpress.org/wordpress-4.1-beta1.zip">download the beta here</a> (zip).</p>\n<p>WordPress 4.1 is due for release next month, so we need your help with testing. Here are some highlights of what to test:</p>\n<ul>\n<li>Our beautiful new default theme, <a href="https://make.wordpress.org/core/2014/09/09/twenty-fifteen/">Twenty Fifteen</a>. It&#8217;s a clean, mobile-first, blog-focused theme designed through simplicity.</li>\n<li>A new <a href="https://make.wordpress.org/core/2014/11/11/focus-v2-demo-video/">distraction-free writing mode for the editor</a>. It&#8217;s enabled by default for beta, and we&#8217;d love feedback on it.</li>\n<li>The ability to automatically install new language packs right from the General Settings screen (available as long as your site&#8217;s filesystem is writable).</li>\n<li>A new inline formatting toolbar for images embedded into posts.</li>\n</ul>\n<p>There have been a lot of changes for developers to test as well:</p>\n<ul>\n<li><a href="https://make.wordpress.org/core/2014/10/20/update-on-query-improvements-in-4-1/">Improvements to meta, date, comment, and taxonomy queries</a>, including complex (nested, multiple relation) queries; and querying comment types (<a href="https://core.trac.wordpress.org/ticket/12668">#12668</a>).</li>\n<li>A single term shared across multiple taxonomies is now split into two when updated. For more, <a href="https://make.wordpress.org/core/2014/11/12/an-update-on-the-taxonomy-roadmap/">see this post</a>, <a href="https://core.trac.wordpress.org/ticket/5809">#5809</a>, and <a href="https://core.trac.wordpress.org/ticket/30335">#30335</a>.</li>\n<li>A new and better way for <a href="https://make.wordpress.org/core/2014/10/29/title-tags-in-4-1/">themes to handle title tags</a>.</li>\n<li>Several <a href="https://make.wordpress.org/core/2014/10/27/toward-a-complete-javascript-api-for-the-customizer/">improvements to the Customizer API</a>, including contextual panels and sections, and JavaScript templates for controls.</li>\n</ul>\n<p>If you want a more in-depth view of what changes have made it into 4.1, <a href="https://make.wordpress.org/core/tag/week-in-core/">check out the weekly review posts</a> on the main development blog.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="https://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href="https://make.wordpress.org/core/reports/">file one on the WordPress Trac</a>. There, you can also find <a href="https://core.trac.wordpress.org/tickets/major">a list of known bugs</a> and <a href="https://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=4.1">everything we’ve fixed</a> so far.</p>\n<p>Happy testing!</p>\n<p><em>Twenty Fifteen theme</em><br />\n<em> The beautiful face which hides</em><br />\n<em> Many improvements</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:61:"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"Watch WordCamp San Francisco Livestream";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/news/2014/10/wcsf-livestream/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/news/2014/10/wcsf-livestream/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 24 Oct 2014 20:18:43 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:9:"Community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"WordCamp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3341";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:381:"WordCamp San Francisco is the official annual WordPress conference, gathering the community every year since 2006. This is the time when <NAME> addresses the community in his annual State of the Word presentation – a recap of  the year in WordPress and giving us a glimpse into its future. This year the speaker lineup is stellar. There will be talks by [&#8230;]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:17:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1975:"<p><a title="2014 edition" href="http://2014.sf.wordcamp.org">WordCamp San Francisco</a> is the official annual WordPress conference, gathering the community every year <a title="An old website for a WordPress long time ago" href="http://2006.sf.wordcamp.org">since 2006</a>. This is the time when Matt Mullenweg addresses the community in his annual <a href="http://wordpress.tv/?s=state+of+the+word">State of the Word</a> presentation – a recap of  the year in WordPress and giving us a glimpse into its future.</p>\n<p>This year the speaker lineup is stellar. There will be talks by three of the lead WordPress developers: <a href="http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-andrew-nacin"><NAME></a>, <a href="http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-helen-hou-sandi"><NAME></a>, and <a href="http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-mark-jaquith"><NAME></a>. We’re also looking forward to speakers like <a href="http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-jenny-lawson"><NAME></a>, also known as The Bloggess, and <a href="http://2014.sf.wordcamp.org/speaker/chris-lema/"><NAME></a>. If you’re at all interested in the web, you will appreciate the appearance of <a href="http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-jeff-veen"><NAME></a> – one of the creators of Google Analytics and co-founder of Typekit.</p>\n<p>Even though San Francisco is far far away for most of you, you can still be part of the fun and watch all presentations in real-time via livestream:</p>\n<p><a href="http://2014.sf.wordcamp.org/tickets/">Get a livestream ticket and watch all talks from WordCamp San Francisco live</a></p>\n<p>If you hurry, you can get one of the special livestream tickets, including a WordCamp San Francisco 2104 t-shirt. You can find all the technical details and start times <a href="http://2014.sf.wordcamp.org/live-stream/">at the WordCamp San Francisco website</a>.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2014/10/wcsf-livestream/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:25:"WordPress 4.0 “Benny”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"https://wordpress.org/news/2014/09/benny/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:50:"https://wordpress.org/news/2014/09/benny/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 04 Sep 2014 17:05:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3296";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:370:"Version 4.0 of WordPress, named “Benny” in honor of jazz clarinetist and bandleader <NAME>, is available for download or update in your WordPress dashboard. While 4.0 is just another number for us after 3.9 and before 4.1, we feel we&#8217;ve put a little extra polish into it. This release brings you a smoother writing and management experience [&#8230;]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:23564:"<p>Version 4.0 of WordPress, named “Benny” in honor of jazz clarinetist and bandleader <a href="http://en.wikipedia.org/wiki/Benny_Goodman"><NAME></a>, is available <a href="https://wordpress.org/download/">for download</a> or update in your WordPress dashboard. While 4.0 is just another number for us after 3.9 and before 4.1, we feel we&#8217;ve put a little extra polish into it. This release brings you a smoother writing and management experience we think you&#8217;ll enjoy.</p>\n<div id="v-bUdzKMro-1" class="video-player"><embed id="v-bUdzKMro-1-video" src="https://v0.wordpress.com/player.swf?v=1.03&amp;guid=bUdzKMro&amp;isDynamicSeeking=true" type="application/x-shockwave-flash" width="692" height="388" title="Introducing WordPress 4.0 &quot;Benny&quot;" wmode="direct" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true"></embed></div>\n<hr />\n<h2 style="text-align: center">Manage your media with style</h2>\n<p><img class="alignnone size-full wp-image-3316" src="https://wordpress.org/news/files/2014/09/media.jpg" alt="Media Library" width="1000" height="586" />Explore your uploads in a beautiful, endless grid. A new details preview makes viewing and editing any amount of media in sequence a snap.</p>\n<hr />\n<h2 style="text-align: center">Working with embeds has never been easier</h2>\n<div style="width: 632px; " class="wp-video"><!--[if lt IE 9]><script>document.createElement(''video'');</script><![endif]-->\n<video class="wp-video-shortcode" id="video-3296-1" width="632" height="445" autoplay="1" preload="metadata" controls="controls"><source type="video/mp4" src="//s.w.org/images/core/4.0/embed.mp4?_=1" /><source type="video/webm" src="//s.w.org/images/core/4.0/embed.webm?_=1" /><source type="video/ogg" src="//s.w.org/images/core/4.0/embed.ogv?_=1" /><a href="//s.w.org/images/core/4.0/embed.mp4">//s.w.org/images/core/4.0/embed.mp4</a></video></div>\n<p>Paste in a YouTube URL on a new line, and watch it magically become an embedded video. Now try it with a tweet. Oh yeah — embedding has become a visual experience. The editor shows a true preview of your embedded content, saving you time and giving you confidence.</p>\n<p>We’ve expanded the services supported by default, too — you can embed videos from CollegeHumor, playlists from YouTube, and talks from TED. <a href="https://codex.wordpress.org/Embeds">Check out all of the embeds</a> that WordPress supports.</p>\n<hr />\n<h2 style="text-align: center">Focus on your content</h2>\n<div style="width: 632px; " class="wp-video"><video class="wp-video-shortcode" id="video-3296-2" width="632" height="356" autoplay="1" preload="metadata" controls="controls"><source type="video/mp4" src="//s.w.org/images/core/4.0/focus.mp4?_=2" /><source type="video/webm" src="//s.w.org/images/core/4.0/focus.webm?_=2" /><source type="video/ogg" src="//s.w.org/images/core/4.0/focus.ogv?_=2" /><a href="//s.w.org/images/core/4.0/focus.mp4">//s.w.org/images/core/4.0/focus.mp4</a></video></div>\n<p>Writing and editing is smoother and more immersive with an editor that expands to fit your content as you write, and keeps the formatting tools available at all times.</p>\n<hr />\n<h2 style="text-align: center">Finding the right plugin</h2>\n<p><img class="aligncenter size-large wp-image-3309" src="https://wordpress.org/news/files/2014/09/add-plugin1-1024x600.png" alt="Add plugins" width="692" height="405" /></p>\n<p>There are more than 30,000 free and open source plugins in the WordPress plugin directory. WordPress 4.0 makes it easier to find the right one for your needs, with new metrics, improved search, and a more visual browsing experience.</p>\n<hr />\n<h2 style="text-align: center">The Ensemble</h2>\n<p>This release was led by <a href="http://helenhousandi.com"><NAME></a>, with the help of these fine individuals. There are 275 contributors with props in this release, a new high. Pull up some <NAME> on your music service of choice, as a bandleader or in one of his turns as a classical clarinetist, and check out some of their profiles:</p>\n<p><a href="https://profiles.wordpress.org/aaroncampbell"><NAME></a>, <a href="https://profiles.wordpress.org/jorbin"><NAME></a>, <a href="https://profiles.wordpress.org/adamsilverstein"><NAME></a>, <a href="https://profiles.wordpress.org/viper007bond"><NAME> (Viper007Bond)</a>, <a href="https://profiles.wordpress.org/tellyworth"><NAME></a>, <a href="https://profiles.wordpress.org/alexanderrohmann"><NAME></a>, <a href="https://profiles.wordpress.org/aliso"><NAME></a>, <a href="https://profiles.wordpress.org/collinsinternet"><NAME></a>, <a href="https://profiles.wordpress.org/amit"><NAME></a>, <a href="https://profiles.wordpress.org/sabreuse"><NAME> (sabreuse)</a>, <a href="https://profiles.wordpress.org/afercia"><NAME></a>, <a href="https://profiles.wordpress.org/andrezrv"><NAME></a>, <a href="https://profiles.wordpress.org/zamfeer"><NAME></a>, <a href="https://profiles.wordpress.org/sumobi"><NAME> (sumobi)</a>, <a href="https://profiles.wordpress.org/nacin"><NAME></a>, <a href="https://profiles.wordpress.org/azaozz"><NAME></a>, <a href="https://profiles.wordpress.org/andy"><NAME></a>, <a href="https://profiles.wordpress.org/ankit-k-gupta"><NAME></a>, <a href="https://profiles.wordpress.org/atimmer"><NAME></a>, <a href="https://profiles.wordpress.org/arnee">arnee</a>, <a href="https://profiles.wordpress.org/aubreypwd">Aubrey Portwood</a>, <a href="https://profiles.wordpress.org/filosofo"><NAME></a>, <a href="https://profiles.wordpress.org/empireoflight"><NAME></a>, <a href="https://profiles.wordpress.org/kau-boy"><NAME></a>, <a href="https://profiles.wordpress.org/boonebgorges"><NAME></a>, <a href="https://profiles.wordpress.org/bradyvercher"><NAME></a>, <a href="https://profiles.wordpress.org/bramd"><NAME></a>, <a href="https://profiles.wordpress.org/kraftbj"><NAME></a>, <a href="https://profiles.wordpress.org/krogsgard"><NAME></a>, <a href="https://profiles.wordpress.org/brianlayman"><NAME></a>, <a href="https://profiles.wordpress.org/rzen"><NAME>ards</a>, <a href="https://profiles.wordpress.org/camdensegal"><NAME></a>, <a href="https://profiles.wordpress.org/sixhours"><NAME></a>, <a href="https://profiles.wordpress.org/mackensen"><NAME></a>, <a href="https://profiles.wordpress.org/chouby">Chouby</a>, <a href="https://profiles.wordpress.org/chrico">ChriCo</a>, <a href="https://profiles.wordpress.org/c3mdigital"><NAME></a>, <a href="https://profiles.wordpress.org/chrisl27">chrisl27</a>, <a href="https://profiles.wordpress.org/caxelsson"><NAME></a>, <a href="https://profiles.wordpress.org/cfinke"><NAME></a>, <a href="https://profiles.wordpress.org/boda1982"><NAME></a>, <a href="https://profiles.wordpress.org/clifgriffin"><NAME></a>, <a href="https://profiles.wordpress.org/jupiterwise">Corey McKrill</a>, <a href="https://profiles.wordpress.org/corphi">Corphi</a>, <a href="https://profiles.wordpress.org/extendwings">D<NAME>akahashi</a>, <a href="https://profiles.wordpress.org/ghost1227"><NAME></a>, <a href="https://profiles.wordpress.org/danielbachhuber"><NAME></a>, <a href="https://profiles.wordpress.org/danielhuesken"><NAME></a>, <a href="https://profiles.wordpress.org/redsweater"><NAME> (Red Sweater)</a>, <a href="https://profiles.wordpress.org/dannydehaan"><NAME></a>, <a href="https://profiles.wordpress.org/dkotter"><NAME></a>, <a href="https://profiles.wordpress.org/koop"><NAME></a>, <a href="https://profiles.wordpress.org/dllh"><NAME> (dllh)</a>, <a href="https://profiles.wordpress.org/davidakennedy"><NAME></a>, <a href="https://profiles.wordpress.org/dlh"><NAME></a>, <a href="https://profiles.wordpress.org/dnaber-de"><NAME></a>, <a href="https://profiles.wordpress.org/davidthemachine">DavidTheMachine</a>, <a href="https://profiles.wordpress.org/debaat">DeBAAT</a>, <a href="https://profiles.wordpress.org/dd32"><NAME></a>, <a href="https://profiles.wordpress.org/ocean90"><NAME></a>, <a href="https://profiles.wordpress.org/donncha"><NAME>aoimh</a>, <a href="https://profiles.wordpress.org/drewapicture"><NAME></a>, <a href="https://profiles.wordpress.org/dustyn"><NAME></a>, <a href="https://profiles.wordpress.org/eddiemoya">Eddie Moya</a>, <a href="https://profiles.wordpress.org/oso96_2000"><NAME>veles</a>, <a href="https://profiles.wordpress.org/edwin-at-studiojoyocom"><NAME></a>, <a href="https://profiles.wordpress.org/ehg">ehg</a>, <a href="https://profiles.wordpress.org/tmeister"><NAME></a>, <a href="https://profiles.wordpress.org/erayalakese">erayalakese</a>, <a href="https://profiles.wordpress.org/ericlewis"><NAME></a>, <a href="https://profiles.wordpress.org/ebinnion"><NAME></a>, <a href="https://profiles.wordpress.org/ericmann"><NAME></a>, <a href="https://profiles.wordpress.org/ejdanderson"><NAME></a>, <a href="https://profiles.wordpress.org/eherman24"><NAME></a>, <a href="https://profiles.wordpress.org/fab1en"><NAME></a>, <a href="https://profiles.wordpress.org/fahmiadib">Fahmi Adib</a>, <a href="https://profiles.wordpress.org/feedmeastraycat">feedmeastraycat</a>, <a href="https://profiles.wordpress.org/frank-klein"><NAME></a>, <a href="https://profiles.wordpress.org/garhdez">garhdez</a>, <a href="https://profiles.wordpress.org/garyc40"><NAME></a>, <a href="https://profiles.wordpress.org/garyj"><NAME></a>, <a href="https://profiles.wordpress.org/pento"><NAME></a>, <a href="https://profiles.wordpress.org/garza">garza</a>, <a href="https://profiles.wordpress.org/gauravmittal1995">gauravmittal1995</a>, <a href="https://profiles.wordpress.org/gavra">Gavrisimo</a>, <a href="https://profiles.wordpress.org/georgestephanis"><NAME>is</a>, <a href="https://profiles.wordpress.org/grahamarmfield"><NAME></a>, <a href="https://profiles.wordpress.org/vancoder"><NAME></a>, <a href="https://profiles.wordpress.org/gcorne"><NAME></a>, <a href="https://profiles.wordpress.org/bordoni"><NAME></a>, <a href="https://profiles.wordpress.org/harrym">harrym</a>, <a href="https://profiles.wordpress.org/hebbet">hebbet</a>, <a href="https://profiles.wordpress.org/hinnerk">Hinnerk Altenburg</a>, <a href="https://profiles.wordpress.org/hlashbrooke"><NAME>oke</a>, <a href="https://profiles.wordpress.org/iljoja">iljoja</a>, <a href="https://profiles.wordpress.org/imath">imath</a>, <a href="https://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>, <a href="https://profiles.wordpress.org/issuu">issuu</a>, <a href="https://profiles.wordpress.org/jdgrimes"><NAME></a>, <a href="https://profiles.wordpress.org/jacklenox"><NAME></a>, <a href="https://profiles.wordpress.org/jackreichert"><NAME></a>, <a href="https://profiles.wordpress.org/jacobdubail"><NAME></a>, <a href="https://profiles.wordpress.org/janhenkg">JanHenkG</a>, <a href="https://profiles.wordpress.org/avryl"><NAME></a>, <a href="https://profiles.wordpress.org/jwenerd"><NAME></a>, <a href="https://profiles.wordpress.org/jaza613">Jaza613</a>, <a href="https://profiles.wordpress.org/jeffstieler"><NAME></a>, <a href="https://profiles.wordpress.org/jeremyfelt"><NAME></a>, <a href="https://profiles.wordpress.org/jpry"><NAME></a>, <a href="https://profiles.wordpress.org/slimndap"><NAME></a>, <a href="https://profiles.wordpress.org/jerrysarcastic"><NAME> (jerrysarcastic)</a>, <a href="https://profiles.wordpress.org/jesin"><NAME></a>, <a href="https://profiles.wordpress.org/jayjdk"><NAME> (jayjdk)</a>, <a href="https://profiles.wordpress.org/engelen">Jesper van Engelen</a>, <a href="https://profiles.wordpress.org/jesper800">Jesper van Engelen</a>, <a href="https://profiles.wordpress.org/jessepollak"><NAME></a>, <a href="https://profiles.wordpress.org/jgadbois">jgadbois</a>, <a href="https://profiles.wordpress.org/jartes"><NAME></a>, <a href="https://profiles.wordpress.org/joedolson"><NAME></a>, <a href="https://profiles.wordpress.org/joehoyle">Joe Hoyle</a>, <a href="https://profiles.wordpress.org/jkudish"><NAME></a>, <a href="https://profiles.wordpress.org/johnbillion"><NAME></a>, <a href="https://profiles.wordpress.org/johnjamesjacoby"><NAME></a>, <a href="https://profiles.wordpress.org/johnzanussi"><NAME></a>, <a href="https://profiles.wordpress.org/duck_"><NAME></a>, <a href="https://profiles.wordpress.org/jonnyauk">jonnyauk</a>, <a href="https://profiles.wordpress.org/joostdevalk"><NAME></a>, <a href="https://profiles.wordpress.org/softmodeling"><NAME></a>, <a href="https://profiles.wordpress.org/jjeaton"><NAME></a>, <a href="https://profiles.wordpress.org/tai">JOTAKI Taisuke</a>, <a href="https://profiles.wordpress.org/juliobox"><NAME></a>, <a href="https://profiles.wordpress.org/justinsainton"><NAME></a>, <a href="https://profiles.wordpress.org/jtsternberg"><NAME></a>, <a href="https://profiles.wordpress.org/greenshady"><NAME></a>, <a href="https://profiles.wordpress.org/kadamwhite"><NAME></a>, <a href="https://profiles.wordpress.org/trepmal">Kailey (trepmal)</a>, <a href="https://profiles.wordpress.org/kapeels">kapeels</a>, <a href="https://profiles.wordpress.org/ryelle"><NAME></a>, <a href="https://profiles.wordpress.org/kevinlangleyjr"><NAME>y</a>, <a href="https://profiles.wordpress.org/kworthington"><NAME>ton</a>, <a href="https://profiles.wordpress.org/kpdesign">Kim Parsell</a>, <a href="https://profiles.wordpress.org/kwight"><NAME></a>, <a href="https://profiles.wordpress.org/kitchin">kitchin</a>, <a href="https://profiles.wordpress.org/ixkaito">Kite</a>, <a href="https://profiles.wordpress.org/knutsp">Knut Sparhell</a>, <a href="https://profiles.wordpress.org/kovshenin"><NAME></a>, <a href="https://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="https://profiles.wordpress.org/kurtpayne"><NAME></a>, <a href="https://profiles.wordpress.org/lancewillett"><NAME>lett</a>, <a href="https://profiles.wordpress.org/leewillis77"><NAME></a>, <a href="https://profiles.wordpress.org/lessbloat">lessbloat</a>, <a href="https://profiles.wordpress.org/layotte">Lew Ayotte</a>, <a href="https://profiles.wordpress.org/lritter">lritter</a>, <a href="https://profiles.wordpress.org/lukecarbis"><NAME></a>, <a href="https://profiles.wordpress.org/lgedeon"><NAME></a>, <a href="https://profiles.wordpress.org/m_i_n">m_i_n</a>, <a href="https://profiles.wordpress.org/funkatronic"><NAME></a>, <a href="https://profiles.wordpress.org/targz-1"><NAME></a>, <a href="https://profiles.wordpress.org/clorith">Marius (Clorith)</a>, <a href="https://profiles.wordpress.org/markjaquith"><NAME></a>, <a href="https://profiles.wordpress.org/markoheijnen"><NAME>nen</a>, <a href="https://profiles.wordpress.org/mjbanks"><NAME></a>, <a href="https://profiles.wordpress.org/sivel"><NAME></a>, <a href="https://profiles.wordpress.org/matt"><NAME>g</a>, <a href="https://profiles.wordpress.org/mattwiebe"><NAME></a>, <a href="https://profiles.wordpress.org/mboynes"><NAME></a>, <a href="https://profiles.wordpress.org/mdbitz"><NAME></a>, <a href="https://profiles.wordpress.org/mattheweppelsheimer"><NAME></a>, <a href="https://profiles.wordpress.org/mattheu"><NAME></a>, <a href="https://profiles.wordpress.org/mattyrob">mattyrob</a>, <a href="https://profiles.wordpress.org/meekyhwang">meekyhwang</a>, <a href="https://profiles.wordpress.org/melchoyce"><NAME></a>, <a href="https://profiles.wordpress.org/mdawaffe"><NAME> (mdawaffe)</a>, <a href="https://profiles.wordpress.org/michalzuber">michalzuber</a>, <a href="https://profiles.wordpress.org/midxcat">midxcat</a>, <a href="https://profiles.wordpress.org/mauteri"><NAME></a>, <a href="https://profiles.wordpress.org/mikehansenme"><NAME></a>, <a href="https://profiles.wordpress.org/mikejolley"><NAME>ley</a>, <a href="https://profiles.wordpress.org/mikelittle"><NAME></a>, <a href="https://profiles.wordpress.org/mikemanger"><NAME></a>, <a href="https://profiles.wordpress.org/mnelson4"><NAME></a>, <a href="https://profiles.wordpress.org/dh-shredder"><NAME></a>, <a href="https://profiles.wordpress.org/mikeyarce">Mikey Arce</a>, <a href="https://profiles.wordpress.org/dimadin"><NAME></a>, <a href="https://profiles.wordpress.org/morganestes">Morgan Estes</a>, <a href="https://profiles.wordpress.org/usermrpapa">Mr Papa</a>, <a href="https://profiles.wordpress.org/mrmist">mrmist</a>, <a href="https://profiles.wordpress.org/m_uysl">Must<NAME>ysal</a>, <a href="https://profiles.wordpress.org/muvimotv">MuViMoTV</a>, <a href="https://profiles.wordpress.org/nabil_kadimi">nabil_kadimi</a>, <a href="https://profiles.wordpress.org/namibia">Namibia</a>, <a href="https://profiles.wordpress.org/alex-ye"><NAME></a>, <a href="https://profiles.wordpress.org/nd987">nd987</a>, <a href="https://profiles.wordpress.org/neil_pie"><NAME>ie</a>, <a href="https://profiles.wordpress.org/niallkennedy"><NAME></a>, <a href="https://profiles.wordpress.org/celloexpressions"><NAME></a>, <a href="https://profiles.wordpress.org/nbachiyski"><NAME></a>, <a href="https://profiles.wordpress.org/schoenwaldnils"><NAME></a>, <a href="https://profiles.wordpress.org/ninos-ego">Ninos</a>, <a href="https://profiles.wordpress.org/nvwd">Now<NAME>en</a>, <a href="https://profiles.wordpress.org/compute"><NAME></a>, <a href="https://profiles.wordpress.org/pbearne"><NAME></a>, <a href="https://profiles.wordpress.org/pdclark">Paul Clark</a>, <a href="https://profiles.wordpress.org/paulschreiber"><NAME>iber</a>, <a href="https://profiles.wordpress.org/paulwilde"><NAME></a>, <a href="https://profiles.wordpress.org/pavelevap">pavelevap</a>, <a href="https://profiles.wordpress.org/westi"><NAME></a>, <a href="https://profiles.wordpress.org/philiparthurmoore"><NAME></a>, <a href="https://profiles.wordpress.org/philipjohn"><NAME></a>, <a href="https://profiles.wordpress.org/senlin"><NAME></a>, <a href="https://profiles.wordpress.org/psoluch"><NAME></a>, <a href="https://profiles.wordpress.org/mordauk"><NAME></a>, <a href="https://profiles.wordpress.org/purzlbaum">purzlbaum</a>, <a href="https://profiles.wordpress.org/rachelbaker"><NAME></a>, <a href="https://profiles.wordpress.org/rclations">RC Lations</a>, <a href="https://profiles.wordpress.org/iamfriendly"><NAME></a>, <a href="https://profiles.wordpress.org/rickalee"><NAME></a>, <a href="https://profiles.wordpress.org/rob1n">rob1n</a>, <a href="https://profiles.wordpress.org/miqrogroove"><NAME></a>, <a href="https://profiles.wordpress.org/rdall"><NAME></a>, <a href="https://profiles.wordpress.org/harmr">RobertHarm</a>, <a href="https://profiles.wordpress.org/rohan013">Rohan Rawat</a>, <a href="https://profiles.wordpress.org/rhurling">Rouven Hurling</a>, <a href="https://profiles.wordpress.org/ruudjoyo">Ruud Laan</a>, <a href="https://profiles.wordpress.org/ryan"><NAME></a>, <a href="https://profiles.wordpress.org/rmccue"><NAME></a>, <a href="https://profiles.wordpress.org/sammybeats"><NAME></a>, <a href="https://profiles.wordpress.org/otto42"><NAME> (Otto)</a>, <a href="https://profiles.wordpress.org/sathishn"><NAME></a>, <a href="https://profiles.wordpress.org/coffee2code"><NAME></a>, <a href="https://profiles.wordpress.org/wonderboymusic"><NAME>aylor</a>, <a href="https://profiles.wordpress.org/greglone">ScreenfeedFr</a>, <a href="https://profiles.wordpress.org/scribu">scribu</a>, <a href="https://profiles.wordpress.org/seanchayes"><NAME></a>, <a href="https://profiles.wordpress.org/nessworthy"><NAME></a>, <a href="https://profiles.wordpress.org/sergejmueller"><NAME></a>, <a href="https://profiles.wordpress.org/sergeybiryukov"><NAME></a>, <a href="https://profiles.wordpress.org/shanebp">shanebp</a>, <a href="https://profiles.wordpress.org/sharonaustin"><NAME></a>, <a href="https://profiles.wordpress.org/shaunandrews"><NAME></a>, <a href="https://profiles.wordpress.org/simonp303"><NAME></a>, <a href="https://profiles.wordpress.org/simonwheatley"><NAME></a>, <a href="https://profiles.wordpress.org/slobodanmanic">Slob<NAME></a>, <a href="https://profiles.wordpress.org/solarissmoke">solarissmoke</a>, <a href="https://profiles.wordpress.org/sphoid">sphoid</a>, <a href="https://profiles.wordpress.org/stephdau"><NAME></a>, <a href="https://profiles.wordpress.org/netweb"><NAME></a>, <a href="https://profiles.wordpress.org/stompweb"><NAME></a>, <a href="https://profiles.wordpress.org/strangerstudios">strangerstudios</a>, <a href="https://profiles.wordpress.org/5um17"><NAME></a>, <a href="https://profiles.wordpress.org/t4k1s">t4k1s</a>, <a href="https://profiles.wordpress.org/iamtakashi"><NAME></a>, <a href="https://profiles.wordpress.org/taylorde"><NAME></a>, <a href="https://profiles.wordpress.org/thomasvanderbeek"><NAME></a>, <a href="https://profiles.wordpress.org/tillkruess"><NAME></a>, <a href="https://profiles.wordpress.org/codenameeli"><NAME></a>, <a href="https://profiles.wordpress.org/tobiasbg">TobiasBg</a>, <a href="https://profiles.wordpress.org/tjnowell"><NAME></a>, <a href="https://profiles.wordpress.org/willmot"><NAME></a>, <a href="https://profiles.wordpress.org/topher1kenobe">Topher</a>, <a href="https://profiles.wordpress.org/torresga">torresga</a>, <a href="https://profiles.wordpress.org/liljimmi"><NAME></a>, <a href="https://profiles.wordpress.org/wpsmith">Travis Smith</a>, <a href="https://profiles.wordpress.org/treyhunner">treyhunner</a>, <a href="https://profiles.wordpress.org/umeshsingla"><NAME></a>, <a href="https://profiles.wordpress.org/vinod-dalvi"><NAME>vi</a>, <a href="https://profiles.wordpress.org/vlajos">vlajos</a>, <a href="https://profiles.wordpress.org/voldemortensen">voldemortensen</a>, <a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>, <a href="https://profiles.wordpress.org/winterdev">winterDev</a>, <a href="https://profiles.wordpress.org/wojtekszkutnik">Wojtek Szkutnik</a>, <a href="https://profiles.wordpress.org/yoavf"><NAME></a>, <a href="https://profiles.wordpress.org/katzwebdesign"><NAME></a>, <a href="https://profiles.wordpress.org/tollmanz"><NAME>ollman</a>, and <a href="https://profiles.wordpress.org/zoerooney">Zoe Rooney</a>. Also thanks to <a href="http://michaelpick.wordpress.com/"><NAME></a> for producing the release video, and Helen with <a href="http://adriansandi.com"><NAME></a> for the music.</p>\n<p>If you want to follow along or help out, check out <a href="https://make.wordpress.org/">Make WordPress</a> and our <a href="https://make.wordpress.org/core/">core development blog</a>. Thanks for choosing WordPress. See you soon for version 4.1!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:46:"https://wordpress.org/news/2014/09/benny/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:31:"WordPress 4.0 Release Candidate";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"https://wordpress.org/news/2014/08/wordpress-4-0-release-candidate/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:76:"https://wordpress.org/news/2014/08/wordpress-4-0-release-candidate/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 27 Aug 2014 12:20:37 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3287";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:321:"The first release candidate for WordPress 4.0 is now available! In RC 1, we’ve made refinements to what we&#8217;ve been working on for this release. Check out the Beta 1 announcement post for more details on those features. We hope to ship WordPress 4.0 next week, but we need your help to get there. If you [&#8230;]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2134:"<p>The first release candidate for WordPress 4.0 is now available!</p>\n<p>In RC 1, we’ve made refinements to what we&#8217;ve been working on for this release. Check out the <a href="https://wordpress.org/news/2014/07/wordpress-4-0-beta-1/">Beta 1 announcement post</a> for more details on those features. We hope to ship WordPress 4.0 <em>next week</em>, but we need your help to get there. If you haven’t tested 4.0 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.)</p>\n<p><strong>Think you’ve found a bug? </strong>Please post to the <a href="https://wordpress.org/support/forum/alphabeta/">Alpha/Beta area in the support forums</a>. If any known issues come up, you’ll be able to <a href="https://core.trac.wordpress.org/report/5">find them here</a>.</p>\n<p>To test WordPress 4.0 RC1, try the <a href="https://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.0-RC1.zip">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 4.0, visit the awesome About screen in your dashboard (<strong><img src="https://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692" alt="" width="16" height="16" /> → About</strong> in the toolbar).</p>\n<p><strong>Developers,</strong> please test your plugins and themes against WordPress 4.0 and update your plugin&#8217;s <em>Tested up to</em> version in the readme to 4.0 before next week. If you find compatibility problems, please be sure to post any issues to the support forums so we can figure those out before the final release. You also may want to <a href="https://make.wordpress.org/core/2014/08/21/introducing-plugin-icons-in-the-plugin-installer/">give your plugin an icon</a>, which we launched last week and will appear in the dashboard along with banners.</p>\n<p><em>It is almost time</em><br />\n<em> For the 4.0 release</em><br />\n<em> And its awesomeness</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:72:"https://wordpress.org/news/2014/08/wordpress-4-0-release-candidate/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.0 Beta 4";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2014/08/wordpress-4-0-beta-4/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:65:"https://wordpress.org/news/2014/08/wordpress-4-0-beta-4/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 15 Aug 2014 05:06:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3280";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:353:"The fourth and likely final beta for WordPress 4.0 is now available. We&#8217;ve made more than 250 changes in the past month, including: Further improvements to the editor scrolling experience, especially when it comes to the second column of boxes. Better handling of small screens in the media library modals. A separate bulk selection mode [&#8230;]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2003:"<p>The fourth and likely final beta for WordPress 4.0 is now available. We&#8217;ve made <a href="https://core.trac.wordpress.org/log?rev=29496&amp;stop_rev=29229&amp;limit=300">more than 250 changes</a> in the past month, including:</p>\n<ul>\n<li>Further improvements to the editor scrolling experience, especially when it comes to the second column of boxes.</li>\n<li>Better handling of small screens in the media library modals.</li>\n<li>A separate bulk selection mode for the media library grid view.</li>\n<li>Improvements to the installation language selector.</li>\n<li>Visual tweaks to plugin details and customizer panels.</li>\n</ul>\n<p><strong>We need your help</strong>. We’re still aiming for a release this month, which means the next week will be critical for identifying and squashing bugs. If you’re just joining us, please see <a href="https://wordpress.org/news/2014/07/wordpress-4-0-beta-1/">the Beta 1 announcement post</a> for what to look out for.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="https://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums, where friendly moderators are standing by. <b>Plugin developers</b><strong>,</strong> if you haven’t tested WordPress 4.0 yet, now is the time — and be sure to update the “tested up to” version for your plugins so they’re listed as compatible with 4.0.</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.0, try the <a href="https://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.0-beta4.zip">download the beta here</a> (zip).</p>\n<p><em>We are working hard</em><br />\n<em>To finish up 4.0<br />\n</em><em>Will you help us too?</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:61:"https://wordpress.org/news/2014/08/wordpress-4-0-beta-4/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:32:"WordPress 3.9.2 Security Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/news/2014/08/wordpress-3-9-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/news/2014/08/wordpress-3-9-2/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 06 Aug 2014 19:04:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3269";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:377:"WordPress 3.9.2 is now available as a security release for all previous versions. We strongly encourage you to update your sites immediately. This release fixes a possible denial of service issue in PHP&#8217;s XML processing, reported by <NAME> of the Salesforce.com Product Security Team. It  was fixed by <NAME> and <NAME> of the WordPress [&#8230;]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2353:"<p>WordPress 3.9.2 is now available as a security release for all previous versions. We strongly encourage you to update your sites immediately.</p>\n<p>This release fixes a possible denial of service issue in PHP&#8217;s XML processing, reported by <a href="https://twitter.com/nirgoldshlager"><NAME></a> of the Salesforce.com Product Security Team. It  was fixed by <NAME> and <NAME> of the WordPress security team and <NAME> of the <a href="https://www.drupal.org/SA-CORE-2014-004">Drupal security team</a>. This is the first time our two projects have coordinated joint security releases.</p>\n<p>WordPress 3.9.2 also contains other security changes:</p>\n<ul>\n<li>Fixes a possible but unlikely code execution when processing widgets (WordPress is not affected by default), discovered by <a href="http://www.buayacorp.com/"><NAME></a> of the WordPress security team.</li>\n<li>Prevents information disclosure via XML entity attacks in the external GetID3 library, reported by <a href="http://onsec.ru/en/"><NAME></a> of ONSec.</li>\n<li>Adds protections against brute attacks against CSRF tokens, reported by <a href="http://systemoverlord.com/">David Tomaschik</a> of the Google Security Team.</li>\n<li>Contains some additional security hardening, like preventing cross-site scripting that could be triggered only by administrators.</li>\n</ul>\n<p>We appreciated responsible disclosure of these issues directly to our security team. For more information, see the <a href="https://codex.wordpress.org/Version_3.9.2">release notes</a> or consult the <a href="https://core.trac.wordpress.org/log/branches/3.9?stop_rev=29383&amp;rev=29411">list of changes</a>.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 3.9.2</a> or venture over to <strong>Dashboard → Updates</strong> and simply click &#8220;Update Now&#8221;.</p>\n<p>Sites that support automatic background updates will be updated to WordPress 3.9.2 within 12 hours. (If you are still on WordPress 3.8.3 or 3.7.3, you will also be updated to 3.8.4 or 3.7.4. We don&#8217;t support older versions, so please update to 3.9.2 for the latest and greatest.)</p>\n<p>Already testing WordPress 4.0? The third beta is <a href="https://wordpress.org/wordpress-4.0-beta3.zip">now available</a> (zip) and it contains these security fixes.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2014/08/wordpress-3-9-2/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:32:"https://wordpress.org/news/feed/";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:44:"http://purl.org/rss/1.0/modules/syndication/";a:2:{s:12:"updatePeriod";a:1:{i:0;a:5:{s:4:"data";s:6:"hourly";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:15:"updateFrequency";a:1:{i:0;a:5:{s:4:"data";s:1:"1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:9:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Thu, 15 Jan 2015 16:05:57 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:10:"x-pingback";s:37:"https://wordpress.org/news/xmlrpc.php";s:13:"last-modified";s:29:"Thu, 18 Dec 2014 18:57:51 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 249";}s:5:"build";s:14:"20130911040210";}', 'no'); INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (973, '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1421381158', 'no'), (974, '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1421337958', 'no'), (975, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1421381159', 'no'); INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (976, '_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:2:{s:29:"http://www.w3.org/2000/xmlns/";a:1:{s:2:"dc";s:32:"http://purl.org/dc/elements/1.1/";}s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"WordPress Planet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:28:"http://planet.wordpress.org/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:2:"en";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:47:"WordPress Planet - http://planet.wordpress.org/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:50:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:57:"WPTavern: Edit BuddyPress Activity Posts on the Front End";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=37251";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"http://wptavern.com/edit-buddypress-activity-posts-on-the-front-end";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3849:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/buddypress-edit-activity.png" rel="prettyphoto[37251]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/buddypress-edit-activity.png?resize=1025%2C465" alt="buddypress-edit-activity" class="aligncenter size-full wp-image-37345" /></a></p>\n<p>Earlier this week, the folks at <a href="http://www.buddyboss.com/" target="_blank">BuddyBoss</a> released <a href="http://wptavern.com/new-buddypress-global-search-plugin-adds-unified-search-of-all-buddypress-components" target="_blank">BuddyPress Global Search</a>, a new plugin that allows users to search through every BuddyPress component. The company&#8217;s founder, <NAME>, was inspired to give back to the project by creating a string of free plugins that benefit the whole community.</p>\n<p><a href="https://wordpress.org/plugins/buddypress-edit-activity/" target="_blank">BuddyPress Edit Activity</a> is the team&#8217;s latest contribution. This plugin is another handy tool that is likely to be useful for a wide range of social networks. It allows users to edit their activity posts and replies on the front end, similar to the &#8220;Edit Post&#8221; feature that you see available on Facebook.</p>\n<p>Once installed, you&#8217;ll find a new edit option added the activity meta buttons.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/buddypress-activity-edit-button.png" rel="prettyphoto[37251]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/buddypress-activity-edit-button.png?resize=1025%2C351" alt="buddypress-activity-edit-button" class="aligncenter size-full wp-image-37348" /></a></p>\n<p>Clicking the button allows users to edit their own activity updates and replies. It gives them the opportunity to correct errors or add to their posts, instead of having to completely delete the post and start over.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/buddypress-activity-editing.png" rel="prettyphoto[37251]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/buddypress-activity-editing.png?resize=1025%2C289" alt="buddypress-activity-editing" class="aligncenter size-full wp-image-37360" /></a></p>\n<p>The plugin&#8217;s settings screen lets administrators turn editing on/off for activity posts and replies, and includes the ability to limit the feature to admins only. The panel also has an option to disable editing after a set number of minutes, a feature often available in plugins that extend WordPress comments. Setting it to zero makes comments editable indefinitely.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/bp-activity-fronted-edit-settings.png" rel="prettyphoto[37251]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/bp-activity-fronted-edit-settings.png?resize=1025%2C524" alt="bp-activity-fronted-edit-settings" class="aligncenter size-full wp-image-37362" /></a></p>\n<p>I tested the plugin and found that it works well and fits in like a natural part of BuddyPress. It automatically adapts to your current active theme and doesn&#8217;t force any obtrusive styles on the activity stream.</p>\n<p><a href="https://wordpress.org/plugins/buddypress-edit-activity/" target="_blank">BuddyPress Edit Activity</a> may seem like a small thing but it&#8217;s one of those extensions that adds an intuitive feature that greatly improves interaction between users. This is a feature that users have grown to expect based on experience with other social networks.</p>\n<p>BuddyBoss is hitting home runs with its most recent plugin releases, both of which are useful for nearly any type of BuddyPress network. The theme shop is strategically positioning itself for becoming more well-known in the market with its indispensable free plugins.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 15 Jan 2015 07:10:52 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:90:"WPTavern: WP Engine Open Sources Mercury Vagrant for Running WordPress on HHVM and PHP-FPM";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=37296";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:100:"http://wptavern.com/wp-engine-open-sources-mercury-vagrant-for-running-wordpress-on-hhvm-and-php-fpm";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3808:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/wp-engine.jpg" rel="prettyphoto[37296]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/wp-engine.jpg?resize=1025%2C427" alt="wp-engine" class="aligncenter size-full wp-image-34106" /></a></p>\n<p><a href="http://wpengine.com/" target="_blank">WP Engine</a> Labs, in collaboration with the <a href="https://github.com/Varying-Vagrant-Vagrants/VVV" target="_blank">VVV</a> creators at <a href="http://10up.com/" target="_blank">10up</a>, released <a href="https://github.com/wpengine/hgv" target="_blank">Mercury Vagrant (HGV)</a> today. The new open source Vagrant configuration uses HHVM to serve PHP code. It also includes the ability to run your development site using standard PHP to test against for comparison.</p>\n<p>Mercury Vagrant is useful for any WordPress developer who wants to develop on top of HHVM. Last year, WP Engine partnered with 10up to launch Mercury, its new <a href="http://wptavern.com/wp-engine-partners-with-10up-to-launch-enterprise-hhvm-wordpress-hosting-platform" target="_blank">enterprise HHVM WordPress hosting platform</a>. Mercury Vagrant was commissioned to help WP Engine customers with local development, but it was not designed to be specific to the host&#8217;s infrastructure. It is GPL-licensed and meant to be used with any host.</p>\n<p>After provisioning your VM, Mercury Vagrant includes the following:</p>\n<ul>\n<li><a href="http://percona.com/" target="_blank">Percona DB</a></li>\n<li><a href="http://php-fpm.org/" target="_blank">PHP-FPM</a></li>\n<li><a href="http://hhvm.com/" target="_blank">HHVM</a></li>\n<li><a href="http://nginx.com/" target="_blank">Nginx</a></li>\n<li><a href="http://varnish-cache.org/" target="_blank">Varnish</a></li>\n<li><a href="http://memcached.org/" target="_blank">Memcached</a></li>\n</ul>\n<p>HGV creates four different sites, with built-in documentation, for running code with either HHVM or PHP-FPM:</p>\n<ul>\n<li><a href="http://hgv.dev" target="_blank">hgv.dev</a> &#8212; General documentation and links for all of the tools</li>\n<li><a href="http://hhvm.hgv.dev" target="_blank">hhvm.hgv.dev</a> &#8212; A new WordPress installation running on HHVM</li>\n<li><a href="http://php.hgv.dev" target="_blank">php.hgv.dev</a> &#8212; A new WordPress installation running on PHP-FPM (PHP 5.5)</li>\n<li><a href="http://admin.hgv.dev" target="_blank">admin.hgv.dev</a> &#8212; Useful administrative tools (phpMyAdmin, etc.)</li>\n</ul>\n<p>It also includes URLs for testing Varnish caching:</p>\n<p><a href="http://admin.hgv.dev" target="_blank">cache.php.hgv.dev</a><br />\n<a href="http://cache.hhvm.hgv.dev" target="_blank">cache.hhvm.hgv.dev</a></p>\n<p>WP Engine labs is committed to supporting and improving Mercury Vagrant for the foreseeable future. The team has collaborated with Facebook to resolve many of the previous issues of using HHVM with WordPress sites. Even if you&#8217;re using different host that offers HHVM, this open source Vagrant configuration is a solid, professionally-supported tool for local testing. If you need help <a href="http://wpengine.com/mercury/how-to-start/" target="_blank">getting started</a>, WP Engine created a visual walk through and tutorial videos to help you set up your local machine with HHVM with Vagrant.</p>\n<p><a href="https://github.com/wpengine/hgv" target="_blank">Mercury Vagrant</a> is a community tool that will go a long way towards helping developers become more familiar with running sites on HHVM. <a href="http://wpengine.com/mercury" target="_blank">Benchmarks comparing WordPress sites on HHVM vs PHP-FPM</a> indicate a 600% performance increase with HHVM. Dramatic performance increases in this range should have more hosts looking to add support for HHVM in the near future.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 14 Jan 2015 22:02:49 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:71:"WPTavern: I Love Composer, I Love WordPress, But I Object to a Marriage";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=37262";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:79:"http://wptavern.com/i-love-composer-i-love-wordpress-but-i-object-to-a-marriage";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:10606:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/composer.jpg" rel="prettyphoto[37262]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/composer.jpg?resize=1024%2C509" alt="photo credit: <NAME> - cc" class="size-full wp-image-37299" /></a>photo credit: <a href="https://www.flickr.com/photos/jessekruger/390534235/"><NAME></a> &#8211; <a href="http://creativecommons.org/licenses/by-nc/2.0/">cc</a>\n<hr />\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/david-hayes.jpg" rel="prettyphoto[37262]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/david-hayes.jpg?resize=150%2C150" alt="david-hayes" class="alignright size-thumbnail wp-image-37266" /></a><br />\nThis post was contributed by <a href="http://www.davidbhayes.com/" target="_blank"><NAME></a>. David loves solving difficult problems at <a href="http://pressupinc.com">Press Up</a>, publishing new WordPress tutorials at <a href="http://wpshout.com">WPShout</a>, and eating cold cereal with milk.</p>\n<hr />\n<p>The developer tool <a href="https://getcomposer.org/" target="_blank">Composer</a> has been sneaking in around the fringes of the WordPress community. <a href="http://composer.rarst.net/" target="_blank">Rarst</a> is a fan. The <a href="http://roots.io/using-composer-with-wordpress/" target="_blank">Roots theme framework</a> folks like it. There&#8217;s support infrastructure like <a href="http://wpackagist.org/" target="_blank">WPackagist</a>.</p>\n<p>Composer is widely known in the wider PHP development space. Developer types who mostly focus on WordPress probably have some passing familiarity with it. Maybe you ran across a project I mentioned, or heard about it at a WordCamp or meet-up. Or maybe you&#8217;ve seen Sarah&#8217;s intermittent coverage here at the Tavern when projects — most recently <a href="http://wptavern.com/buddypress-2-2-will-add-support-for-composer" target="_blank">BuddyPress</a> — take steps to support it.</p>\n<p>Composer is awesome. I think it&#8217;s the most exciting thing to happen to PHP in the last five years. WordPress is awesome. I&#8217;ve been using WordPress for nearly a decade now, and I wouldn&#8217;t recommend people use anything else for a beautiful, feature-rich publishing experience for the web. But I don&#8217;t think the two fit together as well as some would like, and that&#8217;s our focus.</p>\n<p>But don&#8217;t worry if you don&#8217;t know what Composer is, we&#8217;ll start with that. Then we&#8217;ll cover a bit about why WordPress is great and explain where the two fit together, sometimes a bit awkwardly. Finally, we&#8217;ll look at how and when it makes sense to incorporate Composer into WordPress work.</p>\n<h3>What is Composer Anyway?</h3>\n<p>In the very simplest version, Composer is dependency management for PHP. That is, it&#8217;s the way that I can pull in external code — libraries, classes, whatever you want to call them — that other people wrote, make sure it&#8217;s loaded for me to use, and never need to worry about it again. Many other languages have had solutions to this problem for awhile, of varying quality. In Ruby, <a href="https://rubygems.org/" target="_blank">Gems</a> are very well known. For front-end JavaScript development, there&#8217;s some standardization on Bower. Python&#8217;s pip has been around awhile. All of these things have similar roles, but the specific implementation is different.</p>\n<p>The big problem dependency managers solve is the way most people deal with dependencies — other people&#8217;s code they&#8217;re using to solve a problem. Without a tool like Composer, it is sloppy and haphazard. When you want a user-friendly date handling library, you go to your search engine, find a few hundred lines of code, copy them into a file, try your best to figure out how to work with them, and never ever know or care when the author of those lines later realizes they created a giant performance bottleneck or security vulnerability.</p>\n<p>Dependency managers also take care of the issue that some code you want to use may itself rely on other libraries, classes, etc., that you aren&#8217;t already using. This leads to big headaches. And in solving these issues, Composer also makes sure that it gets versions of all that software that work for all the various libraries your application makes use of.</p>\n<p>So with Composer, you&#8217;re saved from a lot of copy-pasting, you get super-powers about dependency issues, and you&#8217;re also given a much easier path to get performance improvements, security patches, new features, and so on.</p>\n<p>So you can, for example, tell Composer you want to use a nice date parsing library like <a href="https://github.com/briannesbitt/Carbon" target="_blank">Carbon</a>, set your code up to load the Composer dependencies for you before you use them (with a simple include &#8216;vendor/autoload.php''; to use this article&#8217;s only snippet of PHP) and you&#8217;re set to go. And when Carbon, or another dependency, gets updated, you&#8217;ll be able to quickly get the latest version with a simple run of Composer&#8217;s update command.</p>\n<h3>What Makes WordPress Great</h3>\n<p>Since you&#8217;re reading WPTavern, I’ll just say, succinctly, that WordPress is an easy-to-use CMS with a rich ecosystem of plugins and themes that make it easy to accomplish a wide variety of goals.</p>\n<p>WordPress is made to be easy-to-use — specifically, for the end user. An average WordPress user, who is put a little on edge by the mention of PHP code, is still able to easily change the look or behavior of their site just by installing a new theme and a few of the thousands of great plugins out there, right from the simple user interface. Even for commercial plugins and themes, the user can probably rely on few-click updates. Users get security updates to their core WordPress code without even needing to think about it.</p>\n<h3>How Composer and WordPress Can Work Together</h3>\n<p>As <NAME> called out in <a href="http://torquemag.io/improving-wordpress-development-workflow-composer/" target="_blank">a great article about Composer</a>, there are three basic ways WordPress and Composer can be combined:</p>\n<ul>\n<li>To manage dependencies for a theme or a plugin you’re developing</li>\n<li>To manage your themes and plugins used on a site</li>\n<li>For total site dependency management</li>\n</ul>\n<p>We&#8217;ll take on the last two first, as they&#8217;re the most common way in which people are talking about Composer.</p>\n<h3>Why Composer and WordPress Aren&#8217;t as Compatible as Peanut Butter and Jelly</h3>\n<p>So WordPress is great and easy to use for slightly-more-technical-than-average people. Composer is great — really really great — for developers. Don&#8217;t two great things make a new even greater thing? I mean: I love peanut butter, and I love jelly, and I think a peanut butter and jelly sandwich is one of the top ten foods invented in America. So why don&#8217;t I love the combination of Composer and WordPress?</p>\n<p>It&#8217;s not that they&#8217;re useless together. I think they can work together quite well, but I don&#8217;t think the solution of &#8220;run your whole WordPress site with Composer&#8221; that&#8217;s creeping into more and more places works well. It takes care of one problem — WordPress being awkward to manage and deploy for developer-types — by creating another — a less-than-great experience for the mortals left with the WordPress site who just want to install this new plugin.</p>\n<p>Basically, in trying to cram WordPress into Composer we’re forcing a square peg into a round hole. WordPress’ focus on end-user ease-of-use — just jump into the admin area and search for a plugin on the WordPress.org repository, or upload the Zip archive you got from the seller — is conceptually at odds with using Composer to install WordPress.</p>\n<p>The change of behavior, and frankly the greater knowledge required, makes it the opposite of a simple experience for most. For a site with dedicated and knowledgeable developers or admins around 24/7, that’s possibly a wise trade off, but for most WordPress sites I see, that’s a losing combination.</p>\n<h3>When Composer and WordPress are a Good Combination</h3>\n<p>Even for most WordPress cases, I think there&#8217;s one place where Composer&#8217;s great: when you have some dependencies in a theme or plugin. It&#8217;s the combination of WordPress and Composer I&#8217;ve tried repeatedly and recommend heartily. It is brilliant. When you&#8217;ve got a project that you know doesn&#8217;t really need to support down to PHP 5.2, and where you really do want some helper code, Composer is fantastic as a way to get that external code and seamlessly keep it up to date. (Autoloading, a Composer feature which we&#8217;ve ignored until this point, is also a big perk.)</p>\n<p>For plugin or theme development, I think Composer is great. If you&#8217;re making a plugin that would benefit from a great date-parsing library like Carbon, <a href="https://github.com/thephpleague/commonmark" target="_blank">a Markdown parser</a>, or something else, by all means use Composer to pull that in. For more WordPress specific stuff, such as <a href="https://github.com/WebDevStudios/CMB2" target="_blank">CMB2</a> or <a href="https://github.com/thomasgriffin/TGM-Plugin-Activation" target="_blank">TGM Plugin Activation</a>, it&#8217;s far better to pull that from Composer than an old-school copy and paste.</p>\n<h3>There&#8217;s a Time and a Place for Composer</h3>\n<p>WordPress and Composer aren’t useless together; far from it. But the &#8220;run your whole WordPress site with Composer&#8221; solution is only right for developer-intensive use of WordPress. If you&#8217;re using something like <a href="http://capistranorb.com/" target="_blank">Capistrano</a> for deployments already, go ahead and slot Composer right in beside it. For casual WordPress users, even those who&#8217;ve made or modified a theme or plugin before, Composer is most likely to end up feeling like awkward-to-integrate overkill.</p>\n<p>As a developer, you should know how to use Composer to take care of complex dependencies inside of a plugin or theme and then package up your Composer dependencies in a way that is invisible to the end user. Let them be blissfully unaware that you&#8217;ve used Composer at all. Let them keep that smooth and comfortable WordPress flow with core security and easy updates. That way we get the best of both!</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 14 Jan 2015 19:51:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:55:"WPTavern: The Features as Plugins First Model Is a Mess";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=33335";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:65:"http://wptavern.com/the-features-as-plugins-first-model-is-a-mess";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:7987:"<p>Released in late 2013, <a title="http://wptavern.com/wordpress-3-8-parker-released" href="http://wptavern.com/wordpress-3-8-parker-released">WordPress 3.8</a> was packed with new features including, a new theme browser experience, widgets area chooser, and a redesign of the backend. It&#8217;s also the first release to include a feature using a new formal development process called <strong>features-as-plugins</strong> first. The backend redesign started off as a plugin called MP6 with <a title="https://make.wordpress.org/design/2013/03/09/as-a-continuation-of-the-work-begun-in/" href="https://make.wordpress.org/design/2013/03/09/as-a-continuation-of-the-work-begun-in/">development beginning</a> in March, 2013.</p>\n<p>Prior to MP6, features were largely developed inside of core during the development cycle. This method caused some versions to be delayed, as was <a title="https://make.wordpress.org/core/version-3-6-project-schedule/" href="https://make.wordpress.org/core/version-3-6-project-schedule/">the case for WordPress 3.6</a>. The success of MP6 proved that by developing core features as plugins first, they were easier to test, manage, and merge into core at the appropriate time. Since adopting the development process, at least seven features have <a title="https://make.wordpress.org/core/features-as-plugins/" href="https://make.wordpress.org/core/features-as-plugins/">landed in core</a>. However, as an outsider looking in, the process seems to be falling apart.</p>\n<h2>MP6 Set The Bar</h2>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2013/10/mp6.jpg" rel="prettyphoto[33335]"><img class="size-full wp-image-10695" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2013/10/mp6.jpg?resize=800%2C452" alt="MP6 WordPress Admin Plugin" /></a>MP6 WordPress Admin Plugin\n<p>Each week, <NAME> and <NAME> released a new version for people to test. They also kept <a title="https://make.wordpress.org/design/tag/mp6/" href="https://make.wordpress.org/design/tag/mp6/">everyone updated</a> on what changed and left the comment form open to solicit feedback. This made it easy for people to participate in the development and testing process. By using P2 and the comment section, it was a lot easier to provide feedback. Since MP6 was a plugin, testing it was as easy as installing it on a stable version of WordPress.</p>\n<h2>The Lack of a Testing Audience</h2>\n<p>MP6 was available for download on the WordPress plugin directory. This made it accessible to anyone who wanted to test it. Recent plugins like the <a title="https://github.com/johnbillion/wp-session-manager" href="https://github.com/johnbillion/wp-session-manager">User Session Manager</a> by <NAME> don&#8217;t have any P2 posts on the Make WordPress Core site. As with several other features, discussion took place within a <a title="https://core.trac.wordpress.org/ticket/30264" href="https://core.trac.wordpress.org/ticket/30264">trac ticket</a>. Development of the plugin was handled on Github until it received a pass to be merged into core. Having a feature plugin only available on Github and a lack of communication surrounding the feature prevents a lot of people from potentially being part of the testing group.</p>\n<p>WordPress lead developer, <NAME>, <a title="https://make.wordpress.org/core/2014/11/03/open-update-thread/#comment-20735" href="https://make.wordpress.org/core/2014/11/03/open-update-thread/#comment-20735">noted in an open thread</a> in November of 2014, that when it comes to gathering a testing audience, no feature plugin has reached the standards set by MP6. For plugins to be merged into core, Boren suggested the following items should be met:</p>\n<ul>\n<li>Be present and up-to-date in the plugin directory.</li>\n<li>Be as ready to go on mobile as they are on desktop.</li>\n<li>Have visual records for major flows through all new interfaces on all devices.</li>\n<li>Have mature UI that isn’t going to derail the release train.</li>\n<li>Have a history of posting weekly updates to make/core.</li>\n<li>Have a history of regular plugin directory updates.</li>\n<li>Have a testing audience.</li>\n<li>Publish a merge consideration post on make/core complete with visual records and other diligence.</li>\n<li>Exist for at least one release cycle. Plugins created at the beginning of a release cycle should not be considered for merge until the next release.</li>\n</ul>\n<p>Several feature plugins fail to adhere to many of these proposed guidelines. In June of 2014, <NAME> added a &#8220;<a title="http://wptavern.com/wordpress-trunk-adds-new-beta-testing-tab-to-plugins-screen" href="http://wptavern.com/wordpress-trunk-adds-new-beta-testing-tab-to-plugins-screen">Beta Testing</a>&#8221; tab to the add plugins screen for those who use WordPress trunk. The tab lists <a href="http://make.wordpress.org/core/features-as-plugins/" target="_blank">Feature Plugins</a> that are available for testing.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/FeaturedPlugins.png" rel="prettyphoto[33335]"><img class="size-full wp-image-37253" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/FeaturedPlugins.png?resize=1025%2C404" alt="Featured Plugin Development Looks Dead" /></a>Feature Plugin Development Looks Dead\n<p>Based on the results in the screenshot, it looks like every feature plugin is dead in the water, including the WP API. However, if you look at the activity for <a title="https://github.com/WP-API/WP-API" href="https://github.com/WP-API/WP-API">WP API on Github</a>, there&#8217;s plenty of development taking place. How can more people participate in the testing process if feature plugins are not routinely updated and available for download in the directory? This needs to change sooner rather than later.</p>\n<h2>Feature Plugins are More Like Experiments</h2>\n<p>Feature plugins are not guaranteed to be added to WordPress. Instead, the process is similar to a lab with each one being an experiment. Sometimes a plugin won&#8217;t be added but parts of it will. For example, many of the improvements to the post editor in 3.9, 4.0, and 4.1 are derived from the <a title="https://wordpress.org/plugins/wp-front-end-editor/" href="https://wordpress.org/plugins/wp-front-end-editor/">Front-end Editor</a>. Maybe the core team should think about renaming them to <strong>feature experiments</strong> as it&#8217;s more representative of what they really are.</p>\n<h2>Project Management</h2>\n<p>When I brought up the subject of feature plugin development at the January 7th core development meeting, <NAME> <a title="https://wordpress.slack.com/archives/core/p1420669524004536" href="https://wordpress.slack.com/archives/core/p1420669524004536">made an excellent point</a>, &#8220;F<span class="message_content">eatures-as-plugins often become Projects without requirements or tasks, which leads to a non-schedule, and then often require all-or-nothing to go in.&#8221; Feature plugins are generally driven by one or two people who might be good developers, but lack project management skills. It&#8217;s almost like someone needs to constantly shepherd feature plugins to make sure they&#8217;re following a schedule and keeping them all on the same page.</span></p>\n<h2>The Process Needs to be Fixed</h2>\n<p>It&#8217;s clear that the feature plugin development process is disjointed at best. Communication is lacking, synchronized development between plugins on Github and WordPress.org is non-existent, and some plugins are merged too quickly. If users are to receive the maximum benefits from the experimental process, it needs to be orchestrated better. At least the core team is <a title="https://make.wordpress.org/core/2015/01/13/feature-plugins-in-4-2-and-beyond/" href="https://make.wordpress.org/core/2015/01/13/feature-plugins-in-4-2-and-beyond/">aware of the problems</a> and is working towards improving the situation for the 4.2 development cycle.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 14 Jan 2015 19:20:23 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:28:"Matt: Futuristic Predictions";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44568";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:44:"http://ma.tt/2015/01/futuristic-predictions/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:336:"<p>Yesterday&#8217;s post was a bit of a downer, so here io9 lists <a href="http://io9.com/the-most-futuristic-predictions-that-came-true-in-2014-1674887659">The Most Futuristic Predictions That Came True In 2014</a>, including technologically-assisted telepathy, 3d printing in space, laser weapons, and landing a robot on a comet.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 14 Jan 2015 15:15:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:101:"WPTavern: <NAME> Joins Forces with <NAME> to Provide WordPress Theme Review as a Service";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=37204";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:111:"http://wptavern.com/justin-tadlock-joins-forces-with-emil-uzelac-to-provide-wordpress-theme-review-as-a-service";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5464:"<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/red-pen.jpg" rel="prettyphoto[37204]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/red-pen.jpg?resize=1024%2C500" alt="photo credit: pollas - cc" class="size-full wp-image-37241" /></a>photo credit: <a href="https://www.flickr.com/photos/pollas/526544001/">pollas</a> &#8211; <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">cc</a>\n<p>Last week, <NAME> <a href="http://wptavern.com/emil-uzelac-launches-new-wordpress-theme-review-service" target="_blank">launched a new theme review service</a> targeted at WordPress developers and companies that want their products to adhere to best practices. Just one week after launch, <a href="http://justintadlock.com/" target="_blank"><NAME></a>, a fellow member of the WordPress.org theme review team and author of the <a href="http://themehybrid.com/hybrid-core" target="_blank">Hybrid Core</a> framework, is joining forces with Uzelac to provide professional reviews to customers.</p>\n<p>&#8220;I’m interested in seeing where this goes. We (DevPress when I was there) were going to offer this service. It never took off because the business itself didn’t,&#8221; Tadlock <a href="http://wptavern.com/emil-uzelac-launches-new-wordpress-theme-review-service#comment-62455" target="_blank">commented</a> on the original announcement. In the past he has conducted paid reviews privately for commercial theme vendors. Uzelac noticed his interest and pounced on the opportunity to partner with him.</p>\n<p>&#8220;To quote one of my all time favorite businessman, <NAME>: &#8216;Growth is never by mere chance; it is the result of forces working together,''&#8221; Uzelac said. &#8220;Justin and I exchanged a few ideas in my launching interview and that is where I learned from Jeff that he had this idea back in 2011.&#8221;</p>\n<p>Since this idea has been on Tadlock&#8217;s mind for several years, he didn&#8217;t hesitate to get involved. &#8220;It&#8217;s something I pretty much immediately hopped on. We already have a bit of a working relationship as admins for the Theme Review Team. I believe it&#8217;s a good fit,&#8221; he said.</p>\n<p>Based on his <a href="http://wptavern.com/justin-tadlock-publishes-the-results-of-his-themeforest-experiment" target="_blank">experience at ThemeForest</a> and his service on the WordPress.org Theme Review Team, Tadlock is convinced that developers of all experience levels can benefit from professional theme review:</p>\n<blockquote><p>Professional theme authors who want to bring the highest quality theme to market need assurance that their code is solid. There&#8217;s nothing worse than spending months building an awesome theme only to have it break for a bunch of users because you missed something minor. Even the most experienced theme authors (myself included) overlook problems that a fresh, second pair of eyes could easily find. We have editors for books, newspapers, and so on for the same reason. Authors, whether they&#8217;re writers or theme developers, are going to miss something.</p></blockquote>\n<p>Although themes have always been critical to the success of WordPress, theme review is just now emerging as a service for which one might want to hire a dedicated professional. Tadlock attributes this to the increasing complexity of theme development. &#8220;Themes are a lot more complex than they were just 5 years ago, for example. This isn&#8217;t just because theme authors are packing in more stuff,&#8221; he said.</p>\n<p>&#8220;Part of it is because basic WordPress theme development has gotten more complex. WordPress has been packing in a lot of new things in recent years, and themes need to account for a variety of possibilities. Just having someone running through unit tests will be a big help.&#8221;</p>\n<p>Several readers commented on the original announcement to suggest that Uzelac consider offering a certification or badge of some sort for commercial theme authors to display once their themes have passed a professional review. Tadlock is open to the idea but sees it more as a marketing tool for their customers to employ.</p>\n<p>&#8220;That&#8217;s probably a good idea, but I don&#8217;t think that&#8217;s what really matters,&#8221; he said. &#8220;I think the focus should be on giving our clients (theme devs) peace of mind. Once we are seen as a legit and well-known service, a badge or something will most likely become a useful marketing tool for theme authors.&#8221;</p>\n<p><a href="http://themereview.co/" target="_blank">The Theme Review service</a> has already gained traction, and Uzelac reports that he completed his fourth review today. &#8220;I&#8217;ve taken only what I could handle alone and in time. Now that Justin is in, we will do more,&#8221; he said. &#8220;In only few days after the initial launch the response and support has been overwhelming. This confirms that our community is in great need of experienced reviewers.&#8221;</p>\n<p>When it comes to WordPress theme review skills and experience, Uzelac and Tadlock&#8217;s forces combined are unparalleled in the WordPress community. Tadlock hopes that together they can expand their efforts to serve more commercial theme providers. &#8220;I&#8217;d like to see regular business from some of the major theme shops,&#8221; he said. &#8220;That&#8217;s probably the biggest goal I&#8217;d shoot for at the moment.&#8221;</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 13 Jan 2015 23:41:21 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:52:"WPTavern: VersionPress RC1 Released to Early Backers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=37215";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:62:"http://wptavern.com/versionpress-rc1-released-to-early-backers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3708:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/06/VersionPressFeaturedImage.png" rel="prettyphoto[37215]"><img class="size-full wp-image-24643" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/06/VersionPressFeaturedImage.png?resize=650%2C200" alt="Version Control Featured Image" /></a>Version Control Featured Image\n<p><a title="http://versionpress.net/" href="http://versionpress.net/">VersionPress</a>, the plugin that allows you to <a title="http://wptavern.com/versionpress-hopes-to-bring-version-control-to-the-masses" href="http://wptavern.com/versionpress-hopes-to-bring-version-control-to-the-masses">revert changes to a site</a> without having to restore a backup, is <a title="http://blog.versionpress.net/2015/01/announcing-early-access-program/" href="http://blog.versionpress.net/2015/01/announcing-early-access-program/">being released</a> to early backers. Near the middle of 2014, VersionPress creators <a href="https://twitter.com/borekb"><NAME></a> and <a href="https://twitter.com/JanVoracek"><NAME></a> created a crowdfunding campaign asking for $30K.</p>\n<p>The campaign started off on a rocky note, as several readers <a title="http://wptavern.com/versionpress-adopts-the-gpl-software-license" href="http://wptavern.com/versionpress-adopts-the-gpl-software-license">questioned what license</a> the plugin would use. Bernard decided to license the plugin using the GPLv2, but the decision was made near the middle of the campaign and the duo missed their goal by $14.5K. However, development continued and, for the past several months, the team has been hard at work getting the product to a point where people can start using it.</p>\n<p>A release candidate will be made available later this week to those who backed the project with $50 or more. If no major issues are reported, the team will release version 1.0 by the end of the month. However, the plugin will not be free to use. Those who want access to version 1.0 and future releases will need to join the <a title="http://versionpress.net/#get" href="http://versionpress.net/#get">early access program</a>. The program tries to strike a balance between making the plugin accessible to anyone who&#8217;s interested and funding development.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/VersionPressEarlyAccessProgramPrices.png" rel="prettyphoto[37215]"><img class="size-full wp-image-37221" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/VersionPressEarlyAccessProgramPrices.png?resize=956%2C308" alt="VersionPress Early Access Program Prices" /></a>Early Access Program Prices\n<p>VersionPress 1.0 is an initial release and won&#8217;t have all of the planned features such as sync and staging. Instead, those features will be rolled out in future versions of the product. According to their development plan:</p>\n<ul type="disc">\n<li>Version <strong>1.0</strong> will contain all the important <strong>basics</strong> – things like <strong>Undo</strong>, <strong>Rollback</strong>, <strong>automatic change tracking</strong>, support for all the built-in WordPress types, etc.</li>\n<li>Version <strong>2.0</strong> will bring full support for <strong>sync and staging</strong>.</li>\n<li>Versions <strong>3.0</strong>, <strong>4.0</strong> etc. will bring features from the <a href="http://docs.versionpress.net/en/release-notes/roadmap">roadmap</a>.</li>\n</ul>\n<p>I&#8217;m happy to see the duo remain committed to their goal of developing and shipping a working product. I still think VersionPress is a great idea and can&#8217;t wait to see how easy or difficult it is to use. Look for a thorough review on the Tavern sometime in February.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 13 Jan 2015 21:31:46 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:53:"WPTavern: Is 2015 The Year of WordPress Admin Themes?";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=37098";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:62:"http://wptavern.com/is-2015-the-year-of-wordpress-admin-themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3370:"<p>The CPO and partner of <a title="http://hmn.md/" href="http://hmn.md/">Human Made</a>, <NAME>, <a title="https://medium.com/@noeltock/wordpress-in-2015-ed6a4674a608" href="https://medium.com/@noeltock/wordpress-in-2015-ed6a4674a608">published</a> his WordPress predictions for 2015. His predictions include, custom dashboards, front-end editing, internationalization, and more. This could be the year of admin themes, but I think it largely depends on whether the <a title="https://github.com/WP-API/WP-API" href="https://github.com/WP-API/WP-API">WP API</a> is merged into core.</p>\n<p>Tock predicts we&#8217;ll see a substantial increase in different WordPress backend experiences. Although there are implementations like <a title="http://www.happytables.com/" href="http://www.happytables.com/">Happytables</a> and <a title="http://jettyapp.com/" href="http://jettyapp.com/">Jetty</a> which use the WP API, I don&#8217;t think we&#8217;ll see a lot of adoption until it&#8217;s vetted and merged into core.</p>\n<p>Regarding custom dashboard experiences, Tock makes a great point when he says:</p>\n<blockquote><p>For the most part, premium custom dashboards will fail. If it’s too generic, it likely can’t compete with WP-Admin (which actively pursues <em class="markup--em markup--li-em">one size fits all). </em>On the other hand, if it’s too niche or not very extendable, it won’t be of much use either. A minimal small business dashboard with front-end editing will likely be the most popular seller.</p></blockquote>\n<p>Additionally, I think his advice to those looking to experiment with the API should be considered, &#8220;Don’t create a custom dashboard because you want to change the way it looks, change it because you significantly want to improve the experience of <em class="markup--em markup--p-em">your </em>users.&#8221;</p>\n<p><NAME>&#8217;s admin design for <a title="http://wptavern.com/jason-schuller-to-re-enter-wordpress-theme-market-with-niche-admin-designs" href="http://wptavern.com/jason-schuller-to-re-enter-wordpress-theme-market-with-niche-admin-designs">Pickle</a> is a great example of a backend that correlates with what&#8217;s on the frontend. Everything that&#8217;s unnecessary to manage the frontend of the site is removed from the backend, creating a streamlined experience.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/10/pickle-admin.jpg" rel="prettyphoto[37098]"><img class="wp-image-32235 size-full" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/10/pickle-admin.jpg?resize=964%2C520" alt="pickle-admin" /></a>WordPress Backend For The Pickle Theme\n<p>The WP API will make it easy for developers to create a variety of different admin experiences, but users will ultimately decide which implementation is right for them. We may even see an entire category added to the <a title="https://wordpress.org/themes/" href="https://wordpress.org/themes/">WordPress theme directory</a> for admin themes.</p>\n<p>Whether the API is merged this year or next, custom admin themes are inevitable. In the future, there will likely be an admin theme that matches the way you use WordPress to harmonize the user experience. What that theme looks like is anyone&#8217;s guess, but I&#8217;m looking forward to reviewing custom admin experiences created by developers using the API.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 13 Jan 2015 21:18:14 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:67:"WPTavern: Better Notifications Plugin for WordPress Now Out of Beta";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=37180";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:77:"http://wptavern.com/better-notifications-plugin-for-wordpress-now-out-of-beta";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4881:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/better-notifications-for-wordpress-featured.png" rel="prettyphoto[37180]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/better-notifications-for-wordpress-featured.png?resize=660%2C300" alt="better-notifications-for-wordpress-featured" class="aligncenter size-full wp-image-37196" /></a></p>\n<p>The beta version of the <a href="https://wordpress.org/plugins/bnfw/" target="_blank">Better Notifications for WordPress</a> plugin was released last year, and it lay dormant for many months while its original collaborators searched for a new developer. The plugin was created to allow you to send customizable HTML emails to users based on different actions in WordPress.</p>\n<p><NAME>, founder of development agency <a href="http://www.voltronik.co.uk/" target="_blank">Voltronik</a>, commissioned the plugin to be built while creating <a href="http://www.voltronik.co.uk/case-studies/building-web-app-wordpress-re-imagining-bespoke-project-management-system/" target="_blank">a custom project management system</a> on top of WordPress. &#8220;One of the requirements was for notifications of new projects (WordPress categories) via email. I couldn&#8217;t find a plugin that sent notifications for events such as these, so I decided to write my own,&#8221; McConnell said. He worked with a developer to push the beta out over the course of a weekend, but that&#8217;s as far as it went last year.</p>\n<p>After finding a new developer, McConnell was able to get the plugin out of beta and develop a roadmap for future releases. Version 1.0 is a major overhaul and a complete re-write of the plugin. New features include:</p>\n<ul>\n<li>Auto-importer: Your old notifications will be imported when updating the plugin</li>\n<li>New &#8216;Generator&#8217; for easily creating and editing your notifications</li>\n<li>More options and notification types as per feedback via the forums</li>\n<li>Granular control over choosing either user roles or individual users you&#8217;d like to send a notification to</li>\n<li>Fully translatable</li>\n</ul>\n<p>Each email can be customized using HTML, CSS, and Voltronik&#8217;s extensive list of <a href="http://www.voltronik.co.uk/wordpress-plugins/better-notifications-for-wordpress-shortcodes/" target="_blank">shortcodes</a>, which means you can add your site&#8217;s logo, a simple design, and all kinds of content to the emails. You can also set the notifications to go to selected individual users or limit the notifications based on user roles.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/better-notifications-for-wordpress.png" rel="prettyphoto[37180]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/better-notifications-for-wordpress.png?resize=806%2C534" alt="better-notifications-for-wordpress" class="aligncenter size-full wp-image-37190" /></a></p>\n<p>In addition to customizing WordPress&#8217; default notification emails (i.e. new comments, registrations, password reset), the plugin adds options for the following:</p>\n<ul>\n<li>New category</li>\n<li>New post updated, published</li>\n<li>New [custom post type] updated, published, pending review</li>\n<li>Custom taxonomy &#8211; new term added</li>\n</ul>\n<p>Better Notifications for WordPress adds notification customization options for every custom post type you have registered on your site, which can be very useful if your CPT-based plugins don&#8217;t include notifications.</p>\n<p>If you&#8217;re trying to keep a tight rein on new category creation, this plugin will help keep you in the loop. It also makes it easy to brand your site communications better as an alternative to WordPress&#8217; ugly notification emails. The plugin was built to fit into WordPress like a natural part of the admin.</p>\n<p>McConnell identifies other scenarios where Better Notifications might be useful:</p>\n<ul>\n<li>Outreach: A blog/news site with hundreds of subscribers &#8211; use it to alert them of new blog posts</li>\n<li>Communication: A small, internal WordPress site &#8211; use it to alert staff of new posts and comments</li>\n<li>Monitor: A website for a new product or service &#8211; use it for notifications of pingbacks and trackbacks</li>\n<li>Security: To receive alerts of password reset requests and their corresponding email address</li>\n</ul>\n<p>If you need greater control and customization over WordPress&#8217; email notifications, this plugin handles just about every kind of notice on actions related to publishing. It&#8217;s well on its way to becoming a comprehensive tool and McConnell and his team are eager to improve the plugin based on user feedback. <a href="https://wordpress.org/plugins/bnfw/" target="_blank">Better Notifications for WordPress</a> version 1.0 is now available for download on WordPress.org.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 13 Jan 2015 19:58:47 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:74:"Post Status: GravityView raises the bar for WordPress video advertisements";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:30:"https://poststatus.com/?p=7332";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:48:"https://poststatus.com/gravityview-songadaymann/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1092:"<p>Okay, maybe it doesn&#8217;t raise the bar the way you think I mean. But this is worthwhile.</p>\n<p>I&#8217;m pretty busy building the new Post Status infrastructure, but not too busy to post this.</p>\n<p><a href="https://gravityview.co/">GravityView</a> is a WordPress plugin by <NAME> and Katz Web Services that lists Gravity Forms entries on your site in a nice way. It&#8217;s a slick plugin I&#8217;ve been meaning to dig further into since I learned about it at a WordCamp a few months back.</p>\n<p>Nevertheless, the folks behind GravityView have hired <a href="https://twitter.com/songadaymann">@songadaymann</a>, <a href="http://jonathanmann.net/about/">Jonathan Mann</a>, to create a new video for them, and it is&#8230; unforgettable.</p>\n<p></p>\n<p>I mean, I told you.</p>\n<p>This is the type of &#8220;hey this is funny / quirky&#8221; will probably better qualify for the members only newsletter in the future. But while I&#8217;m <a href="https://poststatus.com/club/" title="Post Status Membership Club">building that out</a>, you all get this nugget of fun for free.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 13 Jan 2015 19:28:23 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:10;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"Matt: Limits to Growth";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44525";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:38:"http://ma.tt/2015/01/limits-to-growth/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:637:"<p>&#8220;They modelled data up to 1970, then developed a range of scenarios out to 2100, depending on whether humanity took serious action on environmental and resource issues. [&#8230;] The book’s central point, much criticised since, is that “the earth is finite” and the quest for unlimited growth in population, material goods etc would eventually lead to a crash. So were they right?&#8221; The answer lies in <a href="http://www.theguardian.com/commentisfree/2014/sep/02/limits-to-growth-was-right-new-research-shows-were-nearing-collapse">Limits to Growth was right. New research shows we&#8217;re nearing collapse</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 13 Jan 2015 19:19:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:11;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:28:"Ping-O-Matic: A Prompt a Day";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://blog.pingomatic.com/?p=115";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:53:"http://blog.pingomatic.com/2015/01/13/a-prompt-a-day/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1387:"<p><a href="http://pingomatic.com/" target="_blank">Ping-O-Matic</a> is all about getting your latest content out into the world and driving more traffic to your blog. Sometimes, though, we need inspiration to write.</p>\n<p>Our friends at <em><a href="http://dailypost.wordpress.com" target="_blank">The Daily Post</a></em> published a free ebook of daily prompts: a gentle nudge to encourage a regular blogging habit. It&#8217;s available in four languages: <strong>English</strong>, <strong>French</strong>, <strong>Spanish</strong>, and <strong>Indonesian</strong>:</p>\n<p><a href="https://dailypost.wordpress.com/postaday/ebook-365-writing-prompts/" target="_blank">Ebook: 365 Writing Prompts</a></p>\n<p><a href="https://dailypost.wordpress.com/postaday/ebook-365-writing-prompts/"><img class=" size-large wp-image-116 aligncenter" src="https://pingomatic.files.wordpress.com/2015/01/ebook-365-featured-2.png?w=600&h=178" alt="ebook-365-featured 2" /></a></p>\n<p>Download the version you need &#8212; it&#8217;s free!</p><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pingomatic.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pingomatic.wordpress.com/115/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=blog.pingomatic.com&blog=68432&post=115&subd=pingomatic&ref=&feed=1" width="1" height="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 13 Jan 2015 18:16:46 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:20:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:100:"WPTavern: How to Customize The Body and Title Font in WordPress Default Themes Without Touching Code";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=37158";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:110:"http://wptavern.com/how-to-customize-the-body-and-title-font-in-wordpress-default-themes-without-touching-code";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3147:"<p>WordPress 4.1 ships with three default themes, <a title="https://wordpress.org/themes/twentythirteen" href="https://wordpress.org/themes/twentythirteen">Twenty Thirteen</a>, <a title="https://wordpress.org/themes/twentyfourteen" href="https://wordpress.org/themes/twentyfourteen">Twenty Fourteen</a>, and <a title="https://wordpress.org/themes/twentyfifteen" href="https://wordpress.org/themes/twentyfifteen">Twenty Fifteen</a>. Although the theme customizer enables you to edit a default theme&#8217;s colors, header image, and other attributes, it doesn&#8217;t give you the ability to change the body and title fonts. If you&#8217;d like to easily change fonts in a default theme using the customizer without using code, try the <a title="https://wordpress.org/plugins/styleguide/" href="https://wordpress.org/plugins/styleguide/">Styleguide plugin</a> created by <a title="http://www.binarymoon.co.uk/" href="http://www.binarymoon.co.uk/"><NAME></a>.</p>\n\n<a href="http://wptavern.com/how-to-customize-the-body-and-title-font-in-wordpress-default-themes-without-touching-code/2015customizerbeforestyleguide"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/2015CustomizerBeforeStyleguide.png?resize=297%2C668" class="attachment-full" alt="Customizer Before Styleguide is Activated" /></a>\n<a href="http://wptavern.com/how-to-customize-the-body-and-title-font-in-wordpress-default-themes-without-touching-code/2015customizerafterstyleguide"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/2015CustomizerAfterStyleguide.png?resize=291%2C826" class="attachment-full" alt="Customizer after Styleguide is Activated" /></a>\n\n<p>Once Styleguide is activated, you&#8217;ll see two new options added to the customizer. These allow you to edit the font for the body and title text. Styleguide will let you change fonts for headers and body text in almost any theme, but out of the box it supports Twenty Ten through Twenty Fifteen. There&#8217;s also support for <a title="https://creativemarket.com/BinaryMoon/108641-Puzzle-Responsive-WordPress-Theme?u=BinaryMoon" href="https://creativemarket.com/BinaryMoon/108641-Puzzle-Responsive-WordPress-Theme?u=BinaryMoon">Puzzle</a>, a theme created by Gillbanks.</p>\n<p>If you&#8217;re using one of the supported themes mentioned above then it will add font and color editing to the customizer, allowing you to style the themes as you wish. Developers can add support for their own themes by using the &#8216;add_theme_support&#8217; command. Check out the <a title="https://github.com/BinaryMoon/styleguide/tree/master/theme-styles" href="https://github.com/BinaryMoon/styleguide/tree/master/theme-styles">included theme-styles</a> to see live examples on how to use the command.</p>\n<p>Gillbanks notes that additional theme support will be added in the future. Until then, if you&#8217;re using one of WordPress&#8217; default themes, <a title="https://wordpress.org/plugins/styleguide/" href="https://wordpress.org/plugins/styleguide/">Styleguide</a> is an easy way to add the ability to customize the body and title fonts without touching a line of code.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 13 Jan 2015 04:28:52 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:13;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"Matt: Struggles of Distributed";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44585";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:46:"http://ma.tt/2015/01/struggles-of-distributed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:511:"<p>I think it&#8217;s good to show both sides of what a distributed organization is like, here are two essays by different <a href="http://automattic.com/">Automatticians</a>. <NAME> writes <a href="http://hoppycow.com/2015/01/04/still-figuring-it-out-communicating-remotely-with-lots-of-people/">Still figuring it out: communicating remotely with lots of people</a> and <NAME> writes on <a href="http://www.chrishardie.com/2015/01/distributed-vs-person-teams/">Distributed vs. In-person Teams</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 13 Jan 2015 00:48:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:14;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:94:"WPTavern: New BuddyPress Global Search Plugin Adds Unified Search of All BuddyPress Components";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=37106";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:104:"http://wptavern.com/new-buddypress-global-search-plugin-adds-unified-search-of-all-buddypress-components";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2938:"<p>The developers behind the <a href="http://www.buddyboss.com/" target="_blank">BuddyBoss</a> theme shop released a plugin today that has the potential to benefit nearly every BuddyPress social network. <a href="https://wordpress.org/plugins/buddypress-global-search/" target="_blank">BuddyPress Global Search</a> adds a unified search bar, allowing users to search through every BuddyPress component, along with pages, posts, and select custom post types.</p>\n<p>Once activated, the plugin turns the site&#8217;s WordPress search inputs into a global search, capable of returning results for any of the social content on the site. It also features a live dropdown of results as you are typing.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/buddypress-global-search.png" rel="prettyphoto[37106]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/buddypress-global-search.png?resize=1025%2C708" alt="buddypress-global-search" class="aligncenter size-full wp-image-37141" /></a></p>\n<p>The plugin&#8217;s settings page allows administrators to include or exclude any component or custom post type from the unified search.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/buddypress-global-search-settings.png" rel="prettyphoto[37106]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/buddypress-global-search-settings.png?resize=1025%2C532" alt="buddypress-global-search-settings" class="aligncenter size-full wp-image-37144" /></a></p>\n<p>The plugin was designed to work with any theme out of the box and should adopt your theme&#8217;s styling for BuddyPress search results. However, every theme is different and it may require additional tweaking to get it to perfectly compliment your current design.</p>\n<p>I spoke with BuddyBoss founder <NAME>, who said that the plugin is his company&#8217;s way of giving back to one of WordPress&#8217; sister projects. &#8220;I saw Matt at WCSF talking about WP companies giving back 5%, and was inspired to give back to BuddyPress,&#8221; he said. &#8220;Better search has always been lacking in BP. We built this one because we would use it ourselves on pretty much any site.&#8221;</p>\n<p>Eisenwasser plans to continue improving BuddyPress Global Search and will add new features based on user feedback. The BuddyBoss team is cooking up a string of free plugins and next on deck is one that will allow users to easily edit BuddyPress activity on the front end.</p>\n<p>If you administer a BuddyPress site and want your search results to return content from the social network, this plugin offers a solid option. Download <a href="https://wordpress.org/plugins/buddypress-global-search/" target="_blank">BuddyPress Global Search</a> for free from WordPress.org. Documentation and support can be found on the <a href="http://www.buddyboss.com/tutorials/" target="_blank">BuddyBoss website</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 12 Jan 2015 23:21:14 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:15;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:67:"WPTavern: Preview the New Design for the WordPress Themes Directory";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=37090";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:77:"http://wptavern.com/preview-the-new-design-for-the-wordpress-themes-directory";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3730:"<p>A long-awaited update to the official WordPress Themes Directory is in progress. Contributors on the <a href="http://make.wordpress.org/meta/" target="_blank">Meta team</a> for WordPress.org are picking up speed on the effort to move the theme repository away from bbPress and into a new plugin, comprised of a custom post type for the repository package and a theme uploader.</p>\n<p><NAME> posted a <a href="https://make.wordpress.org/meta/2015/01/09/theme-directory-update-19/" target="_blank">project update</a> to inform contributors that both the <a href="https://meta.trac.wordpress.org/browser/sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes" target="_blank">theme</a> and the <a href="https://meta.trac.wordpress.org/browser/sites/trunk/wordpress.org/public_html/wp-content/plugins/theme-directory" target="_blank">plugin</a> that help to power the directory are now open source and available for anyone to view on <a href="https://meta.trac.wordpress.org/ticket/745" target="_blank">meta.trac</a>. The plan is to match the new directory design to the WordPress admin themes browser, allowing users to filter themes in a similar way.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/new-themes-directory.png" rel="prettyphoto[37090]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/new-themes-directory.png?resize=1001%2C852" alt="new-themes-directory" class="aligncenter size-full wp-image-37112" /></a></p>\n<p>As you can see in the screenshots above, much of the same UI from WordPress is being re-purposed for the directory. Users will be able to select from all available filters in order to narrow down results.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/themes-directory-filters.png" rel="prettyphoto[37090]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/themes-directory-filters.png?resize=987%2C662" alt="themes-directory-filters" class="aligncenter size-full wp-image-37115" /></a></p>\n<p>A <a href="https://wordpress.org/themesnew/" target="_blank">live preview</a> of the new directory is available, though Obenland warns it&#8217;s still a bit buggy. The new design also includes an update for the <a href="https://wordpress.org/themesnew/commercial/" target="_blank">commercially-supported GPL themes</a> page.</p>\n<h3>Timeline for Launching the New Themes Directory</h3>\n<p>There is no set timeline for launching the new directory, though some of the larger tasks have already been accomplished. All the necessary API changes are complete, along with the upload process, theme suspension and approval capabilities, and theme version handling.</p>\n<p>Obenland identified a list of important tasks that will need to be accomplished before launching the new directory. These items include things like importing existing themes from bbPress, rewriting the theme API and downloads handling to work with WordPress, synchronizing theme review results as a cron job, etc.</p>\n<p>Matching the UI to the admin themes browser means that users will have a consistent experience, whether they are searching on WordPress.org or browsing in the WordPress admin. It also speeds up the process by enabling contributors to reuse work that has already been done for the core software.</p>\n<p>If you are interested in contributing with the WordPress Meta team, now is an exciting time to jump in. All of the code for the project is public on <a href="https://meta.trac.wordpress.org/ticket/745" target="_blank">meta.trac</a>, and you can offer feedback on the <a href="https://make.wordpress.org/meta/2015/01/09/theme-directory-update-19/" target="_blank">Make.WordPress.org/Meta</a> blog.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 12 Jan 2015 19:58:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:16;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:57:"WPTavern: BuddyPress 2.2 Beta 1 Now Available for Testing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=37060";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"http://wptavern.com/buddypress-2-2-beta-1-now-available-for-testing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2509:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/buddypress-logo-blue.png" rel="prettyphoto[37060]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/buddypress-logo-blue.png?resize=839%2C398" alt="buddypress-logo-blue" class="aligncenter size-full wp-image-30655" /></a></p>\n<p>Over the weekend, BuddyPress project lead <NAME> announced that <a href="https://buddypress.org/2015/01/buddypress-2-2-beta-1/" target="_blank">2.2 beta 1</a> is ready for testing. The upcoming release has been in development since last September. Jacoby&#8217;s campaign for six months of BuddyPress, bbPress, and GlotPress development was <a href="http://wptavern.com/buddypress-bbpress-and-glotpress-development-campaign-is-now-fully-funded" target="_blank">fully funded</a> in mid-December, allowing him to spend more time on the project in 2015.</p>\n<p>So far, the 2.2 milestone has <a href="https://buddypress.trac.wordpress.org/query?status=closed&group=resolution&milestone=2.2" target="_blank">127 resolved tickets</a>, which include enhancements and fixes across all components. Jacoby outlined the most significant changes that require more testing ahead of the official release:</p>\n<ul>\n<li><a href="http://wptavern.com/buddypress-2-2-on-track-to-provide-a-basic-member-type-api" target="_blank">Member types</a> will allow developers to register different types of users, i.e. ‘teacher’ vs. ‘student’.</li>\n<li>Post type activities will allow developers to <a href="http://wptavern.com/buddypress-2-2-to-add-custom-post-type-support-to-the-activity-stream" target="_blank">connect custom post types to activity stream items</a>.</li>\n<li>Numerous improvements to the Legacy template pack</li>\n<li>Several new query API’s (based on WordPress improvements) for retrieving more specific results</li>\n<li>Continued cache enhancements, particularly for multi-site and multi-network WordPress configurations</li>\n<li>Tons of under-the-hood improvements</li>\n<li>Increased coverage of inline code documentation, actions, and filters</li>\n</ul>\n<p>Now is good time for BuddyPress site administrators and plugin and theme developers to start testing their extensions against the beta. You can download the zip file for 2.2 beta 1 from the <a href="https://buddypress.org/2015/01/buddypress-2-2-beta-1/" target="_blank">release announcement</a>. The plugin&#8217;s core development team is aiming to get the official 2.2 release out to users by the end of January.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 12 Jan 2015 05:31:40 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:17;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"Matt: Thirty One";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44592";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:32:"http://ma.tt/2015/01/thirty-one/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3042:"<p>The first year of my thirties was both incredibly challenging and incredibly rewarding. I started a new decade and <a href="http://ma.tt/2014/01/toni-automattic-ceo/">a new role as CEO</a> at the same time, and at Automattic we grew to over 300 people and <a href="http://ma.tt/2014/05/new-funding-for-automattic/">raised money for the first time in a while</a>, both of which I couldn&#8217;t have predicted five or even two years ago.</p>\n<p>My big takeaway from the year was the importance of habits and small actions for accomplishing big things. To be productive I don&#8217;t need any fancy setups or project management software, just a well-groomed todo list and a pomodoro timer. This year on my birthday I find myself in Egypt which is an awe-inspiring place in many ways, but most striking to me has been the enduring beauty of craftsmanship with access to only the simplest of tools.</p>\n<p>In running, which I started this past summer while in Italy, I was able <a href="http://ma.tt/2014/10/run-better/">to slow down to go further and without injury</a>, and ended up putting in about 140 miles which took my fitness to be better than it&#8217;s been so far in my adult life. At least half of those miles were with friends and you can&#8217;t underestimate the importance of friends in helping you overcome mental blocks. (Also flew 425k miles in 2014, a new record. You can run anywhere and with minimal equipment &#8212; it&#8217;s a great way to explore a city.)</p>\n<p>Reading and writing, two of the activities still most important to me, benefitted from a &#8220;just do it&#8221; philosophy of putting one foot in front of the other. I <a href="http://ma.tt/2014/10/streak/">published more words</a> on ma.tt than any year since 2007, and I find blogging one of the most rewarding pastimes in my life. It was also a year of not trying to be all business all the time: I started reading fiction regularly after a decade away and letting the topics here drift wherever my interest is at the moment. Last year I talked about balance, and I think this is what drove many of the accomplishments I&#8217;m looking back on fondly now.</p>\n<p>I&#8217;m proud of how 2014 went, and I hope to build on that foundation to be a better person and reach even more ambitious milestones in the year to come. Here&#8217;s to slowing down to go further, and tackling big tasks with friends.</p>\n<p>Previously: <a href="http://ma.tt/2003/01/bday/">19</a>, <a href="http://ma.tt/2004/01/so-im-20/">20</a>, <a href="http://ma.tt/2005/01/hot-barely-legal-matt/">21</a>, <a href="http://ma.tt/2006/01/matt-22/">22</a>, <a href="http://ma.tt/2007/01/twenty-three/">23</a>, <a href="http://ma.tt/2008/01/twenty-four/">24</a>, <a href="http://ma.tt/2009/01/twenty-five/">25</a>, <a href="http://ma.tt/2010/01/twenty-six/">26</a>, <a href="http://ma.tt/2011/01/twenty-seven/">27</a>, <a href="http://ma.tt/2012/01/twenty-eight/">28</a>, and <a href="http://ma.tt/2013/01/twenty-nine/">29</a>, <a href="http://ma.tt/2014/01/matt-3-0/">30</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 12 Jan 2015 04:26:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:18;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:25:"Matt: NFL is a Non-Profit";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44285";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"http://ma.tt/2015/01/nfl-is-a-non-profit/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:283:"<p>Did you know the NFL is a non-profit? Slate says <a href="http://www.slate.com/articles/business/moneybox/2014/09/the_nfl_should_lose_its_tax_exempt_status_the_league_is_not_a_nonprofit.html">the NFL should lose its tax-exempt status: The league is not a “nonprofit.”</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 10 Jan 2015 18:12:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:19;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:18:"Matt: PGP Tutorial";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44579";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:34:"http://ma.tt/2015/01/pgp-tutorial/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:373:"<p>Speaking <a href="http://ma.tt/2014/12/donate-to-gnupg/">of PGP</a> and <a href="http://ma.tt/?p=44577">security</a>, this self-described<a href="http://notes.jerzygangi.com/the-best-pgp-tutorial-for-mac-os-x-ever/">best PGP tutorial for Mac OS X, ever</a> actually lives up to the promise. Check it out, makes encrypting and decrypting things on the fly super easy.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 10 Jan 2015 00:26:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:20;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:84:"WPTavern: Duplicate and Merge Posts: A New Editorial Plugin for WordPress Publishers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=37018";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:93:"http://wptavern.com/duplicate-and-merge-posts-a-new-editorial-plugin-for-wordpress-publishers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4489:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/duplicate-merge.jpg" rel="prettyphoto[37018]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/duplicate-merge.jpg?resize=772%2C330" alt="duplicate-merge" class="aligncenter size-full wp-image-37020" /></a></p>\n<p>WordPress sites with multiple users often run into challenges when attempting to work on the same content. Larger publications require more robust editorial tools for efficient collaboration between administrators, editors, contributors, and authors, who often need to jump in on the same post.</p>\n<p><a href="https://wordpress.org/plugins/duplicate-and-merge-posts/" target="_blank">Duplicate and Merge Posts</a> is a plugin that offers a new take on WordPress drafts. This editorial tool makes it possible to clone a live post, edit it, and then merge back the updated copy into the original post. It&#8217;s a essentially a far more simplified version of the <a href="http://wptavern.com/introducing-wordpress-post-forking-version-control-for-writers" target="_blank">Post Forking plugin</a> in that it offers fewer capabilities. Duplicate and Merge Posts is intended for the following workflow:</p>\n<p><strong>Original Post</strong> -> <strong>Clone</strong> -> <strong>Edit</strong> -> <strong>Merge back to Original Post</strong></p>\n<p>The plugin was created by WordPress developer <a href="https://twitter.com/DavidWells" target="_blank"><NAME></a> as part of a client project with <a href="http://exygy.com/" target="_blank">Exygy</a>. &#8220;We built it for a &#8216;Fortune 10&#8242; company for them to manage an internal documentation platform they have running on WordPress and figured the rest of the WordPress community would benefit from the plugin as well,&#8221; he said.</p>\n<p>Duplicate and Merge Posts works with both posts and pages. When activated, you&#8217;ll find a new &#8220;Duplicate and Edit&#8221; button at the top of the post on the front end, as well as in the post edit screen.</p>\n<p>The plugin&#8217;s settings screen allows you to set different editorial capabilities based on user role. For example, you might only allow administrators and editors to merge changes back into posts. The buttons shown in the post editor are limited to the user&#8217;s capabilities and allow for the following:</p>\n<ul>\n<li>View side-by-side differences</li>\n<li>Submit update for review</li>\n<li>Merge back into the original post</li>\n<li>Save as a new post</li>\n</ul>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/duplicate-merge-post.jpg" rel="prettyphoto[37018]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/duplicate-merge-post.jpg?resize=1025%2C523" alt="duplicate-merge-post" class="aligncenter size-full wp-image-37024" /></a></p>\n<p>Users with merge capabilities will receive an email notification when a post has edits ready for review. The plugin allows you to see all of the changes side-by-side for quick comparison.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/duplicate-merge-side-by-side.jpg" rel="prettyphoto[37018]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/duplicate-merge-side-by-side.jpg?resize=1025%2C523" alt="duplicate-merge-side-by-side" class="aligncenter size-full wp-image-37025" /></a></p>\n<p>The primary use case for the Duplicate and Merge plugin is likely to be multi-author publications. However, it&#8217;s flexible enough to enable more creative uses, such as turning your site into a wiki or allowing visitors to submit fixes for typos. The basic ability to clone posts can also be useful for sites using WordPress as a CMS with many pages that are similar in content.</p>\n<p>After testing Duplicate and Merge, I found that it works as advertised. This tool has the potential to improve your editorial workflow without creating additional confusion for contributors. It has a natural workflow that allows a publication team to get more eyes on the content before pushing edits live.</p>\n<p>You can download <a href="https://wordpress.org/plugins/duplicate-and-merge-posts/" target="_blank">Duplicate and Merge</a> from WordPress.org. It&#8217;s also available for contributions on <a href="https://github.com/Exygy/duplicate-and-merge-posts" target="_blank">GitHub</a>. If you want to see the plugin in action before installing it, check out the video below to tour its features.</p>\n<p><span class="embed-youtube"></span></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Jan 2015 20:02:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:21;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"WPTavern: AcademiaThemes One Year Later";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=37011";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:49:"http://wptavern.com/academiathemes-one-year-later";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2636:"<p>When <NAME> launched <a title="http://www.academiathemes.com/" href="http://www.academiathemes.com/">AcademiaThemes</a> in <a title="http://wptavern.com/academiathemes-wordpress-themes-specifically-for-academia" href="http://wptavern.com/academiathemes-wordpress-themes-specifically-for-academia">early 2014</a>, he did so with the goal of providing high quality themes for the education sector. With one year under his belt, I reached out to Brinzan to find out how the business is doing. The first year was rough, thanks in large part to <a title="http://moz.com/google-algorithm-change" href="http://moz.com/google-algorithm-change">algorithm changes</a> implemented by Google to its search engine in early 2014.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/01/AcademiaThemesUniversityTheme.jpg" rel="prettyphoto[37011]"><img class="aligncenter size-full wp-image-14054" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/01/AcademiaThemesUniversityTheme.jpg?resize=983%2C536" alt="Academia Themes University Theme" /></a></p>\n<p>The updates negatively impacted a majority of AcademiaThemes affiliates, &#8220;Many of our affiliates simply lost all of their traffic, so we lost basically all sales generated by them, which is an important source of revenue for new shops.&#8221; With affiliates having a hard time getting search engine traffic, Brinzan is finding it difficult to get new traffic to his site, &#8220;Now with almost all of the main affiliates out of the picture, it&#8217;s become incredibly hard to get traffic to our shop.&#8221;</p>\n<p>Despite a significant loss in traffic and affiliate revenue, Brinzan will continue to operate the site. In fact, he&#8217;s opened a new theme shop called <a title="http://www.energythemes.com/" href="http://www.energythemes.com/">EnergyThemes</a> aimed at the fitness market. EnergyThemes is the third theme company he owns that&#8217;s aimed at a specific niche. In addition to AcademiaThemes, he operates <a href="http://www.premiumwp.com/go/hermes-themes" target="_blank" rel="nofollow">HermesThemes</a> which offers themes for hotels.</p>\n<h2>The Achilles&#8217; Heel of Affiliate Programs</h2>\n<p>I&#8217;ve never owned a WordPress theme shop, but I understand how important affiliate programs are. They provide free advertising while helping to generate sales. I never realized updates to Google&#8217;s search engine could drastically reduce affiliate revenue and traffic if sites perform poorly based on those updates. This is an important thing to consider if you&#8217;re thinking about utilizing an affiliate program.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Jan 2015 11:50:08 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:22;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:67:"WPTavern: 5 WordPress Initiatives That Didn’t Make it Out of 2014";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=36477";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:74:"http://wptavern.com/5-wordpress-initiatives-that-didnt-make-it-out-of-2014";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:7788:"<p>Throughout the course of a year, several new ideas, products, and businesses are launched in the WordPress ecosystem. However, not all of them are destined for success. Here are five WordPress initiatives launched in 2014 that didn&#8217;t make the cut.</p>\n<h2>WPKindness</h2>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/02/WPKindnesslogo.jpg" rel="prettyphoto[36477]"><img class="aligncenter size-full wp-image-16049" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/02/WPKindnesslogo.jpg?resize=542%2C140" alt="WP Kindness Logo" /></a></p>\n<p>Launched <a title="http://wptavern.com/new-site-highlights-acts-of-kindness-in-the-wordpress-community" href="http://wptavern.com/new-site-highlights-acts-of-kindness-in-the-wordpress-community">in early</a> 2014 and created by <NAME>,<a title="http://wpkindness.com/" href="http://wpkindness.com/"> WPKindness</a> shared acts of kindness that have taken place throughout the WordPress community. The site used a combination of <a href="http://headwaythemes.com/">Headway</a>, <a href="http://www.gravityforms.com/">Gravity Forms</a>, <a href="http://wp-types.com/">Toolset</a> and <a title="http://www.wordpress.org" href="http://www.wordpress.org">WordPress,</a> allowing visitors to submit reports. At the time, I was concerned with a section within the site&#8217;s terms of service that explained affiliate links might be used in reports where companies are mentioned, “You understand wpkindness.com might use an affiliate link to the company you are submitting about.“ The concern is a moot point as the site is offline.</p>\n<h2>WPCollab</h2>\n<p>Fresh out of WordCamp Norway, Slobodan Manic created a <a title="http://make.wpcollab.co/" href="http://make.wpcollab.co/">WordPress collaboration group</a> with the idea that working together creates more opportunities to learn. The first task for the group was to create a WordPress plugin and submit it to the directory. Their first plugin, <a title="https://wordpress.org/plugins/hello-emoji/" href="https://wordpress.org/plugins/hello-emoji/">Hello Emoji,</a> successfully made it to the directory and was created by <strong>five people</strong> from <strong>four different continents</strong> in a <strong>two week</strong> time period.</p>\n<p>While WPCollab showed promise, <a title="http://make.wpcollab.co/2014/06/26/wpcollab-future/" href="http://make.wpcollab.co/2014/06/26/wpcollab-future/">the lack of focus and the inability to manage several contributors</a> from across the world caused the project to lose momentum.</p>\n<h2>Feuilles</h2>\n<p>When <a title="http://wptavern.com/feuilles-app-aims-to-replace-editorially-offers-publishing-to-github-wordpress-and-dropbox" href="http://wptavern.com/feuilles-app-aims-to-replace-editorially-offers-publishing-to-github-wordpress-and-dropbox">Editorially closed its</a> doors in May of 2014, it took all of its cool writing collaboration tools with it. A new project called <a title="https://feuill.es/" href="https://feuill.es/">Feuilles</a> picked up where Editorially left off with an app that provided some of the features Editorially users loved most.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/05/Feuilles.jpg" rel="prettyphoto[36477]"><img class="aligncenter size-full wp-image-23799" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/05/Feuilles.jpg?resize=962%2C509" alt="Feuilles" /></a></p>\n<p>Feuilles allowed users to publish to Github, WordPress.com, and Dropbox at the same time. <a href="https://twitter.com/alexduloz" target="_blank"><NAME>,</a> one of the project&#8217;s creators, aimed to make Feuilles a language/device agnostic CMS with in-house publishing. Unfortunately, the project never made it that far and the website devoted to the project fails to redirect properly.</p>\n<h2>WP School</h2>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/01/WpSchoolFrontPage.jpg" rel="prettyphoto[36477]"><img class="aligncenter size-full wp-image-14202" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/01/WpSchoolFrontPage.jpg?resize=928%2C452" alt="WpSchoolFrontPage" /></a></p>\n<p>Created by <NAME>, <a title="http://www.wpschool.org/" href="http://www.wpschool.org/">WP School</a> launched with the goal of bringing WordPress education to the masses. Classified as a (<strong>MOOC</strong>) or massive open online course, the site was dedicated to offering WordPress education and online courses in a variety of languages for people to use across the world. In order to get off the ground, Asteraky created a <a title="https://www.indiegogo.com/projects/wordpress-school-mooc" href="https://www.indiegogo.com/projects/wordpress-school-mooc">crowdfunding campaign</a> asking for $25K. The campaign ended with only $1,087 pledged. With a severe lack of funding, WP School never made it out of the gate.</p>\n<h2>Netropolitan</h2>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/netropolitan.jpg" rel="prettyphoto[36477]"><img class="aligncenter size-full wp-image-30802" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/netropolitan.jpg?resize=1025%2C640" alt="netropolitan" /></a></p>\n<p><a title="http://netropolitan.info/" href="http://netropolitan.info/">Netropolitan</a> also known as the &#8220;Facebook for Rich People&#8221; <a title="http://wptavern.com/netropolitan-facebook-for-rich-people-is-powered-by-wordpress-and-buddypress" href="http://wptavern.com/netropolitan-facebook-for-rich-people-is-powered-by-wordpress-and-buddypress">launched in late 2014</a>. The site used WordPress and BuddyPress to provide a social network for those who had nothing better to do with $9K. After paying a $9K entrance fee, it cost $3K a year to continue membership. Netropolitan was featured on <a href="http://www.cnn.com/2014/09/16/tech/social-media/netropolitan-social-media/" target="_blank">CNN</a> and other major news outlets across the globe.</p>\n<p>When <a title="http://www.vice.com/read/this-guy-is-creating-a-facebook-for-rich-people-917" href="http://www.vice.com/read/this-guy-is-creating-a-facebook-for-rich-people-917">Vice asked the site&#8217;s creator </a><NAME>, why he created the site, he responded, &#8220;This whole thing started because when I was traveling in my work, I wanted to get in on a social event where basically I could meet people like myself.&#8221; There must not be a lot of people like him because the service recently closed. Touch-Peters left the site online with the following message:</p>\n<blockquote><p>It is with a sad heart that I report that the Netropolitan Club has been closed. In the end, there was not sufficient interest in our service among the targeted demographic to operate it as a going concern. (That said, I am happy to report that all paid members received full refunds.)</p>\n<p>I personally would like to thank all those involved in this enterprise – employees, contractors, publicists, et.al. – as well as the paying members who took a chance on an unprecedented business model. I also would like to thank both the public and the worldwide media for their relatively intense interest, whether positive or negative. (It’s not often that <NAME> tells jokes about your business on &#8216;The Tonight Show&#8217;.)</p>\n<p>Thanks again, one and all. I’ll see you at the concert hall</p></blockquote>\n<h2>There&#8217;s Likely More Than 5</h2>\n<p>There are likely several more products, ideas, and businesses outside of what we covered on the Tavern, that launched in 2014, but shut down before 2015 arrived. Keep an eye on the Tavern as there are several things that launched that are doing well and in the next few weeks, we&#8217;ll update you on how they&#8217;re doing.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Jan 2015 10:09:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:23;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:42:"WPTavern: The Geeky Tech Behind WordSesh 3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=37001";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:52:"http://wptavern.com/the-geeky-tech-behind-wordsesh-3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2756:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/WordSesh3FeaturedImage.png" rel="prettyphoto[37001]"><img class="aligncenter size-full wp-image-32961" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/WordSesh3FeaturedImage.png?resize=650%2C266" alt="WordSesh 3 Featured Image" /></a></p>\n<p>WordSesh 3 attracted <a title="http://wptavern.com/wordsesh-3-attracts-3000-unique-viewers-from-89-countries" href="http://wptavern.com/wordsesh-3-attracts-3000-unique-viewers-from-89-countries">more than 3,000 unique viewers from 89 countries</a>. This equates to nearly three times the amount of people who attended <a title="http://wptavern.com/wordpress-beyond-boundaries-a-recap-of-wordcamp-europe-2014" href="http://wptavern.com/wordpress-beyond-boundaries-a-recap-of-wordcamp-europe-2014">WordCamp Europe 2014</a>. With so many people interacting with the <a title="http://wordsesh.org/" href="http://wordsesh.org/">WordSesh site</a> and 24 hours of live video sessions, it&#8217;s imperative that a webhost be able to deliver great performance. For the third annual event, <a title="http://scottbasgaard.com/" href="http://scottbasgaard.com/"><NAME></a> partnered with <a title="http://blog.siteground.com/hosting-wordsesh-2014/" href="http://blog.siteground.com/hosting-wordsesh-2014/">SiteGround</a>.</p>\n<p>In a <a title="http://blog.siteground.com/hosting-wordsesh-2014/" href="http://blog.siteground.com/hosting-wordsesh-2014/">post published on the company blog</a>, SiteGround employee <NAME> explains how they were able to hand the traffic load and keep the site online. The post is filled with geeky terminology and provides a glimpse into what it takes to host a mission critical site. The company used Linux Containers, built redundant infrastructure from the start, utilized dynamic caching, and more.</p>\n<blockquote><p>Since we didn’t want to risk any downtime with WordSesh, we opted for a hosting technology that we love for its almost unlimited ability to scale on the fly without downtime – the Linux containers. Using containers gave us the peace of mind that no matter what happens we will be able to add more resources both vertically and horizontally to each part of the infrastructure we built for WordSesh. At any moment, we had people on duty ready to add more resources or face any other potential issues.</p></blockquote>\n<p>Although I don&#8217;t understand many of the technologies involved, the end result is that the WordSesh 3 site stayed online throughout the entire event. I didn&#8217;t encounter any errors or experience problems watching sessions live. If you experienced problems accessing the WordSesh site during the event, let us know in the comments.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Jan 2015 09:50:10 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:24;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:97:"WPTavern: WordPress 4.2 Will Automatically Enable Pretty Permalinks for New Sites on Installation";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=36867";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:107:"http://wptavern.com/wordpress-4-2-will-automatically-enable-pretty-permalinks-for-new-sites-on-installation";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2506:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/links.jpg" rel="prettyphoto[36867]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/links.jpg?resize=1024%2C508" alt="photo credit: gordon2208 - cc" class="size-full wp-image-36986" /></a>photo credit: <a href="https://www.flickr.com/photos/gordon2208/4987669000/">gordon2208</a> &#8211; <a href="http://creativecommons.org/licenses/by-nc-nd/2.0/">cc</a>\n<p><a href="http://codex.wordpress.org/Changelog/1.0" target="_blank">WordPress 1.0</a> introduced search engine friendly permalinks using mod_rewrite. Setting your site to use pretty permalinks is usually one of the first things that administrators do after installation.</p>\n<p>WordPress 4.2 will add a new function that will <a href="https://core.trac.wordpress.org/changeset/31089" target="_blank">automatically enable pretty permalinks</a>, if the server supports it, at the time of installation. This means that in most cases you&#8217;ll never be greeted with ugly permalinks again.</p>\n<p>The new function is the result of a <a href="https://core.trac.wordpress.org/ticket/6481" target="_blank">ticket</a> that was originally opened seven years ago. In the upcoming release, pretty permalinks will be enabled if WordPress can verify that they work. It will cycle through the various permalink formats, and if they all fail to work, WordPress will fall back to ugly permalinks.</p>\n<p>By default, WordPress will set the following permalink structure for a new site, if possible, using mod_rewrite or nginx rewriting: <code>/%year%/%monthnum%/%day%/%postname%/</code></p>\n<p>Under configurations without rewrites enabled, it will set <code>/index.php/%year%/%monthnum%/%day%/%postname%/</code> for <a href="http://codex.wordpress.org/Using_Permalinks#PATHINFO:_.22Almost_Pretty.22" target="_blank">PATHINFO</a> (&#8220;Almost Pretty&#8221;) permalinks.</p>\n<p><a href="https://profiles.wordpress.org/ericlewis" target="_blank"><NAME></a>, a contributor on the ticket, <a href="https://wordpress.slack.com/archives/core/p1419636021003661" target="_blank">commented</a> on the upcoming change, &#8220;Delivering pretty permalinks by default seems in line with a bunch of core philosophies &#8211; great out-of-the-box, design for the majority, simplicity, clean, lean and mean.&#8221;</p>\n<p>If you frequently create new WordPress sites or development sites, the automatically enabled pretty permalinks in 4.2 should save you a step in the setup process.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Jan 2015 06:11:40 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:25;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:117:"WPTavern: Plugin Authors: How to Avoid Download Prompts Associated with Screenshots on the WordPress Plugin Directory";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=36949";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:126:"http://wptavern.com/plugin-authors-how-to-avoid-download-prompts-associated-with-screenshots-on-the-wordpress-plugin-directory";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2599:"<p>If you&#8217;ve ever <a title="https://wordpress.org/plugins/woocommerce/screenshots/" href="https://wordpress.org/plugins/woocommerce/screenshots/">clicked on a screenshot</a> in the WordPress plugin directory and received a download prompt, you&#8217;re not the only one. In fact, it&#8217;s a widespread issue that affects a number of plugins. <a title="http://wptavern.com/dear-wordpress-plugin-developer-please-add-screenshots" href="http://wptavern.com/dear-wordpress-plugin-developer-please-add-screenshots">Screenshots are important</a> as they help with troubleshooting, previewing features, and give users a sense of what to expect when it&#8217;s activated. But if you can&#8217;t see important details, they&#8217;re a moot point.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/PluginScreenshotDownloadPrompt.png" rel="prettyphoto[36949]"><img class="size-full wp-image-36950" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/PluginScreenshotDownloadPrompt.png?resize=609%2C406" alt="Plugin Screenshot Download Prompt" /></a>Plugin Screenshot Download Prompt\n<p><NAME>, who reviews plugins before they&#8217;re added to the directory, <a title="https://make.wordpress.org/plugins/2014/03/20/plugin-screenshots-downloading/" href="https://make.wordpress.org/plugins/2014/03/20/plugin-screenshots-downloading/">wrote about the issue</a> in early 2014. The prompt appears for images that use the incorrect <a title="http://en.wikipedia.org/wiki/Internet_media_type" href="http://en.wikipedia.org/wiki/Internet_media_type">MIME Type</a>. Otto explains how to set the correct MIME Type using TortiseSVN on Windows or where to look if you use a different SVN client.</p>\n<blockquote><p>On Windows, using TortoiseSVN, you can right click the screenshot file, and select the TortoiseSVN-&gt;Properties menu. There you will find the svn:mime-type property, probably incorrectly set to “application/octet-stream”. Change that to the proper mime type of “image/png” or “image/jpg” accordingly. Afterwards, commit the change.</p>\n<p>If you prefer command line SVN:<br />\n<code>svn propset svn:mime-type image/png screenshot-1.png<br />\nsvn commit<br />\n</code><br />\nOr similar. If somebody uses a different SVN client, look for “properties” and then the svn:mime-type property.</p></blockquote>\n<p>Once the changes are made, upload them to the plugin directory. They&#8217;ll take effect once the directory is synchronized. It&#8217;s a simple change that vastly improves the effectiveness and user experience of viewing screenshots.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Jan 2015 01:19:02 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:26;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:25:"Matt: Easy Security Guide";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44577";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"http://ma.tt/2015/01/easy-security-guide/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:422:"<p>There&#8217;s a simple, unattributed site called <a href="http://www.decentsecurity.com/">Decent Security which has very nice common-sense but effective advice on security</a>. I believe it&#8217;s from the same person as behind <a href="https://twitter.com/swiftonsecurity">the Infosec <NAME> account</a>. It&#8217;s refreshing like <a href="https://www.schneier.com/">reading <NAME>nier&#8217;s blog</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Jan 2015 00:40:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:27;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:47:"WPTavern: WPWeekly Episode 176 – <NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:44:"http://wptavern.com?p=36934&preview_id=36934";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:53:"http://wptavern.com/wpweekly-episode-176-farewell-kim";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1643:"<p>This special episode of WordPress Weekly doesn&#8217;t have any news or plugin picks of the week. Instead, it&#8217;s dedicated to the <a href="http://wptavern.com/kim-parsell-affectionately-known-as-wpmom-passes-away" title="http://wptavern.com/kim-parsell-affectionately-known-as-wpmom-passes-away" title="http://wptavern.com/kim-parsell-affectionately-known-as-wpmom-passes-away" title="http://wptavern.com/kim-parsell-affectionately-known-as-wpmom-passes-away">late Kim Parsell</a>.</p>\n<p>I describe the experience of January 2nd where <NAME> and I drive to Kim Parsell&#8217;s house to check on her. After telling the story, I share a couple of funny memories I have of Kim, like the time I called her #wpgrandma. Near the end of the show, we discuss the outpouring of support from the WordPress community and <a href="http://wpmom.org/about-kim-parsell/" title="http://wpmom.org/about-kim-parsell/">a special memorial page</a> created by <NAME>.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, January 14th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="http://www.wptavern.com/feed/podcast" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #176:</strong><br />\n</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 08 Jan 2015 22:43:32 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:28;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:82:"WPTavern: Access Monitor Plugin Tests WordPress Sites for Accessibility Compliance";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=36903";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:92:"http://wptavern.com/access-monitor-plugin-tests-wordpress-sites-for-accessibility-compliance";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6151:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/access-monitor.jpg" rel="prettyphoto[36903]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/access-monitor.jpg?resize=772%2C250" alt="access-monitor" class="aligncenter size-full wp-image-36914" /></a></p>\n<p>Web accessibility guideline are constantly in flux, making it difficult for site administrators to keep pace. Even if you have a decent grasp on the basics, changes to your theme, plugins, and content can introduce new accessibility issues that you didn&#8217;t anticipate. <a href="http://www.w3.org/WAI/bcase/pol" target="_blank">Legal requirements</a> may soon put publishers under the gun for accessibility compliance.</p>\n<p>Plugin developer and WordPress Accessibility team member <a href="https://www.joedolson.com/" target="_blank"><NAME></a> has just released a tool that will help the average WordPress site administrator to identify and tackle accessibility issues with the help of automated testing. <a href="https://wordpress.org/plugins/access-monitor/" title="Access Monitor" target="_blank">Access Monitor</a>, now available on WordPress.org, is a plugin that runs accessibility tests on both the front and back ends of your site, powered by the new <a href="http://tenon.io/" target="_blank">Tenon.io</a> API.</p>\n<p>Tenon is an automated accessibility testing service developed by <a href="http://www.karlgroves.com/" target="_blank"><NAME></a>. It&#8217;s designed to make accessibility testing less painful for developers. Groves has taken the &#8220;API first&#8221; route in order to create flexibility for developers interested in building tools for content management systems, browser extensions, IDE plugins, etc.</p>\n<p>Access Monitor is the first plugin to use the Tenon API for testing WordPress sites in the admin. It generates a report that identifies each issue, where it&#8217;s found, and who is affected by it. With that knowledge you can work on improving your site&#8217;s overall accessibility. Here is an example of results for a single page:</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/a11y-single-page-results.png" rel="prettyphoto[36903]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/a11y-single-page-results.png?resize=813%2C864" alt="a11y-single-page-results" class="aligncenter size-full wp-image-36924" /></a></p>\n<p>Accessibility reports generated by the plugin are configurable and can return results for multiple pages at once.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/a11y-multiple-page-report.png" rel="prettyphoto[36903]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/a11y-multiple-page-report.png?resize=1025%2C769" alt="a11y-multiple-page-report" class="aligncenter size-full wp-image-36927" /></a></p>\n<p>Access Monitor includes the following features in its automated testing:</p>\n<ul>\n<li>Run a one-time test or schedule a test to be run on a weekly or monthly basis.</li>\n<li>All tests run through the system are saved for later review and comparison so you can track the performance of a page or a test over time.</li>\n<li>Duplicate issues are filtered out from the display. If an accessibility issue appears on multiple pages, it will only be shown the first time it&#8217;s identified.</li>\n<li>Re-run any test from the Accessibility Reports screen at any time, which creates a new test on the same pages and using the same test parameters.</li>\n<li>Test the page you&#8217;re viewing in the admin, using a link in the admin bar labeled &#8216;A11y Check.&#8217;</li>\n</ul>\n<h3>What Does Access Monitor Test?</h3>\n<p>It&#8217;s important to note that a perfect score from Access Monitor doesn&#8217;t necessarily mean that the theme you&#8217;re using meets WordPress accessibility guidelines or that your site is perfectly accessible. Dolson notes that the plugin only tests issues that are machine-testable, which means that it cannot detect keyboard issues, color contrast, etc.</p>\n<p>Access monitor incorporates the current 72 tests outlined by the <a href="http://www.tenon.io/documentation/what-tenon-tests.php" target="_blank">WCAG criterion</a> for accessibility best practices. This includes items such non-text content, focus order, images of text, and the ability to resize text. Tenon plans to add 43 new tests in the first quarter of 2015.</p>\n<p>To get an idea of how the testing works without installing the plugin, you can run your site through the <a href="http://tenon.io/" target="_blank">Tenon.io</a> testing tool. Having the Access Monitor plugin on hand is useful for when you want to test multiple pages, schedule tests, and keep records in order to monitor your site&#8217;s accessibility performance.</p>\n<p>The WordPress Accessibility Team, of which Dolson is a member, is mobilizing in 2015 to carry out a plan of action that would <a href="http://wptavern.com/wordpress-accessibility-team-is-mobilizing-to-make-accessibility-required-for-wordpress-org-themes" target="_blank">make accessibility required for all themes hosted on WordPress.org</a>. The team has a number of hurdles that it will have to overcome in order to get this approved by the Theme Review team, including further education for theme developers.</p>\n<p>Automated accessibility testing for WordPress is an important first step towards making users and developers more aware of accessibility best practices. With high quality automated tests like these, there&#8217;s no excuse for being completely in the dark about your site&#8217;s accessibility issues. Dolson&#8217;s new tool puts the knowledge of accessibility experts into the hands of the average WordPress user, who is capable of implementing many of the text content-related recommendations.</p>\n<p>If you want to see how your site measures up with current web accessibility guidelines, download <a href="https://wordpress.org/plugins/access-monitor/" target="_blank">Access Monitor</a> from WordPress.org. The <a href="http://tenon.io/register.php" target="_blank">Tenon.io API key</a> is free to anyone who signs up.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 08 Jan 2015 22:26:40 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:29;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:84:"WPTavern: Show Support for Free Speech with the Je Suis Charlie Plugin for WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=36865";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:94:"http://wptavern.com/show-support-for-free-speech-with-the-je-suis-charlie-plugin-for-wordpress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3767:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/je-suis-charlie.png" rel="prettyphoto[36865]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/je-suis-charlie.png?resize=772%2C350" alt="je-suis-charlie" class="aligncenter size-full wp-image-36878" /></a></p>\n<p>This week the world mourns with Parisians following yesterday&#8217;s terrorist attack at the headquarters of satirical newspaper <a href="http://www.charliehebdo.fr/index.html" target="_blank"><NAME></a>. Masked gunmen, claiming to be Yemeni al-Qaida, killed 12 people, including eight journalists and two police officers. The attackers targeted Charlie Hebdo&#8217;s daily editorial meeting, in protest of the publication&#8217;s controversial satirical depictions of religious figures.</p>\n<p>In light of the tragedy, French WordPress developer <a href="http://boiteaweb.fr/" target="_blank"><NAME></a> released a new plugin in support of the #jesuischarlie hashtag created to show solidarity with victims of the attack. The <a href="https://wordpress.org/plugins/je-suis-charlie/" target="_blank">Je Suis Charlie plugin</a> adds a black ribbon to the top right or left of your site.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/jesuischarlie.png" rel="prettyphoto[36865]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/jesuischarlie.png?resize=929%2C693" alt="jesuischarlie" class="aligncenter size-full wp-image-36886" /></a></p>\n<p>The banner links to the <a href="http://twitter.com/#jesuischarlie" target="_blank">#jesuischarlie Twitter hashtag</a>, which supporters are using to advocate for freedom of expression.</p>\n<blockquote class="twitter-tweet" width="550"><p>You can kill journalists, cartoonists. You can''t kill the freedom of the press. You have only made their message stronger. <a href="https://twitter.com/hashtag/JeSuisCharlie?src=hash">#JeSuisCharlie</a></p>\n<p>&mdash; <NAME> (@EmilyKoch22) <a href="https://twitter.com/EmilyKoch22/status/552812847651377153">January 7, 2015</a></p></blockquote>\n<p></p>\n<blockquote class="twitter-tweet" width="550"><p><a href="https://twitter.com/hashtag/Freedomofthepress?src=hash">#Freedomofthepress</a> cannot be killed. <a href="https://twitter.com/hashtag/FreedomOfSpeech?src=hash">#FreedomOfSpeech</a> cannot be suppressed. We are journalists, we will not be silenced. <a href="https://twitter.com/hashtag/JeSuisCharlie?src=hash">#JeSuisCharlie</a></p>\n<p>&mdash; <NAME> (@katajalian) <a href="https://twitter.com/katajalian/status/552825744284712960">January 7, 2015</a></p></blockquote>\n<p></p>\n<p>You can see a live demo of the plugin on <a href="http://boiteaweb.fr/" target="_blank">Potier&#8217;s website</a>. In just one day, the plugin has already been downloaded more than 700 times.</p>\n<p>Since WordPress is one of the most powerful vehicles for free speech on the web, Potier decided to use his plugin development skills to create a way for WordPress users to show their support. &#8220;I did it to show my support for <NAME>, for all the families of the casualties, for all people involved in this tragedy,&#8221; he said.</p>\n<p>Potier believes that the banner means more than simply showing support for victims but is also a rallying cry in support of freedom of speech. &#8220;Saying &#8216;I am Charlie&#8217; means that nobody can shut the mouth of the freedom of expression,&#8221; he said.</p>\n<p>&#8220;I am also Charlie; we are all Charlie. Terrorists, you killed 12 people, but you can&#8217;t kill all of us, you can&#8217;t even try. You thought you could kill this freedom by taking down this newspaper? Instead, you raise a country with its beloved friends, all over the world.&#8221;</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 08 Jan 2015 19:55:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:30;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:106:"Post Status: Yoast Google Analytics plugin introduces stats dashboards, with lessons learned along the way";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:30:"https://poststatus.com/?p=7305";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"https://poststatus.com/yoasts-google-analytics-plugin/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6046:"<p>I look at my website stats a lot, but I typically just want a really brief snapshot to give me an idea of what&#8217;s happening <em>right now</em> on my website. I run both Jetpack&#8217;s WordPress.com Stats module and Google Analytics on this site, but I actually view the WordPress.com Stats many times more than Google Analytics, because they are right there in my dashboard.</p>\n<h3>New Analytics dashboards by Yoast</h3>\n<p>With the update to <a href="https://yoast.com/wordpress/plugins/#analytics">Yoast&#8217;s Google Analytics plugin</a>, I can now get a similarly quick glance with either plugin.</p>\n<p><img class="aligncenter size-large wp-image-7307" src="https://poststatus.com/wp-content/uploads/2015/01/yoast-analytics-dashboard-752x419.png" alt="yoast-analytics-dashboard" width="752" height="419" /></p>\n<p><img class="aligncenter size-large wp-image-7306" src="https://poststatus.com/wp-content/uploads/2015/01/yoast-analytics-reports-dashboard-752x423.png" alt="yoast-analytics-reports-dashboard" width="752" height="423" /></p>\n<p>The new dashboards in Yoast&#8217;s plugin are nice, but definitely are what I&#8217;d consider a first iteration. It&#8217;s not a replacement dashboard for WordPress.com&#8217;s stats, yet.</p>\n<p>For one, the dashboard is only pulling in stats once per day, so it&#8217;s not exactly a <em>right now</em> sort of thing. When I look at stats, it&#8217;s often to see how a recently published article is &#8220;trending&#8221; and I usually care most about the current day&#8217;s numbers. Additionally, the basic stats only show Sessions and Bounce Rate. I rely heavily on seeing referrals and clicks out of my site.</p>\n<p>But that&#8217;s what early versions of new features are about. And the Yoast team has definitely learned a lot while rolling out these new dashboards.</p>\n<h3>Lessons learned with new features</h3>\n<p>I have had a notice on my site&#8217;s admin for a few weeks now, telling me that Google Analytics by Yoast can&#8217;t authenticate. I&#8217;ve re-authenticated a dozen times, but the notice has persisted. Thankfully, my stats were being tracked still, but I had no idea where that error was coming from.</p>\n<p>This morning, I finally decided it was time to investigate, and I learned that this problem persists across many <a href="https://wordpress.org/support/topic/failed-to-fetch-the-new-data-from-google-analytics-please-reauthenticate-on-the/">sites where this plugin is installed</a>. I also had a pending update for the plugin in my dashboard, and the update message claimed to fix the issue. For me and others, it seems to have done so; at least so that the notice only appears on the actual analytics pages and not site-wide (which was incredibly annoying).</p>\n<p>So, what went wrong? Well, I talked to <NAME>, Founder of Yoast, and he filled me in on the backstory.</p>\n<p>Google Analytics are fetched via a WordPress cron job, and Yoast tells me that the lack of reliability (a common sentiment amongst plugin developers) of WordPress cron jobs can cause the plugin to think it needs re-authentication. Though he tells me there were a few other issues involved as well.</p>\n<p>Now that the feature is a few weeks old, the plugin is only fetching data from Google once per day. That&#8217;s after they received a message from Google though. At first, they were grabbing the data live, and in a matter of hours they were far beyond the APIs limits.</p>\n<p>Joost said to me, <span class="pullquote alignright">&#8220;We learned a lot in that week.&#8221;</span> They had a number of releases in quick succession attempting to squash the issues pinging Google&#8217;s API. This included an update to using the newer <a href="https://developers.google.com/accounts/docs/OAuth2">OAuth 2.0</a> instead of 1.0 &#8212; which they had successfully used until the update.</p>\n<h3>Releasing plugins at scale</h3>\n<p>I have no idea what it&#8217;s like to release code at a scale that Yoast is doing. They have increased their development team from one person (Joost) to five people in a pretty short amount of time; and that team is learning.</p>\n<p>That may not be a great excuse for causing issues with millions; but in my opinion it&#8217;s understandable, and it&#8217;s obvious to me their team is working hard to ship better products (which are basically all free for most people). I think as the team matures and lessons are learned, we&#8217;ll see better and better releases from Yoast &#8212; not that their current slate isn&#8217;t already the best on the market, proven by the fact that it seems everyone uses them.</p>\n<p>Automattic (with Jetpack) may be the only team in the WordPress ecosystem that knows what it&#8217;s like to create a plugin to scale like Yoast&#8217;s. And Automattic just surpassed 300 people. Yoast&#8217;s team, in total, is fifteen people. I&#8217;ve heard a decent amount of grumbling from the WordPress community about Yoast&#8217;s frequent &#8212; and sometimes seemingly flippant &#8212; update procedures. These grumbles may be warranted. At the same time, I think we can all extend a little grace in times like these. Scaling is hard, and many large or growing WordPress companies can attest to. I think <NAME> cares about his products and the role he plays in the WordPress ecosystem as much as just about anyone, and I&#8217;m pretty pleased with the direction they are taking their plugins.</p>\n<p>The updates to Google Analytics don&#8217;t seem like a whole lot right now &#8212; with a couple of new charts &#8212; but I think it has potential to be a great way to get a snapshot of site activity in the future.</p>\n<p>One thing is for sure: this plugin may have started as a simple way to embed Google Analytics code, but it&#8217;s evolving to be much more than that. Not everyone will care to keep using it as it evolves &#8212; and will opt for a simpler solution &#8212; but I think most users will welcome the changes and the new features. I certainly like the potential.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 08 Jan 2015 17:04:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:31;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:62:"WPTavern: Advanced WordPress Facebook Group Milestones in 2014";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=36846";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:72:"http://wptavern.com/advanced-wordpress-facebook-group-milestones-in-2014";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6519:"<p>For the <a title="https://www.facebook.com/groups/advancedwp/" href="https://www.facebook.com/groups/advancedwp/">Advanced WordPress</a> group on Facebook, 2014 was a great year. The group added key admins <NAME> and <NAME> to cover the European time zone. It took two and a half years to reach 7,500 members, but after <a title="http://wptavern.com/a-facebook-group-dedicated-to-advanced-wordpress-topics" href="http://wptavern.com/a-facebook-group-dedicated-to-advanced-wordpress-topics">highlighting the group</a> on the Tavern, membership skyrocketed from 7,500 members to more than 10,000.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/AdvancedWordPressFacebookGroupFeaturedImage.png" rel="prettyphoto[36846]"><img class="size-full wp-image-36848" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/AdvancedWordPressFacebookGroupFeaturedImage.png?resize=854%2C270" alt="Advanced WordPress Facebook Group Header" /></a>Advanced WordPress Facebook Group 11K Members Strong\n<p><NAME>, who administers the group, <a title="https://wordimpress.com/epic-posts-advanced-wordpress-2014/" href="https://wordimpress.com/epic-posts-advanced-wordpress-2014/">highlights notable threads</a> throughout the year. My favorite item from the list is when <NAME> joined the group and participated in an <a title="http://wptavern.com/matt-mullenweg-hosts-impromptu-qa-session-on-facebook" href="http://wptavern.com/matt-mullenweg-hosts-impromptu-qa-session-on-facebook">unscheduled Q&amp;A session</a>. In the thread, Mullenweg answered every question, including my own; Do you ever eat food that doesn&#8217;t look like it belongs in an art gallery? Like a Big Mac or something. His response:</p>\n<blockquote><p>I had McDonald&#8217;s as recently as Sunday, just a few days ago. I just don&#8217;t usually post it to my blog. McDonald&#8217;s I&#8217;m a chicken McNugget guy, though I&#8217;m curious about their new jalapeño burger. Burger King it&#8217;s always a Whopper. Growing up in Texas I have a soft spot for Whataburger and Sonic, I think In-n-Out is overrated but usually tasty, and I&#8217;ve been really enjoying Five Guys when I come across one.</p>\n<p>I will always be happy with fried chicken from Popeyes or KFC, though the former has better biscuits and I grew up just a few blocks away from one. When Automattic had an office in the Mission in SF there was a KFC on the opposite corner and I&#8217;d often sneak over there for lunch or a late snack when I was in the office till odd hours.</p></blockquote>\n<p>The group is an excellent place to have discussions, but <a title="http://wptavern.com/a-facebook-group-dedicated-to-advanced-wordpress-topics#comment-57154" href="http://wptavern.com/a-facebook-group-dedicated-to-advanced-wordpress-topics#comment-57154">the things that bothered</a> me in 2014 still exist. It&#8217;s hard to find posts using Facebook&#8217;s search feature because it sucks. There are a lot of threads where people ask for general tech support either with a theme or plugin. Although the group&#8217;s title says it&#8217;s about Advanced WordPress, it really doesn&#8217;t have a central identity and according to Cromwell, it may never have one.</p>\n<blockquote><p>The name itself seems to cause confusion or lack clarity. Some are attracted to the group expecting seriously “Advanced” material. Others come to the group because they are learning and wanting to become advanced. Others see “Advanced” and think: “Perfect, I’ll go ask the experts how to fix all my problems.” With 11k+ members now, it’s hard to conceive of this group as having any kind of central identity.</p></blockquote>\n<p>With over 11K members, Advanced WordPress has splintered into several smaller groups. Doing a search for WordPress groups on Facebook shows the following results:</p>\n<ul>\n<li><a title="https://www.facebook.com/groups/wordpresssec/?ref=br_rs" href="https://www.facebook.com/groups/wordpresssec/?ref=br_rs">WordPress Security</a> 1,697 Members</li>\n<li><a title="https://www.facebook.com/groups/wordpressspeedup/?ref=br_rs" href="https://www.facebook.com/groups/wordpressspeedup/?ref=br_rs">WordPress Speed Up</a> 576 Members</li>\n<li><a title="https://www.facebook.com/groups/wphosting/?ref=br_rs" href="https://www.facebook.com/groups/wphosting/?ref=br_rs">WordPress Hosting</a> 869 Members</li>\n<li><a title="https://www.facebook.com/groups/IntermediateWordPress/?ref=br_rs" href="https://www.facebook.com/groups/IntermediateWordPress/?ref=br_rs">Intermediate WordPress</a> 4,640 Members</li>\n<li><a title="https://www.facebook.com/groups/wp.business.group/?ref=br_rs" href="https://www.facebook.com/groups/wp.business.group/?ref=br_rs">WordPress Business</a> 202 Members</li>\n<li><a title="https://www.facebook.com/groups/wpsecure/?ref=br_rs" href="https://www.facebook.com/groups/wpsecure/?ref=br_rs">WordPress Secure</a> &#8211; Advanced WordPress Security Group 283 Members</li>\n<li><a title="https://www.facebook.com/groups/advanced.woocommerce/?ref=br_rs" href="https://www.facebook.com/groups/advanced.woocommerce/?ref=br_rs">Advanced WooCommerce</a> &#8211; 581 Members</li>\n</ul>\n<p>Each group on Facebook is like a silo with its own members and conversations. I can&#8217;t help but wonder how awesome it would be if a centralized discussion platform such as a forum, played host to all of these discussions. However, a Facebook group does have a few key benefits, such as focusing the topic of discussion and eliminating distractions from other groups. It&#8217;s also easy to pull people into a conversation by adding their name to a response.</p>\n<p>I still don&#8217;t think Facebook is a great platform for conversations surrounding WordPress. It lacks the ability to style posts, browse archives, and easily browse topics. It&#8217;s also a <a title="http://en.wikipedia.org/wiki/Closed_platform" href="http://en.wikipedia.org/wiki/Closed_platform">walled garden</a> and if Facebook decides to remove the feature or shuts down, a lot of great knowledge will be lost forever. However, with so many people on Facebook and the convenience of quickly participating in a conversation, I can see why a lot of people are happy to use it.</p>\n<p>How many of you would like to see an open discussion platform dedicated to WordPress topics that everyone can participate in? Is there a WordPress sub-community or watering hole that doesn&#8217;t exist that you&#8217;d like to see created?</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 08 Jan 2015 00:04:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:32;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:94:"WPTavern: WordPress For Android Version 3.5 Embraces Google’s New Material Design Principles";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=36774";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:101:"http://wptavern.com/wordpress-for-android-version-3-5-embraces-googles-new-material-design-principles";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4010:"<p>WordPress for Android is starting 2015 with a big update. <a href="https://apps.wordpress.org/2015/01/07/wordpress-for-android-version-3-5/" target="_blank">Version 3.5</a> was released today, introducing major changes to the app&#8217;s overall design. This release follows Google&#8217;s new <a href="http://www.google.com/design/spec/material-design/introduction.html" target="_blank">Material design principles</a>, which was created to unify the experience of apps across platforms and devices. The design spec includes basic tenets for the various aspects of app design, including animation, layouts, patterns, and usability.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/material-design.png" rel="prettyphoto[36774]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/material-design.png?resize=1025%2C369" alt="material-design" class="aligncenter size-full wp-image-36815" /></a></p>\n<p>Google&#8217;s goal with Material design is to &#8220;create a visual language that synthesizes classic principles of good design with the innovation and possibility of technology and science.&#8221; To that end, Material design incorporates three guiding principles:</p>\n<ul>\n<li>Material is the metaphor</li>\n<li>Bold, graphic, intentional</li>\n<li>Motion provides meaning</li>\n</ul>\n<p>The WordPress for Android app interface now embraces these principles with new Lollipop components and styling. With the exception of a few features, such as ripple animations, these enhancements should also work for pre-Lollipop devices. You can see the changes most clearly when checking out the designs of the individual posts, the app menu, notifications, and post editor screens.</p>\n\n<a href="http://wptavern.com/wordpress-for-android-version-3-5-embraces-googles-new-material-design-principles/wp-for-android-2"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/wp-for-android.png?fit=300%2C300" class="attachment-medium" alt="wp-for-android" /></a>\n<a href="http://wptavern.com/wordpress-for-android-version-3-5-embraces-googles-new-material-design-principles/wp-for-android-menu"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/wp-for-android-menu.png?fit=300%2C300" class="attachment-medium" alt="wp-for-android-menu" /></a>\n<a href="http://wptavern.com/wordpress-for-android-version-3-5-embraces-googles-new-material-design-principles/wp-for-android-compose"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/wp-for-android-compose.png?fit=300%2C300" class="attachment-medium" alt="wp-for-android-compose" /></a>\n\n<p>Another major change in version 3.5 is the addition of auto completion for mentions in comments. If you use the &#8220;@&#8221; symbol while typing, the app can now match blog member usernames, displayed via a popover.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/mentions-autocomplete.png" rel="prettyphoto[36774]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/mentions-autocomplete.png?resize=285%2C500" alt="mentions-autocomplete" class="alignright size-large wp-image-36832" /></a>Auto completion is also integrated into the reader and notifications. It makes it easy for blog authors to interact more directly with readers in the comments. Participants in blog conversations can stay in the loop via the app&#8217;s notifications. Auto completion for mentions is a major update that should deepen the level of interaction on blogs and help keep users better connected.</p>\n<p>The design changes in this version may come as a surprise to many users, but they make the app feel like a native part of the device. The additions make the app feel cleaner and more intuitive for mobile publishing. <a href="https://play.google.com/store/apps/details?id=org.wordpress.android" target="_blank">WordPress for Android version 3.5</a> is now available in the Google Play store. Update your app today to take advantage of all the new features and fixes.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 07 Jan 2015 22:57:53 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:33;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:95:"WPTavern: Better Search Replace: A New Plugin for Updating URLs and Text in WordPress Databases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=36741";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:104:"http://wptavern.com/better-search-replace-a-new-plugin-for-updating-urls-and-text-in-wordpress-databases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4372:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/find-replace.png" rel="prettyphoto[36741]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/find-replace.png?resize=1024%2C471" alt="photo credit: Bunches and Bits {Karina} - cc" class="size-full wp-image-36777" /></a>photo credit: <a href="http://www.flickr.com/photos/bunchesandbits/4106216129/">Bunches and Bits {Karina}</a> &#8211; <a href="http://creativecommons.org/licenses/by-nc-nd/2.0/">cc</a>\n<p>When migrating a WordPress site to a new domain, you&#8217;ll have to update every instance of the site&#8217;s URL in the database. Some developers prefer to use tools like <a href="http://wp-cli.org/" target="_blank">WP-CLI</a> or <a href="https://wordpress.org/plugins/wp-migrate-db/" target="_blank">WP Migrate DB</a> to handle this, while others opt for a general database search and replace plugin with a UI in the WordPress admin.</p>\n<p><a href="https://wordpress.org/plugins/better-search-replace/" target="_blank">Search and Replace</a> is an old plugin, with nearly a million downloads, that can be used to update URLs and text in the database. I used this plugin successfully for a number of years, but it went without any updates for long time. It has since come under new ownership, although the screenshots demonstrate just how long ago the plugin was released.</p>\n<p><a href="https://wordpress.org/plugins/better-search-replace/" target="_blank">Better Search Replace</a> is a new take on database search and replace plugins. It was heavily based on <a href="https://interconnectit.com/products/search-and-replace-for-wordpress-databases/" target="_blank">Interconnect/It&#8217;s open source Search Replace DB script</a> that performs replacement actions without damaging PHP serialized strings or objects. I&#8217;ve used this script a number of times with success, although it&#8217;s not as convenient as a plugin. The Better Search Replace plugin packages it up using native WordPress database functions and adds a friendly UI.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/better-search-replace-screenshot.png" rel="prettyphoto[36741]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/better-search-replace-screenshot.png?resize=1025%2C613" alt="better-search-replace-screenshot" class="aligncenter size-full wp-image-36795" /></a></p>\n<p>The plugin merges the best features from older plugins and the Interconnect/It script to support the following capabilities:</p>\n<ul>\n<li>Serialization support for all tables</li>\n<li>The ability to select specific tables</li>\n<li>The ability to run a &#8220;dry run&#8221; to see how many fields will be updated</li>\n<li>No server requirements aside from a running installation of WordPress</li>\n</ul>\n<p>Since searching and replacing in the database is a sensitive action to perform, the &#8220;dry run&#8221; feature gives you a good idea of what you can expect before pulling the trigger. Even with the option of performing a dry run, you will undoubtedly want to have a backup of your database created before touching it.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/better-search-replace-dry-run.png" rel="prettyphoto[36741]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/better-search-replace-dry-run.png?resize=1025%2C594" alt="better-search-replace-dry-run" class="aligncenter size-full wp-image-36797" /></a></p>\n<p>Migrations aren&#8217;t the only reason for this type of plugin. Perhaps you&#8217;ve renamed your company or product line and need to replace all instances throughout your website. This plugin makes it safe and easy to perform the replacements directly within the WordPress admin. I tested it on a development site and found that it is fast and works exactly as advertised.</p>\n<p>Better Search Replace was created by <NAME>, author of the <a href="http://wptavern.com/free-revisr-plugin-offers-git-management-for-wordpress" target="_blank">Revisr plugin</a> that allows developers to synchronize WordPress with a remote Git repository. If you&#8217;re a long-time fan of the Interconnect/It script, you&#8217;ll find that this plugin is even easier to use. You can find <a href="https://wordpress.org/plugins/better-search-replace/" target="_blank">Better Search Replace on WordPress.org</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 07 Jan 2015 21:19:54 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:34;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:96:"WPTavern: Happy Joe to Host WP Boot Camp January 23: A Free Training Event for Military Veterans";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=36751";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:105:"http://wptavern.com/happy-joe-to-host-wp-boot-camp-january-23-a-free-training-event-for-military-veterans";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1827:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/wp-boot-camp.png" rel="prettyphoto[36751]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/wp-boot-camp.png?resize=1025%2C479" alt="wp-boot-camp" class="aligncenter size-full wp-image-36755" /></a></p>\n<p><a href="http://www.happyjoe.org/" target="_blank">Happy Joe </a>is launching its first planned <a href="http://www.happyjoe.org/wp-bootcamp-for-military-veterans/" target="_blank">WP Boot Camp</a> in San Antonio, TX on January 23, 2015. The non-profit organization <a href="http://wptavern.com/happy-joe-uses-wordpress-to-train-and-help-veterans-find-careers-in-web-technology" target="_blank">helps US military veterans re-enter the workforce</a> through training in WordPress and the web technology industry in general. Happy Joe was started by former service member <a href="http://www.jamesdalman.com/" target="_blank"><NAME></a>, who will be presenting at the first WP Boot Camp, along with other WordPress professionals.</p>\n<p>The three hour event will give military veterans and their spouses an opportunity to learn, network, and gain access to free resources and online training. Dahlman plans to assist attendees in setting up an online resume website using WordPress as a first step towards entering the web technology industry.</p>\n<p>WP Boot Camp is free of charge to anyone with a valid military ID, thanks to event sponsors iThemes, Automattic, WP Site Care, and WebTegrity. The event will be held at <a href="http://www.geekdom.com/san-antonio" target="_blank">Geekdom San Antonio</a>, the largest collaborative co-working space in Texas. However, it is limited to 30 attendees, so those planning to attend must <a href="http://www.happyjoe.org/wp-bootcamp-for-military-veterans/" target="_blank">RSVP</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 07 Jan 2015 19:00:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:35;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:27:"Matt: WP.com Year in Review";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44587";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:43:"http://ma.tt/2015/01/wp-com-year-in-review/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:192:"<p>There&#8217;s a <a href="https://en.blog.wordpress.com/2015/01/06/2014-in-review/">great write-up of the human side of WordPress.com&#8217;s 2014 as well as some impressive numbers</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 07 Jan 2015 18:53:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:36;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:32:"Post Status: The ABCs of the web";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:30:"https://poststatus.com/?p=7300";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:32:"https://poststatus.com/web-abcs/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3244:"<p>I wanted to change my primary URL, and also setup HTTPS on my new VPS.</p>\n<p>So, I bought an SSL cert that required I add a TXT record to get a verification email. The domain was new so I needed Google MX records added to receive the new email. Ah, but I also changed the DNS provider where I put those records. Thankfully, the TTL for new records was short and I got squared away so I could submit a CSR and get the SSL. I had to make sure to choose a CDN provider to support SSL too, and it happened to be the same place that handles my DNS now. This service also GZIP compresses as much as it can.</p>\n<p>The domain is square now so I SSH&#8217;d into my new VPS to set a few things straight. For one, I needed to edit the MySQL DB with WP-CLI to search and replace the new URL. But I accidentally forgot to exclude the GUIDs so my RSS went haywire.</p>\n<p>My VC is kinda jacked for deployment purposes, though I&#8217;m learning to handle dependencies and repo management with a JSON file via Composer. But I&#8217;ll still need to deploy my Git repo with something like Dploy.io. For now I had to cowboy up and SCP some new stuff to the server, since it doesn&#8217;t have (bad practice) FTP. Then I noticed I screwed something up, so I used Vi to edit it live, like a madman.</p>\n<p>My new CDN provider not only delivers but also caches HTML, CSS, and JS. That&#8217;s on top of what JS-based Grunt does on the theme side, where my front-end JS is concatenated and minified, and my Sass is pre-processed to CSS. Grunt is also managed with a JSON config file, where I can do these things and more: like linting, combing, .pot generation, and auto-prefixing my Sass. I can even generate RTL-specific CSS if I need to. I&#8217;m told that hardly scratches the surface still.</p>\n<p>In order to do these things, I work locally with VVV, so these scripts can run. That lets met setup custom LEMP stacks to my heart&#8217;s content, stored in a www folder. I can even do auto-site generation with one of many custom shell scripts, though you have to watch out if the project structure isn&#8217;t the same as yours. VVV supports WP-CLI too, so that&#8217;s nice.</p>\n<p>Now the live site is HTTPS instead of HTTP, and because of new tools and modern browsers (that support stuff like SPDY and SVG) my website has fewer HTTP requests, and weighs less than a single MB.</p>\n<p>Also, I better not forget to 301 the old URLs to the new URLs with the domain change; that&#8217;s easy with nginx and will help me keep my SEO.</p>\n<p>Of course, these things are happening while building my site with my CMS of choice, which is also the one largely considered the easiest to work with: WP. And I&#8217;m <a title="A new look and a new domain" href="https://poststatus.com/new-look-new-domain/">not even close to done</a>. I have so much to learn, APIs to explore, and mistakes to make.</p>\n<hr />\n<p>The moral of this silly story, is that building and maintaining websites is still pretty complicated. In fact, I think it may be more complicated than ever. I always feel like a kid learning his ABCs, but that shouldn&#8217;t stop us. Don&#8217;t get intimidated. Dig in. Eventually we learn to string a few sentences together, or even a story.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 07 Jan 2015 18:16:55 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:37;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:40:"Post Status: A new look and a new domain";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:30:"https://poststatus.com/?p=7287";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:43:"https://poststatus.com/new-look-new-domain/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:12091:"<p>Last night I launched version 3 of Post Status. The site design was about a year and a half old and in the first two iterations I never put too much thought into it as much as just trying to get something out the door as soon as possible. This time, I tried to build something that could be a foundation for a while.</p>\n<p>I&#8217;m going to try and walk you through much of my thought processes. Hopefully it gives you insight to what I&#8217;ve been up to, as well as perhaps point you to a new resource or two. And if you have advice for me, I&#8217;ll take it.</p>\n<h3>The new design starts with a name</h3>\n<p>I never really expected Post Status to be my business, but now it is. I realized that some early decisions were mistakes &#8212; like not having the .com for the domain. Poststat.us was a fun domain hack and the .com wasn&#8217;t available, but it was also a branding issue. The site&#8217;s name is Post Status, not PostStat.us or poststat.us or whatever else. That&#8217;s always been hard to shake.</p>\n<p>A few days ago <a href="https://twitter.com/greg_wallace/status/551229639104794625"><NAME> pointed me</a> to a Flippa auction for the poststatus.com domain. I was both pleased and annoyed. I tried &#8212; in the past year or so &#8212; to contact the owner privately multiple times and never got a response, even with a direct offer of cash. Nevertheless, I <a href="https://flippa.com/3484788-13-years-aged-huge-industry-development-potential-exact-match-domain">bid on the domain</a> and even got the seller to give me a buy it now option so I could guarantee the domain. It was $800, but I think I got plenty of value in the transaction. All of that happened just yesterday.</p>\n<h3>HTTPS everywhere</h3>\n<p>Another important thing to me was making the entire site utilize HTTPS. I&#8217;ll need it for the eCommerce memberships anyway, and it&#8217;s a good practice and even <a href="https://thethemefoundry.com/blog/ssl-everywhere/">has speed benefits</a>. Post Status is now on a custom VPS product that I&#8217;m working on with <a href="http://siteground.com">SiteGround</a>.</p>\n<p>The site is on a LEMP stack, and utilizes a variation of their <a href="https://www.getclouder.com/">GetClouder</a> product. DNS, CDN, and additional caching elements are provided through <a href="https://www.cloudflare.com">Cloudflare</a> Pro, which took me a while to settle on. The SSL certification is from <a href="https://www.digicert.com/">DigiCert</a>, which had great reviews.</p>\n<p>I&#8217;m really excited about using nginx as well as being able to take advantage of SPDY. My site is now more secure, faster, more customizable, and ready for the future. Meanwhile, I was able to knock out two redirects (for the new domain and from HTTP to HTTPS) in one go.</p>\n<h3>New logo</h3>\n<p>The logo featured above is probably not finalized, but it&#8217;s about where I want it to be. I sketched out logo drafts for months and <a href="http://sara-cannon.com/">Sara Cannon</a> helped me put the first version into Illustrator. The one shown in the featured image is a bit thicker than the original, since the thinner one is tough to scale at small sizes.</p>\n<p>I&#8217;ll probably be tweaking this with the help of someone less like a bull in a china shop within Illustrator as I am, to get it cleaned up and <em>swag-ready</em> (oh yeah!). Either way, I&#8217;m happy to finally have a logo for this project, and I think it represents both the brand and the nature of the site pretty well.</p>\n<h3>New theme</h3>\n<p>The part of the site I&#8217;m most excited about is the new theme design. I&#8217;ve had this concept in mind for months, but didn&#8217;t really execute the latter half (aka 90% of it) until the last couple of weeks.</p>\n<p>In general, finding things based on topic and search should be a lot better, and the reading experience is more focused than ever. I went one column on article pages &#8212; something I&#8217;ve wanted to do for a while. And I went to a two-column format for archives, minus the latest article that sits in a featured spot on the home page.</p>\n<p>The development is based off of <a href="http://underscores.me">Underscores</a>, which I&#8217;ve grown to love. I&#8217;m using Sass for the preprocessor, though with a different structure than base Underscores. Though I&#8217;m no longer using <a href="http://themehybrid.com/hybrid-core">Hybrid Core</a> (I still love it), I am using Get The Image from it to wrangle some default featured images on legacy archives.</p>\n<p>One thing you may notice is the icons. Everything is SVG, using <a href="https://useiconic.com/">Iconic</a>. Iconic makes using SVG super simple. I just insert the SVG of choice with an image tag and the Iconic JS (that&#8217;s minified in my primary JS via Grunt) actually changes the image tag to inline SVG. Iconic also has small, medium, and large versions of each icon, which will be pretty cool for some of the larger ones I intend to use for other landing and member page templates. One thing I don&#8217;t like is the FOUI (flash of unstyled icon &#8212; I just made that up) when I load the page. Hopefully that gets cached and doesn&#8217;t happen often, but I sometimes see it working locally.</p>\n<p>The call to action for memberships on the homepage is also something I debated a lot. I&#8217;m excited about how it came together, mostly because that section will also be the member dashboard for folks once they&#8217;re logged in; so the CTAs shouldn&#8217;t be too obnoxious for those that follow them.</p>\n<p>This design is super alpha and I&#8217;m very willing to receive feedback of what you like and hate. I have a lot of known issues too. The bottom half of article pages have a ton of work to do. The footer doesn&#8217;t exist yet. And I have to build out templates for new sections of the website.</p>\n<h3>Typography</h3>\n<p>Part of the new theme is new typography. I have stayed with <a href="http://typography.com">Typography.com</a>&#8216;s delivery service &#8212; mostly because I am just too in love with Gotham Rounded for my titles.</p>\n<p>I do have some performance concerns, as <a href="https://www.tollmanz.com/typography-coms-cssom-blocking-font-loader/">Zack Tollman outlines</a>, but I have reduced the font&#8217;s package size considerably &#8212; from 9 fonts to 6, and they are smaller sets as well.</p>\n<p>I&#8217;m still using Gotham Rounded for the logo, buttons, and for main headers and titles. It&#8217;s just so pretty. But I&#8217;m only using a single weight, since the use is quite controlled.</p>\n<p>I&#8217;m also using a single weight (light italic) of Sentinel, an incredible slab serif, for archive titles, taglines, and pullquotes. Sentinel is replacing four weights of Archer. I thought about not using any serif, but I think Sentinel is worth it.</p>\n<p>The body font is the biggest change. I&#8217;ve gone from Gotham Rounded to Gotham Narrow. It&#8217;s a more traditional sans-serif, and I think it&#8217;s both slightly more serious and slightly more readable. I toyed with the idea of listing (but not hosting) a series of sans-serifs for body, to gain speed improvements by downloading the best available local fonts from the reader; but I discovered I&#8217;m too picky for that. That said, the four weights I&#8217;m using of Gotham Narrow are lighter than Gotham Rounded was.</p>\n<h3>Performance</h3>\n<p>Performance has been a primary concern throughout the redesign. I&#8217;m trying really hard to consider whether I need things.</p>\n<p><span class="pullquote alignright"><br />\nOne takeaway is that performance is a multi-faceted, challenging endeavor that spans design, development, and infrastructure.</span> All in all, Post Status is way faster now.</p>\n<p>Some of that is hardware, with nginx on a VPS and SPDY support with HTTPS. But the theme is faster too. I&#8217;m using no images unless they are in a post. I&#8217;m not using an icon font, but instead using SVG. I&#8217;m using Grunt to concatenate and minify various theme scripts. Fonts are still a burden, but one I decided was worth it.</p>\n<p>And then there are plugins. Oh, plugins.</p>\n<p>Wrangling Jetpack has been tough. I&#8217;m probably screwing up some features on the site, but I&#8217;m basically dequeuing everything Jetpack spits out. However, I&#8217;m confident I&#8217;ll be able to wrangle Jetpack okay, as I&#8217;m really only going to use Related Posts and Sharing as front-facing features; and though neither is shown here today, both are manageable without Jetpack&#8217;s styles and scripts.</p>\n<p>Gravity Forms is another one I still have to wrangle. A simple newsletter signup form (a single email field) is causing four stylesheets and two Javascript files to be loaded on every page. That can&#8217;t happen, so I have some work to do there.</p>\n<p>Generally, finding, dequeuing, and enqueuing styles and scripts from plugins is just annoying. I totally understand why folks tend to just not bother. I would love to see product makers start offering guides on how users can responsibly enqueue such things on their own.</p>\n<p>Especially with something like forms, I don&#8217;t want to remove a script that prevents the form from working properly. But I <em>do</em> want to remove pointless stylesheets that don&#8217;t matter at all to my simple forms. I don&#8217;t mean to pick on Gravity Forms, as I freaking love Gravity Forms. I just want to figure out how to make complex plugins more performant. Every http request matters, you know?</p>\n<p>All in all, every page load is under pretty well under 1MB uncached, and making between 25-50 requests. I&#8217;d like to keep it that way, and really I&#8217;d like to make sure full page loads are under 1 second always, and usually under 500ms. I have a lot of work to do!</p>\n<h3>So much left to do</h3>\n<p>Today is an early Alpha of the new site. I&#8217;ll walk you through some of what&#8217;s left or still in progress:</p>\n<p>Deployments. My deployment method for this site is terrible. I spent a lot of time learning about Composer (will have posts on that) and I may use it, but either way I&#8217;ve got work to do on proper repo management and deployments. This is especially the case since I&#8217;m trying to both manage the site&#8217;s private repo as well as share the theme and functionality plugin as their own repos for others to use, see, and contribute to.</p>\n<p>Memberships and membership functionality still have a long way to go. I&#8217;m using <a href="http://www.woothemes.com/woocommerce/">WooCommerce</a>,  Subscriptions by <a href="http://prospress.com/">Prospress</a> and (most likely) a product that&#8217;s in Alpha/Beta from <a href="http://www.skyverge.com/">SkyVerge</a> for content restriction and other member features. I&#8217;m using the Mailchimp API to create a custom email to send to members with new private content; that&#8217;s been fun to learn.</p>\n<p>I&#8217;ve created two new content types (Notes and Resources) that are going to be members only. Notes are like the old links, but now a members only blog and newsletter. Resources will be mostly members only with some free stuff, and will be evergreen informational content. Then I&#8217;m creating a Profiles content type to create static pages for people and companies (think Crunchbase for WordPress), as well as a cross-relational tool for posts about those folks.</p>\n<p><span class="pullquote alignleft">The goal with the new Post Status is to provide useful and informative free content for everyone, but go above and beyond for members.</span> I&#8217;m working hard to make that content accessible, digestible, high quality, and trim enough for busy WordPress professionals.</p>\n<p>Okay, this is way more than you needed to know. If you read all that, you are my ideal customer.</p>\n<p>I can&#8217;t wait until I can show you guys the rest of the site! I&#8217;m having a blast spending all of my working time on my own project. It&#8217;s a professional euphoria I&#8217;ve never known until now.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 07 Jan 2015 16:11:01 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:38;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:76:"Post Status: Website micro services provider, Elto, is shutting down for now";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:30:"https://poststatus.com/?p=7258";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"https://poststatus.com/elto-shutting-down-temporarily/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4615:"<p><a href="http://elto.com">Elto</a>, formerly Tweaky, is a micro services provider, for lack of a better term. They started with $25 tweaks, which until they <a href="http://www.elto.com/blog/well-be-back/">shut down services today</a>, worked it&#8217;s way to a $199 minimum.</p>\n<p>WordPress is a high focus vertical for Elto&#8217;s, and I presume it&#8217;s their largest as well. Elto is one of several such providers of micro services like this; others still running are <a href="https://codeable.io/">Codeable</a> and <a href="http://studio.envato.com/">Envato Studio</a> (formerly Microlancer). These are besides the longstanding generic types (with rather poor reputations, in my opinion) such as oDesk and Elance.</p>\n<p>I have always kept track of Elto, as I started referring folks to them from my own contact form for small projects, in order to narrow the leads I was getting. When I got the email today from <NAME>, Elto&#8217;s founder, I went to my dashboard to see how many folks had used my referral and what those services were:<br />\n<img src="https://poststatus.com/wp-content/uploads/2014/12/elto-services-752x261.png" alt="elto-services" width="752" height="261" class="aligncenter size-large wp-image-7273" /></p>\n<p>In the time I was referring folks to Elto, I sent them nearly $2,000 in business and got a 25% referral fee. That&#8217;s not a lot; more interesting is that of these referrals, there was an 8.5 / 10 satisfaction rate. I wouldn&#8217;t say that&#8217;s outstanding, but it&#8217;s not bad either. It&#8217;s probably better or close to the satisfaction of more traditional web services providers.</p>\n<p>I emailed Ned to see if he could offer any more insight into this decision. He responded with the following:</p>\n<blockquote><p>\nIt was something we thought long and hard about before making this change.</p>\n<p>The challenge is that the current model was working well &#8211; customers rate us on average 8.7 out of 10, thousands of new customers every month etc &#8211; but it wasn&#8217;t delivering the kinds of results we wanted. This will become clearer when we launch the new version.</p>\n<p>While we could have kept going with this model while working on the next version in the background, the current model has significant customer support challenges. This puts a burden on our team to maintain the current app and customer base which draws resources away from us working on what&#8217;s important.</p>\n<p>We have the full support of our team and investors in making these changes and we&#8217;re excited about what&#8217;s next.</p></blockquote>\n<p>So it appears that this is a temporary stop for Elto. I&#8217;m sure &#8212; with investors to answer to &#8212; rising support challenges makes change inevitable.</p>\n<p>I&#8217;ve always liked the idea of companies like Elto from a developer standpoint. As long as the company values the developers they are mediating for, it can be a nice way for junior developers or just folks that don&#8217;t want to interact with clients much to be able to get work. It can also be a way to fill in the gaps in someone&#8217;s own freelance work.</p>\n<p>I&#8217;m not sure what the next version of Elto will look like, but it seems they&#8217;re aiming to be more in the product business and less in the service business.</p>\n<p>From what I can gather, they raised at least a seed round in 2012, <a href="http://thenextweb.com/insider/2012/07/17/99design-founders-invest-460000-in-tweaky-a-marketplace-for-minor-website-customizations/">reported at $460,000</a>, and perhaps <a href="http://www.startupsmart.com.au/growth/growth-strategy/introducing-elto-tweaky-founder-shares-about-their-major-pivot-brand-change-and-latest-investment-round/2014020311615.html">another round in 2013</a> from Blackbird Ventures.</p>\n<p>I guess my primary takeaway from a change like this is that even when companies are productizing services, doing work for cheap isn&#8217;t easy. Support struggles, maintaining customer expectations, managing developers &#8212; it&#8217;s all tough. I am curious if Codeable and other what I&#8217;d call &#8220;progressive&#8221; members of this style market can relate to Elto&#8217;s struggles, or if they have somehow managed to get past those.</p>\n<p>For some additional reading on Elto&#8217;s journey, Ned&#8217;s post about <a href="http://www.elto.com/blog/lessons-weve-learned-from-2-years-of-running-elto/">what they learned in their first two years</a> was insightful. He also hints they considered a pause even then; so I guess today shouldn&#8217;t be too much of a surprise.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 06 Jan 2015 23:30:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:39;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"Post Status: WordPress 4.1, “Dinah”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:30:"https://poststatus.com/?p=7245";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:43:"https://poststatus.com/wordpress-4-1-dinah/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:7094:"<p><img src="https://poststatus.com/wp-content/uploads/2014/12/wordpress-4-1-752x300.jpg" alt="wordpress-4-1" width="627" height="250" class="aligncenter size-large wp-image-7247" /><br />\nWordPress 4.1, &#8220;Dinah&#8221;, <a href="https://wordpress.org/news/2014/12/dinah/">has just been released</a>. WordPress 4.1 is the result of months of work and includes a number of excellent new features.</p>\n<p>WordPress 4.1 was led by <a href="https://profiles.wordpress.org/johnbillion"><NAME></a>, who did an outstanding job. Two hundred and eighty three contributors were part of WordPress 4.1, which <NAME> states is a new high.</p>\n<p>Here are some of the new features.</p>\n<h3>Persistent Distraction-free Writing</h3>\n<p>I must begin with the new persistent Distraction-free Writing feature, as I&#8217;m using it to write this very post. We&#8217;ve had Distraction-free Writing since 2011, with the <a href="https://wordpress.org/news/2011/07/gershwin/">release of WordPress 3.2</a>. However, it&#8217;s always been a single-experience decision. You hit the button to enter distraction free mode, and you utilize it for a single writing session.<span id="more-7245"></span></p>\n<p>Now, the button itself is persistent, and the experience of writing distraction free doesn&#8217;t enter a new screen, but rather fade away the distractions of the default editor.</p>\n<p>https://cloudup.com/cqbFU6CSqm2</p>\n<p>The left admin seamlessly floats away, as do the metaboxes to the right of and below the editor. The editor itself remains, versus using a modified editor like before.</p>\n<p>When you update to WordPress 4.1, you are triggered with a note about Distraction-free Writing, and now that it&#8217;s a decision you only have to make once, I think this feature will finally get the broad use it deserves. It really is much more pleasant to write without everything else around you, to be lost in your thoughts as they make their way to the editor.</p>\n<h3>Twenty Fifteen theme</h3>\n<p>https://cloudup.com/cgjoFpPJvYk</p>\n<p>The Twenty Fifteen theme is the finest work I&#8217;ve seen yet of the default theme team. A blogging, and personal, theme &#8212; Twenty Fifteen is simple, with beautiful typography, and capable of showcasing blog posts of any format with poise.</p>\n<p>Twenty Fifteen comes in six base color schemes: default (light), dark, yellow, ping, purple, and blue. It also supports WordPress&#8217; background and header image features, and allows you to customize colors from your base selection; Twenty Fifteen can be as quirky as you are.</p>\n<p>https://cloudup.com/cFEI4yyaDmU</p>\n<p>Here&#8217;s a link to the <a href="http://twentyfifteendemo.wordpress.com/">default theme demo</a>, as well as it&#8217;s <a href="https://wordpress.org/themes/twentyfifteen">new page on WordPress.org</a>.</p>\n<h3>Dozens of languages, available any time</h3>\n<p>https://cloudup.com/ckbOnTY71Gq</p>\n<p>WordPress has made tremendous progress for non-English speaking users in the past few releases. With WordPress 4.0, you could choose a language on installation, whereas before it required many more steps. Now the team has gone a step further, so that language can be changed at any time, right from WordPress&#8217; general settings page.</p>\n<p>Given that <a href="https://poststatus.com/understand-wordpress-internationalization-translation/">a third of WordPress installs are non-English</a> (and if I recall correctly half of new downloads are non-English now), this change further reduces the barrier of language in publishing software, and is an excellent move for the progression of the platform across the world.</p>\n<h3>Recommended plugins</h3>\n<p>https://cloudup.com/cQi9LX744H8</p>\n<p>I believe recommended plugins is probably the most controversial feature in WordPress 4.1, though it is not without precedent. &#8220;Featured&#8221; themes have been in the WordPress dashboard for a while now. But with a tab for recommended plugins, now users can see plugin recommendations based on plugins already installed and plugins other sites have installed.</p>\n<p>Recommended plugins are replacing the former popular plugins tab, and is mostly a change in the underlying API for showing the plugins themselves. Since it&#8217;s not a manual recommendation, I think this is a good change, and will more accurately help folks find relevant plugins than just listing the most popular plugins in the directory.</p>\n<h3>New template tags and theming tools</h3>\n<p>I&#8217;m really looking forward to using some of the new template tags introduced in WordPress 4.1.</p>\n<p>My favorite is <code>get_the_archive_title()</code>. Themers out there all know about the big blob of conditionals in most theme archive templates to spit out the right string based on which archive template it is. Now, there&#8217;s a function for that, and it&#8217;s fully filterable to boot.</p>\n<p>Descriptions of the new title functions, some new pagination functions, and some particularly nice body class assignment enhancements are well described on <a href="https://make.wordpress.org/core/2014/12/04/new-template-tags-in-4-1/">this Make WordPress post</a> by <NAME>. There&#8217;s also a post about adding theme support to <a href="https://make.wordpress.org/core/2014/10/29/title-tags-in-4-1/">let WordPress handle title tags</a>, which is a handy thing.</p>\n<h3>Log out from anywhere</h3>\n<p>A relatively small but nice security feature is the new ability to log out of all installs from a single location. WordPress uses cookies to keep you logged into your install for a period of time. Well, if you ever leave yourself logged in on a computer you don&#8217;t trust, you can now log out of all instances easily, from your profile page on an install.</p>\n<p>There is a new button that says &#8220;Log Out of All Other Sessions,&#8221; and also tells you if you are logged in at more than one location.</p>\n<h3>More improvements to queries</h3>\n<p>I love how much progress has been made on the WordPress query tools in the last couple of years. WordPress 4.1 introduces the ability for a nested query syntax, which makes more complex queries possible for <code>WP_Tax_Query</code>, <code>WP_Date_Query</code>, and <code>WP_Meta_Query</code>. I don&#8217;t often call out single individual&#8217;s work on something, but <NAME> <a href="https://core.trac.wordpress.org/ticket/29822">really</a> <a href="https://core.trac.wordpress.org/ticket/29738">slayed</a> <a href="https://core.trac.wordpress.org/ticket/29642">it</a> with the nested queries work. He wrote about it <a href="http://teleogistic.net/2014/12/wordpress-4-1-and-me/">on his blog in detail</a>.</p>\n<h3>More under the hood</h3>\n<p>WordPress 4.1 includes many other under the hood features you should check out on the <a href="http://codex.wordpress.org/Version_4.1">Codex page about the release</a>.</p>\n<h3>More excellent progress for WordPress</h3>\n<p>WordPress is better than ever, and hundreds (or thousands) of people make it so. Great job everyone. Now, go download WordPress 4.1.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 06 Jan 2015 23:30:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:40;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:38:"Post Status: Let’s WordSesh together";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:30:"https://poststatus.com/?p=7232";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:46:"https://poststatus.com/lets-wordsesh-together/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1513:"<p><img class="aligncenter size-large wp-image-7233" src="https://poststatus.com/wp-content/uploads/2014/12/wordsesh-3-752x317.png" alt="wordsesh-3" width="627" height="264" /></p>\n<p>This weekend, <a href="http://wordsesh.org/">WordSesh</a> 3 will begin. WordSesh is 24 straight hours of live streamed presentations and discussions from a variety of intelligent folks in the WordPress world.</p>\n<p>It starts at 0:00 UTC Saturday, which really means 7:00 p.m. Eastern time on Friday for those of us in America. It&#8217;ll run through Saturday evening.</p>\n<p>The <a href="http://wordsesh.org/#schedule">lineup</a> for WordSesh is as good as any WordCamp, and the chat around the past events has been fantastic. <NAME> and his team of volunteers do a great job.</p>\n<p>I&#8217;ll be on a WordPress news roundtable at the tail end of WordSesh. On Friday, I&#8217;m going to have some news that will help explain my radio silence of late, and will probably spice up the conversation I&#8217;m to have with <NAME> (of WP Tavern), <NAME> and <NAME> (of DradCast) and <NAME> (of Torquemag). I hope you&#8217;ll watch.</p>\n<p>Check out all the information on the <a href="http://wordsesh.org/">WordSesh</a> website, follow <a href="https://twitter.com/wordsesh">@WordSesh</a> on Twitter, and RSVP if you&#8217;d like to attend. There are already over 600 people signed up. It&#8217;s completely free and community supported. I love this event and I&#8217;m glad to see it happen again.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 06 Jan 2015 23:30:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:41;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:54:"Post Status: Matt Mullenweg’s 2014 State of the Word";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:30:"https://poststatus.com/?p=7213";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"https://poststatus.com/matt-mullenwegs-2014-state-word/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:11832:"<p><img class="aligncenter size-large wp-image-7215" src="https://poststatus.com/wp-content/uploads/2014/10/mullenweg-752x564.jpg" alt="mullenweg" width="627" height="470" /></p>\n<blockquote><p>&#8220;Oh, my name is <NAME> by the way. Nice to meet you.&#8221;</p></blockquote>\n<p>After the WordPress co-founder welcomed the largest WordCamp San Francisco audience ever, he introduced himself and began this year&#8217;s State of the Word &#8212; the annual talk where he provides insight of the last year of WordPress and inspiration for the future.</p>\n<p><em>edit</em>: The video is now available:</p>\n<div class="wp-video"><!--[if lt IE 9]><script>document.createElement(''video'');</script><![endif]-->\n<a href="http://videos.videopress.com/GmPDhkyi/135_3_dvd.mp4">http://videos.videopress.com/GmPDhkyi/135_3_dvd.mp4</a></div>\n<p><a href="http://wordpress.tv/2014/10/26/matt-mullenweg-the-state-of-the-word-2014/">Or watch on WordPress.tv</a></p>\n<h3>The last WCSF as we know it</h3>\n<p>WordCamp San Francisco has been here in Mission Bay for 7 years, and it&#8217;s the last year here. Next year, things are going to change. There will be a WordCamp US (Matt notes it&#8217;s a working title) that will be modeled similarly to WordCamp Europe. The name, location and date are yet to be determined.</p>\n<h3>The annual WordPress survey</h3>\n<p>This year there were over 33,000 responses to the annual WordPress survey.</p>\n<p>Only 23% of the survey respondents were from the United States &#8212; a 6% increase of international respondents. And for the first time ever, non-English downloads surpassed English downloads. This change is much due to the new internationalization tools in WordPress core itself.</p>\n<p>A quarter of the respondents now make their living fully off of WordPress &#8212; 7,539 people from the survey pool. Matt estimates those people alone make up for more than a billion dollars of economic impact.</p>\n<p>Of those people surveyed, they have between half a million and a million currently active websites they own or have developed. And 91% of those sites took less than 200 hours to make.</p>\n<h3>5 releases since the last WCSF</h3>\n<p><img class="aligncenter size-large wp-image-7218" src="https://poststatus.com/wp-content/uploads/2014/10/contributors-752x560.jpg" alt="contributors" width="627" height="466" /></p>\n<p>Since last summer and the last WCSF, we&#8217;ve had five major releases of WordPress. Matt spent some time going over some of the features we&#8217;ve gained.</p>\n<p>From WordPress 3.6 to WordPress 4.0, WordPress has evolved an enormous amount in a short amount of time. It&#8217;s better on mobile; has a better user experience; is more performant; is easier to use for both developers and end users; and is the best publishing tool in the world.</p>\n<p>There have been seven release leads in that time:</p>\n<ul>\n<li><NAME></li>\n<li><NAME></li>\n<li><NAME></li>\n<li><NAME></li>\n<li><NAME></li>\n<li><NAME></li>\n<li><NAME></li>\n</ul>\n<p>Additionally, Matt highlighted another 8 significant contributors and five new committers to the WordPress project.</p>\n<p>In these five releases, there have been 785 contributors to the project. And Matt also highlights <NAME> &#8212; the WordPress 4.1 release lead, which will soon enter beta.</p>\n<h3>Two Drupal growth</h3>\n<p>Since last summer, WordPress has grown &#8220;two Drupal marketshares.&#8221;</p>\n<p>There have been 684 theme additions to the repository this year &#8212; a 36% increase year over year. There are now 2,781 themes in the repo.</p>\n<h3>iOS and Android</h3>\n<p>There have been two updates for Android, five for iOS, and we abandoned older platforms to focus on a better user experience. &#8220;Sorry, both of the Windows phone users,&#8221; he joked.</p>\n<p>Matt notes that there are now more mobile phones than humans on earth, and that this will continue to be a huge priority.</p>\n<h3>Developer.WordPress.org</h3>\n<p>Noted in the last WCSF State of the Word, <a href="http://developer.wordpress.org">developer.wordpress.org</a> is now live. A little later that hoped, he noted, but it&#8217;s a huge achievement and improvement for WordPress documentation.</p>\n<h3>Community</h3>\n<p>There are over 100 meetup and WordCamp organizers here at WordCamp San Francisco. Matt asked them all to stand, with a personal thanks to their commitment to a difficult, but rewarding task.</p>\n<h3>Internationalization</h3>\n<p>We have a long way to go with Internationalization, but Matt highlights some of the progress and promise for the future, including the advancement of language packs that plugin and theme developers will be able to take advantage of.</p>\n<p>Soon &#8212; with the release of WordPress 4.1 &#8212; Matt announced that the WordPress plugin and theme directories will be fully localized, making it more accessible and fully translated for non-English speakers.</p>\n<p>&#8220;The discovery process [of themes and plugins] is prohibitive&#8221; unless we make it a priority to offer the same discovery features that are in English to other languages.</p>\n<blockquote><p>&#8220;We have the potential &#8212; thanks to the web &#8212; for WordPress to be a truly global experience.&#8221;</p></blockquote>\n<h3>Better WordPress.org stats</h3>\n<p>Matt is promising a better offering of statistics for WordPress theme and plugin providers &#8212; a task that&#8217;s being worked on right now by the .org team.</p>\n<p>These are numbers people have long wanted and are very difficult to get. This is a very welcome change.</p>\n<h3>Adoption of new releases</h3>\n<p>Matt says only 25% of users are on the latest install, WordPress 4.0. While he notes that it&#8217;s far better than it was in the past, we still have a lot of improvement we can make.</p>\n<p>And he goes into the importance of removing versions from the conversation in software. Users should not know or care the version of their software. They should only know that it works.</p>\n<p>&#8220;Our vision is that we&#8217;re like Chrome. &#8230; And the hosts have helped pioneer this.&#8221; But WordPress itself will eventually move to such a model; this is a thing that is controversial, but I believe it is an essential and inevitable evolution.</p>\n<p>Matt asked how many people had been hacked &#8212; and even in a room full of professionals &#8212; it was a lot of people. This is why updates are important, as updated WordPress installs are much safer.</p>\n<h3>Relationship with PHP</h3>\n<p>Matt spent some time talking about WordPress support for more modern versions of PHP.</p>\n<p>WordPress is notorious for being a poor supporter of modern PHP. But that&#8217;s ready to change.</p>\n<blockquote><p>&#8220;We&#8217;re going to start working with hosts to get everyone on PHP 5.5 or above.&#8221;</p></blockquote>\n<h3>The Twenty Fifteen theme</h3>\n<p>Matt is excited about Twenty Fifteen, this coming year&#8217;s default theme. He notes this is our fifth year with a new default theme, and it&#8217;s the same number of years that Kubrick was the only default theme. A massive success.</p>\n<h3>WordPress and Github</h3>\n<p><NAME> says that starting this year, you can submit a pull request to WordPress on Github, &#8220;and that will not go into a black hole.&#8221;</p>\n<p>He asked how many people are using Github, and nearly everyone raised their hand. This removes a barrier to contributing to WordPress, and is a huge improvement.</p>\n<p>He also says that all development of the WordPress mobile apps is now on Github. It&#8217;s also worth noting that much of Automattic&#8217;s internal projects, like Jetpack, are run on Github.</p>\n<h3>Community communication with Slack</h3>\n<p>For the first time in 11 years, WordPress is leaving IRC for primary organization communication. We&#8217;re going to try a tool called <a href="http://slack.com">Slack</a>, built by a company in San Francisco started by the former founder of Flickr. Slack has taken over communication in remote teams, from my experience, and will be excellent.</p>\n<p>Slack will also help us make use of integrations and notifications. Right after the talk, <a href="http://chat.wordpress.org">chat.wordpress.org</a> will lead any WordPress.org user to a method for using Slack for communication.</p>\n<p>This is a huge partnership, and as someone that uses Slack daily, I&#8217;m incredibly excited. I&#8217;m sure there could be pushback for using a paid tool for this, but it&#8217;s certainly and interesting experiment and I&#8217;m excited to see what happens.</p>\n<p>It appears clear to me that contributing to WordPress will now be easier than ever.</p>\n<h3>Five for the future</h3>\n<p>Matt talked about his controversial blog post about the concept of <a href="http://ma.tt/2014/09/five-for-the-future/">Five for the future</a>, something <a title="Contribution as culture" href="https://poststatus.com/contribution-culture/">I also opined about</a>.</p>\n<p>Matt highlighted three companies: Gravity Forms, WPMUDev, and Automattic are all now contributing 5%. Of course he notes others are doing it as well, but wanted to highlight those that have committed to doing it publicly.</p>\n<p>Matt discussed a number of ways people can contribute, and that folks can attend sessions to learn how to contribute both here at WCSF and at most other WordCamp events.</p>\n<blockquote><p>&#8220;A contributor, by the way, is a title that no one can give you except yourself.&#8221;</p></blockquote>\n<p>He called it an altruistic mentality of contribution.</p>\n<h3>The JSON REST API</h3>\n<blockquote><p>&#8220;Who&#8217;s excited about the REST API?&#8221;</p></blockquote>\n<p>Nearly everyone responded with enthusiasm. Matt talks about how WordPress.com has had a similar API for years now, and what they&#8217;ve learned, and how much potential there will be for the core version, and the importance for marrying the .com API and the .org API as they each approach 2.0.</p>\n<p>Matt wants us to re-think &#8220;the WordPress engine&#8221; as a kernel that can a hub for building all sorts of things that are more capable to be fit into a proper architecture for the case at hand versus &#8220;shoehorning&#8221; existing WordPress features to areas that aren&#8217;t really meant for it.</p>\n<blockquote><p>&#8220;Maybe what we need isn&#8217;t a way for theming the WP admin; maybe what we need is a way for 1,000 WP admins to be built.&#8221;</p></blockquote>\n<p>And for those admins to be able to fork each other, learn from one another, and create better and catered publishing experiences catered to specific use cases.</p>\n<p>We can expect the core WordPress JSON API in 2015.</p>\n<h3>The continuing importance of WordPress and mobile.</h3>\n<p>Matt discussed how important mobile is to the future of the web, and therefore WordPress. &#8220;They are winning,&#8221; he says about the phones, and says how phones are more available and evolving every year. &#8220;They&#8217;re getting bigger and bigger,&#8221; and the interfaces and methods for interacting with our phones are evolving as well.</p>\n<p>Matt believes that WordPress can play a central role in the further evolution of mobile applications and the mobile web. As the power of mobile devices gets better, Matt believes that the web will become a bigger part of the mobile experience than it is now &#8212; when the conversation seems to be completely centered around apps.</p>\n<blockquote><p>&#8220;This is one of the ways that we can be truly global.&#8221;</p></blockquote>\n<h3>Wrapping up</h3>\n<p>To democratize publishing, is the mission of WordPress.</p>\n<p>WordPress is a community, Matt states, and accessibility from a language, device, and any other point of view is critical to the mission of WordPress.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 06 Jan 2015 23:30:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:42;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:87:"Post Status: Postmatic wants to revitalize your WordPress email, starting with comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:30:"https://poststatus.com/?p=7197";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:49:"https://poststatus.com/postmatic-wordpress-email/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4912:"<p><img class="aligncenter size-large wp-image-7200" src="https://poststatus.com/wp-content/uploads/2014/10/postmatic-752x307.gif" alt="postmatic" width="627" height="255" /></p>\n<p><a href="http://gopostmatic.com/">Postmatic</a> is a new WordPress plugin that I think is quite promising. It&#8217;s aim is to eventually change the way you utilize WordPress email in many ways, but its comment functionality is what intrigued me immediately.</p>\n<p>Postmatic currently allows users to subscribe to comments and posts by email; but what sets it apart is that it enables <em>reply by email</em> functionality as well. That&#8217;s something that has been high on my list of wants for a WordPress plugin for a long time, and I wanted it without switching to a third party system like Disqus.</p>\n<p>All in all &#8212; aside from enabling replies by email &#8212; the current feature set is quite similar to Jetpack&#8217;s Subscriptions module. Postmatic has widgets for post subscriptions and will send subscribers new posts and allow them to get emailed comment notifications as well.</p>\n<p></p>\n<p>I asked <NAME>, a co-founder of Postmatic, if they were considering a way to import from Jetpack or otherwise integrate with it, and they are. They&#8217;re working now to make it so that your old posts using Jetpack&#8217;s subscription module for comment notifications will still work, and your new posts will use Postmatic.</p>\n<p>I had a pretty thorough conversation with Jason and got to see Postmatic in action. For a free plugin especially, the functionality is quite impressive. I tested subscribing to comments, replying by email, and opting into subscriptions, and it is all very smooth. Here&#8217;s a sample reply notification to my email.<span id="more-7197"></span></p>\n<div id="attachment_7201" class="wp-caption aligncenter"><img class="wp-image-7201 size-large" src="https://poststatus.com/wp-content/uploads/2014/10/postmatic-email-752x816.gif" alt="postmatic-email" width="627" height="680" /><p class="wp-caption-text">Sample Postmatic notification email</p></div>\n<p>Postmatic is already in beta with their API as well. With a little legwork, you can utilize Postmatic for a variety of custom use cases. I know I&#8217;d love to play with it to see if I could create email campaigns for custom post types or multiple lists. They also intend to monetize the plugin via a few avenues &#8212; including ensuring mail delivery and functionality add-ons.</p>\n<p>Postmatic &#8212; available for <a href="https://wordpress.org/plugins/postmatic/">download on WordPress.org</a> &#8212; is and will remain completely free. At some point they&#8217;ll exit beta and they will offer paid delivery of outgoing mail for larger sites. They understand the limitations of sending email through your own server and are using Mailgun to ensure delivery. They also have an extensive &#8212; and for now private &#8212; list of features they aim to introduce to Postmatic.</p>\n<p>The product is definitely version 1.0. Advanced list management, and more advanced campaign delivery is still not ready. But I was impressed by how good of a 1.0 Postmatic is, and how much effort Jason and his business parter, <NAME>, have clearly invested heavily into the product. For instance, subscriber importing is already possible, so you could move to Postmatic for post delivery right away. They <a href="http://gopostmatic.com/setup/">have videos show how to do that and more</a> already available.</p>\n<p>They tell me as well that Postmatic is in very early stages. Right now they are working on more advanced template building and other features to help tame your WordPress emails. I think they definitely have other services like <a href="http://jetpack.me">Jetpack&#8217;s</a> Subscriptions and <a title="WYSIJA is now MailPoet" href="https://poststatus.com/wysija-now-mailpoet/">MailPoet</a> in their sights.</p>\n<p>I think WordPress email is ripe for disruption. Imagine, currently, all the ways users can get emails from a website, with little continuity: WordPress itself, Mailchimp or other newsletter provider, Jetpack / WordPress.com, eCommerce solutions, form solutions. Each of these sends email and each has their own quirks, look and feel, and otherwise.</p>\n<p>I&#8217;d love to see a service like <a href="http://gopostmatic.com/">Postmatic</a> help tame WordPress email as a whole, and offer a more seamless experience for my website visitors that receive email from me.</p>\n<p>In the short term, I doubt any service will be able to do this perfectly. But I think as WordPress sites send more and more mail, continuity in this arena will be very important. I know, for me, as I prepare to enable <a title="The future of Post Status" href="https://poststatus.com/radical/">club memberships on Post Status</a>, it&#8217;s top of my mind to provide a quality email experience to my members.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 06 Jan 2015 23:30:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:43;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:78:"Post Status: LoopConf: A new WordPress conference that’s only for developers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:30:"https://poststatus.com/?p=7188";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:74:"https://poststatus.com/loopconf-new-wordpress-conference-thats-developers/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3300:"<p>&nbsp;</p>\n<p><img class="aligncenter size-large wp-image-7191" src="https://poststatus.com/wp-content/uploads/2014/10/loopconf1-752x295.png" alt="loopconf" width="627" height="245" /></p>\n<p>Early May 2015 will be the first ever <a href="http://loopconf.io/">LoopConf</a>, a WordPress conference that&#8217;s geared solely toward developers. <NAME>, the owner of <a href="http://wpsitecare.com">WP Site Care</a>, is hosting the conference that is to be held in Las Vegas.</p>\n<p>LoopConf describes itself like this:</p>\n<blockquote><p>LoopConf is the greatest conference ever created for WordPress developers. LoopConf came about as we heard technically-minded folks talk about wanting to get together and dive deep into advanced engineering and development topics. We&#8217;ve assembled an amazing group of speakers to get this inaugural event started off on the right foot, and we&#8217;re excited to share our excitement and passion for WordPress with all of you in an exciting two-day event. We hope that you join us to celebrate the software we love, enjoy each other&#8217;s company, and learn from one another.</p></blockquote>\n<p>There are already six speakers confirmed:</p>\n<ul>\n<li><a href="http://nacin.com"><NAME></a>: WordPress lead developer, works at Audrey Capital</li>\n<li><a href="http://helenhousandi.com/"><NAME></a>: Lead developer of WordPress 4.0, works at 10up</li>\n<li><a href="http://ghost.org"><NAME>&#8217;Nolan</a>: Founder of Ghost and former WordPress contributor</li>\n<li><a href="http://www.balkhis.com/about/"><NAME>hi</a>: Owner of Awesome Motive, the parent company for WP Beginner, List 25, OptinMonster, and others</li>\n<li><a href="http://jennmoney.biz/"><NAME></a>: Open web engineer at Bocoup</li>\n<li><a href="http://yoast.com"><NAME></a>: owner of Yoast and maker of the WordPress SEO plugin, amongst others</li>\n</ul>\n<p>The initial speaker line-up is pretty fantastic. I&#8217;d love to learn more from each one of them.</p>\n<p>LoopConf is not a WordCamp or associated with the WordPress foundation. It&#8217;s an independent WordPress conference, and Ryan says it&#8217;s the first in-person developer only WordPress conference he knows of. Most WordCamps are very catered to a diverse audience.</p>\n<p>This could be a good way for people to have more developer centric conversations. I&#8217;m certainly interested to see how it goes, and would like to make it myself. They are seeking sponsors and speaker submissions now. I don&#8217;t know how much the tickets will be exactly, but Ryan tells me he hopes for LoopConf to have a prestige and quality similar to An Event Apart events, but for WordPress &#8212; so I imagine the tickets won&#8217;t be cheap.</p>\n<p>As the WordPress conference ecosystem continues to blossom, I&#8217;m sure this isn&#8217;t the only one we&#8217;ll see like this. Non-WordCamp, niche events like <a href="http://pressnomics.com">PressNomics</a> helped lead the way for those that are happening now, and I think generally it&#8217;s been good to have a diverse array of options for people to attend and learn from one another.</p>\n<p>You can keep up with <a href="http://twitter.com/loopconf">@LoopConf</a> on Twitter or <a href="http://loopconf.io">via the website</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 06 Jan 2015 23:30:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:44;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:70:"Post Status: 5 years into business, Pagely is growing faster than ever";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:30:"https://poststatus.com/?p=7174";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"https://poststatus.com/pagely-growth-wordpress-hosting/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:9862:"<p><img class="aligncenter size-full wp-image-7177" src="https://poststatus.com/wp-content/uploads/2014/10/pagely.png" alt="pagely" width="640" height="220" /></p>\n<p><a href="http://pagely.com">Pagely</a> is celebrating their fifth year of business right now. They have just launched their newly designed website (<em>note to early readers</em>: it&#8217;s in process of launching at this moment, so some links may not work until later today) to reflect some of the ways they&#8217;ve changed over the years. They are also growing, rapidly.</p>\n<p>The new website is a complete rebrand. They&#8217;ve tweaked their logo many times over the years, but they&#8217;ve completely changed it now. It&#8217;s much more modern and can be used in a variety of ways.</p>\n<p>The new website is flat, geometric, modern, and as sassy as ever (like with their <a href="https://pagely.com/about-us/investors/">Investors page</a> they are quite proud of). In all, the redesign attempts to showcase happy customers and what makes them different.</p>\n<p><a href="https://poststatus.com/pagely-growth-wordpress-hosting/pagely-new-homepage/" rel="attachment wp-att-7181"><img class="aligncenter size-large wp-image-7181" src="https://poststatus.com/wp-content/uploads/2014/10/pagely-new-homepage-752x547.png" alt="pagely-new-homepage" width="627" height="456" /></a></p>\n<p>They are introducing <a href="https://pagely.com/ambassadors/">brand ambassadors</a> &#8212; a kind of super testimonial &#8212; that includes names you&#8217;ll surely recognize from the WordPress community.</p>\n<p>Additionally, they are giving other managed hosts a bit of a sting with what they call <a href="https://pagely.com/turnthepage/">#turnthepage</a>, a dedicated page to highlight that they don&#8217;t charge for pageviews, something that most managed WordPress hosting companies do.<span id="more-7174"></span></p>\n<p>Pagely has implemented the new branding and design elements across most of their platform, including their Support sub-site.</p>\n<p><img class="aligncenter size-large wp-image-7176" src="https://poststatus.com/wp-content/uploads/2014/10/support-pagely-752x491.png" alt="support-pagely" width="627" height="409" /></p>\n<p>In addition to branding and a web redesign, Pagely is attempting to showcase that they were first to market with managed WordPress hosting, but also that they are best in class. The strategy &#8212; and particularly their recent all-in <a title="Pagely has new plans, a new dashboard, and a new Amazon Web Services infrastructure" href="https://poststatus.com/pagely-wordpress-hosting-amazon/">move to being an AWS-based service</a> &#8212; appear to be working.</p>\n<h3>Record growth</h3>\n<p>I discussed the Pagely redesign and their recent growth with <NAME>, Pagely co-founder and CEO. He told me that they&#8217;ve seen an enormous amount of growth this year.</p>\n<p>Revenue is up 28% in the last month alone and between 40-45% quarter over quarter. This means that Pagely is on pace to more than double in size between this summer and next.</p>\n<p>To some this may seem a surprise, but it&#8217;s part of some slow and steady investments Pagely has made in recent years.</p>\n<p>They certainly did not scale at the pace of other players in the market &#8212; most notably <a href="http://wpengine.com">WP Engine</a>. They also (as noted above with the Investors page) have bootstrapped their company from the beginning.</p>\n<p>Noone knows exactly how big Pagely is today, and that&#8217;s part of what you get with their owners. Though I&#8217;m told they are &#8220;more than 10 people but fewer than 50.&#8221;</p>\n<p><img class="aligncenter size-large wp-image-6550" src="https://poststatus.com/wp-content/uploads/2014/05/pagely-team-752x378.jpg" alt="pagely-team" width="627" height="315" /></p>\n<p>The Strebel&#8217;s (on the left of the picture above) own the company &#8212; only sharing equity with some key employees &#8212; and they are proud of their independence.</p>\n<p>It&#8217;s nearly impossible to be a Pagely customer without feeling the presence of Josh and <NAME>&#8217;s own personalities. And while Josh is an opinionated figure in the WordPress community, Pagely customers seem quite happy with that.</p>\n<h3>Managed host customer satisfaction</h3>\n<p><NAME> started a new project recently called <a href="http://hostingreviews.io/">HostingReviews.io</a>, a website that attempts to collect non-biased reviews from social media about various hosting solutions. Pagely has a 94% happiness rating according to HostingReviews.io &#8212; matched only by <a href="http://getflywheel.com">Flywheel&#8217;s</a> 95% rating.</p>\n<p>I like Steven&#8217;s project because he is not using affiliates at all with this project, an aspect that spoils most hosting review websites. Here&#8217;s a breakdown of some others:</p>\n<p><a href="https://poststatus.com/pagely-growth-wordpress-hosting/hosting-reviews-io/" rel="attachment wp-att-7175"><img class="aligncenter size-large wp-image-7175" src="https://poststatus.com/wp-content/uploads/2014/10/hosting-reviews-io-752x757.png" alt="hosting-reviews-io" width="627" height="631" /></a></p>\n<p>&nbsp;</p>\n<h3>Changes in managed WordPress hosting markets</h3>\n<p>It&#8217;s been an interesting time to analyze the managed WordPress hosting market. For one, the term &#8220;managed WordPress hosting&#8221; is here to stay. Nearly every large player &#8212; including the likes of GoDaddy, Bluehost, Dreamhost, and more &#8212; offer a managed WordPress hosting product.</p>\n<p>The differences between these large company products and the original smaller players &#8212; players like Pagely, WP Engine, Pressable, and later entrants like Flywheel, Siteground, and Pantheon &#8212; are beyond the name of the product. You really have to dig into each service and business model to get a full grasp of how they are unique.</p>\n<p>And this is really hard.</p>\n<p>For one, you can find positive and negative things about every host in the world. But also, these companies are often targeting different audiences. For instance, GoDaddy and the other large hosts pretty clearly want the smaller website audience, but to upsell them with a more WordPress-specific package. And that&#8217;s fine; they can offer some great functionality for that.</p>\n<p>But Pagely, Pantheon, and some others are going after bigger fish; and they are marketing themselves appropriately.</p>\n<h3>Going after WordPress.com VIP</h3>\n<p><a href="http://vip.wordpress.com/">WordPress.com VIP</a> is the king of the big-WordPress mountain. They have the promise of infinite scale and excellent reliability. It&#8217;s Automattic&#8217;s own product and an excellent business model for them.</p>\n<p>They are able to charge big companies big dollars (relative to other WordPress hosting, not compared to some enterprise software these companies are used to) to get the assurance that their website is hosted safely and reliably.</p>\n<p>WordPress.com <a href="http://vip.wordpress.com/stats/">serves billions of pageviews every month</a>. It&#8217;s simply a massive platform and a comfortable place for companies to take their WordPress hosting needs.</p>\n<p>Pagely wants to be an alternative to WordPress.com VIP. They see themselves as a viable and attractive alternative. For one, they&#8217;ll tell you that you can run anything on Pagely; whereas WordPress VIP has a restricted ecosystem that involves approved-only plugins and stringent code reviews for any custom code, that often requires one of their VIP service partners to perform the work.</p>\n<blockquote><p>VIP is a great service. However it is no longer the only service capable of serving clients at scale. We are winning more of those high-caliber clients that need the extra flexibility our stack offers.</p>\n<p>&#8211; <NAME>, Pagely CEO</p></blockquote>\n<p>Pagely and others seeking the high end market are still relatively early on in their efforts; WordPress.com VIP is a behemoth in that market.</p>\n<h3>A changing tide</h3>\n<p>I&#8217;ve noticed &#8212; and I&#8217;m sure some of you have too &#8212; a change in tide of WordPress managed hosting. This year has no doubt been a very tough one for some managed hosts.</p>\n<p>It&#8217;s been painful to see customers that were once happy with their service &#8212; to the point of being huge brand ambassadors themselves &#8212; to quietly leaving and moving on to something else, now with warranted skepticism.</p>\n<p>Personally, I try to stay pretty host-agnostic. It is a very difficult market to say anything about, due to its incredibly competitive nature. However, I think it&#8217;s obvious that Pagely &#8212; accompanied by the likes of <a href="http://siteground.com">SiteGround</a> and <a href="http://getpantheon.com">Pantheon</a> &#8212; is on the rise while some of the other early entrants to WordPress managed hosting are struggling to consistently deliver on their promises.</p>\n<p>However, with new-found popularity and fast growth, Pagely too can be susceptible to some of the same growing pains of their competition. But they say they&#8217;re ready for it.</p>\n<p>They&#8217;ve invested heavily in AWS and put all their technology chips in Amazon&#8217;s basket. And they assure me that they have been hiring some of the best support techs and engineers in the business. Additionally, they tell me that because they aren&#8217;t investing a ton of money into marketing, their customer influx is more natural and less likely to strain more linear growth levels.</p>\n<p>Time will tell if <a href="http://pagely.com">Pagely</a> is ready to scale with players that have more money and resources than they do, but they&#8217;re definitely excited about the recent growth, the new brand and website, their brand ambassadors, and the challenges ahead.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 06 Jan 2015 23:30:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:45;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:46:"Post Status: Is WordPress right for eCommerce?";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:30:"https://poststatus.com/?p=7165";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:49:"https://poststatus.com/wordpress-right-ecommerce/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:11014:"<p><img class="aligncenter size-large wp-image-7170" src="https://poststatus.com/wp-content/uploads/2014/10/wordpress-ecommerce-discussion-752x352.jpg" alt="wordpress-ecommerce-discussion" width="627" height="293" /></p>\n<p>I&#8217;m going to take a leaf out of <a href="http://www.chrislema.com/"><NAME>&#8217;s</a> book right now to answer whether WordPress should be used for eCommerce: <strong>It depends</strong>.</p>\n<p>There are camps of thought that think WordPress isn&#8217;t right for eCommerce, and there are people that think it&#8217;s the only way to go. Having worked with and used several different eCommerce platforms (both hosted and self-hosted), I&#8217;ve definitely developed the mindset that there are use cases for each. WordPress can be the right choice in a lot of circumstances, but not all.</p>\n<h3>Hosted vs. self-hosted</h3>\n<p>If you&#8217;re not sure about the major differences between hosted vs self hosted platforms, I recommend reading <em><NAME>&#8217;s</em> <a href="http://speakinginbytes.com/2014/08/hosted-vs-self-hosted-e-commerce/">overview of the major differences</a>. WordPress eCommerce usually falls under self-hosted eCommerce (I don&#8217;t count WordPress.com since it uses external eCommerce solutions). Forbes also <a href="http://www.forbes.com/sites/allbusiness/2014/09/26/which-e-commerce-platform-is-the-best-choice-for-your-online-store/">recently wrote about this</a>, though I don&#8217;t necessarily agree with their conclusions.</p>\n<p>The <a href="http://www.practicalecommerce.com/articles/70101-When-to-Avoid-WordPress-Ecommerce">typical viewpoint</a> is that WordPress plugins like WooCommerce or Easy Digital Downloads are great for small stores or people that just want to quickly and easily sell a few items, while hosted platforms like Shopify and Bigcommerce are for &#8220;serious&#8221; stores.</p>\n<p>This viewpoint is actually pretty backwards, not to mention the fact that the number of items is a poor way of determining which platform you should use.</p>\n<h3 id="give-each-its-due">Give each its due</h3>\n<p>Is WordPress the best platform on which to build apps? I don&#8217;t always think so, but it <strong>could be</strong>. Is it always a good choice for eCommerce? Nope. However, it&#8217;s the <strong>right one</strong> for lots of stores, and it&#8217;s the <strong>wrong one</strong> for lots of stores.</p>\n<p>There are a few major strengths and weaknesses of both WordPress and hosted solutions. I&#8217;ve worked most with <a href="http://www.woothemes.com/woocommerce/">WooCommerce</a>, <a href="http://easydigitaldownloads.com/">Easy Digital Downloads</a>, and <a href="http://www.shopify.com/">Shopify</a>, but have tried lots of other eCommerce solutions for comparison. Some of the knocks against WordPress aren&#8217;t valid, but we should note that some are.</p>\n<h3>WordPress eCommerce weaknesses</h3>\n<p>Everyone loves to talk about how easy certain WordPress plugins are to use. When you compare WordPress plugins to something like Shopify, this just <strong>isn&#8217;t true</strong>. They may be easy to use for people that are familiar with WordPress, but not for the average user who wants to start selling online with no experience.</p>\n<p>WordPress requires a domain name purchase, hosting setup, installation, plugin installation and setup, theme installation and setup, blah blah blah, you get the drift. With hosted solutions, you don&#8217;t worry about this (though solutions like <a href="http://evermo.re/">Evermore</a> &#8212; which was <a title="Evermore, hosted WordPress with power and ease of use" href="https://poststatus.com/evermore-interview/">covered by Post Status</a> when it launched &#8212; make this interesting). You pay your monthly bill, and you&#8217;re handed a store website &#8211; you just pick the name and get rolling. You can start adding products right away, and then you might get into changing your theme or other setup.<span id="more-7165"></span></p>\n<div id="attachment_7167" class="wp-caption alignright"><img class="wp-image-7167 size-medium" src="https://poststatus.com/wp-content/uploads/2014/10/easy-300x258.jpg" alt="easy" width="300" height="258" /><p class="wp-caption-text"><a href="https://c2.staticflickr.com/4/3181/3086827283_e9e762331c.jpg">Image Credit</a></p></div>\n<p>Some of the site tweaks or setup with hosted solutions aren&#8217;t easy, but the learning curve for a solution like Shopify is far gentler than the learning curve for something like WooCommerce.</p>\n<p>There are also <strong>WP Cron</strong> issues for some sites, as it&#8217;s not a perfect system for scheduling actions, like recurring payments. It can work pretty well, but other platforms can make this far easier to implement and more reliable than Cron.</p>\n<p>WordPress store owners are also <strong>responsible</strong> for their own hosting, software updates, and security. For many site owners, these are huge responsibilities. Hosted solutions roll all of this into their package so that users don&#8217;t have to know how their website is powered. They just have to use it.</p>\n<p>Both WordPress and hosted solutions will scale, but there are considerations with WordPress that users need to be aware of. Database issues (like backups or memory with massive amounts of customers and orders) should be addressed, hosting has to be optimized, and plugins need to scale with the site. With a hosted solution, none of this is your problem as a user.</p>\n<h3>WordPress eCommerce strengths</h3>\n<p>Bearing these weaknesses in mind, it&#8217;s a bit crazy to me that WordPress is sometimes referred to as the &#8220;easy solution&#8221; or the right tool for &#8220;small stores&#8221;. It&#8217;s not. In many cases, it&#8217;s like bringing a tank to the eCommerce playground.</p>\n<p>So what does WordPress do well?</p>\n<p>First, WordPress offers the most all-in-one website solution available. WordPress can offer the eCommerce aspects of the website, in addition to its many other CMS features. The ability to create a single, seamless CMS experience for a multi-purpose website makes it quite compelling and more budget-friendly than more &#8220;eCommerce first&#8221; platforms.</p>\n<p>Second, it&#8217;s optimized for <strong>SEO</strong>. Your content is crucial here, and WordPress is built for content. More importantly, if you&#8217;ve tried to blog on another platform, you know how painful it can be (don&#8217;t start with me Squarespace fans, that thing is difficult to use). WordPress doesn&#8217;t encourage you to avoid blogging to avoid headache: it&#8217;s built for <strong>complete websites</strong>, and is not simply focused on eCommerce.</p>\n<p>WordPress also contains functionality that you can&#8217;t always get with different platforms. There&#8217;s a massive selection of plugins, themes, and all sorts of solutions for WordPress that are readily available. Since it&#8217;s open source, it&#8217;s far easier to find ways to customize it when compared to closed platforms like Bigcommerce.</p>\n<p>Speaking of customizations, your ability to customize WordPress or plugins is <strong>far</strong> easier than with hosted solutions. There&#8217;s lots of functionality that can be achieved with WordPress that&#8217;s not even possible in hosted solutions. For example, developers have no control over the Shopify checkout process, but this can be entirely customized with WordPress.</p>\n<p>You can also usually find a plugin that will provide a &#8220;starting point&#8221; for a customization project. Even if you find a Shopify or Bigcommerce app that gets <em>close</em> to what you need, but not quite, you&#8217;ll need to create a completely custom solution anyway &#8211; there&#8217;s no &#8220;extending&#8221; there.</p>\n<p>Along with customization is the <strong>control over your environment</strong>. You can spin up your eCommerce site on something like Digital Ocean, and you&#8217;ve got control over the entire site, from server to theme.</p>\n<h3>Product type</h3>\n<p>The biggest difference for me between hosted solutions and self-hosted actually isn&#8217;t usability or scalability &#8211; it&#8217;s <strong>product type</strong>. Can almost every eCommerce platform sell tee shirts? Yes. Even EDD can do that, and it&#8217;s made for digital products.</p>\n<p>However, selling complex products becomes infinitely more difficult on hosted platforms, as you&#8217;re restricted to what the API offers for product changes, which isn&#8217;t always a lot. For example, if you&#8217;ve ever tried to add pricing changes for customization options in Shopify, you know that it literally takes some wizardry, black magic, and possibly bubble gum used as tape to do so.</p>\n<p>WordPress plugins make this far easier, because the entire platform is open, not just an API. Most eCommerce plugins have more than enough actions or filters to change products, product pages, checkout forms, or any other part of your site.</p>\n<h3>Recap</h3>\n<p>Hosted eCommerce solutions are typically easy to use, and can provide some customization options via apps or other add-on services. However, it&#8217;s like renting a house versus owning. With a rented house, you can&#8217;t go knocking down walls or completely remodeling &#8211; you&#8217;ve got to work inside of a framework you&#8217;re given. This is exactly how a hosted solution works.</p>\n<p>The benefit to this is that you absolve yourself of a lot of responsibility and worry. The entire experience is managed and supported, and is typically very easy to work with.</p>\n<p>However, WordPress eCommerce is like buying the house. You can do whatever you want &#8211; add-on, rebuild sections of the house, change layouts around, add tunnels to other houses, you name it. However, when the water heater blows up, it&#8217;s your responsibility.</p>\n<p>WordPress also affords the opportunity to sell complex products, such as measurement based products like corks by the pound, that simply can&#8217;t be sold on other platforms. The same ability to customize WordPress so thoroughly lets you customize the eCommerce plugin you&#8217;re using.</p>\n<p>You gain the flexibility that comes with the platform, as well as the benefits like tons of plugins, themes, a great content structure, and a consistently maintained and updated core solution. However, the Frankenstein site that you build is your baby, and yours alone &#8211; you need to host it, maintain it, and care for it.</p>\n<p>WordPress lets you create advanced functionality via plugins and customizations, but isn&#8217;t right for users looking for an easy, basic shop setup. If you want a move-in ready house or a beautiful rental, you should look at hosted solutions. If you&#8217;re willing to make your dream house from great bones and foundation, or you need to sell fairly complex products, then WordPress might be it for you. It&#8217;s not the &#8220;easy&#8221; solution, but it can be a great one.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 06 Jan 2015 23:30:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:46;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:36:"Post Status: Contribution as culture";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:30:"https://poststatus.com/?p=7153";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:44:"https://poststatus.com/contribution-culture/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:12488:"<p><img class="aligncenter size-large wp-image-7157" src="https://poststatus.com/wp-content/uploads/2014/10/five-percent-752x250.gif" alt="five-percent" width="627" height="208" /></p>\n<p><em>This post spends a lot of time analyzing and referencing two other blog posts. Excuse me for that, but also be sure to read both, as they are relevant for this post and also interesting in their own right.</em></p>\n<p><NAME> wrote a blog post called <a href="http://ma.tt/2014/09/five-for-the-future/">Five for the Future</a> yesterday that advocates his belief that WordPress-centric companies should aim to utilize 5% of their company resources toward contributing back to the project.</p>\n<p>He noted in the post that <a href="http://automattic.com">Automattic</a> isn&#8217;t quite to this point, but that they are working on it, and describes why he believes it&#8217;s important. He closes with this:</p>\n<blockquote><p>It’s a big commitment, but I can’t think of a better long-term investment in the health of WordPress overall. <strong>I think it will look incredibly modest in hindsight.</strong> This ratio is probably the bare minimum for a sustainable ecosystem, avoiding the <a href="http://en.wikipedia.org/wiki/Tragedy_of_the_commons">tragedy of the commons</a>. I think the 5% rule is one that all open source projects and companies should follow, at least if they want to be vibrant a decade from now.</p></blockquote>\n<p>This was followed up by one of the co-founders of one of the very hosting companies Matt partially referenced in his post &#8212; WP Engine&#8217;s Ben Metcalfe &#8212; who responded with a blog post of his own: <a href="http://benmetcalfe.com/blog/2014/09/wordpress-what-exactly-do-they-get-for-their-5/">WordPress: What exactly do they get for their 5%?</a></p>\n<p>I think I was immediately thrown off by Ben&#8217;s post title, but so many times throughout reading it I was shocked at how he made assumptions of Matt&#8217;s intentions or missed what I would call &#8220;the point&#8221;.</p>\n<h3>5% is not a decree</h3>\n<p>Obviously, Matt is not speaking from the mountaintop with a proclamation of law. This is his recommendation &#8212; one that he believes will reward the firms that strive for it.</p>\n<p>I believe that the community has already shown us that those that invest into WordPress are rewarded from it. We improve our understanding of a foundational software of our careers, improve our skills, are more marketable, more attractive to employers, and create natural opportunities for developing industry relationships.</p>\n<p>How should 5% of &#8220;people&#8221; be defined? I&#8217;m pretty sure Matt would agree that 5% of people or 5% of revenue toward people doesn&#8217;t really matter to him; yet Ben makes a continuous sticking point about the cost of &#8212; and need for &#8212; engineers.</p>\n<p>Additionally, while Matt utilizes full-time employees, the same (or better) effect could be had with shared time from more employees.</p>\n<p>I&#8217;m not big into absolutes, so it&#8217;s important to remember that while I&#8217;m advocating that Matt&#8217;s recommendation of 5% time, I think it&#8217;s simply a good recommendation. This is a free economy and companies can do what they want. But I think in the current and long term, contribution will be key to greater corporate success for those that choose to do so.</p>\n<h3>What does 5% cost, and who does it require?</h3>\n<p><span id="more-7153"></span></p>\n<blockquote><p>While Matt was careful to include numerous non-engineering roles companies could help with, ultimately what drives the open source project is source code contribution by software engineers. &#8230;</p>\n<p>A reasonable engineer in the US costs $100k/y, and if you factor in benefits <em>(tax funded health-care, anyone?)</em> and overheads you could easily be looking at $130k or more per person, per year. &#8230;</p>\n<p>A 200+ person web hosting company would need to hire 10 engineers to meet a 5% goal, requiring a budget of anything between $1MM-1.3MM+ per year. Those engineers probably need a manager – to mentor them, provide career development etc. Those 11 people also put pressure on human resources, finance, legal, facilities etc – probably equating to another person again. Now we’re talking probably more like $1.25-$1.5m annually.</p></blockquote>\n<p>First, I believe Ben has spent too much time in the world&#8217;s largest cities if he believes engineers cost $100,000 per year on average. In my experience (yes, I interview people myself), that&#8217;s not the case, and based on my decent view of the ecosystem it&#8217;s not an appropriate going rate &#8212; especially if the offer on the table is a particularly desirable position.</p>\n<p>More importantly, <strong>the project needs far more non-technical contributors</strong>. Ben&#8217;s assertion that &#8220;ultimately&#8221; software engineers drive the project is not true. Users drive the project. A technically savvy user-minded contributor can be a beacon of light to a group of software developers. And given the user-facing nature of WordPress itself, non-engineer contributors could drastically improve the less code-sexy parts of the WordPress ecosystem: project management, docs, training, testing, support, translation, etc.</p>\n<p>Additional to &#8220;core&#8221; contributions, WordCamps, plugins, themes, communities, and many other venues are outstanding places where contributors &#8212; yes, they&#8217;re still contributors! &#8212; can impact the overall project.</p>\n<p>Finally, as I noted above, I think companies could quite effectively contribute parts of employees&#8217; time versus dedicated 100% time, which would also prevent the need to have dedicated managers for open source contributors.</p>\n<h3>Foundational software to your business</h3>\n<p>Ben spends a chunk of time saying that big companies like GoDaddy get a &#8220;get out of jail free card&#8221; and that obviously Matt wouldn&#8217;t expect they dedicate 5% of their thousands of employees.</p>\n<p>GoDaddy definitely benefits from WordPress and they also contribute to it; and no, they don&#8217;t contribute 5% I&#8217;m sure. But WordPress is not foundational to GoDaddy&#8217;s business. They have a dedicated sub-product for it, and they also have many contributors to it.</p>\n<p>WP Engine, and many others (including mine), are almost completely or completely reliant on WordPress as a platform. WordPress and its underlying technologies are foundational to our careers and businesses.</p>\n<p>It is simply a different story to compare a company that would continue on pretty much fine without WordPress and one that would have to seriously reconsider their entire business model.</p>\n<p>For example, let&#8217;s compare the scenario to a publisher. <a href="http://recode.net">Re/code</a> is built on WordPress. They have a staff of 20+. Do they <em>completely rely</em> on WordPress for their website? Yes. For their business model? No. In their scenario, it makes sense for them &#8212; and could benefit them pretty directly &#8212; to allocate some time of some employees to WordPress, but if WordPress disappears they can and will migrate to a different platform.</p>\n<h3>Contributing to the full stack</h3>\n<p>It was questioned to me on Twitter, after my initial reaction to Ben&#8217;s post, whether I contribute 5% of my time to open source projects like PHP, MySQL, and other tools that WordPress relies on.</p>\n<p>This is a good question and point, but it does not cause me to stumble in my opinions. I believe open source contributions in general benefit the entire software stack.</p>\n<p>In my scenario, I can be more impactful on the WordPress project than others. But I believe contributions can take many shapes, in both directions.</p>\n<p>Some folks, like <NAME>, greatly contribute to the project as a whole by supporting upstream projects like <a href="http://wp-cli.org">WP CLI.</a></p>\n<p>Automattic is a fantastic example of a company that has both upstream and downstream contributions. They are active contributors to, employers of contributors or founders, or monetary sponsors to a huge number of downstream projects: WordPress, PHP, Nginx, jQuery, Elastic Search, Node, Socket.io, and probably a bunch I can&#8217;t think of or don&#8217;t know about. Additionally, they are a driving force behind dozens of upstream, open source themes and plugins.</p>\n<p><em>Edit: Matt <a href="https://twitter.com/photomatt/status/517270097355091968">says in a Tweet</a> where <NAME> asked for clarification about PHP contributions that Automattic doesn&#8217;t actively contribute to PHP. Though I think I define contribution a bit more loosely than Matt does.</em></p>\n<p>Whether a company is contributing to their foundational piece of software, a downstream or upstream application, or on an adjacent aspect that leads to the betterment of the platform that is foundational to their business objectives, then I believe it will in turn be beneficial to their bottom line.</p>\n<h3>Contribution as culture</h3>\n<p>Contribution should not be considered an isolated cost, but an enabling investment.</p>\n<p>If I run a business that relies on a foundational piece of software like WordPress, then it benefits me greatly for my employees &#8212; no matter what role they play within the company &#8212; to be intimately familiar with that software.</p>\n<p>In my last job, I was tasked with guiding a transition of my company from developing mostly on a proprietary CMS to WordPress. I consistently preached the importance for everyone in the company to understand some fundamentals of WordPress itself. During my time there and since I&#8217;ve moved on, I&#8217;ve seen other members of that company learn the software, get involved in our local community, and even contribute back to WordPress itself; and both they and the company are better off for it.</p>\n<p>Whether an employee is in sales, customer service, design, development, management, or wherever else &#8212; every employee knowing your product is important. I firmly believe this. I would want anyone in an organization I&#8217;m part of to be able to discuss our product in detail and with confidence to anyone.</p>\n<p>When your company relies on a foundational piece of software &#8212; such as those we&#8217;re discussing in this post &#8212; that&#8217;s in effect part of your product. We are building products and services around and for WordPress. How important should it be that our company&#8217;s employees understand it?</p>\n<p>And how can they understand it better? By contributing of course!</p>\n<p>Have a new support rep? Show them the WordPress.org forums to get their feet wet. New designer or front-end developer? Have them sit in on default theme conversations or read through the Make UI blog. New sales person? Get them involved at your local meetup and WordCamp. This list can go on.</p>\n<p>Avenues for contribution are an incredible gateway for learning WordPress. Blogging about WordPress (another avenue of contribution) has greatly enabled me to be better at my job, and therefore made me significantly more valuable to the companies I&#8217;ve worked with.</p>\n<h3>Five for now</h3>\n<p>Matt called his post Five for the Future, and talked specifically about how a 5% investment by a company will ensure a greater future for WordPress and therefore said company. I disagree.</p>\n<p>Contributing now will benefit the company and its employees <em>right now</em>. And while both Matt and Ben focused on individuals within the company being targeted contributors, I think it&#8217;s much more beneficial to have a much larger percentage of a company contributing a portion of their time (even if small). I&#8217;d rather see 2 of 200 employees be full time contributors and then have 80 10% contributors than have 10 full time contributors.</p>\n<p>I think we&#8217;ve seen many, many examples of contributors (people and companies) reaping tangible and intangible benefits from when they contribute &#8212; whether that contribution is to the codebase or the community. Contributors in this ecosystem come out on top.</p>\n<p>Contributions are not an isolated cost or burden. Nor should their effects be limited to good faith investments to the sustainability of the ecosystem.</p>\n<p>Contributions benefit the bottom line, and they benefit the bottom line right now.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 06 Jan 2015 23:30:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:47;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:84:"Post Status: The anatomy of a security breach, and how to do good in a bad situation";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:30:"https://poststatus.com/?p=7134";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:62:"https://poststatus.com/ithemes-security-breach-and-disclosure/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:12133:"<p><img class="aligncenter size-large wp-image-7139" src="https://poststatus.com/wp-content/uploads/2014/09/ithemes-dark-752x226.jpg" alt="ithemes-dark" width="627" height="188" /></p>\n<p>On Tuesday, iThemes posted an announcement that they had <a href="http://ithemes.com/2014/09/23/important-security-update-for-all-customers/">suffered from a security breach</a> of their website and servers. The attackers had reached the servers which stored customer information, including email addresses, IP addresses, full names, and yes, passwords.</p>\n<p>iThemes was quick to notify customers via their blog, social media, and their full customer email list about the breach. Approximately 60,000 users were affected. They warned that passwords were vulnerable. In <a href="http://ithemes.com/2014/09/25/update-2-security-update-for-ithemes-customers/">the second update</a>, posted today, they gave more information about passwords, in response to many questions from users.</p>\n<p>It turns out that passwords were stored in plaintext on iThemes&#8217; server. That is, obviously, very bad practice.</p>\n<blockquote>\n<h3>Why Would You Store Passwords in Plain Text?</h3>\n<p>This is how the membership software we started using in 2009 did it. There are a number of factors for this, none that will make much of a difference at this point or make anyone feel any better about it, myself included.</p>\n<p>Know that it’s not because we did not value your data. As an organization, we have been working on a very large migration process that has required us to interlink legacy systems with the latest technologies. Anyone that has ever gone through that process understands the complexities and challenges.</p>\n<p>Frankly put, it’s been something we identified as a potential risk and are working rapidly now to rectify this issue as fast as humanly possible.</p></blockquote>\n<p>It&#8217;s also worth noting that their customer database and iThemes.com users were affected, but customers that use their Sync product to manage their own websites were not. So if you use iThemes Sync, and utilized your site passwords to connect, those accounts and passwords were not part of this breach.</p>\n<h3>aMember and legacy membership platforms</h3>\n<p>The membership platform that Cory highlights in the update is a<a href="http://www.amember.com/">Member</a>, a membership management system that&#8217;s been around for many years. aMember only introduced <a href="http://www.amember.com/p/2011/11/amember-pro-version-4-stable/">encrypted passwords in version 4</a>, which was released in November of 2011.</p>\n<p>I discussed aMember and plaintext passwords with some other folks that have a significant history with the membership platform, and there are some significant problems that anyone using aMember have experienced.</p>\n<p>First, most folks heavily using aMember aren&#8217;t using it out of the box. At the time, most membership sites were doing significant customizations to aMember to achieve desired functionality. So when the v.4 update came out, it was a very difficult update procedure for people to take advantage of the features.</p>\n<p>iThemes would even tell you that their current version of membership software doesn&#8217;t look much like aMember at all.</p>\n<p>iThemes is also not the first to be hacked and their aMember passwords leaked. Tuts+ Premium <a href="http://marketblog.envato.com/general/tuts-premium-security/">had the same issue in 2012</a>.</p>\n<p>I discussed aMember at length with <a href="http://twitter.com/pippinsplugins"><NAME></a>. He has done a lot of work on his brother&#8217;s membership site, <a href="http://cgcookie.com/">CGCookie</a>, which also used aMember until 2012, when he did a huge migration of tens of thousands of members to a new platform.</p>\n<p>At the time, Pippin notes that aMember did not disclose passwords were stored in plaintext, so CGCookie had no idea that their users were vulnerable until they learned of the Tuts+ hack, wherein they put a planned migration &#8220;into hyperdrive.&#8221;</p>\n<p>The problem with iThemes&#8217; situation is that they knew of the plaintext passwords and didn&#8217;t address the obvious security vulnerability.</p>\n<p>All in all, the migration for CGCookie took months to perfect and significant juggling of priorities by their team.</p>\n<h3>Ticking time bomb</h3>\n<p>Speaking with Pippin, migrating from aMember was not an easy task. Paypal&#8217;s IPN handlers (a payment notification system) were tightly linked to aMember and preventing customer accounts from being disconnected from the membership site took weeks of engineering. Additionally, simply upgrading to the newer versions was also terrible.</p>\n<p>Many other WordPress companies have used aMember in the past as well, storing plaintext passwords just like iThemes today.</p>\n<p>So, aMember has definitely been a problem before now, but iThemes has absolutely slacked in their prioritization of the issue. Simply put, it&#8217;s inexcusable to put users into long term risk if you know their passwords are stored in plaintext.<span id="more-7134"></span></p>\n<p>That said, we should consider the potential consequences &#8212; though it doesn&#8217;t make it excusable. Because iThemes doesn&#8217;t store credit card details, emails and names and passwords are about the worst things at risk. Still, a tiny percentage of the general population uses responsible passwords, so getting a list of names and emails and passwords is a treasure trove of information for third party (as in other websites like banks and email providers) to steal identities and break directly into user accounts.</p>\n<p>This should also be a significant lesson for any user to always use different passwords for every website where you keep an account. Tools like <a href="https://lastpass.com/">LastPass</a> and <a href="https://agilebits.com/">1Password</a> make account password management easy. Additionally, learn about <a href="http://en.wikipedia.org/wiki/Two-step_verification">2-factor authentication</a> and use it whenever the service enables it.</p>\n<h3>Owning mistakes</h3>\n<p>This is clearly a horrible situation for iThemes to be in. Users have a right to be mad. In 2014 we should be able to expect that our passwords are encrypted, and that even if a server where our information is stored is hacked, that certain valuable details like credit cards or passwords are not exposed. Thankfully, iThemes doesn&#8217;t store credit card details, but those passwords should now be assumed stolen, and users have to pay that price.</p>\n<p>But where I have enormous respect for iThemes is how they have owned it. Especially in the update post, <NAME> &#8212; iThemes&#8217; founder and CEO &#8212; took ownership of the issue and told the full story of the breach.</p>\n<blockquote><p>I realize this will generate a lot of concern. Again, I am deeply sorry for this mistake and how it has affected you.</p>\n<p>Let me say: we have made mistakes in the past at iThemes … and as humans will make mistakes in the future. To make a promise otherwise would be absurd and misleading.</p>\n<p><strong>But my promise to you, our customers, is this</strong> … and it’s the same promise that I’ve held to since January 2008 when I started iThemes in my home:</p>\n<ol>\n<li><strong>We will identify mistakes as best we can.</strong> You have helped us with this and appreciate that accountability.</li>\n<li><strong>We will own up to our mistakes.</strong> Again, we’ve done this in the past, we did this yesterday and this post is another example of us living this value.</li>\n<li><strong>We will fix the mistake as fast as humanly possible.</strong> A number of priority issues have been unearthed, shone a hard light on, but we are working to resolve them.</li>\n<li><strong>We will learn and grow from it and be better for it and for you.</strong></li>\n</ol>\n<p>Additionally, as the founder and CEO, the leader of this company, I want you to know: <strong>the buck stops with me and me alone.</strong></p>\n<p>At the end of the day, I am responsible for our company, iThemes, and the work we do. I’ve often tried to defer credit for the great work we’ve done to our team, but as for the mistakes we make, that credit belongs solely to me.</p></blockquote>\n<p>Not every company that&#8217;s been breached can say the same. Even huge organizations (I&#8217;m thinking of Home Depot as the latest) have done a horrible job at responsible and honest disclosure to their customers.</p>\n<p>iThemes could have made this much more quiet and kept it from being a priority to their users or a big deal in WordPress news-land. But they didn&#8217;t. They owned it, they apologized, and they&#8217;ve been rewarded for that.</p>\n<p>In the comments of the security update post, users were appalled by the lack of responsibility on the security priorities, but the honesty paid off in the sense that users were verbally thankful for it so that they could accept the problem and deal with it, when the alternative was to be in the dark.</p>\n<p>While this breach has cost iThemes some credibility, and some trust, I believe those things are recoverable. Had they obfuscated the hack itself, my post and users reactions (had they found out) would be very different.</p>\n<h3>What iThemes is doing now</h3>\n<p>iThemes has learned a hard lesson this week, as many other companies have before them. Now they must react, and react strongly. In a situation like this, nothing should take priority over getting this issue fixed.</p>\n<p>Until they get their password storage issue fixed, they still are storing passwords in plaintext, even the new ones. Thankfully they&#8217;ve already updated password restrictions &#8212; which previously limited passwords to 20 characters &#8212; to now accept up to 255 characters. But storing them in plaintext means that they are still as vulnerable today as they were last week if someone gets into the server again. So they must be absolutely vigilant to protect their servers through this migration.</p>\n<h3>What we can all learn</h3>\n<p>Security is not a sexy industry. Too often we don&#8217;t consider it until it&#8217;s a problem. &#8220;Going on offense&#8221; should be our default when we consider security actions, but more often &#8212; even with some of the best companies and people in the tech space &#8212; we react to issues and aren&#8217;t appropriately proactive.</p>\n<p>That said, our job is not done either. All of us should consider our own security situation and how we can improve it. Especially if you have users of your own (and many of my readers do), consider that state of your own security, and make sure it&#8217;s a priority in your business.</p>\n<p>When we think about what pays the bills, it&#8217;s not security awareness and proactive security investments. But we should consider security breaches and vulnerabilities as risks that must be managed; meaning investment into security priorities should be a significant part of any business.</p>\n<p>iThemes, Envato, and WooThemes are all &#8220;big&#8221; businesses from a WordPress business perspective. Each of them has fought a website security battle. Envato and WooThemes before iThemes have recovered and maintained their users and the community&#8217;s trust. I think iThemes will too. But before you, or me, decide &#8220;it won&#8217;t happen to us&#8221;, consider that it can happen to anyone, and our investments into security measures and best practices are not only worthwhile, but the only responsible thing to do.</p>\n<p>And for users, use different passwords on every site. Use LastPass or 1Password. Enable 2-factor authentication. Be vigilant. Do not use the excuse that it&#8217;s too hard or a burden. What&#8217;s much more of a burden is dealing with a hacked email or bank account. Protect yourself and learn how to protect your accounts. It&#8217;s easy to adjust to and modern tools make it a much simpler task to manage.</p>\n<p>Let&#8217;s all &#8212; web professionals and users &#8212; learn with iThemes here, and do better.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 06 Jan 2015 23:30:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:48;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:98:"WPTavern: WordPress StackExchange Thrives in 2014 with 17 Million Page Views and 14K New Questions";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=36695";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:108:"http://wptavern.com/wordpress-stackexchange-thrives-in-2014-with-17-million-page-views-and-14k-new-questions";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:10679:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/wpse.png" rel="prettyphoto[36695]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/wpse.png?resize=746%2C363" alt="wpse" class="aligncenter size-full wp-image-36734" /></a></p>\n<p>Last week, moderators from the <a href="http://wordpress.stackexchange.com/" target="_blank">WordPress Development StackExchange</a> (WPSE) posted a short summary of <a href="http://meta.wordpress.stackexchange.com/questions/3951/happy-new-year-how-about-some-stats/3952#3952" target="_blank">stats from 2014</a>, which demonstrate the remarkable growth and success of the community surrounding the site. This past year WPSE pulled in approximately 15,000 new users, bringing the total to 45,000.</p>\n<p>The site received a total of 17 million page views during 2014. Users submitted 14,000 new questions, and the site received 13,000 new answers.</p>\n<p>The question and answer model employed at the WordPress StackExchange may not be a perfect forumula, but it works. If you&#8217;re a developer looking for help, you&#8217;re far more likely to receive high quality answers on WPSE than on the official WordPress.org forums. On average, the two forums cater to different types of users.</p>\n<p>The <a href="http://stackexchange.com/" target="_blank">StackExchange</a> question and answer communities are expert communities by design. Right answers float to the top, based on votes from experts in the community, making it an efficient way to locate the most helpful answers.</p>\n<p>In more traditional forums, you&#8217;ll spend quite a bit of time weeding through useless, poor quality information to find what you&#8217;re looking for. Those who share their knowledge on StackExchange communities earn reputation points, which also helps users discern the quality of answers provided. Overall, it&#8217;s a tidy formula for engaging and rewarding expert advice.</p>\n<h3>The Culture of the WordPress StackExchange Community</h3>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/rarst-wpse.png" rel="prettyphoto[36695]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/rarst-wpse.png?resize=300%2C199" alt="rarst-wpse" class="alignright size-medium wp-image-36731" /></a>Each new StackExchange community passes through a beta period where it is required to demonstrate sustained activity around the topic. I spoke with <a href="http://www.rarst.net/" target="_blank"><NAME></a>, better known online as <a href="https://twitter.com/rarst" target="_blank">@Rarst</a>, a moderator who has witnessed the evolution of WPSE from its early beta days to today. Browsing through questions on the site, there seem to be very few beginner inquiries, as compared to WordPress.org support. I asked Savchenko if the site purposely attracts a different crowd or if the questions are heavily moderated.</p>\n<p>&#8220;At 45,000+ registered users it would be hard for me to paint an average user in few strokes,&#8221; he said. &#8220;Out of more obvious quirks I would say is that WPSE seems more heavily European than WordPress&#8217; usual.</p>\n<p>&#8220;It&#8217;s also a clearly for–developer resource in a primarily user–centric WordPress world, which doesn&#8217;t mean beginner development questions are unwelcome — they often make some of the best ones. But beginner user questions aren&#8217;t something we historically selected for.&#8221;</p>\n<p>While moderation is one of the key features in place in every StackExchange network, Rarst believes it&#8217;s not as heavy as one might imagine. &#8220;I think SE moderation is efficient rather than heavy. It is strict when it needs to be and intelligently flexible when not,&#8221; he said.</p>\n<p>Why do many WordPress users prefer getting help at WPSE as opposed to WordPress.org? Apart from the general difference in the user base, the WPSE community has a different mission and approach to answering questions.</p>\n<p>&#8220;WPSE is a unique case of a high profile WordPress site outside of the WordPress ethos. In a way, we are the other side of the coin — a corner for people who don&#8217;t click with mainline WordPress resources too well,&#8221; Rarst explained.</p>\n<p>&#8220;For StackExchange, the cultivation of knowledge is the primary mission, as the WordPress.org documentation and forums often feel like a neglected afterthought.&#8221; WPSE offers an alternative way to explore WordPress development questions, outside of the culture that exists on WordPress.org.</p>\n<h3>WPSE Thrives on an Organic, Self-Governing Organizational Structure</h3>\n<p>WPSE manages to maintain a cohesive community without instituting an overly strict governing body. All WPSE moderators are organically grown within the community. &#8220;People tend to choose their own level of social involvement; the system isn&#8217;t really opinionated about it,&#8221; Rarst said. &#8220;There are some chatty types, who are around on our meta site and in &#8216;The Loop&#8217; chat room a lot. There are also plenty of high ranked people who keep to themselves and stay a complete mystery, apart from avatar and nickname.&#8221;</p>\n<p>When it comes to housekeeping, WPSE has a natural structure, which lends moderation capabilities to members with the most influence and participation. &#8220;The moderators tend to have a lot of pull in organizational issues, but they tend to be elected moderators because they already have that influence,&#8221; Rarst explained. &#8220;Position comes to those who have established themselves, not the other way around.&#8221;</p>\n<p>The overarching StackExchange mission has been key to the community&#8217;s success. The purpose of the 133 StackExchange communities is to enable users to ask questions and get answers without distraction. Unlike a traditional discussion forum, replies are heavily geared towards answers without a lot of chit-chat. &#8220;I think the focus with which Stack Exchange pursues their goals and their dedication to empowering people to contribute is what captures users on any topic,&#8221; Rarst said.</p>\n<p>Users are encouraged to follow a simple set of guidelines when asking questions. They are encouraged to keep questions tightly focused on the topic at hand and to avoid opinion-based questions that would generate a lengthy discussion.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/stackexchange-guidelines.png" rel="prettyphoto[36695]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/stackexchange-guidelines.png?resize=548%2C321" alt="stackexchange-guidelines" class="aligncenter size-full wp-image-36713" /></a></p>\n<p>In the early days, the site was more exploratory, and moderators were open to trying new things to see where it went. &#8220;These days we are more reserved — we learned what works well for us, what is our main identity,&#8221; Rarst said. &#8220;We had finally pushed through name change to &#8216;WordPress Development&#8217; from &#8216;WordPress Answers&#8217;, which had temporarily and accidentally stuck.&#8221;</p>\n<p>They also learned what kind of content to turn away in order to keep the site working well. &#8220;The most prominent example is probably a much more stronger enforcement of questions specific to plugins and themes being out of scope for our general WordPress development focus,&#8221; Rarst said. This helps to keep the site more focused on how WordPress itself works, as opposed to getting overrun with support questions regarding third-party extensions.</p>\n<p>Over the years, moderators and participants have actively sought to <a href="http://meta.wordpress.stackexchange.com/questions/3697/our-wooes-and-future-of-platform-plugins-at-wpse" target="_blank">elicit feedback</a> in order to improve the experience at WPSE, on both the meta site and on <a href="http://www.reddit.com/r/Wordpress/comments/ljlsy/what_do_you_guys_think_of/" target="_blank">Reddit</a>. Discussion from these exchanges has helped shape the direction of the site to filter out questions that detract from the main mission.</p>\n<h3>What Makes WPSE a Good Place to Ask Questions?</h3>\n<p>WPSE stats show that the most voted new question in 2014 was, &#8220;<a href="http://wordpress.stackexchange.com/questions/131697/what-is-your-best-practice-to-execute-one-time-scripts" target="_blank">What is your best practice to execute one-time scripts?</a>&#8221; The most viewed new question was <a href="http://wordpress.stackexchange.com/q/141125/847" target="_blank">&#8220;Allow HTML in Excerpt</a>&#8221; with 8,300+ views.</p>\n<p>With a predominantly developer-oriented community, Rarst believes that the WPSE model is working because it attracts competent WordPress experts to participate. Like-minded users and moderators have cultivated a fertile soil for answers. &#8220;I consider answering questions an immense personal learning opportunity, but also I think as a resource it is important for WordPress knowledge infrastructure, which is starved for quality information,&#8221; Rarst said.</p>\n<p>The points-based reputation system also helps in motivating users to submit answers, although Rarst doesn&#8217;t attribute it to having played a large role in the site&#8217;s success. &#8220;I wouldn&#8217;t try to guess if points made Stack Exchange popular or was it other way around,&#8221; he said. &#8220;They definitely add a playful component to the experience, but the additional nature of &#8216;play&#8217; is the key here — hardly anyone would participate for points alone in my opinion.&#8221;</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/stackexchange-points.png" rel="prettyphoto[36695]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/stackexchange-points.png?resize=540%2C169" alt="stackexchange-points" class="aligncenter size-full wp-image-36712" /></a></p>\n<p>The success is more likely attributed to the combination of dedicated and proven moderators, a focused mission, and a foundational question-and-answer format that simply works. Spend a few minutes sifting through questions on the site and you&#8217;ll undoubtedly have the opportunity to explore the inner workings of WordPress with knowledgeable, experienced respondents on hand.</p>\n<p>The growth of the site over the past year shows that WPSE is quickly becoming a popular, high quality resource for finding answers to WordPress-related questions. If you&#8217;re stuck, and you&#8217;ve already done your homework of googling and browsing other forums, WPSE is a solid option for getting real answers without all the extra fluff.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 06 Jan 2015 22:00:57 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:49;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:19:"Matt: Rise of Bacon";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44575";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:35:"http://ma.tt/2015/01/rise-of-bacon/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:217:"<p><a href="http://businessweek.com/articles/2014-10-06/bacon-why-americas-favorite-food-mania-happened">This article on the amazing rise of bacon</a> was one of my favorite articles I read last year. About bacon.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 06 Jan 2015 13:34:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:10:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Thu, 15 Jan 2015 16:05:58 GMT";s:12:"content-type";s:8:"text/xml";s:14:"content-length";s:6:"274134";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:29:"Thu, 15 Jan 2015 15:45:14 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 250";s:13:"accept-ranges";s:5:"bytes";}s:5:"build";s:14:"20130911040210";}', 'no'); INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (977, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1421381159', 'no'), (978, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1421337959', 'no'), (979, '_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109', '1421381160', 'no'), (980, '_transient_feed_b9388c83948825c1edaef0d856b7b109', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:2:{s:29:"http://www.w3.org/2000/xmlns/";a:3:{s:7:"content";s:40:"http://purl.org/rss/1.0/modules/content/";s:2:"dc";s:32:"http://purl.org/dc/elements/1.1/";s:4:"atom";s:27:"http://www.w3.org/2005/Atom";}s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:45:"https://wordpress.org/plugins/browse/popular/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 15 Jan 2015 15:32:56 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:25:"http://bbpress.org/?v=1.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:15:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:7:"Akismet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:46:"https://wordpress.org/plugins/akismet/#post-15";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 22:11:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"15@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:98:"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"Contact Form 7";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"https://wordpress.org/plugins/contact-form-7/#post-2141";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 02 Aug 2007 12:45:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"2141@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:54:"Just another contact form plugin. Simple but flexible.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:19:"All in One SEO Pack";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 30 Mar 2007 20:08:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"753@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:126:"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"uberdose";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:25:"Google Analytics by Yoast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:71:"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Sep 2007 12:15:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"2316@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:124:"Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error pages.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:24:"Jetpack by WordPress.com";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:49:"https://wordpress.org/plugins/jetpack/#post-23862";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Jan 2011 02:21:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"23862@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:28:"Your WordPress, Streamlined.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"WordPress SEO by Yoast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"https://wordpress.org/plugins/wordpress-seo/#post-8321";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 Jan 2009 20:34:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"8321@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:131:"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast&#039;s WordPress SEO plugin.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:46:"iThemes Security (formerly Better WP Security)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/plugins/better-wp-security/#post-21738";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 22 Oct 2010 22:06:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"21738@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:63:"The easiest, most effective way to secure WordPress in seconds.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"WooCommerce - excelling eCommerce";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:53:"https://wordpress.org/plugins/woocommerce/#post-29860";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 05 Sep 2011 08:13:36 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"29860@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:97:"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"WooThemes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"Google Analytics Dashboard for WP";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:75:"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 10 Mar 2013 17:07:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"50539@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:148:"Displays Google Analytics reports and real-time statistics in your WordPress Dashboard. Inserts the latest tracking code in every page of your site.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:18:"WordPress Importer";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/plugins/wordpress-importer/#post-18101";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 May 2010 17:42:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"18101@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:101:"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:10;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:19:"Google XML Sitemaps";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"https://wordpress.org/plugins/google-sitemap-generator/#post-132";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 22:31:32 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"132@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:105:"This plugin will generate a special XML sitemap which will help search engines to better index your blog.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"arnee";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:11;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:18:"Wordfence Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/plugins/wordfence/#post-29832";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 04 Sep 2011 03:13:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"29832@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:137:"Wordfence Security is a free enterprise class security and performance plugin that makes your site up to 50 times faster and more secure.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Wordfence";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:15:"NextGEN Gallery";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/plugins/nextgen-gallery/#post-1169";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 23 Apr 2007 20:08:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"1169@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:121:"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 10 million downloads.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:13;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"TinyMCE Advanced";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:57:"https://wordpress.org/plugins/tinymce-advanced/#post-2082";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 27 Jun 2007 15:00:26 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"2082@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:71:"Enables the advanced features of TinyMCE, the WordPress WYSIWYG editor.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:14;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:21:"Really Simple CAPTCHA";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:62:"https://wordpress.org/plugins/really-simple-captcha/#post-9542";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 09 Mar 2009 02:17:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"9542@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:138:"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"<NAME>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:46:"https://wordpress.org/plugins/rss/view/popular";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:11:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Thu, 15 Jan 2015 16:06:00 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:7:"expires";s:29:"Thu, 15 Jan 2015 16:07:56 GMT";s:13:"cache-control";s:0:"";s:6:"pragma";s:0:"";s:13:"last-modified";s:31:"Thu, 15 Jan 2015 15:32:56 +0000";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 249";}s:5:"build";s:14:"20130911040210";}', 'no'), (981, '_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109', '1421381160', 'no'), (982, '_transient_feed_mod_b9388c83948825c1edaef0d856b7b109', '1421337960', 'no'), (983, '_transient_timeout_plugin_slugs', '1421424361', 'no'), (984, '_transient_plugin_slugs', 'a:5:{i:0;s:19:"akismet/akismet.php";i:1;s:9:"hello.php";i:2;s:34:"spider-event-calendar/calendar.php";i:3;s:17:"player/Player.php";i:4;s:43:"the-events-calendar/the-events-calendar.php";}', 'no'), (985, '_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51', '1421381161', 'no'), (986, '_transient_dash_4077549d03da2e451c8b5f002294ff51', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''https://wordpress.org/news/2014/12/dinah/''>WordPress 4.1 “Dinah”</a> <span class="rss-date">December 18, 2014</span><div class="rssSummary">Version 4.1 of WordPress, named “Dinah” in honor of jazz singer <NAME>, is available for download or update in your WordPress dashboard. New features in WordPress 4.1 help you focus on your writing, and the new default theme lets you show it off in style. Introducing Twenty Fifteen Our newest default theme, Twenty Fifteen, is [&hellip;]</div></li></ul></div><div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://wptavern.com/edit-buddypress-activity-posts-on-the-front-end''>WPTavern: Edit BuddyPress Activity Posts on the Front End</a></li><li><a class=''rsswidget'' href=''http://wptavern.com/wp-engine-open-sources-mercury-vagrant-for-running-wordpress-on-hhvm-and-php-fpm''>WPTavern: WP Engine Open Sources Mercury Vagrant for Running WordPress on HHVM and PHP-FPM</a></li><li><a class=''rsswidget'' href=''http://wptavern.com/i-love-composer-i-love-wordpress-but-i-object-to-a-marriage''>WPTavern: I Love Composer, I Love WordPress, But I Object to a Marriage</a></li></ul></div><div class="rss-widget"><ul><li class=''dashboard-news-plugin''><span>Popular Plugin:</span> <a href=''https://wordpress.org/plugins/jetpack/'' class=''dashboard-news-plugin-link''>Jetpack by WordPress.com</a>&nbsp;<span>(<a href=''plugin-install.php?tab=plugin-information&amp;plugin=jetpack&amp;_wpnonce=d06614e01d&amp;TB_iframe=true&amp;width=600&amp;height=800'' class=''thickbox'' title=''Jetpack by WordPress.com''>Install</a>)</span></li></ul></div>', 'no'), (999, '_site_transient_timeout_theme_roots', '1421343225', 'yes'), (1000, '_site_transient_theme_roots', 'a:5:{s:10:"alexandria";s:7:"/themes";s:9:"supernova";s:7:"/themes";s:13:"twentyfifteen";s:7:"/themes";s:14:"twentyfourteen";s:7:"/themes";s:14:"twentythirteen";s:7:"/themes";}', 'yes'), (1001, '_transient_is_multi_author', '0', 'yes'); -- -------------------------------------------------------- -- -- Table structure for table `wp_postmeta` -- CREATE TABLE IF NOT EXISTS `wp_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=443 ; -- -- Dumping data for table `wp_postmeta` -- INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1, 2, '_wp_page_template', 'default'), (11, 2, '_edit_lock', '1421190477:1'), (12, 2, '_edit_last', '1'), (13, 7, '_edit_last', '1'), (14, 7, '_edit_lock', '1421338501:1'), (15, 7, '_wp_page_template', 'default'), (34, 1, '_edit_lock', '1419978881:1'), (35, 12, '_edit_last', '1'), (36, 12, '_edit_lock', '1419883661:1'), (37, 12, '_wp_page_template', 'default'), (38, 1, 'supernova_post_views_count', '0'), (39, 12, '_wp_trash_meta_status', 'publish'), (40, 12, '_wp_trash_meta_time', '1419884103'), (41, 12, 'supernova-recommended-post', '0'), (42, 12, 'supernova-popular-post', '0'), (43, 14, '_wp_attached_file', '2014/12/sensor4.png'), (44, 14, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:100;s:4:"file";s:19:"2014/12/sensor4.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"sensor4-150x100.png";s:5:"width";i:150;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:18:"sensor4-300x31.png";s:5:"width";i:300;s:6:"height";i:31;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'), (47, 15, '_wp_attached_file', '2014/12/bioSpear.big_.png'), (48, 15, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1590;s:6:"height";i:799;s:4:"file";s:25:"2014/12/bioSpear.big_.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"bioSpear.big_-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:25:"bioSpear.big_-300x151.png";s:5:"width";i:300;s:6:"height";i:151;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:26:"bioSpear.big_-1024x515.png";s:5:"width";i:1024;s:6:"height";i:515;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'), (49, 16, '_wp_attached_file', '2014/12/cropped-bioSpear.big_.png'), (50, 16, '_wp_attachment_context', 'custom-header'), (51, 16, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1500;s:6:"height";i:290;s:4:"file";s:33:"2014/12/cropped-bioSpear.big_.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:33:"cropped-bioSpear.big_-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:32:"cropped-bioSpear.big_-300x58.png";s:5:"width";i:300;s:6:"height";i:58;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:34:"cropped-bioSpear.big_-1024x198.png";s:5:"width";i:1024;s:6:"height";i:198;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'), (54, 17, '_wp_attached_file', '2014/12/bioSpear.big_.4.png'), (55, 17, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1590;s:6:"height";i:799;s:4:"file";s:27:"2014/12/bioSpear.big_.4.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"bioSpear.big_.4-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:27:"bioSpear.big_.4-300x151.png";s:5:"width";i:300;s:6:"height";i:151;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:28:"bioSpear.big_.4-1024x515.png";s:5:"width";i:1024;s:6:"height";i:515;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'), (56, 18, '_wp_attached_file', '2014/12/cropped-bioSpear.big_.4.png'), (57, 18, '_wp_attachment_context', 'custom-header'), (58, 18, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1500;s:6:"height";i:155;s:4:"file";s:35:"2014/12/cropped-bioSpear.big_.4.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"cropped-bioSpear.big_.4-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:34:"cropped-bioSpear.big_.4-300x31.png";s:5:"width";i:300;s:6:"height";i:31;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:36:"cropped-bioSpear.big_.4-1024x106.png";s:5:"width";i:1024;s:6:"height";i:106;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'), (61, 19, '_wp_attached_file', '2014/12/cropped-bioSpear.big_.41.png'), (62, 19, '_wp_attachment_context', 'custom-header'), (63, 19, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1500;s:6:"height";i:331;s:4:"file";s:36:"2014/12/cropped-bioSpear.big_.41.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:36:"cropped-bioSpear.big_.41-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:35:"cropped-bioSpear.big_.41-300x66.png";s:5:"width";i:300;s:6:"height";i:66;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:37:"cropped-bioSpear.big_.41-1024x226.png";s:5:"width";i:1024;s:6:"height";i:226;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'), (64, 19, '_wp_attachment_custom_header_last_used_supernova', '1419889688'), (65, 19, '_wp_attachment_is_custom_header', 'supernova'), (66, 20, '_wp_attached_file', '2014/12/bioSpear.big_.5.png'), (67, 20, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1590;s:6:"height";i:799;s:4:"file";s:27:"2014/12/bioSpear.big_.5.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"bioSpear.big_.5-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:27:"bioSpear.big_.5-300x151.png";s:5:"width";i:300;s:6:"height";i:151;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:28:"bioSpear.big_.5-1024x515.png";s:5:"width";i:1024;s:6:"height";i:515;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'), (68, 21, '_wp_attached_file', '2014/12/cropped-bioSpear.big_.5.png'), (69, 21, '_wp_attachment_context', 'custom-header'), (70, 21, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1500;s:6:"height";i:332;s:4:"file";s:35:"2014/12/cropped-bioSpear.big_.5.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"cropped-bioSpear.big_.5-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:34:"cropped-bioSpear.big_.5-300x66.png";s:5:"width";i:300;s:6:"height";i:66;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:36:"cropped-bioSpear.big_.5-1024x227.png";s:5:"width";i:1024;s:6:"height";i:227;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'), (71, 21, '_wp_attachment_custom_header_last_used_supernova', '1419890334'), (72, 21, '_wp_attachment_is_custom_header', 'supernova'), (73, 22, '_wp_attached_file', '2014/12/bioSpear.big_.6.png'), (74, 22, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1590;s:6:"height";i:799;s:4:"file";s:27:"2014/12/bioSpear.big_.6.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"bioSpear.big_.6-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:27:"bioSpear.big_.6-300x151.png";s:5:"width";i:300;s:6:"height";i:151;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:28:"bioSpear.big_.6-1024x515.png";s:5:"width";i:1024;s:6:"height";i:515;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'), (75, 23, '_wp_attached_file', '2014/12/cropped-bioSpear.big_.6.png'), (76, 23, '_wp_attachment_context', 'custom-header'), (77, 23, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1500;s:6:"height";i:335;s:4:"file";s:35:"2014/12/cropped-bioSpear.big_.6.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"cropped-bioSpear.big_.6-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:34:"cropped-bioSpear.big_.6-300x67.png";s:5:"width";i:300;s:6:"height";i:67;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:36:"cropped-bioSpear.big_.6-1024x229.png";s:5:"width";i:1024;s:6:"height";i:229;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'), (78, 23, '_wp_attachment_custom_header_last_used_supernova', '1419890912'), (79, 23, '_wp_attachment_is_custom_header', 'supernova'), (80, 24, '_wp_attached_file', '2014/12/bioSpear.big_.7.png'), (81, 24, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1590;s:6:"height";i:799;s:4:"file";s:27:"2014/12/bioSpear.big_.7.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"bioSpear.big_.7-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:27:"bioSpear.big_.7-300x151.png";s:5:"width";i:300;s:6:"height";i:151;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:28:"bioSpear.big_.7-1024x515.png";s:5:"width";i:1024;s:6:"height";i:515;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'), (82, 25, '_wp_attached_file', '2014/12/cropped-bioSpear.big_.7.png'), (83, 25, '_wp_attachment_context', 'custom-header'), (84, 25, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1500;s:6:"height";i:335;s:4:"file";s:35:"2014/12/cropped-bioSpear.big_.7.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"cropped-bioSpear.big_.7-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:34:"cropped-bioSpear.big_.7-300x67.png";s:5:"width";i:300;s:6:"height";i:67;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:36:"cropped-bioSpear.big_.7-1024x229.png";s:5:"width";i:1024;s:6:"height";i:229;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'), (85, 25, '_wp_attachment_custom_header_last_used_supernova', '1419891005'), (86, 25, '_wp_attachment_is_custom_header', 'supernova'), (87, 26, 'supernova-recommended-post', '0'), (88, 26, 'supernova-popular-post', '0'), (89, 26, '_edit_last', '1'), (90, 26, '_edit_lock', '1421338367:1'), (91, 26, '_wp_page_template', 'default'), (92, 26, 'post-style', ''), (93, 28, 'supernova-recommended-post', '0'), (94, 28, 'supernova-popular-post', '0'), (95, 28, '_edit_last', '1'), (96, 28, '_edit_lock', '1421338492:1'), (97, 28, '_wp_page_template', 'default'), (98, 28, 'post-style', ''), (99, 30, 'supernova-recommended-post', '0'), (100, 30, 'supernova-popular-post', '0'), (101, 30, '_edit_last', '1'), (102, 30, '_edit_lock', '1421338483:1'), (103, 30, '_wp_page_template', 'default'), (104, 30, 'post-style', ''), (105, 32, 'supernova-recommended-post', '0'), (106, 32, 'supernova-popular-post', '0'), (107, 32, '_edit_last', '1'), (108, 32, '_edit_lock', '1421338438:1'), (109, 32, '_wp_page_template', 'default'), (110, 32, 'post-style', ''), (111, 7, 'post-style', ''), (112, 7, 'supernova-recommended-post', '0'), (113, 7, 'supernova-popular-post', '0'), (162, 2, 'post-style', ''), (163, 2, 'supernova-recommended-post', '0'), (164, 2, 'supernova-popular-post', '0'), (165, 41, 'supernova-recommended-post', '0'), (166, 41, 'supernova-popular-post', '0'), (167, 41, '_menu_item_type', 'post_type'), (168, 41, '_menu_item_menu_item_parent', '0'), (169, 41, '_menu_item_object_id', '32'), (170, 41, '_menu_item_object', 'page'), (171, 41, '_menu_item_target', ''), (172, 41, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'), (173, 41, '_menu_item_xfn', ''), (174, 41, '_menu_item_url', ''), (176, 42, 'supernova-recommended-post', '0'), (177, 42, 'supernova-popular-post', '0'), (178, 42, '_menu_item_type', 'post_type'), (179, 42, '_menu_item_menu_item_parent', '0'), (180, 42, '_menu_item_object_id', '30'), (181, 42, '_menu_item_object', 'page'), (182, 42, '_menu_item_target', ''), (183, 42, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'), (184, 42, '_menu_item_xfn', ''), (185, 42, '_menu_item_url', ''), (187, 43, 'supernova-recommended-post', '0'), (188, 43, 'supernova-popular-post', '0'), (189, 43, '_menu_item_type', 'post_type'), (190, 43, '_menu_item_menu_item_parent', '0'), (191, 43, '_menu_item_object_id', '28'), (192, 43, '_menu_item_object', 'page'), (193, 43, '_menu_item_target', ''), (194, 43, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'), (195, 43, '_menu_item_xfn', ''), (196, 43, '_menu_item_url', ''), (198, 44, 'supernova-recommended-post', '0'), (199, 44, 'supernova-popular-post', '0'), (200, 44, '_menu_item_type', 'post_type'), (201, 44, '_menu_item_menu_item_parent', '0'), (202, 44, '_menu_item_object_id', '26'), (203, 44, '_menu_item_object', 'page'), (204, 44, '_menu_item_target', ''), (205, 44, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'), (206, 44, '_menu_item_xfn', ''), (207, 44, '_menu_item_url', ''), (209, 45, 'supernova-recommended-post', '0'), (210, 45, 'supernova-popular-post', '0'), (211, 45, '_menu_item_type', 'post_type'), (212, 45, '_menu_item_menu_item_parent', '0'), (213, 45, '_menu_item_object_id', '7'), (214, 45, '_menu_item_object', 'page'), (215, 45, '_menu_item_target', ''), (216, 45, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'), (217, 45, '_menu_item_xfn', ''), (218, 45, '_menu_item_url', ''), (220, 46, 'supernova-recommended-post', '0'), (221, 46, 'supernova-popular-post', '0'), (222, 46, '_menu_item_type', 'post_type'), (223, 46, '_menu_item_menu_item_parent', '0'), (224, 46, '_menu_item_object_id', '2'), (225, 46, '_menu_item_object', 'page'), (226, 46, '_menu_item_target', ''), (227, 46, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'), (228, 46, '_menu_item_xfn', ''), (229, 46, '_menu_item_url', ''), (231, 47, 'supernova-recommended-post', '0'), (232, 47, 'supernova-popular-post', '0'), (233, 47, '_edit_last', '1'), (234, 47, '_edit_lock', '1419980202:1'), (235, 48, '_wp_attached_file', '2014/12/WhereHaveYouGoneThumbnail.png'), (236, 48, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:458;s:6:"height";i:258;s:4:"file";s:37:"2014/12/WhereHaveYouGoneThumbnail.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:37:"WhereHaveYouGoneThumbnail-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:37:"WhereHaveYouGoneThumbnail-300x169.png";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'), (237, 49, '_wp_attached_file', '2014/12/WhereHaveYouGoneThumbnail1.png'), (238, 49, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:458;s:6:"height";i:258;s:4:"file";s:38:"2014/12/WhereHaveYouGoneThumbnail1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:38:"WhereHaveYouGoneThumbnail1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:38:"WhereHaveYouGoneThumbnail1-300x169.png";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'), (239, 47, 'supernova_post_views_count', '4'), (240, 47, 'post-style', ''), (247, 1, '_edit_last', '1'), (250, 1, 'post-style', ''), (251, 1, 'supernova-recommended-post', '0'), (252, 1, 'supernova-popular-post', '0'), (260, 47, '_wp_trash_meta_status', 'publish'), (261, 47, '_wp_trash_meta_time', '1419980419'), (262, 1, '_wp_trash_meta_status', 'publish'), (263, 1, '_wp_trash_meta_time', '1419980419'), (264, 1, '_wp_trash_meta_comments_status', 'a:1:{i:1;s:1:"1";}'), (265, 53, 'supernova-recommended-post', '0'), (266, 53, 'supernova-popular-post', '0'), (267, 53, '_edit_last', '1'), (268, 53, '_edit_lock', '1419981224:1'), (270, 53, 'post-style', ''), (271, 53, 'supernova_post_views_count', '0'), (274, 53, '_wp_trash_meta_status', 'publish'), (275, 53, '_wp_trash_meta_time', '1419987528'), (276, 56, 'supernova-recommended-post', '0'), (277, 56, 'supernova-popular-post', '0'), (278, 56, '_edit_last', '1'), (280, 56, 'post-style', ''), (281, 56, '_edit_lock', '1421195872:1'), (283, 59, 'supernova-recommended-post', '0'), (284, 59, 'supernova-popular-post', '0'), (285, 59, '_edit_last', '1'), (286, 59, '_edit_lock', '1421195832:1'), (288, 59, 'post-style', ''), (294, 59, 'supernova_post_views_count', '5'), (295, 61, 'supernova-recommended-post', '0'), (296, 61, 'supernova-popular-post', '0'), (297, 61, '_edit_last', '1'), (298, 61, '_edit_lock', '1421195613:1'), (301, 61, 'post-style', ''), (308, 61, 'supernova_post_views_count', '4'), (309, 56, 'supernova_post_views_count', '4'), (310, 65, 'supernova-recommended-post', '0'), (311, 65, 'supernova-popular-post', '0'), (312, 65, '_edit_last', '1'), (313, 65, '_edit_lock', '1420491276:1'), (314, 65, '_wp_page_template', 'default'), (315, 65, 'post-style', ''), (316, 67, 'supernova-recommended-post', '0'), (317, 67, 'supernova-popular-post', '0'), (318, 67, '_menu_item_type', 'post_type'), (319, 67, '_menu_item_menu_item_parent', '0'), (320, 67, '_menu_item_object_id', '65'), (321, 67, '_menu_item_object', 'page'), (322, 67, '_menu_item_target', ''), (323, 67, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'), (324, 67, '_menu_item_xfn', ''), (325, 67, '_menu_item_url', ''), (329, 65, '_thumbnail_id', '48'), (330, 65, '_wp_trash_meta_status', 'publish'), (331, 65, '_wp_trash_meta_time', '1420491419'), (332, 70, 'supernova-recommended-post', '0'), (333, 70, 'supernova-popular-post', '0'), (334, 70, '_edit_last', '1'), (335, 70, '_edit_lock', '1421338472:1'), (336, 70, '_wp_page_template', 'default'), (337, 70, 'post-style', ''), (338, 72, 'supernova-recommended-post', '0'), (339, 72, 'supernova-popular-post', '0'), (340, 72, '_menu_item_type', 'post_type'), (341, 72, '_menu_item_menu_item_parent', '0'), (342, 72, '_menu_item_object_id', '70'), (343, 72, '_menu_item_object', 'page'), (344, 72, '_menu_item_target', ''), (345, 72, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'), (346, 72, '_menu_item_xfn', ''), (347, 72, '_menu_item_url', ''), (348, 72, '_menu_item_orphaned', '1420491599'), (349, 76, 'supernova-recommended-post', '0'), (350, 76, 'supernova-popular-post', '0'), (351, 76, '_edit_last', '1'), (352, 76, '_edit_lock', '1421264461:1'), (355, 76, 'post-style', ''), (356, 76, 'supernova_post_views_count', '4'), (361, 78, 'supernova-recommended-post', '0'), (362, 78, 'supernova-popular-post', '0'), (363, 78, '_edit_last', '1'), (364, 78, '_edit_lock', '1421188005:1'), (365, 79, 'supernova-recommended-post', '0'), (366, 79, 'supernova-popular-post', '0'), (367, 79, '_edit_last', '1'), (368, 79, '_edit_lock', '1421195793:1'), (371, 79, 'post-style', ''), (372, 79, 'supernova_post_views_count', '3'), (373, 81, 'supernova-recommended-post', '0'), (374, 81, 'supernova-popular-post', '0'), (375, 2, '_post_restored_from', 'a:3:{s:20:"restored_revision_id";i:92;s:16:"restored_by_user";i:1;s:13:"restored_time";i:1421176805;}'), (376, 101, '_edit_last', '1'), (377, 101, '_edit_lock', '1421180185:1'), (378, 101, '_wp_page_template', 'default'), (379, 101, '_wp_trash_meta_status', 'publish'), (380, 101, '_wp_trash_meta_time', '1421180495'), (381, 108, '_wp_attached_file', '2014/12/cropped-bioSpear.big_.61.png'), (382, 108, '_wp_attachment_context', 'custom-header'), (383, 108, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1260;s:6:"height";i:282;s:4:"file";s:36:"2014/12/cropped-bioSpear.big_.61.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:36:"cropped-bioSpear.big_.61-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:35:"cropped-bioSpear.big_.61-300x67.png";s:5:"width";i:300;s:6:"height";i:67;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:37:"cropped-bioSpear.big_.61-1024x229.png";s:5:"width";i:1024;s:6:"height";i:229;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:36:"cropped-bioSpear.big_.61-672x282.png";s:5:"width";i:672;s:6:"height";i:282;s:9:"mime-type";s:9:"image/png";}s:25:"twentyfourteen-full-width";a:4:{s:4:"file";s:37:"cropped-bioSpear.big_.61-1038x282.png";s:5:"width";i:1038;s:6:"height";i:282;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'), (384, 108, '_wp_attachment_custom_header_last_used_twentyfourteen', '1421184451'), (385, 108, '_wp_attachment_is_custom_header', 'twentyfourteen'), (386, 110, '_wp_attached_file', '2014/12/cropped-cropped-bioSpear.big_.61.png'), (387, 110, '_wp_attachment_context', 'custom-header'), (388, 110, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1260;s:6:"height";i:253;s:4:"file";s:44:"2014/12/cropped-cropped-bioSpear.big_.61.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"cropped-cropped-bioSpear.big_.61-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:43:"cropped-cropped-bioSpear.big_.61-300x60.png";s:5:"width";i:300;s:6:"height";i:60;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:45:"cropped-cropped-bioSpear.big_.61-1024x206.png";s:5:"width";i:1024;s:6:"height";i:206;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"cropped-cropped-bioSpear.big_.61-672x253.png";s:5:"width";i:672;s:6:"height";i:253;s:9:"mime-type";s:9:"image/png";}s:25:"twentyfourteen-full-width";a:4:{s:4:"file";s:45:"cropped-cropped-bioSpear.big_.61-1038x253.png";s:5:"width";i:1038;s:6:"height";i:253;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'), (389, 110, '_wp_attachment_custom_header_last_used_twentyfourteen', '1421184210'), (390, 110, '_wp_attachment_is_custom_header', 'twentyfourteen'), (391, 111, '_wp_attached_file', '2014/12/cropped-cropped-bioSpear.big_.611.png'), (392, 111, '_wp_attachment_context', 'custom-header'), (393, 111, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1260;s:6:"height";i:346;s:4:"file";s:45:"2014/12/cropped-cropped-bioSpear.big_.611.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:45:"cropped-cropped-bioSpear.big_.611-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:44:"cropped-cropped-bioSpear.big_.611-300x82.png";s:5:"width";i:300;s:6:"height";i:82;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:46:"cropped-cropped-bioSpear.big_.611-1024x281.png";s:5:"width";i:1024;s:6:"height";i:281;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:45:"cropped-cropped-bioSpear.big_.611-672x346.png";s:5:"width";i:672;s:6:"height";i:346;s:9:"mime-type";s:9:"image/png";}s:25:"twentyfourteen-full-width";a:4:{s:4:"file";s:46:"cropped-cropped-bioSpear.big_.611-1038x346.png";s:5:"width";i:1038;s:6:"height";i:346;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'), (394, 111, '_wp_attachment_custom_header_last_used_twentyfourteen', '1421184285'), (395, 111, '_wp_attachment_is_custom_header', 'twentyfourteen'), (396, 112, '_wp_attached_file', '2014/12/cropped-cropped-cropped-bioSpear.big_.61.png'), (397, 112, '_wp_attachment_context', 'custom-header'), (398, 112, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1600;s:6:"height";i:230;s:4:"file";s:52:"2014/12/cropped-cropped-cropped-bioSpear.big_.61.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:52:"cropped-cropped-cropped-bioSpear.big_.61-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:51:"cropped-cropped-cropped-bioSpear.big_.61-300x43.png";s:5:"width";i:300;s:6:"height";i:43;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:53:"cropped-cropped-cropped-bioSpear.big_.61-1024x147.png";s:5:"width";i:1024;s:6:"height";i:147;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:52:"cropped-cropped-cropped-bioSpear.big_.61-604x230.png";s:5:"width";i:604;s:6:"height";i:230;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'), (399, 112, '_wp_attachment_custom_header_last_used_twentythirteen', '1421185215'), (400, 112, '_wp_attachment_is_custom_header', 'twentythirteen'), (407, 117, '_edit_last', '1'), (408, 117, '_edit_lock', '1421198058:1'), (415, 120, '_edit_last', '1'), (416, 120, '_edit_lock', '1421197251:1'), (429, 76, '_pingme', '1'), (430, 76, '_encloseme', '1'), (431, 32, '_oembed_b787a7c6ef5f263d34eb6aa6c137f650', '<iframe width="604" height="340" src="https://www.youtube.com/embed/iuwnSGnGsQA?feature=oembed" frameborder="0" allowfullscreen></iframe>'), (432, 32, '_oembed_time_b787a7c6ef5f263d34eb6aa6c137f650', '1421268020'), (433, 32, '_oembed_0d35754df1f86f990d3689e012cebfad', '<iframe width="604" height="340" src="https://www.youtube.com/embed/BcsacXZ72FM?feature=oembed" frameborder="0" allowfullscreen></iframe>'), (434, 32, '_oembed_time_0d35754df1f86f990d3689e012cebfad', '1421337875'), (435, 135, '_edit_last', '1'), (436, 135, '_edit_lock', '1421341507:1'), (437, 135, '_oembed_0d35754df1f86f990d3689e012cebfad', '<iframe width="604" height="340" src="https://www.youtube.com/embed/BcsacXZ72FM?feature=oembed" frameborder="0" allowfullscreen></iframe>'), (438, 135, '_oembed_time_0d35754df1f86f990d3689e012cebfad', '1421338602'), (439, 135, '_oembed_f88e78588dadad539c600d7eaf17d775', '<iframe width="604" height="340" src="http://www.youtube.com/embed/w4aMQQv2Zvk?feature=oembed" frameborder="0" allowfullscreen></iframe>'), (440, 135, '_oembed_time_f88e78588dadad539c600d7eaf17d775', '1421339352'), (441, 135, '_oembed_c2c80e8755d0ba9669e8ad2f792397f8', '<iframe width="604" height="340" src="https://www.youtube.com/embed/brZmzHnGWYw?feature=oembed" frameborder="0" allowfullscreen></iframe>'), (442, 135, '_oembed_time_c2c80e8755d0ba9669e8ad2f792397f8', '1421339507'); -- -------------------------------------------------------- -- -- Table structure for table `wp_posts` -- CREATE TABLE IF NOT EXISTS `wp_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext NOT NULL, `post_title` text NOT NULL, `post_excerpt` text NOT NULL, `post_status` varchar(20) NOT NULL DEFAULT 'publish', `comment_status` varchar(20) NOT NULL DEFAULT 'open', `ping_status` varchar(20) NOT NULL DEFAULT 'open', `post_password` varchar(20) NOT NULL DEFAULT '', `post_name` varchar(200) NOT NULL DEFAULT '', `to_ping` text NOT NULL, `pinged` text NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=146 ; -- -- Dumping data for table `wp_posts` -- INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (1, 1, '2014-12-23 23:14:56', '2014-12-23 23:14:56', 'Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!', 'Hello world!', '', 'trash', 'open', 'open', '', 'hello-world', '', '', '2014-12-30 23:00:19', '2014-12-30 23:00:19', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=1', 0, 'post', '', 1), (2, 1, '2014-12-23 23:14:56', '2014-12-23 23:14:56', '<hr />\r\n\r\nThe Nodes-Talking project formed in 2014 to address a growing need for different kinds of environmental sensors that makeup a nodes-talking network. The controlling software, written in node.js,  java and using the AngularJS framework, for the user interface, is an open-source project hosted on github and can be viewed at\r\n\r\n<a class="smarterwiki-linkify" href="https://github.com/rsiewert/Nodes-Talking">Nodes-Talking</a>\r\n<a class="smarterwiki-linkify" href="https://github.com/rsiewert/Nodes-Talking-Admin">Nodes-Talking-Admin</a>\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"></p>', 'Home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2015-01-13 23:10:11', '2015-01-13 23:10:11', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?page_id=2', 0, 'page', '', 0), (6, 1, '2014-12-29 19:23:43', '2014-12-29 19:23:43', '<blockquote>The Nodes-Talking project was formed in 2014 to address a growing need for different kinds of environmental sensors that makeup a nodes-talking network. The controlling software, written in node.js and java, is an open-source project hosted on github and can be viewed at https://github.com/rsiewert/Nodes-Talking.</blockquote>\r\n&nbsp;', 'Sample Page', '', 'inherit', 'open', 'open', '', '2-revision-v1', '', '', '2014-12-29 19:23:43', '2014-12-29 19:23:43', '', 2, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=6', 0, 'revision', '', 0), (7, 1, '2014-12-29 19:38:09', '2014-12-29 19:38:09', 'Version 0.1\r\n\r\n<a title="Documentation" href="http://www.thespacetimecontinuum.com/wordpress_4/?page_id=30">Documentation</a>\r\n\r\nLicensed under the <strong>[Apache License, Version 2.0] [license]</strong> (the "License"); you may not use this software except in compliance with the License.\r\n\r\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.', 'About', '', 'publish', 'closed', 'closed', '', 'about', '', '', '2015-01-15 16:15:01', '2015-01-15 16:15:01', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?page_id=7', 8, 'page', '', 0), (8, 1, '2014-12-29 19:38:09', '2014-12-29 19:38:09', 'This is the nodes-talking about page.', 'About', '', 'inherit', 'open', 'open', '', '7-revision-v1', '', '', '2014-12-29 19:38:09', '2014-12-29 19:38:09', '', 7, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=8', 0, 'revision', '', 0), (11, 1, '2014-12-29 19:45:14', '2014-12-29 19:45:14', '<blockquote>The Nodes-Talking project was formed in 2014 to address a growing need for different kinds of environmental sensors that makeup a nodes-talking network. The controlling software, written in node.js and java, is an open-source project hosted on github and can be viewed at https://github.com/rsiewert/Nodes-Talking.</blockquote>\r\n&nbsp;', 'Home', '', 'inherit', 'open', 'open', '', '2-revision-v1', '', '', '2014-12-29 19:45:14', '2014-12-29 19:45:14', '', 2, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=11', 0, 'revision', '', 0), (12, 1, '2014-12-29 20:04:25', '2014-12-29 20:04:25', 'This is the about 1 page', 'About 1', '', 'trash', 'open', 'open', '', 'about-1', '', '', '2014-12-29 20:15:03', '2014-12-29 20:15:03', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?page_id=12', 0, 'page', '', 0), (13, 1, '2014-12-29 20:04:25', '2014-12-29 20:04:25', 'This is the about 1 page', 'About 1', '', 'inherit', 'open', 'open', '', '12-revision-v1', '', '', '2014-12-29 20:04:25', '2014-12-29 20:04:25', '', 12, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=13', 0, 'revision', '', 0), (14, 1, '2014-12-29 21:27:39', '2014-12-29 21:27:39', '', 'sensor4', '', 'inherit', 'open', 'open', '', 'sensor4', '', '', '2014-12-29 21:27:39', '2014-12-29 21:27:39', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/sensor4.png', 0, 'attachment', 'image/png', 0), (15, 1, '2014-12-29 21:44:25', '2014-12-29 21:44:25', '', 'bioSpear.big', '', 'inherit', 'open', 'open', '', 'biospear-big', '', '', '2014-12-29 21:44:25', '2014-12-29 21:44:25', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/bioSpear.big_.png', 0, 'attachment', 'image/png', 0), (16, 1, '2014-12-29 21:44:55', '2014-12-29 21:44:55', 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-bioSpear.big_.png', 'cropped-bioSpear.big_.png', '', 'inherit', 'open', 'open', '', 'cropped-biospear-big_-png', '', '', '2014-12-29 21:44:55', '2014-12-29 21:44:55', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-bioSpear.big_.png', 0, 'attachment', 'image/png', 0), (17, 1, '2014-12-29 21:47:22', '2014-12-29 21:47:22', '', 'bioSpear.big.4', '', 'inherit', 'open', 'open', '', 'biospear-big-4', '', '', '2014-12-29 21:47:22', '2014-12-29 21:47:22', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/bioSpear.big_.4.png', 0, 'attachment', 'image/png', 0), (18, 1, '2014-12-29 21:47:30', '2014-12-29 21:47:30', 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-bioSpear.big_.4.png', 'cropped-bioSpear.big_.4.png', '', 'inherit', 'open', 'open', '', 'cropped-biospear-big_-4-png', '', '', '2014-12-29 21:47:30', '2014-12-29 21:47:30', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-bioSpear.big_.4.png', 0, 'attachment', 'image/png', 0), (19, 1, '2014-12-29 21:48:06', '2014-12-29 21:48:06', 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-bioSpear.big_.41.png', 'cropped-bioSpear.big_.41.png', '', 'inherit', 'open', 'open', '', 'cropped-biospear-big_-41-png', '', '', '2014-12-29 21:48:06', '2014-12-29 21:48:06', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-bioSpear.big_.41.png', 0, 'attachment', 'image/png', 0), (20, 1, '2014-12-29 21:58:25', '2014-12-29 21:58:25', '', 'bioSpear.big.5', '', 'inherit', 'open', 'open', '', 'biospear-big-5', '', '', '2014-12-29 21:58:25', '2014-12-29 21:58:25', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/bioSpear.big_.5.png', 0, 'attachment', 'image/png', 0), (21, 1, '2014-12-29 21:58:41', '2014-12-29 21:58:41', 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-bioSpear.big_.5.png', 'cropped-bioSpear.big_.5.png', '', 'inherit', 'open', 'open', '', 'cropped-biospear-big_-5-png', '', '', '2014-12-29 21:58:41', '2014-12-29 21:58:41', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-bioSpear.big_.5.png', 0, 'attachment', 'image/png', 0), (22, 1, '2014-12-29 22:08:10', '2014-12-29 22:08:10', '', 'bioSpear.big.6', '', 'inherit', 'open', 'open', '', 'biospear-big-6', '', '', '2014-12-29 22:08:10', '2014-12-29 22:08:10', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/bioSpear.big_.6.png', 0, 'attachment', 'image/png', 0), (23, 1, '2014-12-29 22:08:25', '2014-12-29 22:08:25', 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-bioSpear.big_.6.png', 'cropped-bioSpear.big_.6.png', '', 'inherit', 'open', 'open', '', 'cropped-biospear-big_-6-png', '', '', '2014-12-29 22:08:25', '2014-12-29 22:08:25', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-bioSpear.big_.6.png', 0, 'attachment', 'image/png', 0), (24, 1, '2014-12-29 22:09:50', '2014-12-29 22:09:50', '', 'bioSpear.big.7', '', 'inherit', 'open', 'open', '', 'biospear-big-7', '', '', '2014-12-29 22:09:50', '2014-12-29 22:09:50', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/bioSpear.big_.7.png', 0, 'attachment', 'image/png', 0), (25, 1, '2014-12-29 22:10:01', '2014-12-29 22:10:01', 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-bioSpear.big_.7.png', 'cropped-bioSpear.big_.7.png', '', 'inherit', 'open', 'open', '', 'cropped-biospear-big_-7-png', '', '', '2014-12-29 22:10:01', '2014-12-29 22:10:01', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-bioSpear.big_.7.png', 0, 'attachment', 'image/png', 0), (26, 1, '2014-12-29 22:38:08', '2014-12-29 22:38:08', 'Nodes-talking events page', 'Posts', '', 'publish', 'open', 'closed', '', 'posts', '', '', '2015-01-15 16:12:47', '2015-01-15 16:12:47', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?page_id=26', 2, 'page', '', 3), (27, 1, '2014-12-29 22:38:08', '2014-12-29 22:38:08', 'Nodes-talking events page', 'Events', '', 'inherit', 'open', 'open', '', '26-revision-v1', '', '', '2014-12-29 22:38:08', '2014-12-29 22:38:08', '', 26, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=27', 0, 'revision', '', 0), (28, 1, '2014-12-29 22:38:49', '2014-12-29 22:38:49', 'We can be reached at:\r\n<p style="text-align: justify; padding-left: 30px;"><NAME>&lt;<EMAIL>&gt;</p>\r\n<p style="text-align: justify; padding-left: 30px;"><NAME> &lt;<EMAIL>&gt;</p>\r\n<p style="text-align: justify; padding-left: 30px;"><NAME> &lt;<EMAIL>&gt;</p>\r\n&nbsp;', 'Contact', '', 'publish', 'closed', 'closed', '', 'contact', '', '', '2015-01-15 16:14:52', '2015-01-15 16:14:52', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?page_id=28', 7, 'page', '', 0), (29, 1, '2014-12-29 22:38:49', '2014-12-29 22:38:49', 'Nodes-talking contact page', 'Contact', '', 'inherit', 'open', 'open', '', '28-revision-v1', '', '', '2014-12-29 22:38:49', '2014-12-29 22:38:49', '', 28, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=29', 0, 'revision', '', 0), (30, 1, '2014-12-29 22:39:54', '2014-12-29 22:39:54', 'Goes into the technology behind nodes-talking/nodes-talking-admin', 'Documentation', '', 'publish', 'closed', 'closed', '', 'technology', '', '', '2015-01-15 16:14:43', '2015-01-15 16:14:43', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?page_id=30', 6, 'page', '', 0), (31, 1, '2014-12-29 22:39:54', '2014-12-29 22:39:54', 'Nodes-talking technology page -- goes into the technology behind nodes-talking', 'Technology', '', 'inherit', 'open', 'open', '', '30-revision-v1', '', '', '2014-12-29 22:39:54', '2014-12-29 22:39:54', '', 30, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=31', 0, 'revision', '', 0), (32, 1, '2014-12-29 22:42:12', '2014-12-29 22:42:12', 'Collaborations', 'Collaborations', '', 'publish', 'closed', 'closed', '', 'collaborations', '', '', '2015-01-15 16:16:14', '2015-01-15 16:16:14', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?page_id=32', 3, 'page', '', 0), (33, 1, '2014-12-29 22:42:12', '2014-12-29 22:42:12', 'Nodes-talkiing collaboration page - good place to put Randy''s collab with the University in Veronezh.', 'Collaborations', '', 'inherit', 'open', 'open', '', '32-revision-v1', '', '', '2014-12-29 22:42:12', '2014-12-29 22:42:12', '', 32, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=33', 0, 'revision', '', 0), (38, 1, '2014-12-29 22:55:56', '2014-12-29 22:55:56', 'Nodes-talking collaboration page - good place to put Randy''s collab with the University in Veronezh.', 'Collaborations', '', 'inherit', 'open', 'open', '', '32-revision-v1', '', '', '2014-12-29 22:55:56', '2014-12-29 22:55:56', '', 32, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=38', 0, 'revision', '', 0), (40, 1, '2014-12-29 23:01:22', '2014-12-29 23:01:22', '<hr />\r\n\r\nThe Nodes-Talking project was formed in 2014 to address a growing need for different kinds of environmental sensors that makeup a nodes-talking network. The controlling software, written in node.js and java, is an open-source project hosted on github and can be viewed at https://github.com/rsiewert/Nodes-Talking.\r\n\r\n&nbsp;', 'Home', '', 'inherit', 'open', 'open', '', '2-revision-v1', '', '', '2014-12-29 23:01:22', '2014-12-29 23:01:22', '', 2, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=40', 0, 'revision', '', 0), (41, 1, '2014-12-29 23:10:20', '2014-12-29 23:10:20', ' ', '', '', 'publish', 'open', 'open', '', '41', '', '', '2015-01-13 20:18:07', '2015-01-13 20:18:07', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=41', 5, 'nav_menu_item', '', 0), (42, 1, '2014-12-29 23:10:20', '2014-12-29 23:10:20', ' ', '', '', 'publish', 'open', 'open', '', '42', '', '', '2015-01-13 20:18:07', '2015-01-13 20:18:07', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=42', 4, 'nav_menu_item', '', 0), (43, 1, '2014-12-29 23:10:21', '2014-12-29 23:10:21', ' ', '', '', 'publish', 'open', 'open', '', '43', '', '', '2015-01-13 20:18:07', '2015-01-13 20:18:07', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=43', 6, 'nav_menu_item', '', 0), (44, 1, '2014-12-29 23:10:20', '2014-12-29 23:10:20', ' ', '', '', 'publish', 'open', 'open', '', '44', '', '', '2015-01-13 20:18:07', '2015-01-13 20:18:07', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=44', 3, 'nav_menu_item', '', 0), (45, 1, '2014-12-29 23:10:21', '2014-12-29 23:10:21', ' ', '', '', 'publish', 'open', 'open', '', '45', '', '', '2015-01-13 20:18:07', '2015-01-13 20:18:07', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=45', 7, 'nav_menu_item', '', 0), (46, 1, '2014-12-29 23:10:20', '2014-12-29 23:10:20', ' ', '', '', 'publish', 'open', 'open', '', '46', '', '', '2015-01-13 20:18:07', '2015-01-13 20:18:07', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=46', 1, 'nav_menu_item', '', 0), (47, 1, '2014-12-30 17:52:08', '2014-12-30 17:52:08', '<a href="http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/WhereHaveYouGoneThumbnail.png"><img class="alignnone size-full wp-image-48" src="http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/WhereHaveYouGoneThumbnail.png" alt="WhereHaveYouGoneThumbnail" width="458" height="258" /></a>', 'Inspired by the occupy movement', '', 'trash', 'open', 'open', '', 'inspired-by-the-occupy-movement', '', '', '2014-12-30 23:00:19', '2014-12-30 23:00:19', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=47', 0, 'post', '', 0), (48, 1, '2014-12-30 17:45:58', '2014-12-30 17:45:58', '', 'WhereHaveYouGoneThumbnail', '', 'inherit', 'open', 'open', '', 'wherehaveyougonethumbnail', '', '', '2014-12-30 17:51:34', '2014-12-30 17:51:34', '', 47, 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/WhereHaveYouGoneThumbnail.png', 0, 'attachment', 'image/png', 0), (49, 1, '2014-12-30 17:48:23', '2014-12-30 17:48:23', '', 'WhereHaveYouGoneThumbnail', 'Where Have You Gone America', 'inherit', 'open', 'open', '', 'wherehaveyougonethumbnail-2', '', '', '2014-12-30 17:48:52', '2014-12-30 17:48:52', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/WhereHaveYouGoneThumbnail1.png', 0, 'attachment', 'image/png', 0), (50, 1, '2014-12-30 17:51:43', '2014-12-30 17:51:43', '<a href="http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/WhereHaveYouGoneThumbnail.png"><img src="http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/WhereHaveYouGoneThumbnail.png" alt="WhereHaveYouGoneThumbnail" width="458" height="258" class="alignnone size-full wp-image-48" /></a>', 'Inspired by the occupy movement', '', 'inherit', 'open', 'open', '', '47-revision-v1', '', '', '2014-12-30 17:51:43', '2014-12-30 17:51:43', '', 47, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=50', 0, 'revision', '', 0), (51, 1, '2014-12-30 17:59:31', '2014-12-30 17:59:31', '<a href="http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/WhereHaveYouGoneThumbnail.png"><img class="alignnone size-full wp-image-48" src="http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/WhereHaveYouGoneThumbnail.png" alt="WhereHaveYouGoneThumbnail" width="458" height="258" /></a>', 'Inspired by the occupy movement', '', 'inherit', 'open', 'open', '', '47-revision-v1', '', '', '2014-12-30 17:59:31', '2014-12-30 17:59:31', '', 47, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=51', 0, 'revision', '', 0), (52, 1, '2014-12-30 22:25:27', '2014-12-30 22:25:27', 'Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!', 'Hello world!', '', 'inherit', 'closed', 'open', '', '1-revision-v1', '', '', '2014-12-30 22:25:27', '2014-12-30 22:25:27', '', 1, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=52', 0, 'revision', '', 0), (53, 1, '2014-12-30 23:15:57', '2014-12-30 23:15:57', 'This is my new post haha', 'New Post', '', 'trash', 'closed', 'closed', '', 'new-post', '', '', '2014-12-31 00:58:48', '2014-12-31 00:58:48', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=53', 0, 'post', '', 0), (54, 1, '2014-12-30 23:15:57', '2014-12-30 23:15:57', 'This is my new post haha', 'New Post', '', 'inherit', 'closed', 'closed', '', '53-revision-v1', '', '', '2014-12-30 23:15:57', '2014-12-30 23:15:57', '', 53, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=54', 0, 'revision', '', 0), (56, 1, '2014-12-31 01:00:00', '2014-12-31 01:00:00', 'bla bla bla', 'bla bla bla', '', 'publish', 'open', 'closed', '', '56', '', '', '2015-01-14 00:37:52', '2015-01-14 00:37:52', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=56', 0, 'post', '', 0), (57, 1, '2014-12-31 01:00:00', '2014-12-31 01:00:00', 'bla bla bla', '', '', 'inherit', 'closed', 'closed', '', '56-revision-v1', '', '', '2014-12-31 01:00:00', '2014-12-31 01:00:00', '', 56, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=57', 0, 'revision', '', 0), (58, 1, '2014-12-31 01:00:32', '2014-12-31 01:00:32', 'bla bla bla', 'bla bla bla', '', 'inherit', 'closed', 'closed', '', '56-revision-v1', '', '', '2014-12-31 01:00:32', '2014-12-31 01:00:32', '', 56, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=58', 0, 'revision', '', 0), (59, 1, '2014-12-31 01:02:39', '2014-12-31 01:02:39', 'iiijjjjjjjjjjjjjjjjjjjjjjjjjjjjkkkekekekek', 'alb alb alb', '', 'publish', 'open', 'closed', '', 'alb-alb-alb', '', '', '2015-01-14 00:37:11', '2015-01-14 00:37:11', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=59', 0, 'post', '', 0), (60, 1, '2014-12-31 01:02:39', '2014-12-31 01:02:39', 'iiijjjjjjjjjjjjjjjjjjjjjjjjjjjjkkkekekekek', 'alb alb alb', '', 'inherit', 'closed', 'closed', '', '59-revision-v1', '', '', '2014-12-31 01:02:39', '2014-12-31 01:02:39', '', 59, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=60', 0, 'revision', '', 0), (61, 1, '2014-12-31 01:28:05', '2014-12-31 01:28:05', 'here i am', 'yes yes', '', 'publish', 'open', 'open', '', 'yes-yes', '', '', '2014-12-31 01:37:01', '2014-12-31 01:37:01', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=61', 0, 'post', '', 0), (62, 1, '2014-12-31 01:28:05', '2014-12-31 01:28:05', '', 'yes yes', '', 'inherit', 'open', 'open', '', '61-revision-v1', '', '', '2014-12-31 01:28:05', '2014-12-31 01:28:05', '', 61, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=62', 0, 'revision', '', 0), (63, 1, '2014-12-31 01:28:33', '2014-12-31 01:28:33', 'here i am', 'yes yes', '', 'inherit', 'open', 'open', '', '61-revision-v1', '', '', '2014-12-31 01:28:33', '2014-12-31 01:28:33', '', 61, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=63', 0, 'revision', '', 0), (65, 1, '2015-01-04 17:45:44', '2015-01-04 17:45:44', 'Consulting services page', 'Consulting', '', 'trash', 'open', 'open', '', 'consulting', '', '', '2015-01-05 20:56:59', '2015-01-05 20:56:59', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?page_id=65', 1, 'page', '', 0), (66, 1, '2015-01-04 17:45:44', '2015-01-04 17:45:44', 'Consulting services page', 'Consulting', '', 'inherit', 'open', 'open', '', '65-revision-v1', '', '', '2015-01-04 17:45:44', '2015-01-04 17:45:44', '', 65, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=66', 0, 'revision', '', 0), (67, 1, '2015-01-04 17:46:49', '2015-01-04 17:46:49', ' ', '', '', 'publish', 'open', 'open', '', '67', '', '', '2015-01-13 20:18:07', '2015-01-13 20:18:07', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=67', 2, 'nav_menu_item', '', 0), (70, 1, '2015-01-05 20:58:56', '2015-01-05 20:58:56', 'Consulting services are available for all phases of setting up your network. Please contact the <a title="Contact" href="http://www.thespacetimecontinuum.com/wordpress_4/?page_id=28">Nodes-Talking team</a> for estimates.', 'Consulting', '', 'publish', 'closed', 'closed', '', 'consulting-2', '', '', '2015-01-15 16:14:32', '2015-01-15 16:14:32', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?page_id=70', 5, 'page', '', 0), (71, 1, '2015-01-05 20:58:00', '2015-01-05 20:58:00', 'The New consulting page', 'Consulting', '', 'inherit', 'closed', 'open', '', '70-revision-v1', '', '', '2015-01-05 20:58:00', '2015-01-05 20:58:00', '', 70, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=71', 0, 'revision', '', 0), (72, 1, '2015-01-05 20:59:58', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'open', '', '', '', '', '2015-01-05 20:59:58', '0000-00-00 00:00:00', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=72', 1, 'nav_menu_item', '', 0), (76, 1, '2015-01-05 21:18:31', '2015-01-05 21:18:31', 'An exciting hands-on test of our nodes-talking software controlling a network of nodes built by university students', 'New Project with Vernonzh University', '', 'publish', 'open', 'open', '', 'new-project-with-vernonzh-university', '', '', '2015-01-14 19:43:14', '2015-01-14 19:43:14', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=76', 0, 'post', '', 0), (77, 1, '2015-01-05 21:18:31', '2015-01-05 21:18:31', 'An exciting hands-on test of our nodes-talking software controlling a network of nodes built the university students', 'New Project with Vernonzh University', '', 'inherit', 'closed', 'open', '', '76-revision-v1', '', '', '2015-01-05 21:18:31', '2015-01-05 21:18:31', '', 76, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=77', 0, 'revision', '', 0), (78, 1, '2015-01-05 21:31:36', '0000-00-00 00:00:00', '', 'uncategorized', '', 'draft', 'closed', 'open', '', '', '', '', '2015-01-05 21:31:36', '2015-01-05 21:31:36', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=78', 0, 'post', '', 0), (79, 1, '2015-01-05 21:48:34', '2015-01-05 21:48:34', 'new programs for U students', 'veronezh university', '', 'publish', 'open', 'open', '', 'veronezh-university', '', '', '2015-01-14 00:36:33', '2015-01-14 00:36:33', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=79', 0, 'post', '', 0), (80, 1, '2015-01-05 21:48:34', '2015-01-05 21:48:34', 'new programs for U students', 'veronezh university', '', 'inherit', 'closed', 'open', '', '79-revision-v1', '', '', '2015-01-05 21:48:34', '2015-01-05 21:48:34', '', 79, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=80', 0, 'revision', '', 0), (81, 1, '2015-01-13 18:16:04', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'open', '', '', '', '', '2015-01-13 18:16:04', '0000-00-00 00:00:00', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=81', 0, 'post', '', 0), (82, 1, '2015-01-13 19:38:28', '2015-01-13 19:38:28', 'Consulting services are available for all phases of setting up your network. Please contact us for estimates.', 'Consultin', '', 'inherit', 'closed', 'open', '', '70-autosave-v1', '', '', '2015-01-13 19:38:28', '2015-01-13 19:38:28', '', 70, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=82', 0, 'revision', '', 0), (83, 1, '2015-01-13 18:44:56', '2015-01-13 18:44:56', 'Consulting is available for all phases of setting up your network. Please contact us for available estimates.', 'Consulting', '', 'inherit', 'closed', 'open', '', '70-revision-v1', '', '', '2015-01-13 18:44:56', '2015-01-13 18:44:56', '', 70, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=83', 0, 'revision', '', 0), (84, 1, '2015-01-13 18:45:45', '2015-01-13 18:45:45', 'Consulting is available for all phases of setting up your network. Please contact us for available estimates.', 'Consulting Services', '', 'inherit', 'closed', 'open', '', '70-revision-v1', '', '', '2015-01-13 18:45:45', '2015-01-13 18:45:45', '', 70, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=84', 0, 'revision', '', 0), (85, 1, '2015-01-13 18:53:13', '2015-01-13 18:53:13', 'We can be reached by:\n<p style="text-align: justify;"><NAME>&lt;<EMAIL>&gt;</p>\n<p style="text-align: justify;"><NAME> &lt;<EMAIL>&gt;</p>\n<p style="text-align: justify;"><NAME> &lt;<EMAIL>&gt;</p>\n&nbsp;', 'Contact', '', 'inherit', 'closed', 'open', '', '28-autosave-v1', '', '', '2015-01-13 18:53:13', '2015-01-13 18:53:13', '', 28, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=85', 0, 'revision', '', 0), (86, 1, '2015-01-13 18:53:34', '2015-01-13 18:53:34', 'We can be reached at:\r\n<p style="text-align: justify; padding-left: 30px;"><NAME>&lt;<EMAIL>&gt;</p>\r\n<p style="text-align: justify; padding-left: 30px;"><NAME> &lt;<EMAIL>&gt;</p>\r\n<p style="text-align: justify; padding-left: 30px;"><NAME> &lt;<EMAIL>&gt;</p>\r\n&nbsp;', 'Contact', '', 'inherit', 'closed', 'open', '', '28-revision-v1', '', '', '2015-01-13 18:53:34', '2015-01-13 18:53:34', '', 28, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=86', 0, 'revision', '', 0), (88, 1, '2015-01-13 19:01:35', '2015-01-13 19:01:35', '<hr />\r\n\r\nThe Nodes-Talking project was formed in 2014 to address a growing need for different kinds of environmental sensors that makeup a nodes-talking network. The controlling software, written in node.js and java, is an open-source project hosted on github and can be viewed at\r\n\r\n<a class="smarterwiki-linkify" href="https://github.com/rsiewert/Nodes-Talking">Nodes-Talking</a>\r\n<a class="smarterwiki-linkify" href="https://github.com/rsiewert/Nodes-Talking-Admin">Nodes-Talking-Admin</a>\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"></p>\r\n&nbsp;', 'Home', '', 'inherit', 'closed', 'open', '', '2-revision-v1', '', '', '2015-01-13 19:01:35', '2015-01-13 19:01:35', '', 2, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=88', 0, 'revision', '', 0), (89, 1, '2015-01-13 19:05:16', '2015-01-13 19:05:16', '<hr />\r\n\r\nThe Nodes-Talking project was formed in 2014 to address a growing need for different kinds of environmental sensors that makeup a nodes-talking network. The controlling software, written in node.js,  java and AngularJS framework for user interface, is an open-source project hosted on github and can be viewed at\r\n\r\n<a class="smarterwiki-linkify" href="https://github.com/rsiewert/Nodes-Talking">Nodes-Talking</a>\r\n<a class="smarterwiki-linkify" href="https://github.com/rsiewert/Nodes-Talking-Admin">Nodes-Talking-Admin</a>\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"></p>', 'Home', '', 'inherit', 'closed', 'open', '', '2-revision-v1', '', '', '2015-01-13 19:05:16', '2015-01-13 19:05:16', '', 2, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=89', 0, 'revision', '', 0), (90, 1, '2015-01-13 19:05:54', '2015-01-13 19:05:54', '<hr />\r\n\r\nThe Nodes-Talking project was formed in 2014 to address a growing need for different kinds of environmental sensors that makeup a nodes-talking network. The controlling software, written in node.js,  java and AngularJS framework for the user interface, is an open-source project hosted on github and can be viewed at\r\n\r\n<a class="smarterwiki-linkify" href="https://github.com/rsiewert/Nodes-Talking">Nodes-Talking</a>\r\n<a class="smarterwiki-linkify" href="https://github.com/rsiewert/Nodes-Talking-Admin">Nodes-Talking-Admin</a>\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"></p>', 'Home', '', 'inherit', 'closed', 'open', '', '2-revision-v1', '', '', '2015-01-13 19:05:54', '2015-01-13 19:05:54', '', 2, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=90', 0, 'revision', '', 0), (91, 1, '2015-01-13 19:06:25', '2015-01-13 19:06:25', '<hr />\n\nThe Nodes-Talking project was formed in 2014 to address a growing need for different kinds of environmental sensors that makeup a nodes-talking network. The controlling software, written in node.js,  java and using AngularJS presentation, is an open-source project hosted on github and can be viewed at\n\n<a class="smarterwiki-linkify" href="https://github.com/rsiewert/Nodes-Talking">Nodes-Talking</a>\n<a class="smarterwiki-linkify" href="https://github.com/rsiewert/Nodes-Talking-Admin">Nodes-Talking-Admin</a>\n\n&nbsp;\n\n&nbsp;\n<p style="text-align: justify;"></p>', 'Home', '', 'inherit', 'closed', 'open', '', '2-autosave-v1', '', '', '2015-01-13 19:06:25', '2015-01-13 19:06:25', '', 2, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=91', 0, 'revision', '', 0), (92, 1, '2015-01-13 19:07:30', '2015-01-13 19:07:30', '<hr />\r\n\r\nThe Nodes-Talking project was formed in 2014 to address a growing need for different kinds of environmental sensors that makeup a nodes-talking network. The controlling software, written in node.js,  java and using the AngularJS framework, for the user interface, is an open-source project hosted on github and can be viewed at\r\n\r\n<a class="smarterwiki-linkify" href="https://github.com/rsiewert/Nodes-Talking">Nodes-Talking</a>\r\n<a class="smarterwiki-linkify" href="https://github.com/rsiewert/Nodes-Talking-Admin">Nodes-Talking-Admin</a>\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"></p>', 'Home', '', 'inherit', 'closed', 'open', '', '2-revision-v1', '', '', '2015-01-13 19:07:30', '2015-01-13 19:07:30', '', 2, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=92', 0, 'revision', '', 0), (93, 1, '2015-01-13 19:17:41', '2015-01-13 19:17:41', '<hr />\r\n\r\nThe Nodes-Talking project was formed in 2014 to address a growing need for different kinds of environmental sensors that makeup a nodes-talking network. The controlling software, written in node.js,  java and using AngularJS presentation, is an open-source project hosted on github and can be viewed at\r\n\r\n<a class="smarterwiki-linkify" href="https://github.com/rsiewert/Nodes-Talking">Nodes-Talking</a>\r\n<a class="smarterwiki-linkify" href="https://github.com/rsiewert/Nodes-Talking-Admin">Nodes-Talking-Admin</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"></p>', 'Home', '', 'inherit', 'closed', 'open', '', '2-revision-v1', '', '', '2015-01-13 19:17:41', '2015-01-13 19:17:41', '', 2, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=93', 0, 'revision', '', 0), (94, 1, '2015-01-13 19:20:05', '2015-01-13 19:20:05', '<hr />\r\n\r\nThe Nodes-Talking project was formed in 2014 to address a growing need for different kinds of environmental sensors that makeup a nodes-talking network. The controlling software, written in node.js,  java and using the AngularJS framework, for the user interface, is an open-source project hosted on github and can be viewed at\r\n\r\n<a class="smarterwiki-linkify" href="https://github.com/rsiewert/Nodes-Talking">Nodes-Talking</a>\r\n<a class="smarterwiki-linkify" href="https://github.com/rsiewert/Nodes-Talking-Admin">Nodes-Talking-Admin</a>\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"></p>', 'Home', '', 'inherit', 'closed', 'open', '', '2-revision-v1', '', '', '2015-01-13 19:20:05', '2015-01-13 19:20:05', '', 2, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=94', 0, 'revision', '', 0), (95, 1, '2015-01-13 19:33:02', '2015-01-13 19:33:02', 'Consulting services are available for all phases of setting up your network. Please contact us for estimates.', 'Consulting Services', '', 'inherit', 'closed', 'open', '', '70-revision-v1', '', '', '2015-01-13 19:33:02', '2015-01-13 19:33:02', '', 70, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=95', 0, 'revision', '', 0), (96, 1, '2015-01-13 19:33:28', '2015-01-13 19:33:28', 'Consulting services are available for all phases of setting up your network. Please contact us for estimates.', 'Consulting', '', 'inherit', 'closed', 'open', '', '70-revision-v1', '', '', '2015-01-13 19:33:28', '2015-01-13 19:33:28', '', 70, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=96', 0, 'revision', '', 0), (97, 1, '2015-01-13 19:35:38', '2015-01-13 19:35:38', 'Consulting services are available for all phases of setting up your network. Please contact us for estimates.', '', '', 'inherit', 'closed', 'open', '', '70-revision-v1', '', '', '2015-01-13 19:35:38', '2015-01-13 19:35:38', '', 70, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=97', 0, 'revision', '', 0), (98, 1, '2015-01-13 19:37:01', '2015-01-13 19:37:01', '', 'Consulting services are available for all phases of setting up your network. Please contact us for estimates.', '', 'inherit', 'closed', 'open', '', '70-revision-v1', '', '', '2015-01-13 19:37:01', '2015-01-13 19:37:01', '', 70, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=98', 0, 'revision', '', 0), (99, 1, '2015-01-13 19:38:50', '2015-01-13 19:38:50', 'Consulting services are available for all phases of setting up your network. Please contact us for estimates.', 'Consulting', '', 'inherit', 'closed', 'open', '', '70-revision-v1', '', '', '2015-01-13 19:38:50', '2015-01-13 19:38:50', '', 70, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=99', 0, 'revision', '', 0), (100, 1, '2015-01-13 19:40:03', '2015-01-13 19:40:03', 'Nodes-talking technology page -- goes into the technology behind nodes-talking', 'Documentation', '', 'inherit', 'closed', 'open', '', '30-revision-v1', '', '', '2015-01-13 19:40:03', '2015-01-13 19:40:03', '', 30, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=100', 0, 'revision', '', 0), (101, 1, '2015-01-13 20:08:18', '2015-01-13 20:08:18', 'New page', 'Consulting_1', '', 'trash', 'closed', 'open', '', 'consulting_1', '', '', '2015-01-13 20:21:35', '2015-01-13 20:21:35', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?page_id=101', 0, 'page', '', 0), (102, 1, '2015-01-13 20:08:18', '2015-01-13 20:08:18', 'New page', 'Consulting_1', '', 'inherit', 'closed', 'open', '', '101-revision-v1', '', '', '2015-01-13 20:08:18', '2015-01-13 20:08:18', '', 101, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=102', 0, 'revision', '', 0), (103, 1, '2015-01-13 20:25:56', '2015-01-13 20:25:56', 'Goes into the technology behind nodes-talking:\n\n&nbsp;', 'Documentation', '', 'inherit', 'closed', 'open', '', '30-autosave-v1', '', '', '2015-01-13 20:25:56', '2015-01-13 20:25:56', '', 30, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=103', 0, 'revision', '', 0), (104, 1, '2015-01-13 21:00:01', '2015-01-13 21:00:01', 'Goes into the technology behind nodes-talking/nodes-talking-admin', 'Documentation', '', 'inherit', 'closed', 'open', '', '30-revision-v1', '', '', '2015-01-13 21:00:01', '2015-01-13 21:00:01', '', 30, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=104', 0, 'revision', '', 0), (105, 1, '2015-01-13 21:03:10', '2015-01-13 21:03:10', 'Version 0.1\n\nDocumentation', 'About', '', 'inherit', 'closed', 'open', '', '7-autosave-v1', '', '', '2015-01-13 21:03:10', '2015-01-13 21:03:10', '', 7, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=105', 0, 'revision', '', 0), (106, 1, '2015-01-13 21:03:17', '2015-01-13 21:03:17', 'Version 0.1\r\n\r\n<a title="Documentation" href="http://www.thespacetimecontinuum.com/wordpress_4/?page_id=30">Documentation</a>', 'About', '', 'inherit', 'closed', 'open', '', '7-revision-v1', '', '', '2015-01-13 21:03:17', '2015-01-13 21:03:17', '', 7, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=106', 0, 'revision', '', 0), (107, 1, '2015-01-13 21:06:04', '2015-01-13 21:06:04', 'Version 0.1\r\n\r\n<a title="Documentation" href="http://www.thespacetimecontinuum.com/wordpress_4/?page_id=30">Documentation</a>\r\n\r\nLicensed under the <strong>[Apache License, Version 2.0] [license]</strong> (the "License"); you may not use this software except in compliance with the License.\r\n\r\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.', 'About', '', 'inherit', 'closed', 'open', '', '7-revision-v1', '', '', '2015-01-13 21:06:04', '2015-01-13 21:06:04', '', 7, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=107', 0, 'revision', '', 0), (108, 1, '2015-01-13 21:15:40', '2015-01-13 21:15:40', 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-bioSpear.big_.61.png', 'cropped-bioSpear.big_.61.png', '', 'inherit', 'closed', 'open', '', 'cropped-biospear-big_-61-png', '', '', '2015-01-13 21:15:40', '2015-01-13 21:15:40', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-bioSpear.big_.61.png', 0, 'attachment', 'image/png', 0), (109, 1, '2015-01-13 21:17:30', '2015-01-13 21:17:30', 'We can be reached at:\r\n<p style="text-align: justify; padding-left: 30px;"><NAME>&lt;<EMAIL>&gt;</p>\r\n<p style="text-align: justify; padding-left: 30px;"><NAME> &lt;<EMAIL>&gt;</p>\r\n<p style="text-align: justify; padding-left: 30px;"><NAME> &lt;<EMAIL>&gt;</p>\r\n&nbsp;', 'Contact', '', 'inherit', 'closed', 'open', '', '28-revision-v1', '', '', '2015-01-13 21:17:30', '2015-01-13 21:17:30', '', 28, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=109', 0, 'revision', '', 0), (110, 1, '2015-01-13 21:23:28', '2015-01-13 21:23:28', 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-cropped-bioSpear.big_.61.png', 'cropped-cropped-bioSpear.big_.61.png', '', 'inherit', 'closed', 'open', '', 'cropped-cropped-biospear-big_-61-png', '', '', '2015-01-13 21:23:28', '2015-01-13 21:23:28', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-cropped-bioSpear.big_.61.png', 0, 'attachment', 'image/png', 0), (111, 1, '2015-01-13 21:24:20', '2015-01-13 21:24:20', 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-cropped-bioSpear.big_.611.png', 'cropped-cropped-bioSpear.big_.611.png', '', 'inherit', 'closed', 'open', '', 'cropped-cropped-biospear-big_-611-png', '', '', '2015-01-13 21:24:20', '2015-01-13 21:24:20', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-cropped-bioSpear.big_.611.png', 0, 'attachment', 'image/png', 0), (112, 1, '2015-01-13 21:40:01', '2015-01-13 21:40:01', 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-cropped-cropped-bioSpear.big_.61.png', 'cropped-cropped-cropped-bioSpear.big_.61.png', '', 'inherit', 'closed', 'open', '', 'cropped-cropped-cropped-biospear-big_-61-png', '', '', '2015-01-13 21:40:01', '2015-01-13 21:40:01', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/cropped-cropped-cropped-bioSpear.big_.61.png', 0, 'attachment', 'image/png', 0), (113, 1, '2015-01-13 21:57:19', '2015-01-13 21:57:19', 'Consulting services are available for all phases of setting up your network. Please contact us for estimates.', '', '', 'inherit', 'closed', 'open', '', '70-revision-v1', '', '', '2015-01-13 21:57:19', '2015-01-13 21:57:19', '', 70, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=113', 0, 'revision', '', 0), (114, 1, '2015-01-13 21:58:13', '2015-01-13 21:58:13', 'Consulting services are available for all phases of setting up your network. Please contact us for estimates.', 'Consulting', '', 'inherit', 'closed', 'open', '', '70-revision-v1', '', '', '2015-01-13 21:58:13', '2015-01-13 21:58:13', '', 70, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=114', 0, 'revision', '', 0), (115, 1, '2015-01-13 22:00:20', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'open', '', '', '', '', '2015-01-13 22:00:20', '0000-00-00 00:00:00', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=115', 0, 'post', '', 0), (116, 1, '2015-01-13 22:22:46', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'open', '', '', '', '', '2015-01-13 22:22:46', '0000-00-00 00:00:00', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=116', 0, 'post', '', 0), (117, 1, '2015-01-13 22:55:35', '2015-01-13 22:55:35', '<ol>\r\n <li>Temperature</li>\r\n <li>CO2</li>\r\n <li>Ph</li>\r\n</ol>', 'Let''s talk about sensors', '', 'publish', 'open', 'open', '', 'lets-talk-about-sensors', '', '', '2015-01-14 01:16:26', '2015-01-14 01:16:26', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=117', 0, 'post', '', 2), (118, 1, '2015-01-13 22:55:35', '2015-01-13 22:55:35', '<ol>\r\n <li>Temperature</li>\r\n <li>CO2</li>\r\n <li>Ph</li>\r\n</ol>', 'Let''s talk about sensors', '', 'inherit', 'closed', 'open', '', '117-revision-v1', '', '', '2015-01-13 22:55:35', '2015-01-13 22:55:35', '', 117, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=118', 0, 'revision', '', 0), (119, 1, '2015-01-13 23:02:10', '2015-01-13 23:02:10', 'Nodes-talking events page', 'Posts', '', 'inherit', 'closed', 'open', '', '26-revision-v1', '', '', '2015-01-13 23:02:10', '2015-01-13 23:02:10', '', 26, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=119', 0, 'revision', '', 0), (120, 1, '2015-01-13 23:03:36', '2015-01-13 23:03:36', '[Spider_Calendar id="1" theme="13" default="month" select="month,list,week,day,"]', 'Events', '', 'publish', 'closed', 'closed', '', 'events', '', '', '2015-01-14 00:57:33', '2015-01-14 00:57:33', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?page_id=120', 1, 'page', '', 0), (121, 1, '2015-01-13 23:03:36', '2015-01-13 23:03:36', '', 'Events', '', 'inherit', 'closed', 'open', '', '120-revision-v1', '', '', '2015-01-13 23:03:36', '2015-01-13 23:03:36', '', 120, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=121', 0, 'revision', '', 0), (122, 1, '2015-01-13 23:06:37', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'open', '', '', '', '', '2015-01-13 23:06:37', '0000-00-00 00:00:00', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=122', 0, 'post', '', 0), (123, 1, '2015-01-13 23:10:11', '2015-01-13 23:10:11', '<hr />\r\n\r\nThe Nodes-Talking project formed in 2014 to address a growing need for different kinds of environmental sensors that makeup a nodes-talking network. The controlling software, written in node.js,  java and using the AngularJS framework, for the user interface, is an open-source project hosted on github and can be viewed at\r\n\r\n<a class="smarterwiki-linkify" href="https://github.com/rsiewert/Nodes-Talking">Nodes-Talking</a>\r\n<a class="smarterwiki-linkify" href="https://github.com/rsiewert/Nodes-Talking-Admin">Nodes-Talking-Admin</a>\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"></p>', 'Home', '', 'inherit', 'closed', 'open', '', '2-revision-v1', '', '', '2015-01-13 23:10:11', '2015-01-13 23:10:11', '', 2, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=123', 0, 'revision', '', 0), (124, 1, '2015-01-14 00:57:33', '2015-01-14 00:57:33', '[Spider_Calendar id="1" theme="13" default="month" select="month,list,week,day,"]', 'Events', '', 'inherit', 'closed', 'open', '', '120-revision-v1', '', '', '2015-01-14 00:57:33', '2015-01-14 00:57:33', '', 120, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=124', 0, 'revision', '', 0), (125, 1, '2015-01-14 16:10:14', '2015-01-14 16:10:14', 'Nodes-talking collaboration page - good place to put Randy''s collab with the University in Veronezh.\r\n\r\n[Spider_Single_Video track="3" theme_id="1" priority="0"]', 'Collaborations', '', 'inherit', 'closed', 'open', '', '32-revision-v1', '', '', '2015-01-14 16:10:14', '2015-01-14 16:10:14', '', 32, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=125', 0, 'revision', '', 0), (126, 1, '2015-01-14 19:31:06', '2015-01-14 19:31:06', 'Nodes-talking collaboration page - good place to put Randy''s collab with the University in Veronezh.\r\n\r\n[Spider_Single_Video track="1" theme_id="1" priority="0"]', 'Collaborations', '', 'inherit', 'closed', 'open', '', '32-revision-v1', '', '', '2015-01-14 19:31:06', '2015-01-14 19:31:06', '', 32, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=126', 0, 'revision', '', 0), (127, 1, '2015-01-14 19:39:18', '2015-01-14 19:39:18', 'Consulting services are available for all phases of setting up your network. Please contact the nodes-talking team for estimates.', 'Consulting', '', 'inherit', 'closed', 'open', '', '70-revision-v1', '', '', '2015-01-14 19:39:18', '2015-01-14 19:39:18', '', 70, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=127', 0, 'revision', '', 0), (128, 1, '2015-01-14 19:39:37', '2015-01-14 19:39:37', 'Consulting services are available for all phases of setting up your network. Please contact the Nodes-Talking team for estimates.', 'Consulting', '', 'inherit', 'closed', 'open', '', '70-revision-v1', '', '', '2015-01-14 19:39:37', '2015-01-14 19:39:37', '', 70, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=128', 0, 'revision', '', 0), (129, 1, '2015-01-14 19:40:43', '2015-01-14 19:40:43', 'Consulting services are available for all phases of setting up your network. Please contact the <a title="Contact" href="http://www.thespacetimecontinuum.com/wordpress_4/?page_id=28">Nodes-Talking team</a> for estimates.', 'Consulting', '', 'inherit', 'closed', 'open', '', '70-revision-v1', '', '', '2015-01-14 19:40:43', '2015-01-14 19:40:43', '', 70, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=129', 0, 'revision', '', 0), (130, 1, '2015-01-14 19:42:46', '2015-01-14 19:42:46', 'An exciting hands-on test of our nodes-talking software controlling a network of nodes built by university students', 'New Project with Vernonzh University', '', 'inherit', 'closed', 'open', '', '76-revision-v1', '', '', '2015-01-14 19:42:46', '2015-01-14 19:42:46', '', 76, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=130', 0, 'revision', '', 0), (131, 1, '2015-01-15 16:04:27', '2015-01-15 16:04:27', '3D Printing\n\nhttps://www.youtube.com/watch?v=BcsacXZ72FM', 'Collaborations', '', 'inherit', 'closed', 'open', '', '32-autosave-v1', '', '', '2015-01-15 16:04:27', '2015-01-15 16:04:27', '', 32, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=131', 0, 'revision', '', 0), (132, 1, '2015-01-14 20:40:26', '2015-01-14 20:40:26', 'Nodes-talking collaboration page - good place to put Randy''s collab with the University in Veronezh.\r\n\r\nhttps://www.youtube.com/watch?v=iuwnSGnGsQA', 'Collaborations', '', 'inherit', 'closed', 'open', '', '32-revision-v1', '', '', '2015-01-14 20:40:26', '2015-01-14 20:40:26', '', 32, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=132', 0, 'revision', '', 0), (133, 1, '2015-01-15 15:52:42', '2015-01-15 15:52:42', 'Nodes-talking collaboration page - good place to put Randy''s collab with the University in Veronezh.\r\n\r\n&nbsp;', 'Collaborations', '', 'inherit', 'closed', 'open', '', '32-revision-v1', '', '', '2015-01-15 15:52:42', '2015-01-15 15:52:42', '', 32, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=133', 0, 'revision', '', 0), (134, 1, '2015-01-15 16:04:31', '2015-01-15 16:04:31', '3D Printing Demo\r\n\r\nhttps://www.youtube.com/watch?v=BcsacXZ72FM', 'Collaborations', '', 'inherit', 'closed', 'open', '', '32-revision-v1', '', '', '2015-01-15 16:04:31', '2015-01-15 16:04:31', '', 32, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=134', 0, 'revision', '', 0), (135, 1, '2015-01-15 16:08:46', '2015-01-15 16:08:46', '3D Printing a computer case. This is the same concept we are using to print cases for our sensors.\r\n\r\nhttps://www.youtube.com/watch?v=brZmzHnGWYw\r\n\r\nThis structure sensor is pretty cool\r\n\r\nhttp://youtu.be/w4aMQQv2Zvk', 'Technology', '', 'publish', 'closed', 'closed', '', 'technology-2', '', '', '2015-01-15 17:05:06', '2015-01-15 17:05:06', '', 0, 'http://www.thespacetimecontinuum.com/wordpress_4/?page_id=135', 4, 'page', '', 0), (136, 1, '2015-01-15 16:08:46', '2015-01-15 16:08:46', '', 'Technology', '', 'inherit', 'closed', 'open', '', '135-revision-v1', '', '', '2015-01-15 16:08:46', '2015-01-15 16:08:46', '', 135, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=136', 0, 'revision', '', 0), (137, 1, '2015-01-15 16:16:14', '2015-01-15 16:16:14', 'Collaborations', 'Collaborations', '', 'inherit', 'closed', 'open', '', '32-revision-v1', '', '', '2015-01-15 16:16:14', '2015-01-15 16:16:14', '', 32, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=137', 0, 'revision', '', 0), (138, 1, '2015-01-15 16:16:47', '2015-01-15 16:16:47', '3D Printing Demo\r\n\r\nhttps://www.youtube.com/watch?v=BcsacXZ72FM', 'Technology', '', 'inherit', 'closed', 'open', '', '135-revision-v1', '', '', '2015-01-15 16:16:47', '2015-01-15 16:16:47', '', 135, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=138', 0, 'revision', '', 0); INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (139, 1, '2015-01-15 16:29:20', '2015-01-15 16:29:20', 'This structure sensor is pretty cool\r\n\r\nhttp://youtu.be/w4aMQQv2Zvk\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n3D Printing Demo\r\n\r\nhttps://www.youtube.com/watch?v=BcsacXZ72FM', 'Technology', '', 'inherit', 'closed', 'open', '', '135-revision-v1', '', '', '2015-01-15 16:29:20', '2015-01-15 16:29:20', '', 135, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=139', 0, 'revision', '', 0), (140, 1, '2015-01-15 16:31:41', '2015-01-15 16:31:41', 'This structure sensor is pretty cool\r\n\r\nhttp://youtu.be/w4aMQQv2Zvk\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n3D Printing Demo\r\n\r\nhttps://www.youtube.com/watch?v=brZmzHnGWYw', 'Technology', '', 'inherit', 'closed', 'open', '', '135-revision-v1', '', '', '2015-01-15 16:31:41', '2015-01-15 16:31:41', '', 135, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=140', 0, 'revision', '', 0), (141, 1, '2015-01-15 16:32:37', '2015-01-15 16:32:37', 'This structure sensor is pretty cool\r\n\r\nhttp://youtu.be/w4aMQQv2Zvk\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n3D Printing a computer case\r\n\r\nhttps://www.youtube.com/watch?v=brZmzHnGWYw', 'Technology', '', 'inherit', 'closed', 'open', '', '135-revision-v1', '', '', '2015-01-15 16:32:37', '2015-01-15 16:32:37', '', 135, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=141', 0, 'revision', '', 0), (143, 1, '2015-01-15 16:33:47', '2015-01-15 16:33:47', '\r\n3D Printing a computer case\r\n\r\nhttps://www.youtube.com/watch?v=brZmzHnGWYw\r\n\r\n\r\nThis structure sensor is pretty cool\r\n\r\nhttp://youtu.be/w4aMQQv2Zvk\r\n\r\n', 'Technology', '', 'inherit', 'closed', 'open', '', '135-revision-v1', '', '', '2015-01-15 16:33:47', '2015-01-15 16:33:47', '', 135, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=143', 0, 'revision', '', 0), (144, 1, '2015-01-15 16:40:39', '2015-01-15 16:40:39', '3D Printing a computer case. This is the same concept we are using\n\nhttps://www.youtube.com/watch?v=brZmzHnGWYw\n\nThis structure sensor is pretty cool\n\nhttp://youtu.be/w4aMQQv2Zvk', 'Technology', '', 'inherit', 'closed', 'open', '', '135-autosave-v1', '', '', '2015-01-15 16:40:39', '2015-01-15 16:40:39', '', 135, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=144', 0, 'revision', '', 0), (145, 1, '2015-01-15 17:05:06', '2015-01-15 17:05:06', '3D Printing a computer case. This is the same concept we are using to print cases for our sensors.\r\n\r\nhttps://www.youtube.com/watch?v=brZmzHnGWYw\r\n\r\nThis structure sensor is pretty cool\r\n\r\nhttp://youtu.be/w4aMQQv2Zvk', 'Technology', '', 'inherit', 'closed', 'open', '', '135-revision-v1', '', '', '2015-01-15 17:05:06', '2015-01-15 17:05:06', '', 135, 'http://www.thespacetimecontinuum.com/wordpress_4/?p=145', 0, 'revision', '', 0); -- -------------------------------------------------------- -- -- Table structure for table `wp_spidercalendar_calendar` -- CREATE TABLE IF NOT EXISTS `wp_spidercalendar_calendar` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `gid` varchar(255) NOT NULL, `time_format` tinyint(1) NOT NULL, `allow_publish` varchar(255) NOT NULL, `def_year` varchar(512) NOT NULL, `def_month` varchar(255) NOT NULL, `published` tinyint(1) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `wp_spidercalendar_calendar` -- INSERT INTO `wp_spidercalendar_calendar` (`id`, `title`, `gid`, `time_format`, `allow_publish`, `def_year`, `def_month`, `published`) VALUES (1, 'events', '', 0, '', '2015', '', 1); -- -------------------------------------------------------- -- -- Table structure for table `wp_spidercalendar_event` -- CREATE TABLE IF NOT EXISTS `wp_spidercalendar_event` ( `id` int(11) NOT NULL AUTO_INCREMENT, `calendar` int(11) NOT NULL, `date` date NOT NULL, `date_end` date NOT NULL, `title` text NOT NULL, `category` int(11) DEFAULT NULL, `time` varchar(20) NOT NULL, `text_for_date` longtext NOT NULL, `userID` varchar(255) NOT NULL, `repeat_method` varchar(255) NOT NULL, `repeat` varchar(255) NOT NULL, `week` varchar(255) NOT NULL, `month` varchar(255) NOT NULL, `month_type` varchar(255) NOT NULL, `monthly_list` varchar(255) NOT NULL, `month_week` varchar(255) NOT NULL, `year_month` varchar(255) NOT NULL, `published` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `wp_spidercalendar_event` -- INSERT INTO `wp_spidercalendar_event` (`id`, `calendar`, `date`, `date_end`, `title`, `category`, `time`, `text_for_date`, `userID`, `repeat_method`, `repeat`, `week`, `month`, `month_type`, `monthly_list`, `month_week`, `year_month`, `published`) VALUES (1, 1, '2015-06-01', '0000-00-00', 'Deploy network to testbed', 0, '', 'Deploy to Laurie''s farm outside Nashville, TN', '', 'no_repeat', '1', '', '', '1', '', '', '1', 1); -- -------------------------------------------------------- -- -- Table structure for table `wp_spidercalendar_event_category` -- CREATE TABLE IF NOT EXISTS `wp_spidercalendar_event_category` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `published` tinyint(1) NOT NULL, `color` varchar(255) NOT NULL, `description` longtext NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `wp_spidercalendar_event_category` -- -- -------------------------------------------------------- -- -- Table structure for table `wp_spidercalendar_theme` -- CREATE TABLE IF NOT EXISTS `wp_spidercalendar_theme` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `width` varchar(255) NOT NULL, `cell_height` varchar(255) NOT NULL, `bg_top` varchar(255) NOT NULL, `bg_bottom` varchar(255) NOT NULL, `border_color` varchar(255) NOT NULL, `text_color_year` varchar(255) NOT NULL, `text_color_month` varchar(255) NOT NULL, `text_color_week_days` varchar(255) NOT NULL, `text_color_other_months` varchar(255) NOT NULL, `text_color_this_month_unevented` varchar(255) NOT NULL, `text_color_this_month_evented` varchar(255) NOT NULL, `event_title_color` varchar(255) NOT NULL, `current_day_border_color` varchar(255) NOT NULL, `bg_color_this_month_evented` varchar(255) NOT NULL, `next_prev_event_arrowcolor` varchar(255) NOT NULL, `show_event_bgcolor` varchar(255) NOT NULL, `cell_border_color` varchar(255) NOT NULL, `arrow_color_year` varchar(255) NOT NULL, `week_days_cell_height` varchar(255) NOT NULL, `arrow_color_month` varchar(255) NOT NULL, `text_color_sun_days` varchar(255) NOT NULL, `title_color` varchar(255) NOT NULL, `next_prev_event_bgcolor` varchar(255) NOT NULL, `title_font_size` varchar(255) NOT NULL, `title_font` varchar(255) NOT NULL, `title_style` varchar(255) NOT NULL, `date_color` varchar(255) NOT NULL, `date_size` varchar(255) NOT NULL, `date_font` varchar(255) NOT NULL, `date_style` varchar(255) NOT NULL, `popup_width` varchar(255) NOT NULL, `popup_height` varchar(255) NOT NULL, `number_of_shown_evetns` varchar(255) NOT NULL, `sundays_font_size` varchar(255) NOT NULL, `other_days_font_size` varchar(255) NOT NULL, `weekdays_font_size` varchar(255) NOT NULL, `border_width` varchar(255) NOT NULL, `top_height` varchar(255) NOT NULL, `bg_color_other_months` varchar(255) NOT NULL, `sundays_bg_color` varchar(255) NOT NULL, `weekdays_bg_color` varchar(255) NOT NULL, `week_start_day` varchar(255) NOT NULL, `weekday_sunday_bg_color` varchar(255) NOT NULL, `border_radius` varchar(255) NOT NULL, `year_font_size` varchar(255) NOT NULL, `month_font_size` varchar(255) NOT NULL, `arrow_size` varchar(255) NOT NULL, `next_month_text_color` varchar(255) NOT NULL, `prev_month_text_color` varchar(255) NOT NULL, `next_month_arrow_color` varchar(255) NOT NULL, `prev_month_arrow_color` varchar(255) NOT NULL, `next_month_font_size` varchar(255) NOT NULL, `prev_month_font_size` varchar(255) NOT NULL, `month_type` varchar(255) NOT NULL, `date_format` varchar(255) NOT NULL, `show_time` int(11) NOT NULL, `show_repeat` int(11) NOT NULL, `date_bg_color` varchar(255) NOT NULL, `event_bg_color1` varchar(255) NOT NULL, `event_bg_color2` varchar(255) NOT NULL, `event_num_bg_color1` varchar(255) NOT NULL, `event_num_bg_color2` varchar(255) NOT NULL, `event_num_color` varchar(255) NOT NULL, `date_font_size` varchar(255) NOT NULL, `event_num_font_size` varchar(255) NOT NULL, `event_table_height` varchar(255) NOT NULL, `date_height` varchar(255) NOT NULL, `ev_title_bg_color` varchar(255) NOT NULL, `week_font_size` varchar(255) NOT NULL, `day_month_font_size` varchar(255) NOT NULL, `week_font_color` varchar(255) NOT NULL, `day_month_font_color` varchar(255) NOT NULL, `views_tabs_bg_color` varchar(255) NOT NULL, `views_tabs_text_color` varchar(255) NOT NULL, `views_tabs_font_size` varchar(255) NOT NULL, `day_start` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=14 ; -- -- Dumping data for table `wp_spidercalendar_theme` -- INSERT INTO `wp_spidercalendar_theme` (`id`, `title`, `width`, `cell_height`, `bg_top`, `bg_bottom`, `border_color`, `text_color_year`, `text_color_month`, `text_color_week_days`, `text_color_other_months`, `text_color_this_month_unevented`, `text_color_this_month_evented`, `event_title_color`, `current_day_border_color`, `bg_color_this_month_evented`, `next_prev_event_arrowcolor`, `show_event_bgcolor`, `cell_border_color`, `arrow_color_year`, `week_days_cell_height`, `arrow_color_month`, `text_color_sun_days`, `title_color`, `next_prev_event_bgcolor`, `title_font_size`, `title_font`, `title_style`, `date_color`, `date_size`, `date_font`, `date_style`, `popup_width`, `popup_height`, `number_of_shown_evetns`, `sundays_font_size`, `other_days_font_size`, `weekdays_font_size`, `border_width`, `top_height`, `bg_color_other_months`, `sundays_bg_color`, `weekdays_bg_color`, `week_start_day`, `weekday_sunday_bg_color`, `border_radius`, `year_font_size`, `month_font_size`, `arrow_size`, `next_month_text_color`, `prev_month_text_color`, `next_month_arrow_color`, `prev_month_arrow_color`, `next_month_font_size`, `prev_month_font_size`, `month_type`, `date_format`, `show_time`, `show_repeat`, `date_bg_color`, `event_bg_color1`, `event_bg_color2`, `event_num_bg_color1`, `event_num_bg_color2`, `event_num_color`, `date_font_size`, `event_num_font_size`, `event_table_height`, `date_height`, `ev_title_bg_color`, `week_font_size`, `day_month_font_size`, `week_font_color`, `day_month_font_color`, `views_tabs_bg_color`, `views_tabs_text_color`, `views_tabs_font_size`, `day_start`) VALUES (13, 'Shiny Blue', '700', '70', '005478', 'E1E1E1', '005478', 'F9F2F4', 'F9F2F4', '005D78', 'B0B0B0', '6A6A6A', '6A6A6A', '236283', '005478', 'B4C5CC', '97A0A6', 'B4C5CC', 'A9A9A9', 'CCD1D2', '50', 'CCD1D2', '6A6A6A', 'FFFFFF', '00608A', '', '', 'normal', '262626', '', '', 'normal', '600', '500', '1', '25', '25', '25', '0', '100', 'E1E1E1', 'E1E1E1', 'D6D6D6', 'su', 'B5B5B5', '0', '25', '25', '50', 'CCD1D2', 'CCD1D2', 'CCD1D2', '1010A4', '16', '16', '2', 'w/d/m/y', 1, 1, 'D6D4D5', 'E1E1E1', 'DEDCDD', '005478', '006E91', 'FFFFFF', '15', '13', '30', '25', 'C3D0D6', '15', '12', '005476', '737373', '01799C', 'FFFFFF', '13', 1); -- -------------------------------------------------------- -- -- Table structure for table `wp_spidercalendar_widget_theme` -- CREATE TABLE IF NOT EXISTS `wp_spidercalendar_widget_theme` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `ev_title_color` varchar(255) DEFAULT NULL, `width` varchar(255) NOT NULL, `week_start_day` varchar(255) NOT NULL, `font_year` varchar(255) NOT NULL, `font_month` varchar(255) NOT NULL, `font_day` varchar(255) NOT NULL, `font_weekday` varchar(255) NOT NULL, `header_bgcolor` varchar(255) NOT NULL, `footer_bgcolor` varchar(255) NOT NULL, `text_color_month` varchar(255) NOT NULL, `text_color_week_days` varchar(255) NOT NULL, `text_color_other_months` varchar(255) NOT NULL, `text_color_this_month_unevented` varchar(255) NOT NULL, `text_color_this_month_evented` varchar(255) NOT NULL, `bg_color_this_month_evented` varchar(255) NOT NULL, `bg_color_selected` varchar(255) NOT NULL, `arrow_color` varchar(255) NOT NULL, `text_color_selected` varchar(255) NOT NULL, `border_day` varchar(255) NOT NULL, `text_color_sun_days` varchar(255) NOT NULL, `weekdays_bg_color` varchar(255) NOT NULL, `su_bg_color` varchar(255) NOT NULL, `cell_border_color` varchar(255) NOT NULL, `year_font_size` varchar(255) NOT NULL, `year_font_color` varchar(255) NOT NULL, `year_tabs_bg_color` varchar(255) NOT NULL, `date_format` varchar(255) NOT NULL, `title_color` varchar(255) NOT NULL, `title_font_size` varchar(255) NOT NULL, `title_font` varchar(255) NOT NULL, `title_style` varchar(255) NOT NULL, `date_color` varchar(255) NOT NULL, `date_size` varchar(255) NOT NULL, `date_font` varchar(255) NOT NULL, `date_style` varchar(255) NOT NULL, `next_prev_event_bgcolor` varchar(255) NOT NULL, `next_prev_event_arrowcolor` varchar(255) NOT NULL, `show_event_bgcolor` varchar(255) NOT NULL, `popup_width` varchar(255) NOT NULL, `popup_height` varchar(255) NOT NULL, `show_repeat` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `wp_spidercalendar_widget_theme` -- INSERT INTO `wp_spidercalendar_widget_theme` (`id`, `title`, `ev_title_color`, `width`, `week_start_day`, `font_year`, `font_month`, `font_day`, `font_weekday`, `header_bgcolor`, `footer_bgcolor`, `text_color_month`, `text_color_week_days`, `text_color_other_months`, `text_color_this_month_unevented`, `text_color_this_month_evented`, `bg_color_this_month_evented`, `bg_color_selected`, `arrow_color`, `text_color_selected`, `border_day`, `text_color_sun_days`, `weekdays_bg_color`, `su_bg_color`, `cell_border_color`, `year_font_size`, `year_font_color`, `year_tabs_bg_color`, `date_format`, `title_color`, `title_font_size`, `title_font`, `title_style`, `date_color`, `date_size`, `date_font`, `date_style`, `next_prev_event_bgcolor`, `next_prev_event_arrowcolor`, `show_event_bgcolor`, `popup_width`, `popup_height`, `show_repeat`) VALUES (1, 'Shiny Blue', '005478', '200', 'mo', '', '', '', '', '005478', 'E1E1E1', 'FFFFFF', '2F647D', '939699', '989898', 'FBFFFE', '005478', '005478', 'CED1D0', 'FFFFFF', '005478', '989898', 'D6D6D6', 'B5B5B5', 'D2D2D2', '13', 'ACACAC', 'ECECEC', 'w/d/m/y', 'FFFFFF', '', '', 'normal', '262626', '', '', 'normal', '00608A', '97A0A6', 'B4C5CC', '600', '500', '1'); -- -------------------------------------------------------- -- -- Table structure for table `wp_spider_video_player_player` -- CREATE TABLE IF NOT EXISTS `wp_spider_video_player_player` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(600) NOT NULL, `playlist` varchar(800) NOT NULL, `theme` int(11) NOT NULL, `priority` varchar(200) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `wp_spider_video_player_player` -- -- -------------------------------------------------------- -- -- Table structure for table `wp_spider_video_player_playlist` -- CREATE TABLE IF NOT EXISTS `wp_spider_video_player_playlist` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `thumb` varchar(200) DEFAULT NULL, `published` tinyint(1) unsigned DEFAULT NULL, `videos` varchar(1000) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `wp_spider_video_player_playlist` -- INSERT INTO `wp_spider_video_player_playlist` (`id`, `title`, `thumb`, `published`, `videos`) VALUES (1, 'Nature', 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/plugins/player/images_for_start/sunset4.jpg', 1, '1,2,'); -- -------------------------------------------------------- -- -- Table structure for table `wp_spider_video_player_tag` -- CREATE TABLE IF NOT EXISTS `wp_spider_video_player_tag` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(256) NOT NULL, `required` int(11) DEFAULT NULL, `published` int(11) unsigned DEFAULT NULL, `ordering` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; -- -- Dumping data for table `wp_spider_video_player_tag` -- INSERT INTO `wp_spider_video_player_tag` (`id`, `name`, `required`, `published`, `ordering`) VALUES (1, 'Year', 1, 1, 2), (2, 'Genre', 1, 1, 1); -- -------------------------------------------------------- -- -- Table structure for table `wp_spider_video_player_theme` -- CREATE TABLE IF NOT EXISTS `wp_spider_video_player_theme` ( `id` int(11) NOT NULL AUTO_INCREMENT, `default` int(2) NOT NULL, `title` varchar(256) NOT NULL, `appWidth` int(11) NOT NULL, `appHeight` int(11) NOT NULL, `playlistWidth` int(11) DEFAULT NULL, `startWithLib` tinyint(1) DEFAULT NULL, `autoPlay` tinyint(1) DEFAULT NULL, `autoNext` tinyint(1) DEFAULT NULL, `autoNextAlbum` tinyint(1) DEFAULT NULL, `defaultVol` double DEFAULT NULL, `defaultRepeat` varchar(20) NOT NULL, `defaultShuffle` varchar(20) NOT NULL, `autohideTime` int(11) DEFAULT NULL, `centerBtnAlpha` double DEFAULT NULL, `loadinAnimType` tinyint(4) DEFAULT NULL, `keepAspectRatio` tinyint(1) DEFAULT NULL, `clickOnVid` tinyint(1) DEFAULT NULL, `spaceOnVid` tinyint(1) DEFAULT NULL, `mouseWheel` tinyint(1) DEFAULT NULL, `ctrlsPos` tinyint(4) DEFAULT NULL, `ctrlsStack` text NOT NULL, `ctrlsOverVid` tinyint(1) DEFAULT NULL, `ctrlsSlideOut` tinyint(1) DEFAULT NULL, `watermarkUrl` varchar(255) DEFAULT NULL, `watermarkPos` tinyint(4) DEFAULT NULL, `watermarkSize` int(11) DEFAULT NULL, `watermarkSpacing` int(11) DEFAULT NULL, `watermarkAlpha` double DEFAULT NULL, `playlistPos` int(11) DEFAULT NULL, `playlistOverVid` tinyint(1) DEFAULT NULL, `playlistAutoHide` tinyint(1) DEFAULT NULL, `playlistTextSize` int(11) NOT NULL, `libCols` int(11) NOT NULL, `libRows` int(11) NOT NULL, `libListTextSize` int(11) NOT NULL, `libDetailsTextSize` int(11) NOT NULL, `appBgColor` varchar(16) NOT NULL, `vidBgColor` varchar(16) NOT NULL, `framesBgColor` varchar(16) NOT NULL, `ctrlsMainColor` varchar(16) NOT NULL, `ctrlsMainHoverColor` varchar(16) NOT NULL, `slideColor` varchar(16) NOT NULL, `itemBgHoverColor` varchar(16) NOT NULL, `itemBgSelectedColor` varchar(16) NOT NULL, `textColor` varchar(16) NOT NULL, `textHoverColor` varchar(16) NOT NULL, `textSelectedColor` varchar(16) NOT NULL, `framesBgAlpha` double NOT NULL, `ctrlsMainAlpha` double NOT NULL, `itemBgAlpha` double NOT NULL, `show_trackid` tinyint(1) DEFAULT NULL, `openPlaylistAtStart` tinyint(1) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ; -- -- Dumping data for table `wp_spider_video_player_theme` -- INSERT INTO `wp_spider_video_player_theme` (`id`, `default`, `title`, `appWidth`, `appHeight`, `playlistWidth`, `startWithLib`, `autoPlay`, `autoNext`, `autoNextAlbum`, `defaultVol`, `defaultRepeat`, `defaultShuffle`, `autohideTime`, `centerBtnAlpha`, `loadinAnimType`, `keepAspectRatio`, `clickOnVid`, `spaceOnVid`, `mouseWheel`, `ctrlsPos`, `ctrlsStack`, `ctrlsOverVid`, `ctrlsSlideOut`, `watermarkUrl`, `watermarkPos`, `watermarkSize`, `watermarkSpacing`, `watermarkAlpha`, `playlistPos`, `playlistOverVid`, `playlistAutoHide`, `playlistTextSize`, `libCols`, `libRows`, `libListTextSize`, `libDetailsTextSize`, `appBgColor`, `vidBgColor`, `framesBgColor`, `ctrlsMainColor`, `ctrlsMainHoverColor`, `slideColor`, `itemBgHoverColor`, `itemBgSelectedColor`, `textColor`, `textHoverColor`, `textSelectedColor`, `framesBgAlpha`, `ctrlsMainAlpha`, `itemBgAlpha`, `show_trackid`, `openPlaylistAtStart`) VALUES (1, 1, 'Theme 1', 650, 400, 100, 0, 1, 0, 0, 50, 'repeatOff', 'shuffleOff', 5, 50, 2, 1, 1, 1, 1, 2, 'playlist:1,playPrev:1,playPause:1,playNext:1,lib:1,stop:0,time:1,vol:1,+:1,hd:1,repeat:1,shuffle:1,play:0,pause:0,share:1,fullScreen:1', 1, 0, '', 1, 0, 0, 50, 1, 1, 1, 12, 3, 3, 16, 20, '001326', '001326', '3665A3', 'C0B8F2', '000000', '00A2FF', 'DAE858', '0C8A58', 'DEDEDE', '000000', 'FFFFFF', 50, 79, 50, 1, 0), (2, 0, 'Theme 2', 650, 400, 60, 0, 0, 0, 0, 50, 'repeatOff', 'shuffleOff', 5, 50, 2, 1, 1, 1, 1, 2, 'playPrev:1,playPause:1,playNext:1,stop:0,playlist:1,lib:1,play:0,vol:1,+:1,time:1,hd:1,repeat:1,shuffle:1,pause:0,share:1,fullScreen:1', 1, 0, '', 1, 0, 0, 50, 1, 0, 1, 6, 3, 3, 6, 8, 'FFBB00', '001326', 'FFA200', '030000', '595959', 'FF0000', 'E8E84D', 'FF5500', 'EBEBEB', '000000', 'FFFFFF', 82, 79, 0, 1, 0), (3, 0, 'Theme 3', 650, 400, 100, 0, 0, 0, 0, 50, 'repeatOff', 'shuffleOff', 5, 50, 2, 1, 1, 1, 1, 2, 'playPause:1,play:0,playlist:1,lib:1,playPrev:1,playNext:1,stop:0,vol:1,+:1,time:1,hd:1,repeat:1,shuffle:0,pause:0,share:1,fullScreen:1', 1, 0, '', 1, 0, 0, 50, 1, 1, 0, 12, 3, 3, 16, 20, 'FF0000', '070801', 'D10000', 'FFFFFF', '00A2FF', '00A2FF', 'F0FF61', '00A2FF', 'DEDEDE', '000000', 'FFFFFF', 65, 99, 0, 1, 0), (4, 0, 'Theme 4', 650, 400, 60, 0, 0, 0, 0, 50, 'repeatOff', 'shuffleOff', 5, 60, 2, 1, 1, 1, 1, 2, 'playPause:1,playlist:1,lib:1,vol:1,playPrev:0,playNext:0,stop:0,+:1,hd:1,repeat:1,shuffle:0,play:0,pause:0,share:1,time:1,fullScreen:1', 1, 0, '', 1, 0, 0, 50, 1, 1, 1, 6, 4, 4, 6, 8, '239DC2', '000000', '2E6DFF', 'F5DA51', 'FFA64D', 'BFBA73', 'FF8800', 'FFF700', 'FFFFFF', 'FFFFFF', '000000', 71, 82, 0, 1, 0), (5, 0, 'Theme 5', 650, 400, 100, 0, 0, 0, 0, 50, 'repeatOff', 'shuffleOff', 5, 50, 2, 1, 1, 1, 1, 2, 'playPrev:0,playPause:1,playlist:1,lib:1,playNext:0,stop:0,time:1,vol:1,+:1,hd:1,repeat:1,shuffle:1,play:0,pause:0,share:1,fullScreen:1', 1, 0, '', 1, 0, 0, 50, 1, 1, 1, 14, 4, 4, 14, 16, '878787', '001326', 'FFFFFF', '000000', '525252', '14B1FF', 'CCCCCC', '14B1FF', '030303', '000000', 'FFFFFF', 100, 75, 0, 1, 0), (6, 0, 'Theme 6', 650, 400, 100, 0, 0, 0, 0, 50, 'repeatOff', 'shuffleOff', 5, 50, 2, 1, 1, 1, 1, 2, 'playPause:1,playlist:1,lib:1,vol:1,playPrev:0,playNext:0,stop:0,+:1,repeat:0,shuffle:0,play:0,pause:0,hd:1,share:1,time:1,fullScreen:1', 1, 0, '', 1, 0, 0, 50, 1, 1, 1, 14, 3, 3, 16, 16, '080808', '000000', '1C1C1C', 'FFFFFF', '40C6FF', '00A2FF', 'E8E8E8', '40C6FF', 'DEDEDE', '2E2E2E', 'FFFFFF', 61, 79, 0, 1, 0), (7, 0, 'Theme 7', 650, 400, 100, 0, 0, 0, 0, 50, 'repeatOff', 'shuffleOff', 5, 50, 2, 1, 1, 1, 1, 2, 'playPause:1,playlist:1,lib:1,playPrev:0,playNext:0,stop:0,vol:1,+:1,hd:0,repeat:0,shuffle:0,play:0,pause:0,share:1,fullScreen:1,time:1', 1, 0, '', 1, 0, 0, 50, 1, 1, 1, 12, 3, 3, 16, 16, '212121', '000000', '222424', 'FFCC00', 'FFFFFF', 'ABABAB', 'B8B8B8', 'EEFF00', 'DEDEDE', '000000', '000000', 90, 78, 0, 1, 0); -- -------------------------------------------------------- -- -- Table structure for table `wp_spider_video_player_video` -- CREATE TABLE IF NOT EXISTS `wp_spider_video_player_video` ( `id` int(11) NOT NULL AUTO_INCREMENT, `url` varchar(200) NOT NULL, `urlHtml5` varchar(200) DEFAULT NULL, `urlHD` varchar(200) DEFAULT NULL, `urlHDHtml5` varchar(200) DEFAULT NULL, `thumb` varchar(200) DEFAULT NULL, `title` varchar(200) NOT NULL, `published` int(11) unsigned DEFAULT NULL, `type` varchar(20) NOT NULL, `fmsUrl` varchar(256) DEFAULT NULL, `params` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ; -- -- Dumping data for table `wp_spider_video_player_video` -- INSERT INTO `wp_spider_video_player_video` (`id`, `url`, `urlHtml5`, `urlHD`, `urlHDHtml5`, `thumb`, `title`, `published`, `type`, `fmsUrl`, `params`) VALUES (1, 'http://www.youtube.com/watch?v=eaE8N6alY0Y', 'http://www.youtube.com/watch?v=eaE8N6alY0Y', '', '', 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/plugins/player/images_for_start/red-sunset-casey1.jpg', 'Sunset 1', 1, 'youtube', '', '2#===#Nature#***#1#===#2012#***#'), (2, 'http://www.youtube.com/watch?v=y3eFdvDdXx0', 'http://www.youtube.com/watch?v=y3eFdvDdXx0', '', '', 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/plugins/player/images_for_start/sunset10.jpg', 'Sunset 2', 1, 'youtube', '', '2#===#Nature#***#1#===#2012#***#'), (3, 'https://www.youtube.com/watch?v=M7mDfYGgRfc', '', '', '', 'http://www.thespacetimecontinuum.com/wordpress_4/wp-content/uploads/2014/12/WhereHaveYouGoneThumbnail1.png', 'Where Have You Gone America', 1, 'youtube', '', '2#===#Blues#***#1#===#2012#***#'); -- -------------------------------------------------------- -- -- Table structure for table `wp_terms` -- CREATE TABLE IF NOT EXISTS `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) NOT NULL DEFAULT '', `slug` varchar(200) NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`), KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ; -- -- Dumping data for table `wp_terms` -- INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1, 'NT-Media', 'nt-media', 0), (2, 'Main Menu', 'main-menu', 0), (3, 'music', 'music', 0), (4, 'documentation', 'documentation-1', 0), (5, 'collaboration', 'collaboration', 0), (6, 'none', 'none', 0), (7, 'uncategorized', 'uncategorized', 0), (9, 'sensors', 'sensors', 0), (10, 'sensor types', 'sensor-types', 0); -- -------------------------------------------------------- -- -- Table structure for table `wp_term_relationships` -- CREATE TABLE IF NOT EXISTS `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `wp_term_relationships` -- INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1, 1, 0), (41, 2, 0), (42, 2, 0), (43, 2, 0), (44, 2, 0), (45, 2, 0), (46, 2, 0), (47, 1, 0), (53, 1, 0), (56, 1, 0), (59, 6, 0), (61, 6, 0), (67, 2, 0), (76, 1, 0), (78, 1, 0), (79, 4, 0), (117, 7, 0), (117, 9, 0), (117, 10, 0); -- -------------------------------------------------------- -- -- Table structure for table `wp_term_taxonomy` -- CREATE TABLE IF NOT EXISTS `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) NOT NULL DEFAULT '', `description` longtext NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ; -- -- Dumping data for table `wp_term_taxonomy` -- INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1, 1, 'category', '', 0, 2), (2, 2, 'nav_menu', '', 0, 7), (3, 3, 'category', '', 1, 0), (4, 4, 'category', '', 0, 1), (5, 5, 'category', '', 4, 0), (6, 6, 'category', '', 0, 2), (7, 7, 'category', '', 0, 1), (9, 9, 'post_tag', '', 0, 1), (10, 10, 'post_tag', '', 0, 1); -- -------------------------------------------------------- -- -- Table structure for table `wp_usermeta` -- CREATE TABLE IF NOT EXISTS `wp_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=30 ; -- -- Dumping data for table `wp_usermeta` -- INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (1, 1, 'nickname', 'rsie'), (2, 1, 'first_name', ''), (3, 1, 'last_name', ''), (4, 1, 'description', ''), (5, 1, 'rich_editing', 'true'), (6, 1, 'comment_shortcuts', 'false'), (7, 1, 'admin_color', 'sunrise'), (8, 1, 'use_ssl', '0'), (9, 1, 'show_admin_bar_front', 'true'), (10, 1, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'), (11, 1, 'wp_user_level', '10'), (12, 1, 'dismissed_wp_pointers', 'wp360_locks,wp390_widgets,wp410_dfw'), (13, 1, 'show_welcome_panel', '1'), (15, 1, 'wp_dashboard_quick_press_last_post_id', '81'), (16, 1, 'managenav-menuscolumnshidden', 'a:4:{i:0;s:11:"link-target";i:1;s:11:"css-classes";i:2;s:3:"xfn";i:3;s:11:"description";}'), (17, 1, 'metaboxhidden_nav-menus', 'a:5:{i:0;s:8:"add-page";i:1;s:8:"add-post";i:2;s:16:"add-custom-links";i:3;s:12:"add-category";i:4;s:12:"add-post_tag";}'), (18, 1, 'nav_menu_recently_edited', '2'), (19, 1, 'wp_user-settings', 'libraryContent=browse&editor=tinymce&imgsize=full&mfold=o&post_dfw=off&posts_list_mode=excerpt&hidetb=1&wplink=1'), (20, 1, 'wp_user-settings-time', '1421341503'), (21, 1, 'closedpostboxes_post', 'a:0:{}'), (22, 1, 'metaboxhidden_post', 'a:5:{i:0;s:12:"postimagediv";i:1;s:11:"postexcerpt";i:2;s:13:"trackbacksdiv";i:3;s:10:"postcustom";i:4;s:7:"slugdiv";}'), (23, 1, 'closedpostboxes_page', 'a:0:{}'), (24, 1, 'metaboxhidden_page', 'a:7:{i:0;s:13:"pageparentdiv";i:1;s:12:"postimagediv";i:2;s:10:"postcustom";i:3;s:16:"commentstatusdiv";i:4;s:11:"commentsdiv";i:5;s:7:"slugdiv";i:6;s:9:"authordiv";}'), (25, 1, 'manageedit-pagecolumnshidden', 'a:4:{i:0;s:8:"comments";i:1;s:0:"";i:2;s:8:"comments";i:3;s:0:"";}'), (26, 1, 'closedpostboxes_nav-menus', 'a:0:{}'), (27, 1, 'session_tokens', 'a:2:{s:64:"<KEY>";a:4:{s:10:"expiration";i:1421356155;s:2:"ip";s:14:"172.16.17.32";s:2:"ua";s:108:"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36";s:5:"login";i:1421183355;}s:64:"f67e8cc97fdd098ee642abe15e7286200bc32dc06c664217ac508d890aa5b1bb";a:4:{s:10:"expiration";i:1421423479;s:2:"ip";s:14:"172.16.17.32";s:2:"ua";s:108:"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36";s:5:"login";i:1421250679;}}'), (28, 1, 'meta-box-order_page', 'a:3:{s:4:"side";s:36:"submitdiv,pageparentdiv,postimagediv";s:6:"normal";s:70:"revisionsdiv,postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv";s:8:"advanced";s:0:"";}'), (29, 1, 'screen_layout_page', '2'); -- -------------------------------------------------------- -- -- Table structure for table `wp_users` -- CREATE TABLE IF NOT EXISTS `wp_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) NOT NULL DEFAULT '', `user_pass` varchar(64) NOT NULL DEFAULT '', `user_nicename` varchar(50) NOT NULL DEFAULT '', `user_email` varchar(100) NOT NULL DEFAULT '', `user_url` varchar(100) NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(60) NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT '0', `display_name` varchar(250) NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `wp_users` -- INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES (1, 'rsie', '$P$B5ALjDn.HOzhXOyyp9Cijk8f.iud0N.', 'rsie', '<EMAIL>', '', '2014-12-23 23:14:55', '', 0, 'rsie');
drop table if exists [dbo].[Test678] create table [dbo].[Test678] (id int)
<filename>World/src/main/resources/db/migration/V1_0_0__baseline.sql CREATE TABLE World_Type ( id INT PRIMARY KEY, name VARCHAR(64) NOT NULL ); CREATE TABLE World ( id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(64) NOT NULL, namespace TEXT NOT NULL, type INT NOT NULL, endpoint VARCHAR(65532) NOT NULL, FOREIGN KEY (type) REFERENCES World_Type(id) ); CREATE TABLE Service_Type ( id INT PRIMARY KEY, name VARCHAR (64) NOT NULL ); CREATE TABLE Service ( id INT AUTO_INCREMENT PRIMARY KEY, service_type INT NOT NULL, world_id INT NOT NULL, endpoint VARCHAR(65532) NOT NULL, FOREIGN KEY (service_type) REFERENCES Service_Type(id), FOREIGN KEY (world_id) REFERENCES World(id) ); -- Master Data INSERT INTO World_Type (id, name) VALUES (1, 'Self'), (2, 'From'), (20, 'To'), (22, 'Mutual'), (30, 'Known'), (99, 'Unknown'); INSERT INTO Service_Type (id, name) VALUES (100, 'World'), (200, 'BookOfAdventure'), (300, 'Dungeon'), (400, 'Objects'), (500, 'PlayerOperations'), (99999, 'Others');
-- COMP3311 Prac 03 Exercise -- Schema for simple company database create table Employees ( tfn char(11), givenName varchar(30), familyName varchar(30), hoursPweek float ); create table Departments ( id char(3), name varchar(100), manager char(11) ); create table DeptMissions ( department char(3), keyword varchar(20) ); create table WorksFor ( employee char(11), department char(3), percentage float );
<reponame>amal-thundiyil/fundrize-dapp<filename>moni-moni/db/create.sql CREATE DATABASE postgres; -- database name should be same as name in .env
create server multicore_silk foreign data wrapper multicorn options ( wrapper 'silkpg.SilkDataWrapper', siteconf '/home/john/Development/SiLK-LBNL-05/silk.conf', rootdir '/home/john/Development/SiLK-LBNL-05'); CREATE FOREIGN TABLE silk ( application int, bytes bigint, classname varchar, classtype_id int, dip inet, dport int, duration interval, etime timestamp, initial_tcpflags varchar, icmpcode int, icmptype int, input int, nhip inet, packets bigint, protocol int, sensor varchar, sensor_id int, session_tcpflags varchar, sip inet, sport int, stime timestamp, tcpflags varchar, timeout_killed boolean, timeout_started boolean, typename varchar, uniform_packets boolean ) server multicorn_silk;
<reponame>Foca87/GitC Select Nome from Marcas where UsuInc = 1; Select Nome from Marcas where UsuInc = 2; GO select count(id) as 'Quantidade de Marcas registradas Decrescente' from Marcas where UsuInc = 1 order by [Quantidade de Marcas registradas Decrescente] desc; select count(id) as 'Quantidade de Marcas registradas Crescente' from Marcas where UsuInc = 2 order by [Quantidade de Marcas registradas Crescente] asc; GO select count(id) as 'Quantidade de Marcas registradas pelo Felipe e Giomar' from Marcas where (UsuInc = 1 or UsuInc = 2); GO Select Modelo from Carros where UsuInc = 1; Select Modelo from Carros where UsuInc = 2; GO select count(id) as 'Quantidade de Carros registrados Decrescente' from Carros where UsuInc = 1 order by [Quantidade de Carros registrados Decrescente] desc; select count(id) as 'Quantidade de Carros registrados Crescente' from Carros where UsuInc = 2 order by [Quantidade de Carros registrados Crescente] asc; GO select count(id) as 'Quantidade de Carros registrados pelo Felipe e Giomar' from Carros where (UsuInc = 1 or UsuInc = 2); GO select ca.Modelo from Carros ca inner join Marcas ma on ca.Marca = ma.Id where ma.UsuInc = 1; select ca.Modelo from Carros ca inner join Marcas ma on ca.Marca = ma.Id where ma.UsuInc = 2; GO select count(ca.Modelo) as 'Quantidade' from Carros ca inner join Marcas ma on ca.Marca = ma.Id where ma.UsuInc = 1 order by Quantidade desc; select count(ca.Modelo) as 'Quantidade' from Carros ca inner join Marcas ma on ca.Marca = ma.Id where ma.UsuInc = 2 order by Quantidade asc; GO select sum(Valor * Quantidade) as 'Valor Total de Vendas do ano' from Vendas where year(DatInc) = 2019; select sum(Quantidade) as 'Quantidade Total de Vendas do ano' from Vendas where year(DatInc) = 2019; GO select sum(Valor * Quantidade) as 'Valor Total de Vendas por ano' from Vendas group by year(DatInc) order by [Valor Total de Vendas por ano] desc; select sum(Quantidade) as 'Quantidade Total de Vendas por ano' from Vendas group by year(DatInc) order by [Quantidade Total de Vendas por ano] desc; GO select year(DatInc) as 'Ano', month(DatInc) as 'Mês', sum(Quantidade) as 'Quantidade de Vendas' from Vendas group by month(DatInc), year(DatInc) order by [Quantidade de Vendas] desc; select year(DatInc) as 'Ano', month(DatInc) as 'Mês', sum(Valor * Quantidade) as 'Valor Total de Vendas' from Vendas group by month(DatInc), year(DatInc) order by [Valor Total de Vendas] desc; GO select sum(Valor * Quantidade) as 'Valor Total de Vendas' from Vendas where UsuInc = 1 order by [Valor Total de Vendas] desc; select sum(Valor * Quantidade) as 'Valor Total de Vendas' from Vendas where UsuInc = 2 order by [Valor Total de Vendas] desc; GO select sum(Quantidade) as 'Quantidade Total de Vendas' from Vendas where UsuInc = 1 order by [Quantidade Total de Vendas] desc; select sum(Quantidade) as 'Quantidade Total de Vendas' from Vendas where UsuInc = 2 order by [Quantidade Total de Vendas] desc; GO select sum(Quantidade) as 'Quantidade Total de Vendas' from Vendas where (UsuInc = 1 or UsuInc = 2) order by [Quantidade Total de Vendas] desc; select sum(Valor * Quantidade) as 'Valor Total de Vendas' from Vendas where (UsuInc = 1 or UsuInc = 2) order by [Valor Total de Vendas] desc; GO select ma.Nome, sum(ve.Quantidade) as 'Vendas da Marca' from Vendas ve inner join Carros ca on ve.Carro = ca.Id inner join Marcas ma on ca.Marca = ma.Id group by ma.Nome order by [Vendas da Marca] desc; select ma.Nome, sum(ve.Quantidade * ve.Valor) as 'Valor Total de Vendas da Marca' from Vendas ve inner join Carros ca on ve.Carro = ca.Id inner join Marcas ma on ca.Marca = ma.Id group by ma.Nome order by [Valor Total de Vendas da Marca] desc; GO select ca.Modelo, sum(ve.Quantidade) as 'Quantidade Vendida' from Carros ca inner join Vendas ve on ca.Id = ve.Carro group by ca.Modelo order by [Quantidade Vendida] desc; select ca.Modelo, sum(ve.Quantidade * ve.Valor) as 'Valor Total de Vendas por carro' from Carros ca inner join Vendas ve on ca.Id = ve.Carro group by ca.Modelo order by [Valor Total de Vendas por carro] desc;
<reponame>vipsum/cs50<filename>pset7/movies/4.sql<gh_stars>0 SELECT COUNT (movie_id) FROM ratings WHERE rating=10.0;
SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- ============================================= -- Author: <NAME> -- Create date: 12/10/2018 -- Description: Creates a new Reason entity -- ============================================= CREATE OR ALTER PROCEDURE System_Settings_Reason_Create @CcnUsername NVARCHAR(256) ,@RsnCode NVARCHAR(32) ,@RsnValueInternal NVARCHAR(256) ,@RsnValueExternal NVARCHAR(256) ,@LngIsoCode char(2) AS BEGIN SET NOCOUNT ON; DECLARE @DtgID INT = NULL DECLARE @lngID INT = NULL DECLARE @errorMessage VARCHAR(256) SET @lngID = ( SELECT LNG_ID FROM TS_LANGUAGE WHERE LNG_ISO_CODE = @LngIsoCode AND LNG_DELETE_FLAG = 0 ) IF @lngId IS NULL BEGIN SET @errorMessage = 'SP: ' + OBJECT_NAME(@@PROCID) + ' - language not found: ' + cast(isnull(@LngIsoCode, 0) AS VARCHAR) RAISERROR ( @errorMessage ,16 ,1 ); RETURN 0 END -- Do the create Audit and get the new DtgID from the stored procedure EXEC @DtgID = Security_Auditing_Create @CcnUsername -- Check for problems with the audit stored procedure IF @DtgID = 0 OR @DtgID IS NULL BEGIN RAISERROR ( 'Error in calling Security_Auditing_Create' ,16 ,1 ) RETURN 0 END INSERT INTO TS_REASON ( RSN_CODE ,RSN_VALUE_INTERNAL ,RSN_VALUE_EXTERNAL ,RSN_LNG_ID ,RSN_DTG_ID ,RSN_DELETE_FLAG ) VALUES ( @RsnCode ,@RsnValueInternal ,@RsnValueExternal ,@lngID ,@DtgID ,0 ) RETURN @@IDENTITY END GO
ALTER TABLE `playercreateinfo_skill` MODIFY COLUMN `SkillMin` smallint(5) NOT NULL default '0', MODIFY COLUMN `SkillMax` smallint(5) NOT NULL default '0'; UPDATE `playercreateinfo_skill` SET `SkillMin` = '-1' WHERE `SkillMin` = 300; UPDATE `playercreateinfo_skill` SET `SkillMax` = '-1' WHERE `SkillMax` = 300;
CREATE TABLE b_meeting ( ID NUMBER(18) NOT NULL, TIMESTAMP_X DATE DEFAULT SYSDATE NOT NULL, EVENT_ID NUMBER(18) NULL, DATE_START DATE NULL, DATE_FINISH DATE NULL, CURRENT_STATE CHAR(1 CHAR) DEFAULT 'P' NULL, DURATION NUMBER(5) DEFAULT 0 NULL, TITLE VARCHAR(255 CHAR) NOT NULL, GROUP_ID NUMBER(18) NULL, PARENT_ID NUMBER(18) NULL, DESCRIPTION CLOB NULL, PLACE VARCHAR(255 CHAR) NULL, PROTOCOL_TEXT CLOB NULL, CONSTRAINT PK_B_MEETING PRIMARY KEY (ID) ) / CREATE INDEX ix_b_meeting_1 ON b_meeting(GROUP_ID) / CREATE SEQUENCE sq_b_meeting / CREATE OR REPLACE TRIGGER b_meeting_insert BEFORE INSERT ON b_meeting FOR EACH ROW BEGIN IF :NEW.ID IS NULL THEN SELECT sq_b_meeting.NEXTVAL INTO :NEW.ID FROM dual; END IF; END; / CREATE OR REPLACE TRIGGER b_meeting_update BEFORE UPDATE ON b_meeting REFERENCING OLD AS OLD NEW AS NEW FOR EACH ROW BEGIN IF :NEW.TIMESTAMP_X IS NOT NULL THEN :NEW.TIMESTAMP_X := SYSDATE; ELSE :NEW.TIMESTAMP_X := :OLD.TIMESTAMP_X; END IF; END; / CREATE TABLE b_meeting_files ( MEETING_ID NUMBER(18) NOT NULL, FILE_ID NUMBER(18) NOT NULL, FILE_SRC NUMBER(18) NULL, CONSTRAINT PK_B_MEETING_FILE PRIMARY KEY (MEETING_ID, FILE_ID), CONSTRAINT fk_b_meeting_file_1 FOREIGN KEY (MEETING_ID) REFERENCES b_meeting(ID) ) / CREATE TABLE b_meeting_users ( MEETING_ID NUMBER(18) NOT NULL, USER_ID NUMBER(18) NOT NULL, USER_ROLE CHAR(1 CHAR) DEFAULT 'M' NULL, CONSTRAINT PK_B_MEETING_USERS PRIMARY KEY (MEETING_ID, USER_ID), CONSTRAINT fk_b_meeting_users_1 FOREIGN KEY (MEETING_ID) REFERENCES b_meeting(ID), CONSTRAINT fk_b_meeting_users_2 FOREIGN KEY (USER_ID) REFERENCES b_user(ID) ) / CREATE TABLE b_meeting_item ( ID NUMBER(18) NOT NULL, TITLE VARCHAR(255 CHAR) NULL, DESCRIPTION CLOB NULL, CONSTRAINT pk_b_meeting_item PRIMARY KEY (ID) ) / CREATE SEQUENCE sq_b_meeting_item / CREATE OR REPLACE TRIGGER b_meeting_item_insert BEFORE INSERT ON b_meeting_item FOR EACH ROW BEGIN IF :NEW.ID IS NULL THEN SELECT sq_b_meeting_item.NEXTVAL INTO :NEW.ID FROM dual; END IF; END; / CREATE TABLE b_meeting_item_files ( ITEM_ID NUMBER(18) NOT NULL, FILE_ID NUMBER(18) NOT NULL, FILE_SRC NUMBER(18) NULL, CONSTRAINT PK_B_MEETING_ITEM_FILES PRIMARY KEY (ITEM_ID, FILE_ID), CONSTRAINT fk_b_meeting_item_files_1 FOREIGN KEY (ITEM_ID) REFERENCES b_meeting_item(ID) ) / CREATE INDEX ix_b_meeting_item_files_1 ON b_meeting_item_files(FILE_SRC) / CREATE TABLE b_meeting_instance ( ID NUMBER(18) NOT NULL, ITEM_ID NUMBER(18) NOT NULL, MEETING_ID NUMBER(18) NOT NULL, INSTANCE_PARENT_ID NUMBER(18) NULL, INSTANCE_TYPE CHAR(1 CHAR) DEFAULT 'A' NULL, ORIGINAL_TYPE CHAR(1 CHAR) DEFAULT 'A' NULL, SORT NUMBER(18) DEFAULT 500 NULL, DURATION NUMBER(5) NULL, DEADLINE DATE NULL, TASK_ID NUMBER(18) NULL, CONSTRAINT pk_b_meeting_instance PRIMARY KEY (ID), CONSTRAINT fk_b_meeting_instance_1 FOREIGN KEY (ITEM_ID) REFERENCES b_meeting_item(ID), CONSTRAINT fk_b_meeting_instance_2 FOREIGN KEY (MEETING_ID) REFERENCES b_meeting(ID) ) / CREATE INDEX ix_b_meeting_instance_1 ON b_meeting_instance (MEETING_ID) / CREATE INDEX ix_b_meeting_instance_2 ON b_meeting_instance (ITEM_ID) / CREATE SEQUENCE sq_b_meeting_instance / CREATE OR REPLACE TRIGGER b_meeting_instance_insert BEFORE INSERT ON b_meeting_instance FOR EACH ROW BEGIN IF :NEW.ID IS NULL THEN SELECT sq_b_meeting_instance.NEXTVAL INTO :NEW.ID FROM dual; END IF; END; / CREATE TABLE b_meeting_item_tasks ( ITEM_ID NUMBER(18) NOT NULL, INSTANCE_ID NUMBER(18) NULL, TASK_ID NUMBER(18) NOT NULL, CONSTRAINT PK_B_MEETING_ITEM_TASKS PRIMARY KEY (ITEM_ID, TASK_ID), CONSTRAINT fk_b_meeting_item_tasks_1 FOREIGN KEY (ITEM_ID) REFERENCES b_meeting_item(ID), CONSTRAINT fk_b_meeting_item_tasks_2 FOREIGN KEY (INSTANCE_ID) REFERENCES b_meeting_instance(ID) ) / CREATE INDEX ix_b_meeting_item_tasks_1 ON b_meeting_item_tasks(INSTANCE_ID) / CREATE TABLE b_meeting_instance_users ( USER_ID NUMBER(18) NOT NULL, INSTANCE_ID NUMBER(18) NOT NULL, ITEM_ID NUMBER(18) NOT NULL, MEETING_ID NUMBER(18) NOT NULL, CONSTRAINT pk_b_meeting_instance_users PRIMARY KEY (INSTANCE_ID, USER_ID), CONSTRAINT fk_b_meeting_instance_users_1 FOREIGN KEY (USER_ID) REFERENCES b_user(ID), CONSTRAINT fk_b_meeting_instance_users_2 FOREIGN KEY (INSTANCE_ID) REFERENCES b_meeting_instance(ID), CONSTRAINT fk_b_meeting_instance_users_3 FOREIGN KEY (ITEM_ID) REFERENCES b_meeting_item(ID), CONSTRAINT fk_b_meeting_instance_users_4 FOREIGN KEY (MEETING_ID) REFERENCES b_meeting(ID) ) / CREATE TABLE b_meeting_reports ( ID NUMBER(18) NOT NULL, USER_ID NUMBER(18) NOT NULL, INSTANCE_ID NUMBER(18) NOT NULL, ITEM_ID NUMBER(18) NOT NULL, MEETING_ID NUMBER(18) NOT NULL, REPORT CLOB, CONSTRAINT pk_b_meeting_reports PRIMARY KEY (ID), CONSTRAINT fk_b_meeting_reports_1 FOREIGN KEY (USER_ID) REFERENCES b_user(ID), CONSTRAINT fk_b_meeting_reports_2 FOREIGN KEY (INSTANCE_ID) REFERENCES b_meeting_instance(ID), CONSTRAINT fk_b_meeting_reports_3 FOREIGN KEY (ITEM_ID) REFERENCES b_meeting_item(ID), CONSTRAINT fk_b_meeting_reports_4 FOREIGN KEY (MEETING_ID) REFERENCES b_meeting(ID) ) / CREATE UNIQUE INDEX ix_b_meeting_reports_1 ON b_meeting_reports (INSTANCE_ID, USER_ID) / CREATE SEQUENCE sq_b_meeting_reports / CREATE OR REPLACE TRIGGER b_meeting_reports_insert BEFORE INSERT ON b_meeting_reports FOR EACH ROW BEGIN IF :NEW.ID IS NULL THEN SELECT sq_b_meeting_reports.NEXTVAL INTO :NEW.ID FROM dual; END IF; END; / CREATE TABLE b_meeting_reports_files ( FILE_ID NUMBER(18) NOT NULL, FILE_SRC NUMBER(18) NULL, REPORT_ID NUMBER(18) NOT NULL, INSTANCE_ID NUMBER(18) NOT NULL, ITEM_ID NUMBER(18) NOT NULL, MEETING_ID NUMBER(18) NOT NULL, CONSTRAINT pk_b_meeting_reports_files PRIMARY KEY (REPORT_ID, FILE_ID), CONSTRAINT fk_b_meeting_reports_files_1 FOREIGN KEY (FILE_ID) REFERENCES b_file(ID), CONSTRAINT fk_b_meeting_reports_files_2 FOREIGN KEY (REPORT_ID) REFERENCES b_meeting_reports(ID), CONSTRAINT fk_b_meeting_reports_files_3 FOREIGN KEY (INSTANCE_ID) REFERENCES b_meeting_instance(ID), CONSTRAINT fk_b_meeting_reports_files_4 FOREIGN KEY (ITEM_ID) REFERENCES b_meeting_item(ID), CONSTRAINT fk_b_meeting_reports_files_5 FOREIGN KEY (MEETING_ID) REFERENCES b_meeting(ID) ) /
INVALID TEST -- Liquibase doesn't support view rename for Firebird -- https://docs.liquibase.com/change-types/rename-view.html
<reponame>ruimo/store2 # --- # --- !Ups CREATE TABLE user_metadata ( user_metadata_id bigint NOT NULL, store_user_id bigint NOT NULL, photo_url text, first_name_kana character varying(64), middle_name_kana character varying(64), last_name_kana character varying(64), tel_no0 character varying(64), tel_no1 character varying(64), tel_no2 character varying(64), joined_date timestamp, birth_month_day integer, -- mmdd profile_comment text ); ALTER TABLE user_metadata ADD CONSTRAINT user_metadata_store_user_id_fkey FOREIGN KEY (store_user_id) REFERENCES store_user(store_user_id) ON DELETE CASCADE; CREATE INDEX user_metadata_joined_date ON user_metadata (joined_date); CREATE INDEX user_metadata_birth_month_day ON user_metadata (birth_month_day); CREATE SEQUENCE user_metadata_seq START WITH 1000 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; # --- !Downs drop table user_metadata; drop sequence user_metadata_seq;
-- -- Copyright 2010-2016 the original author or authors. -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- -- // init pms_operator data -- Migration SQL that makes the change goes here. -- -- 操作员的初始化数据 -- admin 超级管理员 INSERT INTO `pms_operator` (id, version, status, creator, create_time, editor, edit_time, remark, login_name, login_pwd, real_name, mobile_no, type, salt) VALUES (1, 0, 'ACTIVE', 'roncoo', '2016-06-03 11:07:43', 'admin', '2016-06-03 11:07:43', '超级管理员', 'admin', 'd3c59d25033dbf980d29554025c23a75', '超级管理员', '18620936193', 'ADMIN', '8d78869f470951332959580424d4bf4f'); -- guest 游客 INSERT INTO `pms_operator` (id, version, status, creator, create_time, editor, edit_time, remark, login_name, login_pwd, real_name, mobile_no, type, salt) VALUES (2, 0, 'ACTIVE', 'roncoo', '2016-06-03 11:07:43', 'guest', '2016-06-03 11:07:43', '游客', 'guest', '3f0dbf580ee39ec03b632cb33935a363', '游客', '18926215592', 'USER', '183d9f2f0f2ce760e98427a5603d1c73'); -- //@UNDO -- SQL to undo the change goes here. DELETE FROM `pms_operator` WHERE id IN (1, 2);
drop database workflow; create database workflow;
-- -- DATA LOAD -- DEFAULT SYSTEM USER -- User Id and passwords are case sensitive -- Username : Admin -- Password : password insert into users (username, password, enabled, pwdchangeneeded, firstname, lastname, creditcardnumber) values ('Admin','<PASSWORD>',1,0,'System','Administrator', '<PASSWORD>5678<PASSWORD>'), ('Frodo','<PASSWORD>',1,0,'Frodo','Baggins', '1234567890123456'), ('Jane','<PASSWORD>',1,0,'Jane','Doe', '1234567890123456'), ('Mark','<PASSWORD>',1,0,'Mark','Twain', '1234567890123456'); -- insert into roles (role) values ('ROLE_USER'), ('ROLE_SUPERVISOR'), ('ROLE_SITE_ADMIN'); -- insert into authorities (username, authority, user_id) values ('Admin', 'ROLE_SUPERVISOR', 1), ('Admin', 'ROLE_SITE_ADMIN', 1), ('Frodo', 'ROLE_USER', 2), ('Frodo', 'ROLE_SUPERVISOR', 2), ('Jane', 'ROLE_USER', 3), ('Mark', 'ROLE_USER', 4); -- insert into et_groups (groupname, groupdescription, active) values ('Weekend Outings', 'Outings among friends', 1), ('Official Lunches', 'Official departmental lunches', 1); -- insert into et_group_user (group_id, user_id) values (1, 2), (1, 3), (2, 2), (2, 3), (2, 4); --
<gh_stars>1-10 -- Name: ndarray_type; Type: TABLE; Schema: public; Owner: cube_admin; Tablespace: ALTER TABLE ndarray_type RENAME TO storage_type; ALTER TABLE storage_type RENAME COLUMN ndarray_type_id TO storage_type_id; ALTER TABLE storage_type RENAME COLUMN ndarray_type_name TO storage_type_name; ALTER TABLE storage_type RENAME COLUMN ndarray_type_tag TO storage_type_tag; COMMENT ON TABLE storage_type IS 'Configuration: storage parameter lookup table. Used TO manage different storage_types'; -- Name: ndarray_type_dimension; Type: TABLE; Schema: public; Owner: cube_admin; Tablespace: ALTER TABLE ndarray_type_dimension RENAME TO storage_type_dimension; ALTER TABLE storage_type_dimension RENAME COLUMN ndarray_type_id TO storage_type_id; ALTER TABLE storage_type_dimension RENAME COLUMN creation_order TO dimension_order; COMMENT ON TABLE storage_type_dimension IS 'Configuration: Association between storage type and dimensions. Used TO define dimensionality of storage type'; -- Name: ndarray_type_dimension_property; Type: TABLE; Schema: public; Owner: cube_admin; Tablespace: ALTER TABLE ndarray_type_dimension_property RENAME TO storage_type_dimension_property; ALTER TABLE storage_type_dimension_property RENAME COLUMN ndarray_type_id TO storage_type_id; COMMENT ON TABLE storage_type_dimension_property IS 'Configuration: Metadata properties of dimension in storage type'; -- Name: ndarray; Type: TABLE; Schema: public; Owner: cube_admin; Tablespace: ALTER TABLE ndarray RENAME TO storage; ALTER TABLE storage RENAME COLUMN ndarray_type_id TO storage_type_id; ALTER TABLE storage RENAME COLUMN ndarray_id TO storage_id; ALTER TABLE storage RENAME COLUMN ndarray_version TO storage_version; ALTER TABLE storage RENAME COLUMN ndarray_location TO storage_location; ALTER TABLE storage RENAME COLUMN ndarray_bytes TO storage_bytes; COMMENT ON TABLE storage IS 'Data: n-dimensional data structure instances'; -- Name: ndarray_dataset; Type: TABLE; Schema: public; Owner: cube_admin; Tablespace: ALTER TABLE ndarray_dataset RENAME TO storage_dataset; ALTER TABLE storage_dataset RENAME COLUMN ndarray_type_id TO storage_type_id; ALTER TABLE storage_dataset RENAME COLUMN ndarray_id TO storage_id; ALTER TABLE storage_dataset RENAME COLUMN ndarray_version TO storage_version; COMMENT ON TABLE storage_dataset IS 'Data: Association between storage and dataset instances (many-many)'; -- Name: ndarray_dimension; Type: TABLE; Schema: public; Owner: cube_admin; Tablespace: ALTER TABLE ndarray_dimension RENAME TO storage_dimension; ALTER TABLE storage_dimension RENAME COLUMN ndarray_type_id TO storage_type_id; ALTER TABLE storage_dimension RENAME COLUMN ndarray_id TO storage_id; ALTER TABLE storage_dimension RENAME COLUMN ndarray_version TO storage_version; ALTER TABLE storage_dimension RENAME COLUMN ndarray_dimension_index TO storage_dimension_index; ALTER TABLE storage_dimension RENAME COLUMN ndarray_dimension_min TO storage_dimension_min; ALTER TABLE storage_dimension RENAME COLUMN ndarray_dimension_max TO storage_dimension_max; COMMENT ON TABLE storage_dimension IS 'Data: Association between storage and dimensions. Used to define attributes for each dimension in storage instances'; -- Name: ndarray_footprint; Type: TABLE; Schema: public; Owner: cube_admin; Tablespace: DROP TABLE ndarray_footprint_dimension cascade; DROP TABLE ndarray_footprint cascade; CREATE TABLE spatial_footprint ( spatial_footprint_id bigint NOT NULL, spatial_footprint_geometry geometry NOT NULL, CONSTRAINT pk_spatial_footprint PRIMARY KEY(spatial_footprint_id) ); ALTER TABLE storage ADD COLUMN spatial_footprint_id bigint; ALTER TABLE public.storage ADD CONSTRAINT fk_storage_spatial_footprint FOREIGN KEY (spatial_footprint_id) REFERENCES public.spatial_footprint (spatial_footprint_id) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE; CREATE INDEX fki_storage_spatial_footprint ON public.storage USING btree (spatial_footprint_id); -- Name: ndarray_type_measurement_type; Type: TABLE; Schema: public; Owner: cube_admin; Tablespace: ALTER TABLE ndarray_type_measurement_type RENAME TO storage_type_measurement_type; ALTER TABLE storage_type_measurement_type RENAME COLUMN ndarray_type_id TO storage_type_id; COMMENT ON TABLE storage_type_measurement_type IS 'Configuration: Associations between n-dimensional data structure types and measurement types (i.e. variables) (many-many)'; -- Name: ndarray_id_seq; Type: SEQUENCE; Schema: public; Owner: cube_admin ALTER SEQUENCE ndarray_id_seq RENAME TO storage_id_seq; -- Name: pk_ndarray; Type: CONSTRAINT; Schema: public; Owner: cube_admin; Tablespace: ALTER TABLE ONLY storage RENAME CONSTRAINT pk_ndarray TO pk_storage; -- Name: pk_ndarray_dataset; Type: CONSTRAINT; Schema: public; Owner: cube_admin; Tablespace: ALTER TABLE ONLY storage_dataset RENAME CONSTRAINT pk_ndarray_dataset TO pk_storage_dataset; -- Name: pk_ndarray_dimension; Type: CONSTRAINT; Schema: public; Owner: cube_admin; Tablespace: ALTER TABLE ONLY storage_dimension RENAME CONSTRAINT pk_ndarray_dimension TO pk_storage_dimension; -- Name: pk_ndarray_type; Type: CONSTRAINT; Schema: public; Owner: cube_admin; Tablespace: ALTER TABLE ONLY storage_type RENAME CONSTRAINT pk_ndarray_type TO pk_storage_type; -- Name: pk_ndarray_type_dimension; Type: CONSTRAINT; Schema: public; Owner: cube_admin; Tablespace: ALTER TABLE ONLY storage_type_dimension RENAME CONSTRAINT pk_ndarray_type_dimension TO pk_storage_type_dimension; -- Name: pk_ndarray_type_dimension_property; Type: CONSTRAINT; Schema: public; Owner: cube_admin; Tablespace: ALTER TABLE ONLY storage_type_dimension_property RENAME CONSTRAINT pk_ndarray_type_dimension_property TO pk_storage_type_dimension_property; -- Name: pk_ndarray_type_measurement_type; Type: CONSTRAINT; Schema: public; Owner: cube_admin; Tablespace: ALTER TABLE ONLY storage_type_measurement_type RENAME CONSTRAINT pk_ndarray_type_measurement_type TO pk_storage_measurement_type; -- Name: uq_dataset_type_measurement_type_ndarray_type_id_measurement_ty; Type: CONSTRAINT; Schema: public; Owner: cube_admin; Tablespace: ALTER TABLE ONLY dataset_type_measurement_type RENAME CONSTRAINT uq_dataset_type_measurement_type_ndarray_type_id_measurement_ty TO uq_dataset_type_measurement_type_dataset_type; -- Name: uq_ndarray_ndarray_location; Type: CONSTRAINT; Schema: public; Owner: cube_admin; Tablespace: ALTER TABLE ONLY storage RENAME CONSTRAINT uq_ndarray_ndarray_location TO uq_storage_storage_location; -- Name: uq_ndarray_type_dimension_ndarray_type_dimension; Type: CONSTRAINT; Schema: public; Owner: cube_admin; Tablespace: ALTER TABLE ONLY storage_type_dimension RENAME CONSTRAINT uq_ndarray_type_dimension_ndarray_type_dimension TO uq_storage_type_dimension_storage_type_dimension; -- Name: CONSTRAINT uq_ndarray_type_dimension_ndarray_type_dimension ON ndarray_type_dimension; Type: COMMENT; Schema: public; Owner: cube_admin COMMENT ON CONSTRAINT uq_storage_type_dimension_storage_type_dimension ON storage_type_dimension IS 'Unique constraint to ensure each dimension is only represented once in each storage_type'; -- Name: uq_ndarray_type_measurement_type_ndarray_type_id_measurement_ty; Type: CONSTRAINT; Schema: public; Owner: cube_admin; Tablespace: ALTER TABLE ONLY storage_type_measurement_type RENAME CONSTRAINT uq_ndarray_type_measurement_type_ndarray_type_id_measurement_ty TO uq_storage_type_measurement_type_storage_type_id_measurement_ty; -- Name: uq_ndarray_type_ndarray_type_name; Type: CONSTRAINT; Schema: public; Owner: cube_admin; Tablespace: ALTER TABLE ONLY storage_type RENAME CONSTRAINT uq_ndarray_type_ndarray_type_name TO uq_storage_type_storage_type_name; -- Name: fk_ndarray_dataset_dataset; Type: FK CONSTRAINT; Schema: public; Owner: cube_admin ALTER TABLE ONLY storage_dataset RENAME CONSTRAINT fk_ndarray_dataset_dataset TO fk_storage_dataset_dataset; -- Name: fk_ndarray_dataset_ndarray; Type: FK CONSTRAINT; Schema: public; Owner: cube_admin ALTER TABLE ONLY storage_dataset RENAME CONSTRAINT fk_ndarray_dataset_ndarray TO fk_storage_dataset_storage; -- Name: fk_ndarray_dimension_ndarray; Type: FK CONSTRAINT; Schema: public; Owner: cube_admin ALTER TABLE ONLY storage_dimension RENAME CONSTRAINT fk_ndarray_dimension_ndarray TO fk_storage_dimension_storage ; -- Name: fk_ndarray_dimension_ndarray_type_dimension; Type: FK CONSTRAINT; Schema: public; Owner: cube_admin ALTER TABLE ONLY storage_dimension RENAME CONSTRAINT fk_ndarray_dimension_ndarray_type_dimension TO fk_storage_dimension_storage_type_dimension; -- Name: fk_ndarray_ndarray_type; Type: FK CONSTRAINT; Schema: public; Owner: cube_admin ALTER TABLE ONLY storage RENAME CONSTRAINT fk_ndarray_ndarray_type TO fk_storage_storage_type; -- Name: fk_ndarray_type_dimension_attribute_ndarray_type_dimension; Type: FK CONSTRAINT; Schema: public; Owner: cube_admin ALTER TABLE ONLY storage_type_dimension_property RENAME CONSTRAINT fk_ndarray_type_dimension_attribute_ndarray_type_dimension TO fk_storage_type_dimension_attribute_storage_type_dimension; -- Name: fk_ndarray_type_dimension_dimension_domain; Type: FK CONSTRAINT; Schema: public; Owner: cube_admin ALTER TABLE ONLY storage_type_dimension RENAME CONSTRAINT fk_ndarray_type_dimension_dimension_domain TO fk_storage_type_dimension_dimension_domain; -- Name: fk_ndarray_type_dimension_indexing_type; Type: FK CONSTRAINT; Schema: public; Owner: cube_admin ALTER TABLE ONLY storage_type_dimension RENAME CONSTRAINT fk_ndarray_type_dimension_indexing_type TO fk_storage_type_dimension_indexing_type; -- Name: fk_ndarray_type_dimension_ndarray_type; Type: FK CONSTRAINT; Schema: public; Owner: cube_admin ALTER TABLE ONLY storage_type_dimension RENAME CONSTRAINT fk_ndarray_type_dimension_ndarray_type TO fk_storage_type_dimension_storage_type; -- Name: fk_ndarray_type_dimension_property_property; Type: FK CONSTRAINT; Schema: public; Owner: cube_admin ALTER TABLE ONLY storage_type_dimension_property RENAME CONSTRAINT fk_ndarray_type_dimension_property_property TO fk_storage_type_dimension_property_property; -- Name: fk_ndarray_type_dimension_reference_system; Type: FK CONSTRAINT; Schema: public; Owner: cube_admin ALTER TABLE ONLY storage_type_dimension RENAME CONSTRAINT fk_ndarray_type_dimension_reference_system TO fk_storage_type_dimension_reference_system; -- Name: fk_ndarray_type_measurement_type_datatype; Type: FK CONSTRAINT; Schema: public; Owner: cube_admin ALTER TABLE ONLY storage_type_measurement_type RENAME CONSTRAINT fk_ndarray_type_measurement_type_datatype TO fk_storage_type_measurement_type_datatype; -- Name: fk_ndarray_type_measurement_type_measurement_type; Type: FK CONSTRAINT; Schema: public; Owner: cube_admin ALTER TABLE ONLY storage_type_measurement_type RENAME CONSTRAINT fk_ndarray_type_measurement_type_measurement_type TO fk_storage_type_measurement_type_measurement_type; -- Name: fk_ndarray_type_measurement_type_ndarray_type; Type: FK CONSTRAINT; Schema: public; Owner: cube_admin ALTER TABLE ONLY storage_type_measurement_type RENAME CONSTRAINT fk_ndarray_type_measurement_type_ndarray_type TO fk_storage_type_measurement_type_storage_type; -- Name: fki_ndarray_dataset_dataset; Type: INDEX; Schema: public; Owner: cube_admin; Tablespace: ALTER INDEX fki_ndarray_dataset_dataset RENAME TO fki_storage_dataset_dataset; -- Name: fki_ndarray_dataset_ndarray; Type: INDEX; Schema: public; Owner: cube_admin; Tablespace: ALTER INDEX fki_ndarray_dataset_ndarray RENAME TO fki_storage_dataset_storage; -- Name: fki_ndarray_dimension_ndarray; Type: INDEX; Schema: public; Owner: cube_admin; Tablespace: ALTER INDEX fki_ndarray_dimension_ndarray RENAME TO fki_storage_dimension_storage; -- Name: fki_ndarray_dimension_ndarray_type_dimension; Type: INDEX; Schema: public; Owner: cube_admin; Tablespace: ALTER INDEX fki_ndarray_dimension_ndarray_type_dimension RENAME TO fki_storage_dimension_storage_type_dimension; -- Name: fki_ndarray_ndarray_type; Type: INDEX; Schema: public; Owner: cube_admin; Tablespace: ALTER INDEX fki_ndarray_ndarray_type RENAME TO fki_storage_storage_type; -- Name: fki_ndarray_type_dimension_attribute_ndarray_type_dimension; Type: INDEX; Schema: public; Owner: cube_admin; Tablespace: ALTER INDEX fki_ndarray_type_dimension_attribute_ndarray_type_dimension RENAME TO fki_storage_type_dimension_attribute_storage_type_dimension; -- Name: fki_ndarray_type_dimension_attribute_property; Type: INDEX; Schema: public; Owner: cube_admin; Tablespace: ALTER INDEX fki_ndarray_type_dimension_attribute_property RENAME TO fki_storage_type_dimension_attribute_property; -- Name: fki_ndarray_type_dimension_dimension_domain; Type: INDEX; Schema: public; Owner: cube_admin; Tablespace: ALTER INDEX fki_ndarray_type_dimension_dimension_domain RENAME TO fki_storage_type_dimension_dimension_domain; -- Name: fki_ndarray_type_dimension_indexing_type; Type: INDEX; Schema: public; Owner: cube_admin; Tablespace: ALTER INDEX fki_ndarray_type_dimension_indexing_type RENAME TO fki_storage_type_dimension_indexing_type; -- Name: fki_ndarray_type_dimension_ndarray_type_id_fkey; Type: INDEX; Schema: public; Owner: cube_admin; Tablespace: ALTER INDEX fki_ndarray_type_dimension_ndarray_type_id_fkey RENAME TO fki_storage_type_dimension_storage_type_id_fkey; -- Name: fki_ndarray_type_masurement_type_datatype; Type: INDEX; Schema: public; Owner: cube_admin; Tablespace: ALTER INDEX fki_ndarray_type_masurement_type_datatype RENAME TO fki_storage_type_masurement_type_datatype; -- Name: fki_ndarray_type_measurement_type_measurement_type; Type: INDEX; Schema: public; Owner: cube_admin; Tablespace: ALTER INDEX fki_ndarray_type_measurement_type_measurement_type RENAME TO fki_storage_type_measurement_type_measurement_type; -- Name: fki_ndarray_type_measurement_type_ndarray_type; Type: INDEX; Schema: public; Owner: cube_admin; Tablespace: ALTER INDEX fki_ndarray_type_measurement_type_ndarray_type RENAME TO fki_storage_type_measurement_type_storage_type; -- Name: idx_ndarray_dimension_ndarray_dimension_index; Type: INDEX; Schema: public; Owner: cube_admin; Tablespace: ALTER INDEX idx_ndarray_dimension_ndarray_dimension_index RENAME TO idx_storage_dimension_storage_dimension_index; -- Name: idx_ndarray_dimension_ndarray_dimension_max; Type: INDEX; Schema: public; Owner: cube_admin; Tablespace: ALTER INDEX idx_ndarray_dimension_ndarray_dimension_max RENAME TO idx_storage_dimension_storage_dimension_max; -- Name: idx_ndarray_dimension_ndarray_dimension_min; Type: INDEX; Schema: public; Owner: cube_admin; Tablespace: ALTER INDEX idx_ndarray_dimension_ndarray_dimension_min RENAME TO idx_storage_dimension_storage_dimension_min; -- Materialized View: public.ndarray_type_dimension_view DROP MATERIALIZED VIEW public.ndarray_type_dimension_view cascade; CREATE MATERIALIZED VIEW public.storage_type_dimension_view AS SELECT storage_type.storage_type_id, storage_type_dimension.dimension_order AS creation_order, domain.domain_id, dimension.dimension_id, storage_type_dimension.reference_system_id, storage_type.storage_type_name AS storage_type_name, dimension.dimension_name, dimension.dimension_tag, domain.domain_name, reference_system.reference_system_name, reference_system.reference_system_definition, indexing_type.indexing_type_name, storage_type_dimension.dimension_origin, storage_type_dimension.dimension_extent, index_reference_system.reference_system_unit AS index_unit, storage_type_dimension.dimension_elements, reference_system.reference_system_unit, storage_type_dimension.dimension_cache FROM storage_type storage_type(storage_type_id, storage_type_name, storage_type_tag) JOIN storage_type_dimension storage_type_dimension(storage_type_id, domain_id, dimension_id, dimension_order, dimension_extent, dimension_elements, dimension_cache, dimension_origin, indexing_type_id, reference_system_id, index_reference_system_id) USING (storage_type_id) JOIN dimension_domain USING (domain_id, dimension_id) JOIN domain USING (domain_id) JOIN dimension USING (dimension_id) JOIN reference_system USING (reference_system_id) JOIN reference_system index_reference_system ON storage_type_dimension.index_reference_system_id = index_reference_system.reference_system_id JOIN indexing_type USING (indexing_type_id) ORDER BY storage_type.storage_type_id, storage_type_dimension.dimension_order WITH DATA; ALTER TABLE public.storage_type_dimension_view OWNER TO cube_admin; GRANT ALL ON TABLE public.storage_type_dimension_view TO cube_admin; GRANT ALL ON TABLE public.storage_type_dimension_view TO cube_admin_group; GRANT SELECT ON TABLE public.storage_type_dimension_view TO cube_user_group; REFRESH MATERIALIZED VIEW public.storage_type_dimension_view; -- Materialized View: public.dimension_indices_view -- DROP MATERIALIZED VIEW public.dimension_indices_view; CREATE MATERIALIZED VIEW public.dimension_indices_view AS SELECT storage_type_dimension_view.storage_type_id, storage_type_dimension_view.domain_id, storage_type_dimension_view.dimension_id, reference_system_indexing.reference_system_id, reference_system_indexing.array_index, reference_system_indexing.indexing_name, reference_system_indexing.measurement_metatype_id, reference_system_indexing.measurement_type_id FROM storage_type_dimension_view JOIN reference_system_indexing USING (reference_system_id) ORDER BY storage_type_dimension_view.storage_type_id, storage_type_dimension_view.dimension_id, reference_system_indexing.array_index WITH NO DATA; ALTER TABLE public.dimension_indices_view OWNER TO cube_admin; GRANT ALL ON TABLE public.dimension_indices_view TO cube_admin; GRANT ALL ON TABLE public.dimension_indices_view TO cube_admin_group; GRANT SELECT ON TABLE public.dimension_indices_view TO cube_user_group; REFRESH MATERIALIZED VIEW public.dimension_indices_view; -- Materialized View: public.dimension_properties_view -- DROP MATERIALIZED VIEW public.dimension_properties_view; CREATE MATERIALIZED VIEW public.dimension_properties_view AS SELECT storage_type_dimension_view.storage_type_id, storage_type_dimension_view.domain_id, storage_type_dimension_view.dimension_id, storage_type_dimension_view.dimension_name, property.property_name, storage_type_dimension_property.attribute_string, datatype.datatype_name FROM storage_type_dimension_view JOIN storage_type_dimension_property storage_type_dimension_property(storage_type_id, domain_id, dimension_id, property_id, attribute_string) USING (storage_type_id, domain_id, dimension_id) JOIN property USING (property_id) JOIN datatype USING (datatype_id) ORDER BY storage_type_dimension_view.storage_type_id, storage_type_dimension_view.creation_order, property.property_name WITH NO DATA; ALTER TABLE public.dimension_properties_view OWNER TO cube_admin; GRANT ALL ON TABLE public.dimension_properties_view TO cube_admin; GRANT ALL ON TABLE public.dimension_properties_view TO cube_admin_group; GRANT SELECT ON TABLE public.dimension_properties_view TO cube_user_group; REFRESH MATERIALIZED VIEW public.dimension_properties_view; GRANT ALL ON ALL TABLES IN SCHEMA public TO cube_admin; GRANT ALL ON ALL TABLES IN SCHEMA public TO cube_admin_group; GRANT SELECT ON ALL TABLES IN SCHEMA public TO cube_user_group; GRANT ALL ON ALL TABLES IN SCHEMA earth_observation TO cube_admin; GRANT ALL ON ALL TABLES IN SCHEMA earth_observation TO cube_admin_group; GRANT SELECT ON ALL TABLES IN SCHEMA earth_observation TO cube_user_group; GRANT ALL ON ALL TABLES IN SCHEMA ztmp TO cube_admin; GRANT ALL ON ALL TABLES IN SCHEMA ztmp TO cube_admin_group; GRANT ALL ON ALL TABLES IN SCHEMA ztmp TO cube_user_group;
<reponame>CeON/dataverse<filename>dataverse-persistence/src/main/resources/db/migration/V44__addTablesForROR.sql CREATE TABLE IF NOT EXISTS rordata ( id BIGSERIAL PRIMARY KEY, rorid CHAR(9) UNIQUE, name VARCHAR, countryname VARCHAR, countrycode VARCHAR(16) ); CREATE TABLE IF NOT EXISTS rordata_namealias ( rordata_id BIGINT CONSTRAINT fk_roralias_rordata_id REFERENCES rordata, namealias VARCHAR, PRIMARY KEY (rordata_id, namealias) ); CREATE INDEX index_rordata_namealias_rordata_id ON rordata_namealias(rordata_id); CREATE TABLE IF NOT EXISTS rordata_acronym ( rordata_id BIGINT CONSTRAINT fk_roracronym_rordata_id REFERENCES rordata, acronym VARCHAR, PRIMARY KEY (rordata_id, acronym) ); CREATE INDEX index_rordata_acronym_rordata_id ON rordata_acronym(rordata_id); CREATE TABLE IF NOT EXISTS rordata_label ( rordata_id BIGINT CONSTRAINT fk_roracronym_rordata_id REFERENCES rordata, label VARCHAR, code VARCHAR, PRIMARY KEY (rordata_id, label, code) ); CREATE INDEX index_rordata_label_rordata_id ON rordata_label(rordata_id);
CREATE PROCEDURE SP598(OUT MYCOUNT INTEGER) SPECIFIC SP598_93814 LANGUAGE SQL NOT DETERMINISTIC READS SQL DATA NEW SAVEPOINT LEVEL BEGIN ATOMIC DECLARE MYVAR INT;SELECT COUNT(*)INTO MYCOUNT FROM TABLE148;SELECT COUNT(*)INTO MYCOUNT FROM TABLE227;SELECT COUNT(*)INTO MYCOUNT FROM TABLE386;SELECT COUNT(*)INTO MYCOUNT FROM VIEW96;SELECT COUNT(*)INTO MYCOUNT FROM VIEW93;SELECT COUNT(*)INTO MYCOUNT FROM VIEW35;CALL SP522(MYVAR);CALL SP817(MYVAR);CALL SP197(MYVAR);CALL SP450(MYVAR);END GO
<gh_stars>1000+ UPDATE tb_addon_instance SET kms_key = '' WHERE kms_key IS NULL; ALTER TABLE tb_addon_instance MODIFY COLUMN `kms_key` VARCHAR(64) NOT NULL DEFAULT '' COMMENT 'kms key id';
<reponame>nurikk/gpdb<filename>gpAux/extensions/gpmapreduce/test/sql/member_kw_init.sql create table member_summary (member_id int, text text) distributed by (member_id); create table keywords (keyword_id int, keyword text) distributed by (keyword_id); insert into member_summary values (1, 'Interested in software development and software profiling'); insert into keywords values (100, 'software engineer'); insert into keywords values (101, 'software development');
<gh_stars>0 /* Navicat MySQL Data Transfer Source Server : 127.0.0.1_3306 Source Server Type : MySQL Source Server Version : 50726 Source Host : 127.0.0.1:3306 Source Schema : yii2study Target Server Type : MySQL Target Server Version : 50726 File Encoding : 65001 Date: 12/12/2021 16:10:41 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for country -- ---------------------------- DROP TABLE IF EXISTS `country`; CREATE TABLE `country` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `code` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `name` char(52) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `population` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 13 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of country -- ---------------------------- INSERT INTO `country` VALUES (1, 'AU', 'Australia', 188860001); INSERT INTO `country` VALUES (2, 'BR', 'Brazil', 170115000); INSERT INTO `country` VALUES (3, 'CA', 'Canada', 1147000); INSERT INTO `country` VALUES (4, 'CN', 'China', 1277558000); INSERT INTO `country` VALUES (5, 'DE', 'Germany', 82164700); INSERT INTO `country` VALUES (6, 'FR', 'France', 59225700); INSERT INTO `country` VALUES (7, 'GB', 'United Kingdom', 59623400); INSERT INTO `country` VALUES (8, 'IN', 'India', 1013662000); INSERT INTO `country` VALUES (9, 'RU', 'Russia', 146934000); INSERT INTO `country` VALUES (10, 'US', 'United States', 278357000); SET FOREIGN_KEY_CHECKS = 1;
SET foreign_key_checks = 0; /*!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 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; # Dump of table employer # ------------------------------------------------------------ DROP TABLE IF EXISTS `employer`; CREATE TABLE `employer` ( `employer_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `time_created` datetime DEFAULT NULL, `time_updated` datetime DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `employer_name` varchar(50) DEFAULT NULL, `employer_description` varchar(2000) DEFAULT NULL, PRIMARY KEY (`employer_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; LOCK TABLES `employer` WRITE; /*!40000 ALTER TABLE `employer` DISABLE KEYS */; INSERT INTO `employer` (`employer_id`, `time_created`, `time_updated`, `user_id`, `employer_name`, `employer_description`) VALUES (1,NULL,NULL,NULL,'ms',''), (2,NULL,NULL,55,NULL,NULL), (3,NULL,NULL,56,NULL,NULL), (4,NULL,NULL,59,'Q','great company'), (5,NULL,NULL,61,NULL,NULL), (6,NULL,NULL,62,NULL,NULL), (7,NULL,NULL,63,'intel','KLSLSL'), (8,NULL,NULL,64,'huukoo','this is a jewelry website'); /*!40000 ALTER TABLE `employer` ENABLE KEYS */; UNLOCK TABLES; # Dump of table employer_student # ------------------------------------------------------------ DROP TABLE IF EXISTS `employer_student`; CREATE TABLE `employer_student` ( `employer_student_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `employer_id` int(11) unsigned NOT NULL, `student_id` int(11) unsigned NOT NULL, `time_created` datetime DEFAULT NULL, `time_updated` datetime DEFAULT NULL, PRIMARY KEY (`employer_student_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; # Dump of table job # ------------------------------------------------------------ DROP TABLE IF EXISTS `job`; CREATE TABLE `job` ( `job_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `employer_id` int(11) unsigned NOT NULL, `time_created` datetime DEFAULT NULL, `time_updated` datetime DEFAULT NULL, `job_description` varchar(2000) DEFAULT NULL, `expiration_date` datetime DEFAULT NULL, `job_type` varchar(40) DEFAULT NULL, `salary` double(10,2) DEFAULT NULL, `benefits` varchar(1000) DEFAULT NULL, PRIMARY KEY (`job_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; LOCK TABLES `job` WRITE; /*!40000 ALTER TABLE `job` DISABLE KEYS */; INSERT INTO `job` (`job_id`, `employer_id`, `time_created`, `time_updated`, `job_description`, `expiration_date`, `job_type`, `salary`, `benefits`) VALUES (1,8,NULL,'2015-06-21 21:59:03','good job',NULL,NULL,NULL,NULL), (2,8,NULL,'2015-06-21 21:59:04','good job',NULL,NULL,NULL,NULL), (3,8,NULL,'2015-06-21 21:59:04','bad job',NULL,NULL,NULL,NULL), (4,8,NULL,'2015-06-21 21:59:05','php jb',NULL,NULL,NULL,NULL), (5,8,NULL,'2015-06-21 21:59:05','zend job',NULL,NULL,NULL,NULL), (6,8,NULL,'2015-06-21 21:59:06','zend job',NULL,NULL,NULL,NULL), (7,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (8,8,'2015-06-19 03:51:26','2015-06-21 21:59:07','<p>be</p>\r\n','0000-00-00 00:00:00','fullTime',NULL,NULL), (9,8,'2015-06-19 03:53:33','2015-06-21 21:59:07','<p>be</p>\r\n','2015-07-03 03:53:33','fullTime',NULL,NULL), (10,8,'2015-06-19 12:27:18','2015-06-21 21:59:08','<p>mmm</p>\r\n','2015-07-03 12:27:18','fullTime',NULL,NULL), (11,8,'2015-06-20 04:08:12','2015-06-21 21:59:08','<p>dd</p>\r\n','2015-07-04 04:08:12','fullTime',NULL,NULL), (12,8,'2015-06-21 19:55:05','2015-06-21 21:59:09','','2015-07-05 19:55:05','',NULL,NULL), (13,8,'2015-06-21 19:58:12','2015-06-21 21:59:09','<p>java</p>\r\n','2015-07-05 19:58:12','fullTime',NULL,NULL), (14,8,'2015-06-21 19:58:55','2015-06-21 21:59:10','<p>java</p>\r\n','2015-07-05 19:58:55','fullTime',NULL,NULL), (15,8,'2015-06-21 19:59:23','2015-06-21 21:59:10','<p>c#</p>\r\n','2015-07-21 19:59:23','partTime',NULL,NULL), (16,8,'2015-06-21 20:11:56','2015-06-21 21:59:11','<p>c#</p>\r\n','2015-07-21 20:11:56','partTime',NULL,NULL), (17,8,'2015-06-21 20:12:54','2015-06-21 21:59:11','<p>php</p>\r\n','2015-07-21 20:12:54','partTime',NULL,NULL); /*!40000 ALTER TABLE `job` ENABLE KEYS */; UNLOCK TABLES; # Dump of table job_applicant # ------------------------------------------------------------ DROP TABLE IF EXISTS `job_applicant`; CREATE TABLE `job_applicant` ( `job_applicant_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `job_posting_id` int(11) DEFAULT NULL, `student_id` int(11) DEFAULT NULL, `time_created` datetime DEFAULT NULL, `job_application_status` int(2) DEFAULT NULL, `job_application_status_text` varchar(40) DEFAULT NULL, PRIMARY KEY (`job_applicant_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; LOCK TABLES `job_applicant` WRITE; /*!40000 ALTER TABLE `job_applicant` DISABLE KEYS */; INSERT INTO `job_applicant` (`job_applicant_id`, `job_posting_id`, `student_id`, `time_created`, `job_application_status`, `job_application_status_text`) VALUES (2,NULL,69,NULL,1,'Applied on 06-2015-20'), (3,NULL,69,NULL,1,'Applied on 06-2015-2'), (4,NULL,69,'2015-06-20 02:33:41',1,'Applied on 06-2015-2'), (5,10,69,'2015-06-20 02:35:26',1,'Applied'), (6,121,69,'2015-06-20 02:41:39',1,'Applied on Jun-15-20'), (7,10,69,'2015-06-20 02:48:11',1,'Applied on 2015-06-2'), (8,121,69,'2015-06-20 02:49:09',1,'Applied on 2015-06-21'), (9,147,69,'2015-06-20 02:49:56',1,'Applied on 2015-06-22'), (10,147,69,'2015-06-20 02:51:52',1,'Applied on 2015-06-22'), (11,147,69,'2015-06-20 04:33:39',1,'Applied'), (12,147,69,'2015-06-20 04:33:57',1,'Applied on 2015-06-22'), (13,147,69,'2015-06-20 13:17:32',NULL,NULL), (14,147,69,'2015-06-20 13:17:34',1,'Applied on 2015-06-22'), (15,118,69,'2015-06-20 13:19:22',NULL,NULL), (16,118,69,'2015-06-20 13:19:22',NULL,NULL), (17,122,69,'2015-06-20 13:24:13',1,NULL), (18,118,69,'2015-06-20 15:02:55',NULL,NULL), (19,121,69,'2015-06-20 15:05:35',NULL,NULL), (20,121,69,'2015-06-20 15:05:36',NULL,NULL), (21,121,69,'2015-06-20 15:06:15',NULL,NULL), (22,117,69,'2015-06-20 15:06:36',1,'Applied on 2015-06-21'), (23,121,69,'2015-06-20 15:07:03',NULL,NULL), (24,118,69,'2015-06-20 15:30:24',NULL,NULL), (25,118,69,'2015-06-20 15:31:13',NULL,NULL), (26,121,69,'2015-06-20 15:31:27',NULL,NULL), (27,117,69,'2015-06-20 15:31:39',NULL,NULL), (28,121,69,'2015-06-20 17:47:27',NULL,NULL), (29,121,124,NULL,1,'Applied on 2015-06-21'), (30,93,69,'2015-06-21 16:33:28',NULL,NULL), (31,93,69,'2015-06-21 16:33:29',NULL,NULL), (32,93,69,'2015-06-21 21:09:07',1,'Applied on 2015-06-21'), (33,117,69,'2015-06-21 22:25:45',NULL,NULL), (34,93,69,'2015-06-22 05:02:14',NULL,NULL), (35,93,69,'2015-06-22 05:43:25',NULL,NULL); /*!40000 ALTER TABLE `job_applicant` ENABLE KEYS */; UNLOCK TABLES; # Dump of table job_posting # ------------------------------------------------------------ DROP TABLE IF EXISTS `job_posting`; CREATE TABLE `job_posting` ( `job_posting_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `school_major_student_id` int(11) DEFAULT NULL, `employer_id` int(11) DEFAULT NULL, `job_id` int(11) DEFAULT NULL, `to_school` varchar(500) DEFAULT NULL, `to_major` varchar(500) DEFAULT NULL, `to_student` varchar(500) DEFAULT NULL, `time_created` datetime DEFAULT NULL, `time_updated` datetime DEFAULT NULL, `school_id` int(8) DEFAULT NULL, `major_id` int(8) DEFAULT NULL, `student_id` int(11) DEFAULT NULL, `expiration_date` datetime DEFAULT NULL, `job_type` varchar(40) DEFAULT NULL, `number_of_application` int(8) DEFAULT NULL, PRIMARY KEY (`job_posting_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; LOCK TABLES `job_posting` WRITE; /*!40000 ALTER TABLE `job_posting` DISABLE KEYS */; INSERT INTO `job_posting` (`job_posting_id`, `school_major_student_id`, `employer_id`, `job_id`, `to_school`, `to_major`, `to_student`, `time_created`, `time_updated`, `school_id`, `major_id`, `student_id`, `expiration_date`, `job_type`, `number_of_application`) VALUES (1,NULL,NULL,3,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,NULL,NULL,NULL), (2,NULL,NULL,3,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,NULL,NULL,NULL), (3,NULL,NULL,3,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,NULL,NULL,NULL), (4,NULL,NULL,3,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,NULL,NULL,NULL), (5,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (6,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL,NULL,NULL,NULL), (7,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (8,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (9,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL,NULL,NULL,NULL), (10,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (11,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (12,NULL,NULL,125,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (13,NULL,NULL,152,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL,NULL,NULL,NULL), (14,NULL,NULL,152,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (15,NULL,NULL,125,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (16,NULL,NULL,1225,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (17,NULL,NULL,1225,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (18,NULL,NULL,9,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (19,NULL,NULL,1225,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (20,NULL,NULL,1225,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (21,NULL,NULL,9,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (22,NULL,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (23,NULL,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,200,59,NULL,NULL,NULL), (24,NULL,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (25,NULL,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,400,NULL,NULL,NULL,NULL), (26,NULL,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,500,NULL,NULL,NULL,NULL), (27,NULL,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (28,NULL,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL,NULL,NULL,NULL), (29,NULL,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (30,NULL,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,400,NULL,NULL,NULL,NULL), (31,NULL,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,500,NULL,NULL,NULL,NULL), (32,NULL,NULL,170,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (33,NULL,NULL,170,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL,NULL,NULL,NULL), (34,NULL,NULL,170,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (35,NULL,NULL,170,NULL,NULL,NULL,NULL,NULL,NULL,400,NULL,NULL,NULL,NULL), (36,NULL,NULL,170,NULL,NULL,NULL,NULL,NULL,NULL,500,NULL,NULL,NULL,NULL), (37,NULL,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (38,NULL,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL,NULL,NULL,NULL), (39,NULL,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (40,NULL,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,400,NULL,NULL,NULL,NULL), (41,NULL,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,500,NULL,NULL,NULL,NULL), (42,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (43,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL,NULL,NULL,NULL), (44,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (45,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,400,NULL,NULL,NULL,NULL), (46,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,500,NULL,NULL,NULL,NULL), (47,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (48,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL,NULL,NULL,NULL), (49,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (50,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,400,NULL,NULL,NULL,NULL), (51,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,500,NULL,NULL,NULL,NULL), (52,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (53,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL,NULL,NULL,NULL), (54,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (55,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,400,NULL,NULL,NULL,NULL), (56,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,500,NULL,NULL,NULL,NULL), (57,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (58,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL,NULL,NULL,NULL), (59,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (60,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,400,NULL,NULL,NULL,NULL), (61,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,500,NULL,NULL,NULL,NULL), (62,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (63,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL,NULL,NULL,NULL), (64,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (65,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,400,NULL,NULL,NULL,NULL), (66,NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,500,NULL,NULL,NULL,NULL), (67,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (68,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL,NULL,NULL,NULL), (69,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (70,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,400,NULL,NULL,NULL,NULL), (71,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,500,NULL,NULL,NULL,NULL), (72,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (73,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL,NULL,NULL,NULL), (74,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (75,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,400,NULL,NULL,NULL,NULL), (76,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,500,NULL,NULL,NULL,NULL), (77,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (78,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL,NULL,NULL,NULL), (79,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (80,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,400,NULL,NULL,NULL,NULL), (81,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,500,NULL,NULL,NULL,NULL), (82,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (83,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL,NULL,NULL,NULL), (84,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (85,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,400,NULL,NULL,NULL,NULL), (86,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,500,NULL,NULL,NULL,NULL), (87,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (88,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL,NULL,NULL,NULL), (89,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (90,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,400,NULL,NULL,NULL,NULL), (91,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,500,NULL,NULL,NULL,NULL), (92,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (93,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,200,69,NULL,NULL,NULL), (94,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (95,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,400,NULL,NULL,NULL,NULL), (96,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,500,NULL,NULL,NULL,NULL), (97,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (98,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL,NULL,NULL,NULL), (99,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (100,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,400,NULL,NULL,NULL,NULL), (101,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,500,NULL,NULL,NULL,NULL), (102,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (103,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL,NULL,NULL,NULL), (104,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (105,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,400,NULL,NULL,NULL,NULL), (106,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,500,NULL,NULL,NULL,NULL), (107,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,100,NULL,NULL,NULL,NULL), (108,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL,NULL,NULL,NULL), (109,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,300,NULL,NULL,NULL,NULL), (110,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,400,NULL,NULL,NULL,NULL), (111,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,500,NULL,NULL,NULL,NULL), (112,NULL,8,2,NULL,NULL,NULL,NULL,NULL,57,1104,1,NULL,NULL,NULL), (113,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,200,NULL,NULL,NULL,NULL), (114,NULL,8,4,NULL,NULL,NULL,NULL,NULL,57,1104,NULL,NULL,NULL,NULL), (115,NULL,NULL,121,NULL,NULL,NULL,NULL,NULL,NULL,400,NULL,NULL,NULL,NULL), (116,NULL,8,6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL), (117,NULL,8,9,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (118,NULL,8,9,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (119,NULL,8,9,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (120,NULL,8,9,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (121,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (122,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (123,NULL,8,10,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (124,NULL,8,10,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (125,NULL,8,9,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (126,NULL,8,9,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (127,NULL,8,9,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (128,NULL,8,10,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (129,NULL,8,10,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (130,NULL,8,10,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (131,NULL,8,9,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (132,NULL,8,9,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (133,NULL,8,9,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (134,NULL,8,10,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (135,NULL,8,10,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (136,NULL,8,10,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (137,NULL,8,9,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (138,NULL,8,9,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (139,NULL,8,9,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (140,NULL,8,10,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (141,NULL,8,10,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (142,NULL,8,10,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (143,NULL,8,9,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (144,NULL,8,9,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (145,NULL,8,9,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (146,NULL,8,10,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (147,NULL,8,10,NULL,'1',NULL,NULL,NULL,9,820,69,NULL,NULL,1), (148,NULL,8,10,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (149,NULL,8,9,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (150,NULL,8,9,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (151,NULL,8,9,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (152,NULL,8,10,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (153,NULL,8,10,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (154,NULL,8,10,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (155,NULL,8,10,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (156,NULL,8,10,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (157,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (158,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (159,NULL,8,10,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (160,NULL,8,10,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (161,NULL,8,10,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (162,NULL,8,10,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (163,NULL,8,10,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (164,NULL,8,10,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (165,NULL,8,10,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (166,NULL,8,11,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (167,NULL,8,11,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (168,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (169,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (170,NULL,8,11,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (171,NULL,8,11,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (172,NULL,8,11,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (173,NULL,8,11,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (174,NULL,8,11,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (175,NULL,8,11,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (176,NULL,8,11,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (177,NULL,8,10,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (178,NULL,8,10,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (179,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (180,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (181,NULL,8,10,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (182,NULL,8,10,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (183,NULL,8,10,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (184,NULL,8,10,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (185,NULL,8,10,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (186,NULL,8,10,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (187,NULL,8,10,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (188,NULL,8,11,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (189,NULL,8,11,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (190,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (191,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (192,NULL,8,11,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (193,NULL,8,11,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (194,NULL,8,11,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (195,NULL,8,11,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (196,NULL,8,11,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (197,NULL,8,11,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (198,NULL,8,11,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (199,NULL,8,11,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (200,NULL,8,11,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (201,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (202,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (203,NULL,8,11,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (204,NULL,8,11,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (205,NULL,8,11,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (206,NULL,8,11,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (207,NULL,8,11,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (208,NULL,8,11,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (209,NULL,8,11,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (210,NULL,8,12,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (211,NULL,8,12,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (212,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (213,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (214,NULL,8,12,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (215,NULL,8,12,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (216,NULL,8,12,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (217,NULL,8,12,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (218,NULL,8,12,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (219,NULL,8,12,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (220,NULL,8,12,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (221,NULL,8,11,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (222,NULL,8,11,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (223,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (224,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (225,NULL,8,11,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (226,NULL,8,11,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (227,NULL,8,11,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (228,NULL,8,11,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (229,NULL,8,11,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (230,NULL,8,11,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (231,NULL,8,11,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (232,NULL,8,12,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (233,NULL,8,12,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (234,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (235,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (236,NULL,8,12,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (237,NULL,8,12,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (238,NULL,8,12,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (239,NULL,8,12,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (240,NULL,8,12,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (241,NULL,8,12,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (242,NULL,8,12,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (243,NULL,8,11,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (244,NULL,8,11,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (245,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (246,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (247,NULL,8,11,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (248,NULL,8,11,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (249,NULL,8,11,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (250,NULL,8,11,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (251,NULL,8,11,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (252,NULL,8,11,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (253,NULL,8,11,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (254,NULL,8,12,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (255,NULL,8,12,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (256,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (257,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (258,NULL,8,12,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (259,NULL,8,12,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (260,NULL,8,12,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (261,NULL,8,12,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (262,NULL,8,12,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (263,NULL,8,12,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (264,NULL,8,12,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (265,NULL,8,11,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (266,NULL,8,11,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (267,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (268,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (269,NULL,8,11,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (270,NULL,8,11,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (271,NULL,8,11,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (272,NULL,8,11,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (273,NULL,8,11,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (274,NULL,8,11,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (275,NULL,8,11,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (276,NULL,8,12,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (277,NULL,8,12,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (278,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (279,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (280,NULL,8,12,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (281,NULL,8,12,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (282,NULL,8,12,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (283,NULL,8,12,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (284,NULL,8,12,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (285,NULL,8,12,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (286,NULL,8,12,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (287,NULL,8,15,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (288,NULL,8,15,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (289,NULL,8,15,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (290,NULL,8,15,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (291,NULL,8,15,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (292,NULL,8,15,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (293,NULL,8,15,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (294,NULL,8,15,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (295,NULL,8,15,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (296,NULL,8,15,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (297,NULL,8,15,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (298,NULL,8,16,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (299,NULL,8,16,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (300,NULL,8,16,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (301,NULL,8,16,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (302,NULL,8,16,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (303,NULL,8,16,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (304,NULL,8,16,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (305,NULL,8,16,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (306,NULL,8,16,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (307,NULL,8,16,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (308,NULL,8,16,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (309,NULL,8,15,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (310,NULL,8,15,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (311,NULL,8,15,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (312,NULL,8,15,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (313,NULL,8,15,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (314,NULL,8,15,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (315,NULL,8,15,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (316,NULL,8,15,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (317,NULL,8,15,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (318,NULL,8,15,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (319,NULL,8,15,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (320,NULL,8,16,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (321,NULL,8,16,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (322,NULL,8,16,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (323,NULL,8,16,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (324,NULL,8,16,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (325,NULL,8,16,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (326,NULL,8,16,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (327,NULL,8,16,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (328,NULL,8,16,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (329,NULL,8,16,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (330,NULL,8,16,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (331,NULL,8,11,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (332,NULL,8,11,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (333,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (334,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (335,NULL,8,11,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (336,NULL,8,11,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (337,NULL,8,11,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (338,NULL,8,11,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (339,NULL,8,11,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (340,NULL,8,11,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (341,NULL,8,11,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (342,NULL,8,12,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (343,NULL,8,12,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (344,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (345,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (346,NULL,8,12,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (347,NULL,8,12,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (348,NULL,8,12,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (349,NULL,8,12,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (350,NULL,8,12,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (351,NULL,8,12,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (352,NULL,8,12,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (353,NULL,8,11,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (354,NULL,8,11,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (355,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (356,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (357,NULL,8,11,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (358,NULL,8,11,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (359,NULL,8,11,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (360,NULL,8,11,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (361,NULL,8,11,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (362,NULL,8,11,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (363,NULL,8,11,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (364,NULL,8,11,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (365,NULL,8,11,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (366,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (367,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (368,NULL,8,11,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (369,NULL,8,11,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (370,NULL,8,11,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (371,NULL,8,11,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (372,NULL,8,11,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (373,NULL,8,11,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (374,NULL,8,11,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (375,NULL,8,11,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (376,NULL,8,11,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (377,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (378,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (379,NULL,8,11,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (380,NULL,8,11,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (381,NULL,8,11,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (382,NULL,8,11,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (383,NULL,8,11,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (384,NULL,8,11,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (385,NULL,8,11,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (386,NULL,8,11,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (387,NULL,8,11,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (388,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (389,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (390,NULL,8,11,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (391,NULL,8,11,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (392,NULL,8,11,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (393,NULL,8,11,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (394,NULL,8,11,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (395,NULL,8,11,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (396,NULL,8,11,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (397,NULL,8,11,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (398,NULL,8,11,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (399,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (400,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (401,NULL,8,11,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (402,NULL,8,11,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (403,NULL,8,11,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (404,NULL,8,11,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (405,NULL,8,11,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (406,NULL,8,11,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (407,NULL,8,11,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (408,NULL,8,11,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (409,NULL,8,11,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (410,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (411,NULL,8,11,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (412,NULL,8,11,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (413,NULL,8,11,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (414,NULL,8,11,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (415,NULL,8,11,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (416,NULL,8,11,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (417,NULL,8,11,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (418,NULL,8,11,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (419,NULL,8,9,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (420,NULL,8,9,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (421,NULL,8,9,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (422,NULL,8,9,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (423,NULL,8,9,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (424,NULL,8,9,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (425,NULL,8,9,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (426,NULL,8,9,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (427,NULL,8,9,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (428,NULL,8,9,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (429,NULL,8,9,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (430,NULL,8,10,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (431,NULL,8,10,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (432,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (433,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (434,NULL,8,10,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (435,NULL,8,10,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (436,NULL,8,10,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (437,NULL,8,10,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (438,NULL,8,10,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (439,NULL,8,10,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (440,NULL,8,10,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (441,NULL,8,12,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (442,NULL,8,12,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (443,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (444,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (445,NULL,8,12,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (446,NULL,8,12,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (447,NULL,8,12,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (448,NULL,8,12,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (449,NULL,8,12,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (450,NULL,8,12,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (451,NULL,8,12,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (452,NULL,8,9,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (453,NULL,8,9,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (454,NULL,8,9,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (455,NULL,8,9,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (456,NULL,8,9,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (457,NULL,8,9,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (458,NULL,8,9,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (459,NULL,8,9,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (460,NULL,8,9,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (461,NULL,8,9,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (462,NULL,8,9,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (463,NULL,8,10,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (464,NULL,8,10,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (465,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (466,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (467,NULL,8,10,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (468,NULL,8,10,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (469,NULL,8,10,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (470,NULL,8,10,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (471,NULL,8,10,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (472,NULL,8,10,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (473,NULL,8,10,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (474,NULL,8,12,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (475,NULL,8,12,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (476,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (477,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (478,NULL,8,12,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (479,NULL,8,12,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (480,NULL,8,12,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (481,NULL,8,12,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (482,NULL,8,12,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (483,NULL,8,12,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (484,NULL,8,12,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (485,NULL,8,9,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (486,NULL,8,9,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (487,NULL,8,9,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (488,NULL,8,9,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (489,NULL,8,9,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (490,NULL,8,9,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (491,NULL,8,9,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (492,NULL,8,9,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (493,NULL,8,9,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (494,NULL,8,9,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (495,NULL,8,9,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (496,NULL,8,10,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (497,NULL,8,10,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (498,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (499,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (500,NULL,8,10,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (501,NULL,8,10,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (502,NULL,8,10,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (503,NULL,8,10,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (504,NULL,8,10,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (505,NULL,8,10,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (506,NULL,8,10,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (507,NULL,8,12,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (508,NULL,8,12,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (509,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (510,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (511,NULL,8,12,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (512,NULL,8,12,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (513,NULL,8,12,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (514,NULL,8,12,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (515,NULL,8,12,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (516,NULL,8,12,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (517,NULL,8,12,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (518,NULL,8,9,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (519,NULL,8,9,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (520,NULL,8,9,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (521,NULL,8,9,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (522,NULL,8,9,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (523,NULL,8,9,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (524,NULL,8,9,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (525,NULL,8,9,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (526,NULL,8,9,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (527,NULL,8,9,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (528,NULL,8,9,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (529,NULL,8,10,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (530,NULL,8,10,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (531,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (532,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (533,NULL,8,10,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (534,NULL,8,10,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (535,NULL,8,10,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (536,NULL,8,10,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (537,NULL,8,10,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (538,NULL,8,10,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (539,NULL,8,10,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (540,NULL,8,12,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (541,NULL,8,12,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (542,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (543,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (544,NULL,8,12,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (545,NULL,8,12,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (546,NULL,8,12,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (547,NULL,8,12,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (548,NULL,8,12,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (549,NULL,8,12,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (550,NULL,8,12,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (551,NULL,8,9,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (552,NULL,8,9,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (553,NULL,8,9,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (554,NULL,8,9,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (555,NULL,8,9,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (556,NULL,8,9,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (557,NULL,8,9,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (558,NULL,8,9,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (559,NULL,8,9,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (560,NULL,8,9,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (561,NULL,8,9,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (562,NULL,8,10,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (563,NULL,8,10,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (564,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (565,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (566,NULL,8,10,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (567,NULL,8,10,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (568,NULL,8,10,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (569,NULL,8,10,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (570,NULL,8,10,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (571,NULL,8,10,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (572,NULL,8,10,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (573,NULL,8,12,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (574,NULL,8,12,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (575,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (576,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (577,NULL,8,12,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (578,NULL,8,12,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (579,NULL,8,12,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (580,NULL,8,12,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (581,NULL,8,12,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (582,NULL,8,12,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (583,NULL,8,12,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (584,NULL,8,9,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (585,NULL,8,9,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (586,NULL,8,9,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (587,NULL,8,9,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (588,NULL,8,9,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (589,NULL,8,9,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (590,NULL,8,9,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (591,NULL,8,9,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (592,NULL,8,9,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (593,NULL,8,9,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (594,NULL,8,9,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (595,NULL,8,10,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (596,NULL,8,10,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (597,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (598,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (599,NULL,8,10,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (600,NULL,8,10,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (601,NULL,8,10,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (602,NULL,8,10,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (603,NULL,8,10,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (604,NULL,8,10,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (605,NULL,8,10,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (606,NULL,8,12,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (607,NULL,8,12,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (608,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (609,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (610,NULL,8,12,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (611,NULL,8,12,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (612,NULL,8,12,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (613,NULL,8,12,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (614,NULL,8,12,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (615,NULL,8,12,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (616,NULL,8,12,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (617,NULL,8,9,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (618,NULL,8,9,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (619,NULL,8,9,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (620,NULL,8,9,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (621,NULL,8,9,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (622,NULL,8,9,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (623,NULL,8,9,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (624,NULL,8,9,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (625,NULL,8,9,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (626,NULL,8,9,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (627,NULL,8,9,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (628,NULL,8,10,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (629,NULL,8,10,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (630,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (631,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (632,NULL,8,10,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (633,NULL,8,10,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (634,NULL,8,10,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (635,NULL,8,10,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (636,NULL,8,10,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (637,NULL,8,10,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (638,NULL,8,10,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (639,NULL,8,12,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (640,NULL,8,12,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (641,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (642,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (643,NULL,8,12,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (644,NULL,8,12,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (645,NULL,8,12,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (646,NULL,8,12,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (647,NULL,8,12,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (648,NULL,8,12,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (649,NULL,8,12,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (650,NULL,8,9,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (651,NULL,8,9,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (652,NULL,8,9,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (653,NULL,8,9,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (654,NULL,8,9,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (655,NULL,8,9,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (656,NULL,8,9,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (657,NULL,8,9,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (658,NULL,8,9,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (659,NULL,8,9,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (660,NULL,8,9,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (661,NULL,8,10,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (662,NULL,8,10,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (663,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (664,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (665,NULL,8,10,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (666,NULL,8,10,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (667,NULL,8,10,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (668,NULL,8,10,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (669,NULL,8,10,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (670,NULL,8,10,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (671,NULL,8,10,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (672,NULL,8,12,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (673,NULL,8,12,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (674,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (675,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (676,NULL,8,12,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (677,NULL,8,12,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (678,NULL,8,12,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (679,NULL,8,12,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (680,NULL,8,12,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (681,NULL,8,12,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (682,NULL,8,12,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (683,NULL,8,9,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (684,NULL,8,9,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (685,NULL,8,9,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (686,NULL,8,9,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (687,NULL,8,9,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (688,NULL,8,9,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (689,NULL,8,9,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (690,NULL,8,9,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (691,NULL,8,9,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (692,NULL,8,9,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (693,NULL,8,9,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (694,NULL,8,10,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (695,NULL,8,10,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (696,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (697,NULL,8,10,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (698,NULL,8,10,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (699,NULL,8,10,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (700,NULL,8,10,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (701,NULL,8,10,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (702,NULL,8,10,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (703,NULL,8,10,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (704,NULL,8,10,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (705,NULL,8,12,NULL,NULL,NULL,NULL,NULL,266,820,NULL,NULL,NULL,NULL), (706,NULL,8,12,NULL,NULL,NULL,NULL,NULL,527,820,NULL,NULL,NULL,NULL), (707,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (708,NULL,8,12,NULL,NULL,NULL,NULL,NULL,57,820,NULL,NULL,NULL,NULL), (709,NULL,8,12,NULL,NULL,NULL,NULL,NULL,274,820,NULL,NULL,NULL,NULL), (710,NULL,8,12,NULL,NULL,NULL,NULL,NULL,9,820,NULL,NULL,NULL,NULL), (711,NULL,8,12,NULL,NULL,NULL,NULL,NULL,10,820,NULL,NULL,NULL,NULL), (712,NULL,8,12,NULL,NULL,NULL,NULL,NULL,11,820,NULL,NULL,NULL,NULL), (713,NULL,8,12,NULL,NULL,NULL,NULL,NULL,121,820,NULL,NULL,NULL,NULL), (714,NULL,8,12,NULL,NULL,NULL,NULL,NULL,122,820,NULL,NULL,NULL,NULL), (715,NULL,8,12,NULL,NULL,NULL,NULL,NULL,130,820,NULL,NULL,NULL,NULL), (716,NULL,8,1,NULL,NULL,NULL,'2015-06-21 21:59:03',NULL,57,820,NULL,NULL,NULL,NULL), (717,NULL,8,1,NULL,NULL,NULL,'2015-06-21 21:59:03',NULL,57,820,NULL,NULL,NULL,NULL), (718,NULL,8,1,NULL,NULL,NULL,'2015-06-21 21:59:03',NULL,10,820,NULL,NULL,NULL,NULL), (719,NULL,8,1,NULL,NULL,NULL,'2015-06-21 21:59:03',NULL,122,820,NULL,NULL,NULL,NULL), (720,NULL,8,2,NULL,NULL,NULL,'2015-06-21 21:59:04',NULL,57,820,NULL,NULL,NULL,NULL), (721,NULL,8,2,NULL,NULL,NULL,'2015-06-21 21:59:04',NULL,57,820,NULL,NULL,NULL,NULL), (722,NULL,8,2,NULL,NULL,NULL,'2015-06-21 21:59:04',NULL,10,820,NULL,NULL,NULL,NULL), (723,NULL,8,2,NULL,NULL,NULL,'2015-06-21 21:59:04',NULL,122,820,NULL,NULL,NULL,NULL), (724,NULL,8,3,NULL,NULL,NULL,'2015-06-21 21:59:04',NULL,57,820,NULL,NULL,NULL,NULL), (725,NULL,8,3,NULL,NULL,NULL,'2015-06-21 21:59:04',NULL,57,820,NULL,NULL,NULL,NULL), (726,NULL,8,3,NULL,NULL,NULL,'2015-06-21 21:59:04',NULL,10,820,NULL,NULL,NULL,NULL), (727,NULL,8,3,NULL,NULL,NULL,'2015-06-21 21:59:04',NULL,122,820,NULL,NULL,NULL,NULL), (728,NULL,8,4,NULL,NULL,NULL,'2015-06-21 21:59:05',NULL,57,820,NULL,NULL,NULL,NULL), (729,NULL,8,4,NULL,NULL,NULL,'2015-06-21 21:59:05',NULL,57,820,NULL,NULL,NULL,NULL), (730,NULL,8,4,NULL,NULL,NULL,'2015-06-21 21:59:05',NULL,10,820,NULL,NULL,NULL,NULL), (731,NULL,8,4,NULL,NULL,NULL,'2015-06-21 21:59:05',NULL,122,820,NULL,NULL,NULL,NULL), (732,NULL,8,5,NULL,NULL,NULL,'2015-06-21 21:59:05',NULL,57,820,NULL,NULL,NULL,NULL), (733,NULL,8,5,NULL,NULL,NULL,'2015-06-21 21:59:05',NULL,57,820,NULL,NULL,NULL,NULL), (734,NULL,8,5,NULL,NULL,NULL,'2015-06-21 21:59:05',NULL,10,820,NULL,NULL,NULL,NULL), (735,NULL,8,5,NULL,NULL,NULL,'2015-06-21 21:59:05',NULL,122,820,NULL,NULL,NULL,NULL), (736,NULL,8,6,NULL,NULL,NULL,'2015-06-21 21:59:06',NULL,57,820,NULL,NULL,NULL,NULL), (737,NULL,8,6,NULL,NULL,NULL,'2015-06-21 21:59:06',NULL,57,820,NULL,NULL,NULL,NULL), (738,NULL,8,6,NULL,NULL,NULL,'2015-06-21 21:59:06',NULL,10,820,NULL,NULL,NULL,NULL), (739,NULL,8,6,NULL,NULL,NULL,'2015-06-21 21:59:06',NULL,122,820,NULL,NULL,NULL,NULL), (740,NULL,8,8,NULL,NULL,NULL,'2015-06-21 21:59:06',NULL,57,820,NULL,NULL,NULL,NULL), (741,NULL,8,8,NULL,NULL,NULL,'2015-06-21 21:59:07',NULL,57,820,NULL,NULL,NULL,NULL), (742,NULL,8,8,NULL,NULL,NULL,'2015-06-21 21:59:07',NULL,10,820,NULL,NULL,NULL,NULL), (743,NULL,8,8,NULL,NULL,NULL,'2015-06-21 21:59:07',NULL,122,820,NULL,NULL,NULL,NULL), (744,NULL,8,9,NULL,NULL,NULL,'2015-06-21 21:59:07',NULL,57,820,NULL,NULL,NULL,NULL), (745,NULL,8,9,NULL,NULL,NULL,'2015-06-21 21:59:07',NULL,57,820,NULL,NULL,NULL,NULL), (746,NULL,8,9,NULL,NULL,NULL,'2015-06-21 21:59:07',NULL,10,820,NULL,NULL,NULL,NULL), (747,NULL,8,9,NULL,NULL,NULL,'2015-06-21 21:59:07',NULL,122,820,NULL,NULL,NULL,NULL), (748,NULL,8,10,NULL,NULL,NULL,'2015-06-21 21:59:07',NULL,57,820,NULL,NULL,NULL,NULL), (749,NULL,8,10,NULL,NULL,NULL,'2015-06-21 21:59:08',NULL,57,820,NULL,NULL,NULL,NULL), (750,NULL,8,10,NULL,NULL,NULL,'2015-06-21 21:59:08',NULL,10,820,NULL,NULL,NULL,NULL), (751,NULL,8,10,NULL,NULL,NULL,'2015-06-21 21:59:08',NULL,122,820,NULL,NULL,NULL,NULL), (752,NULL,8,11,NULL,NULL,NULL,'2015-06-21 21:59:08',NULL,57,820,NULL,NULL,NULL,NULL), (753,NULL,8,11,NULL,NULL,NULL,'2015-06-21 21:59:08',NULL,57,820,NULL,NULL,NULL,NULL), (754,NULL,8,11,NULL,NULL,NULL,'2015-06-21 21:59:08',NULL,10,820,NULL,NULL,NULL,NULL), (755,NULL,8,11,NULL,NULL,NULL,'2015-06-21 21:59:08',NULL,122,820,NULL,NULL,NULL,NULL), (756,NULL,8,12,NULL,NULL,NULL,'2015-06-21 21:59:09',NULL,57,820,NULL,NULL,NULL,NULL), (757,NULL,8,12,NULL,NULL,NULL,'2015-06-21 21:59:09',NULL,57,820,NULL,NULL,NULL,NULL), (758,NULL,8,12,NULL,NULL,NULL,'2015-06-21 21:59:09',NULL,10,820,NULL,NULL,NULL,NULL), (759,NULL,8,12,NULL,NULL,NULL,'2015-06-21 21:59:09',NULL,122,820,NULL,NULL,NULL,NULL), (760,NULL,8,13,NULL,NULL,NULL,'2015-06-21 21:59:09',NULL,57,820,NULL,NULL,NULL,NULL), (761,NULL,8,13,NULL,NULL,NULL,'2015-06-21 21:59:09',NULL,57,820,NULL,NULL,NULL,NULL), (762,NULL,8,13,NULL,NULL,NULL,'2015-06-21 21:59:09',NULL,10,820,NULL,NULL,NULL,NULL), (763,NULL,8,13,NULL,NULL,NULL,'2015-06-21 21:59:09',NULL,122,820,NULL,NULL,NULL,NULL), (764,NULL,8,14,NULL,NULL,NULL,'2015-06-21 21:59:10',NULL,57,820,NULL,NULL,NULL,NULL), (765,NULL,8,14,NULL,NULL,NULL,'2015-06-21 21:59:10',NULL,57,820,NULL,NULL,NULL,NULL), (766,NULL,8,14,NULL,NULL,NULL,'2015-06-21 21:59:10',NULL,10,820,NULL,NULL,NULL,NULL), (767,NULL,8,14,NULL,NULL,NULL,'2015-06-21 21:59:10',NULL,122,820,NULL,NULL,NULL,NULL), (768,NULL,8,15,NULL,NULL,NULL,'2015-06-21 21:59:10',NULL,57,820,NULL,NULL,NULL,NULL), (769,NULL,8,15,NULL,NULL,NULL,'2015-06-21 21:59:10',NULL,57,820,NULL,NULL,NULL,NULL), (770,NULL,8,15,NULL,NULL,NULL,'2015-06-21 21:59:10',NULL,10,820,NULL,NULL,NULL,NULL), (771,NULL,8,15,NULL,NULL,NULL,'2015-06-21 21:59:10',NULL,122,820,NULL,NULL,NULL,NULL), (772,NULL,8,16,NULL,NULL,NULL,'2015-06-21 21:59:11',NULL,57,820,NULL,NULL,NULL,NULL), (773,NULL,8,16,NULL,NULL,NULL,'2015-06-21 21:59:11',NULL,57,820,NULL,NULL,NULL,NULL), (774,NULL,8,16,NULL,NULL,NULL,'2015-06-21 21:59:11',NULL,10,820,NULL,NULL,NULL,NULL), (775,NULL,8,16,NULL,NULL,NULL,'2015-06-21 21:59:11',NULL,122,820,NULL,NULL,NULL,NULL), (776,NULL,8,17,NULL,NULL,NULL,'2015-06-21 21:59:11',NULL,57,820,NULL,NULL,NULL,NULL), (777,NULL,8,17,NULL,NULL,NULL,'2015-06-21 21:59:11',NULL,57,820,NULL,NULL,NULL,NULL), (778,NULL,8,17,NULL,NULL,NULL,'2015-06-21 21:59:11',NULL,10,820,NULL,NULL,NULL,NULL), (779,NULL,8,17,NULL,NULL,NULL,'2015-06-21 21:59:11',NULL,122,820,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `job_posting` ENABLE KEYS */; UNLOCK TABLES; # Dump of table major # ------------------------------------------------------------ DROP TABLE IF EXISTS `major`; CREATE TABLE `major` ( `major_id` int(8) NOT NULL AUTO_INCREMENT, `major_category_code` varchar(10) DEFAULT NULL, `major_category` varchar(20) DEFAULT NULL, `major_sub_category_code` varchar(10) DEFAULT NULL, `major_sub_category` varchar(40) DEFAULT NULL, `major_code` varchar(10) DEFAULT NULL, `major_name` varchar(40) DEFAULT NULL, `major_level` varchar(10) DEFAULT NULL, `number_of_school` int(11) DEFAULT NULL, PRIMARY KEY (`major_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; LOCK TABLES `major` WRITE; /*!40000 ALTER TABLE `major` DISABLE KEYS */; INSERT INTO `major` (`major_id`, `major_category_code`, `major_category`, `major_sub_category_code`, `major_sub_category`, `major_code`, `major_name`, `major_level`, `number_of_school`) VALUES (566,'55','??????','5501','???','550101','??????????','??',NULL), (567,'55','??????','5501','???','550103','?????????','??',NULL), (568,'55','??????','5501','???','550105','??????','??',NULL), (569,'55','??????','5501','???','550107','???????????','??',NULL), (570,'55','??????','5501','???','550109','??????','??',NULL), (571,'55','??????','5502','???','550202','????????','??',NULL), (572,'55','??????','5502','???','550204','???????','??',NULL), (573,'55','??????','5502','???','550206','????????','??',NULL), (574,'55','??????','5503','?????','550301','????????','??',NULL), (575,'55','??????','5503','?????','550303','????????','??',NULL), (576,'55','??????','5503','?????','550305','?????????','??',NULL), (577,'55','??????','5503','?????','550307','??????','??',NULL), (578,'55','??????','5503','?????','550309','??????????????','??',NULL), (579,'55','??????','5503','?????','550311','????','??',NULL), (580,'55','??????','5501','???','550102','????','??',NULL), (581,'55','??????','5501','???','550104','???????????','??',NULL), (582,'55','??????','5501','???','550106','?????????','??',NULL), (583,'55','??????','5501','???','550108','????????','??',NULL), (584,'55','??????','5502','???','550201','?????????','??',NULL), (585,'55','??????','5502','???','550203','?????????','??',NULL), (586,'55','??????','5502','???','550205','???????','??',NULL), (587,'55','??????','5502','???','550207','???????','??',NULL), (588,'55','??????','5503','?????','550302','?????????','??',NULL), (589,'55','??????','5503','?????','550304','???????','??',NULL), (590,'55','??????','5503','?????','550306','?????','??',NULL), (591,'55','??????','5503','?????','550308','????????????','??',NULL), (592,'55','??????','5503','?????','550310','???????','??',2), (593,'55','??????','5503','?????','550312','???????','??',NULL), (594,'62','???','6201','?????','620101','??','??',NULL), (595,'62','???','6201','?????','620103','???????','??',NULL), (596,'62','???','6201','?????','620105','?????','??',NULL), (597,'62','???','6201','?????','620107','????','??',NULL), (598,'62','???','6201','?????','620109','???????','??',NULL), (599,'62','???','6201','?????','620111','?????','??',NULL), (600,'62','???','6201','?????','620113','???????','??',NULL), (601,'62','???','6202','?????','620201','????','??',NULL), (602,'62','???','6202','?????','620203','??','??',NULL), (603,'62','???','6202','?????','620205','???????','??',NULL), (604,'62','???','6202','?????','620207','????','??',NULL), (605,'62','???','6203','?????','620301','????','??',NULL), (606,'62','???','6203','?????','620303','???????','??',NULL), (607,'62','???','6203','?????','620305','????','??',NULL), (608,'62','???','6204','?????','620401','????','??',NULL), (609,'62','???','6204','?????','620403','?????','??',NULL), (610,'62','???','6204','?????','620405','????','??',NULL), (611,'62','???','6205','?????','620501','??????','??',NULL), (612,'62','???','6205','?????','620503','????','??',NULL), (613,'62','???','6205','?????','620505','????','??',NULL), (614,'62','???','6205','?????','620551','????','??',NULL), (615,'62','???','6201','?????','620102','??','??',NULL), (616,'62','???','6201','?????','620104','????','??',NULL), (617,'62','???','6201','?????','620106','????','??',NULL), (618,'62','???','6201','?????','620108','??????','??',NULL), (619,'62','???','6201','?????','620110','???????','??',NULL), (620,'62','???','6201','?????','620112','?????','??',NULL), (621,'62','???','6201','?????','620121','???????','??',NULL), (622,'62','???','6202','?????','620202','??????','??',NULL), (623,'62','???','6202','?????','620204','?????','??',NULL), (624,'62','???','6202','?????','620206','?????','??',NULL), (625,'62','???','6202','?????','620208','????','??',NULL), (626,'62','???','6203','?????','620302','??????','??',NULL), (627,'62','???','6203','?????','620304','??????','??',NULL), (628,'62','???','6203','?????','620306','???????','??',NULL), (629,'62','???','6204','?????','620402','???????','??',NULL), (630,'62','???','6204','?????','620404','????','??',NULL), (631,'62','???','6204','?????','620406','???????','??',NULL), (632,'62','???','6205','?????','620502','??????','??',NULL), (633,'62','???','6205','?????','620504','??????','??',NULL), (634,'62','???','6205','?????','620506','????????','??',NULL), (635,'59','?????','5901','????','590101','???????','??',NULL), (636,'59','?????','5901','????','590103','????????','??',NULL), (637,'59','?????','5901','????','590105','????????','??',5), (638,'59','?????','5901','????','590107','??????','??',NULL), (639,'59','?????','5901','????','590109','??????','??',NULL), (640,'59','?????','5901','????','590111','??????????','??',NULL), (641,'59','?????','5901','????','590114','?????????','??',NULL), (642,'59','?????','5901','????','590116','?????????','??',NULL), (643,'59','?????','5901','????','590118','??????','??',NULL), (644,'59','?????','5902','?????','590201','????????','??',NULL), (645,'59','?????','5902','?????','590203','?????????','??',NULL), (646,'59','?????','5902','?????','590205','?????????','??',NULL), (647,'59','?????','5902','?????','590207','???????','??',NULL), (648,'59','?????','5902','?????','590209','??????','??',NULL), (649,'59','?????','5902','?????','590211','?????','??',NULL), (650,'59','?????','5902','?????','590213','????????','??',NULL), (651,'59','?????','5902','?????','590215','??????','??',NULL), (652,'59','?????','5902','?????','590217','????','??',NULL), (653,'59','?????','5902','?????','590219','????????','??',NULL), (654,'59','?????','5902','?????','590223','??????','??',NULL), (655,'59','?????','5902','?????','590225','????????','??',NULL), (656,'59','?????','5902','?????','590231','?????????','??',NULL), (657,'59','?????','5903','???','590302','??????','??',NULL), (658,'59','?????','5903','???','590304','??????','??',NULL), (659,'59','?????','5903','???','590306','????????','??',NULL), (660,'59','?????','5903','???','590308','????','??',NULL), (661,'59','?????','5903','???','590310','????','??',NULL), (662,'59','?????','5903','???','590351','????','??',NULL), (663,'59','?????','5901','????','590102','???????','??',NULL), (664,'59','?????','5901','????','590104','???????','??',NULL), (665,'59','?????','5901','????','590106','???????','??',NULL), (666,'59','?????','5901','????','590108','????','??',NULL), (667,'59','?????','5901','????','590110','???????','??',NULL), (668,'59','?????','5901','????','590113','????','??',NULL), (669,'59','?????','5901','????','590115','??????????','??',NULL), (670,'59','?????','5901','????','590117','??????','??',NULL), (671,'59','?????','5901','????','590119','???????','??',NULL), (672,'59','?????','5902','?????','590202','??????','??',NULL), (673,'59','?????','5902','?????','590204','?????????','??',NULL), (674,'59','?????','5902','?????','590206','??????','??',NULL), (675,'59','?????','5902','?????','590208','??????','??',NULL), (676,'59','?????','5902','?????','590210','?????','??',NULL), (677,'59','?????','5902','?????','590212','????????','??',NULL), (678,'59','?????','5902','?????','590214','?????','??',NULL), (679,'59','?????','5902','?????','590216','??????','??',NULL), (680,'59','?????','5902','?????','590218','?????','??',NULL), (681,'59','?????','5902','?????','590220','?????????','??',NULL), (682,'59','?????','5902','?????','590224','???????????','??',NULL), (683,'59','?????','5902','?????','590226','???????','??',NULL), (684,'59','?????','5903','???','590301','????','??',NULL), (685,'59','?????','5903','???','590303','?????','??',NULL), (686,'59','?????','5903','???','590305','???????','??',NULL), (687,'59','?????','5903','???','590307','??????','??',NULL), (688,'59','?????','5903','???','590309','????','??',NULL), (689,'59','?????','5903','???','590350','?????????','??',NULL), (690,'69','???','6901','?????','690101','????','??',NULL), (691,'69','???','6901','?????','690103','????','??',NULL), (692,'69','???','6901','?????','690105','???','??',NULL), (693,'69','???','6902','?????','690201','????','??',NULL), (694,'69','???','6902','?????','690203','????','??',NULL), (695,'69','???','6903','?????','690302','??????','??',NULL), (696,'69','???','6903','?????','690304','??????','??',NULL), (697,'69','???','6903','?????','690306','????????','??',NULL), (698,'69','???','6903','?????','690309','??????','??',NULL), (699,'69','???','6901','?????','690102','????','??',NULL), (700,'69','???','6901','?????','690104','????','??',NULL), (701,'69','???','6901','?????','690106','???????????','??',NULL), (702,'69','???','6902','?????','690202','????','??',NULL), (703,'69','???','6903','?????','690301','??????','??',NULL), (704,'69','???','6903','?????','690303','??????','??',NULL), (705,'69','???','6903','?????','690305','??????','??',NULL), (706,'69','???','6903','?????','690307','???????????','??',NULL), (707,'68','???','6801','?????','680101','??','??',NULL), (708,'68','???','6801','?????','680104','??','??',NULL), (709,'68','???','6801','?????','680106','????','??',NULL), (710,'68','???','6801','?????','680108','??????','??',NULL), (711,'68','???','6801','?????','680110','????','??',NULL), (712,'68','???','6801','?????','680112','????','??',NULL), (713,'68','???','6801','?????','680114','??','??',NULL), (714,'68','???','6802','?????','680202','????','??',NULL), (715,'68','???','6802','?????','680204','??????','??',NULL), (716,'68','???','6802','?????','680206','????','??',NULL), (717,'68','???','6803','?????','680301','????','??',NULL), (718,'68','???','6803','?????','680303','??????','??',NULL), (719,'68','???','6803','?????','680305','????','??',NULL), (720,'68','???','6804','???????','680402','??????','??',NULL), (721,'68','???','6801','?????','680102','??????','??',NULL), (722,'68','???','6801','?????','680105','????','??',NULL), (723,'68','???','6801','?????','680107','????','??',NULL), (724,'68','???','6801','?????','680109','????????','??',NULL), (725,'68','???','6801','?????','680111','????','??',NULL), (726,'68','???','6801','?????','680113','????','??',NULL), (727,'68','???','6802','?????','680201','???????','??',NULL), (728,'68','???','6802','?????','680203','??????','??',NULL), (729,'68','???','6802','?????','680205','????','??',NULL), (730,'68','???','6802','?????','680207','????','??',NULL), (731,'68','???','6803','?????','680302','????','??',NULL), (732,'68','???','6803','?????','680304','????','??',NULL), (733,'68','???','6804','???????','680401','??????','??',NULL), (734,'68','???','6804','???????','680403','??????','??',NULL), (735,'65','?????','6501','?????','650101','????','??',NULL), (736,'65','?????','6501','?????','650103','????????','??',NULL), (737,'65','?????','6501','?????','650105','????','??',NULL), (738,'65','?????','6501','?????','650107','????','??',NULL), (739,'65','?????','6501','?????','650109','???????','??',NULL), (740,'65','?????','6502','?????','650201','??????','??',NULL), (741,'65','?????','6502','?????','650203','????','??',NULL), (742,'65','?????','6502','?????','650205','???????','??',NULL), (743,'65','?????','6502','?????','650207','????','??',NULL), (744,'65','?????','6502','?????','650209','????','??',NULL), (745,'65','?????','6503','?????','650301','????','??',NULL), (746,'65','?????','6503','?????','650303','????','??',NULL), (747,'65','?????','6503','?????','650305','????????','??',NULL), (748,'65','?????','6503','?????','650307','?????????','??',NULL), (749,'65','?????','6503','?????','650309','????????','??',NULL), (750,'65','?????','6501','?????','650102','???????','??',NULL), (751,'65','?????','6501','?????','650104','????????','??',NULL), (752,'65','?????','6501','?????','650106','????','??',NULL), (753,'65','?????','6501','?????','650108','??????','??',NULL), (754,'65','?????','6501','?????','650110','??????','??',NULL), (755,'65','?????','6502','?????','650202','????','??',NULL), (756,'65','?????','6502','?????','650204','??????','??',NULL), (757,'65','?????','6502','?????','650206','??????','??',NULL), (758,'65','?????','6502','?????','650208','???????','??',NULL), (759,'65','?????','6502','?????','650251','??????????','??',NULL), (760,'65','?????','6503','?????','650302','???????','??',NULL), (761,'65','?????','6503','?????','650304','????','??',NULL), (762,'65','?????','6503','?????','650306','??????','??',NULL), (763,'65','?????','6503','?????','650308','????','??',NULL), (764,'65','?????','6503','?????','650310','??????','??',NULL), (765,'60','??','6001','???','600101','?????????','??',NULL), (766,'60','??','6001','???','600103','????????','??',NULL), (767,'60','??','6001','???','600105','?????????','??',NULL), (768,'60','??','6001','???','600107','???????','??',NULL), (769,'60','??','6001','???','600109','??????','??',NULL), (770,'60','??','6002','???','600202','??????','??',NULL), (771,'60','??','6002','???','600204','????','??',NULL), (772,'60','??','6003','???','600302','????','??',NULL), (773,'60','??','6003','???','600304','????','??',NULL), (774,'60','??','6003','???','600308','????????????','??',NULL), (775,'60','??','6001','???','600102','???????','??',NULL), (776,'60','??','6001','???','600104','?????????','??',NULL), (777,'60','??','6001','???','600106','????????','??',NULL), (778,'60','??','6001','???','600108','?????????','??',NULL), (779,'60','??','6002','???','600201','??????','??',NULL), (780,'60','??','6002','???','600203','??????','??',NULL), (781,'60','??','6003','???','600301','?????????','??',NULL), (782,'60','??','6003','???','600303','??????','??',NULL), (783,'60','??','6003','???','600305','?????????','??',NULL), (784,'52','?????','5201','?????','520101','???????','??',NULL), (785,'52','?????','5201','?????','520103','????','??',NULL), (786,'52','?????','5201','?????','520105','?????????','??',NULL), (787,'52','?????','5201','?????','520107','????','??',NULL), (788,'52','?????','5201','?????','520109','????????','??',NULL), (789,'52','?????','5201','?????','520112','?????????','??',NULL), (790,'52','?????','5201','?????','520114','????????','??',NULL), (791,'52','?????','5202','?????','520202','???????','??',NULL), (792,'52','?????','5202','?????','520204','??????','??',NULL), (793,'52','?????','5202','?????','520206','????????','??',NULL), (794,'52','?????','5202','?????','520208','??????','??',NULL), (795,'52','?????','5203','???????','520302','????????','??',NULL), (796,'52','?????','5203','???????','520304','??????????','??',NULL), (797,'52','?????','5204','?????','520402','????','??',NULL), (798,'52','?????','5204','?????','520404','????','??',NULL), (799,'52','?????','5204','?????','520406','??????','??',NULL), (800,'52','?????','5204','?????','520408','??????','??',NULL), (801,'52','?????','5204','?????','520411','????','??',NULL), (802,'52','?????','5205','?????','520502','????','??',NULL), (803,'52','?????','5205','?????','520504','????','??',NULL), (804,'52','?????','5205','?????','520506','????????','??',NULL), (805,'52','?????','5205','?????','520508','????????','??',NULL), (806,'52','?????','5205','?????','520510','??????','??',NULL), (807,'52','?????','5205','?????','520512','?????????','??',NULL), (808,'52','?????','5205','?????','520514','?????','??',NULL), (809,'52','?????','5205','?????','520516','????','??',NULL), (810,'52','?????','5205','?????','520520','??????????','??',NULL), (811,'52','?????','5206','?????','520602','???????????','??',NULL), (812,'52','?????','5206','?????','520604','??????','??',NULL), (813,'52','?????','5206','?????','520606','???????','??',NULL), (814,'52','?????','5207','?????','520701','??????','??',NULL), (815,'52','?????','5207','?????','520703','??????','??',NULL), (816,'52','?????','5201','?????','520102','??????????','??',NULL), (817,'52','?????','5201','?????','520104','??????','??',NULL), (818,'52','?????','5201','?????','520106','??????','??',NULL), (819,'52','?????','5201','?????','520108','????????','??',NULL), (820,'52','?????','5201','?????','520110','?????????','??',NULL), (821,'52','?????','5201','?????','520113','??????','??',NULL), (822,'52','?????','5202','?????','520201','??????','??',NULL), (823,'52','?????','5202','?????','520203','????','??',NULL), (824,'52','?????','5202','?????','520205','??????','??',NULL), (825,'52','?????','5202','?????','520207','??????','??',NULL), (826,'52','?????','5203','???????','520301','????????','??',NULL), (827,'52','?????','5203','???????','520303','??????????','??',NULL), (828,'52','?????','5204','?????','520401','????','??',NULL), (829,'52','?????','5204','?????','520403','????????','??',NULL), (830,'52','?????','5204','?????','520405','??????','??',NULL), (831,'52','?????','5204','?????','520407','????','??',NULL), (832,'52','?????','5204','?????','520409','???????','??',NULL), (833,'52','?????','5205','?????','520501','????','??',NULL), (834,'52','?????','5205','?????','520503','????','??',NULL), (835,'52','?????','5205','?????','520505','????','??',NULL), (836,'52','?????','5205','?????','520507','????????','??',NULL), (837,'52','?????','5205','?????','520509','??????','??',NULL), (838,'52','?????','5205','?????','520511','????????','??',NULL), (839,'52','?????','5205','?????','520513','??????','??',NULL), (840,'52','?????','5205','?????','520515','????????','??',NULL), (841,'52','?????','5205','?????','520517','?????????','??',NULL), (842,'52','?????','5206','?????','520601','??????','??',NULL), (843,'52','?????','5206','?????','520603','???????','??',NULL), (844,'52','?????','5206','?????','520605','???????','??',NULL), (845,'52','?????','5206','?????','520607','????????','??',NULL), (846,'52','?????','5207','?????','520702','??????','??',NULL), (847,'52','?????','5208',NULL,'520801','??????','??',NULL), (848,'64','???','6401','?????','640101','????','??',NULL), (849,'64','???','6401','?????','640103','??','??',NULL), (850,'64','???','6401','?????','640105','???????','??',NULL), (851,'64','???','6401','?????','640107','???????','??',NULL), (852,'64','???','6401','?????','640151','???????','??',NULL), (853,'64','???','6402','????????','640202','???????','??',NULL), (854,'64','???','6401','?????','640102','????','??',NULL), (855,'64','???','6401','?????','640104','???????','??',NULL), (856,'64','???','6401','?????','640106','????','??',NULL), (857,'64','???','6401','?????','640108','??????','??',NULL), (858,'64','???','6402','????????','640201','???????','??',NULL), (859,'64','???','6402','????????','640221','????','??',NULL), (860,'51','?????','5101','?????','510101','??????','??',NULL), (861,'51','?????','5101','?????','510103','??????','??',NULL), (862,'51','?????','5101','?????','510105','????','??',NULL), (863,'51','?????','5101','?????','510107','???????','??',NULL), (864,'51','?????','5101','?????','510109','????','??',NULL), (865,'51','?????','5101','?????','510111','???????','??',NULL), (866,'51','?????','5101','?????','510113','?????????','??',NULL), (867,'51','?????','5101','?????','510130','????????','??',NULL), (868,'51','?????','5102','?????','510201','????','??',NULL), (869,'51','?????','5102','?????','510203','??????','??',NULL), (870,'51','?????','5102','?????','510205','??????','??',NULL), (871,'51','?????','5102','?????','510207','??????','??',NULL), (872,'51','?????','5102','?????','510209','??????','??',NULL), (873,'51','?????','5102','?????','510211','????','??',NULL), (874,'51','?????','5102','?????','510213','????','??',NULL), (875,'51','?????','5103','?????','510301','????','??',NULL), (876,'51','?????','5103','?????','510303','???????','??',NULL), (877,'51','?????','5103','?????','510305','??','??',NULL), (878,'51','?????','5103','?????','510307','???????','??',NULL), (879,'51','?????','5103','?????','510310','????','??',NULL), (880,'51','?????','5103','?????','510351','???????','??',NULL), (881,'51','?????','5104','?????','510402','???????','??',NULL), (882,'51','?????','5104','?????','510404','??????','??',NULL), (883,'51','?????','5105','?????','510502','??????','??',NULL), (884,'51','?????','5105','?????','510504','????????','??',NULL), (885,'51','?????','5105','?????','510506','???????','??',1), (886,'51','?????','5105','?????','510551','???????????','??',NULL), (887,'51','?????','5101','?????','510102','???????','??',NULL), (888,'51','?????','5101','?????','510104','????','??',NULL), (889,'51','?????','5101','?????','510106','????????','??',NULL), (890,'51','?????','5101','?????','510108','??????','??',NULL), (891,'51','?????','5101','?????','510110','????','??',NULL), (892,'51','?????','5101','?????','510112','??','??',NULL), (893,'51','?????','5101','?????','510114','?????????','??',NULL), (894,'51','?????','5101','?????','510131','????','??',NULL), (895,'51','?????','5102','?????','510202','????','??',NULL), (896,'51','?????','5102','?????','510204','???????????','??',NULL), (897,'51','?????','5102','?????','510206','??????????','??',NULL), (898,'51','?????','5102','?????','510208','??????','??',NULL), (899,'51','?????','5102','?????','510210','??????','??',NULL), (900,'51','?????','5102','?????','510212','??????','??',NULL), (901,'51','?????','5102','?????','510251','???????','??',NULL), (902,'51','?????','5103','?????','510302','??','??',NULL), (903,'51','?????','5103','?????','510304','??????','??',NULL), (904,'51','?????','5103','?????','510306','?????','??',NULL), (905,'51','?????','5103','?????','510308','???????','??',NULL), (906,'51','?????','5103','?????','510350','????','??',NULL), (907,'51','?????','5104','?????','510401','??????','??',NULL), (908,'51','?????','5104','?????','510403','??????','??',NULL), (909,'51','?????','5105','?????','510501','??????','??',NULL), (910,'51','?????','5105','?????','510503','??????','??',NULL), (911,'51','?????','5105','?????','510505','?????????','??',NULL), (912,'51','?????','5105','?????','510507','?????????','??',NULL), (913,'61','?????','6101','????','610101','????','??',NULL), (914,'61','?????','6101','????','610103','??????','??',NULL), (915,'61','?????','6101','????','610105','??????','??',NULL), (916,'61','?????','6102','?????','610201','??????','??',NULL), (917,'61','?????','6102','?????','610203','????','??',NULL), (918,'61','?????','6102','?????','610205','??????','??',NULL), (919,'61','?????','6102','?????','610207','????????','??',NULL), (920,'61','?????','6102','?????','610209','?????','??',NULL), (921,'61','?????','6102','?????','610211','???????','??',NULL), (922,'61','?????','6102','?????','610214','?????????','??',NULL), (923,'61','?????','6102','?????','610251','???????','??',NULL), (924,'61','?????','6103','???','610302','???????','??',NULL), (925,'61','?????','6103','???','610304','???????','??',NULL), (926,'61','?????','6103','???','610306','???????','??',NULL), (927,'61','?????','6103','???','610308','??????','??',NULL), (928,'61','?????','6103','???','610311','???????','??',NULL), (929,'61','?????','6103','???','610313','????','??',NULL), (930,'61','?????','6103','???','610315','????','??',NULL), (931,'61','?????','6103','???','610317','???????','??',NULL), (932,'61','?????','6103','???','610320','??????','??',NULL), (933,'61','?????','6104','?????','610402','????','??',NULL), (934,'61','?????','6104','?????','610404','???????','??',NULL), (935,'61','?????','6104','?????','610406','??????????','??',NULL), (936,'61','?????','6104','?????','610409','???????','??',NULL), (937,'61','?????','6104','?????','610411','?????????','??',NULL), (938,'61','?????','6101','????','610102','?????????','??',NULL), (939,'61','?????','6101','????','610104','??????','??',NULL), (940,'61','?????','6101','????','610151','?????????','??',NULL), (941,'61','?????','6102','?????','610202','?????????','??',NULL), (942,'61','?????','6102','?????','610204','????','??',NULL), (943,'61','?????','6102','?????','610206','?????????','??',NULL), (944,'61','?????','6102','?????','610208','????????','??',1), (945,'61','?????','6102','?????','610210','??????','??',NULL), (946,'61','?????','6102','?????','610212','???????','??',NULL), (947,'61','?????','6102','?????','610250','??????','??',NULL), (948,'61','?????','6103','???','610301','??????','??',NULL), (949,'61','?????','6103','???','610303','???????','??',NULL), (950,'61','?????','6103','???','610305','??????','??',NULL), (951,'61','?????','6103','???','610307','????','??',NULL), (952,'61','?????','6103','???','610309','???????','??',NULL), (953,'61','?????','6103','???','610312','???????','??',NULL), (954,'61','?????','6103','???','610314','?????????','??',NULL), (955,'61','?????','6103','???','610316','????','??',NULL), (956,'61','?????','6103','???','610318','???????','??',NULL), (957,'61','?????','6104','?????','610401','???????','??',NULL), (958,'61','?????','6104','?????','610403','????????','??',NULL), (959,'61','?????','6104','?????','610405','?????','??',NULL), (960,'61','?????','6104','?????','610408','??????','??',NULL), (961,'61','?????','6104','?????','610410','??????','??',NULL), (962,'53','??????','5301','?????','530101','???????','??',NULL), (963,'53','??????','5301','?????','530103','??????','??',NULL), (964,'53','??????','5302','?????','530201','??????','??',NULL), (965,'53','??????','5302','?????','530203','???????','??',NULL), (966,'53','??????','5302','?????','530205','?????????','??',NULL), (967,'53','??????','5302','?????','530207','????','??',NULL), (968,'53','??????','5302','?????','530209','????????','??',NULL), (969,'53','??????','5302','?????','530211','???????','??',NULL), (970,'53','??????','5303','?????','530301','??????','??',NULL), (971,'53','??????','5303','?????','530303','??????','??',NULL), (972,'53','??????','5303','?????','530305','??????','??',NULL), (973,'53','??????','5304','???????','530401','????????','??',NULL), (974,'53','??????','5304','???????','530403','???????','??',NULL), (975,'53','??????','5304','???????','530406','???????','??',NULL), (976,'53','??????','5301','?????','530102','??????','??',NULL), (977,'53','??????','5301','?????','530104','????????','??',NULL), (978,'53','??????','5302','?????','530202','????????','??',NULL), (979,'53','??????','5302','?????','530204','??????','??',NULL), (980,'53','??????','5302','?????','530206','????????','??',NULL), (981,'53','??????','5302','?????','530208','???????','??',NULL), (982,'53','??????','5302','?????','530210','??????','??',NULL), (983,'53','??????','5302','?????','530221','???????','??',NULL), (984,'53','??????','5303','?????','530302','??????','??',NULL), (985,'53','??????','5303','?????','530304','??????','??',NULL), (986,'53','??????','5303','?????','530306','??????','??',NULL), (987,'53','??????','5304','???????','530402','????????','??',NULL), (988,'53','??????','5304','???????','530404','????????','??',NULL), (989,'57','???','5701','???????','570101','??????','??',NULL), (990,'57','???','5701','???????','570103','?????','??',NULL), (991,'57','???','5702','????????','570201','????','??',NULL), (992,'57','???','5702','????????','570203','????????','??',NULL), (993,'57','???','5702','????????','570205','?????????','??',NULL), (994,'57','???','5702','????????','570207','????','??',NULL), (995,'57','???','5702','????????','570209','????','??',NULL), (996,'57','???','5702','????????','570211','??????','??',NULL), (997,'57','???','5703','???????','570301','??????????','??',NULL), (998,'57','???','5703','???????','570303','?????????','??',NULL), (999,'57','???','5704','?????????','570401','????','??',NULL), (1000,'57','???','5701','???????','570102','?????????','??',NULL), (1001,'57','???','5701','???????','570104','???????','??',NULL), (1002,'57','???','5702','????????','570202','????????','??',NULL), (1003,'57','???','5702','????????','570204','???????','??',NULL), (1004,'57','???','5702','????????','570206','???????','??',NULL), (1005,'57','???','5702','????????','570208','????????','??',NULL), (1006,'57','???','5702','????????','570210','??????','??',NULL), (1007,'57','???','5702','????????','570212','????????','??',NULL), (1008,'57','???','5703','???????','570302','?????????','??',NULL), (1009,'57','???','5703','???????','570304','????????','??',NULL), (1010,'57','???','5704','?????????','570402','????????','??',NULL), (1011,'56','???','5601','?????','560101','??????','??',NULL), (1012,'56','???','5601','?????','560103','?????????','??',NULL), (1013,'56','???','5601','?????','560105','??????','??',NULL), (1014,'56','???','5602','????????','560201','????','??',NULL), (1015,'56','???','5602','????????','560203','????','??',NULL), (1016,'56','???','5603','?????','560302','???????????','??',NULL), (1017,'56','???','5604','?????','560401','????????','??',NULL), (1018,'56','???','5604','?????','560405','??????????','??',NULL), (1019,'56','???','5604','?????','560411','??????','??',NULL), (1020,'56','???','5605','?????','560502','????','??',NULL), (1021,'56','???','5605','?????','560504','????','??',NULL), (1022,'56','???','5605','?????','560506','?????????','??',NULL), (1023,'56','???','5606','?????','560601','??????','??',NULL), (1024,'56','???','5606','?????','560603','???????','??',NULL), (1025,'56','???','5606','?????','560605','??????','??',NULL), (1026,'56','???','5607','????','560701','????????','??',NULL), (1027,'56','???','5607','????','560703','??????','??',NULL), (1028,'56','???','5601','?????','560102','????????','??',NULL), (1029,'56','???','5601','?????','560104','??????','??',NULL), (1030,'56','???','5601','?????','560106','??????','??',NULL), (1031,'56','???','5602','????????','560202','???????','??',NULL), (1032,'56','???','5603','?????','560301','??????','??',NULL), (1033,'56','???','5603','?????','560303','??????','??',NULL), (1034,'56','???','5604','?????','560404','?????????','??',NULL), (1035,'56','???','5604','?????','560406','???????????','??',NULL), (1036,'56','???','5605','?????','560501','??????','??',NULL), (1037,'56','???','5605','?????','560503','??????','??',NULL), (1038,'56','???','5605','?????','560505','??????','??',NULL), (1039,'56','???','5605','?????','560507','????????','??',NULL), (1040,'56','???','5606','?????','560602','????????','??',NULL), (1041,'56','???','5606','?????','560604','?????','??',NULL), (1042,'56','???','5606','?????','560606','??????','??',NULL), (1043,'56','???','5607','????','560702','????','??',NULL), (1044,'66','?????','6601','?????','660101','??','??',NULL), (1045,'66','?????','6601','?????','660103','????','??',NULL), (1046,'66','?????','6601','?????','660105','????','??',NULL), (1047,'66','?????','6601','?????','660107','????','??',NULL), (1048,'66','?????','6601','?????','660109','????','??',NULL), (1049,'66','?????','6601','?????','660111','????','??',NULL), (1050,'66','?????','6601','?????','660113','???????','??',NULL), (1051,'66','?????','6601','?????','660115','?????????','??',NULL), (1052,'66','?????','6601','?????','660119','??????','??',NULL), (1053,'66','?????','6601','?????','660122','??????','??',NULL), (1054,'66','?????','6601','?????','660131','?????','??',NULL), (1055,'66','?????','6602','???','660201','????','??',NULL), (1056,'66','?????','6602','???','660203','????','??',NULL), (1057,'66','?????','6602','???','660205','????','??',NULL), (1058,'66','?????','6602','???','660207','????','??',NULL), (1059,'66','?????','6602','???','660209','????','??',NULL), (1060,'66','?????','6602','???','660211','????','??',NULL), (1061,'66','?????','6602','???','660214','????','??',NULL), (1062,'66','?????','6602','???','660216','??????','??',NULL), (1063,'66','?????','6602','???','660218','????','??',NULL), (1064,'66','?????','6602','???','660219','??????','??',NULL), (1065,'66','?????','6602','???','660221','?????','??',NULL), (1066,'66','?????','6602','???','660223','????','??',NULL), (1067,'66','?????','6602','???','660225','????','??',NULL), (1068,'66','?????','6602','???','660227','????','??',NULL), (1069,'66','?????','6602','???','660241','??????','??',NULL), (1070,'66','?????','6602','???','660243','????','??',NULL), (1071,'66','?????','6602','???','660245','???????','??',NULL), (1072,'66','?????','6603','???','660302','????','??',NULL), (1073,'66','?????','6603','???','660304','????','??',NULL), (1074,'66','?????','6601','?????','660102','????','??',NULL), (1075,'66','?????','6601','?????','660104','????','??',NULL), (1076,'66','?????','6601','?????','660106','????','??',NULL), (1077,'66','?????','6601','?????','660108','????','??',NULL), (1078,'66','?????','6601','?????','660110','????','??',NULL), (1079,'66','?????','6601','?????','660112','??','??',NULL), (1080,'66','?????','6601','?????','660114','??????','??',NULL), (1081,'66','?????','6601','?????','660116','??????','??',NULL), (1082,'66','?????','6601','?????','660120','??????','??',NULL), (1083,'66','?????','6601','?????','660130','?????','??',NULL), (1084,'66','?????','6601','?????','660132','?????','??',NULL), (1085,'66','?????','6602','???','660202','????','??',NULL), (1086,'66','?????','6602','???','660204','????','??',NULL), (1087,'66','?????','6602','???','660206','????','??',NULL), (1088,'66','?????','6602','???','660208','????','??',NULL), (1089,'66','?????','6602','???','660210','????','??',2), (1090,'66','?????','6602','???','660212','??????','??',NULL), (1091,'66','?????','6602','???','660215','????','??',NULL), (1092,'66','?????','6602','???','660217','????','??',NULL), (1093,'66','?????','6602','???','660219','????','??',NULL), (1094,'66','?????','6602','???','660220','??????','??',NULL), (1095,'66','?????','6602','???','660222','?????','??',NULL), (1096,'66','?????','6602','???','660224','??????????','??',NULL), (1097,'66','?????','6602','???','660226','????','??',NULL), (1098,'66','?????','6602','???','660240','??','??',NULL), (1099,'66','?????','6602','???','660242','????','??',NULL), (1100,'66','?????','6602','???','660244','???','??',NULL), (1101,'66','?????','6603','???','660301','????','??',NULL), (1102,'66','?????','6603','???','660303','????','??',NULL), (1103,'66','?????','6603','???','660305','???????','??',NULL), (1104,'63','?????','6301','?????','630101','????','??',NULL), (1105,'63','?????','6301','?????','630103','???','??',NULL), (1106,'63','?????','6301','?????','630105','???','??',NULL), (1107,'63','?????','6301','?????','630107','?????','??',NULL), (1108,'63','?????','6301','?????','630109','????','??',1), (1109,'63','?????','6302','???','630202','??','??',NULL), (1110,'63','?????','6303','???','630302','??','??',NULL), (1111,'63','?????','6304','?????','630401','??????','??',NULL), (1112,'63','?????','6304','?????','630403','??????','??',NULL), (1113,'63','?????','6304','?????','630405','??????','??',NULL), (1114,'63','?????','6304','?????','630407','????','??',NULL), (1115,'63','?????','6304','?????','630409','??????','??',NULL), (1116,'63','?????','6304','?????','630411','????????','??',1), (1117,'63','?????','6304','?????','630413','??????','??',NULL), (1118,'63','?????','6305','?????','630502','??????','??',NULL), (1119,'63','?????','6305','?????','630504','????','??',NULL), (1120,'63','?????','6301','?????','630102','????','??',NULL), (1121,'63','?????','6301','?????','630104','???','??',NULL), (1122,'63','?????','6301','?????','630106','???','??',NULL), (1123,'63','?????','6301','?????','630108','????','??',NULL), (1124,'63','?????','6302','???','630201','??','??',NULL), (1125,'63','?????','6303','???','630301','??','??',NULL), (1126,'63','?????','6303','???','630303','???','??',NULL), (1127,'63','?????','6304','?????','630402','??????','??',NULL), (1128,'63','?????','6304','?????','630404','?????','??',NULL), (1129,'63','?????','6304','?????','630406','??????','??',NULL), (1130,'63','?????','6304','?????','630408','??????','??',1), (1131,'63','?????','6304','?????','630410','?????????','??',NULL), (1132,'63','?????','6304','?????','630412','??????','??',NULL), (1133,'63','?????','6305','?????','630501','????','??',NULL), (1134,'63','?????','6305','?????','630503','??????','??',NULL), (1135,'67','???????','6701','?????','670101','????','??',NULL), (1136,'67','???????','6701','?????','670103','????????','??',NULL), (1137,'67','???????','6701','?????','670105','??????','??',NULL), (1138,'67','???????','6701','?????','670107','??????','??',NULL), (1139,'67','???????','6701','?????','670109','?????????','??',NULL), (1140,'67','???????','6701','?????','670111','??????????','??',NULL), (1141,'67','???????','6701','?????','670113','????????','??',NULL), (1142,'67','???????','6701','?????','670116','?????','??',NULL), (1143,'67','???????','6702','?????','670201','????','??',NULL), (1144,'67','???????','6702','?????','670203','????','??',NULL), (1145,'67','???????','6702','?????','670205','????','??',NULL), (1146,'67','???????','6702','?????','670207','??','??',NULL), (1147,'67','???????','6702','?????','670211','????','??',NULL), (1148,'67','???????','6703','?????','670301','??????','??',NULL), (1149,'67','???????','6703','?????','670303','????','??',NULL), (1150,'67','???????','6703','?????','670305','????','??',NULL), (1151,'67','???????','6703','?????','670307','?????','??',NULL), (1152,'67','???????','6703','?????','670309','??????','??',NULL), (1153,'67','???????','6703','?????','670311','?????','??',NULL), (1154,'67','???????','6703','?????','670313','???????','??',NULL), (1155,'67','???????','6703','?????','670331','??','??',NULL), (1156,'67','???????','6703','?????','670333','??','??',NULL), (1157,'67','???????','6701','?????','670102','??????','??',NULL), (1158,'67','???????','6701','?????','670104','??????','??',NULL), (1159,'67','???????','6701','?????','670106','??????','??',NULL), (1160,'67','???????','6701','?????','670108','??????','??',NULL), (1161,'67','???????','6701','?????','670110','?????????','??',NULL), (1162,'67','???????','6701','?????','670112','???????','??',NULL), (1163,'67','???????','6701','?????','670114','??????','??',NULL), (1164,'67','???????','6701','?????','670118','??','??',NULL), (1165,'67','???????','6702','?????','670202','????','??',NULL), (1166,'67','???????','6702','?????','670204','????','??',NULL), (1167,'67','???????','6702','?????','670206','????','??',NULL), (1168,'67','???????','6702','?????','670210','??????','??',NULL), (1169,'67','???????','6702','?????','670212','????','??',NULL), (1170,'67','???????','6703','?????','670302','??????','??',NULL), (1171,'67','???????','6703','?????','670304','???????','??',NULL), (1172,'67','???????','6703','?????','670306','????','??',NULL), (1173,'67','???????','6703','?????','670308','???????','??',NULL), (1174,'67','???????','6703','?????','670310','??????','??',NULL), (1175,'67','???????','6703','?????','670312','???????','??',NULL), (1176,'67','???????','6703','?????','670330','????','??',NULL), (1177,'67','???????','6703','?????','670332','????','??',NULL), (1178,'58','???','5801','???????','580101','???????','??',NULL), (1179,'58','???','5801','???????','580103','????','??',NULL), (1180,'58','???','5801','???????','580105','???????','??',NULL), (1181,'58','???','5801','???????','580107','?????????','??',NULL), (1182,'58','???','5801','???????','580109','????','??',NULL), (1183,'58','???','5801','???????','580111','??????','??',NULL), (1184,'58','???','5801','???????','580113','????????','??',NULL), (1185,'58','???','5801','???????','580115','???????','??',NULL), (1186,'58','???','5801','???????','580117','???????','??',NULL), (1187,'58','???','5801','???????','580119','???????????','??',NULL), (1188,'58','???','5801','???????','580150','????????','??',NULL), (1189,'58','???','5802','????','580201','???????','??',NULL), (1190,'58','???','5802','????','580203','?????????','??',NULL), (1191,'58','???','5802','????','580205','???????','??',NULL), (1192,'58','???','5802','????','580207','???????','??',NULL), (1193,'58','???','5802','????','580209','???????','??',NULL), (1194,'58','???','5803','?????','580301','?????????','??',NULL), (1195,'58','???','5803','?????','580303','?????????','??',NULL), (1196,'58','???','5803','?????','580305','???????????','??',NULL), (1197,'58','???','5803','?????','580307','??????','??',NULL), (1198,'58','???','5803','?????','580311','?????????','??',NULL), (1199,'58','???','5804','???','580401','?????????','??',NULL), (1200,'58','???','5804','???','580403','??????','??',NULL), (1201,'58','???','5804','???','580405','?????????','??',NULL), (1202,'58','???','5804','???','580407','???????','??',NULL), (1203,'58','???','5801','???????','580102','????????','??',NULL), (1204,'58','???','5801','???????','580104','?????','??',NULL), (1205,'58','???','5801','???????','580106','???????','??',NULL), (1206,'58','???','5801','???????','580108','????????','??',NULL), (1207,'58','???','5801','???????','580110','??????????','??',NULL), (1208,'58','???','5801','???????','580112','?????????','??',NULL), (1209,'58','???','5801','???????','580114','??????','??',NULL), (1210,'58','???','5801','???????','580116','???????','??',NULL), (1211,'58','???','5801','???????','580118','???????????','??',NULL), (1212,'58','???','5801','???????','580120','????????','??',NULL), (1213,'58','???','5801','???????','580151','???????','??',NULL), (1214,'58','???','5802','????','580202','???????','??',NULL), (1215,'58','???','5802','????','580204','?????????','??',NULL), (1216,'58','???','5802','????','580206','??????','??',NULL), (1217,'58','???','5802','????','580208','?????????','??',NULL), (1218,'58','???','5802','????','580210','???????','??',NULL), (1219,'58','???','5803','?????','580302','?????????','??',NULL), (1220,'58','???','5803','?????','580304','?????????','??',NULL), (1221,'58','???','5803','?????','580306','??????','??',NULL), (1222,'58','???','5803','?????','580309','????','??',NULL), (1223,'58','???','5803','?????','580312','?????????','??',NULL), (1224,'58','???','5804','???','580402','?????????','??',NULL), (1225,'58','???','5804','???','580404','??????','??',NULL), (1226,'58','???','5804','???','580406','??????','??',NULL), (1227,'58','???','5804','???','580408','????????','??',NULL), (1228,'54','????????','5401','?????','540101','??????','??',NULL), (1229,'54','????????','5401','?????','540103','?????????','??',NULL), (1230,'54','????????','5401','?????','540105','?????????','??',NULL), (1231,'54','????????','5401','?????','540107','?????????','??',NULL), (1232,'54','????????','5401','?????','540109','?????????','??',NULL), (1233,'54','????????','5401','?????','540112','?????????','??',NULL), (1234,'54','????????','5402','????????','540202','??????','??',NULL), (1235,'54','????????','5402','????????','540204','????','??',NULL), (1236,'54','????????','5402','????????','540206','????????','??',NULL), (1237,'54','????????','5402','????????','540208','?????????','??',NULL), (1238,'54','????????','5402','????????','540251','??????','??',NULL), (1239,'54','????????','5403','?????','540302','???????','??',NULL), (1240,'54','????????','5403','?????','540304','??????????','??',NULL), (1241,'54','????????','5403','?????','540306','????','??',NULL), (1242,'54','????????','5403','?????','540308','???????','??',NULL), (1243,'54','????????','5403','?????','540310','???????','??',NULL), (1244,'54','????????','5404','???????','540401','????','??',NULL), (1245,'54','????????','5404','???????','540403','??????','??',NULL), (1246,'54','????????','5404','???????','540405','????????','??',NULL), (1247,'54','????????','5404','???????','540407','??????','??',1), (1248,'54','????????','5405','?????','540501','??????','??',NULL), (1249,'54','????????','5405','?????','540503','????','??',NULL), (1250,'54','????????','5405','?????','540505','??????','??',NULL), (1251,'54','????????','5406','???','540601','??????','??',NULL), (1252,'54','????????','5406','???','540603','?????????','??',NULL), (1253,'54','????????','5406','???','540605','?????????????','??',NULL), (1254,'54','????????','5406','???','540607','????','??',NULL), (1255,'54','????????','5406','???','540609','??????','??',NULL), (1256,'54','????????','5401','?????','540102','???????????','??',NULL), (1257,'54','????????','5401','?????','540104','?????????','??',NULL), (1258,'54','????????','5401','?????','540106','???????????','??',NULL), (1259,'54','????????','5401','?????','540108','????????????','??',NULL), (1260,'54','????????','5401','?????','540110','??????????','??',NULL), (1261,'54','????????','5402','????????','540201','????','??',NULL), (1262,'54','????????','5402','????????','540203','???????','??',NULL), (1263,'54','????????','5402','????????','540205','????????','??',NULL), (1264,'54','????????','5402','????????','540207','????????','??',NULL), (1265,'54','????????','5402','????????','540210','?????????','??',NULL), (1266,'54','????????','5403','?????','540301','??????','??',NULL), (1267,'54','????????','5403','?????','540303','????????','??',NULL), (1268,'54','????????','5403','?????','540305','???????','??',NULL), (1269,'54','????????','5403','?????','540307','????','??',NULL), (1270,'54','????????','5403','?????','540309','???????','??',NULL), (1271,'54','????????','5403','?????','540311','?????????','??',NULL), (1272,'54','????????','5404','???????','540402','??????','??',NULL), (1273,'54','????????','5404','???????','540404','???????','??',NULL), (1274,'54','????????','5404','???????','540406','????????????','??',NULL), (1275,'54','????????','5404','???????','540411','????????','??',NULL), (1276,'54','????????','5405','?????','540502','????','??',NULL), (1277,'54','????????','5405','?????','540504','????????','??',NULL), (1278,'54','????????','5405','?????','540506','??????','??',NULL), (1279,'54','????????','5406','???','540602','???????','??',NULL), (1280,'54','????????','5406','???','540604','?????','??',NULL), (1281,'54','????????','5406','???','540606','?????????????','??',NULL), (1282,'54','????????','5406','???','540608','?????????','??',NULL), (2001,'01','??','0101','???','010101','??','??',NULL), (2002,'01','??','0101','???','010102','???','??',NULL), (2003,'01','??','0101','???','010103K','???','??',NULL), (2004,'02','???','0201','????','020101','???','??',NULL), (2005,'02','???','0201','????','020102','?????','??',NULL), (2006,'02','???','0202','????','020201K','???','??',NULL), (2007,'02','???','0202','????','020202','???','??',NULL), (2008,'02','???','0203','????','020301K','???','??',NULL), (2009,'02','???','0203','????','020302','????','??',NULL), (2010,'02','???','0203','????','020303','???','??',NULL), (2011,'02','???','0203','????','020304','???','??',NULL), (2012,'02','???','0204','??????','020401','???????','??',NULL), (2013,'02','???','0204','??????','020402','????','??',NULL), (2014,'03','??','0301','??','030101K','??','??',NULL), (2015,'03','??','0302','????','030201','???????','??',NULL), (2016,'03','??','0302','????','030202','????','??',NULL), (2017,'03','??','0302','????','030203','???','??',NULL), (2018,'03','??','0303','????','030301','???','??',NULL), (2019,'03','??','0303','????','030302','????','??',NULL), (2020,'03','??','0304','????','030401','???','??',NULL), (2021,'03','??','0305','????????','030501','??????','??',NULL), (2022,'03','??','0305','????????','030502','???????','??',NULL), (2023,'03','??','0305','????????','030503','??????','??',NULL), (2024,'03','??','0306','????','030601K','???','??',NULL), (2025,'03','??','0306','????','030602K','???','??',NULL), (2026,'03','??','0306','????','030603K','????','??',NULL), (2027,'04','???','0401','????','040101','???','??',NULL), (2028,'04','???','0401','????','040102','????','??',NULL), (2029,'04','???','0401','????','040103','????','??',NULL), (2030,'04','???','0401','????','040104','?????(?????????????????)','??',NULL), (2031,'04','???','0401','????','040105','????(???????????????)','??',NULL), (2032,'04','???','0401','????','040106','????','??',NULL), (2033,'04','???','0401','????','040107','????','??',NULL), (2034,'04','???','0401','????','040108','????','??',NULL), (2035,'04','???','0402','????','040201','????','??',NULL), (2036,'04','???','0402','????','040202K','????','??',NULL), (2037,'04','???','0402','????','040203','?????????','??',NULL), (2038,'04','???','0402','????','040204K','?????????','??',NULL), (2039,'04','???','0402','????','040205','??????','??',1), (2040,'05','??','0501','???????','050101','?????','??',NULL), (2041,'05','??','0501','???????','050102','???','??',NULL), (2042,'05','??','0501','???????','050103','??????','??',NULL), (2043,'05','??','0501','???????','050104','??????????','??',NULL), (2044,'05','??','0501','???????','050105','?????','??',NULL), (2045,'05','??','0502','???????','050201','??','??',NULL), (2046,'05','??','0502','???????','050202','??','??',NULL), (2047,'05','??','0502','???????','050203','??','??',NULL), (2048,'05','??','0502','???????','050204','??','??',NULL), (2049,'05','??','0502','???????','050205','????','??',NULL), (2050,'05','??','0502','???????','050206','????','??',NULL), (2051,'05','??','0502','???????','050207','??','??',NULL), (2052,'05','??','0502','???????','050208','???','??',NULL), (2053,'05','??','0502','???????','050209','???','??',NULL), (2054,'05','??','0502','???????','050210','????','??',NULL), (2055,'05','??','0502','???????','050211','?????','??',NULL), (2056,'05','??','0502','???????','050212','??????','??',NULL), (2057,'05','??','0502','???????','050213','???','??',NULL), (2058,'05','??','0502','???????','050214','????','??',NULL), (2059,'05','??','0502','???????','050215','???','??',NULL), (2060,'05','??','0502','???????','050216','???','??',NULL), (2061,'05','??','0502','???????','050217','???','??',NULL), (2062,'05','??','0502','???????','050218','???','??',NULL), (2063,'05','??','0502','???????','050219','????','??',NULL), (2064,'05','??','0502','???????','050220','??','??',NULL), (2065,'05','??','0502','???????','050221','????','??',NULL), (2066,'05','??','0502','???????','050222','????','??',NULL), (2067,'05','??','0502','???????','050223','???','??',NULL), (2068,'05','??','0502','???????','050224','???','??',NULL), (2069,'05','??','0502','???????','050225','?????','??',NULL), (2070,'05','??','0502','???????','050226','??????','??',NULL), (2071,'05','??','0502','???????','050227','?????','??',NULL), (2072,'05','??','0502','???????','050228','???','??',NULL), (2073,'05','??','0502','???????','050229','???','??',NULL), (2074,'05','??','0502','???????','050230','?????','??',NULL), (2075,'05','??','0502','???????','050231','?????','??',NULL), (2076,'05','??','0502','???????','050232','????','??',NULL), (2077,'05','??','0502','???????','050233','???','??',NULL), (2078,'05','??','0502','???????','050234','?????','??',NULL), (2079,'05','??','0502','???????','050235','????','??',NULL), (2080,'05','??','0502','???????','050236','???','??',NULL), (2081,'05','??','0502','???????','050237','????','??',NULL), (2082,'05','??','0502','???????','050238','????','??',NULL), (2083,'05','??','0502','???????','050239','????','??',NULL), (2084,'05','??','0502','???????','050240','????','??',NULL), (2085,'05','??','0502','???????','050241','???','??',NULL), (2086,'05','??','0502','???????','050242','????','??',NULL), (2087,'05','??','0502','???????','050243','????','??',NULL), (2088,'05','??','0502','???????','050244','?????','??',NULL), (2089,'05','??','0502','???????','050245','???','??',NULL), (2090,'05','??','0502','???????','050246','???','??',NULL), (2091,'05','??','0502','???????','050247','????','??',NULL), (2092,'05','??','0502','???????','050248','???','??',NULL), (2093,'05','??','0502','???????','050249','???','??',NULL), (2094,'05','??','0502','???????','050250','???','??',NULL), (2095,'05','??','0502','???????','050251','????','??',NULL), (2096,'05','??','0502','???????','050252','?????','??',NULL), (2097,'05','??','0502','???????','050253','????','??',NULL), (2098,'05','??','0502','???????','050254','??????','??',NULL), (2099,'05','??','0502','???????','050255','?????','??',NULL), (2100,'05','??','0502','???????','050256','????','??',NULL), (2101,'05','??','0502','???????','050257','????','??',NULL), (2102,'05','??','0502','???????','050258','?????','??',NULL), (2103,'05','??','0502','???????','050259','???','??',NULL), (2104,'05','??','0502','???????','050260','???','??',NULL), (2105,'05','??','0502','???????','050261','??','??',NULL), (2106,'05','??','0502','???????','050262','????','??',NULL), (2107,'05','??','0503','??????','050301','???','??',NULL), (2108,'05','??','0503','??????','050302','?????','??',NULL), (2109,'05','??','0503','??????','050303','???','??',NULL), (2110,'05','??','0503','??????','050304','???','??',NULL), (2111,'05','??','0503','??????','050305','?????','??',NULL), (2112,'06','???','0601','????','060101','???','??',NULL), (2113,'06','???','0601','????','060102','???','??',NULL), (2114,'06','???','0601','????','060103','???','??',NULL), (2115,'06','???','0601','????','060104','???????','??',NULL), (2116,'07','??','0701','???','070101','???????','??',NULL), (2117,'07','??','0701','???','070102','???????','??',NULL), (2118,'07','??','0702','????','070201','???','??',NULL), (2119,'07','??','0702','????','070202','?????','??',NULL), (2120,'07','??','0702','????','070203','???','??',NULL), (2121,'07','??','0703','???','070301','??','??',NULL), (2122,'07','??','0703',' ???','070301','??','??',NULL), (2123,'07','??','0703','???','070302','????(?????????????)','??',NULL), (2124,'07','??','0703',' ???','070302','????(?????????????)','??',NULL), (2125,'07','??','0704','????','070401','???','??',NULL), (2126,'07','??','0705','?????','070501','????','??',NULL), (2127,'07','??','0705','?????','070502','?????????(??????????????)','??',NULL), (2128,'07','??','0705','?????','070503','?????????(??????????????)','??',NULL), (2129,'07','??','0705','?????','070504','??????','??',NULL), (2130,'07','??','0706','?????','070601','????','??',NULL), (2131,'07','??','0706','?????','070602','?????','??',NULL), (2132,'07','??','0707','?????','070701','????','??',NULL), (2133,'07','??','0707','?????','070702','????(?????????????)','??',NULL), (2134,'07','??','0708','??????','070801','?????','??',NULL), (2135,'07','??','0708','??????','070802','???????(?????????????)','??',NULL), (2136,'07','??','0709','????','070901','???','??',NULL), (2137,'07','??','0709','????','070902','????','??',NULL), (2138,'07','??','0710','?????','071001','????','??',NULL), (2139,'07','??','0710','?????','071002','????(?????????????)','??',NULL), (2140,'07','??','0710','?????','071003','?????(?????????????)','??',NULL), (2141,'07','??','0710','?????','071004','???','??',NULL), (2142,'07','??','0711','????','071101','???(??????????????)','??',NULL), (2143,'07','??','0711','????','071102','?????(??????????????)','??',NULL), (2144,'07','??','0712','????','071201','???','??',NULL), (2145,'07','??','0712','????','071202','?????','??',NULL), (2146,'08','??','0801','???','080101','???????(?????????????)','??',NULL), (2147,'08','??','0801','???','080102','????','??',NULL), (2148,'08','??','0802','???','080201','????','??',NULL), (2149,'08','??','0802','???','080202','???????????','??',NULL), (2150,'08','??','0802','???','080203','?????????','??',NULL), (2151,'08','??','0802','???','080204','??????','??',NULL), (2152,'08','??','0802','???','080205','????','??',NULL), (2153,'08','??','0802','???','080206','?????????','??',NULL), (2154,'08','??','0802','???','080207','????','??',NULL), (2155,'08','??','0802','???','080208','??????','??',NULL), (2156,'08','??','0803','???','080301','???????','??',NULL), (2157,'08','??','0804','???','080401','???????','??',NULL), (2158,'08','??','0804','???','080402','????(?????????????)','??',NULL), (2159,'08','??','0804','???','080403','????(?????????????)','??',NULL), (2160,'08','??','0804','???','080404','????','??',NULL), (2161,'08','??','0804','???','080405','??????','??',NULL), (2162,'08','??','0804','???','080406','?????????','??',NULL), (2163,'08','??','0804','???','080407','????????','??',NULL), (2164,'08','??','0804','???','080408','???????','??',NULL), (2165,'08','??','0805','?????','080501','???????','??',NULL), (2166,'08','??','0806','???','080601','?????????','??',NULL), (2167,'08','??','0807','?????','080701','??????(?????????????)','??',NULL), (2168,'08','??','0807','?????','080702','???????(?????????????)','??',NULL), (2169,'08','??','0807','?????','080703','????','??',NULL), (2170,'08','??','0807','?????','080704','????????(?????????????)','??',NULL), (2171,'08','??','0807','?????','080705','?????????(?????????????)','??',NULL), (2172,'08','??','0807','?????','080706','????','??',NULL), (2173,'08','??','0808','????','080801','???','??',NULL), (2174,'08','??','0809','????','080901','????????(?????????????)','??',NULL), (2175,'08','??','0809','????','080902','????','??',NULL), (2176,'08','??','0809','????','080903','????','??',NULL), (2177,'08','??','0809','????','080904K','????(?????????????????)','??',NULL), (2178,'08','??','0809','????','080905','?????','??',NULL), (2179,'08','??','0809','????','080906','??????','??',NULL), (2180,'08','??','0810','???','081001','????','??',NULL), (2181,'08','??','0810','???','081002','???????????','??',NULL), (2182,'08','??','0810','???','081003','????????','??',NULL), (2183,'08','??','0810','???','081004','????????','??',NULL), (2184,'08','??','0811','???','081101','??????','??',NULL), (2185,'08','??','0811','???','081102','????????','??',NULL), (2186,'08','??','0811','???','081103','?????????','??',NULL), (2187,'08','??','0812','???','081201','????','??',NULL), (2188,'08','??','0812','???','081202','???????','??',NULL), (2189,'08','??','0813','??????','081301','???????','??',NULL), (2190,'08','??','0813','??????','081302','????','??',NULL), (2191,'08','??','0814','???','081401','????','??',NULL), (2192,'08','??','0814','???','081402','???????','??',NULL), (2193,'08','??','0814','???','081403','??????','??',NULL), (2194,'08','??','0815','???','081501','????','??',1), (2195,'08','??','0815','???','081502','????','??',NULL), (2196,'08','??','0815','???','081503','??????','??',NULL), (2197,'08','??','0815','???','081504','??????','??',NULL), (2198,'08','??','0816','???','081601','????','??',NULL), (2199,'08','??','0816','???','081602','???????(??????????????)','??',NULL), (2200,'08','??','0817','???','081701','????','??',NULL), (2201,'08','??','0817','???','081702','????','??',NULL), (2202,'08','??','0817','???','081703','????','??',NULL), (2203,'08','??','0818','?????','081801','????','??',NULL), (2204,'08','??','0818','?????','081802','????','??',NULL), (2205,'08','??','0818','?????','081803K','????','??',NULL), (2206,'08','??','0818','?????','081804K','????','??',NULL), (2207,'08','??','0818','?????','081805K','????','??',NULL), (2208,'08','??','0819','?????','081901','???????','??',NULL), (2209,'08','??','0820','?????','082001','??????','??',NULL), (2210,'08','??','0820','?????','082002','????????','??',NULL), (2211,'08','??','0820','?????','082003','???????','??',NULL), (2212,'08','??','0820','?????','082004','???????','??',NULL), (2213,'08','??','0820','?????','082005','????????????','??',NULL), (2214,'08','??','0821','???','082101','???????','??',NULL), (2215,'08','??','0821','???','082102','??????','??',NULL), (2216,'08','??','0821','???','082103','?????????','??',NULL), (2217,'08','??','0821','???','082104','?????????','??',NULL), (2218,'08','??','0821','???','082105','?????????','??',NULL), (2219,'08','??','0821','???','082106','??????','??',NULL), (2220,'08','??','0821','???','082107','??????','??',NULL), (2221,'08','??','0822','????','082201','???????','??',NULL), (2222,'08','??','0822','????','082202','????????','??',NULL), (2223,'08','??','0822','????','082203','????','??',NULL), (2224,'08','??','0822','????','082204','?????????','??',NULL), (2225,'08','??','0823','?????','082301','????','??',1), (2226,'08','??','0823','?????','082302','??????????','??',NULL), (2227,'08','??','0823','?????','082303','?????','??',NULL), (2228,'08','??','0823','?????','082304','???????????','??',NULL), (2229,'08','??','0823','?????','082305','??????','??',NULL), (2230,'08','??','0824','?????','082401','????','??',NULL), (2231,'08','??','0824','?????','082402','???????','??',NULL), (2232,'08','??','0824','?????','082403','????','??',NULL), (2233,'08','??','0825','????????','082501','???????','??',NULL), (2234,'08','??','0825','????????','082502','????','??',NULL), (2235,'08','??','0825','????????','082503','????(?????????????)','??',NULL), (2236,'08','??','0825','????????','082504','??????','??',NULL), (2237,'08','??','0826','???????','082601','??????(?????????????)','??',NULL), (2238,'08','??','0827','????????','082701','???????(?????????????)','??',NULL), (2239,'08','??','0827','????????','082702','???????','??',NULL), (2240,'08','??','0827','????????','082703','????','??',NULL), (2241,'08','??','0827','????????','082704','????','??',NULL), (2242,'08','??','0827','????????','082705','????','??',NULL), (2243,'08','??','0828','???','082801','???','??',NULL), (2244,'08','??','0828','???','082802','????','??',NULL), (2245,'08','??','0828','???','082803','????(??????????????)','??',NULL), (2246,'08','??','0829','????????','082901','????','??',NULL), (2247,'08','??','0830','?????','083001','????','??',NULL), (2248,'08','??','0831','?????','083101K','??????','??',NULL), (2249,'08','??','0831','?????','083102K','????','??',NULL), (2250,'09','??','0901','?????','090101','??','??',NULL), (2251,'09','??','0901','?????','090102','??','??',NULL), (2252,'09','??','0901','?????','090103','????','??',NULL), (2253,'09','??','0901','?????','090104','???????','??',NULL), (2254,'09','??','0901','?????','090105','???????','??',NULL), (2255,'09','??','0901','?????','090106','?????????(?????????????)','??',NULL), (2256,'09','??','0902','??????????','090201','???????','??',NULL), (2257,'09','??','0902','??????????','090202','????????????','??',NULL), (2258,'09','??','0902','??????????','090203','??????????','??',NULL), (2259,'09','??','0903','?????','090301','????','??',NULL), (2260,'09','??','0904','?????','090401','????','??',NULL), (2261,'09','??','0904','?????','090402','????','??',NULL), (2262,'09','??','0905','???','090501','??','??',NULL), (2263,'09','??','0905','???','090502','??','??',NULL), (2264,'09','??','0905','???','090503','????','??',NULL), (2265,'09','??','0906','???','090601','?????','??',NULL), (2266,'09','??','0906','???','090602','?????????','??',NULL), (2267,'09','??','0907','???','090701','????','??',NULL), (2268,'10','??','1001','?????','100101K','????','??',NULL), (2269,'10','??','1002','?????','100201K','????','??',NULL), (2270,'10','??','1003','?????','100301K','????','??',NULL), (2271,'10','??','1004','??????????','100401K','????','??',NULL), (2272,'10','??','1004','??????????','100402','????????(??????????)','??',NULL), (2273,'10','??','1005','????','100501K','???','??',2), (2274,'10','??','1005','????','100502K','?????','??',NULL), (2275,'10','??','1005','????','100503K','???','??',NULL), (2276,'10','??','1005','????','100504K','???','??',NULL), (2277,'10','??','1005','????','100505K','???','??',NULL), (2278,'10','??','1005','????','100506K','???','??',NULL), (2279,'10','??','1005','????','100507K','???','??',NULL), (2280,'10','??','1006','??????','100601K','???????','??',NULL), (2281,'10','??','1007','???','100701','??(??????????)','??',NULL), (2282,'10','??','1007','???','100702','????(??????????)','??',NULL), (2283,'10','??','1008','????','100801','???(??????????)','??',NULL), (2284,'10','??','1008','????','100802','???????(??????????)','??',NULL), (2285,'10','??','1009','????','100901K','???','??',NULL), (2286,'10','??','1010','?????','101001','??????(??????????)','??',NULL), (2287,'10','??','1010','?????','101002','??????(??????????)','??',NULL), (2288,'10','??','1010','?????','101003','??????(??????????)','??',NULL), (2289,'10','??','1010','?????','101004','????(??????????)','??',NULL), (2290,'10','??','1010','?????','101005','?????(??????????)','??',NULL), (2291,'10','??','1010','?????','101006','??????(??????????)','??',NULL), (2292,'10','??','1010','?????','101007','???????(??????????)','??',NULL), (2293,'10','??','1011','????','101101','???(??????????)','??',NULL), (2294,'12','???','1201','????????','120101','????(??????????????)','??',NULL), (2295,'12','???','1201','????????','120102','?????????(??????????????)','??',NULL), (2296,'12','???','1201','????????','120103','????(??????????????)','??',NULL), (2297,'12','???','1201','????????','120104','????????','??',NULL), (2298,'12','???','1201','????????','120105','????(??????????????)','??',NULL), (2299,'12','???','1202','?????','120201K','????','??',NULL), (2300,'12','???','1202','?????','120202','????','??',NULL), (2301,'12','???','1202','?????','120203K','???','??',NULL), (2302,'12','???','1202','?????','120204','????','??',NULL), (2303,'12','???','1202','?????','120205','????','??',NULL), (2304,'12','???','1202','?????','120206','??????','??',NULL), (2305,'12','???','1202','?????','120207','???','??',NULL), (2306,'12','???','1202','?????','120208','????','??',NULL), (2307,'12','???','1202','?????','120209','????','??',NULL), (2308,'12','???','1202','?????','120210','??????(???????????????)','??',NULL), (2309,'12','???','1203','???????','120301','??????','??',NULL), (2310,'12','???','1203','???????','120302','??????(??????????????)','??',NULL), (2311,'12','???','1204','?????','120401','??????','??',NULL), (2312,'12','???','1204','?????','120402','????','??',NULL), (2313,'12','???','1204','?????','120403','???????','??',NULL), (2314,'12','???','1204','?????','120404','??????(??????????????)','??',NULL), (2315,'12','???','1204','?????','120405','????','??',NULL), (2316,'12','???','1205','??????????','120501','????','??',NULL), (2317,'12','???','1205','??????????','120502','???','??',NULL), (2318,'12','???','1205','??????????','120503','??????','??',NULL), (2319,'12','???','1206','????????','120601','????','??',NULL), (2320,'12','???','1206','????????','120602','????(??????????????)','??',NULL), (2321,'12','???','1207','?????','120701','????(??????????????)','??',NULL), (2322,'12','???','1208','?????','120801','????(??????????????????)','??',NULL), (2323,'12','???','1209','?????','120901K','????','??',NULL), (2324,'12','???','1209','?????','120902','????','??',NULL), (2325,'12','???','1209','?????','120903','???????','??',NULL), (2326,'13','???','1301','??????','130101','????','??',NULL), (2327,'13','???','1302','???????','130201','????','??',NULL), (2328,'13','???','1302','???????','130202','???','??',NULL), (2329,'13','???','1302','???????','130203','?????????','??',NULL), (2330,'13','???','1302','???????','130204','????','??',NULL), (2331,'13','???','1302','???????','130205','???','??',NULL), (2332,'13','???','1302','???????','130206','????','??',NULL), (2333,'13','???','1303','???????','130301','??','??',NULL), (2334,'13','???','1303','???????','130302','???','??',NULL), (2335,'13','???','1303','???????','130303','???','??',NULL), (2336,'13','???','1303','???????','130304','??????','??',NULL), (2337,'13','???','1303','???????','130305','??????','??',NULL), (2338,'13','???','1303','???????','130306','??????','??',NULL), (2339,'13','???','1303','???????','130307','????????','??',NULL), (2340,'13','???','1303','???????','130308','????','??',NULL), (2341,'13','???','1303','???????','130309','???????','??',NULL), (2342,'13','???','1303','???????','130310','??','??',NULL), (2343,'13','???','1304','????','130401','???','??',NULL), (2344,'13','???','1304','????','130402','??','??',NULL), (2345,'13','???','1304','????','130403','??','??',NULL), (2346,'13','???','1304','????','130404','??','??',NULL), (2347,'13','???','1305','????','130501','?????','??',NULL), (2348,'13','???','1305','????','130502','??????','??',NULL), (2349,'13','???','1305','????','130503','????','??',NULL), (2350,'13','???','1305','????','130504','????','??',NULL), (2351,'13','???','1305','????','130505','???????','??',NULL), (2352,'13','???','1305','????','130506','????','??',NULL), (2353,'13','???','1305','????','130507','????','??',NULL), (2354,'13','???','1305','????','130508','??????','??',NULL), (2355,'01','??','0101','???','010104T','???','??',NULL), (2356,'02','???','0201','????','020103T','??????','??',NULL), (2357,'02','???','0201','????','020104T','????????','??',NULL), (2358,'02','???','0201','????','020105T','?????','??',NULL), (2359,'02','???','0201','????','020106T','????','??',NULL), (2360,'02','???','0203','????','020305T','????','??',NULL), (2361,'02','???','0203','????','020306T','????(???????????????)','??',NULL), (2362,'02','???','0203','????','020307T','?????','??',NULL), (2363,'03','??','0301','???','030102T','????','??',NULL), (2364,'03','??','0301','???','030103T','???','??',NULL), (2365,'03','??','0302','????','030204T','?????????','??',NULL), (2366,'03','??','0302','????','030205T','??????????','??',NULL), (2367,'03','??','0303','????','030303T','???','??',NULL), (2368,'03','??','0303','????','030304T','???','??',NULL), (2369,'03','??','0303','????','030305T','???','??',NULL), (2370,'03','??','0306','????','030604TK','???','??',NULL), (2371,'03','??','0306','????','030605TK','????','??',NULL), (2372,'03','??','0306','????','030606TK','??????','??',NULL), (2373,'03','??','0306','????','030607TK','????','??',NULL), (2374,'03','??','0306','????','030608TK','????','??',NULL), (2375,'03','??','0306','????','030609TK','???','??',NULL), (2376,'03','??','0306','????','030610TK','?????','??',NULL), (2377,'03','??','0306','????','030611TK','???','??',NULL), (2378,'03','??','0306','????','030612TK','?????','??',NULL), (2379,'03','??','0306','????','030613TK','????','??',NULL), (2380,'03','??','0306','????','030614TK','??????','??',NULL), (2381,'03','??','0306','????','030615TK','???????','??',NULL), (2382,'04','???','0401','????','040109T','????','??',NULL), (2383,'04','???','0402','????','040206T','????(??????????????)','??',NULL), (2384,'04','???','0402','????','040207T','????','??',NULL), (2385,'05','??','0501','???????','050106T','?????','??',NULL), (2386,'05','??','0501','???????','050107T','???','??',NULL), (2387,'05','??','0503','??????','050306T','??????','??',NULL), (2388,'05','??','0503','??????','050307T','????','??',NULL), (2389,'06','???','0601','????','060105T','??????','??',NULL), (2390,'06','???','0601','????','060106T','?????????(??????????????)','??',NULL), (2391,'07','??','0701','???','070103T','??????','??',NULL), (2392,'07','??','0702','????','070204T','??','??',NULL), (2393,'07','??','0703','???','070303T','?????','??',NULL), (2394,'07','??','0703',' ???','070303T','?????','??',NULL), (2395,'07','??','0703','???','070304T','???????','??',NULL), (2396,'07','??','0703',' ???','070304T','???????','??',NULL), (2397,'07','??','0707','?????','070703T','???????','??',NULL), (2398,'07','??','0707','?????','070704T','?????','??',NULL), (2399,'07','??','0709','????','070903T','?????????(?????????????)','??',NULL), (2400,'07','??','0709','????','070904T','????','??',NULL), (2401,'08','??','0802','???','080209T','??????','??',NULL), (2402,'08','??','0802','???','080210T','???????','??',NULL), (2403,'08','??','0802','???','080211T','??????','??',NULL), (2404,'08','??','0802','???','080212T','????????','??',NULL), (2405,'08','??','0804','???','080409T','?????????','??',NULL), (2406,'08','??','0804','???','080410T','????????','??',NULL), (2407,'08','??','0804','???','080411T','???????','??',NULL), (2408,'08','??','0804','???','080412T','????','??',NULL), (2409,'08','??','0804','???','080413T','???????','??',NULL), (2410,'08','??','0804','???','080414T','????????','??',NULL), (2411,'08','??','0805','?????','080502T','?????????','??',NULL), (2412,'08','??','0805','?????','080503T','????????','??',NULL), (2413,'08','??','0806','???','080602T','????????','??',NULL), (2414,'08','??','0806','???','080603T','?????','??',NULL), (2415,'08','??','0806','???','080604T','?????????','??',NULL), (2416,'08','??','0807','?????','080707T','??????','??',NULL), (2417,'08','??','0807','?????','080708T','????','??',NULL), (2418,'08','??','0807','?????','080709T','??????','??',NULL), (2419,'08','??','0807','?????','080710T','???????????','??',NULL), (2420,'08','??','0807','?????','080711T','??????','??',NULL), (2421,'08','??','0807','?????','080712T','????????','??',NULL), (2422,'08','??','0807','?????','080713T','???????','??',NULL), (2423,'08','??','0807','?????','080714T','?????????(?????????????)','??',NULL), (2424,'08','??','0807','?????','080715T','???????','??',NULL), (2425,'08','??','0807','?????','080716T','????????','??',NULL), (2426,'08','??','0808','????','080802T','?????????','??',NULL), (2427,'08','??','0809','????','080907T','???????','??',NULL), (2428,'08','??','0809','????','080908T','?????????','??',NULL), (2429,'08','??','0809','????','080909T','????????','??',NULL), (2430,'08','??','0810','???','081005T','????????','??',NULL), (2431,'08','??','0810','???','081006T','?????????','??',NULL), (2432,'08','??','0811','???','081104T','????','??',NULL), (2433,'08','??','0812','???','081203T','????','??',NULL), (2434,'08','??','0812','???','081204T','??????','??',NULL), (2435,'08','??','0813','??????','081303T','?????????','??',NULL), (2436,'08','??','0813','??????','081304T','??????','??',NULL), (2437,'08','??','0813','??????','081305T','???????????','??',NULL), (2438,'08','??','0814','???','081404T','????????','??',NULL), (2439,'08','??','0815','???','081505T','??????','??',NULL), (2440,'08','??','0815','???','081506T','??????','??',NULL), (2441,'08','??','0816','???','081603T','????????','??',NULL), (2442,'08','??','0816','???','081604T','?????????','??',NULL), (2443,'08','??','0818','?????','081806T','?????????','??',NULL), (2444,'08','??','0818','?????','081807T','???????','??',NULL), (2445,'08','??','0818','?????','081808TK','????????','??',NULL), (2446,'08','??','0819','?????','081902T','???????','??',NULL), (2447,'08','??','0819','?????','081903T','????????','??',NULL), (2448,'08','??','0820','?????','082006T','?????????','??',NULL), (2449,'08','??','0820','?????','082007T','???????','??',NULL), (2450,'08','??','0825','????????','082505T','??????','??',NULL), (2451,'08','??','0825','????????','082506T','??????(?????????????)','??',NULL), (2452,'08','??','0825','????????','082507T','???????','??',NULL), (2453,'08','??','0826','???????','082602T','??????','??',NULL), (2454,'08','??','0827','????????','082706T','????????','??',NULL), (2455,'08','??','0827','????????','082707T','?????????','??',NULL), (2456,'08','??','0827','????????','082708T','???????','??',NULL), (2457,'08','??','0828','???','082804T','????????','??',NULL), (2458,'08','??','0830','?????','083002T','????','??',NULL), (2459,'08','??','0831','?????','083103TK','??????','??',NULL), (2460,'08','??','0831','?????','083104TK','??????','??',NULL), (2461,'08','??','0831','?????','083105TK','??????','??',NULL), (2462,'08','??','0831','?????','083106TK','?????????','??',NULL), (2463,'08','??','0831','?????','083107TK','????','??',NULL), (2464,'08','??','0831','?????','083108TK','???????','??',NULL), (2465,'08','??','0831','?????','083109TK','?????','??',NULL), (2466,'09','??','0901','?????','090107T','??','??',NULL), (2467,'09','??','0901','?????','090108T','??','??',NULL), (2468,'09','??','0901','?????','090109T','??????(?????????????)','??',NULL), (2469,'09','??','0901','?????','090110T','????','??',NULL), (2470,'09','??','0901','?????','090111T','????','??',NULL), (2471,'09','??','0903','?????','090302T','??','??',NULL), (2472,'09','??','0903','?????','090303T','??','??',NULL), (2473,'09','??','0904','?????','090403T','?????(?????????????)','??',NULL), (2474,'09','??','0906','???','090603T','???????','??',NULL), (2475,'10','??','1002','?????','100202TK','???','??',NULL), (2476,'10','??','1002','?????','100203TK','?????','??',NULL), (2477,'10','??','1002','?????','100204TK','?????','??',NULL), (2478,'10','??','1002','?????','100205TK','????','??',NULL), (2479,'10','??','1002','?????','100206TK','????','??',NULL), (2480,'10','??','1004','??????????','100403TK','??????','??',NULL), (2481,'10','??','1004','??????????','100404TK','????','??',NULL), (2482,'10','??','1004','??????????','100405TK','?????(??????????)','??',NULL), (2483,'10','??','1007','???','100703TK','????(??????????)','??',NULL), (2484,'10','??','1007','???','100704T','????(??????????)','??',NULL), (2485,'10','??','1007','???','100705T','????(??????????)','??',NULL), (2486,'10','??','1007','???','100706T','????(??????????)','??',NULL), (2487,'10','??','1007','???','100707T','????(??????????)','??',NULL), (2488,'10','??','1008','????','100803T','???(??????????)','??',NULL), (2489,'10','??','1008','????','100804T','???(??????????)','??',NULL), (2490,'10','??','1008','????','100805T','????(?????????????)','??',NULL), (2491,'10','??','1008','????','100806T','????????(??????????)','??',NULL), (2492,'10','??','1010','?????','101008T','????????','??',NULL), (2493,'12','???','1201','????????','120106TK','????','??',NULL), (2494,'12','???','1202','?????','120211T','????','??',NULL), (2495,'12','???','1202','?????','120212T','???????','??',NULL), (2496,'12','???','1202','?????','120213T','??????','??',NULL), (2497,'12','???','1202','?????','120214T','??????','??',NULL), (2498,'12','???','1204','?????','120406TK','????','??',NULL), (2499,'12','???','1204','?????','120407T','????(??????????????)','??',NULL), (2500,'12','???','1204','?????','120408T','????','??',NULL), (2501,'12','???','1204','?????','120409T','?????','??',NULL), (2502,'12','???','1206','????????','120603T','????','??',NULL), (2503,'12','???','1207','?????','120702T','?????','??',NULL), (2504,'12','???','1207','?????','120703T','??????','??',NULL), (2505,'12','???','1208','?????','120802T','???????','??',NULL), (2506,'12','???','1209','?????','120904T','?????????','??',NULL), (2507,'13','???','1303','???????','130311T','???????','??',NULL), (2508,'13','???','1304','????','130405T','???','??',NULL), (2509,'13','???','1304','????','130406T','???','??',NULL), (2510,'13','???','1305','????','130509T','?????','??',NULL); /*!40000 ALTER TABLE `major` ENABLE KEYS */; UNLOCK TABLES; # Dump of table migration # ------------------------------------------------------------ DROP TABLE IF EXISTS `migration`; CREATE TABLE `migration` ( `version` varchar(180) NOT NULL, `apply_time` int(11) DEFAULT NULL, PRIMARY KEY (`version`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; LOCK TABLES `migration` WRITE; /*!40000 ALTER TABLE `migration` DISABLE KEYS */; INSERT INTO `migration` (`version`, `apply_time`) VALUES ('m000000_000000_base',1432744285), ('m130524_201442_init',1432744287), ('m150527_163119_firstTable',1432744287), ('m150527_163922_testTbl',1432744813), ('m150527_211521_student',1432761695), ('m150530_214215_schoolTable',1433022408), ('m150530_215219_majorTable',1433023031), ('m150601_160150_resumeTable',1433176842), ('m150601_165339_school_majorTable',1433178121), ('m150601_170434_school_major_studentTable',1433179947), ('m150601_173739_employerTable',1433180316), ('m150601_174043_employer_studentTable',1433180534), ('m150601_174316_jobTable',1433180669), ('m150601_174501_job_studentTable',1433180807), ('m150601_175138_invitationTable',1433181273), ('m150601_175458_applicationTable',1433181370), ('m150601_175746_payment_planTable',1433181562), ('m150601_175956_paymentTable',1433181694), ('m150602_023306_school_major2Table',1433212559), ('m150602_033906_school2Table',1433216485), ('m150602_140420_major2Table',1433254036), ('m150602_164904_job_postingTable',1433263975), ('m150603_160219_schoolTable',1433347727), ('m150603_172200_school_major2Table',1433352155), ('m150604_204837_student2Table',1433451121), ('m150604_210050_student3Table',1433451702), ('m150604_234800_school3Table',1433461797), ('m150605_014623_student4Table',1433468934), ('m150605_144104_houseTable',1433515775), ('m150606_160514_resume',1433607041), ('m150606_175159_employer',1433613315), ('m150606_185951_user',1433617291), ('m150608_144015_job',1433774524), ('m150611_205618_jobPublish',1434056377), ('m150613_005521_resumeTable',1434161204); /*!40000 ALTER TABLE `migration` ENABLE KEYS */; UNLOCK TABLES; # Dump of table payment # ------------------------------------------------------------ DROP TABLE IF EXISTS `payment`; CREATE TABLE `payment` ( `payment_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `employer_id` int(11) NOT NULL, `payment_plan_id` int(11) NOT NULL, `time_created` datetime DEFAULT NULL, `time_updated` datetime DEFAULT NULL, PRIMARY KEY (`payment_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; # Dump of table payment_plan # ------------------------------------------------------------ DROP TABLE IF EXISTS `payment_plan`; CREATE TABLE `payment_plan` ( `payment_plan_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `payment_description` varchar(100) DEFAULT NULL, `time_created` datetime DEFAULT NULL, `time_updated` datetime DEFAULT NULL, PRIMARY KEY (`payment_plan_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; # Dump of table resume # ------------------------------------------------------------ DROP TABLE IF EXISTS `resume`; CREATE TABLE `resume` ( `resume_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `student_id` int(11) DEFAULT NULL, `time_created` datetime DEFAULT NULL, `resume_content` varchar(2000) DEFAULT NULL, `updated_time` datetime DEFAULT NULL, `first_name` varchar(200) DEFAULT NULL, `last_name` varchar(200) DEFAULT NULL, `address` varchar(200) DEFAULT NULL, `city` varchar(200) DEFAULT NULL, `state` varchar(200) DEFAULT NULL, `zip` varchar(200) DEFAULT NULL, `email` varchar(200) DEFAULT NULL, `phone` varchar(20) DEFAULT NULL, `self_introduction` mediumtext, `resume_slug` varchar(200) DEFAULT NULL, PRIMARY KEY (`resume_id`), KEY `student_id` (`student_id`), CONSTRAINT `resume_ibfk_1` FOREIGN KEY (`student_id`) REFERENCES `student` (`student_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; LOCK TABLES `resume` WRITE; /*!40000 ALTER TABLE `resume` DISABLE KEYS */; INSERT INTO `resume` (`resume_id`, `student_id`, `time_created`, `resume_content`, `updated_time`, `first_name`, `last_name`, `address`, `city`, `state`, `zip`, `email`, `phone`, `self_introduction`, `resume_slug`) VALUES (5,69,NULL,'esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.',NULL,'terry','tao','111 san diego st','san diego','ca','91111','<EMAIL>','9999999999','Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.',NULL), (6,124,NULL,'cccc',NULL,'bay','','','','','','','','hhhhhhhh',NULL), (7,1,NULL,'',NULL,'abe loo','','','','','','','','',NULL), (8,125,NULL,'',NULL,'abe kim','','','','','','','','',NULL); /*!40000 ALTER TABLE `resume` ENABLE KEYS */; UNLOCK TABLES; # Dump of table resume_award # ------------------------------------------------------------ DROP TABLE IF EXISTS `resume_award`; CREATE TABLE `resume_award` ( `resume_award_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `resume_id` int(11) DEFAULT NULL, `award_title` varchar(100) DEFAULT NULL, `award_description` varchar(1000) DEFAULT NULL, `award_date` date DEFAULT NULL, `time_created` datetime DEFAULT NULL, `time_updated` datetime DEFAULT NULL, PRIMARY KEY (`resume_award_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; # Dump of table resume_course # ------------------------------------------------------------ DROP TABLE IF EXISTS `resume_course`; CREATE TABLE `resume_course` ( `resume_course_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `resume_id` int(11) unsigned DEFAULT NULL, `content` mediumtext CHARACTER SET utf8, PRIMARY KEY (`resume_course_id`), KEY `resume_id` (`resume_id`), CONSTRAINT `resume_course_ibfk_1` FOREIGN KEY (`resume_id`) REFERENCES `resume` (`resume_id`) ON DELETE CASCADE ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=latin1; LOCK TABLES `resume_course` WRITE; /*!40000 ALTER TABLE `resume_course` DISABLE KEYS */; INSERT INTO `resume_course` (`resume_course_id`, `resume_id`, `content`) VALUES (1,5,'advance math'), (2,5,'Politics'), (3,5,'Politics'), (4,5,'????'), (5,5,'????'), (6,6,'??'), (7,6,'Bilogy'), (8,6,NULL); /*!40000 ALTER TABLE `resume_course` ENABLE KEYS */; UNLOCK TABLES; # Dump of table resume_photo # ------------------------------------------------------------ DROP TABLE IF EXISTS `resume_photo`; CREATE TABLE `resume_photo` ( `resume_photo_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `resume_id` int(11) unsigned DEFAULT NULL, `photo_name` varchar(200) DEFAULT NULL, `photo_title` varchar(200) DEFAULT NULL, `photo_description` varchar(500) DEFAULT NULL, PRIMARY KEY (`resume_photo_id`), KEY `resume_id` (`resume_id`), CONSTRAINT `resume_photo_ibfk_1` FOREIGN KEY (`resume_id`) REFERENCES `resume` (`resume_id`) ON DELETE CASCADE ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=latin1; LOCK TABLES `resume_photo` WRITE; /*!40000 ALTER TABLE `resume_photo` DISABLE KEYS */; INSERT INTO `resume_photo` (`resume_photo_id`, `resume_id`, `photo_name`, `photo_title`, `photo_description`) VALUES (1,5,'84d72f3a-8452-4a95-b5c7-94e92d02c730/0602_2.jpg','mdd','ddd'), (2,5,NULL,NULL,NULL), (3,5,'1dfe999d-03fe-4c0d-a242-5a10fa48af0c/0602_2.jpg','dd','ddjdjdjd'), (4,5,'91f4e558-668d-4c6e-8c95-c4e473fcefa2/IMG_3717.JPG',NULL,NULL), (5,5,'026614b9-b031-484d-b34b-ff68a0bfb1c3/IMG_3537.JPG','',''), (6,6,'5693d257-a6d3-4118-9c2e-e266d9e19dc5/IMG_3501.JPG','champange','good stone'); /*!40000 ALTER TABLE `resume_photo` ENABLE KEYS */; UNLOCK TABLES; # Dump of table resume_project # ------------------------------------------------------------ DROP TABLE IF EXISTS `resume_project`; CREATE TABLE `resume_project` ( `resume_project_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `resume_id` int(11) unsigned DEFAULT NULL, `project_name` varchar(200) DEFAULT NULL, `project_description` varchar(500) DEFAULT NULL, PRIMARY KEY (`resume_project_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; LOCK TABLES `resume_project` WRITE; /*!40000 ALTER TABLE `resume_project` DISABLE KEYS */; INSERT INTO `resume_project` (`resume_project_id`, `resume_id`, `project_name`, `project_description`) VALUES (1,5,'e-commerce','sell jewelry'), (2,5,'test','test'); /*!40000 ALTER TABLE `resume_project` ENABLE KEYS */; UNLOCK TABLES; # Dump of table school # ------------------------------------------------------------ DROP TABLE IF EXISTS `school`; CREATE TABLE `school` ( `school_id` int(11) NOT NULL, `school_name` varchar(100) DEFAULT NULL, `school_level` varchar(20) DEFAULT NULL, `school_region` varchar(10) DEFAULT NULL, `school_category` varchar(40) DEFAULT NULL, `is_211` int(2) DEFAULT NULL, `is_985` int(2) DEFAULT NULL, `is_central` int(2) DEFAULT NULL, `number_of_major` int(11) DEFAULT NULL, `school_name_pinying` varchar(100) DEFAULT NULL, `school_name_combine` varchar(100) DEFAULT NULL, PRIMARY KEY (`school_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; LOCK TABLES `school` WRITE; /*!40000 ALTER TABLE `school` DISABLE KEYS */; INSERT INTO `school` (`school_id`, `school_name`, `school_level`, `school_region`, `school_category`, `is_211`, `is_985`, `is_central`, `number_of_major`, `school_name_pinying`, `school_name_combine`) VALUES (1,'?????? ','????','??','??',0,0,0,NULL,'chongqingwenlixueyuan','?????? ??chongqingwenlixueyuan'), (2,'???? ','????','??','??',0,0,0,NULL,'sanyaxueyuan','???? ??sanyaxueyuan'), (3,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (4,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (5,'???????? ... ','????','??','??',0,0,0,NULL,'','???????? ... ??'), (6,'???????? ... ','????','??','??',0,0,0,NULL,'','???????? ... ??'), (7,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (8,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (9,'???? ','????','??','??',1,1,1,NULL,'','???? ??'), (10,'?????? ','????','??','??',1,1,1,NULL,'','?????? ??'), (11,'???? ','????','??','??',1,1,1,NULL,'','???? ??'), (12,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (13,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (14,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (15,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (16,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (17,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (18,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (19,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (20,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (21,'????? ','????','???','??',0,0,1,NULL,'','????? ???'), (22,'??????? ','????','???','??',0,0,0,NULL,'','??????? ???'), (23,'??????? ','????','???','??',0,0,0,NULL,'','??????? ???'), (24,'???? ','????','???','??',0,0,0,NULL,'','???? ???'), (25,'???? ','????','??','??',0,0,1,NULL,'','???? ??'), (26,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (27,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (28,'???? ','????','??','??',1,1,1,NULL,'','???? ??'), (29,'???? ','????','??','??',0,0,1,NULL,'','???? ??'), (30,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (31,'????? ','????','???','??',0,0,0,NULL,'','????? ???'), (32,'????? ','????','???','??',0,0,0,NULL,'','????? ???'), (33,'?????? ','????','???','??',0,0,0,NULL,'','?????? ???'), (34,'????? ','????','???','??',0,0,0,NULL,'','????? ???'), (35,'???? ','????','???','??',0,0,0,NULL,'','???? ???'), (36,'???? ','????','??','??',1,1,1,NULL,'','???? ??'), (37,'?????? ','????','??','??',1,1,1,NULL,'','?????? ??'), (38,'???? ','????','??','??',0,0,1,NULL,'','???? ??'), (39,'???? ','????','??','??',1,1,1,NULL,'','???? ??'), (40,'???? ','????','??','??',0,0,1,NULL,'','???? ??'), (41,'???? ','????','??','??',1,1,1,NULL,'','???? ??'), (42,'???? ','????','??','??',1,0,1,NULL,'','???? ??'), (43,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (44,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (45,'???? ','????','??','??',1,1,1,NULL,'','???? ??'), (46,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (47,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (48,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (49,'???? ','????','??','??',0,0,1,NULL,'','???? ??'), (50,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (51,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (52,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (53,'???? ','????','??','??',1,1,1,NULL,'','???? ??'), (54,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (55,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (56,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (57,'???? ','????','??','??',0,0,1,2,'','???? ??'), (58,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (59,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (60,'???? ','????','??','??',1,1,1,NULL,'','???? ??'), (61,'?????? ','????','??','??',1,1,1,NULL,'','?????? ??'), (62,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (63,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (64,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (65,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (66,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (67,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (68,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (69,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (70,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (71,'???? ','????','??','??',0,0,1,NULL,'','???? ??'), (72,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (73,'???? ','????','??','??',1,1,1,NULL,'','???? ??'), (74,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (75,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (76,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (77,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (78,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (79,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (80,'???? ','????','??','??',1,1,1,NULL,'','???? ??'), (81,'???? ','????','??','??',1,1,1,NULL,'','???? ??'), (82,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (83,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (84,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (85,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (86,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (87,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (88,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (89,'???? ','????','??','??',1,1,1,NULL,'','???? ??'), (90,'???? ','????','??','??',0,0,1,NULL,'','???? ??'), (91,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (92,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (93,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (94,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (95,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (96,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (97,'???? ','????','??','??',0,0,1,NULL,'','???? ??'), (98,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (99,'???? ','????','??','??',0,0,1,NULL,'','???? ??'), (100,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (101,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (102,'???? ','????','??','??',1,1,1,NULL,'','???? ??'), (103,'???? ','????','??','??',1,1,1,NULL,'','???? ??'), (104,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (105,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (106,'???? ','????','??','??',1,0,1,NULL,'','???? ??'), (107,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (108,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (109,'???????? ... ','????','??','??',0,0,0,NULL,'','???????? ... ??'), (110,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (111,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (112,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (113,'???????? ... ','????','??','??',0,0,0,NULL,'','???????? ... ??'), (114,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (115,'???????? ... ','????','??','??',0,0,0,NULL,'','???????? ... ??'), (116,'???????? ... ','????','??','??',0,0,0,NULL,'','???????? ... ??'), (117,'???????? ... ','????','??','??',0,0,0,NULL,'','???????? ... ??'), (118,'???? ','????','??','??',1,1,1,NULL,'','???? ??'), (119,'?????? ','????','??','??',1,0,1,NULL,'','?????? ??'), (120,'?????? ','????','??','??',0,0,1,NULL,'','?????? ??'), (121,'???????? ','????','??','??',0,1,1,NULL,'','???????? ??'), (122,'?????? ','????','??','??',0,1,1,1,'','?????? ??'), (123,'?????? ','????','??','??',1,0,1,NULL,'','?????? ??'), (124,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (125,'?????? ','????','??','??',1,0,1,NULL,'','?????? ??'), (126,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (127,'?????? ','????','??','??',1,0,1,NULL,'','?????? ??'), (128,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (129,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (130,'???????? ','????','??','??',0,0,0,5,'','???????? ??'), (131,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (132,'?????????? ','????','??','??',1,0,1,NULL,'','?????????? ??'), (133,'???? ','????','??','??',1,1,1,NULL,'','???? ??'), (134,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (135,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (136,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (137,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (138,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (139,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (140,'?????? ','????','??','??',0,0,1,NULL,'','?????? ??'), (141,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (142,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (143,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (144,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (145,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (146,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (147,'?????? ','????','??','??',0,0,1,NULL,'','?????? ??'), (148,'??????? ','????','???','??',0,0,0,NULL,'','??????? ???'), (149,'?????? ','????','??','??',1,1,1,NULL,'','?????? ??'), (150,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (151,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (152,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (153,'???? ','????','??','??',1,1,1,NULL,'','???? ??'), (154,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (155,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (156,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (157,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (158,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (159,'?????? ','????','??','??',0,0,1,NULL,'','?????? ??'), (160,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (161,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (162,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (163,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (164,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (165,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (166,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (167,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (168,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (169,'??????? ','????','???','??',0,1,1,NULL,'','??????? ???'), (170,'??????? ','????','???','??',0,0,0,NULL,'','??????? ???'), (171,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (172,'??????? ','????','???','??',0,0,1,NULL,'','??????? ???'), (173,'??????? ','????','???','??',0,0,0,NULL,'','??????? ???'), (174,'?????? ','????','???','??',0,0,0,NULL,'','?????? ???'), (175,'???? ','????','??','??',1,1,1,NULL,'','???? ??'), (176,'?????? ','????','??','??',1,0,1,NULL,'','?????? ??'), (177,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (178,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (179,'???? ','????','??','??',1,0,1,NULL,'','???? ??'), (180,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (181,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (182,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (183,'???????? ','????','??','??',0,0,1,NULL,'','???????? ??'), (184,'?????? ','????','??','??',0,0,1,NULL,'','?????? ??'), (185,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (186,'?????? ','????','??','??',1,0,1,NULL,'','?????? ??'), (187,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (188,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (189,'???? ','????','??','??',1,0,1,NULL,'','???? ??'), (190,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (191,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (192,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (193,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (194,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (195,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (196,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (197,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (198,'???????? ','????','??','??',0,1,1,NULL,'','???????? ??'), (199,'?????? ','????','??','??',1,0,1,NULL,'','?????? ??'), (200,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (201,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (202,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (203,'???? ','????','??','??',0,0,1,NULL,'','???? ??'), (204,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (205,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (206,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (207,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (208,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (209,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (210,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (211,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (212,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (213,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (214,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (215,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (216,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (217,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (218,'???? ','??????','??','????',0,0,0,NULL,'','???? ??'), (219,'??????????? ','??????','??','????',0,0,0,NULL,'','??????????? ??'), (220,'?????????? ','??????','??','????',0,0,0,NULL,'','?????????? ??'), (221,'???????????... ','??????','??','????',0,0,0,NULL,'','???????????... ??'), (222,'????—????? ','??????','??','????',0,0,0,NULL,'','????—????? ??'), (223,'???????????... ','??????','??','????',0,0,0,NULL,'','???????????... ??'), (224,'????-????? ','??????','??','????',0,0,0,NULL,'','????-????? ??'), (225,'???? ','??????','??','????',0,0,0,NULL,'','???? ??'), (226,'???????????... ','??????','??','????',0,0,0,NULL,'','???????????... ??'), (227,'??????????? ','??????','??','????',0,0,0,NULL,'','??????????? ??'), (228,'???????? ','??????','??','????',0,0,0,NULL,'','???????? ??'), (229,'???????????... ','??????','??','????',0,0,0,NULL,'','???????????... ??'), (230,'?????????? ','??????','??','????',0,0,0,NULL,'','?????????? ??'), (231,'???????????... ','??????','??','????',0,0,0,NULL,'','???????????... ??'), (232,'????????? ','??????','??','????',0,0,0,NULL,'','????????? ??'), (233,'???????????... ','??????','??','????',0,0,0,NULL,'','???????????... ??'), (234,'??????????? ','??????','??','????',0,0,0,NULL,'','??????????? ??'), (235,'???????????... ','??????','??','????',0,0,0,NULL,'','???????????... ??'), (236,'????ACCA???... ','??????','??','????',0,0,0,NULL,'','????ACCA???... ??'), (237,'??CMA??????... ','??????','??','????',0,0,0,NULL,'','??CMA??????... ??'), (238,'???????? ','??????','??','????',0,0,0,NULL,'','???????? ??'), (239,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (240,'???????? ... ','????','??','??',0,0,0,NULL,'','???????? ... ??'), (241,'???????? ... ','????','??','??',0,0,0,NULL,'','???????? ... ??'), (242,'?????? ','????','??','??',1,1,1,NULL,'','?????? ??'), (243,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (244,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (245,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (246,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (247,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (248,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (249,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (250,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (251,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (252,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (253,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (254,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (255,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (256,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (257,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (258,'??????? ','????','???','??',0,0,0,NULL,'','??????? ???'), (259,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (260,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (261,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (262,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (263,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (264,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (265,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (266,'?????? ','????','??','??',1,0,1,NULL,'','?????? ??'), (267,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (268,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (269,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (270,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (271,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (272,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (273,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (274,'?????????? ','????','??','??',0,0,0,1,'','?????????? ??'), (275,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (276,'?????? ','????','??','??',1,0,1,NULL,'','?????? ??'), (277,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (278,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (279,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (280,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (281,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (282,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (283,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (284,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (285,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (286,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (287,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (288,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (289,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (290,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (291,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (292,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (293,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (294,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (295,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (296,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (297,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (298,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (299,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (300,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (301,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (302,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (303,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (304,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (305,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (306,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (307,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (308,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (309,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (310,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (311,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (312,'?????? ','????','??','??',1,0,1,NULL,'','?????? ??'), (313,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (314,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (315,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (316,'?????? ','????','??','??',0,0,1,NULL,'','?????? ??'), (317,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (318,'?????? ','????','??','??',0,0,1,NULL,'','?????? ??'), (319,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (320,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (321,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (322,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (323,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (324,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (325,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (326,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (327,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (328,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (329,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (330,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (331,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (332,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (333,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (334,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (335,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (336,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (337,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (338,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (339,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (340,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (341,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (342,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (343,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (344,'???????? ... ','????','??','??',0,0,0,NULL,'','???????? ... ??'), (345,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (346,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (347,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (348,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (349,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (350,'?????? ','????','??','??',1,0,1,NULL,'','?????? ??'), (351,'???????? ','????','??','??',1,0,1,NULL,'','???????? ??'), (352,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (353,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (354,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (355,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (356,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (357,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (358,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (359,'??????? ','????','???','??',0,0,0,NULL,'','??????? ???'), (360,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (361,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (362,'??????? ','????','???','??',0,0,0,NULL,'','??????? ???'), (363,'??????? ','????','???','??',0,0,0,NULL,'','??????? ???'), (364,'?????? ','????','??','??',1,0,1,NULL,'','?????? ??'), (365,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (366,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (367,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (368,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (369,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (370,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (371,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (372,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (373,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (374,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (375,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (376,'???????? ','????','??','??',1,0,1,NULL,'','???????? ??'), (377,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (378,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (379,'?????? ','????','??','??',1,0,1,NULL,'','?????? ??'), (380,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (381,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (382,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (383,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (384,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (385,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (386,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (387,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (388,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (389,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (390,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (391,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (392,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (393,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (394,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (395,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (396,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (397,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (398,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (399,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (400,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (401,'??????????? ','????','??','??',0,0,0,NULL,'','??????????? ??'), (402,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (403,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (404,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (405,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (406,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (407,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (408,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (409,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (410,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (411,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (412,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (413,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (414,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (415,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (416,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (417,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (418,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (419,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (420,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (421,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (422,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (423,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (424,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (425,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (426,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (427,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (428,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (429,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (430,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (431,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (432,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (433,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (434,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (435,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (436,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (437,'????????? ','????','???','??',0,0,0,NULL,'','????????? ???'), (438,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (439,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (440,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (441,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (442,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (443,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (444,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (445,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (446,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (447,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (448,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (449,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (450,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (451,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (452,'?????? ','????','??','??',1,0,0,NULL,'','?????? ??'), (453,'?????? ','????','??','??',1,0,1,NULL,'','?????? ??'), (454,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (455,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (456,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (457,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (458,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (459,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (460,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (461,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (462,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (463,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (464,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (465,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (466,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (467,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (468,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (469,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (470,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (471,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (472,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (473,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (474,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (475,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (476,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (477,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (478,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (479,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (480,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (481,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (482,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (483,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (484,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (485,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (486,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (487,'??????????? ','????','???','??',0,0,0,NULL,'','??????????? ???'), (488,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (489,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (490,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (491,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (492,'????????? ','????','???','??',0,0,0,NULL,'','????????? ???'), (493,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (494,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (495,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (496,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (497,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (498,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (499,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (500,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (501,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (502,'??????????? ','????','???','??',0,0,0,NULL,'','??????????? ???'), (503,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (504,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (505,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (506,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (507,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (508,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (509,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (510,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (511,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (512,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (513,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (514,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (515,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (516,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (517,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (518,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (519,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (520,'??????????? ','??','??','??',0,0,0,NULL,'','??????????? ??'), (521,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (522,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (523,'???????????... ','????','???','??',0,0,0,NULL,'','???????????... ???'), (524,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (525,'???????? ... ','????','??','??',0,0,0,NULL,'','???????? ... ??'), (526,'???????? ','??','??','??',0,0,0,NULL,'','???????? ??'), (527,'??????? ','????','??','??',1,0,1,NULL,'','??????? ??'), (528,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (529,'?????? ','????','??','??',1,0,0,NULL,'','?????? ??'), (530,'???? ','????','??','??',0,0,0,NULL,'','???? ??'), (531,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (532,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (533,'??????? ','????','??','??',1,0,1,NULL,'','??????? ??'), (534,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (535,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (536,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (537,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (538,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (539,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (540,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (541,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (542,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (543,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (544,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (545,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (546,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (547,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (548,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (549,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (550,'??????????? ','????','??','??',0,0,0,NULL,'','??????????? ??'), (551,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (552,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (553,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (554,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (555,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (556,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (557,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (558,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (559,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (560,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (561,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (562,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (563,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (564,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (565,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (566,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (567,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (568,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (569,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (570,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (571,'????????? ','????','???','??',0,0,0,NULL,'','????????? ???'), (572,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (573,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (574,'???????? ','????','???','??',0,0,0,NULL,'','???????? ???'), (575,'?????????? ','??','??','??',0,0,0,NULL,'','?????????? ??'), (576,'??????????? ','??','??','??',0,0,0,NULL,'','??????????? ??'), (577,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (578,'????????? ','??','??','??',0,0,0,NULL,'','????????? ??'), (579,'???????? ','??','??','??',0,0,0,NULL,'','???????? ??'), (580,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (581,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (582,'???????? ','??????','??','??',0,0,0,NULL,'','???????? ??'), (583,'???????? ... ','????','??','??',0,0,0,NULL,'','???????? ... ??'), (584,'???????? ... ','????','??','??',0,0,0,NULL,'','???????? ... ??'), (585,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (586,'???????? ... ','????','??','??',0,0,0,NULL,'','???????? ... ??'), (587,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (588,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (589,'???????? ... ','????','??','??',0,0,0,NULL,'','???????? ... ??'), (590,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (591,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (592,'??????? ','????','??','??',1,0,1,NULL,'','??????? ??'), (593,'?????? ','????','??','??',0,0,1,NULL,'','?????? ??'), (594,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (595,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (596,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (597,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (598,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (599,'??????? ','????','???','??',0,0,0,NULL,'','??????? ???'), (600,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (601,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (602,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (603,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (604,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (605,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (606,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (607,'??????? ','????','???','??',0,0,0,NULL,'','??????? ???'), (608,'???????? ','????','???','??',0,0,0,NULL,'','???????? ???'), (609,'?????? ','????','???','??',0,0,0,NULL,'','?????? ???'), (610,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (611,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (612,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (613,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (614,'?????? ','????','??','??',1,0,1,NULL,'','?????? ??'), (615,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (616,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (617,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (618,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (619,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (620,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (621,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (622,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (623,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (624,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (625,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (626,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (627,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (628,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (629,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (630,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (631,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (632,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (633,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (634,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (635,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (636,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (637,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (638,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (639,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (640,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (641,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (642,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (643,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (644,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (645,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (646,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (647,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (648,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (649,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (650,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (651,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (652,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (653,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (654,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (655,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (656,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (657,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (658,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (659,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (660,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (661,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (662,'??????? ','????','???','??',0,0,0,NULL,'','??????? ???'), (663,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (664,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (665,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (666,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (667,'??????????? ','????','??','??',0,0,0,NULL,'','??????????? ??'), (668,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (669,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (670,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (671,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (672,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (673,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (674,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (675,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (676,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (677,'??????????? ','????','??','??',0,0,0,NULL,'','??????????? ??'), (678,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (679,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (680,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (681,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (682,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (683,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (684,'??????????? ','????','??','??',0,0,0,NULL,'','??????????? ??'), (685,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (686,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (687,'??????????? ','????','??','??',0,0,0,NULL,'','??????????? ??'), (688,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (689,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (690,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (691,'?????? ','????','??','??',1,1,1,NULL,'','?????? ??'), (692,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (693,'?????? ','????','??','??',1,0,1,NULL,'','?????? ??'), (694,'????? ','????','??','??',0,0,0,NULL,'','????? ??'), (695,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (696,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (697,'??????? ','????','???','??',0,0,0,NULL,'','??????? ???'), (698,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (699,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (700,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (701,'????????? ','????','???','??',0,0,0,NULL,'','????????? ???'), (702,'?????? ','????','???','??',0,0,1,NULL,'','?????? ???'), (703,'?????? ','????','???','??',1,0,1,NULL,'','?????? ???'), (704,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (705,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (706,'?????? ','????','??','??',1,0,1,NULL,'','?????? ??'), (707,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (708,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (709,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (710,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (711,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (712,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (713,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (714,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (715,'?????? ','????','??','??',1,0,1,NULL,'','?????? ??'), (716,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (717,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (718,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (719,'?????? ','????','??','??',0,0,1,NULL,'','?????? ??'), (720,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (721,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (722,'???????? ','????','??','??',1,1,1,NULL,'','???????? ??'), (723,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (724,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (725,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (726,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (727,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (728,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (729,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (730,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (731,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (732,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (733,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (734,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (735,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (736,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (737,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (738,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (739,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (740,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (741,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (742,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (743,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (744,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (745,'??????????? ','????','???','??',0,0,0,NULL,'','??????????? ???'), (746,'??????????? ','????','???','??',0,0,0,NULL,'','??????????? ???'), (747,'??????????? ','????','???','??',0,0,0,NULL,'','??????????? ???'), (748,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (749,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (750,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (751,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (752,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (753,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (754,'??????????? ','????','???','??',0,0,0,NULL,'','??????????? ???'), (755,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (756,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (757,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (758,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (759,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (760,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (761,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (762,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (763,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (764,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (765,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (766,'?????????? ','????','???','??',0,0,0,NULL,'','?????????? ???'), (767,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (768,'??????????? ','????','???','??',0,0,0,NULL,'','??????????? ???'), (769,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (770,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (771,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (772,'??????????? ','????','???','??',0,0,0,NULL,'','??????????? ???'), (773,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (774,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (775,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (776,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (777,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (778,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (779,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (780,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (781,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (782,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (783,'????????? ','????','???','??',0,0,0,NULL,'','????????? ???'), (784,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (785,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (786,'?????? ','????','??','??',0,1,1,NULL,'','?????? ??'), (787,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (788,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (789,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (790,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (791,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (792,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (793,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (794,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (795,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (796,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (797,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (798,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (799,'??????????? ','????','??','??',0,0,0,NULL,'','??????????? ??'), (800,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (801,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (802,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (803,'????????? ','????','???','??',0,0,0,NULL,'','????????? ???'), (804,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (805,'????? ','????','??','??',0,0,0,1,'','????? ??'), (806,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (807,'?????? ','????','??','??',0,0,1,NULL,'','?????? ??'), (808,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (809,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (810,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (811,'??????? ','????','???','??',0,0,0,NULL,'','??????? ???'), (812,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (813,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (814,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (815,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (816,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (817,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (818,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (819,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (820,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (821,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (822,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (823,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (824,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (825,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (826,'????????? ','????','???','??',0,0,0,NULL,'','????????? ???'), (827,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (828,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (829,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (830,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (831,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (832,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (833,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (834,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (835,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (836,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (837,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (838,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (839,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (840,'?????? ','????','??','??',1,0,1,NULL,'','?????? ??'), (841,'?????? ','????','??','??',1,0,1,NULL,'','?????? ??'), (842,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (843,'?????? ','????','??','??',1,0,0,NULL,'','?????? ??'), (844,'?????? ','????','??','??',1,0,0,NULL,'','?????? ??'), (845,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (846,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (847,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (848,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (849,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (850,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (851,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (852,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (853,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (854,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (855,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (856,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (857,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (858,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (859,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (860,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (861,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (862,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (863,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (864,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (865,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (866,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (867,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (868,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (869,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (870,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (871,'????????? ','????','???','??',0,0,0,NULL,'','????????? ???'), (872,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (873,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (874,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (875,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (876,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (877,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (878,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (879,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (880,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (881,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (882,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (883,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (884,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (885,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (886,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (887,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (888,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (889,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (890,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (891,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (892,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (893,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (894,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (895,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (896,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (897,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (898,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (899,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (900,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (901,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (902,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (903,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (904,'??????????? ','????','???','??',0,0,0,NULL,'','??????????? ???'), (905,'????????? ','????','???','??',0,0,0,NULL,'','????????? ???'), (906,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (907,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (908,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (909,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (910,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (911,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (912,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (913,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (914,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (915,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (916,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (917,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (918,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (919,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (920,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (921,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (922,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (923,'???????????... ','??????','??','??',0,0,0,NULL,'','???????????... ??'), (924,'?????? ','????','???','??',0,0,0,NULL,'','?????? ???'), (925,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (926,'???????????... ','??????','??','??',0,0,0,NULL,'','???????????... ??'), (927,'???????????... ','??????','??','??',0,0,0,NULL,'','???????????... ??'), (928,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (929,'?????????? ','??','??','??',0,0,0,NULL,'','?????????? ??'), (930,'???????? ','??','??','??',0,0,0,NULL,'','???????? ??'), (931,'???????????... ','??????','??','??',0,0,0,NULL,'','???????????... ??'), (932,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (933,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (934,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (935,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (936,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (937,'??????????? ','????','??','??',0,0,0,NULL,'','??????????? ??'), (938,'????????? ','????','???','??',0,0,0,NULL,'','????????? ???'), (939,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (940,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (941,'????????? ','????','??','??',0,0,1,NULL,'','????????? ??'), (942,'????????? ','????','??','??',0,0,1,NULL,'','????????? ??'), (943,'???????????... ','????','??','??',0,1,1,NULL,'','???????????... ??'), (944,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (945,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (946,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (947,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (948,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (949,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (950,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (951,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (952,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (953,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (954,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (955,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (956,'??????????? ','????','??','??',0,0,0,NULL,'','??????????? ??'), (957,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (958,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (959,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (960,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (961,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (962,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (963,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (964,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (965,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (966,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (967,'??????????? ','????','??','??',0,0,0,NULL,'','??????????? ??'), (968,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (969,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (970,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (971,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (972,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (973,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (974,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (975,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (976,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (977,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (978,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (979,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (980,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (981,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (982,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (983,'?????? ','????','??','??',0,0,0,NULL,'','?????? ??'), (984,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (985,'???????????... ','????','???','??',0,0,0,NULL,'','???????????... ???'), (986,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (987,'??????????? ','????','??','??',0,0,0,NULL,'','??????????? ??'), (988,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (989,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (990,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (991,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (992,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (993,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (994,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (995,'???????????... ','????','??','??',0,0,0,NULL,'','???????????... ??'), (996,'??????????? ','????','??','??',0,0,0,NULL,'','??????????? ??'), (997,'??????????? ','????','??','??',0,0,0,NULL,'','??????????? ??'), (998,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (999,'??????????? ','????','??','??',0,0,0,NULL,'','??????????? ??'), (1000,'???????? ','????','??','??',0,0,0,NULL,'','???????? ??'), (1001,'?????????? ','????','??','??',0,0,0,NULL,'','?????????? ??'), (1002,'????????? ','????','??','??',0,0,0,NULL,'','????????? ??'), (1003,'??????? ','????','??','??',0,0,0,NULL,'','??????? ??'), (1004,'??????? ','????','??','????',0,0,0,NULL,'','??????? ??'), (1005,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1006,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1007,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1008,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1009,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1010,'???? ','??????','??','????',0,0,0,NULL,'','???? ??'), (1011,'??????????? ','??????','??','????',0,0,0,NULL,'','??????????? ??'), (1012,'?????????? ','??????','??','????',0,0,0,NULL,'','?????????? ??'), (1013,'???????????... ','??????','??','????',0,0,0,NULL,'','???????????... ??'), (1014,'????—????? ','??????','??','????',0,0,0,NULL,'','????—????? ??'), (1015,'???????????... ','??????','??','????',0,0,0,NULL,'','???????????... ??'), (1016,'????-????? ','??????','??','????',0,0,0,NULL,'','????-????? ??'), (1017,'???? ','??????','??','????',0,0,0,NULL,'','???? ??'), (1018,'???????????... ','??????','??','????',0,0,0,NULL,'','???????????... ??'), (1019,'??????????? ','??????','??','????',0,0,0,NULL,'','??????????? ??'), (1020,'???????? ','??????','??','????',0,0,0,NULL,'','???????? ??'), (1021,'???????????... ','??????','??','????',0,0,0,NULL,'','???????????... ??'), (1022,'?????????? ','??????','??','????',0,0,0,NULL,'','?????????? ??'), (1023,'???????????... ','??????','??','????',0,0,0,NULL,'','???????????... ??'), (1024,'????????? ','??????','??','????',0,0,0,NULL,'','????????? ??'), (1025,'???????????... ','??????','??','????',0,0,0,NULL,'','???????????... ??'), (1026,'??????????? ','??????','??','????',0,0,0,NULL,'','??????????? ??'), (1027,'???????????... ','??????','??','????',0,0,0,NULL,'','???????????... ??'), (1028,'????ACCA???... ','??????','??','????',0,0,0,NULL,'','????ACCA???... ??'), (1029,'??CMA??????... ','??????','??','????',0,0,0,NULL,'','??CMA??????... ??'), (1030,'???????? ','??????','??','????',0,0,0,NULL,'','???????? ??'), (1031,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1032,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1033,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1034,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1035,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1036,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1037,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1038,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1039,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1040,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1041,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1042,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1043,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1044,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1045,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1046,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1047,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1048,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1049,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1050,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1051,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1052,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1053,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1054,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1055,'????????? ','????','??','????',0,0,0,NULL,'','????????? ??'), (1056,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1057,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1058,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1059,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1060,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1061,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1062,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1063,'??????????? ','????','??','????',0,0,0,NULL,'','??????????? ??'), (1064,'????????? ','????','??','????',0,0,0,NULL,'','????????? ??'), (1065,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1066,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1067,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1068,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1069,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1070,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1071,'????????? ','????','??','????',0,0,0,NULL,'','????????? ??'), (1072,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1073,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1074,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1075,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1076,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1077,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1078,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1079,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1080,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1081,'????????? ','????','??','????',0,0,0,NULL,'','????????? ??'), (1082,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1083,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1084,'?????? ','????','??','????',0,0,0,NULL,'','?????? ??'), (1085,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1086,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1087,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1088,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1089,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1090,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1091,'??????????? ','????','??','????',0,0,0,NULL,'','??????????? ??'), (1092,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1093,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1094,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1095,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1096,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1097,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1098,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1099,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1100,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1101,'??????????? ','????','??','????',0,0,0,NULL,'','??????????? ??'), (1102,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1103,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1104,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1105,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1106,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1107,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1108,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1109,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1110,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1111,'??????????? ','????','??','????',0,0,0,NULL,'','??????????? ??'), (1112,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1113,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1114,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1115,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1116,'??????????? ','????','??','????',0,0,0,NULL,'','??????????? ??'), (1117,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1118,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1119,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1120,'??????? ','????','???','????',0,0,0,NULL,'','??????? ???'), (1121,'?????????? ','????','???','????',0,0,0,NULL,'','?????????? ???'), (1122,'???????????... ','????','???','????',0,0,0,NULL,'','???????????... ???'), (1123,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1124,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1125,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1126,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1127,'????????? ','????','??','????',0,0,0,NULL,'','????????? ??'), (1128,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1129,'????????? ','????','??','????',0,0,0,NULL,'','????????? ??'), (1130,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1131,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1132,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1133,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1134,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1135,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1136,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1137,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1138,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1139,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1140,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1141,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1142,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1143,'??????? ','????','???','????',0,0,0,NULL,'','??????? ???'), (1144,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1145,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1146,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1147,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1148,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1149,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1150,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1151,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1152,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1153,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1154,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1155,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1156,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1157,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1158,'???????? ... ','????','??','????',0,0,0,NULL,'','???????? ... ??'), (1159,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1160,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1161,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1162,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1163,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1164,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1165,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1166,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1167,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1168,'???????????... ','????','???','????',0,0,0,NULL,'','???????????... ???'), (1169,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1170,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1171,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1172,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1173,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1174,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1175,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1176,'???? ','????','??','????',0,0,0,NULL,'','???? ??'), (1177,'???? ','????','??','????',0,0,0,NULL,'','???? ??'), (1178,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1179,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1180,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1181,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1182,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1183,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1184,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1185,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1186,'???? ','????','??','????',0,0,0,NULL,'','???? ??'), (1187,'???? ','????','??','????',0,0,0,NULL,'','???? ??'), (1188,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1189,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1190,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1191,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1192,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1193,'????????? ','????','??','????',0,0,0,NULL,'','????????? ??'), (1194,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1195,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1196,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1197,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1198,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1199,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1200,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1201,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1202,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1203,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1204,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1205,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1206,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1207,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1208,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1209,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1210,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1211,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1212,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1213,'??????????? ','????','???','????',0,0,0,NULL,'','??????????? ???'), (1214,'?????? ','????','???','????',0,0,0,NULL,'','?????? ???'), (1215,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1216,'????? ','????','??','????',0,0,0,NULL,'','????? ??'), (1217,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1218,'?????? ','????','??','????',0,0,0,NULL,'','?????? ??'), (1219,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1220,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1221,'???????????... ','????','??','????',0,0,0,NULL,'','???????????... ??'), (1222,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1223,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1224,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1225,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1226,'?????? ','????','??','????',0,0,0,NULL,'','?????? ??'), (1227,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1228,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1229,'?????? ','????','??','????',0,0,0,NULL,'','?????? ??'), (1230,'????? ','????','???','????',0,0,0,NULL,'','????? ???'), (1231,'????????? ','????','??','????',0,0,0,NULL,'','????????? ??'), (1232,'????????? ','????','??','????',0,0,0,NULL,'','????????? ??'), (1233,'?????? ','????','??','????',0,0,0,NULL,'','?????? ??'), (1234,'?????? ','????','??','????',0,0,0,NULL,'','?????? ??'), (1235,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1236,'???? ','????','??','????',0,0,0,NULL,'','???? ??'), (1237,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1238,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1239,'?????? ','????','??','????',0,0,0,NULL,'','?????? ??'), (1240,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1241,'?????? ','????','??','????',0,0,0,NULL,'','?????? ??'), (1242,'?????? ','????','??','????',0,0,0,NULL,'','?????? ??'), (1243,'????????? ','????','??','????',0,0,0,NULL,'','????????? ??'), (1244,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1245,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1246,'??????? ','????','??','????',0,0,0,NULL,'','??????? ??'), (1247,'?????? ','????','??','????',0,0,0,NULL,'','?????? ??'), (1248,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1249,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1250,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1251,'?????? ','????','??','????',0,0,0,NULL,'','?????? ??'), (1252,'?????? ','????','??','????',0,0,0,NULL,'','?????? ??'), (1253,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1254,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1255,'?????? ','????','??','????',0,0,0,NULL,'','?????? ??'), (1256,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1257,'???????? ','????','??','????',0,0,0,NULL,'','???????? ??'), (1258,'????????? ','????','??','????',0,0,0,NULL,'','????????? ??'), (1259,'????????? ','????','???','????',0,0,0,NULL,'','????????? ???'), (1260,'?????????? ','????','??','????',0,0,0,NULL,'','?????????? ??'), (1261,'??????','????','??','??',0,0,0,NULL,'','????????'), (1262,'??????','????','??','??',0,0,0,NULL,'','????????'), (1263,'????','????','??','??',0,0,1,NULL,'','??????'), (1264,'????','????','??','??',0,0,0,NULL,'','??????'), (1265,'????','????','??','??',0,0,0,NULL,'','??????'), (1266,'????','????','??','??',0,0,1,NULL,'','??????'), (1267,'????','????','??','??',0,0,0,NULL,'','??????'), (1268,'????','????','??','??',0,0,0,NULL,'','??????'), (1269,'????','????','??','??',0,0,0,NULL,'','??????'), (1270,'????','????','??','??',0,0,1,NULL,'','??????'), (1271,'????','????','??','??',0,0,1,NULL,'','??????'), (1272,'??????','????','??','??',1,1,1,NULL,'','????????'), (1273,'????','????','??','??',0,0,0,NULL,'','??????'), (1274,'????','????','??','??',1,1,1,NULL,'','??????'), (1275,'??????','????','??','??',0,0,0,NULL,'','????????'), (1276,'????','????','??','??',0,0,0,NULL,'','??????'), (1277,'????','????','??','??',0,0,1,NULL,'','??????'), (1278,'????','????','??','??',0,0,1,NULL,'','??????'), (1279,'????','????','??','??',0,0,1,NULL,'','??????'), (1280,'?????','????','??','??',0,0,0,NULL,'','???????'), (1281,'?????','????','??','??',0,0,1,NULL,'','???????'), (1282,'??????','????','??','??',0,0,0,NULL,'','????????'), (1283,'????','????','??','??',0,0,0,NULL,'','??????'), (1284,'??????','????','???','??',0,0,0,NULL,'','?????????'), (1285,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1286,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1287,'??????','????','??','??',0,0,0,NULL,'','????????'), (1288,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1289,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1290,'??????','????','??','??',0,0,0,NULL,'','????????'), (1291,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1292,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1293,'??????','????','??','??',0,0,0,NULL,'','????????'), (1294,'??????','????','???','??',0,0,0,NULL,'','?????????'), (1295,'?????','????','??','??',0,0,0,NULL,'','???????'), (1296,'????','????','??','??',0,0,0,NULL,'','??????'), (1297,'????','????','??','??',0,0,0,NULL,'','??????'), (1298,'????','????','??','??',0,0,0,NULL,'','??????'), (1299,'??????','????','??','??',0,0,0,NULL,'','????????'), (1300,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1301,'????','????','??','??',0,0,0,NULL,'','??????'), (1302,'????','????','??','??',0,0,0,NULL,'','??????'), (1303,'??????','????','??','??',0,0,0,NULL,'','????????'), (1304,'????','????','??','??',0,0,0,NULL,'','??????'), (1305,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1306,'?????','????','???','??',0,0,0,NULL,'','????????'), (1307,'????','????','??','??',0,0,0,NULL,'','??????'), (1308,'????','????','??','??',0,0,0,NULL,'','??????'), (1309,'????','????','??','??',0,0,0,NULL,'','??????'), (1310,'????','????','??','??',0,0,0,NULL,'','??????'), (1311,'????','????','??','??',0,0,0,NULL,'','??????'), (1312,'????','????','??','??',0,0,0,NULL,'','??????'), (1313,'????','????','??','??',0,0,0,NULL,'','??????'), (1314,'??????','????','??','??',0,0,0,NULL,'','????????'), (1315,'????','????','??','??',0,0,0,NULL,'','??????'), (1316,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1317,'????','????','??','??',0,0,0,NULL,'','??????'), (1318,'??????','????','??','??',0,0,0,NULL,'','????????'), (1319,'????','????','??','??',0,0,0,NULL,'','??????'), (1320,'?????????','????','??','??',0,0,0,NULL,'','???????????'), (1321,'????','????','??','??',0,0,0,NULL,'','??????'), (1322,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1323,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1324,'????','????','??','??',0,0,0,NULL,'','??????'), (1325,'??????','????','??','??',0,0,0,NULL,'','????????'), (1326,'????','????','??','??',0,0,0,NULL,'','??????'), (1327,'????','????','??','??',0,0,0,NULL,'','??????'), (1328,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1329,'??????','????','??','??',0,0,0,NULL,'','????????'), (1330,'????','????','??','??',0,0,0,NULL,'','??????'), (1331,'????','????','??','??',0,0,0,NULL,'','??????'), (1332,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1333,'?????','????','??','??',0,0,0,NULL,'','???????'), (1334,'????','????','??','??',0,0,0,NULL,'','??????'), (1335,'????','????','??','??',0,0,0,NULL,'','??????'), (1336,'??????','????','??','??',0,0,0,NULL,'','????????'), (1337,'??????','????','??','??',0,0,0,NULL,'','????????'), (1338,'??????','????','??','??',0,0,0,NULL,'','????????'), (1339,'?????????','????','???','??',0,0,0,NULL,'','????????????'), (1340,'???????','????','???','??',0,0,0,NULL,'','??????????'), (1341,'???????','????','???','??',0,0,0,NULL,'','??????????'), (1342,'???????','????','???','??',0,0,0,NULL,'','??????????'), (1343,'????','????','??','??',0,0,0,NULL,'','??????'), (1344,'????','????','??','??',0,0,0,NULL,'','??????'), (1345,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1346,'??????','????','??','??',0,0,0,NULL,'','????????'), (1347,'????','????','??','??',0,0,0,NULL,'','??????'), (1348,'????','????','??','??',0,0,0,NULL,'','??????'), (1349,'??????','????','??','??',0,0,0,NULL,'','????????'), (1350,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1351,'??????','????','??','??',0,0,0,NULL,'','????????'), (1352,'????','????','??','??',0,0,0,NULL,'','??????'), (1353,'??????','????','??','??',0,0,0,NULL,'','????????'), (1354,'????','????','??','??',0,0,0,NULL,'','??????'), (1355,'????','????','???','??',0,0,0,NULL,'','???????'), (1356,'????','????','??','??',0,0,0,NULL,'','??????'), (1357,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1358,'????????','????','???','??',0,0,0,NULL,'','???????????'), (1359,'????','????','??','??',0,0,0,NULL,'','??????'), (1360,'????','????','??','??',0,0,0,NULL,'','??????'), (1361,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1362,'????','????','??','??',0,0,0,NULL,'','??????'), (1363,'????','????','??','??',0,0,0,NULL,'','??????'), (1364,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1365,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1366,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1367,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1368,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1369,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1370,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1371,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1372,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1373,'???????????...','????','??','??',0,0,0,NULL,'','???????????...??'), (1374,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1375,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1376,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1377,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1378,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1379,'??????','????','??','??',0,0,0,NULL,'','????????'), (1380,'???????????','????','??','??',0,0,0,NULL,'','?????????????'), (1381,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1382,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1383,'??????','????','??','??',0,0,0,NULL,'','????????'), (1384,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1385,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1386,'??????','????','??','??',0,0,0,NULL,'','????????'), (1387,'??????','????','??','??',0,0,0,NULL,'','????????'), (1388,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1389,'??????','????','??','??',0,0,0,NULL,'','????????'), (1390,'??????','????','??','??',0,0,0,NULL,'','????????'), (1391,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1392,'??????','????','??','??',0,0,0,NULL,'','????????'), (1393,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1394,'????????','????','???','??',0,0,0,NULL,'','???????????'), (1395,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1396,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1397,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1398,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1399,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1400,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1401,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1402,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1403,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1404,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1405,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1406,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1407,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1408,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1409,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1410,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1411,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1412,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1413,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1414,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1415,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1416,'???????????...','????','??','??',0,0,0,NULL,'','???????????...??'), (1417,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1418,'?????????','????','??','??',0,0,0,NULL,'','???????????'), (1419,'????????','????','???','??',0,0,0,NULL,'','???????????'), (1420,'????????','????','???','??',0,0,0,NULL,'','???????????'), (1421,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1422,'??????','????','??','??',0,0,0,NULL,'','????????'), (1423,'??????','????','???','??',0,0,0,NULL,'','?????????'), (1424,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1425,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1426,'?????????','????','???','??',0,0,0,NULL,'','????????????'), (1427,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1428,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1429,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1430,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1431,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1432,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1433,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1434,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1435,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1436,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1437,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1438,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1439,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1440,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1441,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1442,'???????????...','????','??','??',0,0,0,NULL,'','???????????...??'), (1443,'??????','????','??','??',0,0,0,NULL,'','????????'), (1444,'?????????','????','??','??',0,0,0,NULL,'','???????????'), (1445,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1446,'???????????','????','??','??',0,0,0,NULL,'','?????????????'), (1447,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1448,'????????','????','??','??',0,0,0,NULL,'','??????????'), (1449,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (1450,'?n?????','????','??','??',0,0,0,NULL,'','?n???????'), (3000,'????????','????','??','??',0,0,0,NULL,'','??????????'), (3001,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (3002,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (3003,'????','??????','??','??',0,0,0,NULL,'','??????'), (3004,'????????','??','??','??',0,0,0,NULL,'','??????????'), (3005,'????????','??????','??','??',0,0,0,NULL,'','??????????'), (3006,'???????????...','HND??','??','??',0,0,0,NULL,'','???????????...??'), (3007,'????????','????','??','??',0,0,0,NULL,'','??????????'), (3008,'????????','????','??','??',0,0,0,NULL,'','??????????'), (3009,'????????','????','??','??',0,0,0,NULL,'','??????????'), (3010,'????????','??','??','??',0,0,0,NULL,'','??????????'), (3011,'???????????...','??????','??','??',0,0,0,NULL,'','???????????...??'), (3012,'???????????...','????','??','??',0,1,1,NULL,'','???????????...??'), (3013,'?????????','????','??','??',0,0,0,NULL,'','???????????'), (3014,'????????','????','??','??',0,0,0,NULL,'','??????????'), (3015,'????ACCA???...','??????','??','??',0,0,0,NULL,'','????ACCA???...??'), (3016,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (3017,'????????','????','??','??',0,0,0,NULL,'','??????????'), (3018,'??????','????','??','??',0,0,0,NULL,'','????????'), (3019,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (3020,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (3021,'???????????','????','??','??',0,0,0,NULL,'','?????????????'), (3022,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (3023,'???????????...','????','??','??',0,0,0,NULL,'','???????????...??'), (3024,'???????????...','????','??','??',0,0,0,NULL,'','???????????...??'), (3025,'??????????','????','??','??',0,0,0,NULL,'','????????????'), (3026,'??CMA??????...','??????','??','??',0,0,0,NULL,'','??CMA??????...??'), (3027,'????????','????','??','??',0,0,0,NULL,'','??????????'); /*!40000 ALTER TABLE `school` ENABLE KEYS */; UNLOCK TABLES; # Dump of table school_major # ------------------------------------------------------------ DROP TABLE IF EXISTS `school_major`; CREATE TABLE `school_major` ( `school_major_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `school_id` int(11) DEFAULT NULL, `major_id` int(11) DEFAULT NULL, `time_created` datetime DEFAULT NULL, `time_updated` datetime DEFAULT NULL, `number_of_male_student` int(11) DEFAULT NULL, PRIMARY KEY (`school_major_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; LOCK TABLES `school_major` WRITE; /*!40000 ALTER TABLE `school_major` DISABLE KEYS */; INSERT INTO `school_major` (`school_major_id`, `school_id`, `major_id`, `time_created`, `time_updated`, `number_of_male_student`) VALUES (1,230,664,NULL,NULL,NULL), (2,266,820,NULL,NULL,NULL), (3,527,820,NULL,NULL,NULL), (4,57,845,NULL,NULL,NULL), (5,57,820,NULL,NULL,NULL), (6,274,820,NULL,NULL,NULL), (7,9,820,NULL,NULL,NULL), (8,10,820,NULL,NULL,NULL), (9,11,820,NULL,NULL,NULL), (10,121,820,NULL,NULL,NULL), (11,122,820,NULL,NULL,NULL), (12,130,820,NULL,NULL,NULL), (13,805,664,NULL,NULL,NULL); /*!40000 ALTER TABLE `school_major` ENABLE KEYS */; UNLOCK TABLES; # Dump of table school_major_student # ------------------------------------------------------------ DROP TABLE IF EXISTS `school_major_student`; CREATE TABLE `school_major_student` ( `school_major_student_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `school_id` int(11) unsigned NOT NULL, `major_id` int(11) DEFAULT NULL, `student_id` int(11) unsigned NOT NULL, `time_created` datetime DEFAULT NULL, `time_updated` datetime DEFAULT NULL, PRIMARY KEY (`school_major_student_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; # Dump of table student # ------------------------------------------------------------ DROP TABLE IF EXISTS `student`; CREATE TABLE `student` ( `student_id` int(11) NOT NULL AUTO_INCREMENT, `school_id` int(8) DEFAULT NULL, `major_id` int(8) DEFAULT NULL, `school_major_id` int(8) DEFAULT NULL, `student_name` varchar(20) DEFAULT NULL, `school_name` varchar(80) DEFAULT NULL, `major_name` varchar(80) DEFAULT NULL, `student_degree` varchar(10) DEFAULT NULL, `gender` varchar(2) DEFAULT NULL, `finish_year` varchar(4) DEFAULT NULL, `major_level` varchar(10) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `created_time` datetime DEFAULT NULL, PRIMARY KEY (`student_id`), KEY `ix_school_id` (`school_id`), KEY `ix_major_id` (`major_id`), KEY `ix_school_major_id` (`school_major_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; LOCK TABLES `student` WRITE; /*!40000 ALTER TABLE `student` DISABLE KEYS */; INSERT INTO `student` (`student_id`, `school_id`, `major_id`, `school_major_id`, `student_name`, `school_name`, `major_name`, `student_degree`, `gender`, `finish_year`, `major_level`, `user_id`, `created_time`) VALUES (1,57,546,1,'???','16','????','??',NULL,NULL,NULL,NULL,NULL), (2,57,546,1,'??','????','????','??',NULL,NULL,NULL,NULL,NULL), (3,57,546,1,'???','????','????','??',NULL,NULL,NULL,NULL,NULL), (4,57,546,1,'???','????','????','??',NULL,NULL,NULL,NULL,NULL), (5,172,71,2,'???','???????','?????','??',NULL,NULL,NULL,NULL,NULL), (6,9,341,6,'???','????','???????','??',NULL,NULL,NULL,NULL,NULL), (7,57,547,7,'???','????','????','??',NULL,NULL,NULL,NULL,NULL), (8,57,546,1,'??','????','????','??',NULL,NULL,NULL,NULL,NULL), (9,585,546,16,'???','?????','????','??',NULL,NULL,NULL,NULL,NULL), (10,34,12,NULL,'???','','','',NULL,NULL,NULL,NULL,NULL), (11,100,45,NULL,'??','','','',NULL,NULL,NULL,NULL,NULL), (12,54,66,NULL,'<NAME>','','','',NULL,NULL,NULL,NULL,NULL), (13,56,23,NULL,'jonn','','','',NULL,NULL,NULL,NULL,NULL), (42,34,12,NULL,'wab',NULL,NULL,NULL,'m','1633','b',NULL,NULL), (43,34,NULL,NULL,'wab',NULL,NULL,NULL,'m','1633','b',NULL,NULL), (44,34,NULL,NULL,'wab',NULL,NULL,NULL,'m','1633','b',NULL,NULL), (56,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (58,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (59,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (60,12,12,12,'be',NULL,NULL,'be','b','2015','be',11,NULL), (61,NULL,NULL,12,'ddd','????ACCA???... ',NULL,'dddd','dd','2011','dddd',23,NULL), (62,NULL,NULL,12,'ddd','??CMA??????...','????????','dddd','dd','2011','dddd',23,NULL), (63,NULL,NULL,12,'ddd','??','','dddd','dd','2011','dddd',23,NULL), (64,NULL,22,12,'ddd','????ACCA???... ','????????','dddd','dd','2011','dddd',23,NULL), (65,NULL,23,23,'???','??CMA??????... ','????','??','?','2017','??',NULL,NULL), (66,NULL,20,22,'???','?????? ','?????????','??','?','2017','??',NULL,NULL), (67,NULL,20,22,'???','','','??','?','2017','??',99,NULL), (68,NULL,20,22,'???','','','??','?','2017','??',NULL,NULL), (69,57,820,NULL,'???','???? ','????','','?','2017','??',8,NULL), (70,NULL,NULL,NULL,'???','','','','','','',5,NULL), (71,NULL,NULL,NULL,'???','','','','','','',10,NULL), (72,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (73,234,234,NULL,'234',NULL,NULL,NULL,'23',NULL,NULL,NULL,NULL), (74,NULL,12,12,'ddd','????ACCA???... ','','ddd','dd','2015','dd',10,NULL), (75,NULL,33,33,'keyy','??CMA??????... ','','dd','dd','1233','dd',11,NULL), (76,NULL,NULL,NULL,'','','','','','','',12,NULL), (77,NULL,NULL,NULL,'','','','','','','',13,NULL), (78,123,123,NULL,'hh',NULL,NULL,NULL,'v','2000','nn',NULL,NULL), (79,0,0,NULL,'ttt',NULL,NULL,NULL,'t','2300','tt',NULL,NULL), (80,0,0,NULL,'ttt',NULL,NULL,NULL,'t','2300','tt',NULL,NULL), (81,NULL,NULL,NULL,'',NULL,NULL,NULL,'','','',NULL,NULL), (82,NULL,NULL,NULL,'',NULL,NULL,NULL,'','','',NULL,NULL), (83,NULL,NULL,NULL,'',NULL,NULL,NULL,'','','',NULL,NULL), (84,NULL,NULL,NULL,'',NULL,NULL,NULL,'','','',NULL,NULL), (85,NULL,NULL,NULL,'',NULL,NULL,NULL,'','','',NULL,NULL), (86,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,26,NULL), (87,NULL,NULL,NULL,'',NULL,NULL,NULL,'','','',26,NULL), (88,NULL,NULL,NULL,'',NULL,NULL,NULL,'','','',26,NULL), (89,NULL,NULL,NULL,'ta',NULL,NULL,NULL,'','','',26,NULL), (90,NULL,NULL,NULL,'ta',NULL,NULL,NULL,'','','',26,NULL), (91,NULL,NULL,NULL,'rrr',NULL,NULL,NULL,'','','',26,NULL), (92,NULL,NULL,NULL,'rrr',NULL,NULL,NULL,'mm','2016','',26,NULL), (93,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,27,NULL), (94,10,10,NULL,'???',NULL,NULL,NULL,'?','2017','??',27,NULL), (95,10,10,NULL,'???',NULL,NULL,NULL,'?','2017','??',27,NULL), (96,10,10,NULL,'???',NULL,NULL,NULL,'?','2017','??',27,NULL), (97,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,28,NULL), (98,11,11,NULL,'maxtao',NULL,NULL,NULL,'m','2016','m',28,NULL), (105,11,22,NULL,'???',NULL,NULL,NULL,'?','2016','??',29,NULL), (107,123,345,NULL,'not that great','???? ','????',NULL,'f','2016','cccc',30,NULL), (109,11,11,NULL,'???','?????? ','???????',NULL,'?','2017','??',32,NULL), (110,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,33,NULL), (111,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34,NULL), (112,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,35,NULL), (113,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,36,NULL), (114,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,37,NULL), (115,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,41,NULL), (116,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,43,NULL), (117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,49,NULL), (118,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,50,NULL), (119,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,51,NULL), (120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,52,NULL), (121,NULL,NULL,NULL,'xx','xx','xx',NULL,'','','',57,NULL), (122,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,58,NULL), (123,20,20,NULL,'???','???? ','??????',NULL,'?','2016','??',60,NULL), (124,120,220,NULL,'bay','????ACCA???... ','???????',NULL,'f','2016','b',65,NULL), (125,NULL,NULL,NULL,'','????ACCA???... ','????',NULL,'','','',66,NULL); /*!40000 ALTER TABLE `student` ENABLE KEYS */; UNLOCK TABLES; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; /*!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 */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
DROP EXTENSION IF EXISTS tablefunc;
-- @testpoint: opengauss关键字connection_name(非保留),作为索引名,部分测试点合理报错 --前置条件,创建一个表 drop table if exists connection_name_test; create table connection_name_test(id int,name varchar(10)); --关键字不带引号-成功 drop index if exists connection_name; create index connection_name on connection_name_test(id); drop index connection_name; --关键字带双引号-成功 drop index if exists "connection_name"; create index "connection_name" on connection_name_test(id); drop index "connection_name"; --关键字带单引号-合理报错 drop index if exists 'connection_name'; create index 'connection_name' on connection_name_test(id); --关键字带反引号-合理报错 drop index if exists `connection_name`; create index `connection_name` on connection_name_test(id); drop table if exists connection_name_test;
<reponame>opengauss-mirror/Yat -- @testpoint:opengauss关键字nlssort(保留),作为外部数据源名 --关键字不带引号-合理报错 create data source nlssort; --关键字带双引号-成功 drop data source if exists "nlssort"; create data source "nlssort"; drop data source "nlssort"; --关键字带单引号-合理报错 drop data source if exists 'nlssort'; create data source 'nlssort'; --关键字带反引号-合理报错 drop data source if exists `nlssort`; create data source `nlssort`;
/*Define the query used for exporting articles yealy top tens*/ WITH years AS ( SELECT year FROM w2o.timebounds, generate_series(minyear,maxyear) _(year) UNION ALL SELECT 0 AS year ), topics AS ( SELECT page_id AS topic_id FROM w2o.pages WHERE page_type = 'topic'::w2o.mypagetype ), types AS ( SELECT DISTINCT type FROM w2o.indicesbyyear WHERE page_type = 'article'::w2o.mypagetype ), top10 AS ( SELECT _.year, _.type, array_agg(CAST((p.page_id, p.page_title, p.page_abstract, p.parent_id, p.page_type, p.page_creationyear) AS w2o.page) ORDER BY weight DESC) AS pages FROM years, topics, types, LATERAL ( SELECT year, type, page_id, weight FROM w2o.indicesbyyear WHERE year = years.year AND topic_id = topics.topic_id AND type = types.type AND page_type = 'article'::w2o.mypagetype ORDER BY weight DESC LIMIT 10 ) _ JOIN w2o.pages p USING (page_id) GROUP BY _.year, _.type ), yearjson AS ( SELECT year, row_to_json(CAST((year, array_agg(CAST((type, pages) AS w2o.indexranking) ORDER BY type)) AS w2o.annualindexesranking)) AS json FROM top10 GROUP BY year ) SELECT json FROM yearjson ORDER BY year;
DROP DATABASE IF EXISTS employee_tracker; CREATE DATABASE employee_tracker; USE employee_tracker; CREATE TABLE department ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, `name` VARCHAR(255) NOT NULL ); CREATE TABLE `role` ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, title VARCHAR(255) NOT NULL, salary DECIMAL NOT NULL, department_id INT, FOREIGN KEY (department_id) REFERENCES department(id) ON DELETE SET NULL ); CREATE TABLE employee ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, first_name VARCHAR(255) NOT NULL, last_name VARCHAR(255) NOT NULL, role_id INT, manager_id INT, FOREIGN KEY (`role_id`) REFERENCES `role`(id) ON DELETE SET NULL, FOREIGN KEY (manager_id) REFERENCES employee(id) ON DELETE SET NULL );
<reponame>SAEONData/SAEIS CREATE TABLE [dbo].[TaxonomySpecies] ( [TaxonomySpeciesID] INT NOT NULL, [TaxonomyGenusID] INT NULL, [Species] NVARCHAR (MAX) NULL, [Subspecies] NVARCHAR (MAX) NULL, [Variety] NVARCHAR (MAX) NULL, [CommonName] NVARCHAR (MAX) NULL, [SEASpp] SMALLINT NULL, [RedData] INT NULL, [EndemicRSA] SMALLINT NULL, [EndemicKZN] SMALLINT NULL, [EndemicKZNNear] SMALLINT NULL, [RestrictedKZN] SMALLINT NULL, [Notes] NVARCHAR (MAX) NULL );
<reponame>gered/mtgcoll ALTER TABLE lists DROP COLUMN IF EXISTS created_at;
<filename>11_Databases/05_SQL-Server-MySQL-Introduction/SQL-Server-MySQL-Introduction/SakilaBackupMySQL.sql -- MySQL Script generated by MySQL Workbench -- 10/03/15 21:01:42 -- Model: New Model Version: 1.0 -- MySQL Workbench Forward Engineering SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES'; -- ----------------------------------------------------- -- Schema sakila -- ----------------------------------------------------- -- ----------------------------------------------------- -- Schema sakila -- ----------------------------------------------------- CREATE SCHEMA IF NOT EXISTS `sakila` ; USE `sakila` ; -- ----------------------------------------------------- -- Table `sakila`.`actor` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`actor` ( `actor_id` SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '', `first_name` VARCHAR(45) NOT NULL COMMENT '', `last_name` VARCHAR(45) NOT NULL COMMENT '', `last_update` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '', PRIMARY KEY (`actor_id`) COMMENT '', INDEX `idx_actor_last_name` (`last_name` ASC) COMMENT '') ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sakila`.`country` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`country` ( `country_id` SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '', `country` VARCHAR(50) NOT NULL COMMENT '', `last_update` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '', PRIMARY KEY (`country_id`) COMMENT '') ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sakila`.`city` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`city` ( `city_id` SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '', `city` VARCHAR(50) NOT NULL COMMENT '', `country_id` SMALLINT UNSIGNED NOT NULL COMMENT '', `last_update` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '', PRIMARY KEY (`city_id`) COMMENT '', INDEX `idx_fk_country_id` (`country_id` ASC) COMMENT '', CONSTRAINT `fk_city_country` FOREIGN KEY (`country_id`) REFERENCES `sakila`.`country` (`country_id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sakila`.`address` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`address` ( `address_id` SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '', `address` VARCHAR(50) NOT NULL COMMENT '', `address2` VARCHAR(50) NULL DEFAULT NULL COMMENT '', `district` VARCHAR(20) NOT NULL COMMENT '', `city_id` SMALLINT UNSIGNED NOT NULL COMMENT '', `postal_code` VARCHAR(10) NULL DEFAULT NULL COMMENT '', `phone` VARCHAR(20) NOT NULL COMMENT '', `last_update` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '', PRIMARY KEY (`address_id`) COMMENT '', INDEX `idx_fk_city_id` (`city_id` ASC) COMMENT '', CONSTRAINT `fk_address_city` FOREIGN KEY (`city_id`) REFERENCES `sakila`.`city` (`city_id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sakila`.`category` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`category` ( `category_id` TINYINT UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '', `name` VARCHAR(25) NOT NULL COMMENT '', `last_update` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '', PRIMARY KEY (`category_id`) COMMENT '') ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sakila`.`store` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`store` ( `store_id` TINYINT UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '', `manager_staff_id` TINYINT UNSIGNED NOT NULL COMMENT '', `address_id` SMALLINT UNSIGNED NOT NULL COMMENT '', `last_update` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '', PRIMARY KEY (`store_id`) COMMENT '', UNIQUE INDEX `idx_unique_manager` (`manager_staff_id` ASC) COMMENT '', INDEX `idx_fk_address_id` (`address_id` ASC) COMMENT '', CONSTRAINT `fk_store_staff` FOREIGN KEY (`manager_staff_id`) REFERENCES `sakila`.`staff` (`staff_id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_store_address` FOREIGN KEY (`address_id`) REFERENCES `sakila`.`address` (`address_id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sakila`.`staff` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`staff` ( `staff_id` TINYINT UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '', `first_name` VARCHAR(45) NOT NULL COMMENT '', `last_name` VARCHAR(45) NOT NULL COMMENT '', `address_id` SMALLINT UNSIGNED NOT NULL COMMENT '', `picture` BLOB NULL DEFAULT NULL COMMENT '', `email` VARCHAR(50) NULL DEFAULT NULL COMMENT '', `store_id` TINYINT UNSIGNED NOT NULL COMMENT '', `active` TINYINT(1) NOT NULL DEFAULT TRUE COMMENT '', `username` VARCHAR(16) NOT NULL COMMENT '', `password` VARCHAR(40) BINARY NULL DEFAULT NULL COMMENT '', `last_update` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '', PRIMARY KEY (`staff_id`) COMMENT '', INDEX `idx_fk_store_id` (`store_id` ASC) COMMENT '', INDEX `idx_fk_address_id` (`address_id` ASC) COMMENT '', CONSTRAINT `fk_staff_store` FOREIGN KEY (`store_id`) REFERENCES `sakila`.`store` (`store_id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_staff_address` FOREIGN KEY (`address_id`) REFERENCES `sakila`.`address` (`address_id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sakila`.`customer` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`customer` ( `customer_id` SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '', `store_id` TINYINT UNSIGNED NOT NULL COMMENT '', `first_name` VARCHAR(45) NOT NULL COMMENT '', `last_name` VARCHAR(45) NOT NULL COMMENT '', `email` VARCHAR(50) NULL DEFAULT NULL COMMENT '', `address_id` SMALLINT UNSIGNED NOT NULL COMMENT '', `active` TINYINT(1) NOT NULL DEFAULT TRUE COMMENT '', `create_date` DATETIME NOT NULL COMMENT '', `last_update` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP COMMENT '', PRIMARY KEY (`customer_id`) COMMENT '', INDEX `idx_fk_store_id` (`store_id` ASC) COMMENT '', INDEX `idx_fk_address_id` (`address_id` ASC) COMMENT '', INDEX `idx_last_name` (`last_name` ASC) COMMENT '', CONSTRAINT `fk_customer_address` FOREIGN KEY (`address_id`) REFERENCES `sakila`.`address` (`address_id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_customer_store` FOREIGN KEY (`store_id`) REFERENCES `sakila`.`store` (`store_id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8 COMMENT = 'Table storing all customers. Holds foreign keys to the addre'; -- ----------------------------------------------------- -- Table `sakila`.`language` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`language` ( `language_id` TINYINT UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '', `name` CHAR(20) NOT NULL COMMENT '', `last_update` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '', PRIMARY KEY (`language_id`) COMMENT '') ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sakila`.`film` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`film` ( `film_id` SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '', `title` VARCHAR(255) NOT NULL COMMENT '', `description` TEXT NULL DEFAULT NULL COMMENT '', `release_year` YEAR NULL DEFAULT NULL COMMENT '', `language_id` TINYINT UNSIGNED NOT NULL COMMENT '', `original_language_id` TINYINT UNSIGNED NULL DEFAULT NULL COMMENT '', `rental_duration` TINYINT UNSIGNED NOT NULL DEFAULT 3 COMMENT '', `rental_rate` DECIMAL(4,2) NOT NULL DEFAULT 4.99 COMMENT '', `length` SMALLINT UNSIGNED NULL DEFAULT NULL COMMENT '', `replacement_cost` DECIMAL(5,2) NOT NULL DEFAULT 19.99 COMMENT '', `rating` ENUM('G','PG','PG-13','R','NC-17') NULL DEFAULT 'G' COMMENT '', `special_features` SET('Trailers','Commentaries','Deleted Scenes','Behind the Scenes') NULL DEFAULT NULL COMMENT '', `last_update` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '', INDEX `idx_title` (`title` ASC) COMMENT '', INDEX `idx_fk_language_id` (`language_id` ASC) COMMENT '', INDEX `idx_fk_original_language_id` (`original_language_id` ASC) COMMENT '', PRIMARY KEY (`film_id`) COMMENT '', CONSTRAINT `fk_film_language` FOREIGN KEY (`language_id`) REFERENCES `sakila`.`language` (`language_id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_film_language_original` FOREIGN KEY (`original_language_id`) REFERENCES `sakila`.`language` (`language_id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sakila`.`film_actor` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`film_actor` ( `actor_id` SMALLINT UNSIGNED NOT NULL COMMENT '', `film_id` SMALLINT UNSIGNED NOT NULL COMMENT '', `last_update` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '', PRIMARY KEY (`actor_id`, `film_id`) COMMENT '', INDEX `idx_fk_film_id` (`film_id` ASC) COMMENT '', INDEX `fk_film_actor_actor_idx` (`actor_id` ASC) COMMENT '', CONSTRAINT `fk_film_actor_actor` FOREIGN KEY (`actor_id`) REFERENCES `sakila`.`actor` (`actor_id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_film_actor_film` FOREIGN KEY (`film_id`) REFERENCES `sakila`.`film` (`film_id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sakila`.`film_category` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`film_category` ( `film_id` SMALLINT UNSIGNED NOT NULL COMMENT '', `category_id` TINYINT UNSIGNED NOT NULL COMMENT '', `last_update` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '', PRIMARY KEY (`film_id`, `category_id`) COMMENT '', INDEX `fk_film_category_category_idx` (`category_id` ASC) COMMENT '', INDEX `fk_film_category_film_idx` (`film_id` ASC) COMMENT '', CONSTRAINT `fk_film_category_film` FOREIGN KEY (`film_id`) REFERENCES `sakila`.`film` (`film_id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_film_category_category` FOREIGN KEY (`category_id`) REFERENCES `sakila`.`category` (`category_id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sakila`.`film_text` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`film_text` ( `film_id` SMALLINT UNSIGNED NOT NULL COMMENT '', `title` VARCHAR(255) NOT NULL COMMENT '', `description` TEXT NULL DEFAULT NULL COMMENT '', PRIMARY KEY (`film_id`) COMMENT '', FULLTEXT INDEX `idx_title_description` (`title` ASC, `description` ASC) COMMENT '') ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `sakila`.`inventory` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`inventory` ( `inventory_id` MEDIUMINT UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '', `film_id` SMALLINT UNSIGNED NOT NULL COMMENT '', `store_id` TINYINT UNSIGNED NOT NULL COMMENT '', `last_update` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '', PRIMARY KEY (`inventory_id`) COMMENT '', INDEX `idx_fk_film_id` (`film_id` ASC) COMMENT '', INDEX `idx_store_id_film_id` (`store_id` ASC, `film_id` ASC) COMMENT '', INDEX `fk_inventory_store_idx` (`store_id` ASC) COMMENT '', CONSTRAINT `fk_inventory_store` FOREIGN KEY (`store_id`) REFERENCES `sakila`.`store` (`store_id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_inventory_film` FOREIGN KEY (`film_id`) REFERENCES `sakila`.`film` (`film_id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sakila`.`rental` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`rental` ( `rental_id` INT NOT NULL AUTO_INCREMENT COMMENT '', `rental_date` DATETIME NOT NULL COMMENT '', `inventory_id` MEDIUMINT UNSIGNED NOT NULL COMMENT '', `customer_id` SMALLINT UNSIGNED NOT NULL COMMENT '', `return_date` DATETIME NULL DEFAULT NULL COMMENT '', `staff_id` TINYINT UNSIGNED NOT NULL COMMENT '', `last_update` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '', PRIMARY KEY (`rental_id`) COMMENT '', UNIQUE INDEX `idx_rental` (`rental_date` ASC, `inventory_id` ASC, `customer_id` ASC) COMMENT '', INDEX `idx_fk_inventory_id` (`inventory_id` ASC) COMMENT '', INDEX `idx_fk_customer_id` (`customer_id` ASC) COMMENT '', INDEX `idx_fk_staff_id` (`staff_id` ASC) COMMENT '', CONSTRAINT `fk_rental_staff` FOREIGN KEY (`staff_id`) REFERENCES `sakila`.`staff` (`staff_id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_rental_inventory` FOREIGN KEY (`inventory_id`) REFERENCES `sakila`.`inventory` (`inventory_id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_rental_customer` FOREIGN KEY (`customer_id`) REFERENCES `sakila`.`customer` (`customer_id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sakila`.`payment` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`payment` ( `payment_id` SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '', `customer_id` SMALLINT UNSIGNED NOT NULL COMMENT '', `staff_id` TINYINT UNSIGNED NOT NULL COMMENT '', `rental_id` INT NULL DEFAULT NULL COMMENT '', `amount` DECIMAL(5,2) NOT NULL COMMENT '', `payment_date` DATETIME NOT NULL COMMENT '', `last_update` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP COMMENT '', PRIMARY KEY (`payment_id`) COMMENT '', INDEX `idx_fk_staff_id` (`staff_id` ASC) COMMENT '', INDEX `idx_fk_customer_id` (`customer_id` ASC) COMMENT '', INDEX `fk_payment_rental_idx` (`rental_id` ASC) COMMENT '', CONSTRAINT `fk_payment_rental` FOREIGN KEY (`rental_id`) REFERENCES `sakila`.`rental` (`rental_id`) ON DELETE SET NULL ON UPDATE CASCADE, CONSTRAINT `fk_payment_customer` FOREIGN KEY (`customer_id`) REFERENCES `sakila`.`customer` (`customer_id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_payment_staff` FOREIGN KEY (`staff_id`) REFERENCES `sakila`.`staff` (`staff_id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; USE `sakila` ; -- ----------------------------------------------------- -- Placeholder table for view `sakila`.`customer_list` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`customer_list` (`ID` INT, `name` INT, `address` INT, `zip code` INT, `phone` INT, `city` INT, `country` INT, `notes` INT, `SID` INT); -- ----------------------------------------------------- -- Placeholder table for view `sakila`.`film_list` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`film_list` (`FID` INT, `title` INT, `description` INT, `category` INT, `price` INT, `length` INT, `rating` INT, `actors` INT); -- ----------------------------------------------------- -- Placeholder table for view `sakila`.`nicer_but_slower_film_list` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`nicer_but_slower_film_list` (`FID` INT, `title` INT, `description` INT, `category` INT, `price` INT, `length` INT, `rating` INT, `actors` INT); -- ----------------------------------------------------- -- Placeholder table for view `sakila`.`staff_list` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`staff_list` (`ID` INT, `name` INT, `address` INT, `zip code` INT, `phone` INT, `city` INT, `country` INT, `SID` INT); -- ----------------------------------------------------- -- Placeholder table for view `sakila`.`sales_by_store` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`sales_by_store` (`store` INT, `manager` INT, `total_sales` INT); -- ----------------------------------------------------- -- Placeholder table for view `sakila`.`sales_by_film_category` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`sales_by_film_category` (`category` INT, `total_sales` INT); -- ----------------------------------------------------- -- Placeholder table for view `sakila`.`actor_info` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sakila`.`actor_info` (`actor_id` INT, `first_name` INT, `last_name` INT, `film_info` INT); -- ----------------------------------------------------- -- procedure rewards_report -- ----------------------------------------------------- DELIMITER $$ USE `sakila`$$ CREATE PROCEDURE `sakila`.`rewards_report` ( IN min_monthly_purchases TINYINT UNSIGNED , IN min_dollar_amount_purchased DECIMAL(10,2) UNSIGNED , OUT count_rewardees INT ) LANGUAGE SQL NOT DETERMINISTIC READS SQL DATA SQL SECURITY DEFINER COMMENT 'Provides a customizable report on best customers' proc: BEGIN DECLARE last_month_start DATE; DECLARE last_month_end DATE; /* Some sanity checks... */ IF min_monthly_purchases = 0 THEN SELECT 'Minimum monthly purchases parameter must be > 0'; LEAVE proc; END IF; IF min_dollar_amount_purchased = 0.00 THEN SELECT 'Minimum monthly dollar amount purchased parameter must be > $0.00'; LEAVE proc; END IF; /* Determine start and end time periods */ SET last_month_start = DATE_SUB(CURRENT_DATE(), INTERVAL 1 MONTH); SET last_month_start = STR_TO_DATE(CONCAT(YEAR(last_month_start),'-',MONTH(last_month_start),'-01'),'%Y-%m-%d'); SET last_month_end = LAST_DAY(last_month_start); /* Create a temporary storage area for Customer IDs. */ CREATE TEMPORARY TABLE tmpCustomer (customer_id SMALLINT UNSIGNED NOT NULL PRIMARY KEY); /* Find all customers meeting the monthly purchase requirements */ INSERT INTO tmpCustomer (customer_id) SELECT p.customer_id FROM payment AS p WHERE DATE(p.payment_date) BETWEEN last_month_start AND last_month_end GROUP BY customer_id HAVING SUM(p.amount) > min_dollar_amount_purchased AND COUNT(customer_id) > min_monthly_purchases; /* Populate OUT parameter with count of found customers */ SELECT COUNT(*) FROM tmpCustomer INTO count_rewardees; /* Output ALL customer information of matching rewardees. Customize output as needed. */ SELECT c.* FROM tmpCustomer AS t INNER JOIN customer AS c ON t.customer_id = c.customer_id; /* Clean up */ DROP TABLE tmpCustomer; END$$ DELIMITER ; -- ----------------------------------------------------- -- function get_customer_balance -- ----------------------------------------------------- DELIMITER $$ USE `sakila`$$ CREATE FUNCTION `sakila`.`get_customer_balance`(p_customer_id INT, p_effective_date DATETIME) RETURNS DECIMAL(5,2) DETERMINISTIC READS SQL DATA BEGIN #OK, WE NEED TO CALCULATE THE CURRENT BALANCE GIVEN A CUSTOMER_ID AND A DATE #THAT WE WANT THE BALANCE TO BE EFFECTIVE FOR. THE BALANCE IS: # 1) RENTAL FEES FOR ALL PREVIOUS RENTALS # 2) ONE DOLLAR FOR EVERY DAY THE PREVIOUS RENTALS ARE OVERDUE # 3) IF A FILM IS MORE THAN RENTAL_DURATION * 2 OVERDUE, CHARGE THE REPLACEMENT_COST # 4) SUBTRACT ALL PAYMENTS MADE BEFORE THE DATE SPECIFIED DECLARE v_rentfees DECIMAL(5,2); #FEES PAID TO RENT THE VIDEOS INITIALLY DECLARE v_overfees INTEGER; #LATE FEES FOR PRIOR RENTALS DECLARE v_payments DECIMAL(5,2); #SUM OF PAYMENTS MADE PREVIOUSLY SELECT IFNULL(SUM(film.rental_rate),0) INTO v_rentfees FROM film, inventory, rental WHERE film.film_id = inventory.film_id AND inventory.inventory_id = rental.inventory_id AND rental.rental_date <= p_effective_date AND rental.customer_id = p_customer_id; SELECT IFNULL(SUM(IF((TO_DAYS(rental.return_date) - TO_DAYS(rental.rental_date)) > film.rental_duration, ((TO_DAYS(rental.return_date) - TO_DAYS(rental.rental_date)) - film.rental_duration),0)),0) INTO v_overfees FROM rental, inventory, film WHERE film.film_id = inventory.film_id AND inventory.inventory_id = rental.inventory_id AND rental.rental_date <= p_effective_date AND rental.customer_id = p_customer_id; SELECT IFNULL(SUM(payment.amount),0) INTO v_payments FROM payment WHERE payment.payment_date <= p_effective_date AND payment.customer_id = p_customer_id; RETURN v_rentfees + v_overfees - v_payments; END$$ DELIMITER ; -- ----------------------------------------------------- -- procedure film_in_stock -- ----------------------------------------------------- DELIMITER $$ USE `sakila`$$ CREATE PROCEDURE `sakila`.`film_in_stock`(IN p_film_id INT, IN p_store_id INT, OUT p_film_count INT) READS SQL DATA BEGIN SELECT inventory_id FROM inventory WHERE film_id = p_film_id AND store_id = p_store_id AND inventory_in_stock(inventory_id); SELECT FOUND_ROWS() INTO p_film_count; END$$ DELIMITER ; -- ----------------------------------------------------- -- procedure film_not_in_stock -- ----------------------------------------------------- DELIMITER $$ USE `sakila`$$ CREATE PROCEDURE `sakila`.`film_not_in_stock`(IN p_film_id INT, IN p_store_id INT, OUT p_film_count INT) READS SQL DATA BEGIN SELECT inventory_id FROM inventory WHERE film_id = p_film_id AND store_id = p_store_id AND NOT inventory_in_stock(inventory_id); SELECT FOUND_ROWS() INTO p_film_count; END$$ DELIMITER ; -- ----------------------------------------------------- -- function inventory_held_by_customer -- ----------------------------------------------------- DELIMITER $$ USE `sakila`$$ CREATE FUNCTION `sakila`.`inventory_held_by_customer`(p_inventory_id INT) RETURNS INT READS SQL DATA BEGIN DECLARE v_customer_id INT; DECLARE EXIT HANDLER FOR NOT FOUND RETURN NULL; SELECT customer_id INTO v_customer_id FROM rental WHERE return_date IS NULL AND inventory_id = p_inventory_id; RETURN v_customer_id; END$$ DELIMITER ; -- ----------------------------------------------------- -- function inventory_in_stock -- ----------------------------------------------------- DELIMITER $$ USE `sakila`$$ CREATE FUNCTION `sakila`.`inventory_in_stock`(p_inventory_id INT) RETURNS BOOLEAN READS SQL DATA BEGIN DECLARE v_rentals INT; DECLARE v_out INT; #AN ITEM IS IN-STOCK IF THERE ARE EITHER NO ROWS IN THE rental TABLE #FOR THE ITEM OR ALL ROWS HAVE return_date POPULATED SELECT COUNT(*) INTO v_rentals FROM rental WHERE inventory_id = p_inventory_id; IF v_rentals = 0 THEN RETURN TRUE; END IF; SELECT COUNT(rental_id) INTO v_out FROM inventory LEFT JOIN rental USING(inventory_id) WHERE inventory.inventory_id = p_inventory_id AND rental.return_date IS NULL; IF v_out > 0 THEN RETURN FALSE; ELSE RETURN TRUE; END IF; END$$ DELIMITER ; -- ----------------------------------------------------- -- View `sakila`.`customer_list` -- ----------------------------------------------------- DROP TABLE IF EXISTS `sakila`.`customer_list`; USE `sakila`; -- -- View structure for view `customer_list` -- CREATE OR REPLACE VIEW customer_list AS SELECT cu.customer_id AS ID, CONCAT(cu.first_name, _utf8' ', cu.last_name) AS name, a.address AS address, a.postal_code AS `zip code`, a.phone AS phone, city.city AS city, country.country AS country, IF(cu.active, _utf8'active',_utf8'') AS notes, cu.store_id AS SID FROM customer AS cu JOIN address AS a ON cu.address_id = a.address_id JOIN city ON a.city_id = city.city_id JOIN country ON city.country_id = country.country_id; -- ----------------------------------------------------- -- View `sakila`.`film_list` -- ----------------------------------------------------- DROP TABLE IF EXISTS `sakila`.`film_list`; USE `sakila`; -- -- View structure for view `film_list` -- CREATE OR REPLACE VIEW film_list AS SELECT film.film_id AS FID, film.title AS title, film.description AS description, category.name AS category, film.rental_rate AS price, film.length AS length, film.rating AS rating, GROUP_CONCAT(CONCAT(actor.first_name, _utf8' ', actor.last_name) SEPARATOR ', ') AS actors FROM category LEFT JOIN film_category ON category.category_id = film_category.category_id LEFT JOIN film ON film_category.film_id = film.film_id JOIN film_actor ON film.film_id = film_actor.film_id JOIN actor ON film_actor.actor_id = actor.actor_id GROUP BY film.film_id, category.name; -- ----------------------------------------------------- -- View `sakila`.`nicer_but_slower_film_list` -- ----------------------------------------------------- DROP TABLE IF EXISTS `sakila`.`nicer_but_slower_film_list`; USE `sakila`; -- -- View structure for view `nicer_but_slower_film_list` -- CREATE OR REPLACE VIEW nicer_but_slower_film_list AS SELECT film.film_id AS FID, film.title AS title, film.description AS description, category.name AS category, film.rental_rate AS price, film.length AS length, film.rating AS rating, GROUP_CONCAT(CONCAT(CONCAT(UCASE(SUBSTR(actor.first_name,1,1)), LCASE(SUBSTR(actor.first_name,2,LENGTH(actor.first_name))),_utf8' ',CONCAT(UCASE(SUBSTR(actor.last_name,1,1)), LCASE(SUBSTR(actor.last_name,2,LENGTH(actor.last_name)))))) SEPARATOR ', ') AS actors FROM category LEFT JOIN film_category ON category.category_id = film_category.category_id LEFT JOIN film ON film_category.film_id = film.film_id JOIN film_actor ON film.film_id = film_actor.film_id JOIN actor ON film_actor.actor_id = actor.actor_id GROUP BY film.film_id, category.name; -- ----------------------------------------------------- -- View `sakila`.`staff_list` -- ----------------------------------------------------- DROP TABLE IF EXISTS `sakila`.`staff_list`; USE `sakila`; -- -- View structure for view `staff_list` -- CREATE OR REPLACE VIEW staff_list AS SELECT s.staff_id AS ID, CONCAT(s.first_name, _utf8' ', s.last_name) AS name, a.address AS address, a.postal_code AS `zip code`, a.phone AS phone, city.city AS city, country.country AS country, s.store_id AS SID FROM staff AS s JOIN address AS a ON s.address_id = a.address_id JOIN city ON a.city_id = city.city_id JOIN country ON city.country_id = country.country_id; -- ----------------------------------------------------- -- View `sakila`.`sales_by_store` -- ----------------------------------------------------- DROP TABLE IF EXISTS `sakila`.`sales_by_store`; USE `sakila`; -- -- View structure for view `sales_by_store` -- CREATE OR REPLACE VIEW sales_by_store AS SELECT CONCAT(c.city, _utf8',', cy.country) AS store , CONCAT(m.first_name, _utf8' ', m.last_name) AS manager , SUM(p.amount) AS total_sales FROM payment AS p INNER JOIN rental AS r ON p.rental_id = r.rental_id INNER JOIN inventory AS i ON r.inventory_id = i.inventory_id INNER JOIN store AS s ON i.store_id = s.store_id INNER JOIN address AS a ON s.address_id = a.address_id INNER JOIN city AS c ON a.city_id = c.city_id INNER JOIN country AS cy ON c.country_id = cy.country_id INNER JOIN staff AS m ON s.manager_staff_id = m.staff_id GROUP BY s.store_id ORDER BY cy.country, c.city; -- ----------------------------------------------------- -- View `sakila`.`sales_by_film_category` -- ----------------------------------------------------- DROP TABLE IF EXISTS `sakila`.`sales_by_film_category`; USE `sakila`; -- -- View structure for view `sales_by_film_category` -- -- Note that total sales will add up to >100% because -- some titles belong to more than 1 category -- CREATE OR REPLACE VIEW sales_by_film_category AS SELECT c.name AS category , SUM(p.amount) AS total_sales FROM payment AS p INNER JOIN rental AS r ON p.rental_id = r.rental_id INNER JOIN inventory AS i ON r.inventory_id = i.inventory_id INNER JOIN film AS f ON i.film_id = f.film_id INNER JOIN film_category AS fc ON f.film_id = fc.film_id INNER JOIN category AS c ON fc.category_id = c.category_id GROUP BY c.name ORDER BY total_sales DESC; -- ----------------------------------------------------- -- View `sakila`.`actor_info` -- ----------------------------------------------------- DROP TABLE IF EXISTS `sakila`.`actor_info`; USE `sakila`; -- -- View structure for view `actor_info` -- CREATE OR REPLACE DEFINER=CURRENT_USER SQL SECURITY INVOKER VIEW actor_info AS SELECT a.actor_id, a.first_name, a.last_name, GROUP_CONCAT(DISTINCT CONCAT(c.name, ': ', (SELECT GROUP_CONCAT(f.title ORDER BY f.title SEPARATOR ', ') FROM sakila.film f INNER JOIN sakila.film_category fc ON f.film_id = fc.film_id INNER JOIN sakila.film_actor fa ON f.film_id = fa.film_id WHERE fc.category_id = c.category_id AND fa.actor_id = a.actor_id ) ) ORDER BY c.name SEPARATOR '; ') AS film_info FROM sakila.actor a LEFT JOIN sakila.film_actor fa ON a.actor_id = fa.actor_id LEFT JOIN sakila.film_category fc ON fa.film_id = fc.film_id LEFT JOIN sakila.category c ON fc.category_id = c.category_id GROUP BY a.actor_id, a.first_name, a.last_name; USE `sakila`; DELIMITER $$ USE `sakila`$$ CREATE TRIGGER `ins_film` AFTER INSERT ON `film` FOR EACH ROW BEGIN INSERT INTO film_text (film_id, title, description) VALUES (new.film_id, new.title, new.description); END$$ USE `sakila`$$ CREATE TRIGGER `upd_film` AFTER UPDATE ON `film` FOR EACH ROW BEGIN IF (old.title != new.title) or (old.description != new.description) THEN UPDATE film_text SET title=new.title, description=new.description, film_id=new.film_id WHERE film_id=old.film_id; END IF; END$$ USE `sakila`$$ CREATE TRIGGER `del_film` AFTER DELETE ON `film` FOR EACH ROW BEGIN DELETE FROM film_text WHERE film_id = old.film_id; END$$ DELIMITER ; SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;