sql stringlengths 6 1.05M |
|---|
<reponame>Smart-Kit/SmartSql-Starter
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for T_User
-- ----------------------------
DROP TABLE IF EXISTS `T_User`;
CREATE TABLE `T_User` (
`Id` bigint(20) NOT NULL AUTO_INCREMENT,
`UserName` varchar(100) NOT NULL,
`Password` varchar(255) NOT NULL,
`Status` smallint(6) NOT NULL,
`LastLoginTime` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
`CreationTime` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
|
<reponame>ag-gipp/eCoachSql
SELECT e1.fname, e2.fname, e2.lname
FROM
employee e1 JOIN employee e2 ON e1.lname = e2.lname
WHERE e1.fname != e2.fname; |
<reponame>romansenin/ji-cloud<filename>backend/api/migrations/20201130193803_jig-content-type.sql
-- Add migration script here
create table "content_type"
(
content_type_id uuid primary key not null default uuid_generate_v1mc(),
display_name text not null,
created_at timestamptz not null,
updated_at timestamptz
);
create table "jig_content_type"
(
jig_id uuid references "jig" (id) not null,
content_type_id uuid references "content_type" (content_type_id) not null,
created_at timestamptz not null default now(),
unique (jig_id, content_type_id)
);
|
DROP INDEX IF EXISTS index_fee_schedule_ranges_fee_schedule_id_min_price;
DROP TABLE IF EXISTS fee_schedule_ranges;
|
UPDATE films SET kind = 'Dramatic' WHERE CURRENT OF c_films;
|
<filename>db/schema.sql
## Schema
-- drops database if it already exists
DROP DATABASE IF EXISTS burgers_db;
-- creates database called burgers_db
CREATE DATABASE burgers_db;
-- switches to the burgers_db
USE burgers_db;
-- creates a table for 'burgers' that has an id, burger_name, and devoured column
CREATE TABLE burgers(
id INT NOT NULL AUTO_INCREMENT,
burger_name VARCHAR(255),
devoured BOOLEAN,
PRIMARY KEY (id)
);
SELECT * FROM burgers; |
#event on payment
DROP EVENT IF EXISTS payment_event;
CREATE EVENT payment_event
ON SCHEDULE
EVERY 2 MINUTE
STARTS '2022-02-08 16:58:00'
ON COMPLETION PRESERVE
DO
UPDATE
internetprovider.bankaccounts
INNER JOIN(
SELECT tariffs.id as id, tariffs.price as price, ifnull(specialoffers.discount,0) as discount
FROM internetprovider.tariffs
LEFT JOIN internetprovider.specialoffers
ON tariffs.special_offers_id=specialoffers.id) as pr
ON bankaccounts.tariffs_id=pr.id
SET balance=balance-price*(100-discount)/100; |
-- phpMyAdmin SQL Dump
-- version 4.8.0.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Czas generowania: 03 Sie 2019, 20:59
-- Wersja serwera: 10.1.32-MariaDB
-- Wersja PHP: 7.1.17
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 */;
--
-- Baza danych: `example`
--
CREATE DATABASE IF NOT EXISTS `example` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
USE `example`;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `example`
--
CREATE TABLE `example` (
`Example` varchar(512) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Zrzut danych tabeli `example`
--
INSERT INTO `example` (`Example`) VALUES
('Query executed');
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 */;
|
-- This seed separates the departments
INSERT INTO department (name)
VALUES ("Sales"),
("HR"),
("IT"),
("Finances");
-- This seed separates the roles within the company
INSERT INTO roles (title, salary, department_id)
VALUES ("Store Manager", 80000, 1),
("Assistant Manager", 65000, 1),
("Cashier", 42000, 1),
("HR Director", 90000, 2),
("Staffing Coordinator", 50000, 2),
("Hardware Technician", 70000, 3),
("IT Director", 95000, 3),
("IT Director", 95000, 3),
("Financial Advisor", 100000, 4),
("Accountant", 110000, 4);
-- This seed separates the employees within the company
INSERT INTO employees (first_name, last_name, roles_id, manager_id)
VALUES ("John", "Sales", 1, null),
("Pedro", "Santos", 2, null),
("Martin", "Consuela", 3, null),
("Sally", "Shaffer", 2, null),
("Margot", "Anderson", 7, 6),
("Justin", "Thomas", 9, 5),
("Rory", "McIlroy", 5, 8),
("Tiger", "Woods", 10, 7),
("Dustin", "Johnson", 4, 9),
("Lee", "Trevino", 6, 10); |
-- phpMyAdmin SQL Dump
-- version 4.9.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jan 22, 2020 at 11:18 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: `bddb2`
--
create DATABASE bddb;
use bddb;
-- --------------------------------------------------------
--
-- Table structure for table `auteur`
--
CREATE TABLE `auteur` (
`id` int(11) NOT NULL,
`nom` varchar(45) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `auteur`
--
INSERT INTO `auteur` (`id`, `nom`) VALUES
(1, 'ABULI'),
(2, 'ACHDE'),
(3, 'ADAMS'),
(4, 'ALCATENA'),
(5, 'ALESSANDRINI'),
(6, 'AMOURIQ'),
(7, 'ANDRE'),
(8, 'ANGE'),
(9, 'ARNON'),
(10, 'AUTHEMAN'),
(11, 'BALDAZZINI'),
(12, 'BARBUCCI'),
(13, 'BARU'),
(14, 'BEAUDOIN'),
(15, 'BEC'),
(16, 'BECH'),
(17, 'BELIN'),
(18, 'BELTRAN'),
(19, 'BENOIT'),
(20, '<NAME>'),
(21, 'BERCOVICI'),
(22, 'BERNET'),
(23, 'BERROYER'),
(24, 'BETBEDER'),
(25, 'BILAL'),
(26, 'BLAIR'),
(27, 'BODART'),
(28, 'BOOGAARD'),
(29, 'BOUZIG'),
(30, 'BRANDOLI'),
(31, 'BRETECHER'),
(32, 'BRUNEL'),
(33, 'BUCHE'),
(34, 'CABANES'),
(35, 'CABU'),
(36, 'CAMBIER'),
(37, 'CAMPBELL'),
(38, 'CANALES'),
(39, 'CANEPA'),
(40, 'CAROLL'),
(41, 'CASSADAY'),
(42, 'CASTAZA'),
(43, 'CESTAC'),
(44, 'CHABAT'),
(45, 'CHAUVEL'),
(46, 'CHICAULT'),
(47, 'CHRIS'),
(48, 'CHRISTIN'),
(49, 'COLLECTIF'),
(50, 'COLUCHE'),
(51, 'CONSTANT'),
(52, 'CORCAL'),
(53, 'CREPAX'),
(54, 'CRUMB'),
(55, 'DALPRA'),
(56, 'DANIEL'),
(57, 'DAUTRIAT'),
(58, 'DAVIS'),
(59, '<NAME>'),
(60, '<NAME>'),
(61, '<NAME>'),
(62, 'DELPERDANGE'),
(63, 'DEMUTH'),
(64, 'DENAYER'),
(65, 'DENIS'),
(66, 'DERIB'),
(67, 'DETHAN'),
(68, 'DETHUIN'),
(69, '<NAME>'),
(70, 'DEWAMME'),
(71, 'DIMITRI'),
(72, 'DIONNET'),
(73, 'DIRKS'),
(74, 'DISNEY'),
(75, 'DODO'),
(76, 'DOISNEAU'),
(77, 'DRUILLET'),
(78, 'DUBOS'),
(79, 'DUGOMIER'),
(80, 'EDITH'),
(81, 'ELLIS'),
(82, 'FAHRER'),
(83, 'FERLUT'),
(84, 'FERRANDEZ'),
(85, 'FERRANDINO'),
(86, 'FLOCH'),
(87, 'FLOC\'H'),
(88, 'FOREST'),
(89, 'FRANZ'),
(90, 'FREMOND'),
(91, 'FRETET'),
(92, 'FROLLO'),
(93, 'FROMENTAL'),
(94, 'GAETA'),
(95, 'GAJIC'),
(96, 'GARCIA'),
(97, 'GAUMER'),
(98, 'GIBRAT'),
(99, 'GIGI'),
(100, 'GILLON'),
(101, 'GIMENEZ'),
(102, 'GOSCINNY'),
(103, 'GRATON'),
(104, 'GUARDINO'),
(105, 'GUIBERT'),
(106, 'HAGIWARA'),
(107, 'HARUKA'),
(108, 'HERGE'),
(109, 'HERVAL'),
(110, 'ISTIN'),
(111, 'JAGER'),
(112, 'JANJETOV'),
(113, 'JANO'),
(114, 'JOB'),
(115, 'JODOROWSKY'),
(116, 'JOHANNA'),
(117, 'JOUBERT'),
(118, 'JOUIN'),
(119, 'JULIE'),
(120, 'KALONJI'),
(121, 'KERFRIDEN'),
(122, 'KURTZMAN'),
(123, 'LALIA'),
(124, 'LAPIERE'),
(125, 'LARME'),
(126, 'LATIL'),
(127, 'LECURELEY'),
(128, 'LECUREUX'),
(129, 'LEROI'),
(130, '<NAME>'),
(131, 'LEVIS'),
(132, 'LIBERATORE'),
(133, 'LOUP'),
(134, 'LOUSTAL'),
(135, 'MAGNUS'),
(136, 'MAILLE'),
(137, 'MAKYO'),
(138, 'MANARA'),
(139, 'MANDRAFINA'),
(140, 'MANGIN'),
(141, 'MARCELLO'),
(142, 'MARELLE'),
(143, 'MARGERIN'),
(144, 'MARINI'),
(145, 'MARTIN'),
(146, 'MATTIOLI'),
(147, 'MATTOTI'),
(148, 'MATTOTTI'),
(149, 'MAURICET'),
(150, 'MAZAN'),
(151, 'MAZZUCCHELLI'),
(152, '<NAME>'),
(153, 'MEUNIER'),
(154, 'MICHEL'),
(155, 'MIGNACCO'),
(156, 'MIGNOLA'),
(157, 'MILLER'),
(158, 'MOLITERNI'),
(159, '<NAME>'),
(160, 'MONTEIL'),
(161, 'MOORE'),
(162, 'MORCHOISNE'),
(163, 'NUNES'),
(164, 'OLLIVIER'),
(165, 'OSWAL'),
(166, 'PEETERS'),
(167, 'PELLEJERO'),
(168, 'PERISSIN'),
(169, 'PETILLON'),
(170, 'PICHARD'),
(171, 'PLEYERS'),
(172, 'POP'),
(173, 'PRADO'),
(174, 'REISER'),
(175, 'REMY'),
(176, 'RENIER'),
(177, 'RISSO'),
(178, 'RIVIERE'),
(179, 'ROBBERECHT'),
(180, 'ROCHETTE'),
(181, 'RODOLPHE'),
(182, 'RODRIGUE'),
(183, 'ROMANINI'),
(184, 'ROMANO'),
(185, 'ROQUES'),
(186, 'ROSSI'),
(187, 'ROTUNDO'),
(188, 'RULLIER'),
(189, 'RUTHE'),
(190, 'SAIMBERT'),
(191, '<NAME>'),
(192, 'SAIVE'),
(193, 'SAVARD'),
(194, 'SCHIMPP'),
(195, 'SCHIPPERS'),
(196, 'SCHLINGO'),
(197, 'SCHUITEN'),
(198, 'SCHULTEISS'),
(199, 'SERA'),
(200, 'SERPIERI'),
(201, 'SERRES'),
(202, 'SERVAIS'),
(203, 'SICOMORO'),
(204, 'SIRE'),
(205, 'SMOLDEREN'),
(206, 'STAN'),
(207, 'STANISLAS'),
(208, 'STASSEN'),
(209, 'STIBANE'),
(210, 'SWOLFS'),
(211, 'SWYSEN'),
(212, 'TAMBURINI'),
(213, 'TAYMANS'),
(214, 'TOME'),
(215, 'TRAMBER'),
(216, 'TRILLO'),
(217, 'TRONCHET'),
(218, 'TRONDHEIM'),
(219, 'TURK'),
(220, 'UDERZO'),
(221, 'UTATANE'),
(222, 'VANHOLME'),
(223, '<NAME>'),
(224, 'VARENNE'),
(225, 'VERHOEST'),
(226, 'VEYRON'),
(227, 'VINCE'),
(228, 'VOLINE'),
(229, '<NAME>'),
(230, 'VUILLEMIN'),
(231, 'WERBER'),
(232, 'WESEL'),
(233, 'WETZ'),
(234, 'WILLEM'),
(235, 'WOLINSKI'),
(236, 'YANN'),
(237, 'YOANN'),
(238, 'YOSHIMOTO'),
(239, 'YUI'),
(240, 'ZIDROU');
-- --------------------------------------------------------
--
-- Table structure for table `auteur_bd`
--
CREATE TABLE `auteur_bd` (
`id` int(11) NOT NULL,
`auteur_id` int(11) DEFAULT NULL,
`bd_id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `auteur_bd`
--
INSERT INTO `auteur_bd` (`id`, `auteur_id`, `bd_id`) VALUES
(2, 102, 1),
(3, 220, 1),
(4, 220, 2),
(5, 137, 3),
(6, 14, 4),
(7, 103, 5),
(8, 151, 6),
(9, 157, 6),
(10, 102, 7),
(11, 220, 7),
(12, 37, 8),
(13, 161, 8),
(14, 96, 9),
(15, 218, 9),
(16, 116, 10),
(17, 46, 11),
(18, 86, 12),
(19, 102, 13),
(20, 220, 13),
(21, 18, 14),
(22, 112, 14),
(23, 115, 14),
(24, 238, 15),
(25, 238, 16),
(26, 134, 17),
(27, 134, 18),
(28, 102, 19),
(29, 220, 19),
(30, 191, 20),
(31, 25, 21),
(32, 25, 22),
(33, 25, 23),
(34, 48, 23),
(35, 63, 24),
(36, 77, 24),
(37, 102, 25),
(38, 220, 25),
(39, 77, 26),
(40, 76, 27),
(41, 77, 27),
(42, 84, 28),
(43, 48, 29),
(44, 84, 29),
(45, 191, 30),
(46, 102, 31),
(47, 220, 31),
(48, 102, 32),
(49, 220, 32),
(50, 102, 33),
(51, 220, 33),
(52, 102, 34),
(53, 220, 34),
(54, 102, 35),
(55, 220, 35),
(56, 102, 36),
(57, 220, 36),
(58, NULL, 37),
(59, 102, 38),
(60, 220, 38),
(61, 102, 39),
(62, 220, 39),
(63, 102, 40),
(64, 220, 40),
(65, 102, 41),
(66, 220, 41),
(67, 102, 42),
(68, 220, 42),
(69, 102, 43),
(70, 220, 43),
(71, 1, 44),
(72, 165, 44),
(73, 1, 45),
(74, 22, 45),
(75, 3, 46),
(76, 3, 47),
(77, 3, 48),
(78, 3, 49),
(79, 3, 50),
(80, 6, 51),
(81, 9, 52),
(82, 9, 53),
(83, 10, 54),
(84, 10, 55),
(85, 10, 56),
(86, 13, 57),
(87, 13, 58),
(88, 21, 59),
(89, 111, 59),
(90, 28, 60),
(91, 195, 60),
(92, 28, 61),
(93, 195, 61),
(94, 28, 62),
(95, 195, 62),
(96, 28, 63),
(97, 195, 63),
(98, 28, 64),
(99, 195, 64),
(100, 34, 65),
(101, 34, 66),
(102, 35, 67),
(103, 35, 68),
(104, 35, 69),
(105, 35, 70),
(106, 35, 71),
(107, 35, 72),
(108, 35, 73),
(109, 35, 74),
(110, 35, 75),
(111, 35, 76),
(112, 35, 77),
(113, 35, 78),
(114, 35, 79),
(115, 35, 80),
(116, 35, 81),
(117, 35, 82),
(118, 35, 83),
(119, 43, 84),
(120, 75, 84),
(121, 80, 84),
(122, 185, 84),
(123, 49, 85),
(124, 49, 86),
(125, 53, 87),
(126, 53, 88),
(127, 53, 89),
(128, 54, 90),
(129, 54, 91),
(130, 58, 92),
(131, 58, 93),
(132, 65, 94),
(133, 65, 95),
(134, 65, 96),
(135, 65, 97),
(136, 65, 98),
(137, 65, 99),
(138, 71, 100),
(139, 71, 101),
(140, 71, 102),
(141, 71, 103),
(142, 71, 104),
(143, 71, 105),
(144, 71, 106),
(145, 71, 107),
(146, 71, 108),
(147, 20, 109),
(148, 75, 109),
(149, 20, 110),
(150, 75, 110),
(151, 77, 111),
(152, 87, 112),
(153, 93, 112),
(154, 87, 113),
(155, 178, 113),
(156, 87, 114),
(157, 178, 114),
(158, 90, 115),
(159, 98, 116),
(160, 129, 116),
(161, 100, 117),
(162, 100, 118),
(163, 100, 119),
(164, 100, 120),
(165, 100, 121),
(166, 105, 122),
(167, 113, 123),
(168, 113, 124),
(169, 113, 125),
(170, 113, 126),
(171, 113, 127),
(172, 215, 127),
(173, 113, 128),
(174, 215, 128),
(175, 122, 129),
(176, 129, 130),
(177, 131, 130),
(178, 129, 131),
(179, 131, 131),
(180, 129, 132),
(181, 183, 132),
(182, 130, 133),
(183, 186, 133),
(184, 130, 134),
(185, 186, 134),
(186, 130, 135),
(187, 186, 135),
(188, 132, 136),
(189, 132, 137),
(190, 212, 137),
(191, 132, 138),
(192, 212, 138),
(193, 44, 139),
(194, 132, 139),
(195, 132, 140),
(196, 212, 140),
(197, 133, 141),
(198, 93, 142),
(199, 134, 142),
(200, 135, 143),
(201, 135, 144),
(202, 45, 145),
(203, 127, 145),
(204, 150, 146),
(205, 138, 147),
(206, 138, 148),
(207, 138, 149),
(208, 138, 150),
(209, 138, 151),
(210, 138, 152),
(211, 138, 153),
(212, 138, 154),
(213, 138, 155),
(214, 106, 156),
(215, 138, 157),
(216, 138, 158),
(217, 138, 159),
(218, 141, 160),
(219, 164, 160),
(220, 143, 161),
(221, 146, 162),
(222, 148, 163),
(223, 152, 164),
(224, 156, 164),
(225, 162, 165),
(226, 169, 166),
(227, 169, 167),
(228, 169, 168),
(229, 169, 169),
(230, 169, 170),
(231, 169, 171),
(232, 169, 172),
(233, 169, 173),
(234, 169, 174),
(235, 169, 175),
(236, 169, 176),
(237, 169, 177),
(238, 169, 178),
(239, 169, 179),
(240, 169, 180),
(241, 169, 181),
(242, 169, 182),
(243, 169, 183),
(244, 169, 184),
(245, 83, 185),
(246, 237, 185),
(247, 45, 186),
(248, 121, 186),
(249, 78, 187),
(250, 170, 187),
(251, 173, 188),
(252, 174, 189),
(253, 174, 190),
(254, 174, 191),
(255, 174, 192),
(256, 174, 193),
(257, 174, 194),
(258, 174, 195),
(259, 174, 196),
(260, 174, 197),
(261, 174, 198),
(262, 174, 199),
(263, 174, 200),
(264, 174, 201),
(265, 174, 202),
(266, 174, 203),
(267, 174, 204),
(268, 174, 205),
(269, 174, 206),
(270, 174, 207),
(271, 174, 208),
(272, 174, 209),
(273, 174, 210),
(274, 174, 211),
(275, 174, 212),
(276, 50, 213),
(277, 174, 213),
(278, 175, 214),
(279, 177, 215),
(280, 216, 215),
(281, 32, 216),
(282, 182, 216),
(283, 32, 217),
(284, 182, 217),
(285, 32, 218),
(286, 182, 218),
(287, 117, 219),
(288, 229, 219),
(289, 155, 220),
(290, 187, 220),
(291, 187, 221),
(292, 228, 221),
(293, 196, 222),
(294, 196, 223),
(295, 123, 224),
(296, 194, 224),
(297, 198, 225),
(298, 198, 226),
(299, 198, 227),
(300, 201, 228),
(301, 231, 228),
(302, 72, 229),
(303, 204, 229),
(304, 206, 230),
(305, 227, 230),
(306, 215, 231),
(307, 215, 232),
(308, 215, 233),
(309, 118, 234),
(310, 215, 234),
(311, 57, 235),
(312, 215, 235),
(313, 22, 236),
(314, 216, 236),
(315, 139, 237),
(316, 216, 237),
(317, 139, 238),
(318, 216, 238),
(319, 139, 239),
(320, 216, 239),
(321, 217, 240),
(322, 217, 241),
(323, 224, 242),
(324, 224, 243),
(325, 224, 244),
(326, 100, 245),
(327, 224, 246),
(328, 224, 247),
(329, 224, 248),
(330, 224, 249),
(331, 224, 250),
(332, 224, 251),
(333, 56, 252),
(334, 224, 252),
(335, 56, 253),
(336, 224, 253),
(337, 56, 254),
(338, 224, 254),
(339, 56, 255),
(340, 224, 255),
(341, 56, 256),
(342, 224, 256),
(343, 56, 257),
(344, 224, 257),
(345, 226, 258),
(346, 226, 259),
(347, 226, 260),
(348, 226, 261),
(349, 226, 262),
(350, 226, 263),
(351, 226, 264),
(352, 226, 265),
(353, 226, 266),
(354, 226, 267),
(355, 226, 268),
(356, 226, 269),
(357, 226, 270),
(358, 180, 271),
(359, 226, 271),
(360, 69, 272),
(361, 235, 272),
(362, 40, 273),
(363, 184, 273),
(364, 180, 274),
(365, 226, 274),
(366, 187, 275),
(367, 228, 275),
(368, 230, 276),
(369, 230, 277),
(370, 230, 278),
(371, 230, 279),
(372, 230, 280),
(373, 230, 281),
(374, 230, 282),
(375, 230, 283),
(376, 230, 284),
(377, 230, 285),
(378, 230, 286),
(379, 230, 287),
(380, 230, 288),
(381, 23, 289),
(382, 230, 289),
(383, 231, 290),
(384, 234, 291),
(385, 235, 292),
(386, 235, 293),
(387, 235, 294),
(388, 235, 295),
(389, 235, 296),
(390, 235, 297),
(391, 235, 298),
(392, 235, 299),
(393, 235, 300),
(394, 235, 301),
(395, 235, 302),
(396, 235, 303),
(397, 235, 304),
(398, 235, 305),
(399, 235, 306),
(400, 170, 307),
(401, 235, 307),
(402, 27, 308),
(403, 236, 308),
(404, 27, 309),
(405, 236, 309),
(406, 233, 310),
(407, 107, 311),
(408, 123, 312),
(409, 33, 313),
(410, 168, 313),
(411, 33, 314),
(412, 168, 314),
(413, 51, 315),
(414, 124, 315),
(415, 51, 316),
(416, 124, 316),
(417, 51, 317),
(418, 124, 317),
(419, 51, 318),
(420, 124, 318),
(421, 51, 319),
(422, 124, 319),
(423, 51, 320),
(424, 124, 320),
(425, 66, 321),
(426, 114, 321),
(427, 66, 322),
(428, 114, 322),
(429, 66, 323),
(430, 114, 323),
(431, 142, 324),
(432, 144, 324),
(433, 172, 324),
(434, 205, 324),
(435, 142, 325),
(436, 144, 325),
(437, 172, 325),
(438, 205, 325),
(439, 142, 326),
(440, 144, 326),
(441, 172, 326),
(442, 205, 326),
(443, 142, 327),
(444, 144, 327),
(445, 172, 327),
(446, 205, 327),
(447, 88, 328),
(448, 193, 328),
(449, 88, 329),
(450, 193, 329),
(451, 88, 330),
(452, 193, 330),
(453, 188, 331),
(454, 207, 331),
(455, 188, 332),
(456, 207, 332),
(457, 188, 333),
(458, 207, 333),
(459, 210, 334),
(460, 210, 335),
(461, 210, 336),
(462, 210, 337),
(463, 210, 338),
(464, 210, 339),
(465, 210, 340),
(466, 210, 341),
(467, 210, 342),
(468, 210, 343),
(469, 210, 344),
(470, 210, 345),
(471, 210, 346),
(472, 120, 347),
(473, 61, 348),
(474, 219, 348),
(475, 61, 349),
(476, 219, 349),
(477, 61, 350),
(478, 219, 350),
(479, 61, 351),
(480, 219, 351),
(481, 61, 352),
(482, 219, 352),
(483, 61, 353),
(484, 219, 353),
(485, 61, 354),
(486, 219, 354),
(487, 61, 355),
(488, 219, 355),
(489, 61, 356),
(490, 219, 356),
(491, 61, 357),
(492, 219, 357),
(493, 61, 358),
(494, 219, 358),
(495, 2, 359),
(496, 6, 360),
(497, 7, 360),
(498, 214, 361),
(499, 67, 362),
(500, 124, 363),
(501, 167, 363),
(502, 11, 364),
(503, 64, 365),
(504, 89, 365),
(505, 64, 366),
(506, 89, 366),
(507, 17, 367),
(508, 109, 367),
(509, 189, 368),
(510, 189, 369),
(511, 9, 370),
(512, 13, 371),
(513, 19, 372),
(514, 4, 373),
(515, 35, 374),
(516, 49, 375),
(517, 44, 376),
(518, 132, 376),
(519, 212, 376),
(520, 87, 377),
(521, 93, 377),
(522, 113, 378),
(523, 147, 379),
(524, 169, 380),
(525, 169, 381),
(526, 170, 382),
(527, 170, 383),
(528, 174, 384),
(529, 139, 385),
(530, 216, 385),
(531, 177, 386),
(532, 216, 386),
(533, 36, 387),
(534, 225, 387),
(535, 224, 388),
(536, 224, 389),
(537, 230, 390),
(538, 235, 391),
(539, 215, 392),
(540, 92, 393),
(541, 221, 394),
(542, 239, 395),
(543, 91, 396),
(544, 128, 397),
(545, 26, 398),
(546, 100, 399),
(547, 41, 400),
(548, 81, 400),
(549, 49, 401),
(550, 163, 402),
(551, 49, 403),
(552, 163, 404),
(553, 5, 405),
(554, 158, 405),
(555, 16, 406),
(556, 30, 407),
(557, 59, 407),
(558, 47, 408),
(559, 47, 409),
(560, 49, 410),
(561, 73, 411),
(562, 200, 412),
(563, 200, 413),
(564, 200, 414),
(565, 200, 415),
(566, 200, 416),
(567, 200, 417),
(568, 200, 418),
(569, 200, 419),
(570, 200, 420),
(571, 200, 421),
(572, 200, 422),
(573, 97, 423),
(574, 181, 423),
(575, 97, 424),
(576, 181, 424),
(577, 99, 425),
(578, 99, 426),
(579, 55, 427),
(580, 101, 427),
(581, 145, 428),
(582, 171, 428),
(583, 85, 429),
(584, 187, 429),
(585, 158, 430),
(586, 203, 430),
(587, 49, 431),
(588, 136, 432),
(589, 31, 433),
(590, 31, 434),
(591, 31, 435),
(592, 31, 436),
(593, 31, 437),
(594, 31, 438),
(595, 31, 439),
(596, 31, 440),
(597, 31, 441),
(598, 31, 442),
(599, 31, 443),
(600, 31, 444),
(601, 108, 445),
(602, 209, 446),
(603, 223, 446),
(604, 79, 447),
(605, 192, 447),
(606, 211, 448),
(607, 108, 449),
(608, 190, 450),
(609, 199, 450),
(610, 108, 451),
(611, 108, 452),
(612, 176, 453),
(613, 179, 453),
(614, 176, 454),
(615, 179, 454),
(616, 108, 455),
(617, 176, 456),
(618, 179, 456),
(619, 38, 457),
(620, 104, 457),
(621, 74, 458),
(622, 125, 459),
(623, 160, 459),
(624, 123, 460),
(625, 194, 460),
(626, 123, 461),
(627, 108, 462),
(628, 108, 463),
(629, 217, 464),
(630, 159, 465),
(631, 153, 466),
(632, 159, 467),
(633, 153, 468),
(634, 108, 469),
(635, 29, 470),
(636, 182, 470),
(637, 108, 471),
(638, 208, 472),
(639, 70, 473),
(640, 202, 473),
(641, 70, 474),
(642, 202, 474),
(643, 166, 475),
(644, 197, 475),
(645, 13, 476),
(646, 13, 477),
(647, 108, 478),
(648, 108, 479),
(649, 84, 480),
(650, 149, 481),
(651, 222, 481),
(652, 82, 482),
(653, 216, 482),
(654, 52, 483),
(655, 68, 483),
(656, 60, 484),
(657, 240, 484),
(658, 108, 485),
(659, 108, 486),
(660, 62, 487),
(661, 213, 487),
(662, 232, 487),
(663, 125, 488),
(664, 160, 488),
(665, 226, 489),
(666, 138, 490),
(667, 15, 491),
(668, 24, 491),
(669, 95, 492),
(670, 140, 492),
(671, 108, 493),
(672, 108, 494),
(673, 108, 495),
(674, 94, 496),
(675, 110, 497),
(676, 154, 497),
(677, 12, 498),
(678, 39, 498),
(679, 8, 499),
(680, 42, 499),
(681, 119, 500),
(682, 126, 500);
-- --------------------------------------------------------
--
-- Table structure for table `bd`
--
CREATE TABLE `bd` (
`id` int(11) NOT NULL,
`image` varchar(255) NOT NULL,
`ref` varchar(45) DEFAULT NULL,
`titre` varchar(100) DEFAULT NULL,
`prix_public` double DEFAULT NULL,
`prix_editeur` double DEFAULT NULL,
`ref_editeur` varchar(45) DEFAULT NULL,
`ref_fournisseur` varchar(45) DEFAULT NULL,
`resume` longtext DEFAULT NULL,
`hero_id` int(11) DEFAULT NULL,
`genre_id` int(11) DEFAULT NULL,
`editeur_id` int(11) DEFAULT NULL,
`fournisseur_id` int(11) DEFAULT NULL,
`status` enum('1','0') CHARACTER SET utf8 NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `bd`
--
INSERT INTO `bd` (`id`, `image`, `ref`, `titre`, `prix_public`, `prix_editeur`, `ref_editeur`, `ref_fournisseur`, `resume`, `hero_id`, `genre_id`, `editeur_id`, `fournisseur_id`, `status`) VALUES
(1, 'bd000001.jpg', 'BD000001', 'LE GRAND FOSSE', 8.54, 8.11, '5030002', '9782864970002', '', 11, 4, 1, 3, '1'),
(2, '', 'BD000002', 'ASTERIX BARBARELLA ET CIE', 29.72, 28.23, '', '9782850563898', 'L\'histoire de la BD, qui commence dans les années 1830, a rarement été racontée dans sa continuité, éparpillée qu\'elle est entre toutes sortes de dictionnaires et d\'études monographiques. <NAME>, directeur du musée de la bande dessinée d\'expression française, des origines à nos jours, s\'intéressant tout à la fois aux oeuvres, aux techniques, aux supports et à la sociologie du média. Accompagnée d\'une chronologie extrêmement détaillée, cette histoire est détaillée par 120 planches parmi les plus significatives du fonds francophone conservé au Musée de la BD comme celles de BILAL, FRANQUIN, HERGE, MOEBIUS, TARDI, UDERZO, etc... Chacune de ces planches fait l\'objet d\'un commentaire esthétique.<br>280 pages - Relié - Format 25 x 28', 58, 11, 31, 1, '1'),
(3, '', 'BD000003', 'LISE A SOUVENT PEUR - T1', 11.89, 11.3, '7387475', '9782723429498', '<NAME>, jeune écrivain, est interviewé pour la sortie de son premier roman intitulé L\'Histoire de Chaque jour. Sous forme de biographie, ce livre raconte l\'histoire d\'une jeune fille, Lise, l\'ayant visiblement beaucoup marqué. Ses souvenirs d\'enfance réapparaissent alors. Lise, jeune fille lunatique et renfermée, vit seule avec sa mère et sa grand-mère dans une grande propriété de campagne. Son meilleur ami est Pierre à qui elle confie tout ce qu\'elle a sur le coeur. Pour tenter de l\'apaiser, il lui propose une petite histoire différente chaque jour, dont celle des Graines de Paradis, révélant que chaque grain de beauté, en fonction de sa position sur le visage, est le signe d\'un pouvoir. Celui que possède Lise sur la joue droite lui permet de garder un coeur léger dans toutes les épreuves.', 56, 1, 19, 3, '1'),
(4, '', 'BD000004', 'CHRONIQUES BANCALES ET TURBULENTES', 14.94, 14.19, '5345004', '9782911684159', 'Une échappée fulgurante dans l\'univers poétique et trépident des Bigoudènes iconoclastes de <NAME>.<br><br>Album 80 pages - Format 27,5 x 21', 29, 11, 5, 3, '1'),
(5, '', 'BD000005', 'SPECIAL LEADER - A Paraître', NULL, NULL, '5800461', '9782870980200', '', NULL, 1, 15, 3, '1'),
(6, '', 'BD000006', 'B<NAME> UN', 12.04, 11.44, 'F62475', '9782840554417', '', 14, 3, 14, 10, '1'),
(7, '', 'BD000007', 'L\'ODYSSEE D\'ASTERIX', 8.54, 8.11, '5030010', '9782864970040', '', 11, 4, 1, 3, '1'),
(8, '', 'BD000008', 'FROM HELL', 44.97, 42.72, 'F62519', '', 'Pour faire face à un chantage concernant la naissance d\'un enfant né de l\'union inavouable d\'un petit-fils de la famille royale et d\'une prostituée, la Reine Victoria dépèche son médecin, <NAME>, afin de régler ce problème. Celui-ci, tout en suivant les ordres de la Reine, va néanmoins poursuivre ses propres plans. Les meurtres atroces qu\'il va commettre à Whitechapel durant l\'automne 1888 défrayeront la chronique... Le mystérieux assassin, surnommé Jack l\'éventreur, ne sera jamais identifié par la police. Les crimes qu\'il commet auront pour Gull/Jack l\'éventreur, une portée telle qu\'ils provoqueront chez lui des visions terrifiantes d\'un XXème siècle froid et inhumain... ', 52, 10, 14, 10, '1'),
(9, '', 'BD000009', 'LES TROIS CHEMINS', 8.69, 8.26, 'F62538', '9782840554615', '<NAME>, avare notoire, est à la recherche de trois pièces d\'or qu\'un de ses créanciers lui doit. Roselita, elle, a l\'habitude de recevoir tous les matins le pain d\'un nuage, jusqu\'au jour où il ne lui envoie plus que des pierres. <NAME> est un petit robot qui a peur de l\'eau parce qu\'elle pourrait le faire rouiller, et qui voyage en bateau. Ces trois personnages évoluent chacun sur leur propre route. Au gré de leurs aventures, les chemins et les destins vont se croiser et se décroiser.', 112, 5, 14, 10, '1'),
(10, '', 'BD000010', 'NANA FAIT DES CAUCHEMARS - T1', 8.69, 8.26, '', '', 'Nana est une petite fille comme les autres. Et comme les autres, Nana fait des cauchemars, mais elle, c\'est toutes les nuits. Elle rêve d\'une vilaine sorcière qui vient la chercher et lui fait subir mille supplices. Un soir, elle aperçoit des étincelles colorées qui dansent dans un rayon de lumière : ce sont les Phosfées qui l\'aideront à combattre les monstres de la nuit...', 107, 5, 14, 10, '1'),
(11, '', 'BD000011', '<NAME>', 8.69, 8.26, '', '', '', 163, 5, 14, 10, '1'),
(12, '', 'BD000012', 'UNE LECTURE DE TINTIN AU TIBET', 21.04, 19.99, 'PB2060', '9782130488149', '', 155, 1, 27, 10, '1'),
(13, '', 'BD000013', 'LE FILS D\'ASTERIX', 8.54, 8.11, '5030028', '9782864970118', '', 11, 4, 1, 3, '1'),
(14, '', 'BD000014', 'COFFRET LES TECHNOPERES - T1 A T3', 38.95, 37, '4349643', '', '', 111, 11, 20, 3, '1'),
(15, '', 'BD000015', 'KITCHEN', 12.2, 11.59, 'A731442', '9782070731442', '', NULL, 11, 17, 9, '1'),
(16, '', 'BD000016', 'LEZARD', 15.24, 14.48, '37643', '', '', NULL, 11, 28, 6, '1'),
(17, '', 'BD000017', 'V COMME ENGEANCE', 14.94, 14.19, '10063', '', '', NULL, 11, 6, 6, '1'),
(18, '', 'BD000018', '<NAME>', 9.91, 9.41, '', '', '', NULL, 11, 2, 3, '1'),
(19, '', 'BD000019', '<NAME>', 8.54, 8.11, '5030036', '9782864970200', '', 11, 4, 1, 3, '1'),
(20, '', 'BD000020', 'SAD\' CLUB - T1', 18.29, 18.29, 'F913', '', 'Album illustré Grand Format - Textes à droite et dessins à gauche - Les fantasmes sado-masochistes d\'un auteur disciple de <NAME>.', 142, 2, 22, 5, '1'),
(21, '', 'BD000021', '<NAME>', 18.29, 17.6, '9698', '', '', NULL, 11, 6, 6, '1'),
(22, '', 'BD000022', 'LOS ANGELES - VERSION NORMALE', 18.29, 17.6, '6949', '', '', NULL, 11, 6, 6, '1'),
(23, '', 'BD000023', 'LE SARCOPHAGE', 12.96, 12.31, '14517', '', '', 32, 11, 13, 7, '1'),
(24, '', 'BD000024', 'YRAGAEL - T1', 13.57, 12.89, '6055354', '2226121137', 'Ceci est l\'histoire de la chute du tout dernier empire sur terre, quand elle portait l\'empreinte des Dieux créateurs qui assistèrent à l\'éclosion de l\'univers. Ceci concerne la cité de Sphardin, coeur desséché du royaume de Cèmèroon. la face de la terre qui abritait l\'oeil du cosmos initial, dont le Vortex était la pupille, un puits de néant et d\'étoiles ouvert sur le passé et le devenir. Ceci est le récit d\'Yragaël, porteur de la vision, héritier du trône de Spharaïn et de sa lutte effrayante contre son frère fou, Saber d\'Irismonde. Ceci est la ballade du plus fragile et terrifiant amour que jamais un mâle noble porta à une magicienne. Et ceci est aussi et surtout la complainte de la fin des hommes... ', 162, 11, 2, 3, '1'),
(25, '', 'BD000025', 'LA ROSE ET LE GLAIVE', 8.54, 8.11, '5030168', '9782864970538', '', 11, 4, 1, 3, '1'),
(26, '', 'BD000026', 'LA NUIT', 13.57, 12.89, '6055362', '', '', NULL, 11, 29, 3, '1'),
(27, '', 'BD000027', '<NAME>', 37.35, 35.48, '16680', '', '', NULL, 11, 13, 7, '1'),
(28, '', 'BD000028', 'NOSTALGIA IN TIME SQUARE', 3.35, 3.35, '9556593', '', '', NULL, 11, 16, 9, '1'),
(29, '', 'BD000029', '<NAME>', 12.96, 12.31, '14511', '', 'A gauche, le désert des déserts, celui de Lawrence d\'Arabie. A droite, une monstrueuse usine de déssalement des eaux. Devant, une femme-oiseau avec son masque scintillant. Derrière, des puits de pétrole plantés en pleine mer.<br><br>Voyage dans l\'espace-temps aux Emirats Arabes Unis.', NULL, 11, 13, 7, '1'),
(30, '', 'BD000030', 'LES ESCLAVES DE DUENA - T2', 18.29, 18.29, 'F903', '', 'Album illustré Grand Format - Textes à droite et dessins à gauche - Les fantasmes sado-masochistes d\'un auteur disciple de <NAME>.', 142, 2, 22, 5, '1'),
(31, '', 'BD000031', 'LA GALERE D\'OBELIX', 8.54, 8.11, '5030093', '9782864970965', '', 11, 4, 1, 3, '1'),
(32, '', 'BD000032', 'LA GALERE D\'OBELIX - VERSION SEMI LUXE', 18.29, 17.6, '5030606', '9782864971122', '', 11, 4, 1, 3, '1'),
(33, '', 'BD000033', 'ASTERIX ET LA SURPRISE DE CESAR', 8.69, 8.26, '5030044', '9782864970156', '', 11, 4, 1, 3, '1'),
(34, '', 'BD000034', 'LE COUP DU MENHIR', 8.08, 7.68, '5030051', '9782864970491', '', 11, 4, 1, 3, '1'),
(35, '', 'BD000035', 'ASTERIX ET LES INDIENS', 8.08, 7.68, '5030507', '9782864970842', '', 11, 4, 1, 3, '1'),
(36, '', 'BD000036', 'COMMENT OBELIX EST TOMBE DANS LA MARMITE', 7.17, 6.81, '5030069', '9782864970392', 'Il fallait bien qu\'un jour la vérité éclate. Qu\'un jour enfin, l\' Humanité sache le fin mot de ce mystère qui la tient en haleine depuis plus de deux mille ans. Car si l\'on n\'ignore pas qu\' Obélix est tombé dans la marmite de potion magique quand il était petit, on ne sait pas comment. Eh bien ! L\' heure est venue. Et dans la mesure où il porte sa part de responsabilité dans cette sombre affaire, nous avons demandé à Astérix de tout vous dire. Alors, fiat lux !', 11, 4, 1, 3, '1'),
(37, '', 'BD000037', 'UDERZO DE FLAMBERGE A ASTERIX', 27.44, 26.07, '5030077', '9782905336002', 'Plan de l\'ouvrage : Le Temps des Réglisses 1927 à 1940 - Le Temps des Tickets 1940 à 1945 - Le Temps des Essais 1945 à 1959 - Le Temps de Pilote 1959 à 1961 - L\'Ere d\'Astérix 1961', 11, 4, 1, 3, '1'),
(38, '', 'BD000038', 'OUMPAH PAH LE PEAU ROUGE - T1', 8.99, 8.54, '5030564', '9782864970934', 'Né en 1951 de l\'imagination délirante de <NAME> et d\'<NAME>, Oump<NAME> et son complice Hubert de la Pâte Feuilletée nous entraînent dans de folles aventures dignes des meilleurs épisodes de la série Astérix. Cependant ce n\'est qu\'en 1958 que les lecteurs du journal Tintin découvriront, les premiers, notre sympathique héros. Comme pour J<NAME>, l\'histoire se déroule au XVIIIème siècle et met en confrontation la tribu des Shavashavas et les premiers européens qui découvrent le Nouveau Monde.', 129, 4, 1, 3, '1'),
(39, '', 'BD000039', 'OUMPAH PAH SUR LE SENTIER DE LA GUERRE - ET LES PIRATES - T2', 8.99, 8.54, '5030572', '9782864970941', 'Né en 1951 de l\'imagination délirante de <NAME> et d\'<NAME>, <NAME> et son complice Hubert de la Pâte Feuilletée nous entraînent dans de folles aventures dignes des meilleurs épisodes de la série Astérix. Cependant ce n\'est qu\'en 1958 que les lecteurs du journal Tintin découvriront, les premiers, notre sympathique héros. Comme pour Jehan Pistolet, l\'histoire se déroule au XVIIIème siècle et met en confrontation la tribu des Shavashavas et les premiers européens qui découvrent le Nouveau Monde.', 129, 4, 1, 3, '1'),
(40, '', 'BD000040', 'OUMPAH PAH - LA MISSION SECRETE - CONTRE FOIE MALADE - T3', 8.99, 8.54, '5030580', '9782864970958', 'Né en 1951 de l\'imagination délirante de <NAME> et d\'<NAME>, <NAME> et son complice Hubert de la Pâte Feuilletée nous entraînent dans de folles aventures dignes des meilleurs épisodes de la série Astérix. Cependant ce n\'est qu\'en 1958 que les lecteurs du journal Tintin découvriront, les premiers, notre sympathique héros. Comme pour Jehan Pistolet, l\'histoire se déroule au XVIIIème siècle et met en confrontation la tribu des Shavashavas et les premiers européens qui découvrent le Nouveau Monde.', 129, 4, 1, 3, '1'),
(41, '', 'BD000041', 'CORSAIRE PRODIGIEUX - T1', 8.23, 7.82, '5030622', '9782864971214', 'Editées pour la première fois en 1952, dans la Libre Junior, les aventures de Jehan Pistolet représentent l\'œuvre de jeunesse de <NAME> et d\'<NAME>. Elles préfigurent déjà, 7 ans avant Astérix, l\'humour caractéristique de nos deux auteurs. Les deux séries cohabiteront d\'ailleurs en 1960 dans le magazine Pilote. L\'histoire se déroule au XVIIIème siècle où un groupe d\'amis décide de se lancer dans l\'Aventure en devenant corsaires. Humour et action sont au rendez-vous tout au long de ces albums.', 69, 4, 1, 3, '1'),
(42, '', 'BD000042', 'CORSAIRE DU ROY - T2', 8.23, 7.82, '5030630', '9782864971207', 'Editées pour la première fois en 1952, dans la Libre Junior, les aventures de <NAME> représentent l\'œuvre de jeunesse de <NAME> et d\'<NAME>. Elles préfigurent déjà, 7 ans avant Astérix, l\'humour caractéristique de nos deux auteurs. Les deux séries cohabiteront d\'ailleurs en 1960 dans le magazine Pilote. L\'histoire se déroule au XVIIIème siècle où un groupe d\'amis décide de se lancer dans l\'Aventure en devenant corsaires. Humour et action sont au rendez-vous tout au long de ces albums.', 69, 4, 1, 3, '1'),
(43, '', 'BD000043', 'JEHAN PISTOLET ET L\'ESPION - T3', 8.23, 7.82, '5030648', '9782864971269', 'Editées pour la première fois en 1952, dans la Libre Junior, les aventures de <NAME> représentent l\'œuvre de jeunesse de <NAME> et d\'<NAME>. Elles préfigurent déjà, 7 ans avant Astérix, l\'humour caractéristique de nos deux auteurs. Les deux séries cohabiteront d\'ailleurs en 1960 dans le magazine Pilote. L\'histoire se déroule au XVIIIème siècle où un groupe d\'amis décide de se lancer dans l\'Aventure en devenant corsaires. Humour et action sont au rendez-vous tout au long de ces albums.', 69, 4, 1, 3, '1'),
(44, '', 'BD000044', '<NAME>', 12.04, 11.44, '6052260', '9782226095930', '', NULL, 11, 2, 3, '1'),
(45, '', 'BD000045', '<NAME>', 10.52, 9.99, '6052427', '9782226106292', '', 150, 4, 2, 3, '1'),
(46, '', 'BD000046', 'LES MISERES DE LA VIE DE BUREAU - T1', 12.04, 11.44, '6052237', '9782226095527', '', 36, 4, 2, 3, '1'),
(47, '', 'BD000047', 'BIENVENUE DANS LE MONDE MERVEILLEUX DE L\'INFORMATIQUE - T2', 12.04, 11.44, '6052294', '9782226099549', '', 36, 4, 2, 3, '1'),
(48, '', 'BD000048', 'COMMENT DEVENIR CHEF A LA PLACE DU CHEF - T3', 12.04, 11.44, '6052377', '9782226104526', '', 36, 4, 2, 3, '1'),
(49, '', 'BD000049', 'LES NOUVELLES MISERES DE LA VIE DE BUREAU - T4', 12.04, 11.44, '6052500', '9782226106841', '', 36, 4, 2, 3, '1'),
(50, '', 'BD000050', 'Y A-T-IL UNE VIE APRES LE BUREAU - T5', 12.04, 11.44, '6052609', '9782226107497', '', 36, 4, 2, 3, '1'),
(51, '', 'BD000051', 'LE PETIT MONDE DE PETASSINE', 12.04, 11.44, '6051403', '9782226056757', 'POUR ADULTES', 132, 2, 2, 3, '1'),
(52, '', 'BD000052', '<NAME>', 11.89, 11.3, '6051932', '9782226079411', 'Femmes fatales et pirates sanguinaires, îles désertes et fabuleux trésor, odeurs de poudre, de sexe et de bagarre... Avec ARNON et ses Furies, vivez la plus fabuleuse légende de tous les temps : la grande piraterie sous le soleil des Caraïbes... Mais assez perdu de temps : à l\'abordage !', 102, 4, 2, 3, '1'),
(53, '', 'BD000053', '<NAME>', 11.89, 11.3, '6052161', '9782226094674', '', 30, 4, 2, 3, '1'),
(54, '', 'BD000054', 'QU\'EST CE QU\'ELLES ONT LES FILLES', 8.99, 8.54, '6051429', '9782226056771', 'Gisèle, Olga, <NAME>... Elles sont toutes super, mais quelles embrouilles en perspective !', NULL, 4, 2, 3, '1'),
(55, '', 'BD000055', '<NAME>', 9.91, 9.41, '6051759', '9782226076137', 'AUTHEMAN poursuit l\'exploration de l\'éternel féminin. Décapant !', NULL, 4, 2, 3, '1'),
(56, '', 'BD000056', 'L\'OMBRE DE MOI MEME', 12.04, 11.44, '6055164', '9782226107527', 'Suite de situations insolites et amusantes, puisque le héros de ce recueil est perpetuellement suivi par son ombre !', NULL, 4, 2, 3, '1'),
(57, '', 'BD000057', 'COURS CAMARADE', 8.69, 8.26, '6051049', '9782226031686', '', NULL, 4, 2, 3, '1'),
(58, '', 'BD000058', 'LA PISCINE DE MICHEVILLE', 10.52, 9.99, '6051643', '9782226065636', '', NULL, 4, 2, 3, '1'),
(59, '', 'BD000059', 'ET DIEU CREA EVE AH OUI ADAM AUSSI', 10.52, 9.99, '6052179', '9782226094681', '', 48, 4, 2, 3, '1'),
(60, '', 'BD000060', 'LEON LA TERREUR', 7.93, 7.53, '6003602', '9782226016744', '', 88, 4, 2, 3, '1'),
(61, '', 'BD000061', 'LEON LA TERREUR S\'EN BALANCE', 7.93, 7.53, '6050934', '9782226025845', '', 88, 4, 2, 3, '1'),
(62, '', 'BD000062', 'LEON LA TERREUR FAIT DES VAGUES', 7.93, 7.1, '6051031', '9782226031730', '', 88, 4, 2, 3, '1'),
(63, '', 'BD000063', 'LEON LA TERREUR CASSE LA BARAQUE', 8.69, 8.26, '6051304', '9782226048875', '', 88, 4, 2, 3, '1'),
(64, '', 'BD000064', 'LE MEILLEUR DE LEON LA TERREUR - BEST OF', 28.97, 27.52, '6051940', '9782226085153', '', 88, 4, 2, 3, '1'),
(65, '', 'BD000065', 'LES ANNEES PATTES D\'EPH', 10.52, 9.99, '6051528', '9782226060013', '', NULL, 4, 2, 3, '1'),
(66, '', 'BD000066', 'BOUQUET DE FLIRTS', 11.43, 10.86, '6051924', '9782226085504', '', NULL, 4, 2, 3, '1'),
(67, '', 'BD000067', 'LE GROS BLOND AVEC SA CHEMISE NOIRE', 8.69, 8.26, '6017222', '9782226031679', '', NULL, 4, 2, 3, '1'),
(68, '', 'BD000068', '<NAME>', 8.69, 8.26, '6017420', '9782226031709', '', NULL, 4, 2, 3, '1'),
(69, 'BD000069', 'BD000069', 'A CONSOMMER AVEC MODERATION', 8.69, 8.26, '6018964', '9782226035547', '', NULL, 4, 2, 3, '1'),
(70, '', 'BD000070', '<NAME>', 10.52, 9.99, '6019624', '9782226035721', '', NULL, 4, 2, 3, '1'),
(71, '', 'BD000071', 'MORT AUX VIEUX', 8.69, 8.26, '6019673', '9782226035745', '', NULL, 4, 2, 3, '1'),
(72, '', 'BD000072', 'LES INTERDITS DE CABU', 12.2, 11.59, '6020796', '9782226037398', '', NULL, 4, 2, 3, '1'),
(73, '', 'BD000073', 'LES ABRUTIS SONT PARMI NOUS', 13.57, 12.89, '6023303', '9782226052896', '', NULL, 4, 2, 3, '1'),
(74, '', 'BD000074', '<NAME>REUR', 8.99, 8.54, '6023345', '9782226053220', '', NULL, 4, 2, 3, '1'),
(75, '', 'BD000075', '<NAME>', 8.99, 8.54, '6051478', '9782226059109', '', NULL, 4, 2, 3, '1'),
(76, '', 'BD000076', 'RESPONSABLES MAIS PAS COUPABLES', 8.99, 8.54, '6051544', '9782226061812', '', NULL, 4, 2, 3, '1'),
(77, '', 'BD000077', 'SECRETS D\'ETAT', 12.96, 12.31, '6028286', '9782226061928', '', NULL, 4, 2, 3, '1'),
(78, '', 'BD000078', 'A VOTRE BON COEUR L\'ABBE PIERRE CHEZ LES EXCLUS', 10.52, 9.99, '6051809', '9782226077875', '', NULL, 4, 2, 3, '1'),
(79, '', 'BD000079', 'LES AVENTURES EPATANTES DE JACQUES CHIRAC', 10.52, 9.99, '6051965', '9782226087034', '', NULL, 4, 2, 3, '1'),
(80, '', 'BD000080', 'SHOWBIZ', 7.93, 7.1, '6014195', '9782226022936', '', NULL, 4, 2, 3, '1'),
(81, '', 'BD000081', 'LE RETOUR DU GROS BLOND', 10.52, 9.99, '6052112', '9782226093677', '', NULL, 4, 2, 3, '1'),
(82, '', 'BD000082', 'LE MEILLEUR DU <NAME>', 14.94, 14.19, '6052476', '9782226105578', '', 57, 4, 2, 3, '1'),
(83, '', 'BD000083', '<NAME>', 10.52, 9.99, '6052526', '9782226107329', '', NULL, 4, 2, 3, '1'),
(84, '', 'BD000084', 'QUATRE PUNAISES AU CLUB', 9.91, 9.41, '6051833', '9782226078315', '', NULL, 4, 2, 3, '1'),
(85, '', 'BD000085', 'AMNESTY INTERNATIONAL AU SECOURS', 13.57, 12.89, '6029409', '9782226065483', '', 5, 11, 2, 3, '1'),
(86, '', 'BD000086', 'VIVE LE FOOT', 11.89, 11.3, '239503', '9782226100832', '', NULL, 4, 2, 3, '1'),
(87, '', 'BD000087', 'VENUS A LA FOURRURE', 13.72, 13.03, '6000277', '9782226022776', '', 158, 2, 2, 3, '1'),
(88, '', 'BD000088', 'ANITA 88', 14.48, 13.76, '6002109', '9782226031563', '', 7, 2, 2, 3, '1'),
(89, '', 'BD000089', 'ANITA EN DIRECT', 11.43, 10.86, '6018923', '9782226034120', '', 7, 2, 2, 3, '1'),
(90, '', 'BD000090', 'MES FEMMES', 14.48, 13.76, '6020440', '9782226037312', 'Rondes, géantes, pulpeuses, dotées d\'attributs digne des Vénus préhistoriques et d\'un appêtit littéralement dévorant, telles sont les femmes de CRUMB.', NULL, 4, 2, 3, '1'),
(91, '', 'BD000091', '<NAME>\'UN JOUR', 10.52, 9.99, '6051213', '9782226037428', '<NAME>, nouveaux paumés, mais tous reconvertis à l\'arrivisme et au yuppisme triomphant. Voici le monde de Belle, dont elle est le centre et le plus beau fleuron. Tout est bon pour Belle pour se faire valoir dans la course à la réussite sociale.', NULL, 4, 2, 3, '1'),
(92, '', 'BD000092', 'PLUS MORTS QUE VIVANTS - T1', 8.99, 8.54, '6052591', '9782226107961', '', 152, 3, 2, 3, '1'),
(93, '', 'BD000093', 'QUI A PEUR DU GRAND MECHANT LOUP - T2', 8.99, 8.54, '6052534', '9782226107978', '', 152, 3, 2, 3, '1'),
(94, '', 'BD000094', 'L\'OMBRE AUX TABLEAUX', 10.52, 9.99, '6051338', '9782226051608', '', NULL, 1, 2, 3, '1'),
(95, '', 'BD000095', 'B<NAME>', 12.04, 11.44, '6024178', '9782226055590', '', 20, 1, 2, 3, '1'),
(96, '', 'BD000096', 'LE PELICAN', 10.52, 9.99, '6051692', '9782226074652', '', 85, 1, 2, 3, '1'),
(97, '', 'BD000097', '<NAME>', 9.91, 9.41, '6051866', '9782226078704', '', 42, 1, 2, 3, '1'),
(98, '', 'BD000098', '<NAME> D\'<NAME>', 18.29, 17.6, '6052195', '9782226094704', '', 6, 1, 2, 3, '1'),
(99, '', 'BD000099', 'LES SEPT PECHES CAPITAUX', 11.89, 11.3, '6052328', '9782226100504', '', NULL, 1, 2, 3, '1'),
(100, '', 'BD000100', 'KALEUNT', 8.69, 8.26, '6051064', '9782226031723', '', 71, 1, 2, 3, '1'),
(101, '', 'BD000101', 'RASPOUTITSA', 10.52, 9.99, '6020333', '9782226037305', '', 140, 1, 2, 3, '1'),
(102, '', 'BD000102', 'LES ZOMES - T3', 9.91, 9.41, '6002117', '9782226020550', '', 83, 4, 2, 3, '1'),
(103, '', 'BD000103', 'LES POURRIS - T5', 8.99, 8.54, '6003222', '9782226016461', '', 83, 4, 2, 3, '1'),
(104, '', 'BD000104', 'LE MATCH DU SIECLE - T6', 8.99, 8.54, '6005029', '9782226021304', '', 83, 4, 2, 3, '1'),
(105, '', 'BD000105', '<NAME> - T9', 9.91, 9.41, '6019095', '9782226035585', '', 83, 4, 2, 3, '1'),
(106, '', 'BD000106', 'LA BELLE - T10', 10.52, 9.99, '6022222', '9782226048806', '', 83, 4, 2, 3, '1'),
(107, '', 'BD000107', 'EXOCET NOUS VOILA - T11', 10.52, 9.99, '6024186', '9782226055613', '', 83, 4, 2, 3, '1'),
(108, '', 'BD000108', 'HALTE A LA VISCERE - T12', 10.52, 9.99, '6026165', '9782226059932', '', 83, 4, 2, 3, '1'),
(109, '', 'BD000109', 'GOMINA LE POINT DU JOUR', 7.93, 7.1, '6051023', '9782226029768', '', 54, 4, 2, 3, '1'),
(110, '', 'BD000110', 'Y A DE L\'AMOUR', 11.89, 11.3, '6052211', '9782226095336', '', 121, 4, 2, 3, '1'),
(111, '', 'BD000111', 'SALAMMBO L\'INTEGRALE', 28.97, 27.52, '6051999', '9782226106407', '', 143, 1, 2, 3, '1'),
(112, '', 'BD000112', 'JAMAIS DEUX SANS TROIS', 10.52, 9.99, '6051346', '9782226052889', '', NULL, 1, 2, 3, '1'),
(113, '', 'BD000113', 'BLITZ - T1', 11.89, 11.3, '6037691', '9782226088680', '', 19, 1, 2, 3, '1'),
(114, '', 'BD000114', 'UNDERGROUND - T2', 11.89, 11.3, '6052021', '9782226088482', '', 19, 1, 2, 3, '1'),
(115, '', 'BD000115', 'LES CELIBATAIRES', 12.04, 11.44, '6023956', '9782226053824', '', 94, 4, 2, 3, '1'),
(116, '', 'BD000116', 'PINOCCHIA', 11.43, 10.86, '6051890', '9782226080028', 'Et si Pinocchio était une fille ? Et si la poupée de bois prenait corps ? Et quel corps ! Et si elle n\'était pas si innocente que ça ? Et si ça devenait un nouveau conte de fées, mais pour adultes avertis, cette fois-ci ?...', 134, 2, 2, 3, '1'),
(117, '', 'BD000117', 'LA SEVE ET LE SANG', 10.52, 9.99, '6051668', '9782226065766', '', 70, 1, 2, 3, '1'),
(118, '', 'BD000118', '<NAME>', 18.29, 17.36, '6052138', '9782226094162', 'Il était une fois, ce jour de juin 1426 en royaume de France, une bergère, Jehanne, rêveuse fière et hardie. Adaptation libre de la légende de cette héroïne nationale.', 70, 1, 2, 3, '1'),
(119, '', 'BD000119', 'LA SURVIVANTE - T1', 8.99, 8.54, '6050926', '9782226022929', '', 78, 1, 2, 3, '1'),
(120, '', 'BD000120', 'L\'ULTIMATUM - T4', 8.99, 8.54, '6051379', '9782226055644', 'La Terre est ravagée par l\'Apocalypse. Seuls survivent Aude, son fils Jonas et des robots sadiques, prêts à tout pour extirper des derniers humains le condensé de leurs sensations les plus profondes. Avec l\'Ultimatum, quatrième et dernier volume de cette fresque post-atomique, <NAME> achève sa parabole sur la déshumanisation de notre monde.', 78, 1, 2, 3, '1'),
(121, '', 'BD000121', 'LA SURVIVANTE - INTEGRALE', 28.97, 27.52, '6051916', '9782226080035', 'Elle a survécu à l\' Apocalypse. Dans un monde que la vie a quitté, elle est seule. Seule avec les robots. Elle est LA SURVIVANTE !... Réservé aux Adultes Avertis !', 78, 1, 2, 3, '1'),
(122, '', 'BD000122', 'BRUNE', 11.43, 10.86, '6051502', '9782226059987', '', 21, 1, 2, 3, '1'),
(123, '', 'BD000123', 'GAZOLINE ET LA PLANETE ROUGE', 7.93, 7.53, '122954', '9782226037251', '', 53, 4, 2, 3, '1'),
(124, '', 'BD000124', 'KEMI LE RAT DE BROUSSE', 8.69, 8.26, '6051718', '9782226075154', '', 73, 4, 2, 3, '1'),
(125, '', 'BD000125', 'PANAME', 14.94, 14.19, '6052146', '9782226093455', '', NULL, 1, 2, 3, '1'),
(126, '', 'BD000126', 'LES FABULEUSES DERIVES DE LA SANTA SARDHINA', 11.89, 11.3, '6055156', '9782226107510', '', 145, 1, 2, 3, '1'),
(127, '', 'BD000127', '<NAME>', 6.4, 6.08, '6005888', '9782226022806', '', 72, 4, 2, 3, '1'),
(128, '', 'BD000128', 'LES AVENTURES DE KEBRA', 22.71, 21.58, '6052088', '9782226092533', '', 72, 4, 2, 3, '1'),
(129, '', 'BD000129', 'LE LIVRE DE LA JUNGLE', 18.29, 17.6, '6052054', '9782226089021', '', NULL, 1, 2, 3, '1'),
(130, '', 'BD000130', 'LES PERLES DE L\'AMOUR', 8.69, 8.38, '6050892', '9782226022790', 'Romance sous le ciel brûlant des Indes, la rencontre en pleine jungle de <NAME> et du Mar<NAME>.', NULL, 1, 2, 3, '1'),
(131, '', 'BD000131', '<NAME>', 9.91, 9.41, '124904', '9782226039781', '', NULL, 1, 2, 3, '1'),
(132, '', 'BD000132', '<NAME>', 12.04, 12.04, '6023311', '9782226053213', 'Paris 1946. <NAME> fait voter la fermeture des maisons closes. Que vont devenir les pensionnaires du 27 et la charmante Dodo ?', 40, 1, 2, 3, '1'),
(133, '', 'BD000133', 'LEA - T1', 8.69, 8.26, '6050918', '9782226022882', '', 98, 1, 2, 3, '1'),
(134, '', 'BD000134', 'LA MAISON - T2', 8.69, 8.26, '6051015', '9782226027351', '', 98, 1, 2, 3, '1'),
(135, '', 'BD000135', 'LE SUJET - T3', 8.99, 8.54, '6051163', '9782226037244', '', 98, 1, 2, 3, '1'),
(136, '', 'BD000136', 'LES FEMMES DE LIBERATORE', 21.19, 20.13, '6052203', '9782226095329', '', 99, 2, 2, 3, '1'),
(137, '', 'BD000137', 'RANXEROX A NEW YORK - T1', 11.89, 11.3, '6037675', '9782226088697', '', 138, 4, 2, 3, '1'),
(138, '', 'BD000138', '<NAME> - T2', 11.89, 11.3, '6037683', '9782226088703', '', 138, 4, 2, 3, '1'),
(139, '', 'BD000139', 'AMEN - T3', 11.89, 11.3, '6052013', '9782226087973', '', 138, 4, 2, 3, '1'),
(140, '', 'BD000140', '<NAME>', 18.29, 17.6, '6026173', '9782226059925', '', 138, 4, 2, 3, '1'),
(141, '', 'BD000141', 'LES INTERDITS DE LOUP', 14.94, 14.19, '6051452', '9782226056863', '', NULL, 4, 2, 3, '1'),
(142, '', 'BD000142', '<NAME>', 9.91, 9.41, '6051122', '9782226035578', '', NULL, 1, 2, 3, '1'),
(143, '', 'BD000143', 'LA FLEUR DU LOTUS - T2', 8.99, 8.54, '6050942', '9782226025722', 'Les 110 pilules c\'est 110 allers simple pour l\'extase. Mais attention à ne pas dépasser la dose prescrite...', 91, 2, 2, 3, '1'),
(144, '', 'BD000144', 'FEMMES ENVOUTEES', 8.99, 8.54, '6051247', '9782226039750', '', NULL, 2, 2, 3, '1'),
(145, '', 'BD000145', '<NAME>', 12.04, 11.44, '', '', 'An 500. Le royaume de Bretagne est assailli de toutes parts par des peuples ennemis. Alors apparaît un étrange enfant nommé Myrrdin, doué de facultés divinatoires stupéfiantes. Et après lui, un guerrier sans égal : Arthur. Son épopée nous est racontée dans son intégralité, en une série fleuve qui prend sa source à la légende originelle... Un mythe incomparable restitué dans toute sa splendeur.', 10, 11, 14, 2, '1'),
(146, '', 'BD000146', 'DANS L\'COCHON TOUT EST BON', 12.04, 11.44, '', '', 'Philibert est un gentil garçon qui évolue dans une société obsédée par la bouffe et étouffée par la pollution. Sur une magnifique plage, où la température de l\'eau est maintenue par l\'usine voisine, le jeune homme rencontre Léa, jolie anorexique qui bronze un masque à gaz sur le visage. Elle disparaît quelques jours plus tard, laissant le pauvre garçon désemparé. Les retrouvailles auront lieu sur le lieu de travail de Philibert : la morgue.', 133, 11, 14, 2, '1'),
(147, '', 'BD000147', 'LE PARFUM DE L\'INVISIBLE - T1', 12.04, 11.44, '6050959', '9782226027283', 'Un professeur de physique honnête et naïf, a mis au point une pommade qui lui permet de se rendre invisible. Il veut ainsi épier Béatrice, une jeune danseuse qu\'il aime secrètement depuis son enfance. Miel (toujours aussi belle ), le découvre à moitié invisible dans sa chambre d\'hôtel. Elle essaiera donc de le convaincre que Béatrice n\'est pas celle qu\'il croit, mais plutôt une diablesse prétentieuse. ', 84, 2, 2, 3, '1'),
(148, '', 'BD000148', 'LE PARFUM DE L\'INVISIBLE - T2', 10.52, 9.99, '6051874', '9782226078179', '', 84, 2, 2, 3, '1'),
(149, '', 'BD000149', 'COURTS METRAGES', 10.52, 9.99, '6017917', '9782226032904', 'Plusieurs histoires (courts métrages) chaudes et délirantes de la même veine que l\'album HP et Giuseppe Bergman.', NULL, 2, 2, 3, '1'),
(150, '', 'BD000150', 'CANDIDE CAMERA', 8.99, 8.54, '6051239', '9782226039736', 'Miel travaille pour une société de production télévisuelle qui veut monter une émission genre micro-trottoir coquin. Devant le fiasco de ce micro trottoir, Miel décide de passer devant la caméra. S\'ensuivront alors une série de situations torrides ou Miel nous apparaîtra dans son plus simple apparat. ', NULL, 2, 2, 3, '1'),
(151, '', 'BD000151', 'LES FEMMES DE MANARA', 30.18, 28.68, '6051908', '9782226079992', 'Les filles de MANARA ne sont pareilles que dans la perfection. Elles semblent si lisses à première vue que l\'oeil qui glisse les confond. Il faut prendre le temps de les détailler. S\'y attarder. C\'est dans l\'étirement d\'un regard. Dans la fossette d\'une croupe. Dans le tombé d\'une crinière ou le déboîtement d\'une hanche. Un détail les distingue, toujours, comme une broutille les habille. Les filles de MANARA ne sont pas des perles de culture. Ce sont des perles sauvages. Toutes somptueuses, voluptueuses, toutes différentes. Regardez-les. Prenez le temps de les détailler, de les déchiffrer. Chacune a son histoire. ', NULL, 2, 2, 3, '1'),
(152, '', 'BD000152', '<NAME>', 10.52, 9.99, '6052039', '9782226088499', 'Valéria est mariée à un jeune homme naïf, qui essaie de percer dans le monde politique. Mais son jeune politicien de mari doit de l\'argent, beaucoup d\'argent à des personnes pas très fréquentables. C\'est ainsi qu\'elle va se retrouver nez-à-nez avec une bande de mafieux. Alors commenceront les remboursements en nature. Ou qu\'elle aille, Ursus sera toujours là pour la détrousser un peu plus... ', NULL, 2, 2, 3, '1'),
(153, '', 'BD000153', '<NAME>', 14.94, 14.19, '6052187', '', 'Cette récente production de Manara met en scène Parva et. Lulu, deux jeunes filles pas farouches. C\'est par hasard que Parva met la main sur une ceinture magique qui va libérer l\'esprit de Shiva, créature mythique qui s\'incamera en jeune éphèbe à la pleine lune d\'août à condition que Lulu triomphe de nombreuses épreuves dans lesquelles elle devra user de tous ses talents. Si elle triomphe, elles seront alors libérées et Parva pourra rejoindre Shiva. Une fois de plus MANARA nous transporte dans un univers très sensuel grâce à son trait toujours aussi suggestif . De plus cet album couleur est l\'occasion pour l\'artiste de s\'essayer aux nouvelles technologies par l\'emploi d\'incrustations et de montages d\'images numériques et de dessins. Miel travaille pour une société de production télévisuelle qui veut monter une émission genre micro trottoir coquin. Devant le fiasco de ce micro trottoir, Miel décide de passer devant la caméra. S\'ensuivront alors une série de situations torrides ou Miel nous apparditra dans son ', NULL, 2, 2, 3, '1'),
(154, '', 'BD000154', 'LE PIEGE', 12.04, 11.44, '6052435', '9782226106308', 'Deux jeunes nymphettes chauffent le Web en s\'exhibant devant une web caméra. Mais quand une invité surprise débarque et se met à jouer avec la caméra, qui sait ce qu\'il peut arriver lorsque son ex la voit ainsi sur le web. Une histoire coquine, prétexte à des scènes très dénudées sous le trait sensuel de MANARA. ', NULL, 2, 2, 3, '1'),
(155, '', 'BD000155', 'LA BETE', 12.04, 12.04, 'F741', '', 'Parue en 1976 sous le titre Le Singe, cette oeuvre de jeunesse adapte très librement une légende chinoise du XVème siècle. A cette base, MANARA et son scénariste, <NAME>, ajoutent leurs propres ingrédients politiques, philosophiques et bien sûr érotiques. Une histoire étrange sur la quête du pouvoir, un pays imaginaire en orient, un singe ambitieux : LA BETE. Une fois de plus MANARA nous étonne. ', NULL, 2, 22, 8, '1'),
(156, '', 'BD000156', 'LES LOIS IMMORALES 1 ERE PARTIE - T19', 6.4, 6.08, '7364540', '', '<NAME> est le plus puissant sorcier des Forces du Mal, mais un sortilège l\'a transformé en un inoffensif gamin. Seul le baiser d\'une jeune fille peut lui rendre ses pouvoirs et l\'obliger à défendre le royaume de Metalicana. Inspiré par les jeux de rôles, Bastard, c\'est toute la richesse de l\'heroïc fantasy japonaise pleine d\'humour et de dérision. Projeté dans les enfers, <NAME>ider est confronté à Satan lui-même. Mais ses pouvoirs ne sont rien comparés à ceux des démons. Pourtant, ces derniers ont besoin de lui. Pourquoi ? Serait-il un élément clef qui permettrait au Prince des Ténèbres de renverser Dieu et de régner sur l\'univers ? ', 13, 6, 19, 3, '1'),
(157, '', 'BD000157', 'LE DECLIC - T2', 12.04, 11.44, '6051387', '9782226055637', '', 81, 2, 2, 3, '1'),
(158, '', 'BD000158', 'LE DECLIC - T3', 12.04, 11.44, '6051700', '9782226075017', '', 81, 2, 2, 3, '1'),
(159, '', 'BD000159', 'LE DECLIC INTEGRALE', 25.76, 24.48, '6052047', '9782226088628', '<NAME> est une jeune femme de bonne famille mariée à un homme âgé mais riche. C\'est le médecin de famille, le docteur Fez, qui va déchaîner les pulsions de Claudia grâce à une mystérieuse télécommande dérobée au professeur Kranz. La jeune femme est alors intenable et s\'offre à tous les hommes qu\'elle croise, sur une simple commande du docteur Fez. Jusqu\'au jour ou l\'on découvre que la télécommande n\'est en fait qu\'une boîte vide ! Ce sont donc 3 albums qui sont réunis dans cette intégrale dans lequelle on pourra apprécier la belle Claudia. Cette BD a eu un tel succès qu\'elle fut adaptée au cinéma en 1985. ', 81, 2, 2, 3, '1'),
(160, '', 'BD000160', '<NAME>', 8.69, 8.26, '6051080', '9782226032898', '', NULL, 11, 2, 3, '1'),
(161, '', 'BD000161', 'Y A PLUS DE JEUNESSE', 8.69, 8.26, '6051148', '9782226035752', '', NULL, 4, 2, 3, '1'),
(162, '', 'BD000162', 'SQUEAK THE MOUSE - T2', 9.91, 9.41, '6051494', '9782226059239', '', 151, 4, 2, 3, '1'),
(163, '', 'BD000163', 'POUR VANITY', 27.44, 26.07, '6015630', '9782226029775', '', NULL, 11, 2, 3, '1'),
(164, '', 'BD000164', 'ZOMBIES LE MAITRE DES VERS', 12.04, 11.44, '6052443', '9782226106315', '', 164, 11, 2, 3, '1'),
(165, '', 'BD000165', 'MONSTRES SACRES', 14.94, 14.19, '6037667', '9782226088468', '', 124, 11, 2, 3, '1'),
(166, '', 'BD000166', 'LE CHIEN DES BASKETVILLE', 8.69, 8.26, '6005136', '9782226020734', '', NULL, 4, 2, 3, '1'),
(167, '', 'BD000167', 'LA FIN DU MONDE EST POUR CE SOIR', 8.99, 8.54, '6005730', '9782226025630', '', NULL, 4, 2, 3, '1'),
(168, '', 'BD000168', 'L\'ANNEE DU TAG', 8.99, 8.54, '6051361', '9782226053817', '', NULL, 4, 2, 3, '1'),
(169, '', 'BD000169', 'BIENVENUE AUX TERRIENS', 7.93, 7.53, '6026314', '9782226061119', '', NULL, 4, 2, 3, '1'),
(170, '', 'BD000170', 'LA CONJONCTURE EST GENERALE', 8.99, 8.54, '6026579', '9782226060068', '', NULL, 4, 2, 3, '1'),
(171, '', 'BD000171', 'EN PLEIN DANS LE POTAGE', 13.57, 12.89, '6051775', '9782226076885', '', NULL, 4, 2, 3, '1'),
(172, '', 'BD000172', 'C\'EST L\'EPOQUE QUI VEUT CA', 12.04, 11.44, '6052385', '9782226105035', '', NULL, 4, 2, 3, '1'),
(173, '', 'BD000173', 'UNE SACREE SALADE - T1', 7.93, 7.53, '6003479', '9782226017253', '', 66, 4, 2, 3, '1'),
(174, '', 'BD000174', 'MISTER PALMER ET DOCTEUR SUPERMARKETSTEIN - T2', 8.69, 8.26, '6002257', '9782226017277', '', 66, 4, 2, 3, '1'),
(175, '', 'BD000175', 'LA DENT CREUSE - T3', 8.69, 8.26, '6003610', '9782226017260', '', 66, 4, 2, 3, '1'),
(176, '', 'BD000176', 'LES DISPARUS D\'APOSTROPHES - T4', 7.93, 7.53, '6026322', '9782226061126', '', 66, 4, 2, 3, '1'),
(177, '', 'BD000177', 'LE CHANTEUR DE MEXICO - T5', 7.93, 7.53, '6026330', '9782226061133', '', 66, 4, 2, 3, '1'),
(178, '', 'BD000178', 'LE PRINCE DE LA BD - T6', 7.93, 7.53, '6026355', '9782226061157', '', 66, 4, 2, 3, '1'),
(179, '', 'BD000179', 'LE PEKINOIS - T7', 7.93, 7.53, '6026348', '9782226061140', '', 66, 4, 2, 3, '1'),
(180, '', 'BD000180', 'UN DETECTIVE DANS LE YUCCA - T8', 10.52, 9.99, '6051130', '9782226035639', '', 66, 4, 2, 3, '1'),
(181, '', 'BD000181', '<NAME> - T9', 10.52, 9.99, '6051254', '9782226039774', '', 66, 4, 2, 3, '1'),
(182, '', 'BD000182', 'UN PRIVE DANS LA NUIT - T10', 10.52, 9.99, '6051577', '9782226063670', '', 66, 4, 2, 3, '1'),
(183, '', 'BD000183', 'LE TOP MODEL - T11', 11.43, 10.86, '6051858', '9782226076854', '', 66, 4, 2, 3, '1'),
(184, '', 'BD000184', 'LE MEILLEUR ET LE <NAME>', 10.52, 9.99, '6054936', '9782226109132', '', 66, 4, 2, 3, '1'),
(185, '', 'BD000185', 'CATHARZIE - T1', 12.04, 11.44, '', '', 'Suite à l\'arrivée de colonies terriennes, la charmante planète Ether est devenue le lieu de nombreux conflits. Après d\'apocalyptiques guerres, il ne reste plus qu\'une atmosphère viciée et quelques survivants partagés en deux camps. Mais voilà qu\'un professeur a mis au point un gaz curatif qui pourrait sauver la planète. C\'est sa femme, <NAME>, qui se rend sur place avec le fameux produit. A la veille de la grande réunification, chacun tente de retirer une épingle dans le jeu du nouvel échiquier qui se dessine, alors que les rues et places de la planète Ether se couvrent de gens qui aspirent à une vie nouvelle. Dans un tel contexte, le voyage d\'Ether Glister est semé d\'embûches et d\'interrogations. Qu\'est-il arrivé à son mari, le professeur, et qu\'a-t-il mis au point exactement ? Quel avenir se dessine pour la planète Ether ? Autant demander qui est réellement <NAME>. Ou ce qu\'elle a été ?', 49, 9, 14, 2, '1'),
(186, '', 'BD000186', 'QUATERBACK - T1', 12.04, 11.44, '', '', 'Manhattan, aux alentours de midi. <NAME>, célèbre joueur de football de l\'équipe de Beavers, qui se rend à un rendez-vous avec le journaliste sportif <NAME>, est assassiné dans un parking souterrain. <NAME>, agent du FBI, est chargé de l\'enquête. La télévision a tôt fait de relayer la nouvelle de la mort de Mantle. Deux personnes écoutant ces informations sont prises de panique : <NAME>, un des équipiers de Mantle, et <NAME>, le coach des Beavers. Red prend la fuite. Tout au long des 5 tomes que compte la série, le personnage central est l\'agent du FBI, <NAME>. D\'une banale enquête de meurtre, ce dernier passe à une affaire de grande envergure. Trois toiles de fond tissent cette série : tout d\'abord une compétition intense entre le FBI et la CIA autour du meurtre, ensuite une intrigue de fond autour du mystère Vaughan (mafia russe, manipulations génétiques) et enfin, en toile de fond, viendront s\'inscrire les vies de quatre joueurs de football américain.', 161, 10, 14, 2, '1'),
(187, '', 'BD000187', 'CAROLINE CHOLERA', 7.93, 7.53, '6001515', '9782226014559', '', 26, 2, 2, 3, '1'),
(188, '', 'BD000188', '<NAME>', 12.04, 11.44, '6051742', '9782226075635', '', NULL, 2, 2, 3, '1'),
(189, '', 'BD000189', '<NAME>', 12.04, 11.44, '6002133', '9782226013415', '', NULL, 4, 2, 3, '1'),
(190, '', 'BD000190', '<NAME>', 10.52, 9.99, '6002141', '9782226013675', '', NULL, 4, 2, 3, '1'),
(191, '', 'BD000191', '<NAME>', 10.52, 9.99, '6002158', '9782226013682', '', NULL, 4, 2, 3, '1'),
(192, '', 'BD000192', 'ON VIT UNE EPOQUE FORMIDABLE', 10.52, 9.99, '6002166', '9782226013712', '', NULL, 4, 2, 3, '1'),
(193, '', 'BD000193', 'LA VIE DES BETES', 12.04, 11.44, '6002190', '9782226013705', '', NULL, 4, 2, 3, '1'),
(194, '', 'BD000194', 'LA VIE AU GRAND AIR - T1', 10.52, 9.99, '6002182', '9782226013699', '', 79, 4, 2, 3, '1'),
(195, '', 'BD000195', 'LA VIE AU GRAND AIR - T2', 10.52, 9.99, '6036834', '9782226087683', '', 79, 4, 2, 3, '1'),
(196, '', 'BD000196', 'LA VIE AU GRAND AIR - T3', 10.52, 9.99, '6037956', '9782226092960', '', 79, 4, 2, 3, '1'),
(197, '', 'BD000197', 'VIVE LES FEMMES', 10.52, 9.99, '6002208', '9782226013729', '', NULL, 4, 2, 3, '1'),
(198, '', 'BD000198', 'VIVE LES VACANCES', 10.52, 9.99, '6002216', '9782226013736', '', NULL, 4, 2, 3, '1'),
(199, '', 'BD000199', 'GROS DEGUEULASSE', 10.52, 9.99, '6003123', '9782226015266', '', NULL, 4, 2, 3, '1'),
(200, '', 'BD000200', 'FOUS D\'AMOUR', 12.04, 11.44, '6004022', '9782226012661', '', NULL, 4, 2, 3, '1'),
(201, '', 'BD000201', 'JEANINE', 10.52, 9.99, '6017081', '9782226029782', '', NULL, 4, 2, 3, '1'),
(202, '', 'BD000202', 'LA FAMILLE OBOULOT EN VACANCES', 10.52, 9.99, '6051155', '9782226035769', '', NULL, 4, 2, 3, '1'),
(203, '', 'BD000203', '<NAME>', 8.99, 8.54, '6051437', '9782226056801', '', NULL, 4, 2, 3, '1'),
(204, '', 'BD000204', 'TAM TAM', 13.57, 12.89, '6027940', '9782226063823', '', NULL, 4, 2, 3, '1'),
(205, '', 'BD000205', '<NAME>', 19.82, 18.83, '6052310', '9782226099945', '', NULL, 4, 2, 3, '1'),
(206, '', 'BD000206', 'ON EST PASSE A COTE DU BONHEUR (1974)', 13.57, 12.89, '6031686', '9782226075895', '', 92, 4, 2, 3, '1'),
(207, '', 'BD000207', 'SONT PAS PLUS FORTS QUE NOUS (1975)', 14.94, 14.19, '6032809', '9782226077745', '', 92, 4, 2, 3, '1'),
(208, 'bd000208.jpg', 'BD000208', 'A BAS TOUT (1976)', 14.94, 14.19, '6034532', '9782226079985', '', 92, 4, 2, 3, '1'),
(209, '', 'BD000209', 'VOTEZ PRINTEMPS (1977)', 14.94, 14.19, '6035521', '9782226085054', '', 92, 4, 2, 3, '1'),
(210, '', 'BD000210', 'C\'EST BEAU UNE FEMME (1978)', 14.94, 14.19, '6037196', '9782226085184', '', 92, 4, 2, 3, '1'),
(211, '', 'BD000211', 'PLAGE PRIVEE (1979)', 14.94, 14.19, '6040067', '9782226094148', '', 92, 4, 2, 3, '1'),
(212, '', 'BD000212', 'LA RUEE VERS RIEN (1980)', 14.94, 14.19, '6043905', '9782226105509', '', 92, 4, 2, 3, '1'),
(213, '', 'BD000213', 'Y EN AURA POUR TOUT LE MONDE', 12.04, 11.44, '6022693', '9782226051547', '', NULL, 4, 2, 3, '1'),
(214, '', 'BD000214', '<NAME>', 27.44, 26.07, '6034540', '9782226080004', '', NULL, 2, 2, 3, '1'),
(215, '', 'BD000215', 'VIDEO NOIRE', 13.57, 12.89, '6052518', '9782226106865', '', NULL, 11, 2, 3, '1'),
(216, '', 'BD000216', 'MANUEL DE SURVIE A L\'USAGE DES BRICOLEURS', 8.99, 8.54, '6052401', '9782226105059', '', 59, 4, 2, 3, '1'),
(217, '', 'BD000217', '<NAME> <NAME>', 8.99, 8.54, '6052575', '9782226107473', '', 59, 4, 2, 3, '1'),
(218, '', 'BD000218', 'LE MANUEL DU <NAME>', 8.99, 8.54, '6054928', '9782226107503', '', 59, 4, 2, 3, '1'),
(219, '', 'BD000219', '<NAME>', 12.96, 12.96, '5775176', '', 'Pour ce recueil, <NAME> a réalisé une cinquantaine de peintures et illustrations inspirées de ses Malheurs de Janice. En grand format, il a pu donner libre cours à son talent et à sa formation d\'artistes classique. Jamais Janice n\'avait été si belle et si convoîtée par les hommes, et <NAME> a donné à cet album sa touche finale, avec des textes dans la lignée du marquis de Sade. - Album relié - 24x32 - 56 pages couleurs', 67, 2, 22, 3, '1'),
(220, '', 'BD000220', 'PAS DE PITIE POUR LE PRIVE', 6.4, 6.08, '113997', '9782226022875', '', NULL, 1, 2, 3, '1'),
(221, '', 'BD000221', 'LA PEAU DE CHAGRIN', 11.89, 11.3, '6052302', '9782226095343', 'Surtout n\'y touchez pas ! Elle donne vie à tous vos désirs en vous distillant la mort. Une transposition moderne et coquine du roman d\'Honoré de Balzac.', NULL, 2, 2, 3, '1'),
(222, '', 'BD000222', 'VIVEMENT CE SOIR QU\'ON SE COUCHE', 11.43, 10.86, '6051288', '9782226039743', '', NULL, 4, 2, 3, '1'),
(223, '', 'BD000223', '<NAME>\'<NAME>', 11.89, 11.3, '6052252', '9782226095848', '', NULL, 4, 2, 3, '1'),
(224, '', 'BD000224', 'AU NOM DU PERE - T1', 12.96, 12.31, '605242', '9782226107428', '', 15, 11, 2, 3, '1'),
(225, '', 'BD000225', 'LE THEOREME DE BELL - T1', 8.69, 8.26, '6050967', '9782226022950', '', 87, 3, 2, 3, '1'),
(226, '', 'BD000226', 'LE CONTACT - T2', 8.69, 8.26, '6051056', '9782226032850', '', 87, 3, 2, 3, '1'),
(227, '', 'BD000227', 'LA SOLUTION - T3', 8.69, 8.26, '6051197', '9782226037367', '', 87, 3, 2, 3, '1'),
(228, '', 'BD000228', 'LES FOURMIS - LA BD', 8.99, 8.54, '6051734', '9782226075628', '', 100, 3, 2, 3, '1'),
(229, '', 'BD000229', 'L\'ILE DES AMAZONES ORCHID ISLAND', 14.94, 14.19, '6052120', '9782226094155', '', NULL, 1, 2, 3, '1'),
(230, '', 'BD000230', 'PUTAIN DE TELE', 10.52, 9.99, '6051817', '9782226078186', 'STAN et VINCE font exploser l\'écran de vos stars préférées. Vous n\'êtes pas près de changer de chaîne...', NULL, 4, 2, 3, '1'),
(231, '', 'BD000231', 'LA GRANDE SOURIS NOIRE', 7.93, 7.53, '6051098', '9782226031570', '', NULL, 4, 2, 3, '1'),
(232, '', 'BD000232', 'PAS DE CADEAU A GROMAGO', 10.52, 9.99, '6020614', '9782226037374', '', NULL, 4, 2, 3, '1'),
(233, '', 'BD000233', 'RESTONS CALMES ET BUVONS FRAIS', 10.52, 9.99, '6051585', '9782226063762', '', NULL, 4, 2, 3, '1'),
(234, '', 'BD000234', 'LE SECRET DE PLEGASTEL', 10.52, 9.99, '6052104', '9782226093493', '', NULL, 10, 2, 3, '1'),
(235, '', 'BD000235', 'BZH BRETAGNE ZONE HEUREUSE', 14.94, 14.19, '6052336', '9782226100498', '', NULL, 4, 2, 3, '1'),
(236, '', 'BD000236', 'BANG BANG - T1', 12.04, 11.44, '6052393', '9782226105042', '', 12, 11, 2, 3, '1'),
(237, '', 'BD000237', 'LA GRANDE ARNAQUE - T1', 14.94, 14.19, '6052278', '9782226095947', '', 76, 1, 2, 3, '1'),
(238, '', 'BD000238', 'L\'IGUANE - T2', 12.04, 11.44, '6052492', '9782226106834', '', 76, 1, 2, 3, '1'),
(239, '', 'BD000239', 'L\'ESPRIT DE FAMILLE - T1', 12.04, 11.44, '6055172', '9782226108807', '', 160, 1, 2, 3, '1'),
(240, '', 'BD000240', 'AU BONHEUR DES DRAMES', 12.04, 11.44, '6051684', '9782226074577', '', 51, 4, 2, 3, '1'),
(241, '', 'BD000241', 'LES ROIS DU RIRE', 12.04, 11.44, '6051981', '9782226085160', '', 51, 4, 2, 3, '1'),
(242, '', 'BD000242', '<NAME>', 8.69, 8.26, '6004717', '9782226020208', '', NULL, 2, 2, 3, '1'),
(243, '', 'BD000243', 'EROTIC OPERA', 8.69, 8.26, '6050983', '9782226025739', '', NULL, 2, 2, 3, '1'),
(244, '', 'BD000244', '<NAME>', 10.52, 9.99, '6051312', '9782226051561', '<NAME> vous emmène dans ses fantasmes...', NULL, 2, 2, 3, '1'),
(245, '', 'BD000245', 'LE PLAN ASPIC - T1', 10.52, 9.99, '6055305', '9782226113740', '', 104, 11, 2, 3, '1'),
(246, '', 'BD000246', 'LOLA', 10.52, 9.99, '6051619', '9782226065605', '<NAME> vous emmène dans ses fantasmes...', 115, 2, 2, 3, '1'),
(247, '', 'BD000247', 'LA CORRECTION', 19.82, 18.83, '207056', '9782226092803', '', NULL, 2, 2, 3, '1'),
(248, '', 'BD000248', 'CARLOTTA', 13.57, 12.89, '6052419', '9782226105066', '', NULL, 2, 2, 3, '1'),
(249, '', 'BD000249', '<NAME> - T1', 9.91, 9.41, '6051106', '9782226031594', 'Madone des autoroutes, nouvelle Diane chasseresse, personne n\'est à l\'abri de cette séductrice errante...', 47, 2, 2, 3, '1'),
(250, '', 'BD000250', 'LES NOCES D\'ERMA - T2', 9.91, 9.41, '6051205', '9782226037404', 'Celui qui épousera Erma n\'est pas au bout de ses peines... Ni de ses surprises...', 47, 2, 2, 3, '1'),
(251, '', 'BD000251', 'LES CAPRICES D\'ERMA - T3', 10.52, 9.99, '6051445', '9782226056849', 'Quand Erma réinvente le code amoureux...', 47, 2, 2, 3, '1'),
(252, '', 'BD000252', 'ARDEUR - T1', 9.91, 9.41, '6003313', '9782226017499', '<NAME> vous emmène dans ses fantasmes...', 9, 1, 2, 3, '1'),
(253, '', 'BD000253', 'WARSCHAU - T2', 9.91, 9.41, '101359', '9782226011060', '<NAME> vous emmène dans ses fantasmes...', 9, 1, 2, 3, '1'),
(254, '', 'BD000254', 'LA GRANDE FUGUE - T3', 9.91, 9.41, '101358', '9782226013088', '<NAME> vous emmène dans ses fantasmes...', 9, 1, 2, 3, '1'),
(255, '', 'BD000255', '<NAME> - T4', 7.93, 7.1, '106552', '9782226016515', '<NAME> vous emmène dans ses fantasmes...', 9, 1, 2, 3, '1'),
(256, '', 'BD000256', 'IDA MAUZ - T5', 8.69, 8.26, '108769', '9782226018724', '<NAME> vous emmène dans ses fantasmes...', 9, 1, 2, 3, '1'),
(257, '', 'BD000257', '<NAME> - T6', 8.69, 8.26, '116684', '9782226027320', '<NAME> vous emmène dans ses fantasmes...', 9, 1, 2, 3, '1'),
(258, '', 'BD000258', 'L\'AMOUR PROPRE', 12.04, 11.44, '6003818', '9782226018090', '', NULL, 4, 2, 3, '1'),
(259, '', 'BD000259', 'EXECUTIVE WOMAN', 12.04, 11.44, '6050884', '9782226025852', '', NULL, 4, 2, 3, '1'),
(260, '', 'BD000260', 'VITE', 8.99, 8.54, '6017214', '9782226031662', '', NULL, 4, 2, 3, '1'),
(261, '', 'BD000261', '<NAME>', 10.52, 9.99, '6051296', '9782226048783', '', NULL, 4, 2, 3, '1'),
(262, '', 'BD000262', 'JIVARA', 11.43, 10.86, '6051486', '9782226059147', '', NULL, 4, 2, 3, '1'),
(263, '', 'BD000263', '<NAME>', 12.04, 11.44, '6052450', '9782226105547', '', NULL, 4, 2, 3, '1'),
(264, '', 'BD000264', '<NAME> - T1', 8.69, 8.26, '6002265', '9782226014719', '', 16, 4, 2, 3, '1'),
(265, '', 'BD000265', 'PLUS LOURD QUE L\'AIR - T2', 8.69, 8.26, '6013221', '9782226014726', '', 16, 4, 2, 3, '1'),
(266, '', 'BD000266', '<NAME>\'ENFANTS - T3', 8.99, 8.54, '6002273', '9782226014740', '', 16, 4, 2, 3, '1'),
(267, '', 'BD000267', 'L\'ETERNEL FEMININ DURE - T4', 8.99, 8.54, '6013213', '9782226014733', '', 16, 4, 2, 3, '1'),
(268, '', 'BD000268', 'CE N\'EST PLUS LE PEUPLE QUI GRONDE MAIS LE PUBLIC QUI REAGIT - T5', 8.99, 8.54, '6018709', '9782226032959', '', 16, 4, 2, 3, '1'),
(269, '', 'BD000269', '<NAME> LA MORT - T6', 8.99, 8.54, '6051114', '9782226032942', '', 16, 4, 2, 3, '1'),
(270, '', 'BD000270', 'LE PAGURE EST CONNU - TOME 7', 10.52, 9.99, '6051551', '9782226061829', '', 16, 4, 2, 3, '1'),
(271, '', 'BD000271', '<NAME> EN AFRIQUE', 6.86, 6.52, '6002604', '9782226014757', '', 46, 4, 2, 3, '1'),
(272, '', 'BD000272', 'BREVES SUCREES SALEES DE SALON DE THE', 12.04, 11.44, '6056477', '9782226109439', '', NULL, 4, 2, 3, '1'),
(273, '', 'BD000273', 'LES AVENTURES D\'ALICE AU PAYS DU MERVEILLEUX AILLEURS', 25.15, 23.89, '5345129', '9782911684173', '', 4, 11, 5, 3, '1'),
(274, '', 'BD000274', 'LE MYSTERE CONTINENTAL', 8.99, 8.54, '6051569', '9782226061898', '', 46, 4, 2, 3, '1'),
(275, '', 'BD000275', '<NAME>', 11.89, 11.3, '225938', '9782226095343', '', NULL, 4, 2, 3, '1'),
(276, '', 'BD000276', 'TRAGIQUES DESTINS', 8.99, 8.54, '6005839', '9782226022820', '', NULL, 4, 2, 3, '1'),
(277, '', 'BD000277', 'LE MEILLEUR DE MOI MEME', 14.48, 13.76, '6018444', '9782226032928', '', NULL, 4, 2, 3, '1');
INSERT INTO `bd` (`id`, `image`, `ref`, `titre`, `prix_public`, `prix_editeur`, `ref_editeur`, `ref_fournisseur`, `resume`, `hero_id`, `genre_id`, `editeur_id`, `fournisseur_id`, `status`) VALUES
(278, '', 'BD000278', 'PLAISIR D\'OFFRIR', 10.52, 9.99, '6051262', '9782226039804', '', NULL, 4, 2, 3, '1'),
(279, '', 'BD000279', 'LE MONDE MERVEILLEUX DE VUILLEMIN', 12.04, 11.44, '6051841', '9782226078308', '', NULL, 4, 2, 3, '1'),
(280, '', 'BD000280', 'TOUT EST DANS LE SOURIRE', 10.52, 9.99, '6052096', '9782226093707', '', NULL, 4, 2, 3, '1'),
(281, '', 'BD000281', 'LES CHEFS D\'OEUVRE DE VUILLEMIN', 19.67, 18.68, '6052229', '9782226095350', '', NULL, 4, 2, 3, '1'),
(282, '', 'BD000282', 'LES SALES BLAGUES DE L\'ECHO - T1', 8.99, 8.54, '6050991', '9782226027368', '', 109, 4, 2, 3, '1'),
(283, '', 'BD000283', 'LES SALES BLAGUES DE L\'ECHO - T2', 8.99, 8.54, '6051189', '9782226037282', '', 109, 4, 2, 3, '1'),
(284, '', 'BD000284', 'LES SALES BLAGUES DE L\'ECHO - T3', 8.99, 8.54, '6051320', '9782226051578', '', 109, 4, 2, 3, '1'),
(285, '', 'BD000285', 'LES SALES BLAGUES DE L\'ECHO - T4', 8.99, 8.54, '6051536', '9782226061775', '', 109, 4, 2, 3, '1'),
(286, '', 'BD000286', 'LES SALES BLAGUES DE L\'ECHO - T5', 8.99, 8.54, '6051783', '9782226077417', '', 109, 4, 2, 3, '1'),
(287, '', 'BD000287', 'LES SALES BLAGUES DE L\'ECHO - T6', 8.99, 8.54, '6052005', '9782226088475', '', 109, 4, 2, 3, '1'),
(288, '', 'BD000288', 'LES SALES BLAGUES DE L\'ECHO - T7', 8.99, 8.54, '6052351', '9782226104441', '', 109, 4, 2, 3, '1'),
(289, '', 'BD000289', 'RAOUL TEIGNEUX CONTRE <NAME>', 8.99, 8.54, '6018220', '9782226031617', '', 139, 4, 2, 3, '1'),
(290, '', 'BD000290', 'EXIT - T1', 8.99, 8.54, '6052567', '9782226104519', '', 50, 4, 2, 3, '1'),
(291, '', 'BD000291', 'TOUT VA BIEN 200 DESSINS SUPER POSITIFS', 14.94, 14.19, '6038079', '9782226089014', '', 156, 4, 2, 3, '1'),
(292, '', 'BD000292', 'LA BAGUE AU DOIGT', 9.91, 9.41, '6001671', '9782226014344', '', NULL, 4, 2, 3, '1'),
(293, '', 'BD000293', 'LES SOCIALOS', 13.57, 12.89, '6023535', '9782226053275', '', NULL, 4, 2, 3, '1'),
(294, '', 'BD000294', 'VOUS EN ETES ENCORE LA VOUS', 12.04, 11.44, '6051510', '9782226060006', '', NULL, 4, 2, 3, '1'),
(295, '', 'BD000295', 'LE BAL DES RINGARDS', 14.48, 13.76, '6051601', '9782226063755', '', NULL, 4, 2, 3, '1'),
(296, '', 'BD000296', 'DIS MOI QUE TU M\'AIMES', 12.04, 11.44, '', '', '', NULL, 4, 2, 3, '1'),
(297, '', 'BD000297', 'SCOOPETTE LA NYMPHO DE L\'INFO', 10.52, 9.99, '6052708', '9782226069108', '', 146, 4, 2, 3, '1'),
(298, '', 'BD000298', 'ENFIN DES VRAIS HOMMES', 10.52, 9.99, '6051726', '9782226075611', '', NULL, 4, 2, 3, '1'),
(299, '', 'BD000299', 'NOUS SOMMES EN TRAIN DE NOUS EN SORTIR', 12.04, 11.44, '6051791', '9782226077424', '', NULL, 4, 2, 3, '1'),
(300, '', 'BD000300', 'IL N\'Y A PLUS DE VALEURS', 10.52, 9.99, '6051882', '9782226079480', '', NULL, 4, 2, 3, '1'),
(301, '', 'BD000301', 'SACRE MITTERAND', 13.57, 12.89, '6035950', '9782226085962', '', NULL, 4, 2, 3, '1'),
(302, '', 'BD000302', '<NAME>', 13.57, 12.89, '6052070', '9782226085047', '', NULL, 4, 2, 3, '1'),
(303, '', 'BD000303', '<NAME>', 10.52, 9.99, '6052153', '9782226094667', '', NULL, 4, 2, 3, '1'),
(304, '', 'BD000304', '<NAME>', 10.52, 9.99, '6052286', '9782226099532', '', 123, 4, 2, 3, '1'),
(305, '', 'BD000305', '<NAME>', 10.52, 9.99, '6052344', '9782226106285', '', NULL, 4, 2, 3, '1'),
(306, '', 'BD000306', '<NAME>', 12.04, 11.44, '6052583', '9782226107435', '', NULL, 4, 2, 3, '1'),
(307, '', 'BD000307', '<NAME>', 29.73, 28.24, '6052468', '9782226105561', '', 131, 4, 2, 3, '1'),
(308, '', 'BD000308', 'NIC<NAME> - T1', 10.52, 9.99, '127583', '9782226039835', '', 126, 4, 2, 3, '1'),
(309, '', 'BD000309', 'L\'INCURABLE NICOTINE - T2', 8.99, 8.54, '131886', '9782226056764', '', 126, 4, 2, 3, '1'),
(310, '', 'BD000310', 'GIRLS GIRLS GIRLS - Rupture Editeur', NULL, NULL, '', '', 'Les pin-up, ces filles de papier n\'ont d\'autre destinée que de satisfaire le plaisir de nos yeux. Celles de cet album sont exhibitionnistes, et provocantes, et WETZ nous les offre ensorcelantes...', 147, 2, 32, 3, '1'),
(311, '', 'BD000311', 'OGENKI CLINIC - T2', 10.52, 9.99, '6051957', '9782226088635', '', 127, 7, 2, 3, '1'),
(312, '', 'BD000312', 'LE GRIMOIRE MAUDIT - T1', 14.94, 14.19, '6052484', '9782226105523', '', 116, 3, 2, 3, '1'),
(313, '', 'BD000313', 'A LA POURSUITE DU PRINCE CHARMANT - T1', 8.99, 8.54, '4345005', '9782731607819', '<NAME> a deux maris. Le premier, aviateur, a disparu aux Indes. Le second, jaloux, part à la recherche du premier. Hélène suit ses deux époux au bout du monde, d\'aventures excentriques en périéties extravagantes.', 60, 11, 3, 3, '1'),
(314, '', 'BD000314', 'LA RIVIERE DU GRAND RETOUR - T2', 8.99, 8.54, '4345013', '9782731610574', '<NAME> a deux maris. Le premier, aviateur, a disparu aux Indes. Le second, jaloux, part à la recherche du premier. Hélène suit ses deux époux au bout du monde, d\'aventures excentriques en périéties extravagantes.', 60, 11, 3, 3, '1'),
(315, '', 'BD000315', '<NAME> - T1', 8.99, 8.54, '4345021', '9782883020306', 'Lorsqu\'il ne résout pas des énigmes policières, <NAME> pilote des Ferrari délicieusement rétros sur les routes italiennes. Humour, simplicité, action : un mélange digne des grandes séries des années 50.', 120, 11, 3, 3, '1'),
(316, '', 'BD000316', 'CINE CITTA - T2', 8.99, 8.54, '4345039', '9782883020313', 'Lorsqu\'il ne résout pas des énigmes policières, <NAME>di pilote des Ferrari délicieusement rétros sur les routes italiennes. Humour, simplicité, action : un mélange digne des grandes séries des années 50.', 120, 11, 3, 3, '1'),
(317, '', 'BD000317', 'LA VOLEUSE - T3', 8.99, 8.54, '4345047', '9782883020320', 'Lorsqu\'il ne résout pas des énigmes policières, <NAME> pilote des Ferrari délicieusement rétros sur les routes italiennes. Humour, simplicité, action : un mélange digne des grandes séries des années 50.', 120, 11, 3, 3, '1'),
(318, '', 'BD000318', 'LA BAIE DES MENTEURS - T4', 8.99, 8.54, '4345054', '9782731609097', 'Lorsqu\'il ne résout pas des énigmes policières, <NAME> pilote des Ferrari délicieusement rétros sur les routes italiennes. Humour, simplicité, action : un mélange digne des grandes séries des années 50.', 120, 11, 3, 3, '1'),
(319, '', 'BD000319', 'LA GUERRE DES FAMILLES - T5', 8.99, 8.54, '4345062', '9782731610154', 'Lorsqu\'il ne résout pas des énigmes policières, <NAME>di pilote des Ferrari délicieusement rétros sur les routes italiennes. Humour, simplicité, action : un mélange digne des grandes séries des années 50.', 120, 11, 3, 3, '1'),
(320, '', 'BD000320', 'LES VOLEURS DE FERRARI - T6', 8.99, 8.54, '4345070', '9782731610727', 'Lorsqu\'il ne résout pas des énigmes policières, <NAME> pilote des Ferrari délicieusement rétros sur les routes italiennes. Humour, simplicité, action : un mélange digne des grandes séries des années 50.', 120, 11, 3, 3, '1'),
(321, '', 'BD000321', 'ECHEC A BRAZERRO - T1', 8.99, 8.54, '4345088', '9782883020023', 'Drôle d\'oiseau, ce Pythagore, féru d\'arithmétique et d\'alcools forts. Ami fidèle, il assiste ses copains humains dans leurs périples à travers le monde. Par les auteurs de Yakari, la célèbre série pour enfants.', 136, 11, 3, 3, '1'),
(322, '', 'BD000322', 'OPERATION RHINO - T2', 8.99, 8.54, '4345096', '9782883020139', 'Drôle d\'oiseau, ce Pythagore, féru d\'arithmétique et d\'alcools forts. Ami fidèle, il assiste ses copains humains dans leurs périples à travers le monde. Par les auteurs de Yakari, la célèbre série pour enfants.', 136, 11, 3, 3, '1'),
(323, '', 'BD000323', 'LES GEANTS DE LA TOUNDRA - T3', 8.99, 8.54, '4345104', '9782883020146', 'Drôle d\'oiseau, ce Pythagore, féru d\'arithmétique et d\'alcools forts. Ami fidèle, il assiste ses copains humains dans leurs périples à travers le monde. Par les auteurs de Yakari, la célèbre série pour enfants.', 136, 11, 3, 3, '1'),
(324, '', 'BD000324', 'LA COLOMBE DE LA PLACE ROUGE - T1 - Arrêt de Commercialisation', 8.99, 8.54, '4345112', '9782883020047', '<NAME> est un jeune journaliste de la vieille école, celle qui formait des aventuriers plutôt que des paparazzi. Une série nourrie à la BD d\'action américaine et aux mangas japonais.', 128, 11, 3, 3, '1'),
(325, '', 'BD000325', 'BIENVENUE A KOKONINOWORLD - T2 - Arrêt de Commercialisation', 8.99, 8.54, '4345138', '9782731608236', '<NAME> est un jeune journaliste de la vieille école, celle qui formait des aventuriers plutôt que des paparazzi. Une série nourrie à la BD d\'action américaine et aux mangas japonais.', 128, 11, 3, 3, '1'),
(326, '', 'BD000326', 'RAID SUR KOKONINOWORLD - T3 - Arrêt de Commercialisation', 8.99, 8.54, '4345146', '9782731610130', '<NAME> est un jeune journaliste de la vieille école, celle qui formait des aventuriers plutôt que des paparazzi. Une série nourrie à la BD d\'action américaine et aux mangas japonais.', 128, 11, 3, 3, '1'),
(327, '', 'BD000327', 'LE PARFUM DU MAGNOLIA - T4 - Arrêt de Commercialisation', 8.99, 8.54, '4345120', '9782731610796', '<NAME> est un jeune journaliste de la vieille école, celle qui formait des aventuriers plutôt que des paparazzi. Une série nourrie à la BD d\'action américaine et aux mangas japonais.', 128, 11, 3, 3, '1'),
(328, '', 'BD000328', 'LE FANTOME DU MANDCHOU FOU - T1', 8.99, 8.54, '4345153', '9782883020238', 'Le dessinateur de Barbarella, Jean-Claude FOREST, a beaucoup écrit pour les autres. Ses scénarios sont une fête de malice, d\'invention et d\'intelligence. Parfaitement servis par le graphisme précis de SAVARD, ceux de Léonid Beaudragon, détective farfelu, ne dérogent pas à la règle.', 90, 11, 3, 3, '1'),
(329, '', 'BD000329', 'LA NUIT DES TOTEMS - T2 - Arrêt de commercialisation', 8.99, 8.54, '4345161', '9782883020054', 'Le dessinateur de Barbarella, Jean-Claude FOREST, a beaucoup écrit pour les autres. Ses scénarios sont une fête de malice, d\'invention et d\'intelligence. Parfaitement servis par le graphisme précis de SAVARD, ceux de Léonid Beaudragon, détective farfelu, ne dérogent pas à la règle.', 90, 11, 3, 3, '1'),
(330, '', 'BD000330', 'LE SCAPHANDRIER DU LUNDI - T3 - Arrêt de commercialisation', 8.99, 8.54, '4345179', '9782731609554', 'Le dessinateur de Barbarella, Jean-Claude FOREST, a beaucoup écrit pour les autres. Ses scénarios sont une fête de malice, d\'invention et d\'intelligence. Parfaitement servis par le graphisme précis de SAVARD, ceux de Léonid Beaudragon, détective farfelu, ne dérogent pas à la règle.', 90, 11, 3, 3, '1'),
(331, '', 'BD000331', 'TRAFIC EN INDOCHINE - T1', 8.99, 8.54, '4345187', '9782731608120', '<NAME> n\'a pas la tête de l\'emploi. Avec ses airs de premier de la classe, il se retrouve pourtant plongé dans un tourbillon d\'aventures périlleuses, dans l\'Indochine française ou le trouble Paris de l\'après-guerre.', 159, 11, 3, 3, '1'),
(332, '', 'BD000332', 'LA ROUTE DE CAO BANG - T2', 8.99, 8.54, '4345195', '9782731609462', '<NAME> n\'a pas la tête de l\'emploi. Avec ses airs de premier de la classe, il se retrouve pourtant plongé dans un tourbillon d\'aventures périlleuses, dans l\'Indochine française ou le trouble Paris de l\'après-guerre.', 159, 11, 3, 3, '1'),
(333, '', 'BD000333', 'LE MANCHOT DE LA BUTTE ROUGE - T3', 8.99, 8.54, '4345203', '9782731611274', '<NAME> n\'a pas la tête de l\'emploi. Avec ses airs de premier de la classe, il se retrouve pourtant plongé dans un tourbillon d\'aventures périlleuses, dans l\'Indochine française ou le trouble Paris de l\'après-guerre.', 159, 11, 3, 3, '1'),
(334, '', 'BD000334', 'LES CHIENS MEURENT EN HIVER - T1', 9.45, 8.98, '4345310', '9782731609714', 'Durango est un héros courageux et solitaire, impitoyable mais sentimental, véritable défenseur de la loi et du bien. Une série violente et mouvementée, dans la lignée des plus grands western spaghetti.', 45, 11, 20, 3, '1'),
(335, '', 'BD000335', 'LES FORCES DE LA COLERE - T2', 9.45, 8.98, '4345328', '9782731609721', 'Durango est un héros courageux et solitaire, impitoyable mais sentimental, véritable défenseur de la loi et du bien. Une série violente et mouvementée, dans la lignée des plus grands western spaghetti.', 45, 11, 20, 3, '1'),
(336, '', 'BD000336', 'PIEGE POUR UN TUEUR - T3', 9.45, 8.98, '4345336', '9782731609738', 'Durango est un héros courageux et solitaire, impitoyable mais sentimental, véritable défenseur de la loi et du bien. Une série violente et mouvementée, dans la lignée des plus grands western spaghetti.', 45, 11, 20, 3, '1'),
(337, '', 'BD000337', 'AMOS - T4', 9.45, 8.98, '4345211', '9782731609745', 'Durango est un héros courageux et solitaire, impitoyable mais sentimental, véritable défenseur de la loi et du bien. Une série violente et mouvementée, dans la lignée des plus grands western spaghetti.', 45, 11, 20, 3, '1'),
(338, '', 'BD000338', 'SIERRA SAUVAGE - T5', 9.45, 8.98, '4345229', '9782731609752', 'Durango est un héros courageux et solitaire, impitoyable mais sentimental, véritable défenseur de la loi et du bien. Une série violente et mouvementée, dans la lignée des plus grands western spaghetti.', 45, 11, 20, 3, '1'),
(339, '', 'BD000339', 'LE DESTIN D\'UN DESPERADO - T6', 9.45, 8.98, '4345237', '9782731609769', 'Durango est un héros courageux et solitaire, impitoyable mais sentimental, véritable défenseur de la loi et du bien. Une série violente et mouvementée, dans la lignée des plus grands western spaghetti.', 45, 11, 20, 3, '1'),
(340, '', 'BD000340', 'LONEVILLE - T7', 9.45, 8.98, '4345245', '9782731607772', 'Durango est un héros courageux et solitaire, impitoyable mais sentimental, véritable défenseur de la loi et du bien. Une série violente et mouvementée, dans la lignée des plus grands western spaghetti.', 45, 11, 20, 3, '1'),
(341, '', 'BD000341', 'UNE RAISON POUR MOURIR - T8', 9.45, 8.98, '4345252', '9782731609783', 'Durango est un héros courageux et solitaire, impitoyable mais sentimental, véritable défenseur de la loi et du bien. Une série violente et mouvementée, dans la lignée des plus grands western spaghetti.', 45, 11, 3, 3, '1'),
(342, '', 'BD000342', '<NAME> - T9', 9.45, 8.98, '4345260', '9782731609790', 'Durango est un héros courageux et solitaire, impitoyable mais sentimental, véritable défenseur de la loi et du bien. Une série violente et mouvementée, dans la lignée des plus grands western spaghetti.', 45, 11, 3, 3, '1'),
(343, '', 'BD000343', 'LA PROIE DES CHACALS - T10', 9.45, 8.98, '4345278', '9782731609806', 'Durango est un héros courageux et solitaire, impitoyable mais sentimental, véritable défenseur de la loi et du bien. Une série violente et mouvementée, dans la lignée des plus grands western spaghetti.', 45, 11, 3, 3, '1'),
(344, '', 'BD000344', 'COLORADO - T11', 9.45, 8.98, '4345286', '9782731610505', 'Durango est un héros courageux et solitaire, impitoyable mais sentimental, véritable défenseur de la loi et du bien. Une série violente et mouvementée, dans la lignée des plus grands western spaghetti.', 45, 11, 3, 3, '1'),
(345, '', 'BD000345', 'L\'HERITIERE - T12', 9.45, 8.98, '4345294', '9782731610970', 'Durango est un héros courageux et solitaire, impitoyable mais sentimental, véritable défenseur de la loi et du bien. Une série violente et mouvementée, dans la lignée des plus grands western spaghetti.', 45, 11, 3, 3, '1'),
(346, '', 'BD000346', 'SANS PITIE - T13', 9.45, 8.98, '4348090', '9782731612721', 'Durango est un héros courageux et solitaire, impitoyable mais sentimental, véritable défenseur de la loi et du bien. Une série violente et mouvementée, dans la lignée des plus grands western spaghetti.', 45, 11, 3, 3, '1'),
(347, '', 'BD000347', 'HELVETIKA - T1', 10.52, 9.99, '5349162', '9782940199198', '', 61, 11, 26, 3, '1'),
(348, '', 'BD000348', '<NAME> 20 ANS DE GENIE', 8.69, 8.26, '01621NE', '9782884250061', '', 89, 4, 13, 7, '1'),
(349, '', 'BD000349', 'FLAGRANT GENIE - T19', 8.69, 8.26, '01640NE', '9782884250009', '', 89, 4, 13, 7, '1'),
(350, '', 'BD000350', 'CIEL MON GENIE - T20', 8.69, 8.26, '01641NE', '9782884250016', '', 89, 4, 13, 7, '1'),
(351, '', 'BD000351', 'UN AIR DE GENIE - T21', 8.69, 8.26, '01642NE', '9782884250023', '', 89, 4, 13, 7, '1'),
(352, '', 'BD000352', 'CADEAU DE GENIE - T22', 8.69, 8.26, '01643NE', '9782884250030', '', 89, 4, 13, 7, '1'),
(353, '', 'BD000353', 'POIL AU GENIE - T23', 8.69, 8.26, '01644NE', '9782884250047', '', 89, 4, 13, 7, '1'),
(354, '', 'BD000354', 'TEMPS DE GENIE - T24', 8.69, 8.26, '01645NE', '9782884250054', '', 89, 4, 13, 7, '1'),
(355, '', 'BD000355', 'D\'OU VIENS TU GENIE - T25', 8.69, 8.26, '01646NE', '9782884250078', '', 89, 4, 13, 7, '1'),
(356, '', 'BD000356', 'GENIE OR NOT GENIE - T26', 8.69, 8.26, '01647NE', '9782884250092', '', 89, 4, 13, 7, '1'),
(357, '', 'BD000357', 'ON A MARCHE SUR LE GENIE - T27', 8.69, 8.26, '1648', '9782884250115', '', 89, 4, 13, 7, '1'),
(358, '', 'BD000358', 'GENIE TOUJOURS PRÊT - T28', 8.69, 8.26, '1649', '9782884250122', '', 89, 4, 13, 7, '1'),
(359, '', 'BD000359', 'ON ACHEVE BIEN LES 2CV - T1', 8.99, 8.54, '276167', '9782912715180', 'A son bord, la vie n\'est pas une longue autoroute tranquille, et comme nous tous, la famille Lerbag en fait le constat tous les jours ! De parking en parcmètres, de garages en fourrières, de pannes en P.V, celle qui doit leur simplifier la route, leur pourrit l\'existence.Du plaisir d\'essence à l\'enfer mécanique, bourres et déboires de nos héros de l\'asphalte. P.S : le contrôle technique de cet album est O.K !', 96, 4, 8, 4, '1'),
(360, '', 'BD000360', 'LES CHARIOTS SAUVAGES', 8.99, 8.54, '276169', '9782912715203', 'Les Zypers d\'AMOURIQ, c\'est comme les grandes surfaces, une fois qu\'on est entré, on ne peut pas s\'empêcher de consommer ! Sauf qu\'ici, il n\'y a qu\'un rayon : l\'humour. Un rayon toujours bien achalandé ou chaque gag a l\'art de titiller nos petits défauts de grands consommateurs. Prêts à subir l\'assaut des Chariots Sauvages ? Alors à vos caddies et faites le plein de bonne humeur.', 113, 4, 8, 4, '1'),
(361, '', 'BD000361', 'PETIT SPIROU INTEGRALE N° 1', 13.57, 12.89, '276944', '9782873930219', '', 86, 4, 24, 4, '1'),
(362, '', 'BD000362', '<NAME> OU L\'ELOGE DE L\'AVARICE - Rupture Editeur', 10.52, 9.99, '', '', 'En 1976, lors de vacances dans le Périgord, une petite fille fait la connaissance de sa grand-tante. Issue de la très haute bourgeoisie, à l\'abri du besoin toute sa vie, <NAME> a pourtant développé un trait de caractère très marqué que la petite fille découvre à travers son histoire personnelle et une série d\'anecdotes étonnantes : elle a élevé l\'avarice au rang d\'un véritable art de vivre... Album 96 pages noir et blanc ', 153, 11, 14, 2, '1'),
(363, '', 'BD000363', 'UN PEU DE FUMEE BLEUE', 12.04, 11.44, '', '', 'Une boîte ouverte. Six cigarettes alignées sur le comptoir. Écrits à la main, sur chacune d\'elles, quelques mots. Mis bout à bout, les mots se font poème. Le tabac est vieux et les cigarettes laissent au fond de la bouche un goût amer. Pourquoi ces mots ? Quelle histoire derrière cette fumée qui s\'échappe en volutes bleues ? Laura en connaît plusieurs débuts. Il y est question de prisonniers qui souffrent et de femmes qui pleurent. En connaît-elle la fin ? ', NULL, 1, 15, 3, '1'),
(364, '', 'BD000364', '<NAME>', 12.04, 12.04, '5353073', '', 'Elégantes, féminines et mystérieuses. Une nouvelle race d\'héroïnes, hommes et femmes à la fois !', 27, 11, 18, 3, '1'),
(365, '', 'BD000365', 'PACK GORD T1 + T4', 12.04, 11.44, '5330824', '9782862651259', '', 55, 11, 21, 3, '1'),
(366, '', 'BD000366', 'COFFRET GORD 4 VOLUMES', 52.75, 50.11, '5330923', '9782872651498', '', 55, 11, 21, 3, '1'),
(367, '', 'BD000367', 'CAPTAIN PIRATE - T1', 8.99, 8.54, '5060009', '9782914235211', 'Vous rêviez des Caraïbes, de ses plages de sable fin, des tropiques, vous allez être servis ! Hissez la grand voile, moussaillons, l\'heure de l\'aventure a sonné. Prenez un Captain, pirate au long cours, français, bourru et prêt à tout. Faites le cohabiter avec une jeune espagnole, Inès, petite gamine éprise de bonnes manières flibustières, en un mot, une teigne. Ajoutez un oncle âpre au gain, un gamin ravageur de St Malo et placez le tout en plein 17ème siècle. Une aventure pétillante et pleine d\'humour qui vous entraîne dans de nombreux rebondissements à rythme soutenu.', 23, 11, 25, 3, '1'),
(368, '', 'BD000368', 'PAS SI BETE - T1', 10.52, 9.99, '5330832', '9782872651108', '', 130, 11, 21, 3, '1'),
(369, '', 'BD000369', 'PAS SI BETE - T2', 10.52, 9.99, '5330790', '9782872651368', '', 130, 11, 21, 3, '1'),
(370, '', 'BD000370', 'L\'INVASION', 12.04, 11.44, '6056535', '9782226114686', '', NULL, 11, 2, 3, '1'),
(371, '', 'BD000371', '<NAME>', 18.29, 17.6, '6023394', '9782226053251', '', NULL, 11, 2, 3, '1'),
(372, '', 'BD000372', 'LA <NAME>U LEOPARD - VERSION LUXE', 91.47, 91.47, '6005532', '9782226115423', '', NULL, 11, 2, 3, '1'),
(373, '', 'BD000373', '<NAME>', 18.29, 17.6, '6062681', '9782226114839', '', 118, 11, 2, 3, '1'),
(374, '', 'BD000374', 'A <NAME>', 8.99, 8.54, '6055248', '9782226111333', 'vous entraîne dans de nombreux rebondissements à rythme soutenu.', NULL, 11, 2, 3, '1'),
(375, '', 'BD000375', 'DEMAIN L\'AN 3000', 13.57, 12.89, '6054332', '9782226109958', '', NULL, 11, 2, 3, '1'),
(376, '', 'BD000376', 'COFFRET RANXEROX T1 A T3', 44.97, 42.72, '9741398', '9782226116994', '', 138, 11, 2, 3, '1'),
(377, '', 'BD000377', 'UN HOMME DANS LA FOULE', 18.29, 17.6, '6014427', '9782226023018', '', NULL, 11, 2, 3, '1'),
(378, '', 'BD000378', 'GAZOLINE ET PLANETE ROUGE', 7.93, 7.53, '6051171', '9782226037251', '', NULL, 11, 2, 3, '1'),
(379, '', 'BD000379', 'LE VOYAGE DE CABOTO', 14.94, 14.19, '6051650', '9782226065650', '', NULL, 11, 2, 3, '1'),
(380, '', 'BD000380', 'ON AURA TOUT VU', 12.04, 11.44, '6054902', '9782226111067', '', NULL, 11, 2, 3, '1'),
(381, '', 'BD000381', '<NAME> <EMAIL>', 12.04, 11.44, '6062772', '9782226116437', '', NULL, 11, 2, 3, '1'),
(382, '', 'BD000382', 'CARMEN', 5.95, 5.65, '6002125', '9782226012678', '', 24, 11, 2, 3, '1'),
(383, '', 'BD000383', 'LES EXPLOITS D\'UN <NAME>', 12.04, 11.44, '6023329', '9782226053237', '', 41, 11, 2, 3, '1'),
(384, '', 'BD000384', 'LA VIE AU GRAND AIR COFFRET T1 A T3', 31.56, 29.98, '9741521', '9782226120151', '', 79, 11, 2, 3, '1'),
(385, '', 'BD000385', 'LA GRANDE ARNAQUE COFFRET 2 VOLUMES', 28.51, 27.08, '9741695', '9782226120311', '', 76, 11, 2, 3, '1'),
(386, '', 'BD000386', 'LA RESURRECTION - T1', 14.94, 14.19, '6056501', '9782226114662', '', 68, 11, 2, 3, '1'),
(387, '', 'BD000387', 'HISTOIRE D\'UN RETOUR MAKING OF BLAKE ET MORTIMER', 24.39, 23.17, '20015', '9782205042627', '', 18, 11, 13, 7, '1'),
(388, '', 'BD000388', 'L\'ART EROTIQUE D\'ALEX VARENNE', 30.49, 28.97, '6024491', '9782226055651', '', NULL, 11, 2, 3, '1'),
(389, '', 'BD000389', 'LA CORRECTION OU LA CONFUSION DES SENS', 19.82, 18.83, '6038822', '9782226092093', '', NULL, 11, 2, 3, '1'),
(390, '', 'BD000390', 'LES SALES BLAGUES DE L\'ECHO - T8', 8.99, 8.54, '6062202', '9782226114778', '', 109, 11, 2, 3, '1'),
(391, '', 'BD000391', '<NAME>LES DE MOI', 13.57, 12.89, '6062699', '9782226115157', '', NULL, 11, 2, 3, '1'),
(392, '', 'BD000392', '<NAME>', 15.09, 14.34, '5345137', '9782911684180', '', NULL, 11, 5, 3, '1'),
(393, '', 'BD000393', '<NAME>', 24.39, 23.17, '4160453', '9782908406702', '', NULL, 11, 7, 3, '1'),
(394, '', 'BD000394', 'COMPTE A REBOURS', 12.5, 11.88, '5071055', '9782747400053', 'Préparez-vous à vous éclater . Ces dix histoires du dessinateur UTATANE, particulièrement apprécié pour la clarté et la précision de son style, brisent tous les tabous et vous offrent le meilleur de l\'érotique hardcore. Pas de censure dans cette édition que l\'artiste lui-même a spécialement revue afin d\'y rétablir les passages interdits au Japon.', 31, 8, 9, 3, '1'),
(395, '', 'BD000395', 'HOT TAILS - T1', 12.5, 11.88, '5071048', '9782747400084', 'En direct de la planche à dessin de YUI, découvrez une véritable cascade de contes lubriques. Une débauche de relations illicites, de sadomasochisme, de transexualité, de domination et bien plus encore.', 62, 8, 9, 3, '1'),
(396, '', 'BD000396', 'SEX ADDICT STORY', 12.04, 12.04, '5353057', '9782914094054', '', NULL, 11, 18, 3, '1'),
(397, '', 'BD000397', '<NAME>', 10.52, 9.99, '5342019', '9782913567054', '', 137, 11, 23, 3, '1'),
(398, '', 'BD000398', '<NAME> - T1', 10.52, 9.99, '5349303', '9782940199341', 'Satire corrosive des films et séries B sur l\'invasion de la Terre par les extraterrestres. Des complots, des mystères, des hommes en noir, de nombreux clans qui s\'affrontent dans un décor burlesque d\'Amérique profonde. Le premier tome des Aventures de <NAME> place d\'ores et déjà la saga parmi les ouvrages de BD d\'humour caustique.', 35, 11, 26, 3, '1'),
(399, '', 'BD000399', 'LA DENT DE L\'ALLIGATOR - T2', 10.52, 9.99, '6055297', '9782226113733', '', 104, 11, 2, 3, '1'),
(400, '', 'BD000400', 'TERRA INCOGNITA - T1', 12.5, 11.88, '5303482', '9782845650640', '', 135, 3, 30, 3, '1'),
(401, '', 'BD000401', 'LA SIRENE DE L\'ESPACE - T3', 8.84, 8.4, '204361', '9789034410610', '', 144, 2, 4, 4, '1'),
(402, '', 'BD000402', 'DUR DUR LES FAIBLES FEMMES - T4', 8.84, 8.4, '208048', '9789034410641', '', 144, 2, 4, 4, '1'),
(403, '', 'BD000403', 'INNUAT', 15.09, 14.34, '5349360', '9782940199396', '', 65, 11, 26, 3, '1'),
(404, '', 'BD000404', 'CA ALORS - T6', 8.84, 8.4, '240805', '9789034410696', '', 144, 2, 4, 4, '1'),
(405, '', 'BD000405', 'LE GRIMOIRE MAUDIT - T3', 9.15, 8.69, '4160172', '9782908406467', '', 64, 1, 7, 3, '1'),
(406, '', 'BD000406', 'ENIGME AU CAIRE', 9.15, 8.69, '181281', '9782908406290', '', 2, 1, 7, 3, '1'),
(407, '', 'BD000407', 'CUBA 42', 9.15, 8.69, '4160214', '9782908406276', '', NULL, 1, 7, 3, '1'),
(408, '', 'BD000408', 'LE<NAME> - T1', 9.15, 8.69, '4160271', '9782908406108', '', 119, 4, 7, 3, '1'),
(409, '', 'BD000409', 'ET DIRE QUE DIEU CREA LA FEMME - T2', 9.15, 8.69, '4160289', '9782908406122', 'Grand Prix de l\' Humour Noir BD en 1991 décerné par le C.E.S.A.R', 119, 4, 7, 3, '1'),
(410, '', 'BD000410', 'BD FAIT SA CUISINE', 13.57, 12.89, '4160297', '9782908406542', '', NULL, 4, 7, 3, '1'),
(411, '', 'BD000411', '<NAME>', 9.15, 8.69, '4160263', '9782908407075', '', NULL, 4, 7, 3, '1'),
(412, '', 'BD000412', '<NAME>', 9.15, 8.69, '4160149', '9782908406337', '', 114, 2, 7, 3, '1'),
(413, '', 'BD000413', 'CROQUIS', 17.53, 16.66, '4160107', '9782908406368', 'Depuis une dizaine d\'années, SERPIERI sillonne le monde. Toujours à la recherche de moments insolites, sa curiosité l\'a guidé dans les endroits les plus secrets des villes les plus chaudes : San Diego sur le plateau d\'un film hard, Mexico dans l\'une de ces maisons de rendez-vous style années 30, Bangkok avec ses jolies Thaïlandaises aux cuissardes provocatrices, Paris dans l\'un des théatres de la rue Fontaine, Rome sur le plateau de la Nave au moment ou <NAME> le réalisait, Cheyenne à la rencontre d\'une belle Indienne aux goûts très spéciaux, etc... SERPIERI, toujours le carnet de croquis à la main, nous raconte ses pérégrinations dans une trentaine de villes et nous dévoile ces femmes dont il a gardé un souvenir impérissable.', NULL, 2, 7, 3, '1'),
(414, '', 'BD000414', 'MORBUS GRAVIS - T1', 13.57, 12.89, '4160396', '9782908406146', 'C\'est le premier tome de la série Druuna.<br>On y retrouve Druuna dans un monde rongé par un mal étrange. Elle vendra son corps pour ce sérum qui doit redonner un peu d\'humanité à son compagnon et elle découvrira une partie du mystère qui règne sur ce monde inquiétant.', 43, 2, 7, 3, '1'),
(415, '', 'BD000415', 'DRUUNA - T2', 13.57, 12.89, '4160404', '9782908406153', 'Ecoute moi attentivement, Druuna : tu dois chercher à rejoindre, au plus vite, le coeur de la cité, tu y trouveras une tour... La Tour du Pouvoir. Nous l\'appelons ainsi car nous y rassemblons à l\'intérieur, toutes les connaissances et témoignages de vérité...', 43, 2, 7, 3, '1'),
(416, '', 'BD000416', 'CREATURA - T3', 13.57, 12.89, '4160412', '9782908406009', '', 43, 2, 7, 3, '1'),
(417, '', 'BD000417', 'CARNIVORA - T4', 13.57, 12.89, '4160420', '9782908406214', 'Les références aux classiques de la science-fiction sont de plus en plus nombreux dans la série Druuna avec Alien, 2001 l\'Odyssée de l\'espace, et cette fois Blade Runner. En effet, le vaisseau arrive aux confins de l\'univers à la limite entre deux dimensions. D\'un coté le bien et de l\'autre le mal. C\'est sur cette brèche que Druuna devra faire face aux réplicants, ces êtres maléfiques qui, petit à petit prennent possession du vaisseau, sont le reflet obscur de l\'équipage du navire. Toujours aussi prenant et surprenant, SERPIERI a une imagination sans limite.', 43, 2, 7, 3, '1'),
(418, '', 'BD000418', 'MANDRAGORA - T5', 13.57, 12.89, '4160438', '9782908406320', 'L\'ordinateur CP1 réagit bizarrement, un esprit d\'énergie pure semble s\'être introduit dans sa mémoire, de plus le mal s\'est introduit dans le vaisseau. Doc et son équipe vont alors chercher un moyen d\'enrayer ce mal avant qu\'il ne se répende dans le vaisseau. Pour cela Druuna devra entrer dans l\'esprit du CP1 et retrouver le monde irréel dans lequel elle a vécu si longtemps. Sa tâche sera de découvrir la composition du sérum pour la rapporter à l\'équipe du DOC. Une suite à ne pas rater.', 43, 2, 7, 3, '1'),
(419, '', 'BD000419', 'APHRODISIA - T6', 13.57, 12.89, '4160446', '9782908406504', 'Sixième épisode de la série et Druuna rencontre son clône possédé par l\'esprit de Lewis. Dans cette histoire Druuna ne sait plus si elle est réelle ou si elle n\'est que le rêve de la vraie Druuna...', 43, 2, 7, 3, '1'),
(420, '', 'BD000420', 'OBSESSION', 24.39, 23.17, '4160065', '9782908406061', 'Obsession est certainement le plus bel album de SERPIERI dédié à Druuna. On y retrouve croquis et dessins aux crayons aquarellables...', 43, 2, 7, 3, '1'),
(421, '', 'BD000421', 'DRUUNA X - T1', 24.39, 23.17, '4160073', '9782908406306', 'Tout ce que vous avez toujours voulu savoir sur Druuna sans avoir jamais osé le demander. SERPIERI nous retrace la naissance de Druuna, cette femme sauvage au physique généreux qui va s\'imposer comme l\'héroïne de sa plus célébre série.', 44, 2, 7, 3, '1'),
(422, '', 'BD000422', 'DRUUNA X - T2', 24.39, 23.17, '4160081', '9782908406535', 'Tout ce que vous avez toujours voulu savoir sur Druuna sans avoir jamais osé le demander. SERPIERI nous retrace la naiss<NAME> Druuna, cette femme sauvage au physique généreux qui va s\'imposer comme l\'héroïne de sa plus célébre série.', 44, 2, 7, 3, '1'),
(423, '', 'BD000423', 'LES SCENARISTES', 10.98, 10.43, '4160305', '9782908406221', '', NULL, 11, 7, 3, '1'),
(424, '', 'BD000424', 'SERIES SERIALS OR NOT SERIALS', 9.15, 8.69, '181295', '9782908406313', '', NULL, 11, 7, 3, '1'),
(425, '', 'BD000425', 'LE SERMENT DU SAMOURAI - T1', 13.57, 12.89, '4160248', '9782908406030', '', 157, 1, 7, 3, '1'),
(426, '', 'BD000426', 'L\'ESCRIMEUR FOU - T2', 13.57, 12.89, '4160255', '9782908406047', '', 157, 1, 7, 3, '1'),
(427, '', 'BD000427', '<NAME>', 13.57, 12.89, '4160198', '9782908406054', '', NULL, 3, 7, 3, '1'),
(428, '', 'BD000428', 'OSIRIS', 9.15, 8.69, '181373', '9782908406115', '', 74, 1, 7, 3, '1'),
(429, '', 'BD000429', 'LES LARMES DE JUDAS - T1', 9.15, 8.69, '4160222', '9782908406177', '', 148, 1, 7, 3, '1'),
(430, '', 'BD000430', 'SIDA CONNECTION - T2', 13.57, 12.89, '4160206', '9782908406191', '', NULL, 1, 7, 3, '1'),
(431, '', 'BD000431', 'COFFRET TALES FROM THE CRYPT T5 A T8', 35.98, 34.18, '9741794', '9782226121028', '', 152, 11, 2, 3, '1'),
(432, '', 'BD000432', '<NAME>', 11.89, 11.3, '229801', '9782912425010', '', NULL, 11, 10, 3, '1'),
(433, '', 'BD000433', 'MERS - T1', 9.76, 9.27, '65536', '9782901076162', '', NULL, 4, 11, 7, '1'),
(434, '', 'BD000434', 'BOLOT OCCIDENTAL - T2', 9.76, 9.27, '65535', '9782901076155', '', NULL, 4, 11, 7, '1'),
(435, '', 'BD000435', 'DOCTEUR VENTOUSE BOBOLOGUE - INTEGRALE - T4', 14.94, 14.19, '226794', '9782901076261', '', 39, 4, 11, 7, '1'),
(436, '', 'BD000436', 'MOULE DEMOULE - T5', 9.76, 9.27, '201654', '9782901076230', '', NULL, 4, 11, 7, '1'),
(437, '', 'BD000437', 'LE DESTIN DE MONIQUE', 9.76, 9.27, '239175', '9782901076285', '', NULL, 4, 11, 7, '1'),
(438, '', 'BD000438', 'AGRIPPINE - T1', 9.76, 9.27, '46432', '9782901076124', '', 1, 4, 11, 7, '1'),
(439, '', 'BD000439', 'AGRIPPINE PREND VAPEUR - T2', 9.76, 9.27, '80955', '9782901076179', '', 1, 4, 11, 7, '1'),
(440, '', 'BD000440', 'COMBATS D\'AGRIPPINE - T3', 9.76, 9.27, '98793', '9782901076186', '', 1, 4, 11, 7, '1'),
(441, '', 'BD000441', 'AGRIPPINE ET LES INCLUS - T4', 9.76, 9.27, '189068', '9782901076209', '', 1, 4, 11, 7, '1'),
(442, '', 'BD000442', 'AGRIPPINE ET L\'ANCETRE - T5', 9.76, 9.27, '248268', '9782901076278', '', 1, 4, 11, 7, '1'),
(443, '', 'BD000443', 'LES FRUSTRES - T2', 9.76, 9.27, '38000', '9782901076032', '', 101, 4, 11, 7, '1'),
(444, '', 'BD000444', 'LES FRUSTRES - INTEGRALE', 24.39, 23.17, '202653', '9782901076247', '', 101, 4, 11, 7, '1'),
(445, '', 'BD000445', '<NAME>', 8.84, 8.4, '', '9782203001015', 'Album cartonné en français', 155, 1, 12, 10, '1'),
(446, '', 'BD000446', 'LE MANUSCRIT DE JUDAS', 8.54, 8.11, 'CF2601', '9782203356337', 'ALBUM CARTONNE', 97, 11, 12, 10, '1'),
(447, '', 'BD000447', 'LA CHANCE TOURNE', 8.54, 8.11, 'CF2606', '9782203356382', '<NAME>', 103, 11, 12, 10, '1'),
(448, '', 'BD000448', 'VOUS PRENDREZ BIEN QUELQUE CHOSE DOCTEUR', 8.54, 8.11, 'CF2607', '9782203356399', '<NAME>', 3, 11, 12, 10, '1'),
(449, '', 'BD000449', 'TINTIN AU CONGO (1931) - FAC SIMILE EN FRANCAIS - Rupture Editeur', 16.62, 15.79, 'CF0053', '9782203011120', '116 PAGES NOIR ET BLANC', 155, 1, 12, 10, '1'),
(450, '', 'BD000450', 'LE GRAND PASSAGE - T1', 12.04, 11.44, '6062657', '9782226114808', 'Coupables ou innocents bientôt viendra le jugement pour les processionnaires...', 108, 11, 2, 3, '1'),
(451, '', 'BD000451', 'TINTIN AUX PAYS DES SOVIETS (1930) - FAC SIMILE EN FRANCAIS', 16.62, 15.79, '', '9782203011014', '148 PAGES NOIR ET BLANC', 155, 1, 12, 10, '1'),
(452, '', 'BD000452', 'TINTIN AU PAYS DES SOVIETS', 8.84, 8.4, '', '9782203001008', 'Cette aventure est celle de la naissance de Tintin et elle est, rien qu\'en cela, inestimable. L\'album sort en 1930 et sera tiré à 10 000 exemplaires, preuve du succès immédiat de la série. Mais il ne sera ni réimprimé ni adapté pour la couleur comme le furent les huit autres albums parus ensuite en noir et blanc. Devenu mythique après la guerre et introuvable, il ne fut plus disponible - hors divers tirages limités aux amateurs - avant sa réédition en 1981, en version Fac Similé. Le tirage anniversaire de janvier 99, sous même présentation et prix que les 22 albums en couleurs, est destiné à rendre accessible à tous les amoureux de Tintin ce numéro zéro, dans toute son authenticité et ses hésitations de l\'époque.<br>Album couverture cartonnée. ', 155, 1, 12, 10, '1'),
(453, '', 'BD000453', 'FAMILIALE POURSUITE', 8.54, 8.11, 'CF1647', '9782203356276', '', 77, 11, 12, 10, '1'),
(454, '', 'BD000454', 'PRISE DE TETE', 8.54, 8.11, 'CF2605', '9782203356375', '', 77, 11, 12, 10, '1'),
(455, '', 'BD000455', 'TINTIN EN AMERIQUE', 8.84, 8.4, '', '9782203001022', 'Album cartonné en français', 155, 1, 12, 10, '1'),
(456, '', 'BD000456', '<NAME>', 8.54, 8.11, 'CF2602', '9782203356344', '', 33, 11, 12, 10, '1'),
(457, '', 'BD000457', 'QUELQUE PART ENTRE LES OMBRES - T1', 12.5, 11.88, '14100', '9782203049657', 'Attention chef-d\'oeuvre ! L\'histoire d\'un privé qui veut venger son ex-fiancée assassinée, rappelle celle des grands maîtres du polar le plus noir. Cette tragédie classique est transfigurée par un dessin sublime, d\'une maestria époustouflante, qui fait de ce polar l\'une des plus grandes surprises de l\'année.', 17, 10, 13, 7, '1'),
(458, '', 'BD000458', 'DINOSAURE', 7.93, 7.53, '42060', '9782908803563', 'Une famille de makis (singes lémuriens) sauve un oeuf de dinosaure sur le point d\'éclore et le prénomme Aladar. Des années plus tard, un météore s\'écrase sur terre détruisant leur île. Aladar et les siens se réfugient chez une tribu de dinosaures.', 37, 11, 13, 7, '1'),
(459, '', 'BD000459', 'LES SORCIERES', 9.91, 9.41, '4160370', '9782908406658', '', 110, 4, 7, 3, '1'),
(460, '', 'BD000460', 'LA MESSAGERE DE L\'ENFER - T2', 12.96, 12.31, '6055255', '', '', 15, 11, 2, 3, '1'),
(461, '', 'BD000461', 'LE MANUSCRIT OUBLIE - T2', 14.94, 14.19, '6063960', '9782226116277', 'Tre<NAME>, LOVECRAFT est de retour avec cette nouvelle adaptation par <NAME> des meilleurs textes de terreur du maître américain. L\'empreinte du mal étreint cet album et tous les thèmes chers à LOVECRAFT sont présents : la terreur rampante, l\'indicible peur, les grands anciens, Arkham, Nyarlathotep, le manuscrit maudit relié de peau humaine. Un album à lire la nuit, bien sûr, pour frissonner de peur et de bonheur.', 116, 11, 29, 3, '1'),
(462, '', 'BD000462', 'TINTIN EN AMERIQUE (1931)', 16.62, 15.79, '', '9782203011137', 'FAC SIMILE 128 PAGES NOIR ET BLANC', 155, 1, 12, 10, '1'),
(463, '', 'BD000463', 'LES CIGARES DU PHARAON', 8.84, 8.4, 'CF0004', '9782203001039', 'Album cartonné en français', 155, 1, 12, 10, '1'),
(464, '', 'BD000464', '<NAME>', 12.04, 11.44, '6062715', '9782226114853', '', 51, 11, 2, 3, '1'),
(465, '', 'BD000465', 'LA VERITE SUR LE DEMENAGEMENT', 8.99, 8.54, '6063937', '9782226120304', '', 59, 4, 29, 3, '1'),
(466, '', 'BD000466', 'LA VERITE SUR LE REGIME', 8.99, 8.54, '6056550', '9782226114761', '', 59, 4, 29, 3, '1'),
(467, '', 'BD000467', 'LA VERITE SUR LE PERMIS DE CONDUIRE', 8.99, 8.54, '6063655', '9782226117199', '', 59, 4, 2, 3, '1'),
(468, '', 'BD000468', 'LA VERITE SUR LE MARIAGE', 8.99, 8.54, '6054381', '9782226107415', '', 59, 4, 29, 3, '1'),
(469, '', 'BD000469', 'LES CIGARES DU PHARAON (1934) - FAC SIMILE N&B', 16.62, 15.79, '', '9782203011045', 'FAC SIMILE 132 PAGES NOIR ET BLANC', 155, 1, 12, 10, '1'),
(470, '', 'BD000470', 'LA VERITE SUR LE BEBE', 8.99, 8.54, '6054399', '9782226109422', '', 59, 4, 29, 3, '1'),
(471, '', 'BD000471', 'LE LOTUS BLEU', 8.84, 8.4, 'CF0005', '9782203001046', 'Album cartonné en français', 155, 1, 12, 10, '1'),
(472, '', 'BD000472', 'DEOGRATIAS', 12.04, 11.44, '6811533', '9782800129723', 'Dépenaillé, les yeux brûlants de fièvre, Déogratias erre dans les rues de Butare, au Rwanda. Déogratias, pauvre fou, a besoin d\'urwagwa, toujours plus d\'urwagwa, la bière de banane. Pour oublier qu\'il n\'est plus qu\'un chien terrorisé par la nuit. Pour oublier les cauchemars qui le hantent. Pour oublier que lui, le Hutu, a lâchement assassiné les femmes Tutsi qu\'il aimait. Mais peut-on effacer de son esprit et de son corps la trace poisseuse du sang et le goût salé des larmes ? En choisissant de situer son nouvel album au Rwanda, avant et juste après le génocide, <NAME> place la barre très haut : comment exprimer l\'indicible et peindre l\'inqualifiable ? Avec Déogratias, il démontre magistralement qu\'il n\'est pas seulement un raconteur d\'histoires mais aussi un rapporteur de l\'Histoire, celle qu\'on ne choisit pas mais qui s\'impose par ses drames. Plus qu\'un album émouvant, Déogratias est une oeuvre exceptionnelle empreinte d\'une profonde humanité.', 34, 11, 15, 3, '1'),
(473, '', 'BD000473', 'VIOLETTE - T2', 8.99, 8.54, '', '', '', 154, 11, 12, 10, '1'),
(474, '', 'BD000474', 'TENDRE VIOLETTE COFFRET T1 ET T2', 17.99, 17.09, '', '', '', 154, 11, 12, 10, '1'),
(475, '', 'BD000475', 'VOYAGES EN UTOPIE', 22.11, 21, 'CF2689', '', '', 95, 11, 12, 10, '1'),
(476, '', 'BD000476', 'LE PENALTY - T1', 8.54, 8.11, '', '', '', 93, 11, 12, 10, '1'),
(477, '', 'BD000477', 'C\'EST MOI LE CHEF - T2', 8.54, 8.11, '', '', '', 93, 11, 12, 10, '1'),
(478, '', 'BD000478', 'LE LOTUS BLEU (1936) - FAC SIMILE N&B', 16.62, 15.79, '', '9782203011052', 'FAC SIMILE 140 PAGES NOIR ET BLANC', 155, 1, 12, 10, '1'),
(479, '', 'BD000479', 'L\'OREILLE CASSEE', 8.84, 8.4, '', '9782203001053', 'Album cartonné en français', 155, 1, 12, 10, '1'),
(480, '', 'BD000480', 'ISTANBUL', 14.48, 13.76, 'CF2703', '', '', 25, 11, 12, 10, '1'),
(481, '', 'BD000481', 'LE VAMPIRE DES MARAIS - T1', 8.54, 8.11, '', '', '', 125, 11, 12, 10, '1'),
(482, '', 'BD000482', 'PALEUR MORTELLE - T1', 8.54, 8.11, '', '', '', 122, 11, 12, 10, '1'),
(483, '', 'BD000483', 'LES ENFANTS HIBOUX', 8.54, 8.11, '', '', '', 80, 11, 12, 10, '1'),
(484, '', 'BD000484', '<NAME>', 8.54, 8.11, '', '', '', 28, 11, 12, 10, '1'),
(485, '', 'BD000485', 'L\'OREILLE CASSEE (1937) - FAC SIMILE N&B', 16.62, 15.79, '', '9782203011069', 'FAC SIMILE 140 PAGES NOIR ET BLANC', 155, 1, 12, 10, '1'),
(486, '', 'BD000486', '<NAME>', 8.84, 8.4, 'CF0007', '9782203001060', 'Album cartonné en français', 155, 1, 12, 10, '1'),
(487, '', 'BD000487', '<NAME>', 8.23, 7.82, '', '', '', 117, 11, 12, 10, '1'),
(488, '', 'BD000488', '<NAME>', 9.91, 9.41, '4160388', '9782908406672', '', 106, 4, 7, 3, '1'),
(489, '', 'BD000489', '<NAME>', 12.04, 11.44, '6062673', '9782226114822', '', 22, 11, 2, 3, '1'),
(490, '', 'BD000490', 'REVOLUTION', 12.04, 11.44, '6062764', '9782226114907', 'Un groupe de révolutionnaires fanatiques soutient la théorie selon laquelle notre société actuelle reproduit la société française à la veille de la Révolution de 1789. La télévision a créé une caste de gens riches et célèbres qui vivent une existence à part, un nouvel Olympe où n\'a d\'importance que ce qui passe à la télé. Ces nouveaux Jacobins séquestrent et jugent publiquement les nouveaux nobles, allant jusqu\'à les condamner à mort et les guillotiner. Ces procès enflamment les masses populaires, toujours prêtes à massacrer ceux qu\'elles avaient encensés peu de temps avant. Bientôt une guillotine est installée sur chaque place, et la chasse aux VIP se déchaîne.', 141, 2, 2, 3, '1'),
(491, '', 'BD000491', 'HOTEL PARTICULIER - T1', 15.09, 14.34, '5304076', '9782845651050', '', 63, 11, 30, 3, '1'),
(492, '', 'BD000492', 'MORITURI TE SALUTANT - T1', 12.5, 11.88, '', '2845650981', 'Depuis 1000 ans, l\'Orbis, l\'Empire Romain Galactique est en paix. Soudain une terrible nouvelle éclate : les Huns ont pillé Aquincum, une planète provinciale. L\'empereur réunit aussitôt ses légions mais le destin est contre lui. Il meurt avant même le début de la guerre. L\'Orbis doit céder et accepte de livrer 12 jeunes patriciens pour qu\'ils soient sacrifiés à Kerka, la déesse du chaos adorée par les Huns.', 82, 11, 30, 3, '1'),
(493, '', 'BD000493', 'L\'ILE NOIRE (1938) - FAC SIMILE 132 PAGES N&B', 16.62, 15.79, '', '9782203011076', 'FAC SIMILE 132 PAGES NOIR ET BLANC', 155, 1, 12, 10, '1'),
(494, '', 'BD000494', 'L\'ILE NOIRE - FAC SIMILE VERSION 1943', 16.62, 15.79, '', '9782203011373', 'FAC SIMILE COULEURS 64 PAGES', 155, 1, 12, 10, '1'),
(495, '', 'BD000495', 'LE SCEPTRE D\'OTTOKAR', 8.84, 8.4, '', '9782203001077', '<NAME>', 155, 1, 12, 10, '1'),
(496, '', 'BD000496', '<NAME> - T1', 12.5, 11.88, '', '', 'Il ne faut pas ouvrir certaines portes...L\'assassin est parmi nous !', 38, 11, 30, 3, '1'),
(497, '', 'BD000497', 'LA SOLIMERE - T1', 12.5, 11.88, '', '', 'Sachez qu\'entre le venue de Fedath le méphitique et les discordes magiques des trompes de Sedanios, il y eut une ère connue des chroniqueurs Arcadiens sous le nom de guerre Decarienne. Un âge obscur et mystérieux empli d\'un souffle épique dont les instants les plus insipides paraîtraient aujourd\'hui les plus héroïques ! Un temps reculé que ne soupçonne même pas l\'alchimiste le plus fou ! Une époque où les sorcières se réfugièrent au sein des abîmes de Tyres. Sachez que leur maîtresse, Cyrka l\'usurpatrice, étendait alors son ombre maléfique sur le monde que l\'on nommait Syr\'Naé. Sachez enfin qu\'il est un roi, unique, dont les étoiles prédirent aux Vennkiz, l\'avènement. Un roi, symbole d\'unification, qui régna sur Syr\'Naé durant 800 années gadariennes. Issu de la dynastie massacrée des Bagahald, il est Aquilon ! Suivez le, si vous l\'osez, aux travers des tumultes de son épopée...', 8, 11, 30, 3, '1'),
(498, '', 'BD000498', 'LA VILLE JAUNE - T1', 12.5, 11.88, '5303599', '9782845650176', '', 149, 11, 30, 3, '1'),
(499, '', 'BD000499', 'LE VOYAGE - T1', 12.5, 11.88, '5303458', '9782845650633', '', 75, 11, 30, 3, '1'),
(500, '', 'BD000500', 'FOUILLES MORTELLES - T1', 9.45, 8.98, '5303334', '9782845650626', '', 105, 11, 30, 3, '1');
-- --------------------------------------------------------
--
-- Table structure for table `customers`
--
CREATE TABLE `customers` (
`id` int(11) NOT NULL,
`name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`phone` varchar(15) COLLATE utf8_unicode_ci NOT NULL,
`address` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created` datetime NOT NULL,
`modified` datetime NOT NULL,
`status` enum('1','0') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1' COMMENT '1=Active | 0=Inactive'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `customers`
--
INSERT INTO `customers` (`id`, `name`, `email`, `phone`, `address`, `created`, `modified`, `status`) VALUES
(1, '<NAME>', '<EMAIL>', '06554512', '67 AVENUE DU GÉNÉRAL DE GAULLE', '2020-01-21 09:21:02', '2020-01-21 09:21:02', '1'),
(2, 'g', '<EMAIL>', 'g', 'g', '2020-01-21 09:24:54', '2020-01-21 09:24:54', '1'),
(3, 'cd', '<EMAIL>', 'gg', 'ggg', '2020-01-21 09:36:02', '2020-01-21 09:36:02', '1'),
(4, 'ss', '<EMAIL>', '454545', 'dssds dsd d s ds d', '2020-01-21 09:42:15', '2020-01-21 09:42:15', '1'),
(5, '<NAME>', '<EMAIL>', 'hhhh', '67 AVENUE DU GÉNÉRAL DE GAULLE', '2020-01-21 09:44:43', '2020-01-21 09:44:43', '1'),
(6, '<NAME>', '<EMAIL>', '4545', '67 AVENUE DU GÉNÉRAL DE GAULLE', '2020-01-21 09:46:40', '2020-01-21 09:46:40', '1'),
(7, '<NAME>', '<EMAIL>', 'kkk', '67 AVENUE DU GÉNÉRAL DE GAULLE', '2020-01-21 10:13:57', '2020-01-21 10:13:57', '1'),
(8, '<NAME>', '<EMAIL>', 'ffff', '67 AVENUE DU GÉNÉRAL DE GAULLE', '2020-01-21 10:26:36', '2020-01-21 10:26:36', '1'),
(9, '<NAME>', '<EMAIL>', 'vfdvdvd', '67 AVENUE DU GÉNÉRAL DE GAULLE', '2020-01-21 10:31:04', '2020-01-21 10:31:04', '1'),
(10, '<NAME>', '<EMAIL>', 'fff', '67 AVENUE DU GÉNÉRAL DE GAULLE', '2020-01-21 10:50:35', '2020-01-21 10:50:35', '1'),
(11, '<NAME>', '<EMAIL>', 'fff', '67 AVENUE DU GÉNÉRAL DE GAULLE', '2020-01-21 10:53:14', '2020-01-21 10:53:14', '1'),
(12, 'ss', '<EMAIL>', '454545', 'dssds dsd d s ds d', '2020-01-21 10:57:24', '2020-01-21 10:57:24', '1'),
(13, 'ss', '<EMAIL>', '454545', 'dssds dsd d s ds d', '2020-01-21 10:58:00', '2020-01-21 10:58:00', '1'),
(14, '<NAME>', '<EMAIL>', 'test', '67 AVENUE DU GÉNÉRAL DE GAULLE', '2020-01-21 11:00:21', '2020-01-21 11:00:21', '1'),
(15, '<NAME>', '<EMAIL>', 'f', '67 AVENUE DU GÉNÉRAL DE GAULLE', '2020-01-21 11:13:57', '2020-01-21 11:13:57', '1');
-- --------------------------------------------------------
--
-- Table structure for table `editeur`
--
CREATE TABLE `editeur` (
`id` int(11) NOT NULL,
`nom` varchar(45) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `editeur`
--
INSERT INTO `editeur` (`id`, `nom`) VALUES
(1, '<NAME>'),
(2, '<NAME>'),
(3, '<NAME>'),
(4, 'ARBORIS'),
(5, 'AU BORD DES CONTINENTS'),
(6, 'AUTREMENT'),
(7, 'BAGHEERA'),
(8, 'BAMBOO'),
(9, 'BEDEROGENE'),
(10, '<NAME>'),
(11, 'BRETECHER'),
(12, 'CASTERMAN'),
(13, 'DARGAUD'),
(14, 'DELCOURT'),
(15, 'DUPUIS'),
(16, 'FUTUROPOLIS'),
(17, 'GALLIMARD'),
(18, 'GEISHA'),
(19, 'GLENAT'),
(20, 'HUMANOIDES ASSOCIES'),
(21, '<NAME>'),
(22, '<NAME>'),
(23, 'LECUREUX'),
(24, '<NAME>'),
(25, 'NUCLEA'),
(26, 'PAQUET'),
(27, 'PUF'),
(28, 'RIVAGES'),
(29, 'SEFAM'),
(30, 'SOLEIL PRODUCTIONS'),
(31, 'SOMOGY'),
(32, 'VENTS D\'OUEST');
-- --------------------------------------------------------
--
-- Table structure for table `fournisseur`
--
CREATE TABLE `fournisseur` (
`id` int(11) NOT NULL,
`nom` varchar(45) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `fournisseur`
--
INSERT INTO `fournisseur` (`id`, `nom`) VALUES
(1, 'C.D.I'),
(2, 'FLAMMARION'),
(3, 'HACHETTE'),
(4, 'HAVAS'),
(5, 'LA MUSARDINE'),
(6, 'LE SEUIL'),
(7, 'MDS'),
(8, 'MUSARDINE'),
(9, 'SODIS'),
(10, 'UNION DISTRIBUTION');
-- --------------------------------------------------------
--
-- Table structure for table `genre`
--
CREATE TABLE `genre` (
`id` int(11) NOT NULL,
`nom` varchar(45) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `genre`
--
INSERT INTO `genre` (`id`, `nom`) VALUES
(1, 'AVENTURE'),
(2, 'EROTIQUE'),
(3, 'FANTASTIQUE'),
(4, 'HUMOUR'),
(5, 'JEUNESSE'),
(6, 'MANGA'),
(7, 'MANGA EROTIQUE'),
(8, 'MANGA X'),
(9, 'SCIENCE FICTION'),
(10, 'THRILLER'),
(11, 'NON DEFINI');
-- --------------------------------------------------------
--
-- Table structure for table `hero`
--
CREATE TABLE `hero` (
`id` int(11) NOT NULL,
`nom` varchar(45) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `hero`
--
INSERT INTO `hero` (`id`, `nom`) VALUES
(1, 'AGRIPPINE'),
(2, '<NAME>'),
(3, '<NAME>'),
(4, 'ALICE'),
(5, 'AMNESTY INTERNATIONAL'),
(6, '<NAME>'),
(7, 'ANITA'),
(8, 'AQUILON'),
(9, 'ARDEUR'),
(10, 'ARTHUR'),
(11, 'ASTERIX'),
(12, 'BANG BANG'),
(13, 'BASTARD'),
(14, 'BATMAN'),
(15, 'BELZAREK'),
(16, '<NAME>'),
(17, 'BLACKSAD'),
(18, '<NAME>'),
(19, 'BLITZ'),
(20, '<NAME>'),
(21, 'BRUNE'),
(22, '<NAME>'),
(23, '<NAME>'),
(24, 'CARMEN'),
(25, '<NAME>'),
(26, '<NAME>'),
(27, '<NAME>'),
(28, 'CHOCO'),
(29, '<NAME>'),
(30, '<NAME>'),
(31, '<NAME>'),
(32, '<NAME> <NAME>'),
(33, '<NAME> GOLOGAN'),
(34, 'DEOGRATIAS'),
(35, '<NAME>'),
(36, 'DILBERT'),
(37, 'DINOSAURE'),
(38, '<NAME>'),
(39, '<NAME>'),
(40, 'DODO'),
(41, '<NAME>'),
(42, '<NAME>'),
(43, 'DRUUNA'),
(44, '<NAME>'),
(45, 'DURANGO'),
(46, '<NAME>'),
(47, '<NAME>'),
(48, '<NAME>'),
(49, '<NAME>'),
(50, 'EXIT'),
(51, '<NAME>'),
(52, '<NAME>'),
(53, 'GAZOLINE'),
(54, 'GOMINA'),
(55, 'GORD'),
(56, 'GRAINES DE PARADIS'),
(57, '<NAME>'),
(58, 'GROENSTEEN'),
(59, '<NAME>'),
(60, '<NAME>'),
(61, 'HELVETIKA'),
(62, '<NAME>'),
(63, 'HOT<NAME>'),
(64, '<NAME>'),
(65, 'INNUAT'),
(66, '<NAME>'),
(67, 'JANICE'),
(68, '<NAME>'),
(69, '<NAME>'),
(70, 'JEHANNE'),
(71, 'KALEUNT'),
(72, 'KEBRA'),
(73, 'KEMI'),
(74, 'KEOS'),
(75, 'KHATEDRA'),
(76, '<NAME>'),
(77, '<NAME>'),
(78, '<NAME>'),
(79, 'LA VIE AU <NAME>'),
(80, '<NAME>'),
(81, '<NAME>'),
(82, '<NAME>'),
(83, '<NAME>'),
(84, '<NAME>'),
(85, '<NAME>'),
(86, 'LE <NAME>'),
(87, '<NAME>'),
(88, '<NAME>'),
(89, 'LEONARD'),
(90, '<NAME>'),
(91, 'LES 110 PILULES'),
(92, '<NAME>'),
(93, '<NAME>'),
(94, '<NAME>'),
(95, '<NAME>'),
(96, '<NAME>'),
(97, 'LES ENQUETES SCAPOLA'),
(98, '<NAME>'),
(99, '<NAME>'),
(100, '<NAME>'),
(101, '<NAME>'),
(102, '<NAME>'),
(103, '<NAME>'),
(104, '<NAME>'),
(105, '<NAME>'),
(106, '<NAME>'),
(107, '<NAME>'),
(108, '<NAME>'),
(109, 'LES SAL<NAME>'),
(110, '<NAME>'),
(111, '<NAME>'),
(112, '<NAME>'),
(113, '<NAME>'),
(114, '<NAME>'),
(115, 'LOLA'),
(116, 'LOVECRAFT'),
(117, '<NAME>'),
(118, '<NAME>'),
(119, '<NAME>'),
(120, '<NAME>'),
(121, '<NAME>'),
(122, '<NAME>'),
(123, '<NAME>'),
(124, '<NAME>'),
(125, '<NAME>'),
(126, 'NICOTINE'),
(127, '<NAME>'),
(128, '<NAME>'),
(129, '<NAME>'),
(130, '<NAME>'),
(131, 'PAULETTE'),
(132, 'PETASSINE'),
(133, 'PHILIBERT'),
(134, 'PINOCCHIA'),
(135, 'PLANETARY'),
(136, 'PYTHAGORE'),
(137, 'RAHAN'),
(138, 'RANXEROX'),
(139, '<NAME>'),
(140, 'RASPOUTITSA'),
(141, 'REVOLUTION'),
(142, '<NAME>'),
(143, 'SALAMMBO'),
(144, '<NAME>'),
(145, '<NAME>'),
(146, 'SCOOPETTE'),
(147, 'SELEN'),
(148, '<NAME>'),
(149, '<NAME>'),
(150, 'SNAKE'),
(151, '<NAME>'),
(152, '<NAME>'),
(153, '<NAME>'),
(154, '<NAME>'),
(155, 'TINTIN'),
(156, '<NAME>'),
(157, 'UGAKI'),
(158, 'VENUS'),
(159, '<NAME>'),
(160, '<NAME>'),
(161, '<NAME>'),
(162, 'YRAGAEL'),
(163, 'ZELIE'),
(164, 'ZOMBIES');
-- --------------------------------------------------------
--
-- Table structure for table `orders`
--
CREATE TABLE `orders` (
`id` int(11) NOT NULL,
`customer_id` int(11) NOT NULL,
`grand_total` float(10,2) NOT NULL,
`created` datetime NOT NULL,
`modified` datetime NOT NULL,
`status` enum('1','0') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1' COMMENT '1=Active | 0=Inactive'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `orders`
--
INSERT INTO `orders` (`id`, `customer_id`, `grand_total`, `created`, `modified`, `status`) VALUES
(1, 1, 163.25, '2020-01-21 09:21:02', '2020-01-21 09:21:02', '1'),
(2, 2, 8.69, '2020-01-21 09:24:54', '2020-01-21 09:24:54', '1'),
(3, 3, 8.69, '2020-01-21 09:36:02', '2020-01-21 09:36:02', '1'),
(4, 4, 8.69, '2020-01-21 09:42:15', '2020-01-21 09:42:15', '1'),
(5, 5, 31.25, '2020-01-21 09:44:43', '2020-01-21 09:44:43', '1'),
(6, 6, 8.69, '2020-01-21 09:46:40', '2020-01-21 09:46:40', '1'),
(7, 7, 8.69, '2020-01-21 10:13:57', '2020-01-21 10:13:57', '1'),
(8, 8, 8.69, '2020-01-21 10:26:36', '2020-01-21 10:26:36', '1'),
(9, 9, 8.69, '2020-01-21 10:31:04', '2020-01-21 10:31:04', '1'),
(10, 10, 8.69, '2020-01-21 10:50:35', '2020-01-21 10:50:35', '1'),
(11, 11, 8.69, '2020-01-21 10:53:14', '2020-01-21 10:53:14', '1'),
(12, 12, 8.69, '2020-01-21 10:57:24', '2020-01-21 10:57:24', '1'),
(13, 13, 8.69, '2020-01-21 10:58:00', '2020-01-21 10:58:00', '1'),
(14, 14, 8.69, '2020-01-21 11:00:21', '2020-01-21 11:00:21', '1'),
(15, 15, 8.69, '2020-01-21 11:13:58', '2020-01-21 11:13:58', '1');
-- --------------------------------------------------------
--
-- Table structure for table `order_items`
--
CREATE TABLE `order_items` (
`id` int(11) NOT NULL,
`order_id` int(11) NOT NULL,
`bd_id` int(11) NOT NULL,
`quantity` int(5) NOT NULL,
`sub_total` float(10,2) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `order_items`
--
INSERT INTO `order_items` (`id`, `order_id`, `bd_id`, `quantity`, `sub_total`) VALUES
(1, 1, 69, 6, 52.14),
(2, 1, 374, 6, 53.94),
(3, 1, 88, 1, 14.48),
(4, 1, 131, 1, 9.91),
(5, 1, 337, 1, 9.45),
(6, 1, 85, 1, 13.57),
(7, 1, 434, 1, 9.76),
(8, 2, 69, 1, 8.69),
(9, 3, 69, 1, 8.69),
(10, 4, 69, 1, 8.69),
(11, 5, 69, 1, 8.69),
(12, 5, 244, 1, 10.52),
(13, 5, 236, 1, 12.04),
(14, 6, 69, 1, 8.69),
(15, 7, 69, 1, 8.69),
(16, 8, 69, 1, 8.69),
(17, 9, 69, 1, 8.69),
(18, 10, 69, 1, 8.69),
(19, 11, 69, 1, 8.69),
(20, 12, 69, 1, 8.69),
(21, 13, 69, 1, 8.69),
(22, 14, 69, 1, 8.69),
(23, 15, 69, 1, 8.69);
-- --------------------------------------------------------
--
-- Table structure for table `products`
--
CREATE TABLE `products` (
`id` int(11) NOT NULL,
`image` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` text COLLATE utf8_unicode_ci NOT NULL,
`price` float(10,2) NOT NULL,
`created` datetime NOT NULL,
`modified` datetime NOT NULL,
`status` enum('1','0') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1' COMMENT '1=Active | 0=Inactive'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `products`
--
INSERT INTO `products` (`id`, `image`, `name`, `description`, `price`, `created`, `modified`, `status`) VALUES
(1, 'BD000001.jpg', 'LE GRAND FOSSE', 'description BD', 8.54, '2020-01-01 00:00:00', '2020-01-30 00:00:00', '1'),
(2, 'BD000003.jpg', 'GRAINES DE PARADIS', 'BD000003*MAKYO*GRAINES DE PARADIS*LISE A SOUVENT PEUR ', 55.00, '2020-01-01 00:00:00', '2020-01-30 00:00:00', '1'),
(3, 'BD000010.jpg', 'LES PHOSFEES', 'LES PHOSFEES descriptions', 41.00, '2020-01-01 00:00:00', '2020-01-30 00:00:00', '1'),
(4, 'BD000021.jpg', 'Asterix', 'Asterix description lorem ipsum nanani', 12.20, '2020-01-01 00:00:00', '2020-01-23 00:00:00', '1'),
(5, 'BD000011.jpg', 'ZELIE L\'APPRENTIE SORCIERE', 'description ZELIE L\'APPRENTIE SORCIERE', 12.00, '2020-01-09 00:00:00', '2020-01-23 00:00:00', '1');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `auteur`
--
ALTER TABLE `auteur`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `auteur_bd`
--
ALTER TABLE `auteur_bd`
ADD PRIMARY KEY (`id`),
ADD KEY `auteur_bd_fk_idx` (`auteur_id`),
ADD KEY `auteur_bd_bd_fk_idx` (`bd_id`);
--
-- Indexes for table `bd`
--
ALTER TABLE `bd`
ADD PRIMARY KEY (`id`),
ADD KEY `editeur_fk_idx` (`editeur_id`),
ADD KEY `fournisseur_fk_idx` (`fournisseur_id`),
ADD KEY `genre_fk_idx` (`genre_id`),
ADD KEY `hero_idx` (`hero_id`);
--
-- Indexes for table `customers`
--
ALTER TABLE `customers`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `editeur`
--
ALTER TABLE `editeur`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `fournisseur`
--
ALTER TABLE `fournisseur`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `genre`
--
ALTER TABLE `genre`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `hero`
--
ALTER TABLE `hero`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `orders`
--
ALTER TABLE `orders`
ADD PRIMARY KEY (`id`),
ADD KEY `customer_id` (`customer_id`);
--
-- Indexes for table `order_items`
--
ALTER TABLE `order_items`
ADD PRIMARY KEY (`id`),
ADD KEY `order_id` (`order_id`);
--
-- Indexes for table `products`
--
ALTER TABLE `products`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `auteur`
--
ALTER TABLE `auteur`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=241;
--
-- AUTO_INCREMENT for table `auteur_bd`
--
ALTER TABLE `auteur_bd`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=683;
--
-- AUTO_INCREMENT for table `bd`
--
ALTER TABLE `bd`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=501;
--
-- AUTO_INCREMENT for table `customers`
--
ALTER TABLE `customers`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;
--
-- AUTO_INCREMENT for table `editeur`
--
ALTER TABLE `editeur`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=33;
--
-- AUTO_INCREMENT for table `fournisseur`
--
ALTER TABLE `fournisseur`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT for table `genre`
--
ALTER TABLE `genre`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
--
-- AUTO_INCREMENT for table `hero`
--
ALTER TABLE `hero`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=165;
--
-- AUTO_INCREMENT for table `orders`
--
ALTER TABLE `orders`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;
--
-- AUTO_INCREMENT for table `order_items`
--
ALTER TABLE `order_items`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24;
--
-- AUTO_INCREMENT for table `products`
--
ALTER TABLE `products`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `auteur_bd`
--
ALTER TABLE `auteur_bd`
ADD CONSTRAINT `auteur_bd_auteur_fk` FOREIGN KEY (`auteur_id`) REFERENCES `auteur` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT `auteur_bd_bd_fk` FOREIGN KEY (`bd_id`) REFERENCES `bd` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION;
--
-- Constraints for table `bd`
--
ALTER TABLE `bd`
ADD CONSTRAINT `editeur_fk` FOREIGN KEY (`editeur_id`) REFERENCES `editeur` (`id`) ON DELETE SET NULL ON UPDATE NO ACTION,
ADD CONSTRAINT `fournisseur_fk` FOREIGN KEY (`fournisseur_id`) REFERENCES `fournisseur` (`id`) ON DELETE SET NULL ON UPDATE NO ACTION,
ADD CONSTRAINT `genre_fk` FOREIGN KEY (`genre_id`) REFERENCES `genre` (`id`) ON DELETE SET NULL ON UPDATE NO ACTION,
ADD CONSTRAINT `hero_fk` FOREIGN KEY (`hero_id`) REFERENCES `hero` (`id`) ON DELETE SET NULL ON UPDATE NO ACTION;
--
-- Constraints for table `orders`
--
ALTER TABLE `orders`
ADD CONSTRAINT `orders_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `order_items`
--
ALTER TABLE `order_items`
ADD CONSTRAINT `order_items_ibfk_1` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE;
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 */;
|
<br />
<b>Warning</b>: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in <b>C:\xampp\htdocs\adminer\index.php</b> on line <b>1176</b><br />
-- Adminer 4.6.2 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 `larastaff` /*!40100 DEFAULT CHARACTER SET utf8mb4 */;
USE `larastaff`;
DROP TABLE IF EXISTS `categories`;
CREATE TABLE `categories` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
INSERT INTO `categories` (`id`, `name`, `description`, `created_at`, `updated_at`) VALUES
(1, 'Technology', 'In charge of all company softwares', '2020-06-28 15:48:03', '2020-06-28 15:48:03'),
(2, 'Accounting', 'In charge of all monetary', '2020-06-28 15:48:21', '2020-06-28 15:48:21'),
(3, 'Education', 'In charge of all academics', '2020-06-28 15:48:48', '2020-06-28 15:48:48'),
(4, 'Human Resource', 'In charge of all human resource activity', '2020-06-28 21:33:52', '2020-06-28 21:33:52');
DROP TABLE IF EXISTS `failed_jobs`;
CREATE TABLE `failed_jobs` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`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(),
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
DROP TABLE IF EXISTS `migrations`;
CREATE TABLE `migrations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
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, '2016_06_01_000001_create_oauth_auth_codes_table', 1),
(4, '2016_06_01_000002_create_oauth_access_tokens_table', 1),
(5, '2016_06_01_000003_create_oauth_refresh_tokens_table', 1),
(6, '2016_06_01_000004_create_oauth_clients_table', 1),
(7, '2016_06_01_000005_create_oauth_personal_access_clients_table', 1),
(8, '2019_08_19_000000_create_failed_jobs_table', 1),
(9, '2019_12_09_044534_create_roles_table', 1),
(10, '2019_12_09_082630_create_role_user_table', 1),
(11, '2019_12_09_094511_create_social_accounts_table', 1),
(12, '2019_12_27_065818_create_products_table', 1),
(13, '2019_12_27_070549_create_categories_table', 1),
(14, '2019_12_27_070603_create_tags_table', 1),
(15, '2020_01_08_113508_create_product_tag_pivot_table', 1);
DROP TABLE IF EXISTS `oauth_access_tokens`;
CREATE TABLE `oauth_access_tokens` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) unsigned DEFAULT NULL,
`client_id` bigint(20) unsigned NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`scopes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`revoked` tinyint(1) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`expires_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `oauth_access_tokens_user_id_index` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
DROP TABLE IF EXISTS `oauth_auth_codes`;
CREATE TABLE `oauth_auth_codes` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) unsigned NOT NULL,
`client_id` bigint(20) unsigned NOT NULL,
`scopes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`revoked` tinyint(1) NOT NULL,
`expires_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `oauth_auth_codes_user_id_index` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
DROP TABLE IF EXISTS `oauth_clients`;
CREATE TABLE `oauth_clients` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned DEFAULT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`secret` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`redirect` text COLLATE utf8mb4_unicode_ci NOT NULL,
`personal_access_client` tinyint(1) NOT NULL,
`password_client` tinyint(1) NOT NULL,
`revoked` tinyint(1) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `oauth_clients_user_id_index` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
DROP TABLE IF EXISTS `oauth_personal_access_clients`;
CREATE TABLE `oauth_personal_access_clients` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`client_id` bigint(20) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
DROP TABLE IF EXISTS `oauth_refresh_tokens`;
CREATE TABLE `oauth_refresh_tokens` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`revoked` tinyint(1) NOT NULL,
`expires_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
DROP TABLE IF EXISTS `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,
KEY `password_resets_email_index` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
DROP TABLE IF EXISTS `roles`;
CREATE TABLE `roles` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
DROP TABLE IF EXISTS `role_user`;
CREATE TABLE `role_user` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`role_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`category_id` int(11) 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,
PRIMARY KEY (`id`),
UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
INSERT INTO `users` (`id`, `name`, `type`, `email`, `category_id`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'admin', 'admin', '<EMAIL>', 0, NULL, '$2y$10$mon1wbSRMrFH8NxwlTvjNOJDSTBnViJlXmzDfS..7P0nWVYUtTBs2', NULL, '2020-06-28 15:25:17', '2020-06-28 15:25:17'),
(2, 'bosco', 'user', '<EMAIL>', 0, NULL, '$2y$10$6bFz6.M7LeKtDrOj5RPjPu/OTzKvxJN9nazv1PiJSurbyIrQ2q/7C', NULL, '2020-06-28 15:26:36', '2020-06-28 15:26:36');
-- 2020-06-28 23:18:31
|
<filename>anastasia.sql
-- phpMyAdmin SQL Dump
-- version 4.8.5
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: May 29, 2019 at 04:20 PM
-- Server version: 10.1.38-MariaDB
-- PHP Version: 7.3.4
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: `anastasia`
--
-- --------------------------------------------------------
--
-- Table structure for table `categories`
--
CREATE TABLE `categories` (
`id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `categories`
--
INSERT INTO `categories` (`id`, `created_at`, `updated_at`, `name`) VALUES
(1, '2019-05-24 17:33:56', '2019-05-24 17:33:56', 'Evening Gown'),
(2, '2019-05-24 17:33:56', '2019-05-24 17:33:56', 'Wedding Gown'),
(3, '2019-05-24 17:33:56', '2019-05-24 17:33:56', 'Tuxedo'),
(4, '2019-05-24 17:33:57', '2019-05-24 17:33:57', 'Barong');
-- --------------------------------------------------------
--
-- Table structure for table `favorites`
--
CREATE TABLE `favorites` (
`id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`user_id` bigint(20) UNSIGNED DEFAULT NULL,
`product_id` bigint(20) UNSIGNED DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `item_orders`
--
CREATE TABLE `item_orders` (
`id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`price` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`size` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`days_rented` bigint(20) NOT NULL,
`quantity` bigint(20) NOT NULL,
`order_id` bigint(20) UNSIGNED DEFAULT NULL,
`product_id` bigint(20) UNSIGNED DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `item_orders`
--
INSERT INTO `item_orders` (`id`, `created_at`, `updated_at`, `price`, `size`, `days_rented`, `quantity`, `order_id`, `product_id`) VALUES
(1, '2019-05-28 20:15:52', '2019-05-28 20:15:52', '200', 'small', 1, 1, 21, 10),
(2, '2019-05-28 20:15:52', '2019-05-28 20:15:52', '650', 'small', 1, 1, 21, 1),
(3, '2019-05-28 20:17:28', '2019-05-28 20:17:28', '200', 'small', 1, 1, 22, 10),
(4, '2019-05-28 23:08:41', '2019-05-28 23:08:41', '200', 'medium', 1, 3, 23, 10),
(5, '2019-05-28 23:08:41', '2019-05-28 23:08:41', '300', 'medium', 2, 3, 23, 7),
(6, '2019-05-29 05:25:00', '2019-05-29 05:25:00', '450', 'small', 3, 2, 25, 7),
(10, '2019-05-29 05:49:14', '2019-05-29 05:49:14', '7,150', 'medium', 11, 1, 47, 1),
(11, '2019-05-29 05:50:22', '2019-05-29 05:50:22', '4,550', 'medium', 7, 1, 48, 1);
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2014_10_12_100000_create_password_resets_table', 1),
(3, '2019_05_24_043332_create_categories_table', 1),
(4, '2019_05_24_043349_create_products_table', 1),
(5, '2019_05_24_043645_create_orders_table', 1),
(6, '2019_05_24_043658_create_statuses_table', 1),
(7, '2019_05_24_043714_create_roles_table', 1),
(8, '2019_05_24_043738_create_sizes_table', 1),
(9, '2019_05_24_053036_update_products_table', 1),
(10, '2019_05_24_053422_update_orders_table', 1),
(11, '2019_05_24_053747_create_product_size_table', 1),
(12, '2019_05_25_110035_add_softdeletes_product_tables', 2),
(13, '2019_05_27_083916_update_orders_table', 3),
(14, '2019_05_28_001728_change_pivot_table_name', 4),
(15, '2019_05_28_071026_create_favorites_table', 5),
(16, '2019_05_29_040627_create_item_orders_table', 5),
(17, '2019_05_29_041119_update_item_orders_table', 5);
-- --------------------------------------------------------
--
-- Table structure for table `orders`
--
CREATE TABLE `orders` (
`id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`total` decimal(10,2) NOT NULL,
`user_id` bigint(20) UNSIGNED DEFAULT NULL,
`status_id` bigint(20) UNSIGNED DEFAULT NULL,
`transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `orders`
--
INSERT INTO `orders` (`id`, `created_at`, `updated_at`, `total`, `user_id`, `status_id`, `transaction_id`) VALUES
(21, '2019-05-28 20:15:51', '2019-05-28 23:03:16', '850.00', 1, 3, 'AD593E-1559103351'),
(22, '2019-05-28 20:17:28', '2019-05-28 23:08:04', '200.00', 1, 3, '8DCE94-1559103448'),
(23, '2019-05-28 23:08:41', '2019-05-29 05:16:45', '1500.00', 1, 3, '44D06A-1559113721'),
(25, '2019-05-29 05:25:00', '2019-05-29 05:25:00', '900.00', 1, 1, '8442BA-1559136300'),
(47, '2019-05-29 05:49:14', '2019-05-29 05:51:25', '7150.00', 1, 3, 'D57881-1559137754'),
(48, '2019-05-29 05:50:22', '2019-05-29 05:51:20', '4550.00', 1, 2, 'AA370D-1559137822');
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `products`
--
CREATE TABLE `products` (
`id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`price` decimal(10,2) NOT NULL,
`img_path` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'https://zenit.org/wp-content/uploads/2018/05/no-image-icon.png',
`category_id` bigint(20) UNSIGNED DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `products`
--
INSERT INTO `products` (`id`, `created_at`, `updated_at`, `name`, `description`, `price`, `img_path`, `category_id`, `deleted_at`) VALUES
(1, '2019-05-24 17:34:46', '2019-05-24 17:34:46', 'Jasmine', 'Beautiful French chantilly lace gown with a sweetheart neckline, draped bodice, and full A-line skirt.', '650.00', 'images/jasmine-1.jpeg', 1, NULL),
(2, '2019-05-24 17:34:46', '2019-05-24 17:34:46', 'Cinderella', 'Delicate, lace-printed, tulle ball gown with embroidered lace hem and draped bodice that cinches at the waist.', '700.00', 'images/cinderella-1.jpg', 1, NULL),
(3, '2019-05-24 17:34:46', '2019-05-24 17:34:46', 'Rapunzel', '50’s inspired tulle gown with French lace bodice and flower sash.', '1000.00', 'images/rapunzel-1.jpg', 2, NULL),
(4, '2019-05-24 22:51:37', '2019-05-24 22:51:37', 'Belle', ' Sexy draped bodice with sweetheart neckline and tiered trumpet skirt.', '1300.00', 'images/belle-1.jpg', 2, NULL),
(5, '2019-05-24 22:52:42', '2019-05-24 22:52:42', 'Phillip', 'A 2 button front, self notch lapels with satin trim, satin besom pockets and side vents.', '150.00', 'images/phillip.jpg', 3, NULL),
(6, '2019-05-24 23:25:28', '2019-05-25 03:28:25', 'Hercules', 'A slim-fit tuxedo is which well suited for those who are looking to stand out from the crowd.', '300.00', 'images/hercules.jpg', 3, NULL),
(7, '2019-05-25 01:41:46', '2019-05-29 05:57:59', 'Eric', 'Ideal for those who don’t want to spend a lot of money on a barong but still want a more refined and classic look.', '160.00', 'images/eric.jpg', 4, NULL),
(10, '2019-05-25 04:50:12', '2019-05-25 04:50:12', 'Aladdin', 'Originally-made in the Philippines, the Pina fabric is meticulously woven by local artisans who have combined age-old Filipino weaving techniques.', '200.00', 'images/aladdin.png', 4, NULL),
(11, '2019-05-25 15:28:30', '2019-05-29 05:58:06', 'Lara Croft', '123', '232.00', 'https://zenit.org/wp-content/uploads/2018/05/no-image-icon.png', 1, '2019-05-29 05:58:06');
-- --------------------------------------------------------
--
-- Table structure for table `product_sizes`
--
CREATE TABLE `product_sizes` (
`id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`quantity` bigint(20) NOT NULL,
`size_id` bigint(20) UNSIGNED DEFAULT NULL,
`product_id` bigint(20) UNSIGNED DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `product_sizes`
--
INSERT INTO `product_sizes` (`id`, `created_at`, `updated_at`, `quantity`, `size_id`, `product_id`) VALUES
(1, '2019-05-24 23:25:28', '2019-05-29 05:45:52', 26, 1, 6),
(3, '2019-05-25 01:41:46', '2019-05-28 23:08:41', 50, 2, 7),
(9, '2019-05-25 15:28:30', '2019-05-25 15:28:30', 30, 3, 11),
(10, '2019-05-25 16:26:59', '2019-05-29 05:57:10', 50, 1, 7),
(14, '2019-05-26 21:34:52', '2019-05-28 20:17:28', 19, 1, 10),
(15, '2019-05-27 02:51:52', '2019-05-29 05:24:16', 15, 2, 10),
(16, '2019-05-27 02:52:07', '2019-05-27 02:52:07', 37, 3, 10),
(17, '2019-05-28 03:02:09', '2019-05-29 05:50:22', 27, 2, 1),
(20, '2019-05-28 03:49:02', '2019-05-28 03:49:02', 10, 1, 2),
(21, '2019-05-29 05:53:26', '2019-05-29 05:53:26', 20, 2, 11),
(22, '2019-05-29 05:56:43', '2019-05-29 05:56:43', 50, 1, 11),
(23, '2019-05-29 05:57:01', '2019-05-29 05:57:01', 30, 3, 7);
-- --------------------------------------------------------
--
-- Table structure for table `sizes`
--
CREATE TABLE `sizes` (
`id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `sizes`
--
INSERT INTO `sizes` (`id`, `created_at`, `updated_at`, `name`) VALUES
(1, '2019-05-24 17:34:16', '2019-05-24 17:34:16', 'small'),
(2, '2019-05-24 17:34:16', '2019-05-24 17:34:16', 'medium'),
(3, '2019-05-24 17:34:16', '2019-05-24 17:34:16', 'large');
-- --------------------------------------------------------
--
-- Table structure for table `statuses`
--
CREATE TABLE `statuses` (
`id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `statuses`
--
INSERT INTO `statuses` (`id`, `created_at`, `updated_at`, `name`) VALUES
(1, '2019-05-24 17:34:04', '2019-05-24 17:34:04', 'pending'),
(2, '2019-05-24 17:34:04', '2019-05-24 17:34:04', 'completed'),
(3, '2019-05-24 17:34:05', '2019-05-24 17:34:05', 'cancelled');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`role` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'user',
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `role`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'Lara Croft', '<EMAIL>', NULL, '$2y$10$mayZbyqGRW4y7FRs5B0aF.YaGzrxKG5LhRF2ceuZ5tXRuftVV25AS', 'user', NULL, '2019-05-24 16:18:24', '2019-05-24 16:18:24'),
(2, 'Admin', '<EMAIL>', NULL, '$2y$10$8gfpHYthKslMy8mliZZrX.A3eT0rZ6O5z9p/Ilz3u/2QJJ5Fynd0C', 'admin', NULL, '2019-05-24 16:29:24', '2019-05-24 16:29:24'),
(3, '<NAME>', '<EMAIL>', NULL, '$2y$10$ny0hWLGBr9pWKqVbCfGEoefghkehc84zEjWwZuBkwxaqznLWc1ySi', 'user', NULL, '2019-05-28 15:19:49', '2019-05-28 15:19:49'),
(5, '<NAME>', '<EMAIL>', NULL, '$2y$10$lvRM/d0OeRScPaReBStbEOZSsZvoMp5ZtNZ.xOY67ksuKjd3E7yuS', 'user', NULL, '2019-05-28 15:25:24', '2019-05-28 15:25:24');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `categories`
--
ALTER TABLE `categories`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `favorites`
--
ALTER TABLE `favorites`
ADD PRIMARY KEY (`id`),
ADD KEY `favorites_user_id_foreign` (`user_id`),
ADD KEY `favorites_product_id_foreign` (`product_id`);
--
-- Indexes for table `item_orders`
--
ALTER TABLE `item_orders`
ADD PRIMARY KEY (`id`),
ADD KEY `item_orders_order_id_foreign` (`order_id`),
ADD KEY `item_orders_product_id_foreign` (`product_id`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `orders`
--
ALTER TABLE `orders`
ADD PRIMARY KEY (`id`),
ADD KEY `orders_user_id_foreign` (`user_id`),
ADD KEY `orders_status_id_foreign` (`status_id`);
--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indexes for table `products`
--
ALTER TABLE `products`
ADD PRIMARY KEY (`id`),
ADD KEY `products_category_id_foreign` (`category_id`);
--
-- Indexes for table `product_sizes`
--
ALTER TABLE `product_sizes`
ADD PRIMARY KEY (`id`),
ADD KEY `product_size_size_id_foreign` (`size_id`),
ADD KEY `product_size_product_id_foreign` (`product_id`);
--
-- Indexes for table `sizes`
--
ALTER TABLE `sizes`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `statuses`
--
ALTER TABLE `statuses`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `categories`
--
ALTER TABLE `categories`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `favorites`
--
ALTER TABLE `favorites`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `item_orders`
--
ALTER TABLE `item_orders`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
--
-- AUTO_INCREMENT for table `orders`
--
ALTER TABLE `orders`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=49;
--
-- AUTO_INCREMENT for table `products`
--
ALTER TABLE `products`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;
--
-- AUTO_INCREMENT for table `product_sizes`
--
ALTER TABLE `product_sizes`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24;
--
-- AUTO_INCREMENT for table `sizes`
--
ALTER TABLE `sizes`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `statuses`
--
ALTER TABLE `statuses`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `favorites`
--
ALTER TABLE `favorites`
ADD CONSTRAINT `favorites_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
ADD CONSTRAINT `favorites_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE;
--
-- Constraints for table `item_orders`
--
ALTER TABLE `item_orders`
ADD CONSTRAINT `item_orders_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
ADD CONSTRAINT `item_orders_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL ON UPDATE CASCADE;
--
-- Constraints for table `orders`
--
ALTER TABLE `orders`
ADD CONSTRAINT `orders_status_id_foreign` FOREIGN KEY (`status_id`) REFERENCES `statuses` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
ADD CONSTRAINT `orders_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE;
--
-- Constraints for table `products`
--
ALTER TABLE `products`
ADD CONSTRAINT `products_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL ON UPDATE CASCADE;
--
-- Constraints for table `product_sizes`
--
ALTER TABLE `product_sizes`
ADD CONSTRAINT `product_sizes_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
ADD CONSTRAINT `product_sizes_size_id_foreign` FOREIGN KEY (`size_id`) REFERENCES `sizes` (`id`) ON DELETE SET NULL ON UPDATE CASCADE;
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 */;
|
-- start query --
SELECT modelrun_id, total_demand, total_supply, total_supply/total_demand as percentage_of_supply
FROM (
SELECT modelrun_id, sum(demand_value) as total_demand, sum(supply) as total_supply
FROM "ISL_IO_FinalFlows_DemandFulfillments"
WHERE modelrun_id IN modelrun_ids_val and simulation_year = year_val and current_forecast = 'current' and keyservice = keyservice_val
GROUP BY modelrun_id) AS alias
ORDER BY modelrun_id
SELECT modelrun_id |
<reponame>yogeshyadav108098/contacts-book
CREATE TABLE contacts(
id int(12) unsigned NOT NULL AUTO_INCREMENT,
name varchar(255) NOT NULL,
email varchar(255),
gender ENUM('MALE', 'FEMALE') NOT NULL DEFAULT 'MALE',
status tinyint(3) NOT NULL DEFAULT 1,
createdAt timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
updatedAt timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (id),
UNIQUE KEY idxEmail (email),
KEY idxName (name),
KEY idxStatus (status)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Contacts info';
|
/****** Object: User Defined Function dbo.Scouter Script Date: 5/1/2004 6:12:47 PM ******/
CREATE FUNCTION dbo.Scouter
(
@Attacker int,
@Defender int
)
RETURNS nvarchar(48)
BEGIN
DECLARE @Name nvarchar(48)
SET @Name = (SELECT [Name] + '' + dbo.CalcReturnTime(@Attacker, @Defender) + ' hours' FROM Kingdoms WHERE kdID = @Defender)
RETURN(@Name)
END
|
<reponame>BugsUK/FindApprenticeship
CREATE TABLE [dbo].[TestConnection] (
[TestId] INT IDENTITY (-1, -1) NOT FOR REPLICATION NOT NULL,
[TestName] NCHAR (10) NULL
);
|
<filename>coeus-db/coeus-db-sql/src/main/resources/org/kuali/coeus/coeus-sql/log/Release_2_0_logs/KRACOEUS-1396.sql
/* This script has been deprecated in place of 1401 */ |
<reponame>cccghundred/CargaMongoSB2
/* ==Scripting Parameters==
Source Server Version : SQL Server 2012 (11.0.6020)
Source Database Engine Edition : Microsoft SQL Server Enterprise Edition
Source Database Engine Type : Standalone SQL Server
Target Server Version : SQL Server 2012
Target Database Engine Edition : Microsoft SQL Server Enterprise Edition
Target Database Engine Type : Standalone SQL Server
*/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
/*
----------------------------------------------------------------------------------------------------------------------
PROPÓSITO | Generar información de EstrategiaDetalle para exportar a Mongo
----------------------------------------------------------------------------------------------------------------------
PARÁMETROS DE ENTRADA| @vEstrategiaId - Código de camapaña
----------------------------------------------------------------------------------------------------------------------
PARÁMETROS DE SALIDA | NO APLICA
----------------------------------------------------------------------------------------------------------------------
CREADO POR | <NAME>
FECHA CREACIÓN | 03/12/2018
----------------------------------------------------------------------------------------------------------------------
HISTORIAL DE CAMBIOS | FECHA RESPONSABLE MOTIVO
| ---------- ------------------- ----------------------------------------------------------------
| 03/12/2018 <NAME> Creación de script
|
----------------------------------------------------------------------------------------------------------------------
PRUEBA:
EXEC usp_SBMicroservicios_EstrategiaDetalle
*/
IF OBJECT_ID('dbo.usp_SBMicroservicios_EstrategiaDetalle', 'P') IS NOT NULL
DROP PROCEDURE dbo.usp_SBMicroservicios_EstrategiaDetalle
GO
CREATE PROCEDURE dbo.usp_SBMicroservicios_EstrategiaDetalle
@vEstrategiaId INT
AS
BEGIN
SET NOCOUNT ON
SELECT TablaLogicaDatosID, Valor
FROM EstrategiaDetalle WHERE EstrategiaID = @vEstrategiaId
END
GO |
<filename>sql/Facility.sql<gh_stars>0
CREATE TABLE Facility( FacilityID INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY,FacilityNAME VARCHAR(30) NOT NULL,FacilityADDRESS VARCHAR(30) NOT NULL,FacilityCITY VARCHAR(30) NOT NULL,FacilitySTATE VARCHAR(30) NOT NULL,FacilityCOUNTRY VARCHAR(30) NOT NULL,FacilityZIPCODE VARCHAR(30) NOT NULL)
|
<reponame>basic-history/noc-manager-template
create table pub_role (
id VARCHAR(32) primary key,
name VARCHAR(30),
is_tmp VARCHAR(1),
create_by VARCHAR(30),
create_time DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
remark VARCHAR(255)
) ENGINE=INNODB CHARSET=utf8 COLLATE=utf8_general_ci; |
<reponame>AnthonyMolinaro/ETL-LambdaBuilder
{Source_to_Standard}
SELECT SOURCE_CODE, TARGET_CONCEPT_ID
FROM CTE_VOCAB_MAP
WHERE lower(SOURCE_VOCABULARY_ID) IN ('jnj_tru_dpos')
AND (TARGET_STANDARD_CONCEPT IS NOT NULL or TARGET_STANDARD_CONCEPT != '')
AND (TARGET_INVALID_REASON IS NULL or TARGET_INVALID_REASON = '') |
<gh_stars>1000+
ALTER TABLE {$NAMESPACE}_phame.phame_post
ADD mailKey binary(20) NOT NULL;
|
-- Added new inserter_maker and inserter_destroyer functions
/*
* Inserter maker function. Accepts custom destination name.
*/
CREATE FUNCTION inserter_maker(p_src_table text, p_dest_table text, p_control_field text, p_dblink_id int) RETURNS void
LANGUAGE plpgsql
AS $_$
declare
v_insert_refresh_config text;
v_update_refresh_config text;
v_max_timestamp timestamptz;
v_data_source text;
v_exists int;
v_snap_suffix text;
v_view_definition text;
BEGIN
SELECT data_source INTO v_data_source FROM @extschema@.dblink_mapping WHERE data_source_id = p_dblink_id;
IF NOT FOUND THEN
RAISE EXCEPTION 'ERROR: database link ID is incorrect %', p_dblink_id;
END IF;
v_insert_refresh_config := 'INSERT INTO @extschema@.refresh_config(source_table, dest_table, type, dblink, control, boundary) VALUES('||quote_literal(p_src_table)||', '||quote_literal(p_dest_table)||',''snap'', '|| p_dblink_id||', '||quote_literal(p_control_field)||', ''10mins''::interval);';
RAISE NOTICE 'Inserting record in @extschema@.refresh_config';
EXECUTE v_insert_refresh_config;
RAISE NOTICE 'Insert successful';
RAISE NOTICE 'attempting snapshot';
PERFORM @extschema@.refresh_snap(p_dest_table, FALSE);
RAISE NOTICE 'attempting to destroy snapshot';
SELECT definition INTO v_view_definition FROM pg_views WHERE schemaname || '.' || viewname = p_dest_table;
v_exists := strpos(v_view_definition, 'snap1');
IF v_exists > 0 THEN
v_snap_suffix := 'snap1';
END IF;
EXECUTE 'DROP VIEW ' || p_dest_table;
EXECUTE 'CREATE TABLE ' || p_dest_table || ' AS SELECT * FROM ' || p_dest_table || '_' || v_snap_suffix;
EXECUTE 'DROP TABLE ' || p_dest_table || '_snap1';
RAISE NOTICE 'Destroyed successfully';
RAISE NOTICE 'Taking the maximum timestamp';
EXECUTE 'SELECT max('||p_control_field||') FROM '||p_dest_table||';' INTO v_max_timestamp;
RAISE NOTICE 'The select statement ran successfully.';
v_update_refresh_config := 'UPDATE @extschema@.refresh_config SET (type, last_value) = (''inserter'', '||quote_literal(v_max_timestamp)||') WHERE dest_table = '||quote_literal(p_src_table)||';';
RAISE NOTICE 'Updating config table with highest timestamp value';
EXECUTE v_update_refresh_config;
RAISE NOTICE 'Update successful';
RAISE NOTICE 'all done';
RETURN;
END
$_$;
/*
* Inserter maker function. Assumes source and destination are the same tablename.
*/
CREATE FUNCTION inserter_maker(p_src_table text, p_control_field text, p_dblink_id int) RETURNS void
LANGUAGE plpgsql
AS $_$
declare
v_insert_refresh_config text;
v_update_refresh_config text;
v_max_timestamp timestamptz;
v_data_source text;
v_exists int;
v_snap_suffix text;
v_view_definition text;
BEGIN
SELECT data_source INTO v_data_source FROM @extschema@.dblink_mapping WHERE data_source_id = p_dblink_id;
IF NOT FOUND THEN
RAISE EXCEPTION 'ERROR: database link ID is incorrect %', p_dblink_id;
END IF;
v_insert_refresh_config := 'INSERT INTO @extschema@.refresh_config(source_table, dest_table, type, dblink, control, boundary) VALUES('||quote_literal(p_src_table)||', '||quote_literal(p_src_table)||',''snap'', '|| p_dblink_id||', '||quote_literal(p_control_field)||', ''10mins''::interval);';
RAISE NOTICE 'Inserting record in @extschema@.refresh_config';
EXECUTE v_insert_refresh_config;
RAISE NOTICE 'Insert successful';
RAISE NOTICE 'attempting snapshot';
PERFORM @extschema@.refresh_snap(p_src_table, FALSE);
RAISE NOTICE 'attempting to destroy snapshot';
SELECT definition INTO v_view_definition FROM pg_views WHERE schemaname || '.' || viewname = p_src_table;
v_exists := strpos(v_view_definition, 'snap1');
IF v_exists > 0 THEN
v_snap_suffix := 'snap1';
END IF;
EXECUTE 'DROP VIEW ' || p_src_table;
EXECUTE 'CREATE TABLE ' || p_src_table || ' AS SELECT * FROM ' || p_src_table || '_' || v_snap_suffix;
EXECUTE 'DROP TABLE ' || p_src_table || '_snap1';
RAISE NOTICE 'Destroyed successfully';
RAISE NOTICE 'Taking the maximum timestamp';
EXECUTE 'SELECT max('||p_control_field||') FROM '||p_src_table||';' INTO v_max_timestamp;
RAISE NOTICE 'The select statement ran successfully.';
v_update_refresh_config := 'UPDATE @extschema@.refresh_config SET (type, last_value) = (''inserter'', '||quote_literal(v_max_timestamp)||') WHERE dest_table = '||quote_literal(p_src_table)||';';
RAISE NOTICE 'Updating config table with highest timestamp value';
EXECUTE v_update_refresh_config;
RAISE NOTICE 'Update successful';
RAISE NOTICE 'all done';
RETURN;
END
$_$;
/*
* Inserter destroyer function. Pass archive to keep table intact.
*/
CREATE FUNCTION inserter_destroyer(p_dest_table text, p_archive_option text) RETURNS void
LANGUAGE plpgsql
AS $_$
DECLARE
v_dest_table text;
v_src_table text;
BEGIN
SELECT source_table, dest_table INTO v_src_table, v_dest_table
FROM @extschema@.refresh_config WHERE dest_table = p_dest_table;
IF NOT FOUND THEN
RAISE EXCEPTION 'This table is not set up for inserter replication: %', v_dest_table;
END IF;
-- Deletes entry in config and keeps the replicated table intact.
IF p_archive_option = 'ARCHIVE' THEN
EXECUTE 'DELETE FROM @extschema@.refresh_config WHERE dest_table = ' || quote_literal(v_dest_table);
ELSE
EXECUTE 'DROP TABLE ' || v_dest_table;
EXECUTE 'DELETE FROM @extschema@.refresh_config WHERE dest_table = ' || quote_literal(v_dest_table);
END IF;
END
$_$;
|
<filename>treebase-core/db/cleaning/2010-03-12_postload_fixes/field_defaults.sql
BEGIN transaction;
update phylotree
set treekind_id = 1
where treekind_id is null;
update phylotree
set treequality_id = 1
where treequality_id is null;
update matrix
set description = 'Legacy TreeBASE Matrix ID = ' || tb_matrixid
where description is null
and tb_matrixid is not null;
COMMIT; |
set system parameters 'dont_reuse_heap_file=yes';
drop table if exists t;
drop table if exists temp;
create table t(d date) partition by hash(add_months(d,3)) partitions 25;
create table temp(i int);
insert into temp select rownum from db_class limit 65;
insert into t select add_months('2014-05-06',i) from temp;
insert into t values('2012-5-6');
insert into t select * from t;
insert into t select * from t;
insert into t select * from t;
insert into t select * from t;
insert into t select * from t;
select * from db_partition where class_name='t' order by 2;
select * from db_class where class_name='t';
select d,add_months(d,3),count(*) from t__p__p0 where d <> '2012-5-6' group by d;
select d,add_months(d,3),count(*) from t__p__p2 where d <> '2012-5-6' group by d;
select d,add_months(d,3),count(*) from t__p__p17 where d <> '2012-5-6' group by d;
select d,add_months(d,3),count(*) from t__p__p24 where d <> '2012-5-6' group by d;
select count(*) from t__p__p2 where d='2015-08-6';
select count(*) from t where d='2012-5-6';
update /*+ recompile */ t set d=add_months(d,13) where add_months(d,3) in ('2014-10-06');
update /*+ recompile */ t set d=add_months(d,13) where add_months(d,3) in (add_months('2012-5-6',3));
select count(*) from t where add_months(d,3)='2014-10-06';
select count(*) from t where d='2015-08-6';
select count(*) from t__p__p2 where add_months(d,3)='2015-11-06';
select count(*) from t where add_months(d,3)='2012-5-6';
select count(*) from t where d=add_months('2012-5-6',13);
alter table t coalesce partition 4;
select * from db_partition where class_name='t' order by 2;
select d,count(*) from t__p__p0 where d <> '2012-5-6' group by d order by 1;
select d,count(*) from t__p__p2 where d <> '2012-5-6' group by d order by 1;
select d,count(*) from t__p__p17 where d <> '2012-5-6' group by d order by 1;
select d,count(*) from t__p__p18 where d <> '2012-5-6' group by d order by 1;
drop t;
drop temp;
set system parameters 'dont_reuse_heap_file=no';
|
-- phpMyAdmin SQL Dump
-- version 4.5.1
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: 23 Jul 2016 pada 07.39
-- Versi Server: 10.1.13-MariaDB
-- PHP Version: 7.0.5
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `db_keuangan`
--
-- --------------------------------------------------------
--
-- Struktur dari tabel `dagang`
--
CREATE TABLE `dagang` (
`id` char(12) NOT NULL,
`id_pasar` char(5) NOT NULL,
`id_komoditas` int(10) NOT NULL,
`nama_dagang` varchar(100) NOT NULL,
`jenis_dagang` enum('PN','KS') NOT NULL,
`lokasi` varchar(100) NOT NULL,
`status` enum('AP','PD','DL') NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`created_by` int(10) NOT NULL,
`updated_by` int(10) DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data untuk tabel `dagang`
--
INSERT INTO `dagang` (`id`, `id_pasar`, `id_komoditas`, `nama_dagang`, `jenis_dagang`, `lokasi`, `status`, `created_at`, `updated_at`, `created_by`, `updated_by`, `deleted_at`) VALUES
('DG1606000001', 'PS03', 3, 'Dagang Bunga', 'PN', 'deket parkiran', 'AP', '2016-06-21 19:03:41', '2016-06-23 06:22:12', 1, 1, NULL),
('DG1606000002', 'PS01', 1, 'Kios Petra', 'KS', 'lantai 2', 'PD', '2016-06-21 19:13:09', '2016-07-01 08:44:14', 1, NULL, NULL),
('DG1606000003', 'PS03', 1, 'Kios Jagung', 'KS', 'lantai 3', 'AP', '2016-06-21 19:13:53', '2016-06-21 19:18:55', 1, 1, NULL),
('DG1606000004', 'PS02', 9, '<NAME>', 'PN', 'parkiran', 'PD', '2016-06-29 15:03:13', '2016-06-29 15:03:34', 1, 1, NULL),
('DG1607000001', 'PS01', 1, '<NAME>', 'KS', 'lantai 2', 'PD', '2016-07-11 06:08:13', '2016-07-23 05:24:50', 3, NULL, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `komoditas`
--
CREATE TABLE `komoditas` (
`id` int(10) NOT NULL,
`nama_komoditas` varchar(100) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`created_by` int(10) NOT NULL,
`updated_by` int(10) DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data untuk tabel `komoditas`
--
INSERT INTO `komoditas` (`id`, `nama_komoditas`, `created_at`, `updated_at`, `created_by`, `updated_by`, `deleted_at`) VALUES
(1, 'Sembako', '2016-04-30 18:41:04', '2016-04-30 10:41:04', 1, 1, NULL),
(2, 'Canang', '2016-04-30 10:13:06', '2016-04-30 10:13:06', 1, NULL, NULL),
(3, 'Bunga', '2016-06-23 06:22:31', '2016-06-23 06:22:12', 1, NULL, NULL),
(8, 'Beras', '2016-04-30 10:51:28', '2016-04-30 10:51:28', 1, NULL, NULL),
(9, 'Ransel', '2016-06-10 17:53:41', '2016-06-10 17:53:41', 1, 1, NULL),
(10, 'Pangan', '2016-06-21 18:05:56', '2016-06-21 18:05:42', 1, 1, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `migrations`
--
CREATE TABLE `migrations` (
`migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data untuk tabel `migrations`
--
INSERT INTO `migrations` (`migration`, `batch`) VALUES
('2014_10_12_000000_create_users_table', 1),
('2014_10_12_100000_create_password_resets_table', 1),
('2016_01_01_145345_create_roles_table', 2),
('2016_01_01_145745_create_role_user_table', 2),
('2016_01_01_150253_create_permissions_table', 2),
('2016_01_01_154441_create_permission_role_table', 2);
-- --------------------------------------------------------
--
-- Struktur dari tabel `pasar`
--
CREATE TABLE `pasar` (
`id` char(4) NOT NULL,
`nama_pasar` varchar(100) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`created_by` int(10) NOT NULL,
`updated_by` int(10) DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data untuk tabel `pasar`
--
INSERT INTO `pasar` (`id`, `nama_pasar`, `created_at`, `updated_at`, `created_by`, `updated_by`, `deleted_at`) VALUES
('PS01', '<NAME>', '2016-04-29 04:37:26', '2016-07-01 06:59:55', 1, 3, NULL),
('PS02', '<NAME>', '2016-04-29 04:37:41', '2016-06-21 18:08:11', 1, NULL, NULL),
('PS03', '<NAME>', '2016-04-29 04:37:47', '2016-04-30 18:57:32', 1, 1, NULL),
('PS04', '<NAME>', '2016-05-07 11:10:04', '2016-05-07 11:10:04', 1, NULL, NULL),
('PS05', '<NAME>', '2016-06-22 14:27:07', '2016-06-22 14:27:13', 1, NULL, NULL),
('PS06', '<NAME>', '2016-06-22 14:27:17', '2016-07-01 07:02:21', 1, 1, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`token` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data untuk tabel `password_resets`
--
INSERT INTO `password_resets` (`email`, `token`, `created_at`) VALUES
('<EMAIL>', '0218cb9ef2a9a8e86cdafd50daec81a1372bc72403676752f626d3794f9b1466', '2016-07-02 17:25:21'),
('<EMAIL>', '<PASSWORD>', '2016-07-12 13:40:34');
-- --------------------------------------------------------
--
-- Struktur dari tabel `pegawai`
--
CREATE TABLE `pegawai` (
`id` char(9) NOT NULL,
`id_users` int(10) UNSIGNED NOT NULL,
`id_pasar` char(5) DEFAULT NULL,
`nama_lengkap` varchar(50) NOT NULL,
`jenis_kelamin` enum('P','L') NOT NULL,
`alamat` varchar(100) NOT NULL,
`no_telp` varchar(12) NOT NULL,
`photo` varchar(255) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`created_by` int(10) NOT NULL,
`updated_by` int(10) DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data untuk tabel `pegawai`
--
INSERT INTO `pegawai` (`id`, `id_users`, `id_pasar`, `nama_lengkap`, `jenis_kelamin`, `alamat`, `no_telp`, `photo`, `created_at`, `updated_at`, `created_by`, `updated_by`, `deleted_at`) VALUES
('PG1604001', 1, NULL, 'Manik Operator', 'L', 'Jalan Nangka Utara', '082247464196', 'PG1604001mwx37haoMR.jpg', '2016-07-02 16:22:22', '2016-07-12 13:24:54', 1, NULL, NULL),
('PG1604002', 2, 'PS03', 'Windu Petugas Jele', 'L', 'Jalan Ayani Utara', '085474121363', 'PG1604002HE5Ut06qzQ.jpg', '2016-07-02 16:43:53', '2016-07-08 06:07:01', 1, NULL, NULL),
('PG1604003', 3, NULL, 'Hendra Awesome', 'L', 'Jalan Awesome No.888', '085737353569', 'PG1604003UwoRMQmw6x.jpg', '2016-07-01 16:24:26', '2016-07-07 07:19:55', 1, NULL, NULL),
('PG1604004', 12, NULL, 'Test Operator', 'L', 'Jalan Test asd', '082247464196', NULL, '2016-07-02 16:24:43', NULL, 3, NULL, NULL),
('PG1604005', 13, 'PS06', '<NAME>', 'L', 'Jalan Ayani', '082247464196', NULL, '2016-07-02 16:44:33', NULL, 3, NULL, NULL),
('PG1604006', 10, NULL, 'Dirut Mahesa 2', 'L', 'Jalan Kematian 2', '082247464196', NULL, '2016-07-02 16:05:14', NULL, 3, NULL, NULL),
('PG1604007', 11, NULL, 'Awesome Dirut', 'L', 'Jalan Raya Bedugul', '082247464196', NULL, '2016-07-02 16:08:41', NULL, 3, NULL, NULL),
('PG1607001', 14, NULL, 'New Operator', 'L', 'Jalan G<NAME>', '084637362726', NULL, '2016-07-02 16:59:29', '2016-07-02 16:59:29', 3, NULL, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `permissions`
--
CREATE TABLE `permissions` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`slug` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` text COLLATE utf8_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Struktur dari tabel `permission_role`
--
CREATE TABLE `permission_role` (
`id` int(10) UNSIGNED NOT NULL,
`permission_id` int(11) NOT NULL,
`role_id` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Struktur dari tabel `pungutan`
--
CREATE TABLE `pungutan` (
`id` bigint(20) NOT NULL,
`id_pasar` char(4) NOT NULL,
`id_dagang` char(12) NOT NULL,
`tgl_pungutan` date NOT NULL,
`type` enum('PG','TG') NOT NULL,
`deposited` timestamp NULL DEFAULT NULL,
`deposited_to` int(10) DEFAULT NULL,
`detail` enum('HR','BL') DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`created_by` int(10) NOT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data untuk tabel `pungutan`
--
INSERT INTO `pungutan` (`id`, `id_pasar`, `id_dagang`, `tgl_pungutan`, `type`, `deposited`, `deposited_to`, `detail`, `created_at`, `created_by`, `updated_at`, `deleted_at`) VALUES
(12, 'PS03', 'DG1606000001', '2016-06-27', 'PG', NULL, NULL, 'HR', '2016-06-27 12:23:23', 2, '2016-06-30 06:31:32', NULL),
(13, 'PS03', 'DG1606000003', '2016-06-27', 'PG', NULL, NULL, 'HR', '2016-06-27 12:23:43', 2, '2016-06-30 06:31:32', NULL),
(14, 'PS03', 'DG1606000003', '2016-06-26', 'TG', NULL, NULL, 'HR', '2016-06-27 16:21:52', 2, '2016-06-29 15:52:51', NULL),
(16, 'PS03', 'DG1606000001', '2016-06-26', 'TG', NULL, NULL, 'HR', '2016-06-27 16:25:06', 2, '2016-06-29 15:52:51', NULL),
(18, 'PS03', 'DG1606000001', '2016-06-21', 'TG', NULL, NULL, 'HR', '2016-06-28 06:10:33', 2, '2016-06-29 15:52:51', NULL),
(19, 'PS03', 'DG1606000003', '2016-06-21', 'TG', NULL, NULL, 'HR', '2016-06-28 06:10:37', 2, '2016-06-29 15:52:51', NULL),
(20, 'PS03', 'DG1606000001', '2016-06-20', 'TG', NULL, NULL, 'HR', '2016-06-28 06:11:41', 2, '2016-06-29 15:52:51', NULL),
(21, 'PS03', 'DG1606000003', '2016-06-20', 'TG', '2016-06-29 15:52:51', 1, 'HR', '2016-06-28 06:11:49', 2, '2016-06-29 15:52:51', NULL),
(22, 'PS03', 'DG1606000001', '2016-06-15', 'TG', '2016-06-29 15:52:51', 1, 'HR', '2016-06-28 06:13:58', 2, '2016-06-29 15:52:51', NULL),
(23, 'PS03', 'DG1606000003', '2016-06-15', 'TG', '2016-06-29 15:52:51', 1, 'HR', '2016-06-28 06:14:50', 2, '2016-06-29 15:52:51', NULL),
(24, 'PS03', 'DG1606000003', '2016-06-16', 'TG', NULL, NULL, 'HR', '2016-06-28 06:15:45', 2, '2016-06-29 15:52:51', NULL),
(25, 'PS03', 'DG1606000001', '2016-06-28', 'PG', '2016-06-29 15:52:51', 1, 'HR', '2016-06-28 06:18:03', 2, '2016-06-29 15:52:51', NULL),
(26, 'PS03', 'DG1606000003', '2016-06-28', 'PG', NULL, NULL, 'HR', '2016-06-28 06:18:06', 2, '2016-06-29 15:52:51', NULL),
(27, 'PS03', 'DG1606000001', '2016-06-06', 'TG', NULL, NULL, 'HR', '2016-06-28 07:15:06', 2, '2016-06-29 15:52:51', NULL),
(28, 'PS03', 'DG1606000001', '2016-06-28', 'PG', NULL, NULL, 'BL', '2016-06-28 07:15:47', 2, '2016-06-29 15:52:51', NULL),
(29, 'PS03', 'DG1606000003', '2016-06-28', 'PG', '2016-06-29 15:52:51', 1, 'BL', '2016-06-28 07:24:51', 2, '2016-06-29 15:52:51', NULL),
(30, 'PS03', 'DG1606000001', '2016-05-28', 'TG', '2016-06-29 15:52:51', 1, 'BL', '2016-06-28 08:04:35', 2, '2016-06-29 15:52:51', NULL),
(31, 'PS03', 'DG1606000003', '2016-05-28', 'TG', NULL, NULL, 'BL', '2016-06-28 08:04:51', 2, '2016-06-29 15:52:51', NULL),
(32, 'PS03', 'DG1606000001', '2016-07-10', 'PG', NULL, NULL, 'HR', '2016-07-09 19:17:06', 2, '2016-07-09 19:17:06', NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `pungutan_bulanan`
--
CREATE TABLE `pungutan_bulanan` (
`id` bigint(20) NOT NULL,
`id_pungutan` bigint(20) NOT NULL,
`sewa_tempat` int(11) NOT NULL,
`ppn` int(11) NOT NULL,
`total` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`created_by` int(10) NOT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data untuk tabel `pungutan_bulanan`
--
INSERT INTO `pungutan_bulanan` (`id`, `id_pungutan`, `sewa_tempat`, `ppn`, `total`, `created_at`, `created_by`, `updated_at`, `deleted_at`) VALUES
(1, 28, 54000, 5400, 59400, '2016-06-28 07:15:47', 2, '2016-06-28 07:15:47', NULL),
(2, 29, 54000, 5400, 59400, '2016-06-28 07:24:51', 2, '2016-06-28 07:24:51', NULL),
(3, 30, 54000, 5400, 59400, '2016-06-28 08:04:35', 2, '2016-06-28 08:04:35', NULL),
(4, 31, 54000, 5400, 59400, '2016-06-28 08:04:51', 2, '2016-06-28 08:04:51', NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `pungutan_harian`
--
CREATE TABLE `pungutan_harian` (
`id` bigint(20) NOT NULL,
`id_pungutan` bigint(20) NOT NULL,
`tempat_berjualan` int(11) NOT NULL,
`listrik` int(11) NOT NULL,
`air` int(11) NOT NULL,
`jumlah` int(11) NOT NULL,
`ppn` int(11) NOT NULL,
`total` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`created_by` int(10) NOT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data untuk tabel `pungutan_harian`
--
INSERT INTO `pungutan_harian` (`id`, `id_pungutan`, `tempat_berjualan`, `listrik`, `air`, `jumlah`, `ppn`, `total`, `created_at`, `created_by`, `updated_at`, `deleted_at`) VALUES
(1, 12, 2500, 2000, 1000, 5500, 550, 6050, '2016-06-27 12:23:23', 2, '2016-06-27 12:23:23', NULL),
(2, 13, 2500, 2000, 1000, 5500, 550, 6050, '2016-06-27 12:23:43', 2, '2016-06-27 12:23:43', NULL),
(3, 14, 2500, 2000, 1000, 5500, 550, 6050, '2016-06-27 16:21:52', 2, '2016-06-27 16:21:52', NULL),
(5, 16, 2500, 2000, 1000, 5500, 550, 6050, '2016-06-27 16:25:06', 2, '2016-06-27 16:25:06', NULL),
(7, 18, 2500, 2000, 1000, 5500, 550, 6050, '2016-06-28 06:10:33', 2, '2016-06-28 06:10:33', NULL),
(8, 19, 2500, 2000, 1000, 5500, 550, 6050, '2016-06-28 06:10:37', 2, '2016-06-28 06:10:37', NULL),
(9, 20, 2500, 2000, 1000, 5500, 550, 6050, '2016-06-28 06:11:41', 2, '2016-06-28 06:11:41', NULL),
(10, 21, 2500, 2000, 1000, 5500, 550, 6050, '2016-06-28 06:11:49', 2, '2016-06-28 06:11:49', NULL),
(11, 22, 2500, 2000, 1000, 5500, 550, 6050, '2016-06-28 06:13:58', 2, '2016-06-28 06:13:58', NULL),
(12, 23, 2500, 2000, 1000, 5500, 550, 6050, '2016-06-28 06:14:50', 2, '2016-06-28 06:14:50', NULL),
(13, 24, 2500, 2000, 1000, 5500, 550, 6050, '2016-06-28 06:15:45', 2, '2016-06-28 06:15:45', NULL),
(14, 25, 2500, 2000, 1000, 5500, 550, 6050, '2016-06-28 06:18:03', 2, '2016-06-28 06:18:03', NULL),
(15, 26, 2500, 2000, 1000, 5500, 550, 6050, '2016-06-28 06:18:06', 2, '2016-06-28 06:18:06', NULL),
(16, 27, 2500, 2000, 1000, 5500, 550, 6050, '2016-06-28 07:15:06', 2, '2016-06-28 07:15:06', NULL),
(17, 32, 2500, 2000, 1000, 5500, 550, 6050, '2016-07-09 19:17:06', 2, '2016-07-09 19:17:06', NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `roles`
--
CREATE TABLE `roles` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`slug` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` text COLLATE utf8_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data untuk tabel `roles`
--
INSERT INTO `roles` (`id`, `name`, `slug`, `description`, `created_at`, `updated_at`) VALUES
(1, 'Petugas', 'petugas', 'Petugas lapangan', '2016-04-22 08:36:40', '2016-04-22 08:36:40'),
(2, 'Operator', 'operator', 'Editor data pusat', '2016-04-22 08:36:40', '2016-04-22 08:36:40'),
(3, 'Dirut', 'dirut', 'Pimpinan tertinggi', '2016-04-22 08:36:40', '2016-04-22 08:36:40');
-- --------------------------------------------------------
--
-- Struktur dari tabel `role_user`
--
CREATE TABLE `role_user` (
`id` int(10) UNSIGNED NOT NULL,
`role_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data untuk tabel `role_user`
--
INSERT INTO `role_user` (`id`, `role_id`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 2, 1, '2016-04-22 08:39:06', '2016-04-22 08:39:06'),
(2, 1, 2, '2016-04-22 08:39:06', '2016-04-22 08:39:06'),
(3, 3, 3, '2016-06-30 17:13:56', '2016-06-30 17:13:58'),
(4, 3, 10, '2016-07-02 16:05:14', '2016-07-02 16:05:14'),
(5, 3, 11, '2016-07-02 16:08:41', '2016-07-02 16:08:41'),
(6, 2, 12, '2016-07-02 16:24:43', '2016-07-02 16:24:43'),
(7, 1, 13, '2016-07-02 16:44:33', '2016-07-02 16:44:33'),
(8, 2, 14, '2016-07-02 16:59:29', '2016-07-02 16:59:29');
-- --------------------------------------------------------
--
-- Struktur dari tabel `settings`
--
CREATE TABLE `settings` (
`id` int(10) UNSIGNED NOT NULL,
`key` varchar(100) DEFAULT NULL,
`value` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Struktur dari tabel `tarif`
--
CREATE TABLE `tarif` (
`id` int(11) NOT NULL,
`label` varchar(50) NOT NULL,
`tarif` int(11) NOT NULL,
`type` enum('HR','BL') NOT NULL,
`jenis_dagang` enum('PN','KS') NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`created_by` int(10) NOT NULL,
`updated_by` int(10) DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data untuk tabel `tarif`
--
INSERT INTO `tarif` (`id`, `label`, `tarif`, `type`, `jenis_dagang`, `created_at`, `updated_at`, `created_by`, `updated_by`, `deleted_at`) VALUES
(1, 'Tempat Berjualan', 2500, 'HR', 'KS', '2016-06-24 04:31:55', '2016-07-01 08:10:56', 1, NULL, NULL),
(2, 'Listrik', 2000, 'HR', 'KS', '2016-06-24 04:36:51', '2016-07-01 08:11:02', 1, NULL, NULL),
(3, 'Air', 1000, 'HR', 'KS', '2016-06-24 04:37:30', '2016-07-01 08:11:07', 1, NULL, NULL),
(4, 'Sewa Tempat', 54000, 'BL', 'KS', '2016-06-28 06:38:01', '2016-07-01 08:11:13', 1, NULL, NULL),
(6, 'Tempat Berjualan', 2500, 'HR', 'PN', '2016-06-28 06:38:01', '2016-06-28 06:38:01', 1, NULL, NULL),
(7, 'Listrik', 2000, 'HR', 'PN', '2016-06-28 06:38:01', '2016-06-28 06:38:01', 1, NULL, NULL),
(8, 'Air', 1000, 'HR', 'PN', '2016-06-28 06:38:01', '2016-06-28 06:38:01', 1, NULL, NULL),
(9, 'Sewa Tempat', 54000, 'BL', 'PN', '2016-06-28 06:38:01', '2016-06-28 06:38:01', 1, NULL, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `users`
--
CREATE TABLE `users` (
`id` int(10) UNSIGNED NOT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`type` enum('P','O','D') COLLATE utf8_unicode_ci NOT NULL,
`status` enum('200','303','666') COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data untuk tabel `users`
--
INSERT INTO `users` (`id`, `email`, `password`, `remember_token`, `type`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, '<EMAIL>', <PASSWORD>', '<PASSWORD>', 'O', '200', '2016-04-22 06:20:11', '2016-07-22 13:40:13', NULL),
(2, '<EMAIL>', <PASSWORD>', '<PASSWORD>', 'P', '200', '2016-04-22 08:46:14', '2016-07-22 13:27:47', NULL),
(3, '<EMAIL>', <PASSWORD>', 'Y2sFByDH8KL7vWEqtAPrYNOPQEtdMqEZXZ9HjGXq9C8Gu8yfESSFcREDLElY', 'D', '200', '2016-06-30 17:12:31', '2016-07-22 13:23:24', NULL),
(10, '<EMAIL>', <PASSWORD>', NULL, 'D', '200', '2016-07-02 16:05:14', '2016-07-02 16:07:27', NULL),
(11, '<EMAIL>', <PASSWORD>', 'SW<PASSWORD>', 'D', '200', '2016-07-02 16:08:41', '2016-07-12 14:11:51', NULL),
(12, '<EMAIL>', <PASSWORD>', 'G<PASSWORD>', 'O', '200', '2016-07-02 16:24:43', '2016-07-12 14:05:40', NULL),
(13, '<EMAIL>', <PASSWORD>', NULL, 'P', '200', '2016-07-02 16:44:33', '2016-07-02 16:44:33', NULL),
(14, '<EMAIL>', <PASSWORD>', NULL, 'O', '200', '2016-07-02 16:59:29', '2016-07-02 16:59:29', NULL);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `dagang`
--
ALTER TABLE `dagang`
ADD PRIMARY KEY (`id`),
ADD KEY `FK_dagang_komuditas` (`id_komoditas`),
ADD KEY `FK_dagang_pasar` (`id_pasar`);
--
-- Indexes for table `komoditas`
--
ALTER TABLE `komoditas`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `nama_komoditas` (`nama_komoditas`);
--
-- Indexes for table `pasar`
--
ALTER TABLE `pasar`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`),
ADD KEY `password_resets_token_index` (`token`);
--
-- Indexes for table `pegawai`
--
ALTER TABLE `pegawai`
ADD PRIMARY KEY (`id`),
ADD KEY `FK_pegawai_users` (`id_users`);
--
-- Indexes for table `permissions`
--
ALTER TABLE `permissions`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `permissions_slug_unique` (`slug`);
--
-- Indexes for table `permission_role`
--
ALTER TABLE `permission_role`
ADD PRIMARY KEY (`id`),
ADD KEY `permission_role_permission_id_index` (`permission_id`),
ADD KEY `permission_role_role_id_index` (`role_id`);
--
-- Indexes for table `pungutan`
--
ALTER TABLE `pungutan`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `pungutan_bulanan`
--
ALTER TABLE `pungutan_bulanan`
ADD PRIMARY KEY (`id`),
ADD KEY `FK_pungutan_bulanan_pungutan` (`id_pungutan`);
--
-- Indexes for table `pungutan_harian`
--
ALTER TABLE `pungutan_harian`
ADD PRIMARY KEY (`id`),
ADD KEY `FK_pungutan_harian_pungutan` (`id_pungutan`);
--
-- Indexes for table `roles`
--
ALTER TABLE `roles`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `roles_slug_unique` (`slug`);
--
-- Indexes for table `role_user`
--
ALTER TABLE `role_user`
ADD PRIMARY KEY (`id`),
ADD KEY `role_user_role_id_index` (`role_id`),
ADD KEY `role_user_user_id_index` (`user_id`);
--
-- Indexes for table `settings`
--
ALTER TABLE `settings`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tarif`
--
ALTER TABLE `tarif`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `komoditas`
--
ALTER TABLE `komoditas`
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT for table `permissions`
--
ALTER TABLE `permissions`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `permission_role`
--
ALTER TABLE `permission_role`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `pungutan`
--
ALTER TABLE `pungutan`
MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=33;
--
-- AUTO_INCREMENT for table `pungutan_bulanan`
--
ALTER TABLE `pungutan_bulanan`
MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `pungutan_harian`
--
ALTER TABLE `pungutan_harian`
MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
--
-- AUTO_INCREMENT for table `roles`
--
ALTER TABLE `roles`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `role_user`
--
ALTER TABLE `role_user`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `settings`
--
ALTER TABLE `settings`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `tarif`
--
ALTER TABLE `tarif`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;
--
-- Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)
--
--
-- Ketidakleluasaan untuk tabel `dagang`
--
ALTER TABLE `dagang`
ADD CONSTRAINT `FK_dagang_komoditas` FOREIGN KEY (`id_komoditas`) REFERENCES `komoditas` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT `FK_dagang_pasar` FOREIGN KEY (`id_pasar`) REFERENCES `pasar` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION;
--
-- Ketidakleluasaan untuk tabel `pegawai`
--
ALTER TABLE `pegawai`
ADD CONSTRAINT `FK_pegawai_users` FOREIGN KEY (`id_users`) REFERENCES `users` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION;
--
-- Ketidakleluasaan untuk tabel `pungutan_bulanan`
--
ALTER TABLE `pungutan_bulanan`
ADD CONSTRAINT `FK_pungutan_bulanan_pungutan` FOREIGN KEY (`id_pungutan`) REFERENCES `pungutan` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION;
--
-- Ketidakleluasaan untuk tabel `pungutan_harian`
--
ALTER TABLE `pungutan_harian`
ADD CONSTRAINT `FK_pungutan_harian_pungutan` FOREIGN KEY (`id_pungutan`) REFERENCES `pungutan` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION;
/*!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 */;
|
<gh_stars>0
DROP TABLE DepFacInfo CASCADE CONSTRAINTS;
DROP TABLE EleicaoInfo CASCADE CONSTRAINTS;
DROP TABLE EleicaoInfo_DepFacInfo;
DROP TABLE ListaCandidata CASCADE CONSTRAINTS;
DROP TABLE ListaCandidata_User CASCADE CONSTRAINTS;
DROP TABLE MesaVoto CASCADE CONSTRAINTS;
DROP TABLE UTILIZADORES CASCADE CONSTRAINTS;
DROP TABLE Voto CASCADE CONSTRAINTS;
DROP SEQUENCE depfac_incre;
DROP SEQUENCE eleiinfo_incre;
DROP SEQUENCE listacandidata_incre;
DROP SEQUENCE mesavoto_incre;
DROP SEQUENCE voto_incre;
CREATE TABLE DepFacInfo (ID number(10) NOT NULL, Faculdade char(256) NOT NULL, Departamento char(256) UNIQUE NOT NULL, PRIMARY KEY (ID));
CREATE TABLE EleicaoInfo (ID number(10) NOT NULL, DataInicio date NOT NULL, DataFim date NOT NULL, Titulo char(256) NOT NULL, Descricao char(256) NOT NULL, Estado number(1) NOT NULL, Tipo number(10) NOT NULL, PRIMARY KEY (ID));
CREATE TABLE EleicaoInfo_DepFacInfo (EleicaoInfoID number(10) NOT NULL, DepFacInfoID number(10) NOT NULL, PRIMARY KEY (EleicaoInfoID, DepFacInfoID));
CREATE TABLE ListaCandidata (ID number(10) NOT NULL, Tipo number(10) NOT NULL, Nome char(256) NOT NULL, Nvotos number(10) NOT NULL, EleicaoInfoID number(10) NOT NULL, PRIMARY KEY (ID));
CREATE TABLE ListaCandidata_User (ListaCandidataID number(10) NOT NULL, UserBI number(10) NOT NULL, PRIMARY KEY (ListaCandidataID, UserBI));
CREATE TABLE MesaVoto (ID number(10) NOT NULL, Nterminais number(10) NOT NULL, Estado number(1) NOT NULL, EleicaoInfoID number(10) NOT NULL, DepFacInfoID number(10) NOT NULL, Nvotos number(10) NOT NULL, BI1 number(10), BI2 number(10) , BI3 number(10) , PRIMARY KEY (ID));
CREATE TABLE UTILIZADORES (BI number(10) NOT NULL, Nome char(256) NOT NULL, Tipo number(1) NOT NULL, Password char(256) NOT NULL, ContatoTel number(9) NOT NULL, Morada char(256) NOT NULL, DataValBI date NOT NULL, DepFacInfoID number(10) NOT NULL, PRIMARY KEY (BI));
CREATE TABLE Voto (ID number(10) NOT NULL, DataVoto date NOT NULL, EleicaoInfoID number(10) NOT NULL, MesaVotoID number(10) NOT NULL, UserBI number(10) NOT NULL, PRIMARY KEY (ID));
ALTER TABLE ListaCandidata_User ADD CONSTRAINT FKListaCandi702187 FOREIGN KEY (ListaCandidataID) REFERENCES ListaCandidata (ID);
ALTER TABLE ListaCandidata_User ADD CONSTRAINT FKListaCandi904183 FOREIGN KEY (UserBI) REFERENCES UTILIZADORES (BI);
ALTER TABLE EleicaoInfo_DepFacInfo ADD CONSTRAINT FKEleicaoInf453267 FOREIGN KEY (EleicaoInfoID) REFERENCES EleicaoInfo (ID);
ALTER TABLE EleicaoInfo_DepFacInfo ADD CONSTRAINT FKEleicaoInf970159 FOREIGN KEY (DepFacInfoID) REFERENCES DepFacInfo (ID);
ALTER TABLE UTILIZADORES ADD CONSTRAINT pertence FOREIGN KEY (DepFacInfoID) REFERENCES DepFacInfo (ID);
ALTER TABLE Voto ADD CONSTRAINT pode FOREIGN KEY (UserBI) REFERENCES UTILIZADORES (BI);
ALTER TABLE Voto ADD CONSTRAINT tem1 FOREIGN KEY (EleicaoInfoID) REFERENCES EleicaoInfo (ID);
ALTER TABLE Voto ADD CONSTRAINT tem2 FOREIGN KEY (MesaVotoID) REFERENCES MesaVoto (ID);
ALTER TABLE ListaCandidata ADD CONSTRAINT tem3 FOREIGN KEY (EleicaoInfoID) REFERENCES EleicaoInfo (ID);
ALTER TABLE MesaVoto ADD CONSTRAINT tem5 FOREIGN KEY (EleicaoInfoID) REFERENCES EleicaoInfo (ID);
ALTER TABLE MesaVoto ADD CONSTRAINT tem6 FOREIGN KEY (DepFacInfoID) REFERENCES DepFacInfo (ID);
/*CREATE SEQUENCE depfac_incre START WITH 1 INCREMENT BY 1;
CREATE SEQUENCE eleiinfo_incre START WITH 1 INCREMENT BY 1;
CREATE SEQUENCE listacandidata_incre START WITH 1 INCREMENT BY 1;
CREATE SEQUENCE mesavoto_incre START WITH 1 INCREMENT BY 1;
CREATE SEQUENCE voto_incre START WITH 1 INCREMENT BY 1;
CREATE OR REPLACE TRIGGER depfac_incre_trigger
BEFORE INSERT
ON DepFacInfo
REFERENCING NEW AS NEW
FOR EACH ROW
BEGIN
if(:new.ID is null) then
SELECT depfac_incre.nextval
INTO :new.ID
FROM dual;
end if;
END;
CREATE OR REPLACE TRIGGER eleiinfo_incre_trigger
BEFORE INSERT
ON EleicaoInfo
REFERENCING NEW AS NEW
FOR EACH ROW
BEGIN
if(:new.ID is null) then
SELECT eleiinfo_incre.nextval
INTO :new.ID
FROM dual;
end if;
END;
CREATE OR REPLACE TRIGGER listacandidata_incre_trigger
BEFORE INSERT
ON ListaCandidata
REFERENCING NEW AS NEW
FOR EACH ROW
BEGIN
if(:new.ID is null) then
SELECT listacandidata_incre.nextval
INTO :new.ID
FROM dual;
end if;
END;
CREATE OR REPLACE TRIGGER mesavoto_incre_trigger
BEFORE INSERT
ON MesaVoto
REFERENCING NEW AS NEW
FOR EACH ROW
BEGIN
if(:new.ID is null) then
SELECT mesavoto_incre.nextval
INTO :new.ID
FROM dual;
end if;
END;
CREATE OR REPLACE TRIGGER voto_incre_trigger
BEFORE INSERT
ON Voto
REFERENCING NEW AS NEW
FOR EACH ROW
BEGIN
if(:new.ID is null) then
SELECT voto_incre.nextval
INTO :new.ID
FROM dual;
end if;
END;*/
CREATE VIEW vw_UTILIZADORES AS VWUTILIZADORES
SELECT * FROM UTILIZADORES;
/*
Drop TRIGGER Insertupdate;
CREATE TRIGGER Insertupdate
INSTEAD OF INSERT
ON vw_Utilizadores
BEGIN
IF EXISTS(SELECT * FROM UTILIZADORES WHERE BI=new.BI)
THEN
UPDATE UTILIZADORES SET NOME=:new.NOME , TIPO=:new.TIPO , PASSWORD=:<PASSWORD> , CONTATOTEL=:new.CONTATOTEL , MORADA=:new.MORADA , DATAVALBI=:new.DATAVALBI , DEPFACINFOID=:new.DEPFACINFOID WHERE BI=:new.BI
ELSE
INSERT INTO UTILIZADORES (BI , NOME , TIPO , PASSWORD , CONTATOTEL , MORADA , DATAVALBI , DEPFACINFOID) VALUES (:new.BI , :new.NOME , :new.TIPO , :new.PASSWORD , :new.<PASSWORD> , :new.MORADA , :new.DATAVALBI , :new.DEPFACINFOID);
END IF
END;
*/ |
<reponame>stonek4/IdolKpop
CREATE TABLE IF NOT EXISTS genres(
genre_id INT(11) NOT NULL AUTO_INCREMENT,
name VARCHAR(255) UNIQUE NOT NULL,
PRIMARY KEY(genre_id)
);
CREATE TABLE IF NOT EXISTS projects(
project_id INT(11) NOT NULL AUTO_INCREMENT,
name VARCHAR(255) NOT NULL,
description TEXT,
start_date DATE,
end_date DATE,
PRIMARY KEY(project_id)
);
CREATE TABLE IF NOT EXISTS movies(
movie_id INT(11) NOT NULL AUTO_INCREMENT,
name VARCHAR(255) NOT NULL,
release_date DATE,
PRIMARY KEY(movie_id)
);
CREATE TABLE IF NOT EXISTS tv_shows(
tv_show_id INT(11) NOT NULL AUTO_INCREMENT,
name VARCHAR(255) NOT NULL,
start_date DATE,
end_date DATE,
PRIMARY KEY(tv_show_id)
);
CREATE TABLE IF NOT EXISTS albums(
album_id INT(11) NOT NULL AUTO_INCREMENT,
name VARCHAR(255) NOT NULL,
album_art VARCHAR(255),
release_date DATE,
chart_place INT(11),
copies_sold INT(11),
num_songs INT(11),
PRIMARY KEY(album_id)
);
CREATE TABLE IF NOT EXISTS songs(
song_id INT(11) NOT NULL AUTO_INCREMENT,
name VARCHAR(255) NOT NULL,
release_date DATE,
track_num INT(11),
chart_place INT(11),
copies_sold INT(11),
album_id INT(11),
mv_link VARCHAR(255),
FOREIGN KEY(album_id) REFERENCES albums(album_id),
PRIMARY KEY(song_id)
);
CREATE TABLE IF NOT EXISTS partners(
partner_id INT(11) NOT NULL AUTO_INCREMENT,
name VARCHAR(255) NOT NULL,
PRIMARY KEY(partner_id)
);
CREATE TABLE IF NOT EXISTS labels(
label_id INT(11) NOT NULL AUTO_INCREMENT,
name VARCHAR(255) NOT NULL,
full_name VARCHAR(255),
korean_name VARCHAR(255),
founded DATE,
ended DATE,
owner VARCHAR(255),
official_site VARCHAR(255),
youtube_site VARCHAR(255),
instagram_site VARCHAR(255),
twitter_site VARCHAR(255),
daum_site VARCHAR(255),
facebook_site VARCHAR(255),
weibo_site VARCHAR(255),
audition_site VARCHAR(255),
wikipedia_site VARCHAR(255),
introduction_video VARCHAR(255),
synopsis TEXT,
house_number VARCHAR(255),
dong VARCHAR(255),
city VARCHAR(255),
metropolitan VARCHAR(255),
country VARCHAR(255),
slogan TEXT,
rss_feed VARCHAR(255),
revenue INT(11),
net_income INT(11),
company_type VARCHAR(255),
PRIMARY KEY(label_id)
);
CREATE TABLE IF NOT EXISTS acts(
act_id INT(11) NOT NULL AUTO_INCREMENT,
name VARCHAR(255) NOT NULL,
nickname VARCHAR(255),
korean_name VARCHAR(255),
fandom_name VARCHAR(255),
official_color VARCHAR(255),
founded DATE,
disbanded DATE,
manager VARCHAR(255),
official_site VARCHAR(255),
youtube_site VARCHAR(255),
instagram_site VARCHAR(255),
twitter_site VARCHAR(255),
daum_site VARCHAR(255),
facebook_site VARCHAR(255),
weibo_site VARCHAR(255),
wikipedia_site VARCHAR(255),
official_fan_site VARCHAR(255),
synopsis TEXT,
rss_feed VARCHAR(255),
gender VARCHAR(255),
PRIMARY KEY(act_id)
);
CREATE TABLE IF NOT EXISTS idols(
idol_id INT(11) NOT NULL AUTO_INCREMENT,
name VARCHAR(255) NOT NULL,
stage_name VARCHAR(255),
korean_name VARCHAR(255),
birthday DATE,
birth_city VARCHAR(255),
birth_country VARCHAR(255),
death DATE,
group_role VARCHAR(255),
official_site VARCHAR(255),
youtube_site VARCHAR(255),
instagram_site VARCHAR(255),
twitter_site VARCHAR(255),
daum_site VARCHAR(255),
facebook_site VARCHAR(255),
weibo_site VARCHAR(255),
wikipedia_site VARCHAR(255),
official_fan_site VARCHAR(255),
introduction_video VARCHAR(255),
synopsis TEXT,
rss_feed VARCHAR(255),
gender VARCHAR(255),
blood_type VARCHAR(255),
PRIMARY KEY(idol_id)
);
CREATE TABLE IF NOT EXISTS photos(
photo_id INT(11) NOT NULL AUTO_INCREMENT,
name VARCHAR(255),
description TEXT,
link VARCHAR(255),
label_id INT(11),
act_id INT(11),
idol_id INT(11),
FOREIGN KEY(label_id) REFERENCES labels(label_id),
FOREIGN KEY(act_id) REFERENCES acts(act_id),
FOREIGN KEY(idol_id) REFERENCES idols(idol_id),
PRIMARY KEY(photo_id)
);
CREATE TABLE IF NOT EXISTS music_shows(
music_show_id INT(11) NOT NULL AUTO_INCREMENT,
name VARCHAR(255) NOT NULL,
episode INT(11),
show_date DATE,
winning_act INT(11),
winning_idol INT(11),
tv_show_id INT(11),
FOREIGN KEY(winning_act) REFERENCES acts(act_id),
FOREIGN KEY(winning_idol) REFERENCES idols(idol_id),
FOREIGN KEY(tv_show_id) REFERENCES tv_shows(tv_show_id),
PRIMARY KEY(music_show_id, name, episode)
);
CREATE TABLE IF NOT EXISTS acts_idols(
idol_id INT(11) NOT NULL,
act_id INT(11) NOT NULL,
joined DATE NOT NULL,
separated DATE,
FOREIGN KEY(idol_id) REFERENCES idols(idol_id),
FOREIGN KEY(act_id) REFERENCES acts(act_id),
CONSTRAINT pk_acts_idols PRIMARY KEY(idol_id, act_id, joined)
);
CREATE TABLE IF NOT EXISTS acts_acts(
sub_act_id INT(11) NOT NULL,
parent_act_id INT(11) NOT NULL,
joined DATE NOT NULL,
separated DATE,
FOREIGN KEY(sub_act_id) REFERENCES acts(act_id),
FOREIGN KEY(parent_act_id) REFERENCES acts(act_id),
CONSTRAINT pk_acts_acts PRIMARY KEY(
parent_act_id,
sub_act_id,
joined
)
);
CREATE TABLE IF NOT EXISTS labels_acts(
act_id INT(11) NOT NULL,
label_id INT(11) NOT NULL,
joined DATE NOT NULL,
separated DATE,
FOREIGN KEY(act_id) REFERENCES acts(act_id),
FOREIGN KEY(label_id) REFERENCES labels(label_id),
CONSTRAINT pk_labels_acts PRIMARY KEY(act_id, label_id, joined)
);
CREATE TABLE IF NOT EXISTS labels_labels(
sub_label_id INT(11) NOT NULL,
parent_label_id INT(11) NOT NULL,
joined DATE NOT NULL,
separated DATE,
FOREIGN KEY(sub_label_id) REFERENCES labels(label_id),
FOREIGN KEY(parent_label_id) REFERENCES labels(label_id),
CONSTRAINT pk_labels_labels PRIMARY KEY(
parent_label_id,
sub_label_id,
joined
)
);
CREATE TABLE IF NOT EXISTS idols_songs(
idol_id INT(11) NOT NULL,
song_id INT(11) NOT NULL,
FOREIGN KEY(idol_id) REFERENCES idols(idol_id),
FOREIGN KEY(song_id) REFERENCES songs(song_id),
CONSTRAINT pk_songs_idols PRIMARY KEY(song_id, idol_id)
);
CREATE TABLE IF NOT EXISTS idols_albums(
idol_id INT(11) NOT NULL,
album_id INT(11) NOT NULL,
FOREIGN KEY(idol_id) REFERENCES idols(idol_id),
FOREIGN KEY(album_id) REFERENCES albums(album_id),
CONSTRAINT pk_albums_idols PRIMARY KEY(album_id, idol_id)
);
CREATE TABLE IF NOT EXISTS idols_partners(
idol_id INT(11) NOT NULL,
partner_id INT(11) NOT NULL,
FOREIGN KEY(idol_id) REFERENCES idols(idol_id),
FOREIGN KEY(partner_id) REFERENCES partners(partner_id),
CONSTRAINT pk_partners_idols PRIMARY KEY(partner_id, idol_id)
);
CREATE TABLE IF NOT EXISTS idols_tv_shows(
idol_id INT(11) NOT NULL,
tv_show_id INT(11) NOT NULL,
FOREIGN KEY(idol_id) REFERENCES idols(idol_id),
FOREIGN KEY(tv_show_id) REFERENCES tv_shows(tv_show_id),
CONSTRAINT pk_tv_shows_idols PRIMARY KEY(tv_show_id, idol_id)
);
CREATE TABLE IF NOT EXISTS idols_movies(
idol_id INT(11) NOT NULL,
movie_id INT(11) NOT NULL,
FOREIGN KEY(idol_id) REFERENCES idols(idol_id),
FOREIGN KEY(movie_id) REFERENCES movies(movie_id),
CONSTRAINT pk_movies_idols PRIMARY KEY(movie_id, idol_id)
);
CREATE TABLE IF NOT EXISTS idols_projects(
idol_id INT(11) NOT NULL,
project_id INT(11) NOT NULL,
FOREIGN KEY(idol_id) REFERENCES idols(idol_id),
FOREIGN KEY(project_id) REFERENCES projects(project_id),
CONSTRAINT pk_projects_idols PRIMARY KEY(project_id, idol_id)
);
CREATE TABLE IF NOT EXISTS idols_genres(
idol_id INT(11) NOT NULL,
genre_id INT(11) NOT NULL,
FOREIGN KEY(idol_id) REFERENCES idols(idol_id),
FOREIGN KEY(genre_id) REFERENCES genres(genre_id),
CONSTRAINT pk_genres_idols PRIMARY KEY(genre_id, idol_id)
);
CREATE TABLE IF NOT EXISTS acts_songs(
act_id INT(11) NOT NULL,
song_id INT(11) NOT NULL,
FOREIGN KEY(act_id) REFERENCES acts(act_id),
FOREIGN KEY(song_id) REFERENCES songs(song_id),
CONSTRAINT pk_songs_acts PRIMARY KEY(song_id, act_id)
);
CREATE TABLE IF NOT EXISTS acts_albums(
act_id INT(11) NOT NULL,
album_id INT(11) NOT NULL,
FOREIGN KEY(act_id) REFERENCES acts(act_id),
FOREIGN KEY(album_id) REFERENCES albums(album_id),
CONSTRAINT pk_albums_acts PRIMARY KEY(album_id, act_id)
);
CREATE TABLE IF NOT EXISTS acts_partners(
act_id INT(11) NOT NULL,
partner_id INT(11) NOT NULL,
FOREIGN KEY(act_id) REFERENCES acts(act_id),
FOREIGN KEY(partner_id) REFERENCES partners(partner_id),
CONSTRAINT pk_partners_acts PRIMARY KEY(partner_id, act_id)
);
CREATE TABLE IF NOT EXISTS acts_tv_shows(
act_id INT(11) NOT NULL,
tv_show_id INT(11) NOT NULL,
FOREIGN KEY(act_id) REFERENCES acts(act_id),
FOREIGN KEY(tv_show_id) REFERENCES tv_shows(tv_show_id),
CONSTRAINT pk_tv_shows_acts PRIMARY KEY(tv_show_id, act_id)
);
CREATE TABLE IF NOT EXISTS acts_movies(
act_id INT(11) NOT NULL,
movie_id INT(11) NOT NULL,
FOREIGN KEY(act_id) REFERENCES acts(act_id),
FOREIGN KEY(movie_id) REFERENCES movies(movie_id),
CONSTRAINT pk_movies_acts PRIMARY KEY(movie_id, act_id)
);
CREATE TABLE IF NOT EXISTS acts_projects(
act_id INT(11) NOT NULL,
project_id INT(11) NOT NULL,
FOREIGN KEY(act_id) REFERENCES acts(act_id),
FOREIGN KEY(project_id) REFERENCES projects(project_id),
CONSTRAINT pk_projects_acts PRIMARY KEY(project_id, act_id)
);
CREATE TABLE IF NOT EXISTS acts_genres(
act_id INT(11) NOT NULL,
genre_id INT(11) NOT NULL,
FOREIGN KEY(act_id) REFERENCES acts(act_id),
FOREIGN KEY(genre_id) REFERENCES genres(genre_id),
CONSTRAINT pk_genres_acts PRIMARY KEY(genre_id, act_id)
);
CREATE TABLE IF NOT EXISTS labels_songs(
label_id INT(11) NOT NULL,
song_id INT(11) NOT NULL,
FOREIGN KEY(label_id) REFERENCES labels(label_id),
FOREIGN KEY(song_id) REFERENCES songs(song_id),
CONSTRAINT pk_songs_labels PRIMARY KEY(song_id, label_id)
);
CREATE TABLE IF NOT EXISTS labels_albums(
label_id INT(11) NOT NULL,
album_id INT(11) NOT NULL,
FOREIGN KEY(label_id) REFERENCES labels(label_id),
FOREIGN KEY(album_id) REFERENCES albums(album_id),
CONSTRAINT pk_albums_labels PRIMARY KEY(album_id, label_id)
);
CREATE TABLE IF NOT EXISTS labels_partners(
label_id INT(11) NOT NULL,
partner_id INT(11) NOT NULL,
FOREIGN KEY(label_id) REFERENCES labels(label_id),
FOREIGN KEY(partner_id) REFERENCES partners(partner_id),
CONSTRAINT pk_partners_labels PRIMARY KEY(partner_id, label_id)
);
CREATE TABLE IF NOT EXISTS labels_tv_shows(
label_id INT(11) NOT NULL,
tv_show_id INT(11) NOT NULL,
FOREIGN KEY(label_id) REFERENCES labels(label_id),
FOREIGN KEY(tv_show_id) REFERENCES tv_shows(tv_show_id),
CONSTRAINT pk_tv_shows_labels PRIMARY KEY(tv_show_id, label_id)
);
CREATE TABLE IF NOT EXISTS labels_movies(
label_id INT(11) NOT NULL,
movie_id INT(11) NOT NULL,
FOREIGN KEY(label_id) REFERENCES labels(label_id),
FOREIGN KEY(movie_id) REFERENCES movies(movie_id),
CONSTRAINT pk_movies_labels PRIMARY KEY(movie_id, label_id)
);
CREATE TABLE IF NOT EXISTS labels_projects(
label_id INT(11) NOT NULL,
project_id INT(11) NOT NULL,
FOREIGN KEY(label_id) REFERENCES labels(label_id),
FOREIGN KEY(project_id) REFERENCES projects(project_id),
CONSTRAINT pk_projects_labels PRIMARY KEY(project_id, label_id)
);
|
<gh_stars>0
-- phpMyAdmin SQL Dump
-- version 4.8.5
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Sep 10, 2021 at 01:42 AM
-- Server version: 5.6.44
-- PHP Version: 7.2.7
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: `deepafar_depa`
--
-- --------------------------------------------------------
--
-- Table structure for table `family_business`
--
CREATE TABLE `family_business` (
`id` int(11) NOT NULL,
`family_id` int(11) DEFAULT NULL,
`member_id` int(11) DEFAULT NULL,
`company_name` varchar(200) DEFAULT NULL,
`designation` varchar(100) DEFAULT NULL,
`address_1` text,
`address_2` varchar(200) DEFAULT NULL,
`pincode` varchar(10) DEFAULT NULL,
`area_id` int(11) DEFAULT NULL,
`email` varchar(100) DEFAULT NULL,
`contact` varchar(200) NOT NULL,
`website` varchar(250) DEFAULT NULL,
`deleted` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `family_business`
--
INSERT INTO `family_business` (`id`, `family_id`, `member_id`, `company_name`, `designation`, `address_1`, `address_2`, `pincode`, `area_id`, `email`, `contact`, `website`, `deleted`) VALUES
(1, 148, NULL, 'Bharatkshetra Saree Pvt. Ltd.', '', '73, Vasant Smruti, Dadasaheb Falke Rd.,', 'Dadar ( E), Mumbai', '400014', NULL, '', '', '', 0),
(2, 149, NULL, 'Tanish Fashion', '', '30, Irani Chawl, Gokhle Rd. South', 'Dadar (W), Mumbai', '400025', NULL, '', '', '', 0),
(3, 150, NULL, 'Chhadwa Jeneral Stores', '', 'Raghunath Nagar, Radhabai Chawl no-1-2', ' Thane-4.', '', NULL, '', '', '', 0),
(4, 151, NULL, '<NAME>', '', 'Rd. No-27, Shanti Nagar, Waghle Estate', 'Thane (W)', '400604', NULL, '', '', '', 0),
(5, 152, NULL, 'Reshning Shop', '', '<NAME>, Varli Pada, Waghle Estate', 'Thane (W)', '400604', NULL, '', '', '', 0),
(6, 154, NULL, 'Nirmal Enterprise', '', 'Bajargate Street, Fort', 'V.T., Mumbai', '400001', NULL, '', '', '', 0),
(7, 154, NULL, 'Sunil Jewellers', '', 'Laram Shopping Center', 'Andheri (W), Mumbai', '', NULL, '', '', '', 0),
(8, 158, NULL, 'Bhavik Sweets & Farsan', '', 'F-304, Koyna Bldg., 3rd Floor, Shantivan', 'Borivali ( E)', '400066', NULL, '', '', '', 0),
(9, 159, NULL, 'Classic Bindi', '', 'K.S.4, 2nd floor, Centerone Mall, Sector 30-A', '<NAME>', '400705', NULL, '', '', '', 0),
(10, 161, NULL, '<NAME>', '', '5, <NAME>, Dr. Ambedkar Rd.,', '<NAME>., Mumbai', '400012', NULL, '', '', '', 0),
(11, 164, NULL, 'Classic Family Show Room', '', 'Shrirampur, Main Rd.', '<NAME>aharastra', '413 709', NULL, '', '', '', 0),
(12, 166, NULL, '<NAME>', '', '6, J.B. Shah Market', '<NAME>, Mumbai', '400009', NULL, '', '', '', 0),
(13, 167, NULL, '<NAME>', '', 'E-61, APMC Market, Vashi,', '<NAME>', '', NULL, '', '', '', 0),
(14, 168, NULL, 'Niranja Jeneral Stores', '', 'L.B.S. Road', 'Ghatkopar (W), Mumbai', '', NULL, '', '', '', 0),
(15, 169, NULL, 'Liberal', '', 'Shivaji Chowk', 'Kalyan (W), Thana', '', NULL, '', '', '', 0),
(16, 171, NULL, 'Blue Star Tiles', '', 'Survey No-446/3, Masaat', 'Selvas (Dadra nagar haveli), Gujarat', '', NULL, '', '', '', 0),
(17, 172, NULL, 'Heera House', '', 'Gufa Road', 'Jogeshwari ( E), Mumbai', '400060', NULL, '', '', '', 0),
(18, 173, NULL, 'Top 10 Color Anodising', '', 'Sfurti Soc., Plot no-12, Vaishat pada No-2', 'Malad ( E), Mumbai', '400097', NULL, '', '', '', 0),
(19, 174, NULL, 'Navkar Coating', '', 'Sfurti Soc., Near Mallika Hotel, Pathanwadi', 'Malad ( E), Mumbai', '', NULL, '', '', '', 0),
(20, 176, NULL, 'Chheda Stores', '', 'B-6, Ananddham Soc., Jaku Club, Prabhat Colony Rd.,', 'Santacruz ( E), Mumbai', '400055', NULL, '', '', '', 0),
(21, 177, NULL, 'Suvidha Complete Family Shop', '', 'Vasant Niwas, Ranade Rd.', 'Dadar (W), Mumbai', '400028', NULL, '', '', '', 0),
(22, 178, NULL, 'Prezam Glass', '', 'Palan Sojpal Bldg.,Near D`silva School, S.K. Bole Rd.,', 'Dadar (W), Mumbai', '400028', NULL, '', '', '', 0),
(23, 179, NULL, 'Shraddha Collection', '', 'Mahendra Mension, Opp. Khokha Market', 'Vile Parle (W), Mumbai', '400056', NULL, '', '', '', 0),
(24, 180, NULL, 'Blue Star Tiles', '', 'Hira Tiles Keve Rd.', 'Jogeshwari( E), Mumbai', '400060', NULL, '', '', '', 0),
(25, 181, NULL, 'Chheda Investment and Brocking', '', '301, Shivashraya Homes, A-1, Parvati Park Soc.,', '<NAME>', '390008', NULL, '', '', '', 0),
(26, 184, NULL, '<NAME> - NX', '', '15-16, Nakshatra Cine Shopi, Rande Rd.', 'Dadar (W), Mumbai', '400028', NULL, '', '', '', 0),
(27, 185, NULL, '<NAME>', '', '402, Kashmiri bldg. No-2, Maj<NAME>, Majas Rd.', 'Jogeshwari ( E), Mumbai', '400060', NULL, '', '', '', 0),
(28, 185, NULL, 'Sheetal Enterprises', '', 'Shop No-2, Sakinaka, A. G. Link Rd.', 'Andheri ( E), Mumbai', '400072', NULL, '', '', '', 0),
(29, 187, NULL, 'Furia Jeneral Stores', '', '18,19, Gupta Market, Station Rd.', 'Malad (W), Mumbai', '400064', NULL, '', '', '', 0),
(30, 188, NULL, 'Furia Jeneral Stores', '', '18,19, Gupta Market, Station Rd.', 'Malad (W), Mumbai', '400064', NULL, '', '', '', 0),
(31, 189, NULL, 'Furia Jeneral Stores', '', '18,19, Gupta Market, Station Rd.', 'Malad (W), Mumbai', '400064', NULL, '', '', '', 0),
(32, 190, NULL, 'Furia Jeneral Stores', '', '18,19, Gupta Market, Station Rd.', 'Malad (W), Mumbai', '400064', NULL, '', '', '', 0),
(33, 191, NULL, 'Furia Jeneral Stores', '', 'C-15, <NAME> Bldg., Cabin Cross Rd.', 'Bhayander( E), Thana', '401105', NULL, '', '', '', 0),
(34, 192, NULL, 'Toy Stores', '', 'B-605, Sarvodaya Anklave, Opp. Canara Bank, New Golden Nest', 'Bhayander( E), Thana', '', NULL, '', '', '', 0),
(35, 193, NULL, 'Zee Novelty', '', '31/C, Shyam Kamal Agarwal Market, Near Station', 'Parla ( E), Mumbai', '', NULL, '', '', '', 0),
(36, 195, NULL, 'Pearl Kids Wear', '', '6/A, Shankar Gali, Natraj Market, S.V. Rd.', 'Malad (W), Mumbai', '400064', NULL, '', '', '', 0),
(37, 196, NULL, 'Prabhat Stores', '', 'Ambawadi, Opp. Masjid, S.V. Rd.', 'Dahisar ( E), Mumbai', '400068', NULL, '', '', '', 0),
(38, 197, NULL, 'Gangar Jeneral Stores', '', 'Shop No-2, Ghanshyam Dube Chawl, D.N. Dubey Rd.', 'Dahisar ( E), Mumbai', '400068', NULL, '', '', '', 0),
(39, 198, NULL, 'Navin Novelty Center', '', 'Laxmi Colony, <NAME>, Ravan Pada, ', 'Dahisar ( E), Mumbai', '400068', NULL, '', '', '', 0),
(40, 200, NULL, 'Gala Textiles', '', '42, Mahavir Galli, Hindmata Cloth Market', 'Dadar ( E), Mumbai', '400014', NULL, '', '', '', 0),
(41, 201, NULL, 'Colour Wonder', '', 'D-23, Jay Matadi Complex, Hanuman Complex, Kalher', 'Bhivandi, Thana.', '', NULL, '', '', '', 0),
(42, 202, NULL, 'Shrushti Fashion', '', 'Shop No-1, Parekh Bldg., Parel S.T. Depot, Sayani Rd.', 'Parel, Mumbai', '400033', NULL, '', '', '', 0),
(43, 203, NULL, 'Anjali Febrics', '', '<NAME>, Room No-1, Fillwala Rd., Near Hotel Rajesh', 'Elphistone Rd., (W), Mumbai', '400013', NULL, '', '', '', 0),
(44, 204, NULL, 'Soham Collection', '', 'Bhandarkar Rd., ', '<NAME>', '400019', NULL, '', '', '', 0),
(45, 205, NULL, 'Cambrige', '', 'Patel Shopping Center, Opp. Subway, Sainath Rd.', 'Malad (W), Mumbai', '400064', NULL, '', '', '', 0),
(46, 206, NULL, 'Bhulani Steel', '', 'Sativali, Tungareshwar Rd.', 'Vasai ( E), Thana', '', NULL, '', '', '', 0),
(47, 207, NULL, 'Gala Jeneral Stores', '', 'Shop No-4, Mukri Bldg., Takoli Mohalla, Juna Belapur Rd.', 'Kalwa (W), Mumbai', '400605', NULL, '', '', '', 0),
(48, 208, NULL, 'Furniture Wholesale & Retail', '', 'Pisoli, Kondhva', 'Pune', '', NULL, '', '', '', 0),
(49, 208, NULL, 'Parshav Security and Commodity', '', '', '', '', NULL, '', '', '', 0),
(50, 209, NULL, '<NAME>', '', '688, Shop No-6, Beg Mohd. Chawl, <NAME>', 'Byculla (W), Mumbai', '400011', NULL, '', '', '', 0),
(51, 211, NULL, 'M.M. Enterprises', '', 'Turbhe', '<NAME>', '', NULL, '', '', '', 0),
(52, 211, NULL, 'Balaji Stone Transport', '', 'Turbhe', '<NAME>', '', NULL, '', '', '', 0),
(53, 211, NULL, '<NAME>', '', 'Bhivandi', 'Paddha', '', NULL, '', '', '', 0),
(54, 212, NULL, 'Commet Industries', '', 'Sharma Industrial Estate, Gala No-3, Udyog Bhavan, Valbhat Rd.', 'Goregaon ( E), M-56.', '400056', NULL, '', '', '', 0),
(55, 213, NULL, '<NAME>', '', '155/2-E, Gautam Market, Opp. Surajwadi Mandir. Panjarapod Rd.', 'Mumbai', '400004', NULL, '', '', '', 0),
(56, 218, NULL, '<NAME>', '', '2-F, Bldg.-155, Gautam Market, Panjarapod Main Rd.', 'Mumbai', '400004', NULL, '', '', '', 0),
(57, 219, NULL, 'Bhakti Photo Studio', '', 'Jivdani Bldg., Shop No-2 Bazar Peth, Agasi Rd.', 'Virar (W), thana', '', NULL, '', '', '', 0),
(58, 220, NULL, 'Shree Shah Goods Transport Co.', '', 'Padam Complex, Sivam Rd.', 'Chindwada, M.P.', '480002', NULL, '', '', '', 0),
(59, 221, NULL, 'Shree Shah Goods Transport Co.', '', 'Padam Complex, Sivam Rd.', 'Chindwada, M.P.', '480002', NULL, '', '', '', 0),
(60, 222, NULL, '<NAME>', '', 'Shop No-4, Rajdhani Compound, Near Malkani Tabela, Bhivandi Rd.', 'Vasai, Thana-401201', '401201', NULL, '', '', '', 0),
(61, 223, NULL, 'Masti Khor Collection', '', '4, Arvind Villa, Opp. Station', 'Ghatkopar (W), Mumbai', '400086', NULL, '', '', '', 0),
(62, 224, NULL, 'Civil Construction', '', '', '', '', NULL, '', '', '', 0),
(63, 225, NULL, 'Punit Mart', '', 'A/7, Akanksha Garden, Manpada, Jai Bhavani Nagar Rd.', 'Thana (W)', '', NULL, '', '', '', 0),
(64, 227, NULL, 'Esha', '', '9, Nilkanth Plaza, Plot No-53, C.H.S., Sector-40, Opp. Dmart', 'Seawood, <NAME>', '400706', NULL, '', '', '', 0),
(65, 229, NULL, 'Maharaja Shirts Momai Collection', '', 'Amardeep Bldg.-1, Shop-5, Shivaji Nagar, Mulund Check Naka', 'Thana', '400604', NULL, '', '', '', 0),
(66, 230, NULL, 'Cutleri Stores', '', 'Room No-111, Nasirbhai Chawl, Janta Colony, Prem Nagar, Market Rd.', 'Jogeshwari ( E), Mumbai', '400060', NULL, '', '', '', 0),
(67, 232, NULL, 'Mahavir Optics', '', 'Shop No-8, Sursha Apartment, V.N. purav Marg', 'Chunabhatti ( E), Mumbai', '', NULL, '', '', '', 0),
(68, 233, NULL, 'C/o. Western Enterprise', '', 'B/6, A-1, Satyam Co-op. H.S.L., Station Rd.', 'Nalasopara(W), Thana', '401203', NULL, '', '', '', 0),
(69, 234, NULL, 'Prem Wearhousing Co. Pvt. Ltd.', '', 'Prem Estate, Sant Savta Rd. No-1', 'Mazgaon, Mumbai', '400010', NULL, '', '', '', 0),
(70, 235, NULL, 'Ramesh Transport', '', 'R.M.T. Office Box-19, APMC Market', 'Vashi, <NAME>', '400703', NULL, '', '', '', 0),
(71, 237, NULL, 'Ramesh Transport', '', 'R.M.T. Office Box-19, APMC Market', '<NAME>', '400703', NULL, '', '', '', 0),
(72, 239, NULL, 'Chandan Stores', '', 'Shop N-4-5, Shreepal Chhaya Soc., Chembur Naka', 'Chembur, Mumbai', '400071', NULL, '', '', '', 0),
(73, 240, NULL, 'Pooja Family Shop', '', 'Bhaji Market, Station Rd.', 'Dombivali ( E), Thana.', '', NULL, '', '', '', 0),
(74, 241, NULL, 'Ramesh Old Paper Mart', '', '05, Sita Bhavan, Thakurwadi, Dindayal Cross Rd.', 'Dombivali (W), Thana', '421202', NULL, '', '', '', 0),
(75, 242, NULL, 'Arya Old Paper Mart', '', 'Shop No-2, Devi Chowk', 'Dombivali (W), Thana', '421202', NULL, '', '', '', 0),
(76, 243, NULL, 'Chirag Transport', '', '', 'Dombivali ( E), Thana.', '', NULL, '', '', '', 0),
(77, 245, NULL, 'G<NAME>', '', 'Chandresh Manohar Bldg., Lodha Heaven, kalyan Sheel Rd.', 'Dombivali ( E), Thana.', '', NULL, '', '', '', 0),
(78, 246, NULL, 'Pelhar Automobile', '', 'National highway Rd. No-8, Mumbai Ahmadabad Highway, Vasai Fata', 'Vasai ( E), Thana', '', NULL, '', '', '', 0),
(79, 247, NULL, 'Pelhar Automobile', '', 'National highway Rd. No-8, Mumbai Ahmadabad Highway, Vasai Fata', 'Vasai ( E), Thana', '', NULL, '', '', '', 0),
(80, 250, NULL, 'Ramdev Jeneral Stores', '', 'Shop-2, Ravikiran Bldg., Kasturba Rd.-3', 'Borivali ( E), Mumbai', '400066', NULL, '', '', '', 0),
(81, 251, NULL, 'Pritesh Estate agent', '', 'Shop No-1, Akashdeep, Govind nagar, Sodawala Lane', 'Borivali (W), Mumbai', '', NULL, '', '', '', 0),
(82, 252, NULL, 'Maru Jeneral stores', '', 'A-wing, 2-3, Girirath Co-o-. Hou. Soc. Ltd., Carter Rd-3.', 'Borivali ( E)', '400066', NULL, '', '', '', 0),
(83, 253, NULL, 'J.W. Fashion', '', 'Gala No-6, 144, Ashok Mill Compound, Thakkar Industry', 'Sion, Mumbai', '', NULL, '', '', '', 0),
(84, 254, NULL, 'Maru Jeneral stores', '', '183/2816, Tagore Nagar, group No-8-B', 'Vikroli ( E), Mumbai', '400083', NULL, '', '', '', 0),
(85, 255, NULL, '<NAME>', '', '4, Jayshree Niwas, Parthli Rd, Gogras wadi', 'Dombivali ( E)', '421201', NULL, '', '', '', 0),
(86, 256, NULL, 'All India Crime Reformers Organization', '', 'C-8, Laxman Park, Chander Nagar', 'Dehli', '110051', NULL, '', '', '', 0),
(87, 257, NULL, 'Maru P.U.C. center', '', 'Station Rd.', 'Wadala (W), Mumbai', '400031', NULL, '', '', '', 0),
(88, 261, NULL, 'Swastik Book Stall', '', 'J.M. Shopping Center, Opp. R.P.F., Vartak Rd.', 'Virar (W), Thana', '401303', NULL, '', '', '', 0),
(89, 262, NULL, 'Avani Telecom', '', '2/8, Laxmibaug, Agarbazar, S.K. Bole Rd.', 'Dadar (W), Mumbai', '400028', NULL, '', '', '', 0),
(90, 263, NULL, 'Janta Readymade Stores', '', 'GALA No--345, Shivapur Peth, Akluj', 'Solapur, Maharashtra', '413101', NULL, '', '', '', 0),
(91, 265, NULL, 'Vital Electronics and Me. Co.', '', 'EL-104, Electric Zone, Road-A/17, TTC, MIDC', 'Mahape, <NAME>', '400710', NULL, '', '', '', 0),
(92, 267, NULL, 'A-1 Selection', '', 'Gala no-2, pandit Bldg., Opp. Railway Station', 'Safala ( E), Thana', '401102', NULL, '', '', '', 0),
(93, 268, NULL, 'King Tailors', '', 'Pandit Market, Tandulwadi Rd., Umberpada, Palghar', 'Safala, Thana', '401102', NULL, '', '', '', 0),
(94, 269, NULL, 'Wow Gift Shop', '', 'B-40, Shanti Ganga Apartment, Opp. Railway Station', 'Bhayander ( E), Thana', '', NULL, '', '', '', 0),
(95, 271, NULL, 'Garment Supply (Semi Wholesale)', '', '7/245, Subhash Nagar', 'Chembur, Mumbai', '400071', NULL, '', '', '', 0),
(96, 272, NULL, 'Bhavini Books And Novelties', '', 'Shop-2, <NAME>, Plot-233, Sector-22', '<NAME>, <NAME>', '400705', NULL, '', '', '', 0),
(97, 277, NULL, 'Bhanu estate Agent', '', 'Shop-18, Kent Garden, BMC Market, T.P.S. Rd.', 'Borivali (W), Mumbai', '400092', NULL, '', '', '', 0),
(98, 278, NULL, 'Bra Vin International', '', '308 Wadala Gruh Udhyog Bhavan, Naigam Cross Rd.', 'Dadar, Mumbai', '400031', NULL, '', '', '', 0),
(99, 280, NULL, 'Palak Corporation', '', '409, Shree Samarth Plaza Bldg., Opp. Mulund Station, Jawahar Nehru Rd', 'Mulund (W), Mumbai', '', NULL, '', '', '', 0),
(100, 282, NULL, 'Neptune Builders & Developers', '', 'Karma Stambh bldg., 4th Floor, LBS Rd.', 'Vikhroli (W), Mumbai', '400078', NULL, '', '', '', 0),
(101, 283, NULL, 'Take me Apral', '', 'Virchand Niwas, Room No-86, 3rd Floor, A.D. Marg', 'sewree (W), Mumbai', '400015', NULL, '', '', '', 0),
(102, 285, NULL, 'M.V. Enterprises', '', '21, Jogani Ind. Estate, Tulsi Pipe Rd.', 'Dadar (W), Mumbai', '400028', NULL, '', '', '', 0),
(103, 286, NULL, 'M.V. Enterprises', '', '21, Jogani Ind. Estate, Tulsi Pipe Rd.', 'Dadar (W), Mumbai', '400028', NULL, '', '', '', 0),
(104, 287, NULL, 'Super take', '', 'Lether Work, Malvani Colony, gate No-8.', 'Malad (W), Thana.', '401107', NULL, '', '', '', 0),
(105, 288, NULL, 'Ramesh Stores', '', 'Shop No-7, Opp. Railway Station, Tandulwadi Rd.', 'Saphala ( E), Thana', '401102', NULL, '', '', '', 0),
(106, 289, NULL, 'Ramesh Stores', '', 'Jaideep Mension, Opp. Railway Station, Tandulwadi Rd.', 'Saphala ( E), Thana', '401102', NULL, '', '', '', 0),
(107, 290, NULL, 'Om Mobile, Kinjal Farsan Mart', '', 'Shop-5, Dada Saheb Pandit Market, Palghar, umberpada', 'Saphala ( E), Thana', '401102', NULL, '', '', '', 0),
(108, 292, NULL, '<NAME>', '', 'Saphala, Palghar, Umberpada', 'Sphala ( E), Thana', '401102', NULL, '', '', '', 0),
(109, 293, NULL, 'Royal Chemist', '', 'Sagar Mension, 40 Bhulabhai Desai Rd.', 'Mumbai', '400026', NULL, '', '', '', 0),
(110, 297, NULL, 'Kiran Stores', '', 'Shop No-10-11, Arunodaya Shopping Centre, Near Ajanta Talkies', 'Borivali (W), Mumbai', '', NULL, '', '', '', 0),
(111, 298, NULL, '<NAME>', '', '16, Kazi Saiyad Street, Saak Gali', 'Mumbai', '400009', NULL, '', '', '', 0),
(112, 299, NULL, 'Kalpana Enterprises', '', 'Room no-1, Budhia Ravaiya Chawl, Sahar Rd.', '<NAME> ( E), Mumbai', '400057', NULL, '', '', '', 0),
(113, 301, NULL, 'R.K. Enterprise', '', '154, Behind Tulsiwadi Post Office, New Aproch Rd.', 'Tardeo, Mumbai', '400034', NULL, '', '', '', 0),
(114, 302, NULL, 'Mahavir Stores', '', 'Shop No-8, Forjet Tarrace, Forjet Hill Rd.', 'Tar<NAME>umbai', '400036', NULL, '', '', '', 0),
(115, 304, NULL, 'Milan Agency', '', 'New Popatlal Chawl, P.L. Kar<NAME> Marg', 'Dadar (W), Mumbai', '400028', NULL, '', '', '', 0),
(116, 305, NULL, 'Milan Agency', '', 'New Popatlal Chawl, P.L. Karle Guruji Marg, S Lane', 'Dadar (W), Mumbai', '400028', NULL, '', '', '', 0),
(117, 306, NULL, 'Milan Sweet & Farsan Mart', '', 'Opp. Shantidoot Hotel, Dr. <NAME>', 'H<NAME>', '400014', NULL, '', '', '', 0),
(118, 309, NULL, 'Hemant Agency', '', 'Irani Building, Sayani Road,', 'Dadar (West)', '400025', NULL, '', '', '', 0),
(119, 310, NULL, 'Nilam Agency', '', '101, <NAME>, S.K.Bole Road, ', 'Dadar (West)', '400028', NULL, '', '', '', 0),
(120, 311, NULL, 'Sonal & X', '', 'Shop No 3, RavatMansion, N.C. Kelkar Road, ', 'Dadar (West)', '400028', NULL, '', '', '', 0),
(121, 312, NULL, 'Sonal (Western Outfit Shop)', '', '3/5, Khandke Building, N.C. Kelkar Road, ', 'Dadar (West)', '400028', NULL, '', '', '', 0),
(122, 313, NULL, 'Talkshi Narshi Store', '', 'H-1, <NAME>, ', 'Chembur', '400071', NULL, '', '', '', 0),
(123, 314, NULL, 'Talkshi Narshi Store', '', 'H-1, <NAME>, Ghatla, ', 'Chembur', '400071', NULL, '', '', '', 0),
(124, 315, NULL, 'Suvidha', '', 'Vasant Niwas, Near Dadar Railway Station, Ranade Road', 'Dadar (West)', '400028', NULL, '', '', '', 0),
(125, 316, NULL, 'Suvidha', '', 'Vasant Niwas, Near Dadar Railway Station, Ranade Road', 'Dadar (West)', '400028', NULL, '', '', '', 0),
(126, 317, NULL, 'Suvidha', '', 'Vasant Niwas, Near Dadar Railway Station, Ranade Road', 'Dadar (West)', '400028', NULL, '', '', '', 0),
(127, 318, NULL, 'Suvidha', '', 'Vasant Niwas, Near Dadar Railway Station, Ranade Road', 'Dadar (West)', '400028', NULL, '', '', '', 0),
(128, 320, NULL, 'Kala Kendra ANX', '', 'Rushabh Apartment, Prarthana Samaj, Opp Harkisandas Hospital,', 'Charni Road (East)', '', NULL, '', '', '', 0),
(129, 322, NULL, 'Toy', '', '', '', '', NULL, '', '', '', 0),
(130, 324, NULL, 'Feelings Readymade', '', 'Shop no 35, Goyal Shopping Center, ', 'Borivali (West)', '', NULL, '', '', '', 0),
(131, 325, NULL, '<NAME>', '', '<NAME>, <NAME>', 'Kutch - Moti Khakhar', '370435', NULL, '', '', '', 0),
(132, 327, NULL, 'Ramdev Group', '', 'Amizarna Apartment, Amiraj Bldg., <NAME>, S.V. Rd.', 'Dahisar ( E), Mumbai', '400068', NULL, '', '', '', 0),
(133, 328, NULL, '<NAME>', '', 'Babunt Chawl, Room No-15, K.P. Tailor, Near Fedral Bank', 'Dadar (W), Mumbai', '', NULL, '', '', '', 0),
(134, 329, NULL, 'Sejal Jeneral Stores', '', 'Bauddh Parnakuti, Kajupada, Pipe Line', 'Kurla (W), Mumbai', '400072', NULL, '', '', '', 0),
(135, 330, NULL, 'Ramdev Estate Agent', '', '', '', '', NULL, '', '', '', 0),
(136, 331, NULL, 'Kadpaa', '', '', '', '', NULL, '', '', '', 0),
(137, 332, NULL, 'Paras Oil Depo', '', 'Plot No 17, Shailesh Nagar, Karjat - Kalyan Road, Neral', 'Neral - Karjet', '', NULL, '', '', '', 0),
(138, 333, NULL, 'Jekin Corporation', '', 'Saint Paul Street, Hindmata', 'Dadar (East)', '400014', NULL, '', '', '', 0),
(139, 334, NULL, 'Sohail Textiles', '', 'Ismail Terrace, Saint Paul Street, Hindmata', 'Dadar (East)', '400014', NULL, '', '', '', 0),
(140, 335, NULL, '<NAME>', '', '64-E(B), 41, 3rd Floor, Dhabliwala Building, Hanuman Galli, Kalbadevi', 'Kalbadevi', '400002', NULL, '', '', '', 0),
(141, 336, NULL, 'Secret Beauty', '', '11, Nagari Building, 2nd Hasnabad Lane,', 'Santacruz (West)', '400054', NULL, '', '', '', 0),
(142, 337, NULL, 'Jekin Corporation', '', '152, Agarwal Niwas, Shop No 6, Saint Paul Street, Back Hindmata Mall, Hindmata', 'Dadar (East)', '400014', NULL, '', '', '', 0),
(143, 338, NULL, 'Shanti Store', '', '1, Bhari Chawl, Kajupada Pipeline,', 'Kurla (West)', '400072', NULL, '', '', '', 0),
(144, 340, NULL, 'Asian Store', '', '807, Imperial Mahal, Khodar Circle, Dr Ambedkar Road,', 'Dadar (East)', '400014', NULL, '', '', '', 0),
(145, 340, NULL, 'Total Sports', '', '806, Imperial Mahal, Khodar Circle, Dr Ambedkar Road,', 'Dadar (East)', '400014', NULL, '', '', '', 0),
(146, 341, NULL, 'Bhavi Group', '', 'B/21, Imperial Mahal, Khodar Circle, Dr Ambedkar Road,', 'Dadar (East)', '400014', NULL, '', '', '', 0),
(147, 341, NULL, 'Total Sports', '', '806, Imperial Mahal, Khodar Circle, Dr Ambedkar Road,', 'Dadar (East)', '400014', NULL, '', '', '', 0),
(148, 341, NULL, 'Magnum Equity Broking Limited', '', 'D-30, Imperial Mahal, Khodar Circle, Dr Ambedkar Road,', 'Dadar (East)', '400014', NULL, '', '', '', 0),
(149, 342, NULL, 'Total Sports', '', 'F-22, 1st Floor, Center One Mall,', 'Vashi', '400705', NULL, '', '', '', 0),
(150, 343, NULL, 'Total Sports & Fitness', '', '806, Imperial Mahal, Khodar Circle, Dr Ambedkar Road,', 'Dadar (East)', '400014', NULL, '', '', '', 0),
(151, 344, NULL, 'KKR Investment Consultancy Pvt Ltd.,', '', '303, Jogani Industrial Estate, 541, Senapati Bapat Marg,', 'Dadar (West)', '400028', NULL, '', '', '', 0),
(152, 345, NULL, 'Property Import Export', '', ' Jogani Industrial Estate, Gala No 16,', 'Dadar (West)', '400028', NULL, '', '', '', 0),
(153, 345, NULL, 'Construction', '', '4th Floor, Lake City Mall, <NAME>', 'Thane (West)', '400607', NULL, '', '', '', 0),
(154, 348, NULL, 'Magnum Equity Broking Limited', '', 'D-30, Imperial Mahal, Khodar Circle, Dr Ambedkar Road,', 'Dadar (East)', '400014', NULL, '', '', '', 0),
(155, 349, NULL, 'Gold & Diamond Jewellery Designing Making', '', '', '', '', NULL, '', '', '', 0),
(156, 351, NULL, '<NAME> & Co.', '', '1, <NAME>, Jagat Prakash Society, 89, Naigaon Cross Road,', 'Dadar (East)', '400014', NULL, '', '', '', 0),
(157, 353, NULL, 'Money Novelty', '', '371-372, Crafat Market', 'Crafat Market', '400001', NULL, '', '', '', 0),
(158, 355, NULL, 'Nice Collection', '', 'Shop No 4, <NAME>, Kanjur Village Road', 'Kanjur Marg (East)', '400042', NULL, '', '', '', 0),
(159, 356, NULL, 'Archies Gallery, Satyam Collection', '', 'Gajanan Complex, Chlokar Mala Stop, College Road', 'Nashik', '422005', NULL, '', '', '', 0),
(160, 357, NULL, 'Satyam Collection', '', 'Gajanan Complex, Chlokar Mala Stop, College Road', 'Nashik', '422005', NULL, '', '', '', 0),
(161, 359, NULL, '<NAME>', '', '24, Satyam Shivam Shopping Center, Near by Railway Station', 'Nalasopara (West)', '401203', NULL, '', '', '', 0),
(162, 360, NULL, 'Readymad Garments /Mens Wear Trading', '', 'Saphale to Surat', '', '', NULL, '', '', '', 0),
(163, 361, NULL, 'Dharmic Tuition', '', '<NAME>, Gufa Road', 'Jogeshwari (East)', '400060', NULL, '', '', '', 0),
(164, 363, NULL, 'Govind Rubber Limited', '', '418-422, Creative Industrial Estate, N.M.Joshi Road,', 'Lower Parel ', '400080', NULL, '', '', '', 0),
(165, 364, NULL, '<NAME>', '', 'B-2/6, Mira Industrial Estate, Survey No 190, Pelhar', 'Nalasopara (East)', '', NULL, '', '', '', 0),
(166, 365, NULL, 'Ratnakar General Stall', '', '13, Panbai Nagar, Sriprastha Road No 2,', 'Nalasopara (West)', '401203', NULL, '', '', '', 0),
(167, 366, NULL, 'Prem Sons', '', '63A, Breach Candy, Bhulabhai Desai Road,', 'Breach Candy', '400026', NULL, '', '', '', 0),
(168, 366, NULL, 'IL&FS Maritime Infrastructure Company Limited', '', 'Plot No C-22, G Block, Bandra Kurla Complex', 'Bandra Kurla Complex', '400051', NULL, '', '', '', 0),
(169, 367, NULL, 'Insurance & Investment Consultancy', '', '28/1, Lunar Building, 191, Dr Ambedkar Road', 'Dadar (East)', '400014', NULL, '', '', '', 0),
(170, 368, NULL, 'Jatin Store', '', 'Prem Nagar Market,', 'Jogeshwari (East)', '400060', NULL, '', '', '', 0),
(171, 369, NULL, 'Jatin Store', '', 'Prem Nagar Market,', 'Jogeshwari (East)', '400060', NULL, '', '', '', 0),
(172, 371, NULL, 'Furia General Store', '', '18/19, Gupta Market, Near Railway Station,', 'Malad (West)', '', NULL, '', '', '', 0),
(173, 372, NULL, 'Rashmi General Store', '', '1, Sathya Sadan, Opp Bhagshala Ground, Karve Road', 'Dombivli (West)', '421202', NULL, '', '', '', 0),
(174, 375, NULL, 'Ramkrushna Construction', '', 'Ramkrushna Plaza, Shop No M-4, Opp Police Station, Daud ', 'Puna', '', NULL, '', '', '', 0),
(175, 376, NULL, 'Sagar Distribution', '', '4/12, Matruchaya, <NAME>', 'Santacruz (East)', '', NULL, '', '', '', 0),
(176, 377, NULL, 'Gopal Krishna Hotel', '', 'Shivaji Chowk, Daund, ', 'Puna', '', NULL, '', '', '', 0),
(177, 378, NULL, 'Kalpana General Store', '', '<NAME>il, Tulinj Road, Near Toll Naka,', 'Nalasopara (East)', '401209', NULL, '', '', '', 0),
(178, 379, NULL, 'Kalpana General Store', '', 'Shamim Manzil, Tulinj Road, Near Toll Naka,', 'Nalasopara (East)', '401209', NULL, '', '', '', 0),
(179, 380, NULL, 'Sanura Photo Store', '', 'Shop No 6, Sai Krupa Building, 2 Jivaji Lane, Fort', 'Fort', '400001', NULL, '', '', '', 0),
(180, 382, NULL, 'Mayur Communication', '', 'Shop no 4-5-6, Acharya Durde Marg, ', 'Sewri (West)', '400015', NULL, '', '', '', 0),
(181, 383, NULL, 'Allone Electric In', '', '57/452,Motilal Nagar -3, Near Azad Ground, M.G.Road', 'Goregaon (West)', '', NULL, '', '', '', 0),
(182, 384, NULL, 'N.Y.L.S', '', 'S-38, Mantri Square, Sampige Road, Malleswaram, Bangalore', 'Bangalore', '560022', NULL, '', '', '', 0),
(183, 385, NULL, 'Siddhi Plastic', '', '28/29, Sheetal Industrial Estate - 6, 1st Floor, Navghar', 'Vasai (East)', '', NULL, '', '', '', 0),
(184, 388, NULL, 'Bharatdeep', '', 'Shop no 3, Centre Point, Dr Ambedkar Road, Lalbaug', 'Parel', '400012', NULL, '', '', '', 0),
(185, 389, NULL, 'Bharatdeep', '', 'Shop no 3, Centre Point, Dr Ambedkar Road, Lalbaug', 'Parel', '400012', NULL, '', '', '', 0),
(186, 390, NULL, 'Vardhaman Technology', '', 'Unit No 2, Raheja Plaza-1, LBS Marg', 'Ghatkopar (West)', '400086', NULL, '', '', '', 0),
(187, 390, NULL, 'Sharkhan Limited', '', '', 'Kanjurmarg', '', NULL, '', '', '', 0),
(188, 391, NULL, 'Mital Craft', '', '', '', '', NULL, '', '', '', 0),
(189, 392, NULL, '<NAME>', '', '3-4,Jiva Devshi Niwas, Near Post Office, Ranade Road', 'Dadar (West)', '400028', NULL, '', '', '', 0),
(190, 393, NULL, 'Pallari', '', 'Shop No 1, Ground Floor, Dadarkar Building, N.C.Kelkar Road', 'Dadar (West)', '400028', NULL, '', '', '', 0),
(191, 393, NULL, 'Panali', '', 'Shop No 3, 131-C, New Rajaram Building, Dadasaheb Phalke Road, Hindmata', 'Dadar (East)', '400014', NULL, '', '', '', 0),
(192, 394, NULL, 'Pallari', '', 'Shop No 1, Ground Floor, Dadarkar Building, N.C.Kelkar Road', 'Dadar (West)', '400028', NULL, '', '', '', 0),
(193, 394, NULL, 'VIP Shop', '', '3, Ground Floor, Tardeo Building, 50-60 Tardeo Road', 'Tardeo', '', NULL, '', '', '', 0),
(194, 395, NULL, 'Rekha General Store', '', 'Shop No 75, Lokmanya Tilak Mandya, Opp Novelty Cinema, Grant Road', 'Grant Road', '400007', NULL, '', '', '', 0),
(195, 396, NULL, 'Shamji Kanji Store', '', '604, Juhu Galli, Near Tashkent Bakari,', 'Andheri (West)', '400058', NULL, '', '', '', 0),
(196, 398, NULL, 'Real Estate Profession', '', '129, Atlantic Plaza, Kakasaheb Gadgil Marg, Garage Gally', 'Dadar (West)', '400027', NULL, '', '', '', 0),
(197, 399, NULL, 'Z-Apple', '', '339, Madhani Industrial Estate, Tulsi Pipe Road', 'Dadar (West)', '400028', NULL, '', '', '', 0),
(198, 401, NULL, 'Melodi Trading', '', '9/448, Jethwa Niwas, Dr Ambedkar Road, King Circle', 'Matunga (C.Rly)', '400019', NULL, '', '', '', 0),
(199, 403, NULL, 'Jivanvima Agent', '', '304, Jogani Industrial Estate, Senapati Bapat Marg,', 'Dadar (West)', '400024', NULL, '', '', '', 0),
(200, 404, NULL, 'Savla Poly Clinic', '', 'Natasa Plaza, Opp Malhar Hotel', 'Chembur', '400071', NULL, '', '', '', 0),
(201, 405, NULL, '<NAME>', '', '<NAME>', 'Kandgra', '370435', NULL, '', '', '', 0),
(202, 407, NULL, 'Dolly Store', '', '5, Megh Dhanush Building, Block No 3, Opp Bhatia Hospital, Forjett Hill Road', 'Tardeo', '400036', NULL, '', '', '', 0),
(203, 407, NULL, 'Pragna Enterprises', '', '', '', '', NULL, '', '', '', 0),
(204, 407, NULL, 'Real Estate Consultant', '', '', '', '', NULL, '', '', '', 0),
(205, 408, NULL, 'Bharat Provision Store', '', 'Shop No 6, Megdanus Building, Ground Floor, Forjet Hill Road,', 'Tardeo', '400036', NULL, '', '', '', 0),
(206, 409, NULL, 'Divya Enterprises', '', '6, Pardesi Mansion, <NAME>, Chiplunkar Road', 'Dombivli (East)', '421201', NULL, '', '', '', 0),
(207, 410, NULL, 'Raj International', '', '62/3, Trivedi Building, Near Jain Hostel', 'Sion (West)', '400022', NULL, '', '', '', 0),
(208, 411, NULL, 'Cotton King', '', '190, City Center, S.V.Road,', 'Goregaon (West)', '400062', NULL, '', '', '', 0),
(209, 412, NULL, 'In Time', '', '725, More Building, Khanduji Baba Chowk, Deccan', 'Puna', '411004', NULL, '', '', '', 0),
(210, 413, NULL, 'Jayesh Chemical Co.', '', 'B-6, 16th Floor, Avanti Apartment, Opp Shanmukhananda Hall,', 'King Circle', '400019', NULL, '', '', '', 0),
(211, 414, NULL, 'Trade Spline (Ready-made Garments)', '', 'A-206, Amrut Cottage, Near Saibaba Mandir, Dewan Man ', 'Vasai (West)', '', NULL, '', '', '', 0),
(212, 415, NULL, 'S.K.Enterprise (Ready-made Garments)', '', 'Sion Bandra Link Road', 'Sion (West)', '', NULL, '', '', '', 0),
(213, 416, NULL, 'Zoop', '', '1,TRS, Rajhans Co. Op. Hsg. Soc., Opp Siddhivinayak Mandir, 90 Feet Road', 'Ghatkopar (East)', '400075', NULL, '', '', '', 0),
(214, 417, NULL, 'Spain Associates', '', '305, Jogani Industrial Estate, Senapati Bapat Marg', 'Dadar (West)', '400028', NULL, '', '', '', 0),
(215, 418, NULL, 'Savla Corporation', '', '308, Jogani Industrial Estate, Senapati Bapat Marg', 'Dadar (West)', '400028', NULL, '', '', '', 0),
(216, 421, NULL, 'Entertainment Program', '', '', 'Matunga (C.Rly.)', '400019', NULL, '', '', '', 0),
(217, 421, NULL, 'Solcool Harmani Music Arranger', '', '', '', '', NULL, '', '', '', 0),
(218, 423, NULL, 'Bhavri Fashion Pvt. Ltd.', '', 'Shop No 2,6, S.V.Road', 'Malad (West)', '400064', NULL, '', '', '', 0),
(219, 424, NULL, 'Computer Culture', '', '331/A, Lamington Rd, Opposite Police Station', ' Lamington Rd', '400007', NULL, '', '', '', 0),
(220, 426, NULL, '<NAME> (Garment Export)', '', '2, Hira Bhavan, V.P.Road', 'Mulund (West)', '400080', NULL, '', '', '', 0),
(221, 431, NULL, '<NAME>', '', 'Het Kunj Building, Block No 6, N.S.Road No 2', 'Vile Parle (West)', '400056', NULL, '', '', '', 0),
(222, 432, NULL, 'Property Consultant', '', 'Varsh Building, Block No 5A, Juhu Scheme, North South Road No 5,', 'Vile Parle (West)', '400056', NULL, '', '', '', 0),
(223, 434, NULL, 'Tiny Mini (Ready-made Garments)', '', '30, Shantinath Shopping Center, 1st Floor,S.V.Road', 'Malad (West)', '400064', NULL, '', '', '', 0),
(224, 435, NULL, 'Savla Store', '', '2,Kaveri, Ramnagar, Chincholi Bunder Road', 'Malad (West)', '400064', NULL, '', '', '', 0),
(225, 436, NULL, 'Sawati Hotel', '', 'Gayatri Complex, Adani Port Road, Mundra', 'Mundra (Kutch)', '', NULL, '', '', '', 0),
(226, 437, NULL, 'Savla Store', '', '2,Kaveri, Ramnagar, Chincholi Bunder Road', 'Malad (West)', '400064', NULL, '', '', '', 0),
(227, 439, NULL, 'Shivan kam', '', '', '', '', NULL, '', '', '', 0),
(228, 440, NULL, 'Savla Transport', '', '5, Javeri Building, Opp Dhobi Ghat, Old Nagardas Road,', 'Andheri (East)', '400069', NULL, '', '', '', 0),
(229, 441, NULL, 'Savla Roadway', '', '8, Shiv Darshan Building, Old Nagardas Road,', 'Andheri (East)', '400069', NULL, '', '', '', 0),
(230, 442, NULL, 'HDFC Bank', '', 'A Wing, 6th Floor, Trade Star, <NAME>', 'Andheri (East)', '400069', NULL, '', '', '', 0),
(231, 443, NULL, 'Savla Transport', '', '5, Javeri Building, Opp Dhobi Ghat, Old Nagardas Road,', 'Andheri (East)', '400069', NULL, '', '', '', 0),
(232, 444, NULL, 'J.K.Tailors & Collection', '', '2699 A Ward, Mahadwar Road, Kolhapur', 'Kolhapur', '', NULL, '', '', '', 0),
(233, 445, NULL, 'Silk Matching Center', '', '2733, Mahadwar Road, Kolhapur', 'Kolhapur', '', NULL, '', '', '', 0),
(234, 450, NULL, 'SSS Enterprise', '', '6-3-805, Ameerpet, Hyderabad', 'Hyderabad', '500016', NULL, '', '', '', 0),
(235, 453, NULL, 'Keyur Enterprise', '', '1/35, Shantilal Shopping Center, S.V.Road', 'Malad (West)', '400064', NULL, '', '', '', 0),
(236, 454, NULL, 'Keyur Enterprise', '', '1/35, Shantilal Shopping Center, S.V.Road', 'Malad (West)', '400064', NULL, '', '', '', 0),
(237, 455, NULL, 'Real Estate', '', '', '', '', NULL, '', '', '', 0),
(238, 457, NULL, 'Savla Crockery', '', '<NAME>, 52-58, Raghunath Maharaj Street,', '<NAME>', '400003', NULL, '', '', '', 0),
(239, 458, NULL, 'Savla Trasport', '', 'A-3, 1st Floor, Khanpar Complex, Char Rasta,', 'Bharuch - Gujarat', '', NULL, '', '', '', 0),
(240, 459, NULL, 'Tailoring Work home', '', 'B-203, Sarvoday Apartment, B.P Cross Road no 4', 'Bhayandar (East)', '', NULL, '', '', '', 0),
(241, 462, NULL, 'Merry (Ready Made Garment Factory)', '', '3/4/5, Vibhav Industrial Easte, S.T.Road, Devnar', 'Govandi', '400088', NULL, '', '', '', 0),
(242, 463, NULL, 'Property Consultant', '', 'B-6, Shankar Darshan Society, Plot 189, 15th Road, R.C.Marg', 'Chembur(East)', '400071', NULL, '', '', '', 0),
(243, 466, NULL, 'VLCC Healthcare Limited', '', 'Ground Floor, Setu Complex, Navrangpura', 'Ahmedabad', '', NULL, '', '', '', 0),
(244, 468, NULL, 'Serial Footwear', '', 'Dube State, Cabin No 10, ', 'Nalasopara (East)', '', NULL, '', '', '', 0),
(245, 469, NULL, 'KalaKendra & Ax', '', '1,2,3, 65/65-C, Jehangir Building, D.S.Phalke Road', 'Dadar (East)', '400014', NULL, '', '', '', 0),
(246, 471, NULL, 'Lebas', '', 'Dr Ambedkar Road', 'Dadar (T.T)', '', NULL, '', '', '', 0),
(247, 475, NULL, 'Swastik General Store', '', 'Shop No 34-35,Fancy Market, Morland Road, Madanpura, Agripada', 'Agripada', '', NULL, '', '', '', 0),
(248, 476, NULL, 'Savla Grain Store', '', '23, Fancy Market, Red Corss Steet, Agripada', 'Agripada', '400011', NULL, '', '', '', 0),
(249, 476, NULL, 'Khushi Foods', '', '', 'Borivali (East)', '', NULL, '', '', '', 0),
(250, 477, NULL, 'Savla Grain Store', '', '23, Fancy Market, Red Corss Steet, Agripada', 'Agripada', '400011', NULL, '', '', '', 0),
(251, 478, NULL, 'CK & Sons', '', '9, Om Shraddha Co. Op. Soc., <NAME>', 'Borivali (West)', '400092', NULL, '', '', '', 0),
(252, 479, NULL, 'Gala & Bhansali', '', '133, Devansh, Dadasaheb Phalke Road', 'Dadar (East)', '400014', NULL, '', '', '', 0),
(253, 480, NULL, '<NAME>', '', '2, Iqbal Manzil, Dr Ambedkar Road,', 'Parel (East)', '400012', NULL, '', '', '', 0),
(254, 481, NULL, 'Savla Paper Mart', '', '3, Prem Niwas, Santacruz Chawl, Main Kasturba Road,', 'Borivali (East)', '400066', NULL, '', '', '', 0),
(255, 482, NULL, 'Savla Paper Mart', '', '3, Prem Niwas, Santacruz Chawl, Main Kasturba Road,', 'Borivali (East)', '400066', NULL, '', '', '', 0),
(256, 483, NULL, 'Telecom Production Repair & Maintenance', '', '101, Maha Prabhu Co. Op. Hsg. Soc., Carter Road No 3,', 'Borivali (East)', '400066', NULL, '', '', '', 0),
(257, 484, NULL, 'New Savla Old Paper Mart', '', 'Shop No 1-2, Vishnu Chawl, Carter Road No 8,', 'Borivali (East)', '400066', NULL, '', '', '', 0),
(258, 485, NULL, 'Amisha', '', '22, The Mall, Ground Floor, Near Railway Station, ', 'Malad (West) ', '400064', NULL, '', '', '', 0),
(259, 486, NULL, 'J.V. Electronics', '', '2, Saber Chawl, Kokani Pada, Kurar Village', 'Malad (East)', '400 097', NULL, '', '', '', 0),
(260, 487, NULL, 'Vidhikar (Jain Dharmik Karyakram Organisation)', 'Astrologer', '', '', '', NULL, '', '', '', 0),
(261, 488, NULL, 'Born Baby', '', '4, Royal House, Mathuradas Road,', 'Kandivali (West)', '', NULL, '', '', '', 0),
(262, 489, NULL, 'Mangal Store', '', '11/12, <NAME>awl-1, <NAME>, Appa Pada Road, Kurar Village', 'Malad (East)', '400097', NULL, '', '', '', 0),
(263, 493, NULL, '<NAME>', 'Owner', '302, 3rd Floor, Plot No 33, Jain Society, Sector 2, ', 'Gandhidham, ', '370201', NULL, '', '', '', 0),
(264, 494, NULL, 'Tata Twonship', 'Service', '<NAME>, Kutch', '', '', NULL, '', '', '', 0),
(265, 497, NULL, 'Vedant Electronics Shop', '', 'Devi Road, ', 'Nizamabad', '503003', NULL, '', '', '', 0),
(266, 498, NULL, 'Ashapura Garment', '', '1-8-303/B, Balaji Niwas, Opp. Sindhi colony, P.G.Road,', 'Sikandrabad', '500003', NULL, '', '', '', 0),
(267, 499, NULL, 'Vedant Electronics Shop', '', '2-2-120, Opp. PNB, M.G.Road, ', 'Sikandrabad', '500003', NULL, '', '', '', 0),
(268, 500, NULL, 'V.R. Textiles', '', '484, <NAME>, 2nd Gally, M. J. Market,', 'Kalbadevi', '400002', NULL, '', '', '', 0),
(269, 148, 12, 'New Business', 'Owner', 'Matunga', NULL, '400014', 3, '', '', '', 0),
(270, 457, 1217, 'Pipaliya Singhal & Associates', 'Audit Manager', '<NAME>', NULL, '400053', 2, '', '', 'www.samaaudit.com', 0),
(271, 148, 691, 'abc', '8', 'kjhjg', NULL, '30', 3, '<EMAIL>', '089675656767', 'ex.com', 0),
(272, 148, 691, 'juuy', 'kjj', 'kj', NULL, '400002', 3, '<EMAIL>', '089675656767', 'ex.com', 0),
(273, 514, 1397, 'The Animator', 'Manager', 'cotton green', NULL, '400015', 2, '<EMAIL>', '9004190906', 'www.theanimator.in', 0),
(274, 514, 1397, 'the animator', 'propriter', 'Mumbai', NULL, '400015', 7, '<EMAIL>', '9664428534', 'www.theanimator.in', 0),
(275, 514, 1454, 'The Animator', 'Manager', 'B-15, 5B, 1st Floor, Royal Industrial Estate,', NULL, '400031', 22, '<EMAIL>', '9004190906', 'www.theanimator.in', 0),
(276, 514, 1397, 'the animator', 'manager', 'sdhj', NULL, '400015', 0, '<EMAIL>', '9004190906', 'www.theanimator.in', 0),
(277, 514, 1397, 'the animator', 'manager', 'sdhj', NULL, '400015', 0, '<EMAIL>', '9004190906', 'www.theanimator.in', 0),
(278, 514, 1397, 'the animator', 'manager', 'sdhj', NULL, '400015', 0, '<EMAIL>', '9004190906', 'www.theanimator.in', 0),
(279, 514, 1410, 'the animator', 'owner', 'cott', NULL, '400015', 0, 'the animator.in', '9664428534', 'theanimator.com', 0),
(280, 514, 1410, 'the animator', 'owner', 'cott', NULL, '400015', 0, 'the animator.in', '9664428534', 'theanimator.com', 0),
(281, 514, 1410, 'the animator', 'owner', 'cott', NULL, '400015', 0, 'the animator.in', '9664428534', 'theanimator.com', 0),
(282, 514, 1410, 'the animator', 'owner', 'cott', NULL, '400015', 0, 'the animator.in', '9664428534', 'theanimator.com', 0),
(283, 514, 1410, 'the animator', 'owner', 'cott', NULL, '400015', 0, 'the animator.in', '9664428534', 'theanimator.com', 0);
-- --------------------------------------------------------
--
-- Table structure for table `family_business_contact`
--
CREATE TABLE `family_business_contact` (
`id` int(11) NOT NULL,
`family_business_id` int(11) DEFAULT NULL,
`contact` varchar(20) DEFAULT NULL,
`deleted` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `family_business_contact`
--
INSERT INTO `family_business_contact` (`id`, `family_business_id`, `contact`, `deleted`) VALUES
(1, 1, '24177777', 0),
(2, 1, '84178888', 0),
(3, 2, '9870002663', 0),
(4, 2, '9172129516', 0),
(5, 3, '9892042739', 0),
(6, 4, '9920272161', 0),
(7, 4, '9987408041', 0),
(8, 5, '25833898', 0),
(9, 5, '9821990756', 0),
(10, 7, '22696766', 0),
(11, 7, '22698875', 0),
(12, 7, '26703485', 0),
(13, 7, '9821008176', 0),
(14, 8, '9869007745', 0),
(15, 9, '9223266793', 0),
(16, 9, '9821388872', 0),
(17, 10, '24122244', 0),
(18, 10, '24133344', 0),
(19, 11, '02422-222818', 0),
(20, 12, '9821785326', 0),
(21, 13, '27651212', 0),
(22, 14, '25139572', 0),
(23, 14, '9867031711', 0),
(24, 16, '0260-2640411', 0),
(25, 17, '28241761', 0),
(26, 18, '9323111096', 0),
(27, 19, '9819747711', 0),
(28, 20, '8080232334', 0),
(29, 21, '24367080', 0),
(30, 22, '24373361', 0),
(31, 23, '26147081', 0),
(32, 24, '28241761', 0),
(33, 24, '28232736', 0),
(34, 25, '9426019533', 0),
(35, 25, '7303142638', 0),
(36, 25, '9833715726', 0),
(37, 26, '9702355553', 0),
(38, 28, '9821258455', 0),
(39, 28, '9892644674', 0),
(40, 29, '9892313499', 0),
(41, 30, '28899611', 0),
(42, 30, '28442070', 0),
(43, 31, '9820145379', 0),
(44, 32, '28899611', 0),
(45, 32, '28442070', 0),
(46, 33, '9892042151', 0),
(47, 34, '9987745010', 0),
(48, 35, '9987160970', 0),
(49, 35, '9022690256', 0),
(50, 36, '28807901', 0),
(51, 37, '9870244634', 0),
(52, 38, '9833669691', 0),
(53, 39, '9323058270', 0),
(54, 40, '24146017', 0),
(55, 41, '9819136261', 0),
(56, 42, '22412192', 0),
(57, 43, '9322507625', 0),
(58, 44, '7666612577', 0),
(59, 45, '28823171', 0),
(60, 46, '9324904818', 0),
(61, 47, '69534688', 0),
(62, 49, '9890828831', 0),
(63, 50, '23000971', 0),
(64, 54, '9819311773', 0),
(65, 55, '22425665', 0),
(66, 55, '22427587', 0),
(67, 56, '22428237', 0),
(68, 56, '22427106', 0),
(69, 57, '9323483380', 0),
(70, 58, '07162-232141', 0),
(71, 58, '232241', 0),
(72, 58, '232341', 0),
(73, 59, '07162-232414', 0),
(74, 59, '232241', 0),
(75, 60, '9594139013', 0),
(76, 61, '25136366', 0),
(77, 62, '9820746688', 0),
(78, 63, '25474762', 0),
(79, 64, '27722123', 0),
(80, 65, '9821162422', 0),
(81, 66, '28269106', 0),
(82, 66, '9867166453', 0),
(83, 67, '24051234', 0),
(84, 68, '9004556654', 0),
(85, 69, '23713100', 0),
(86, 70, '27665342', 0),
(87, 70, '27662359', 0),
(88, 71, '27665342', 0),
(89, 71, '27662359', 0),
(90, 72, '25281888', 0),
(91, 72, '25291888', 0),
(92, 73, '0251-2446787', 0),
(93, 74, '9820292024', 0),
(94, 75, '8291725216', 0),
(95, 76, '9820347162', 0),
(96, 76, '8080845770', 0),
(97, 77, '9702881789', 0),
(98, 78, '0250-6452563', 0),
(99, 79, '0250-6452563', 0),
(100, 80, '28010227', 0),
(101, 80, '28646551', 0),
(102, 81, '28917465', 0),
(103, 81, '28918212', 0),
(104, 82, '28058728', 0),
(105, 83, '9833025640', 0),
(106, 84, '25745621', 0),
(107, 85, '9167193819', 0),
(108, 86, '9167313136', 0),
(109, 86, '011-22054170', 0),
(110, 87, '9819737720', 0),
(111, 87, '9221931596', 0),
(112, 88, '0250-2502642', 0),
(113, 89, '24378184', 0),
(114, 90, '02185-226508', 0),
(115, 91, '27610218', 0),
(116, 91, '9820942346', 0),
(117, 92, '9850223320', 0),
(118, 93, '8087373284', 0),
(119, 94, '9920268880', 0),
(120, 94, '24303242', 0),
(121, 95, '9029978454', 0),
(122, 96, '9920538648', 0),
(123, 97, '9820153208', 0),
(124, 98, '24121832', 0),
(125, 99, '8082223399', 0),
(126, 100, '67770624', 0),
(127, 101, '24113096', 0),
(128, 102, '24224559', 0),
(129, 103, '24224559', 0),
(130, 104, '9833930639', 0),
(131, 105, '9226333965', 0),
(132, 106, '9221803697', 0),
(133, 107, '02525-230129', 0),
(134, 108, '9270287950', 0),
(135, 109, '23515752', 0),
(136, 109, '23510071', 0),
(137, 109, '9323123245', 0),
(138, 110, '9867139072', 0),
(139, 111, '23445287', 0),
(140, 111, '23446733', 0),
(141, 112, '26839150', 0),
(142, 112, '9969448742', 0),
(143, 113, '9224529715', 0),
(144, 114, '9221931454', 0),
(145, 115, '24229513', 0),
(146, 115, '24369364', 0),
(147, 116, '24229513', 0),
(148, 117, '24169593', 0),
(149, 118, '24371870', 0),
(150, 119, '24226287', 0),
(151, 120, '9833165705', 0),
(152, 121, '9833782121', 0),
(153, 122, '25202604', 0),
(154, 123, '25202604', 0),
(155, 124, '24367080 /1/2/3/4/5/', 0),
(156, 125, '24367080 /1/2/3/4/5/', 0),
(157, 126, '24367080 /1/2/3/4/5/', 0),
(158, 127, '24367080 /1/2/3/4/5/', 0),
(159, 127, '9892893673', 0),
(160, 128, '9967676663', 0),
(161, 130, '28935146', 0),
(162, 132, '28940150', 0),
(163, 133, '9867999197', 0),
(164, 134, '9769403080', 0),
(165, 135, '9322371593', 0),
(166, 138, '24176925', 0),
(167, 139, '24146545', 0),
(168, 140, '9892436766', 0),
(169, 141, '9820386707', 0),
(170, 142, '24176925', 0),
(171, 145, '24150970, 24184790', 0),
(172, 145, '24180834 / 24184422', 0),
(173, 148, '24138952 / 24113474', 0),
(174, 148, '24180834', 0),
(175, 148, '24158686', 0),
(176, 149, '27815522', 0),
(177, 150, '24180834 / 24181984', 0),
(178, 151, '24221364', 0),
(179, 153, '24227265', 0),
(180, 153, '9320034446', 0),
(181, 154, '24158686', 0),
(182, 155, '9324646381 / 9869326', 0),
(183, 156, '24155434', 0),
(184, 157, '23402354', 0),
(185, 158, '9892930896', 0),
(186, 159, '9890005466', 0),
(187, 160, '2311880', 0),
(188, 161, '0250-2404508', 0),
(189, 163, '28212242', 0),
(190, 165, '9028286235', 0),
(191, 166, '9960787111', 0),
(192, 168, '9930139720', 0),
(193, 168, '9833451194', 0),
(194, 169, '24186793', 0),
(195, 170, '28254862', 0),
(196, 171, '28254862', 0),
(197, 172, '28899611 / 28832070', 0),
(198, 173, '0251-2490244', 0),
(199, 174, '9270303871', 0),
(200, 175, '9699192221', 0),
(201, 177, '0250 - 2436525', 0),
(202, 178, '0250 - 2436525', 0),
(203, 179, '22623200', 0),
(204, 180, '69819082', 0),
(205, 181, '28766151/52', 0),
(206, 182, '9986665791', 0),
(207, 183, '9892026209', 0),
(208, 184, '9820478962', 0),
(209, 185, '9503351474', 0),
(210, 187, '9819893949', 0),
(211, 187, '9920303949', 0),
(212, 188, '9769000456', 0),
(213, 189, '24222779', 0),
(214, 191, '24321027', 0),
(215, 191, '24128966', 0),
(216, 193, '24321027', 0),
(217, 193, '23520206', 0),
(218, 194, '9769302240', 0),
(219, 195, '9819061640', 0),
(220, 196, '9322219282', 0),
(221, 197, '9322656566', 0),
(222, 197, '9820830995', 0),
(223, 198, '9819836008', 0),
(224, 198, '9820179089', 0),
(225, 199, '24373540', 0),
(226, 200, '9322282016', 0),
(227, 201, '02838-275639', 0),
(228, 204, '9892560130', 0),
(229, 205, '23881069', 0),
(230, 206, '9819702068', 0),
(231, 207, '66626768', 0),
(232, 208, '28726900', 0),
(233, 209, '020-25535567', 0),
(234, 210, '9821148775', 0),
(235, 211, '9869605891', 0),
(236, 212, '9820031028', 0),
(237, 213, '9821161867', 0),
(238, 214, '24228870', 0),
(239, 215, '24228885', 0),
(240, 217, '24147418', 0),
(241, 218, '28812667 / 28880323', 0),
(242, 219, '23855172', 0),
(243, 220, '9821053771', 0),
(244, 221, '9820154683', 0),
(245, 222, '26147415', 0),
(246, 223, '67253874', 0),
(247, 224, '9819925210', 0),
(248, 225, '02838-224224', 0),
(249, 226, '9930221229', 0),
(250, 228, '26833701', 0),
(251, 229, '26834692 / 26831571', 0),
(252, 230, '8097381416', 0),
(253, 231, '26834692 /26831571', 0),
(254, 232, '0231-2620056', 0),
(255, 233, '0231-2626322', 0),
(256, 234, '040-23405863 / 64', 0),
(257, 235, '9820999509', 0),
(258, 236, '28814756', 0),
(259, 237, '9892133132', 0),
(260, 240, '9820915086', 0),
(261, 241, ' 5516243 / 5554610', 0),
(262, 242, '9820518661', 0),
(263, 243, '8140034656', 0),
(264, 244, '9323652360', 0),
(265, 245, '65055641', 0),
(266, 246, '24143575', 0),
(267, 247, '23080652', 0),
(268, 249, '23094640', 0),
(269, 249, '28057501', 0),
(270, 250, '23094640', 0),
(271, 251, '28993310 / 28993311', 0),
(272, 252, '9967963123', 0),
(273, 253, '9820123913', 0),
(274, 254, '28058360 / 28628381', 0),
(275, 255, '28058360 / 28628381', 0),
(276, 256, '9869817822', 0),
(277, 257, '28054519', 0),
(278, 258, '9004690054', 0),
(279, 259, '9870808042', 0),
(280, 260, '9322274185', 0),
(281, 261, '9870626343', 0),
(282, 262, '9619127393', 0),
(283, 262, '9920074221', 0),
(284, 263, '9825435439', 0),
(285, 264, '9998640851', 0),
(286, 265, '08462-220825', 0),
(287, 266, '9959554918', 0),
(288, 267, '040-27713368', 0),
(289, 268, '9820313894', 0);
-- --------------------------------------------------------
--
-- Table structure for table `family_contact`
--
CREATE TABLE `family_contact` (
`id` int(11) NOT NULL,
`family_id` int(11) DEFAULT NULL,
`contact` varchar(20) DEFAULT NULL,
`deleted` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `family_contact`
--
INSERT INTO `family_contact` (`id`, `family_id`, `contact`, `deleted`) VALUES
(1, 148, '28055630', 0),
(2, 150, '65200242', 0),
(3, 151, '25825735', 0),
(4, 151, '9920272161', 0),
(5, 152, '9969783369', 0),
(6, 153, '9428080207', 0),
(7, 154, '28142332', 0),
(8, 155, '28280199', 0),
(9, 156, '9819142230', 0),
(10, 157, '9987737807', 0),
(11, 158, '9869007745', 0),
(12, 159, '9223263435', 0),
(13, 160, '9870904056', 0),
(14, 161, '24172793', 0),
(15, 162, '02422-222248', 0),
(16, 163, '02422-223587', 0),
(17, 164, '24070520', 0),
(18, 165, '02422-223574', 0),
(19, 166, '8108910441', 0),
(20, 167, '8879086377', 0),
(21, 168, '9867575382', 0),
(22, 169, '9967896151', 0),
(23, 170, '02838-273315', 0),
(24, 171, '0260-2642194', 0),
(25, 172, '28346552', 0),
(26, 173, '28365439', 0),
(27, 174, '28320000', 0),
(28, 175, '24152852', 0),
(29, 176, '26129496', 0),
(30, 177, '9323124313', 0),
(31, 178, '28630596', 0),
(32, 179, '9766661038', 0),
(33, 179, '9320940725', 0),
(34, 180, '9322616272', 0),
(35, 181, '0265-2712622', 0),
(36, 182, '9892098372', 0),
(37, 183, '9877315726', 0),
(38, 184, '8097363002', 0),
(39, 185, '9870031484', 0),
(40, 185, '9821415120', 0),
(41, 187, '8286264855', 0),
(42, 188, '9892543458', 0),
(43, 189, '28446025', 0),
(44, 190, '28899628', 0),
(45, 191, '9004407849', 0),
(46, 192, '9987745010', 0),
(47, 193, '9987160930', 0),
(48, 194, '9022690256', 0),
(49, 195, '9987989564', 0),
(50, 195, '9004053167', 0),
(51, 196, '9870244634', 0),
(52, 197, '9892073314', 0),
(53, 198, '7208370027', 0),
(54, 200, '24166772', 0),
(55, 201, '28701443', 0),
(56, 202, '24711626', 0),
(57, 203, '24716858', 0),
(58, 204, '442001', 0),
(59, 205, '28077847', 0),
(60, 206, '9768894281', 0),
(61, 207, '25432625', 0),
(62, 208, '020-26050398', 0),
(63, 209, '24315012', 0),
(64, 210, '8879701199', 0),
(65, 211, '9820107753', 0),
(66, 212, '9769690691', 0),
(67, 214, '25005342', 0),
(68, 218, '25008905', 0),
(69, 219, '9320761394', 0),
(70, 220, '07162-235141', 0),
(71, 221, '9424679941', 0),
(72, 222, '9987566299', 0),
(73, 223, '0251-2440601', 0),
(74, 224, '27729856', 0),
(75, 224, '65343219', 0),
(76, 225, '25474762', 0),
(77, 225, '28937543', 0),
(78, 226, '9821472668', 0),
(79, 227, '25382844', 0),
(80, 228, '28884284', 0),
(81, 229, '21638192', 0),
(82, 230, '28269106', 0),
(83, 231, '9967675213', 0),
(84, 232, '25021459', 0),
(85, 233, '28190097', 0),
(86, 234, '9869358675', 0),
(87, 235, '9320825118', 0),
(88, 236, '9004551383', 0),
(89, 237, '9324740567', 0),
(90, 238, '25600688', 0),
(91, 240, '9833553257', 0),
(92, 241, '9967481149', 0),
(93, 242, '9172195068', 0),
(94, 243, '9930639976', 0),
(95, 244, '9821288292', 0),
(96, 245, '9867180155', 0),
(97, 246, '0250-2334514', 0),
(98, 247, '9561254676', 0),
(99, 248, '9978863756', 0),
(100, 248, '9979339966', 0),
(101, 249, '02838-273317', 0),
(102, 250, '28084302', 0),
(103, 251, '28950986', 0),
(104, 252, '28643533', 0),
(105, 253, '28625421', 0),
(106, 254, '25749626', 0),
(107, 255, '9167193819', 0),
(108, 256, '9867476623', 0),
(109, 256, '9870069311', 0),
(110, 257, '9819737720', 0),
(111, 258, '9867312220', 0),
(112, 259, '28042720', 0),
(113, 260, '9987222798', 0),
(114, 260, '9619373242', 0),
(115, 261, '9324523589', 0),
(116, 262, '24378184', 0),
(117, 263, '8600755295', 0),
(118, 264, '25010068', 0),
(119, 265, '25152953', 0),
(120, 266, '9322799019', 0),
(121, 267, '02525-230275', 0),
(122, 268, '02525-230275', 0),
(123, 269, '9221144546', 0),
(124, 270, '28885370', 0),
(125, 271, '25211932', 0),
(126, 272, '9820855785', 0),
(127, 273, '90250-434321', 0),
(128, 274, '28650897', 0),
(129, 275, '9820930668', 0),
(130, 276, '28085815', 0),
(131, 277, '23054009', 0),
(132, 278, '21641494', 0),
(133, 279, '9821547509', 0),
(134, 280, '8082788670', 0),
(135, 281, '25688025', 0),
(136, 282, '65028322', 0),
(137, 283, '24121478', 0),
(138, 285, '26289789', 0),
(139, 286, '65764021', 0),
(140, 287, '9833930639', 0),
(141, 288, '02525-230710', 0),
(142, 289, '9028259317', 0),
(143, 290, '02525-230043', 0),
(144, 291, '9819244571', 0),
(145, 292, '02525-230272', 0),
(146, 293, '23530943', 0),
(147, 294, '26145561', 0),
(148, 295, '9321323245', 0),
(149, 296, '9820319830', 0),
(150, 297, '9004334463', 0),
(151, 298, '32713205', 0),
(152, 299, '9930716379', 0),
(153, 300, '8450938221', 0),
(154, 301, '23873411', 0),
(155, 302, '9773159640', 0),
(156, 303, '24465065', 0),
(157, 304, '9757346452', 0),
(158, 305, '24443967', 0),
(159, 306, '9969065993', 0),
(160, 307, '24440965', 0),
(161, 308, '9638752664', 0),
(162, 309, '24302746', 0),
(163, 310, '24212683', 0),
(164, 311, '24474657', 0),
(165, 312, '24362810', 0),
(166, 313, '9930089879', 0),
(167, 314, '9819962692', 0),
(168, 315, '24334065 / 24339875', 0),
(169, 317, '24329641 / 24329657 ', 0),
(170, 318, '24329641 / 24329657 ', 0),
(171, 319, '9819539928', 0),
(172, 320, '9892157631', 0),
(173, 321, '02838 - 273340', 0),
(174, 322, '9769237339', 0),
(175, 323, '9769266384', 0),
(176, 324, '9970348311', 0),
(177, 325, '02838-275817', 0),
(178, 326, '9769419241', 0),
(179, 327, '9820004522', 0),
(180, 328, '9920306885', 0),
(181, 329, '9619565056', 0),
(182, 330, '9322371593', 0),
(183, 331, '26131406', 0),
(184, 332, '28512918', 0),
(185, 334, '9969321322', 0),
(186, 335, '9867489020', 0),
(187, 336, '26631346', 0),
(188, 339, '26111479', 0),
(189, 340, '24147866', 0),
(190, 341, '24145972', 0),
(191, 342, '24172364', 0),
(192, 343, '26863635', 0),
(193, 344, '26493192', 0),
(194, 345, '24023877', 0),
(195, 346, '28995813', 0),
(196, 348, '26044670', 0),
(197, 349, '9324646381', 0),
(198, 350, '22035549', 0),
(199, 351, '24226350', 0),
(200, 353, '24159555', 0),
(201, 354, '26791237', 0),
(202, 355, '25779449', 0),
(203, 356, '7588306815', 0),
(204, 357, '9595540360', 0),
(205, 359, '9322114179', 0),
(206, 360, '9324520886', 0),
(207, 361, '9029928689', 0),
(208, 362, '9224186683', 0),
(209, 363, '25675531', 0),
(210, 364, '9768275669', 0),
(211, 365, '9960787222', 0),
(212, 366, '25377157', 0),
(213, 367, '24143603', 0),
(214, 368, '28254862', 0),
(215, 369, '9757300899 / 9702889', 0),
(216, 370, '9820267978', 0),
(217, 371, '9323469141', 0),
(218, 372, '0251-2490244', 0),
(219, 373, '9870109119', 0),
(220, 374, '02117-263020', 0),
(221, 375, '9822055111', 0),
(222, 376, '9223422662', 0),
(223, 377, '02117-262304', 0),
(224, 378, '7666826685', 0),
(225, 379, '9860441184', 0),
(226, 380, '22944807', 0),
(227, 381, '040-24651092 / 66621', 0),
(228, 382, '9664354396', 0),
(229, 383, '24144909', 0),
(230, 384, '080-41178901', 0),
(231, 385, '28634496', 0),
(232, 386, '24711069', 0),
(233, 387, '9833990284', 0),
(234, 388, '24187564', 0),
(235, 389, '28881592', 0),
(236, 390, '24178363', 0),
(237, 391, '24154546', 0),
(238, 392, '24091275', 0),
(239, 393, '24091275', 0),
(240, 394, '26492059', 0),
(241, 395, '9867920040', 0),
(242, 396, '9892789958', 0),
(243, 397, '9819140578', 0),
(244, 398, '26149126', 0),
(245, 399, '26103898', 0),
(246, 400, '26110065', 0),
(247, 401, '24015173', 0),
(248, 402, '24023938 / 961972671', 0),
(249, 403, '24141826', 0),
(250, 404, '25280617', 0),
(251, 405, '9978056435', 0),
(252, 406, '28114148', 0),
(253, 407, '23878653', 0),
(254, 408, '23881069', 0),
(255, 409, '9029648561', 0),
(256, 410, '66626768', 0),
(257, 411, '28766900', 0),
(258, 412, '020-25670091 / 25535', 0),
(259, 413, '24012825', 0),
(260, 414, '9869605891', 0),
(261, 415, '0250-2344497', 0),
(262, 416, '25611552', 0),
(263, 417, '25677124', 0),
(264, 418, '25670519', 0),
(265, 419, '9375214890', 0),
(266, 420, '9860369100', 0),
(267, 421, '24147418 / 24142420', 0),
(268, 422, '0251-2862070', 0),
(269, 423, '26144588', 0),
(270, 424, '9833783390', 0),
(271, 425, '9699906307', 0),
(272, 426, '25623292', 0),
(273, 427, '64106875', 0),
(274, 428, '001-6106315897', 0),
(275, 429, '26147415', 0),
(276, 430, '26129568', 0),
(277, 431, '26141260', 0),
(278, 432, '26147415', 0),
(279, 433, '9833484545', 0),
(280, 434, '28827622', 0),
(281, 435, '9322639319', 0),
(282, 436, '9323524587', 0),
(283, 437, '9322568228', 0),
(284, 438, '28980352', 0),
(285, 440, '26832171 / 26824805', 0),
(286, 441, '26844299', 0),
(287, 442, '9172462656', 0),
(288, 443, '28209263', 0),
(289, 444, '0231-2522029', 0),
(290, 445, '0231-2527872', 0),
(291, 446, '28924447', 0),
(292, 448, '9867177179', 0),
(293, 449, '9869947390', 0),
(294, 450, '040-66363257', 0),
(295, 451, '25130202', 0),
(296, 452, '9029820677', 0),
(297, 453, '9820999498', 0),
(298, 454, '28933049', 0),
(299, 455, '9773656297', 0),
(300, 456, '8652368166', 0),
(301, 457, '8082430894', 0),
(302, 458, '9824577132', 0),
(303, 459, '9167689309', 0),
(304, 460, '9819120267', 0),
(305, 461, '29673371', 0),
(306, 462, '25229090', 0),
(307, 463, '25282895', 0),
(308, 464, '8108738751 / 8080294', 0),
(309, 465, '9424604038', 0),
(310, 466, '9978173793', 0),
(311, 467, '23826648', 0),
(312, 468, '9323652360 / 9323846', 0),
(313, 469, '24112395', 0),
(314, 470, '24112186', 0),
(315, 471, '9768289255', 0),
(316, 472, '9324395892', 0),
(317, 473, '27898110', 0),
(318, 474, '27890539', 0),
(319, 475, '23053998', 0),
(320, 476, '9867205733', 0),
(321, 477, '23019276', 0),
(322, 478, '28988020', 0),
(323, 479, '0250-2432918', 0),
(324, 480, '24139604', 0),
(325, 481, '28083540', 0),
(326, 482, '9969688382', 0),
(327, 483, '9323866244', 0),
(328, 484, '28058992', 0),
(329, 485, '9773976097', 0),
(330, 486, '9323945336', 0),
(331, 487, '9427656443', 0),
(332, 488, '9870504890', 0),
(333, 489, '9220968145', 0),
(334, 490, '9833856117', 0),
(335, 491, '02838-273647', 0),
(336, 492, '9867228144', 0),
(337, 493, '9662993566', 0),
(338, 494, '8141907805', 0),
(339, 495, '27545195', 0),
(340, 496, '9884955477', 0),
(341, 497, '08462-250139', 0),
(342, 498, '9849269737', 0),
(343, 499, '040-40176686', 0),
(344, 500, '28489983', 0);
-- --------------------------------------------------------
--
-- Table structure for table `family_marriage`
--
CREATE TABLE `family_marriage` (
`id` int(11) NOT NULL,
`family_id` int(11) DEFAULT NULL,
`member_id` int(11) DEFAULT NULL,
`first_name` varchar(50) DEFAULT NULL,
`second_name` varchar(50) DEFAULT NULL,
`third_name` varchar(50) DEFAULT NULL,
`surname` varchar(100) DEFAULT NULL,
`address` text,
`village` varchar(100) DEFAULT NULL,
`type` varchar(5) DEFAULT NULL,
`contact` varchar(50) DEFAULT NULL,
`email` varchar(100) DEFAULT NULL,
`deleted` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `family_marriage`
--
INSERT INTO `family_marriage` (`id`, `family_id`, `member_id`, `first_name`, `second_name`, `third_name`, `surname`, `address`, `village`, `type`, `contact`, `email`, `deleted`) VALUES
(1, 148, NULL, 'Nirmalaben', '<NAME>', '<NAME>', '27', 'Desalpur', NULL, 'In', '', '', 0),
(2, 148, NULL, 'Ranjan ', 'Dinesh', 'Dinesh', '164', '<NAME>', NULL, 'Out', '', '', 0),
(3, 148, 13, 'Seema', 'Mavji', 'Hirji 1', '', 'cotton green 1', '', 'in', '', '<EMAIL>', 0),
(4, 149, NULL, 'Laxmiben', '<NAME>', '<NAME>', '47', 'Bhujpur', NULL, 'In', '', '', 0),
(5, 149, NULL, 'Sheela', '<NAME>', '<NAME>', '48', 'Lakhapur', NULL, 'Out', '', '', 0),
(6, 149, NULL, 'Jayshree', '<NAME>', '<NAME>', '116', 'Bhojay', NULL, 'In', '', '', 0),
(7, 149, NULL, 'Priya', '<NAME>', '<NAME>', '48', 'Wadala', NULL, 'Out', '', '', 0),
(8, 150, NULL, 'Bhadra', 'Manohar', 'Manohar', '174', 'Punjab', NULL, 'Out', '', '', 0),
(9, 150, NULL, 'Jayvantiben', '<NAME>', '<NAME>', '27', 'Pundi', NULL, 'In', '', '', 0),
(10, 150, NULL, 'Geeta', 'Jayesh', 'Jayesh', '164', 'Vanki', NULL, 'Out', '', '', 0),
(11, 150, NULL, 'Meena', 'Chetan', 'Chetan', '27', 'Bagda', NULL, 'Out', '', '', 0),
(12, 151, NULL, 'Varsha', '<NAME>', '<NAME>', '47', 'Lakadia', NULL, 'Out', '', '', 0),
(13, 151, NULL, 'Ranjanben', '<NAME>', '<NAME>', '27', 'Pundi', NULL, 'In', '', '', 0),
(14, 151, NULL, 'Alpa', '<NAME>', '<NAME>', '27', 'Tunda', NULL, 'In', '', '', 0),
(15, 151, NULL, 'Priyanka', '<NAME>', '<NAME>', '147', 'Ramania', NULL, 'In', '', '', 0),
(16, 152, NULL, 'Paresha', '<NAME>', '<NAME>', '34', 'Beraja', NULL, 'In', '', '', 0),
(17, 154, NULL, 'Madhumati', '<NAME>', '<NAME>', '130', 'Surat', NULL, 'In', '', '', 0),
(18, 154, NULL, 'Charmi', '<NAME>', '<NAME>', '48', 'Godhra', NULL, '', '', '', 0),
(19, 155, NULL, 'Priti', '<NAME>', '<NAME>', '74', 'Makda', NULL, '', '', '', 0),
(20, 155, NULL, 'Poonam', '<NAME>', '<NAME>', '217', 'Dehradun', NULL, 'In', '', '', 0),
(21, 156, NULL, 'Rekha', '<NAME>', '<NAME>', '27', 'Tumbdi', NULL, 'Out', '', '', 0),
(22, 156, NULL, 'Laxmiben', '<NAME>', '<NAME>', '48', 'Sadau', NULL, 'In', '', '', 0),
(23, 156, NULL, 'Deepa', '<NAME>', '<NAME>', '147', 'Gundala', NULL, 'In', '', '', 0),
(24, 157, NULL, 'Bhartiben', '<NAME>', '<NAME>', '154', 'Pundi', NULL, 'In', '', '', 0),
(25, 158, NULL, 'Beena', '<NAME>', '<NAME>', '52', 'Samaghogha', NULL, 'Out', '', '', 0),
(26, 158, NULL, 'Sunderben', '<NAME>', '<NAME>', '164', 'Tumbdi', NULL, 'In', '', '', 0),
(27, 158, NULL, 'Kalpana', '<NAME>', '<NAME>', '48', 'Devpur', NULL, 'In', '', '', 0),
(28, 159, NULL, 'Jagruti', '<NAME>', '<NAME>', '18', 'Desalpur (Kanthi)', NULL, 'In', '', '', 0),
(29, 160, NULL, 'Manisha', '<NAME>', '<NAME>', '218', 'Baroi', NULL, 'In', '', '', 0),
(30, 161, NULL, 'Toral', '<NAME>', '<NAME>', '57', '<NAME>', NULL, '', '', '', 0),
(31, 161, NULL, 'Rashmi', '<NAME>', '<NAME>', '106', 'Lakhapur', NULL, 'In', '', '', 0),
(32, 161, NULL, 'Bhakti', '<NAME>', '<NAME>', '48', '<NAME>', NULL, '', '', '', 0),
(33, 162, NULL, 'Shilpa', '<NAME>', '<NAME>', '48', '', NULL, 'Out', '', '', 0),
(34, 162, NULL, 'Shantaben', '<NAME>', '<NAME>', '15', 'Beraja', NULL, 'In', '', '', 0),
(35, 162, NULL, 'Preeti', '<NAME>', '<NAME>', '219', '<NAME>', NULL, 'Out', '', '', 0),
(36, 162, NULL, 'Chhaya', '<NAME>', '<NAME>', '201', 'Deshalpur', NULL, 'In', '', '', 0),
(37, 163, NULL, 'Hansaben', '<NAME>', '<NAME>', '34', 'Bhujpur', NULL, 'In', '', '', 0),
(38, 164, NULL, 'Lata', '<NAME> ', '<NAME> ', '95', 'Koday', NULL, 'In', '', '', 0),
(39, 165, NULL, 'Smita', '<NAME>', '<NAME>', '147', '<NAME>', NULL, 'Out', '', '', 0),
(40, 165, NULL, 'Rashmiben', '<NAME>', '<NAME>', '27', 'Deshalpur (Kanthi)', NULL, 'In', '', '', 0),
(41, 165, NULL, 'Dr. Sheetal', '<NAME>', '<NAME>', '34', '<NAME>', NULL, 'Out', '', '', 0),
(42, 166, NULL, 'Meena', '<NAME>', '<NAME>', '34', 'Sadau', NULL, 'In', '', '', 0),
(43, 167, NULL, 'Kusum', '<NAME>', '<NAME>', '46', 'Bidada', NULL, 'Out', '', '', 0),
(44, 167, NULL, 'Raksha', '<NAME>', '<NAME>', '164', 'Pragpur', NULL, 'In', '', '', 0),
(45, 168, NULL, 'Minal', '<NAME>', '<NAME>', '95', 'Koday', NULL, 'Out', '9820930660', '', 0),
(46, 168, NULL, 'Nirmalaben', '<NAME>', '<NAME>', '34', 'Deshalpur', NULL, 'In', '', '', 0),
(47, 169, NULL, 'Sarika', '<NAME>', '<NAME>', '220', 'Ratnagiri', NULL, 'In', '', '', 0),
(48, 170, NULL, 'Nirmalaben', '<NAME>', '<NAME>', '147', 'Ramania', NULL, 'In', '', '', 0),
(49, 171, NULL, 'Kinjal', '<NAME>', '<NAME>', '48', 'Lakhapur', NULL, 'Out', '', '', 0),
(50, 171, NULL, 'Jayaben', '<NAME>', '<NAME>', '34', 'Luni', NULL, 'In', '', '', 0),
(51, 171, NULL, 'Kavita', '<NAME>', '<NAME>', '225', 'Lakhapur', NULL, 'In', '', '', 0),
(52, 172, NULL, 'Bhavna', '<NAME>.', '<NAME>.', '39', 'Parti', NULL, 'In', '', '', 0),
(53, 173, NULL, 'Chetna', '<NAME>', '<NAME>', '106', 'Beraja', NULL, 'In', '', '', 0),
(54, 174, NULL, 'Vandana', '<NAME>', '<NAME>', '15', 'Bhujpur', NULL, 'In', '', '', 0),
(55, 175, NULL, 'Vasantiben', '<NAME>', '<NAME>', '57', 'Bidada', NULL, 'In', '', '', 0),
(56, 175, NULL, 'Varsha', '<NAME>', '<NAME>', '47', 'Patri', NULL, 'Out', '', '', 0),
(57, 175, NULL, 'Minal', '<NAME>', '<NAME>', '164', '<NAME>', NULL, 'Out', '', '', 0),
(58, 176, NULL, 'Hemlataben', '<NAME>', '<NAME>', '225', 'Wadala', NULL, 'In', '', '', 0),
(59, 176, NULL, 'Krina', '<NAME>', '<NAME>', '48', 'Bhujpur', NULL, 'In', '', '', 0),
(60, 176, NULL, 'Mithaben', '<NAME>', '<NAME>', '34', 'Bhujpur', NULL, 'In', '', '', 0),
(61, 177, NULL, 'Manisha', '<NAME>', '<NAME>', '205', 'Navinar', NULL, 'In', '', '', 0),
(62, 178, NULL, 'Vanitaben', '<NAME>', '<NAME>', '102', 'Luni', NULL, 'In', '', '', 0),
(63, 178, NULL, 'Nehal', '<NAME>', '<NAME>', '34', 'Karaghogha', NULL, 'In', '', '', 0),
(64, 179, NULL, 'Bhavini', '<NAME>', '<NAME>', '34', 'Bhujpur', NULL, 'In', '', '', 0),
(65, 180, NULL, 'Alpa', 'Umesh', 'Umesh', '221', 'South', NULL, 'Out', '', '', 0),
(66, 180, NULL, 'Kajal', 'Jayesh', 'Jayesh', '222', 'Malvan', NULL, 'Out', '', '', 0),
(67, 181, NULL, 'Rajul', '<NAME>', '<NAME>', '57', 'Tunda', NULL, 'In', '', '', 0),
(68, 181, NULL, 'Ramila', '<NAME>', '<NAME>', '106', 'Halapur', NULL, 'Out', '', '', 0),
(69, 181, NULL, 'Bhavna', '<NAME>', '<NAME>', '34', 'Nangalpur', NULL, 'Out', '', '', 0),
(70, 181, NULL, 'Bhanuben', '<NAME>', '<NAME>', '57', 'Kapaya', NULL, 'In', '', '', 0),
(71, 182, NULL, 'Hemkunvarben', '<NAME>', '<NAME>', '269', 'Luni', NULL, 'In', '', '', 0),
(72, 182, NULL, 'Neeta', '<NAME>', '<NAME>', '34', 'Bhujpur', NULL, 'Out', '', '', 0),
(73, 183, NULL, 'Pinki', '<NAME>', '<NAME>', '118', 'Deshalpur', NULL, 'In', '', '', 0),
(74, 184, NULL, 'Meena', '<NAME>', '<NAME>', '48', 'Kandagara', NULL, 'In', '', '', 0),
(75, 185, NULL, 'Kapila', '<NAME>', '<NAME>', '205', 'Mundra', NULL, 'In', '', '', 0),
(76, 186, NULL, 'Bharat', '<NAME>', '<NAME>otalal', '127', 'Bagsara-Amreli', NULL, 'In', '', '', 0),
(77, 187, NULL, 'Nirmalaben', '<NAME>', '<NAME>', '157', '<NAME>', NULL, 'In', '', '', 0),
(78, 187, NULL, 'Sushila', '<NAME>', '<NAME>', '157', 'Kapaya', NULL, 'Out', '', '', 0),
(79, 187, NULL, 'Neeta', 'Chimanlal Phoolchand', 'Chimanlal Phoolchand', '223', 'Rajkot', NULL, 'In', '', '', 0),
(80, 187, NULL, 'Hema', '<NAME>', '<NAME>', '157', 'Toda', NULL, 'Out', '9819618957', '', 0),
(81, 187, NULL, 'Rita', '<NAME>', '<NAME>', '57', 'Bhujpur', NULL, 'Out', '', '', 0),
(82, 187, NULL, 'Ketki', '<NAME>', '<NAME>', '157', 'Gundala', NULL, 'Out', '', '', 0),
(83, 188, NULL, 'Taruna', '<NAME>', '<NAME>', '34', 'Deshalpur', NULL, 'In', '', '', 0),
(84, 189, NULL, 'Leena', '<NAME>', '<NAME>', '154', 'Gelda', NULL, 'Out', '', '', 0),
(85, 189, NULL, 'Velbai', '<NAME>', '<NAME>', '164', 'Beraja', NULL, 'In', '', '', 0),
(86, 189, NULL, 'Nita', '<NAME>', '<NAME>', '47', 'Koday', NULL, 'In', '', '', 0),
(87, 190, NULL, 'Pratiksha', '<NAME>', '<NAME>', '154', 'Mokha', NULL, 'In', '', '', 0),
(88, 191, NULL, 'Heena', '<NAME>', '<NAME>', '48', 'Bhujpur', NULL, 'In', '', '', 0),
(89, 191, NULL, 'Damyantiben', '<NAME>', '<NAME>', '205', '<NAME>', NULL, 'In', '', '', 0),
(90, 192, NULL, 'Vaishali', '<NAME>', '<NAME>', '27', 'Patri', NULL, 'In', '', '', 0),
(91, 193, NULL, 'Jasmin', 'Amit', 'Amit', '52', 'Sama', NULL, '', '', '', 0),
(92, 193, NULL, 'Meghna', '<NAME>', '<NAME>', '39', 'Patri', NULL, 'In', '', '', 0),
(93, 194, NULL, 'Jyoti', '<NAME>', '<NAME>', '48', 'Wadala', NULL, 'Out', '9029985458', '', 0),
(94, 194, NULL, 'Jayshree', '<NAME>', '<NAME>', '167', 'Limbdi', NULL, 'In', '', '', 0),
(95, 194, NULL, 'Sunderben', '<NAME>', '<NAME>', '164', 'Bhujpur', NULL, 'In', '', '', 0),
(96, 195, NULL, 'Neeta', '<NAME>', '<NAME>', '106', 'Depa', NULL, 'In', '', '', 0),
(97, 196, NULL, 'Kanchanben', '<NAME>', '<NAME>', '34', 'Mokha', NULL, 'In', '', '', 0),
(98, 196, NULL, 'Usha', '<NAME>', '<NAME>', '27', 'Bagda', NULL, 'In', '', '', 0),
(99, 197, NULL, 'Meena', '<NAME>', '<NAME>', '27', 'Vanki', NULL, 'In', '', '', 0),
(100, 198, NULL, 'Priti', '<NAME>', '<NAME>', '27', 'Patri', NULL, 'In', '', '', 0),
(101, 199, NULL, 'Nanbai', '<NAME>', '<NAME>', '224', 'Lakadia', NULL, 'In', '', '', 0),
(102, 200, NULL, 'Kesarben', '<NAME>', '<NAME>', '57', 'Tunda', NULL, 'In', '', '', 0),
(103, 200, NULL, 'Kalpana', '<NAME>', '<NAME>', '106', 'Karaghogha', NULL, 'Out', '', '', 0),
(104, 200, NULL, 'Shikha', '<NAME>', '<NAME>', '46', 'Navavas', NULL, 'In', '', '', 0),
(105, 200, NULL, 'Jyoti', '<NAME>', '<NAME>', '182', 'Pragpur', NULL, 'Out', '', '', 0),
(106, 201, NULL, 'Hemlataben', '<NAME>', '<NAME>', '205', 'Bidada', NULL, 'In', '', '', 0),
(107, 201, NULL, 'Deepa', '<NAME>', '<NAME>', '47', 'Bidada', NULL, 'Out', '9819661018', '', 0),
(108, 201, NULL, 'Anita', '<NAME>', '<NAME>', '225', 'Pratapur', NULL, 'In', '', '', 0),
(109, 201, NULL, 'Bhavini', '<NAME>', '<NAME>', '48', 'Gelda', NULL, 'Out', '9819425006', '', 0),
(110, 202, NULL, 'Ashaben', '<NAME>', '<NAME>', '57', 'Kapaya', NULL, 'In', '', '', 0),
(111, 202, NULL, 'Darshna', '<NAME>', '<NAME>', '47', '<NAME>', NULL, 'Out', '9819496772', '', 0),
(112, 202, NULL, 'Jinal', '<NAME>', '<NAME>', '157', 'Kapaya', NULL, 'In', '', '', 0),
(113, 203, NULL, 'Bhavna', '<NAME>', '<NAME>', '201', '<NAME>', NULL, 'In', '', '', 0),
(114, 204, NULL, 'Sheelaben', 'Narayan ', 'Narayan ', '226', 'Yavatmal', NULL, 'In', '', '', 0),
(115, 206, NULL, 'Nayna', '<NAME>', '<NAME>', '141', 'Bidada', NULL, 'In', '', '', 0),
(116, 206, NULL, 'Parul', '<NAME>', '<NAME>', '34', 'Bhujpur', NULL, 'Out', '', '', 0),
(117, 206, NULL, 'Shantaben', '<NAME>', '<NAME>', '164', '<NAME>', NULL, 'In', '', '', 0),
(118, 207, NULL, 'Ramilaben', '<NAME>', '<NAME>', '118', '<NAME>', NULL, 'In', '', '', 0),
(119, 207, NULL, 'Dimple', '<NAME>', '<NAME>', '34', 'Nangalpur', NULL, 'In', '', '', 0),
(120, 208, NULL, 'Jayaben', '<NAME>', '<NAME>', '164', 'Bidada', NULL, 'In', '', '', 0),
(121, 208, NULL, 'Sheetal', '<NAME>', '<NAME>', '25', 'Pragpur', NULL, 'Out', '', '', 0),
(122, 208, NULL, 'Hasti', '<NAME>', '<NAME>', '201', 'Deshalpur (Kanthi)', NULL, 'In', '', '', 0),
(123, 208, NULL, 'Hiral', '<NAME>', '<NAME>', '106', '<NAME>', NULL, 'In', '', '', 0),
(124, 209, NULL, 'Chandrika', '<NAME>', '<NAME>', '205', 'Gelda', NULL, 'Out', '', '', 0),
(125, 209, NULL, 'Chanchalben', '<NAME>', '<NAME>', '205', 'Bidada', NULL, 'In', '', '', 0),
(126, 209, NULL, 'Leena', '<NAME>', '<NAME>', '205', 'Gelda', NULL, 'Out', '', '', 0),
(127, 209, NULL, 'Bhavini', '<NAME>', '<NAME>', '201', 'Deshalpur (Kanthi)', NULL, 'In', '', '', 0),
(128, 209, NULL, 'Nayna', '<NAME>', 'Manish Popatlal', '48', 'Kandagara', NULL, 'Out', '', '', 0),
(129, 209, NULL, 'Dipti', '<NAME>', '<NAME>', '205', 'Gelda', NULL, 'Out', '', '', 0),
(130, 209, NULL, 'Avni', '<NAME>', '<NAME>', '48', 'Sadau', NULL, 'Out', '', '', 0),
(131, 210, NULL, 'Urmila', '<NAME>', '<NAME>', '130', 'Una (Rajkot)', NULL, 'In', '', '', 0),
(132, 211, NULL, 'Chhayaben', '<NAME>', '<NAME>', '27', 'Wadala', NULL, 'In', '', '', 0),
(133, 211, NULL, 'Deepali', '<NAME>', '<NAME>', '48', 'Mokha', NULL, 'In', '', '', 0),
(134, 212, NULL, 'Prabhaben', '<NAME>', '<NAME>', '34', 'Baroi', NULL, 'In', '', '', 0),
(135, 212, NULL, 'Vaishali', '<NAME>', '<NAME>', '157', 'Kapaya', NULL, 'Out', '9664972399', '', 0),
(136, 212, NULL, 'Daksha', '<NAME>', '<NAME>', '48', 'Sadau', NULL, 'In', '', '', 0),
(137, 214, NULL, 'Subhadra', '<NAME>', '<NAME>', '205', '<NAME>', NULL, 'In', '', '', 0),
(138, 218, NULL, 'Saroj', '<NAME>', '<NAME>', '48', 'Wadala', NULL, 'In', '', '', 0),
(139, 219, NULL, 'Varsha', 'Jignesh ', 'Jignesh ', '133', 'Bharuch', NULL, 'In', '', '', 0),
(140, 219, NULL, 'Tejbai', '<NAME>', '<NAME>', '48', 'Kandagara', NULL, 'In', '', '', 0),
(141, 220, NULL, 'Damyanti', 'Kalyanji', 'Kalyanji', '34', 'Bhorara', NULL, 'Out', '', '', 0),
(142, 220, NULL, 'Chetna', 'Dilip', 'Dilip', '27', '<NAME>', NULL, 'Out', '', '', 0),
(143, 220, NULL, 'Usha', '<NAME>', '<NAME>', '182', 'Deshalpur', NULL, 'In', '', '', 0),
(144, 220, NULL, 'Shobha', 'Praful', 'Praful', '157', 'Samaghogha', NULL, 'Out', '', '', 0),
(145, 220, NULL, 'Deepa', 'Hitendra', 'Hitendra', '48', 'Wadala', NULL, 'Out', '', '', 0),
(146, 221, NULL, 'Pratibha', 'Radhelalji', 'Radhelalji', '67', 'Chindwada', NULL, 'In', '', '', 0),
(147, 222, NULL, 'Dhanvantiben', '<NAME>', '<NAME>', '27', 'Kandagara', NULL, 'In', '', '', 0),
(148, 222, NULL, 'Kalpa', '<NAME>', '<NAME>', '227', 'Goa', NULL, 'Out', '', '', 0),
(149, 222, NULL, 'Rinku', '<NAME>', '<NAME>', '63', 'Bada', NULL, 'In', '', '', 0),
(150, 222, NULL, 'Bhavna', '<NAME>', '<NAME>', '154', 'Karaghogha', NULL, 'Out', '', '', 0),
(151, 223, NULL, 'Rupal', '<NAME>', '<NAME>', '164', 'Deshalpur (kanthi)', NULL, 'Out', '', '', 0),
(152, 223, NULL, 'Vasumatiben', '<NAME>', '<NAME>', '48', 'Wadala', NULL, 'In', '', '', 0),
(153, 223, NULL, 'Bhavna', '<NAME>', '<NAME>', '34', 'Bhujpur', NULL, 'Out', '', '', 0),
(154, 223, NULL, 'Priti', '<NAME>', '<NAME>', '34', 'Mokha', NULL, 'Out', '', '', 0),
(155, 223, NULL, 'Aarti', '<NAME>', '<NAME>', '157', 'Sadau', NULL, 'Out', '', '', 0),
(156, 224, NULL, 'Bharti', '<NAME>', '<NAME>', '228', 'Veraval', NULL, 'In', '', '', 0),
(157, 225, NULL, 'Damyanti', 'Jadavji', 'Jadavji', '157', '', NULL, 'Out', '', '', 0),
(158, 225, NULL, 'Bharti', '<NAME>', '<NAME>', '157', 'Toda', NULL, 'In', '', '', 0),
(159, 225, NULL, 'Dhanvanti', '<NAME>', '<NAME>', '157', 'Toda', NULL, 'Out', '', '', 0),
(160, 225, NULL, 'Chetna', '<NAME>', '<NAME>', '157', 'Toda', NULL, 'Out', '', '', 0),
(161, 225, NULL, 'Kalpana', '<NAME>', '<NAME>', '52', 'Beraja', NULL, 'Out', '', '', 0),
(162, 226, NULL, 'Manjulaben', '<NAME>', '<NAME>', '34', 'Bidada', NULL, 'In', '', '', 0),
(163, 226, NULL, 'Jayshree', '<NAME>', '<NAME>', '27', 'Chhasara', NULL, 'In', '', '', 0),
(164, 226, NULL, 'Bhavna', 'Ajay', 'Ajay', '48', 'Bhujpur', NULL, 'Out', '', '', 0),
(165, 226, NULL, 'Heena', '<NAME>', '<NAME>', '46', 'Talvana', NULL, 'In', '', '', 0),
(166, 227, NULL, 'Beena', '<NAME>', '<NAME>', '102', 'Luni', NULL, 'Out', '9987266684', '', 0),
(167, 227, NULL, 'Premilaben', '<NAME>', '<NAME>', '147', 'Lakhapur', NULL, 'In', '', '', 0),
(168, 228, NULL, 'Pravina', '<NAME>', '<NAME>', '27', 'Bidada', NULL, 'In', '', '', 0),
(169, 229, NULL, 'Varsha', '<NAME>', '<NAME>', '34', 'Bhujpur', NULL, 'Out', '', '', 0),
(170, 229, NULL, 'Maya', '<NAME>', '<NAME>', '201', 'Deshalpur', NULL, 'Out', '', '', 0),
(171, 229, NULL, 'Bhanumati', '<NAME>', '<NAME>', '27', 'Deshalpur', NULL, 'In', '', '', 0),
(172, 230, NULL, 'Pragna', '<NAME>', '<NAME>', '46', 'Bidada', NULL, 'Out', '', '', 0),
(173, 230, NULL, 'Bhanumatiben', '<NAME>', '<NAME>', '34', 'Kapaya', NULL, 'In', '', '', 0),
(174, 230, NULL, 'Purvi', '<NAME>', '<NAME>', '15', 'Mokha', NULL, 'Out', '', '', 0),
(175, 230, NULL, 'Shilpa', '<NAME>', '<NAME>', '34', 'Mokha', NULL, 'Out', '', '', 0),
(176, 230, NULL, 'Rinku', '<NAME>', '<NAME>', '46', 'Talvana', NULL, 'Out', '', '', 0),
(177, 230, NULL, 'Romi', '<NAME>', '<NAME>', '48', 'Bhorara', NULL, 'Out', '', '', 0),
(178, 231, NULL, 'Kanchanben', '<NAME>', '<NAME>', '118', '<NAME>', NULL, 'In', '', '', 0),
(179, 231, NULL, 'Varsha', '<NAME>', '<NAME>', '27', 'Kandagara', NULL, 'Out', '', '', 0),
(180, 231, NULL, 'Kushila', '<NAME>', '<NAME>', '34', 'Wadala', NULL, 'Out', '', '', 0),
(181, 232, NULL, 'Hemlataben', '<NAME>', '<NAME>', '116', 'Vidh', NULL, 'In', '', '', 0),
(182, 232, NULL, 'Jyoti', 'Vijay', 'Vijay', '167', 'Mandvi', NULL, 'In', '', '', 0),
(183, 233, NULL, 'Aarti', '<NAME>', '<NAME>', '225', 'Karaghogha', NULL, 'Out', '', '', 0),
(184, 233, NULL, 'Indiraben', '<NAME>al', '<NAME>atlal', '164', 'Gundala', NULL, 'In', '', '', 0),
(185, 233, NULL, 'Kantaben', '<NAME>', '<NAME>', '118', 'Vanki', NULL, 'Out', '', '', 0),
(186, 233, NULL, 'Priti', '<NAME>', '<NAME>', '225', 'Karaghogha', NULL, 'In', '', '', 0),
(187, 233, NULL, 'Maniben', '<NAME>', '<NAME>', '71', 'Beraja', NULL, 'In', '', '', 0),
(188, 234, NULL, 'Gangabai', '<NAME>', '<NAME>', '46', 'Bidada', NULL, 'In', '', '', 0),
(189, 234, NULL, 'Javerben', '<NAME>', '<NAME>', '52', 'Chundi', NULL, 'Out', '', '', 0),
(190, 234, NULL, 'Nayna', '<NAME>', '<NAME>', '133', 'Udwada (Gujarat)', NULL, 'In', '', '', 0),
(191, 234, NULL, 'Prabhaben', '<NAME>', '<NAME>', '67', 'Phalna (Marwad)', NULL, 'Out', '', '', 0),
(192, 234, NULL, 'Hemlata', '<NAME>', '<NAME>', '34', '<NAME>', NULL, 'Out', '', '', 0),
(193, 235, NULL, 'Bharti', '<NAME>', '<NAME>', '230', 'Vapi', NULL, 'In', '', '', 0),
(194, 236, NULL, 'Ramila', '<NAME>', '<NAME>', '231', 'Valsad', NULL, 'In', '', '', 0),
(195, 237, NULL, 'Nayna', '<NAME>', '<NAME>', '149', 'Vapi', NULL, 'In', '', '', 0),
(196, 238, NULL, 'Sushma', '<NAME>', '<NAME>', '46', 'Bidada', NULL, 'Out', '', '', 0),
(197, 238, NULL, 'Premilaben', '<NAME>', '<NAME>', '46', 'Bidada', NULL, 'In', '', '', 0),
(198, 238, NULL, 'Kilpa', '<NAME>', '<NAME>', '48', 'Chasra', NULL, 'In', '', '', 0),
(199, 240, NULL, 'Raksha', '<NAME>', '<NAME>', '27', 'Talvana', NULL, 'In', '', '', 0),
(200, 241, NULL, 'Taraben', 'Popatlal Jethalal', 'Popatlal Jethalal', '27', 'Godhra', NULL, 'In', '', '', 0),
(201, 241, NULL, 'Sejal', '<NAME>', '<NAME>', '57', 'Bhujpur', NULL, 'In', '', '', 0),
(202, 242, NULL, 'Charul', 'Popatlal Jethalal', 'Popatlal Jethalal', '27', 'Godhra', NULL, 'In', '', '', 0),
(203, 243, NULL, 'Rita', '<NAME>', '<NAME>', '147', '<NAME>', NULL, 'In', '', '', 0),
(204, 244, NULL, 'Geeta', 'Buddhabhai', 'Buddhabhai', '133', 'Valsad', NULL, 'In', '', '', 0),
(205, 244, NULL, 'Khetbai', '<NAME>', '<NAME>', '46', 'Bidada', NULL, 'In', '', '', 0),
(206, 245, NULL, 'Ganga', 'Raghurai', 'Raghurai', '232', 'Ambivali', NULL, 'In', '', '', 0),
(207, 246, NULL, 'Kusumben', '<NAME>', '<NAME>', '39', 'Patri', NULL, 'In', '', '', 0),
(208, 246, NULL, 'Rekha', '<NAME>', '<NAME>', '34', '<NAME>', NULL, 'Out', '9892939360', '', 0),
(209, 246, NULL, 'Manisha', '<NAME>', '<NAME>', '233', 'Pragpur', NULL, 'In', '', '', 0),
(210, 246, NULL, 'Raksha', '<NAME>', '<NAME>', '164', 'Bhisra', NULL, 'Out', '9870706107', '', 0),
(211, 247, NULL, 'Bhagvatiben', '<NAME>', '<NAME>', '201', 'Merau', NULL, 'In', '', '', 0),
(212, 247, NULL, 'Minal', '<NAME>', '<NAME>', '116', 'Changdai', NULL, 'In', '', '', 0),
(213, 247, NULL, 'Prachi', 'Dr. Suresh', 'Dr. Suresh', '234', 'Nagpur', NULL, 'In', '', '', 0),
(214, 248, NULL, 'Payal', 'Girish', 'Girish', '167', '<NAME>', NULL, 'Out', '', '', 0),
(215, 248, NULL, 'Rekhaben', '<NAME>aya', 'Meghji Obhaya', '78', 'Wadala', NULL, 'In', '', '', 0),
(216, 248, NULL, 'Priti', '<NAME>', '<NAME>', '235', 'Mathura', NULL, 'In', '', '', 0),
(217, 250, NULL, 'Neeta', '<NAME>', '<NAME>', '185', 'Borivali', NULL, 'Out', '28631752', '', 0),
(218, 250, NULL, 'Rasila', 'Tal<NAME>haya', 'Talakshi Obhaya', '164', 'Beraja', NULL, 'In', '', '', 0),
(219, 250, NULL, 'Pratiksha', '<NAME>', '<NAME>', '48', 'Wadala', NULL, 'In', '', '', 0),
(220, 250, NULL, 'Neha', '<NAME>', '<NAME>', '205', 'Deshalpur', NULL, 'In', '', '', 0),
(221, 251, NULL, 'Jasmi', '<NAME>', '<NAME>', '27', 'Mokha', NULL, 'Out', '9930509750', '', 0),
(222, 251, NULL, 'Pritiben', '<NAME>', '<NAME>', '48', 'Karaghogha', NULL, 'In', '', '', 0),
(223, 251, NULL, 'Nehal', '<NAME>', '<NAME>', '203', 'Undoth', NULL, 'Out', '9819747899', '', 0),
(224, 251, NULL, 'Deepa', '<NAME>', '<NAME>', '106', 'Depa', NULL, 'In', '', '', 0),
(225, 252, NULL, 'Dimple', 'Hiral ', 'Hiral ', '225', 'Lakhapur', NULL, 'Out', '', '', 0),
(226, 252, NULL, 'Naliniben', '<NAME>', '<NAME>', '182', 'Deshalpur', NULL, 'In', '', '', 0),
(227, 252, NULL, 'Kinjal', 'Jatin', 'Jatin', '48', 'Bhojay', NULL, 'Out', '', '', 0),
(228, 253, NULL, 'Taruna', '<NAME>', '<NAME>', '157', 'Sadau', NULL, 'In', '', '', 0),
(229, 253, NULL, 'Charmi', '<NAME>', '<NAME>', '47', 'Wadala', NULL, 'In', '', '', 0),
(230, 254, NULL, 'Chanchalben', '<NAME>', '<NAME>', '154', 'Beraja', NULL, 'In', '', '', 0),
(231, 254, NULL, 'Hemlata', '<NAME>', '<NAME>', '48', 'Faradi', NULL, 'In', '', '', 0),
(232, 255, NULL, 'Chetna', '<NAME>', '<NAME>', '27', 'Karaghogha', NULL, 'In', '', '', 0),
(233, 256, NULL, 'Shweta', '<NAME>', '<NAME>', '237', '<NAME>(Ratnagiri)', NULL, 'In', '', '', 0),
(234, 257, NULL, 'Manjulaben', '<NAME>', '<NAME>', '48', 'Wadala', NULL, 'In', '', '', 0),
(235, 257, NULL, 'Heena', '<NAME>', '<NAME>', '27', 'Godhra', NULL, 'In', '', '', 0),
(236, 258, NULL, 'Bhavna', '<NAME>', '<NAME>', '48', 'Rayan', NULL, 'In', '', '', 0),
(237, 259, NULL, 'Meeta', '<NAME>', '<NAME>', '164', 'Bhorara', NULL, 'In', '', '', 0),
(238, 260, NULL, 'Jyoti', '<NAME>', '<NAME>', '205', 'Godhra', NULL, 'In', '', '', 0),
(239, 261, NULL, 'Chetna', '<NAME>', '<NAME>', '141', 'Bidada', NULL, 'Out', '', '', 0),
(240, 261, NULL, 'Hansaben', '<NAME>', '<NAME>', '57', 'Bhujpur', NULL, 'In', '', '', 0),
(241, 261, NULL, 'Daksha', '<NAME>', '<NAME>', '47', 'Raidhanjar', NULL, 'Out', '', '', 0),
(242, 261, NULL, 'Gunjan', '<NAME>', '<NAME>', '34', 'Kapaya', NULL, 'Out', '', '', 0),
(243, 261, NULL, 'Beena', '<NAME>', '<NAME>', '95', 'Koday', NULL, 'In', '', '', 0),
(244, 262, NULL, 'Javerben', '<NAME>', '<NAME>', '48', 'Kandagara', NULL, 'In', '', '', 0),
(245, 262, NULL, 'Varsha', '<NAME>', '<NAME>', '205', 'Bidada', NULL, 'In', '', '', 0),
(246, 263, NULL, 'Ranjan', '<NAME>', '<NAME>', '167', 'Gundala', NULL, 'Out', '', '', 0),
(247, 263, NULL, 'Sneha', '<NAME>', '<NAME>', '167', 'Solapur', NULL, 'In', '', '', 0),
(248, 263, NULL, 'Priti', 'Manish ', 'Manish ', '270', 'Rajkot', NULL, 'Out', '', '', 0),
(249, 264, NULL, 'Rukshmaniben', '<NAME>', '<NAME>', '27', '<NAME>', NULL, 'In', '', '', 0),
(250, 264, NULL, 'Nayna', 'Dr. <NAME>', 'Dr. <NAME>', '46', 'Bidada', NULL, 'Out', '', '', 0),
(251, 265, NULL, 'Vidhi', '<NAME>', '<NAME>', '27', 'Kandagara', NULL, 'Out', '', '', 0),
(252, 265, NULL, 'Kusum', '<NAME>', '<NAME>', '118', 'Vandh', NULL, 'In', '', '', 0),
(253, 266, NULL, 'Raksha', '<NAME>', '<NAME>', '147', 'Ramania', NULL, 'In', '', '', 0),
(254, 267, NULL, 'Prabha', '<NAME>', '<NAME>', '18', 'Vandh', NULL, 'In', '', '', 0),
(255, 268, NULL, 'Bharati', '<NAME>', '<NAME>', '164', 'Tumbadi', NULL, 'In', '', '', 0),
(256, 269, NULL, 'Rasilaben', '<NAME>', '<NAME>', '74', 'Dumra', NULL, 'In', '', '', 0),
(257, 269, NULL, 'Neeta', '<NAME>', '<NAME>', '46', 'Depa', NULL, '', '9004053167', '', 0),
(258, 269, NULL, 'Vandana', '<NAME>', '<NAME>', '47', 'Sherdi', NULL, '', '9220411724', '', 0),
(259, 270, NULL, 'Kusumben', '<NAME>', '<NAME>', '39', 'Patri', NULL, 'In', '', '', 0),
(260, 270, NULL, 'Bhavini', '<NAME>', '<NAME>', '225', 'Karaghogha', NULL, 'In', '', '', 0),
(261, 270, NULL, 'Bhakti', '<NAME>', '<NAME>', '118', '<NAME>', NULL, 'In', '', '', 0),
(262, 271, NULL, 'Gangaben', '<NAME>', '<NAME>', '48', 'Lakhapur', NULL, 'In', '', '', 0),
(263, 271, NULL, 'Meena', '<NAME>', '<NAME>', '48', 'Chhasra', NULL, 'Out', '', '', 0),
(264, 271, NULL, 'Savita', '<NAME>', '<NAME>', '48', 'Kandagara', NULL, 'In', '', '', 0),
(265, 272, NULL, 'Jayshree', '<NAME>', '<NAME>', '27', 'Samaghogha', NULL, 'In', '', '', 0),
(266, 273, NULL, 'Bharati', '<NAME>', '<NAME>', '48', 'Lakhapur', NULL, 'In', '', '', 0),
(267, 274, NULL, 'Sakarben', '<NAME>', '<NAME>', '34', 'Tumbadi', NULL, 'In', '', '', 0),
(268, 275, NULL, 'Induben', '<NAME>', '<NAME>', '78', 'Baroi', NULL, 'In', '', '', 0),
(269, 275, NULL, 'Nikita', '<NAME>', '<NAME>', '48', 'Merau', NULL, 'Out', '', '', 0),
(270, 276, NULL, 'Rashmi', '<NAME>', '<NAME>', '164', 'Sadau', NULL, 'Out', '', '', 0),
(271, 276, NULL, 'Zaverben', '<NAME>', '<NAME>', '48', 'Lakhapur', NULL, 'In', '', '', 0),
(272, 276, NULL, 'Deepa', '<NAME>', '<NAME>', '48', 'Chhasra', NULL, 'In', '', '', 0),
(273, 277, NULL, 'Sarojben', '<NAME>', '<NAME>', '225', 'Karaghogha', NULL, 'In', '', '', 0),
(274, 277, NULL, 'NEETA ', '<NAME>', '<NAME>', '27', 'Vanki', NULL, 'Out', '9969114387', '', 0),
(275, 277, NULL, 'Vaishali', '<NAME>', '<NAME>', '130', 'Mahuva', NULL, 'In', '', '', 0),
(276, 278, NULL, '<NAME>)', '<NAME>', '<NAME>', '27', 'Chhasra', NULL, 'Out', '', '', 0),
(277, 278, NULL, 'Rasilaben', '<NAME>', '<NAME>', '205', 'Bidada', NULL, 'In', '', '', 0),
(278, 278, NULL, 'Deepa', '<NAME>', '<NAME>', '27', 'Bidada', NULL, 'In', '', '', 0),
(279, 279, NULL, 'Urvi', '<NAME>', '<NAME>', '147', '<NAME>', NULL, 'In', '', '', 0),
(280, 280, NULL, 'Hetal', '<NAME>', '<NAME>', '27', 'Wadala', NULL, 'In', '', '', 0),
(281, 281, NULL, 'Champaben', '<NAME>', '<NAME>', '271', 'Depa', NULL, 'In', '', '', 0),
(282, 281, NULL, 'Ruchi', '<NAME>', '<NAME>', '201', 'Nagalpur', NULL, 'Out', '', '', 0),
(283, 282, NULL, 'Surbhi', '<NAME>', '<NAME>', '147', 'Mokha', NULL, 'Out', '9870010008', '', 0),
(284, 282, NULL, 'Nirmalaben', '<NAME>', '<NAME>', '157', 'Pragpur', NULL, '', '', '', 0),
(285, 282, NULL, 'Nayan', '<NAME>', '<NAME>', '48', 'Lakhapur', NULL, '', '', '', 0),
(286, 283, NULL, 'Bhavika', '<NAME>', '<NAME>', '272', 'Rajula', NULL, 'Out', '', '', 0),
(287, 283, NULL, 'Niruben', '<NAME>', '<NAME>', '47', 'Mapar', NULL, 'In', '', '', 0),
(288, 284, NULL, 'Jayaben', '<NAME>', '<NAME>', '164', 'Koday', NULL, 'In', '', '', 0),
(289, 285, NULL, 'Reena', '<NAME>', '<NAME>', '273', 'Veraval', NULL, 'Out', '9819304427', '', 0),
(290, 286, NULL, 'Rashmi', '<NAME>', '<NAME>', '27', 'Godhra', NULL, 'In', '', '', 0),
(291, 287, NULL, 'Dimple', 'Vishal', 'Vishal', '274', 'Jaipur/Patna', NULL, 'Out', '', '', 0),
(292, 287, NULL, 'Urmilaben', '<NAME>', '<NAME>', '225', 'Lakhapur', NULL, 'In', '', '', 0),
(293, 287, NULL, 'Dhurti', '<NAME>', '<NAME>', '205', 'Bidada', NULL, 'In', '', '', 0),
(294, 288, NULL, 'Manjulaben', '<NAME>', '<NAME>', '96', 'Mokha', NULL, 'In', '', '', 0),
(295, 288, NULL, 'Mansi', '<NAME>', '<NAME>', '118', 'Koday', NULL, 'In', '', '', 0),
(296, 288, NULL, 'Jinal', '<NAME>', '<NAME>', '34', 'Patri', NULL, 'In', '', '', 0),
(297, 288, NULL, 'Khetbai', '<NAME>', '<NAME>', '27', '<NAME>', NULL, 'In', '', '', 0),
(298, 289, NULL, 'Varsha', '<NAME>', '<NAME>', '27', 'Pundi', NULL, 'In', '', '', 0),
(299, 290, NULL, 'Harsha', '<NAME>', '<NAME>', '164', 'Vanki', NULL, 'In', '', '', 0),
(300, 290, NULL, 'Dipti', '<NAME>', '<NAME>', '34', 'Gajod', NULL, 'In', '', '', 0),
(301, 291, NULL, 'Jyotiben', '<NAME>', '<NAME>', '34', 'Sadau', NULL, 'In', '', '', 0),
(302, 292, NULL, 'Jayshree', '<NAME>', '<NAME>', '27', 'Patri', NULL, 'In', '', '', 0),
(303, 292, NULL, 'Hemkunvarben', '<NAME>', '<NAME>', '155', '<NAME>', NULL, 'In', '', '', 0),
(304, 293, NULL, 'Lata', 'Dinesh', 'Dinesh', '48', 'Devpur', NULL, 'Out', '', '', 0),
(305, 293, NULL, 'Prabhaben', '<NAME>', '<NAME>', '164', 'Beraja', NULL, 'In', '', '', 0),
(306, 293, NULL, 'Ila', 'Ramnik', 'Ramnik', '164', 'Tumbadi', NULL, 'Out', '', '', 0),
(307, 293, NULL, 'Bhavna', 'Dhimant', 'Dhimant', '34', '<NAME>', NULL, 'Out', '', '', 0),
(308, 294, NULL, 'Vimla', 'Ramnik', 'Ramnik', '164', 'Depa', NULL, 'Out', '', '', 0),
(309, 294, NULL, 'Beena', 'Kiran', 'Kiran', '275', 'Mumbai', NULL, 'Out', '', '', 0),
(310, 294, NULL, 'Indiraben', '<NAME>', '<NAME>', '47', 'Rayan', NULL, 'In', '', '', 0),
(311, 295, NULL, 'Payal', '<NAME>', '<NAME>', '0', 'Palanpur', NULL, 'Out', '', '', 0),
(312, 295, NULL, 'Meena', 'Harjeevandas', 'Harjeevandas', '50', 'Dahisar', NULL, 'In', '', '', 0),
(313, 296, NULL, 'Jayvanti', 'Morarji', 'Morarji', '164', 'Patri', NULL, 'In', '', '', 0),
(314, 297, NULL, 'Nehal', '<NAME>', '<NAME>', '47', 'Rayan', NULL, 'In', '', '', 0),
(315, 298, NULL, 'Pushpaben', '<NAME>', '<NAME>', '130', 'Surat', NULL, 'In', '', '', 0),
(316, 299, NULL, 'Harsha', '<NAME>', '<NAME>', '64', 'Merau', NULL, 'In', '', '', 0),
(317, 300, NULL, 'Nayna', '<NAME>', '<NAME>', '133', 'Bilimora', NULL, 'In', '', '', 0),
(318, 301, NULL, 'Rita', '<NAME>', '<NAME>', '141', 'Talvana', NULL, 'In', '', '', 0),
(319, 302, NULL, 'Shilpa', '<NAME>', '<NAME>', '47', 'Koday', NULL, 'In', '', '', 0),
(320, 303, NULL, 'Kantilal', '<NAME>', '<NAME>', '147', 'Ramania', NULL, 'In', '', '', 0),
(321, 304, NULL, 'Chandan', '<NAME>', '<NAME>', '157', 'Nagalpur', NULL, 'In', '', '', 0),
(322, 305, NULL, 'Jyoti', '<NAME>', '<NAME>', '39', 'Patri', NULL, 'In', '', '', 0),
(323, 306, NULL, 'Rita', '<NAME>', '<NAME>', '48', 'Vanki', NULL, 'In', '', '', 0),
(324, 307, NULL, 'Kiranben', '<NAME>', '<NAME>', '34', 'Luni', NULL, 'In', '', '', 0),
(325, 308, NULL, 'Ratanben', '<NAME>', '<NAME>', '276', 'Karagoga', NULL, 'In', '', '', 0),
(326, 308, NULL, 'Jyoti', '<NAME>', '<NAME>', '167', 'Ahmedabad', NULL, 'Out', '', '', 0),
(327, 309, NULL, 'Diwaliben', '<NAME>', '<NAME>', '48', '<NAME>', NULL, 'In', '', '', 0),
(328, 309, NULL, 'Heena', '<NAME>', '<NAME>', '205', 'Gelada', NULL, 'Out', '', '', 0),
(329, 309, NULL, 'Varsha', '<NAME>', '<NAME>', '46', 'Navavas', NULL, 'In', '', '', 0),
(330, 309, NULL, 'Bhamini', '<NAME>', '<NAME>', '27', 'Chasara', NULL, 'In', '', '', 0),
(331, 310, NULL, 'Jeeta', '<NAME>', '<NAME>', '164', 'Desalpur (Kanthi)', NULL, 'In', '', '', 0),
(332, 311, NULL, 'Vimalaben', '<NAME>', '<NAME>', '201', 'Desalpur (Kanthi)', NULL, 'In', '', '', 0),
(333, 311, NULL, 'Meeta', '<NAME>', '<NAME>', '48', 'Vadala', NULL, 'Out', '', '', 0),
(334, 311, NULL, 'Manisha', '<NAME>', '<NAME>', '47', 'Patri', NULL, 'In', '', '', 0),
(335, 312, NULL, 'Jyoti', '<NAME>', '<NAME>', '27', 'Beraja', NULL, 'In', '', '', 0),
(336, 313, NULL, 'Bharati', '<NAME>', '<NAME>', '154', 'Gelada', NULL, 'In', '', '', 0),
(337, 313, NULL, 'Tina', '<NAME>', '<NAME>', '161', 'Gundala', NULL, 'In', '', '', 0),
(338, 314, NULL, 'Jigana', '<NAME>', '<NAME>', '48', 'Vadala', NULL, 'In', '', '', 0),
(339, 315, NULL, 'Manisha', '<NAME>', '<NAME>', '147', 'Toda', NULL, 'Out', '9821618179', '', 0),
(340, 315, NULL, 'Nirmalalben', '<NAME>', '<NAME>', '157', 'Toda', NULL, 'In', '', '', 0),
(341, 315, NULL, 'Dr Bhavini', '<NAME>', '<NAME>', '46', 'Chasara', NULL, 'Out', '9869239229', '', 0),
(342, 315, NULL, 'Aarav', '<NAME>', '<NAME>', '277', 'Ramaniya', NULL, 'In', '', '', 0),
(343, 316, NULL, 'Jigna', '<NAME>', '<NAME>', '34', 'Desalpar', NULL, 'Out', '9320067086', '', 0),
(344, 316, NULL, 'Prabhavati', '<NAME>', '<NAME>', '34', 'Patri', NULL, 'In', '', '', 0),
(345, 316, NULL, 'Bijal', '<NAME>', '<NAME>', '47', 'Layja', NULL, 'Out', '9987717917', '', 0),
(346, 316, NULL, 'Ruchi', '<NAME>', '<NAME>', '105', 'Varsamedi', NULL, '', '9819704575', '', 0),
(347, 317, NULL, 'Rashmiben', '<NAME>', '<NAME>', '147', 'Ramaniya', NULL, 'In', '', '', 0),
(348, 317, NULL, 'Sejul', '<NAME>', '<NAME>', '278', 'Rajkot', NULL, 'In', '', '', 0),
(349, 318, NULL, 'Prina', 'Dr <NAME>', 'Dr <NAME>', '48', 'Kandagra', NULL, 'In', '', '', 0),
(350, 319, NULL, 'Priti', '<NAME>', '<NAME>', '52', '<NAME>', NULL, 'In', '', '', 0),
(351, 320, NULL, 'Bharatiben', '<NAME>', '<NAME>', '157', 'Sadau', NULL, 'In', '', '', 0),
(352, 320, NULL, 'Alpa', '<NAME>', '<NAME>', '57', 'Gundala', NULL, 'Out', '9967805644', '', 0),
(353, 320, NULL, 'Alpa', '<NAME>', '<NAME>', '225', 'Vadala', NULL, 'In', '', '', 0),
(354, 321, NULL, 'Nanbai', '<NAME>', '<NAME>', '147', 'Ramaniya', NULL, 'In', '', '', 0),
(355, 321, NULL, 'Hemlata', 'Babulal ', 'Babulal ', '279', 'Bedranpur', NULL, 'In', '', '', 0),
(356, 322, NULL, 'Chandan', '<NAME>', '<NAME>', '164', 'Beraja', NULL, 'In', '', '', 0),
(357, 323, NULL, 'Hansa', '<NAME>', '<NAME>', '27', '<NAME>', NULL, 'In', '', '', 0),
(358, 324, NULL, 'Aarati', '<NAME> ', '<NAME> ', '133', 'Sanjan', NULL, 'In', '', '', 0),
(359, 325, NULL, 'Ratanben', '<NAME>', 'Umeshi Obhya', '164', 'Beraja', NULL, 'In', '', '', 0),
(360, 325, NULL, 'Rekhaben', '<NAME>', '<NAME>', '164', 'Kandagra', NULL, 'In', '', '', 0),
(361, 325, NULL, 'Vimla', '<NAME>', '<NAME>', '205', 'Bidada', NULL, 'Out', '', '', 0),
(362, 325, NULL, 'Anjana', '<NAME>', '<NAME>', '57', 'Bhujpur', NULL, 'In', '', '', 0),
(363, 325, NULL, 'Jinal', '<NAME>', '<NAME>', '161', 'Gundala', NULL, 'Out', '', '', 0),
(364, 325, NULL, 'Pallavi', '<NAME>', '<NAME>', '147', '<NAME>', NULL, 'In', '', '', 0),
(365, 326, NULL, 'Hetal ', 'Ashish', 'Ashish', '157', 'Kapaya', NULL, 'Out', '', '', 0),
(366, 326, NULL, 'Vanitaben', '<NAME>', '<NAME>', '78', 'Baroi', NULL, 'In', '', '', 0),
(367, 326, NULL, 'Khyati', '<NAME>', '<NAME>', '201', 'Nana Asambia', NULL, 'In', '', '', 0),
(368, 327, NULL, 'Heena', '<NAME>', '<NAME>', '27', 'Bagda', NULL, 'In', '', '', 0),
(369, 328, NULL, 'Jyotiben', '<NAME>', '<NAME>', '154', 'Karaghogha', NULL, 'In', '', '', 0),
(370, 328, NULL, 'Dharini', '<NAME>', '<NAME>', '280', 'Jamnagar', NULL, 'In', '', '', 0),
(371, 328, NULL, 'Jinal', '<NAME>', '<NAME>', '57', 'Bhujpur', NULL, '', '', '', 0),
(372, 329, NULL, 'Sejal', '<NAME>', '<NAME>', '277', 'Ramania', NULL, 'Out', '', '', 0),
(373, 329, NULL, 'Rekhaben', '<NAME>', '<NAME>', '57', 'Bidada', NULL, 'In', '', '', 0),
(374, 330, NULL, 'Heena', 'Pravin', 'Pravin', '281', 'Nasik', NULL, 'Out', '', '', 0),
(375, 330, NULL, 'Shushila', '<NAME>', '<NAME>', '34', 'Luni', NULL, 'In', '', '', 0),
(376, 330, NULL, 'Deepa', 'Pritesh', 'Pritesh', '106', 'Depa', NULL, 'Out', '', '', 0),
(377, 331, NULL, 'Amrutben', '<NAME>', '<NAME>', '157', 'Kapaya', NULL, 'In', '', '', 0),
(378, 332, NULL, 'Nilam', '<NAME>', '<NAME>', '27', 'Karaghogha', NULL, 'In', '', '', 0),
(379, 333, NULL, 'Bharati (Varsha)', '<NAME>', '<NAME>', '205', 'Nagalpur', NULL, 'Out', '9869579932', '', 0),
(380, 333, NULL, 'Laxmiben', '<NAME>', '<NAME>', '164', 'Ramania', NULL, 'In', '', '', 0),
(381, 333, NULL, 'Priti', '<NAME>', '<NAME>', '157', 'Toda', NULL, 'In', '', '', 0),
(382, 333, NULL, 'Rashmi', '<NAME>', '<NAME>', '34', 'Bhujpur', NULL, 'In', '', '', 0),
(383, 334, NULL, 'Vashali', '<NAME>', '<NAME>', '205', 'Navinar', NULL, 'In', '', '', 0),
(384, 335, NULL, 'Deepali', '<NAME>', '<NAME>', '27', 'Vaki', NULL, 'In', '', '', 0),
(385, 336, NULL, 'Rajan', '<NAME>', '<NAME>', '34', 'Rayan', NULL, 'Out', '', '', 0),
(386, 336, NULL, 'Lachhbai', '<NAME>', '<NAME>', '27', 'Desalpar', NULL, 'In', '', '', 0),
(387, 336, NULL, 'Neeta', '<NAME>', '<NAME>', '48', 'Beraja', NULL, 'Out', '', '', 0),
(388, 336, NULL, 'Geeta', '<NAME>', '<NAME>', '34', 'Talvana', NULL, 'In', '', '', 0),
(389, 336, NULL, 'Dhanvanti', '<NAME>', '<NAME>', '141', 'Talvana', NULL, 'Out', '', '', 0),
(390, 336, NULL, 'Chhaya', '<NAME>', '<NAME>', '164', 'Talvana', NULL, 'Out', '', '', 0),
(391, 337, NULL, 'Bhavna', '<NAME>', '<NAME>', '225', 'Pratapur', NULL, 'Out', '', '', 0),
(392, 337, NULL, 'Laxmiben', '<NAME>', '<NAME>', '57', 'Kapaya', NULL, 'In', '', '', 0),
(393, 337, NULL, 'Javerben', '<NAME>', '<NAME>', '147', 'Ramania', NULL, 'In', '', '', 0),
(394, 338, NULL, 'Taruna', '<NAME>', '<NAME>', '205', '<NAME>', NULL, 'In', '', '', 0),
(395, 339, NULL, 'Sakarben', '<NAME>', '<NAME>', '282', 'Beraja', NULL, 'In', '', '', 0),
(396, 339, NULL, 'Sajal ', 'Sachin ', 'Sachin ', '57', 'Don', NULL, 'Out', '', '', 0),
(397, 339, NULL, 'Madhuriben', '<NAME>', '<NAME>', '27', 'Navavas', NULL, 'In', '', '', 0),
(398, 339, NULL, 'Shital', 'Mehul ', 'Mehul ', '116', 'Karaghogha', NULL, 'Out', '', '', 0),
(399, 340, NULL, 'Mukti', '<NAME>', '<NAME>', '205', '<NAME>', NULL, 'Out', '9167272524', '', 0),
(400, 340, NULL, 'Panbai', '<NAME>', '<NAME>', '164', 'Depa', NULL, 'In', '', '', 0),
(401, 340, NULL, 'Heena', '<NAME>', '<NAME>', '27', 'Chasara', NULL, 'In', '', '', 0),
(402, 341, NULL, 'Ridhi', '<NAME>', '<NAME>', '34', '<NAME>', NULL, 'Out', '9833965517', '', 0),
(403, 341, NULL, 'Harsha', '<NAME>', '<NAME>', '121', 'Vadala', NULL, 'In', '', '', 0),
(404, 342, NULL, 'Pooja', '<NAME>', '<NAME>', '27', 'Patri', NULL, 'Out', '9619150647', '', 0),
(405, 342, NULL, 'Zaverben', '<NAME>', '<NAME>', '15', 'Pragpur', NULL, 'In', '', '', 0),
(406, 342, NULL, 'Daksha', '<NAME>', '<NAME>', '48', 'Bharpur', NULL, 'In', '', '', 0),
(407, 343, NULL, 'Bhavika', '<NAME>', '<NAME>', '106', 'Faradi', NULL, 'In', '', '', 0),
(408, 344, NULL, 'Menoti', '<NAME>', '<NAME>', '34', 'Navavas', NULL, 'Out', '9320045264', '', 0),
(409, 344, NULL, 'Hansa', '<NAME>', '<NAME>', '113', 'Bidada', NULL, 'In', '', '', 0),
(410, 344, NULL, 'Jital', '<NAME>', '<NAME>', '27', 'Pundi', NULL, 'In', '', '', 0),
(411, 344, NULL, 'Laxmiben', '<NAME>', '<NAME>', '48', 'Kandagra', NULL, 'In', '', '', 0),
(412, 345, NULL, 'Dimppy', '<NAME>', '<NAME>', '25', '<NAME>', NULL, 'Out', '', '', 0),
(413, 345, NULL, 'Jyotiben', '<NAME>', '<NAME>', '48', 'Bhujpur', NULL, 'In', '', '', 0),
(414, 345, NULL, 'Reena', '<NAME>', '<NAME>', '48', 'Mokha', NULL, 'In', '', '', 0),
(415, 346, NULL, 'Nirmalben', '<NAME>', '<NAME>', '164', 'Ramania', NULL, 'In', '', '', 0),
(416, 347, NULL, 'Maniben', '<NAME>', '<NAME>', '57', 'Tunda', NULL, 'In', '', '', 0),
(417, 347, NULL, 'Meena', '<NAME>', '<NAME>', '27', 'Godhra', NULL, 'Out', '9892872489', '', 0),
(418, 348, NULL, 'Sushma', '<NAME>', '<NAME>', '48', 'Rayan', NULL, '', '', '', 0),
(419, 349, NULL, 'Ashwini', '<NAME>', '<NAME>', '167', '<NAME>', NULL, 'In', '', '', 0),
(420, 350, NULL, 'Neeta', 'Praful ', 'Praful ', '283', 'Talwana', NULL, 'Out', '', '', 0),
(421, 350, NULL, 'Rukshmani', '<NAME>', '<NAME>', '48', 'Talwana', NULL, 'In', '', '', 0),
(422, 350, NULL, 'Harsha', '<NAME>', '<NAME>', '15', 'Beraja', NULL, 'In', '', '', 0),
(423, 350, NULL, 'Lata (Leena)', 'Sunil', 'Sunil', '48', 'Nana Asambia', NULL, 'Out', '', '', 0),
(424, 351, NULL, 'Pravina', '<NAME>', '<NAME>', '48', 'Sadau', NULL, 'In', '', '', 0),
(425, 351, NULL, 'Rinku', '<NAME>', '<NAME>', '203', 'Mokha', NULL, 'In', '', '', 0),
(426, 351, NULL, 'Hemal', '<NAME>', '<NAME>', '284', 'Vadala', NULL, 'In', '', '', 0),
(427, 353, NULL, 'Hemlataben', '<NAME>', '<NAME>', '34', 'Gadhsisa', NULL, 'In', '', '', 0),
(428, 353, NULL, 'Bhakti', '<NAME>', '<NAME>', '63', 'Devpur', NULL, 'In', '', '', 0),
(429, 355, NULL, 'Geeta', '<NAME>', '<NAME>', '205', 'Mundra', NULL, 'In', '', '', 0),
(430, 356, NULL, 'Jayshree', '<NAME>', '<NAME>', '205', 'Karaghogha', NULL, 'In', '', '', 0),
(431, 357, NULL, 'Vanita', '<NAME>', '<NAME>', '116', 'Bhesra', NULL, 'In', '', '', 0),
(432, 359, NULL, 'Harsha', '<NAME>', '<NAME>', '34', 'Bhujpur', NULL, 'In', '', '', 0),
(433, 360, NULL, 'Usha', '<NAME>', '<NAME>', '133', 'Surat', NULL, 'In', '', '', 0),
(434, 362, NULL, 'Jigna', '<NAME>', '<NAME>', '27', 'Layja', NULL, 'Out', '', '', 0),
(435, 362, NULL, 'Hansaben', '<NAME>', '<NAME>', '106', '<NAME>', NULL, 'In', '', '', 0),
(436, 362, NULL, 'Usha', '<NAME>', '<NAME>', '133', 'Sanjan', NULL, 'In', '', '', 0),
(437, 363, NULL, 'Jayvantiben', '<NAME>', '<NAME>', '48', 'Vadala', NULL, 'In', '', '', 0),
(438, 363, NULL, 'Punam', '<NAME>', '<NAME>', '164', 'Beraja', NULL, 'In', '', '', 0),
(439, 364, NULL, 'Sejal', '<NAME>', '<NAME>', '52', 'Merav', NULL, 'In', '', '', 0),
(440, 365, NULL, 'Pallavi', '<NAME>', '<NAME>', '34', 'Talwana', NULL, 'In', '', '', 0),
(441, 366, NULL, 'Damyantiben', '<NAME>', '<NAME>', '201', 'Patri', NULL, 'In', '', '', 0),
(442, 367, NULL, 'Kesharben', '<NAME>', '<NAME>', '27', 'Kandagra', NULL, 'In', '', '', 0),
(443, 367, NULL, 'Heta', '<NAME>', '<NAME>', '284', 'Baroi', NULL, 'In', '', '', 0),
(444, 368, NULL, 'Bakula', '<NAME>', '<NAME>', '205', 'Bidada', NULL, 'Out', '8767624333', '', 0),
(445, 368, NULL, 'Prabhaben', '<NAME>', '<NAME>', '39', 'Patri', NULL, 'In', '', '', 0),
(446, 369, NULL, 'Eena', '<NAME>', '<NAME>', '27', 'Bhujpur', NULL, 'In', '', '', 0),
(447, 370, NULL, 'Jinal', '<NAME>', '<NAME>', '27', 'Kandagra', NULL, 'In', '', '', 0),
(448, 371, NULL, 'Kamlaben', '<NAME>', '<NAME>', '39', 'Mokha', NULL, 'In', '', '', 0),
(449, 371, NULL, 'Dharmishtha', 'Ramesh', 'Ramesh', '133', 'Baletha', NULL, 'In', '', '', 0),
(450, 372, NULL, 'Nayna', '<NAME>', '<NAME>', '285', 'Godhra', NULL, 'Out', '', '', 0),
(451, 372, NULL, 'Taramatiben', 'Khimji', 'Khimji', '47', 'Patri', NULL, 'In', '', '', 0),
(452, 373, NULL, 'Tejbai', '<NAME>', '<NAME>', '106', 'Karaghogha', NULL, 'In', '', '', 0),
(453, 373, NULL, 'Rukhmani', 'Kantilal ', 'Kantilal ', '205', 'Desalpar', NULL, 'Out', '9870109119', '', 0),
(454, 373, NULL, 'Jyoti', 'Haresh', 'Haresh', '39', 'Patri', NULL, 'Out', '', '', 0),
(455, 374, NULL, 'Sangeeta', '<NAME>', '<NAME>', '154', 'Gelada', NULL, 'Out', '', '', 0),
(456, 374, NULL, 'Jasvantiben', '<NAME>', '<NAME>', '164', '<NAME>', NULL, '', '', '', 0),
(457, 374, NULL, 'Bhavna', '<NAME>', '<NAME>', '34', 'Luni', NULL, 'Out', '', '', 0),
(458, 374, NULL, 'Nayana', '<NAME>', '<NAME>', '34', 'Vadala', NULL, 'Out', '', '', 0),
(459, 375, NULL, 'Bhakti', '<NAME>', '<NAME>', '34', 'Sadau', NULL, 'Out', '9594289111', '', 0),
(460, 375, NULL, 'Dimpi', '<NAME>', '<NAME>', '167', 'Gundala', NULL, 'In', '', '', 0),
(461, 376, NULL, 'Nisha', '<NAME>', '<NAME>', '27', 'Layja', NULL, 'Out', '9821374311', '', 0),
(462, 376, NULL, 'Lilavantiben', '<NAME>', '<NAME>', '34', 'Merav', NULL, 'In', '', '', 0),
(463, 376, NULL, 'Neha ', '<NAME>', '<NAME>', '205', 'Layja', NULL, 'Out', '9892565583', '', 0),
(464, 376, NULL, 'Bhavana', '<NAME>', '<NAME>', '34', 'Navavas', NULL, 'In', '', '', 0),
(465, 377, NULL, 'Nirmalaben', '<NAME>', '<NAME>', '47', '<NAME>', NULL, 'In', '', '', 0),
(466, 377, NULL, 'Dimple', '<NAME>', '<NAME>', '157', 'Toda', NULL, 'In', '', '', 0),
(467, 378, NULL, 'Kanchan', '<NAME> ', '<NAME> ', '48', 'Vadala', NULL, 'In', '', '', 0),
(468, 379, NULL, 'Manisha', '<NAME>', '<NAME>', '47', 'Pragpur', NULL, 'In', '', '', 0),
(469, 380, NULL, 'Panbai', '<NAME>', '<NAME>', '0', 'Bidada', NULL, 'In', '', '', 0),
(470, 380, NULL, 'Sakarbai', '<NAME>', '<NAME>', '147', 'Ramania', NULL, 'Out', '', '', 0),
(471, 380, NULL, 'Ranjanben', '<NAME>', '<NAME>', '113', 'Bario', NULL, 'In', '', '', 0),
(472, 380, NULL, 'Shantaben', '<NAME>', '<NAME>', '147', '<NAME>', NULL, 'Out', '', '', 0),
(473, 380, NULL, 'Bhagyvanti', '<NAME>', '<NAME>', '27', 'Bidada', NULL, 'Out', '', '', 0),
(474, 380, NULL, 'Prabhben', '<NAME>', '<NAME>', '194', '<NAME>', NULL, 'Out', '', '', 0),
(475, 380, NULL, 'Hiral ', '<NAME>', '<NAME>', '47', 'Koday', NULL, 'Out', '9987197228', '', 0),
(476, 380, NULL, 'Saloni', '<NAME>', '<NAME>', '34', 'Tunda', NULL, 'Out', '9987197228', '', 0),
(477, 381, NULL, 'Smita', '<NAME> ', '<NAME> ', '34', 'Gadhsisa', NULL, 'Out', '9821371371', '', 0),
(478, 381, NULL, 'Vimalaben', '<NAME>', '<NAME>', '34', 'Koday', NULL, 'In', '', '', 0),
(479, 381, NULL, 'Dr Jayshree', '<NAME>', '<NAME>', '34', 'Bhujpur', NULL, 'Out', '', '', 0),
(480, 382, NULL, 'Krina', '<NAME>', '<NAME>', '34', 'Talvana', NULL, 'Out', '8879327639', '', 0),
(481, 382, NULL, 'Hemaben', '<NAME>', '<NAME>', '39', 'Navinar', NULL, 'In', '', '', 0),
(482, 382, NULL, 'Hetal', '<NAME>', '<NAME>', '15', 'Bhujpur', NULL, '', '', '', 0),
(483, 383, NULL, 'Neha ', 'Manoj', 'Manoj', '286', 'Azamgarh (UP)', NULL, 'Out', '', '', 0),
(484, 383, NULL, 'Rekha', '<NAME>', '<NAME>', '95', 'Koday', NULL, 'In', '', '', 0),
(485, 383, NULL, 'Pooja', 'Viren', 'Viren', '27', '<NAME>', NULL, 'Out', '9619851859', '', 0);
INSERT INTO `family_marriage` (`id`, `family_id`, `member_id`, `first_name`, `second_name`, `third_name`, `surname`, `address`, `village`, `type`, `contact`, `email`, `deleted`) VALUES
(486, 384, NULL, 'Rita', '<NAME>', '<NAME>', '48', 'Toda', NULL, 'Out', '9448358818', '', 0),
(487, 384, NULL, 'Maniben', '<NAME>', '<NAME>', '0', 'Gelda', NULL, 'In', '', '', 0),
(488, 384, NULL, 'Neela', '<NAME>', '<NAME>', '205', '<NAME>', NULL, 'In', '', '', 0),
(489, 385, NULL, 'Dimple', '<NAME>', '<NAME>', '47', 'Koday', NULL, 'In', '', '', 0),
(490, 386, NULL, 'Hemlataben', '<NAME>', '<NAME>', '46', 'Bidada', NULL, 'In', '', '', 0),
(491, 387, NULL, 'Priti', '<NAME>', '<NAME>', '167', 'Vadodara', NULL, 'Out', '001-281-788-4822', '', 0),
(492, 387, NULL, 'Vimlaben', '<NAME>', '<NAME>', '57', 'Kapaya', NULL, 'In', '', '', 0),
(493, 388, NULL, 'Chetna', '<NAME>', '<NAME>', '34', 'Gundala', NULL, 'In', '', '', 0),
(494, 389, NULL, 'Hemlata', '<NAME>', '<NAME>', '269', 'Patri', NULL, 'In', '', '', 0),
(495, 390, NULL, 'Rajanben', '<NAME>', '<NAME>', '147', '<NAME>', NULL, 'In', '', '', 0),
(496, 390, NULL, 'Sejal', '<NAME>', '<NAME>', '34', 'Gundala', NULL, 'In', '', '', 0),
(497, 391, NULL, 'Laxmiben', '<NAME>', '<NAME>', '34', 'Patri', NULL, 'In', '', '', 0),
(498, 391, NULL, 'Mittal', '<NAME>', '<NAME>', '57', 'Koday', NULL, 'In', '', '', 0),
(499, 392, NULL, 'Bhavna', '<NAME>', '<NAME>', '27', 'Mota Layja', NULL, 'Out', '9819997707', '', 0),
(500, 392, NULL, 'Ushaben', '<NAME>', '<NAME>', '106', 'Bidada', NULL, '', '', '', 0),
(501, 393, NULL, 'Geeta', '<NAME>', '<NAME>', '287', 'Gundala', NULL, 'In', '', '', 0),
(502, 394, NULL, 'Parina', '<NAME>', '<NAME>', '201', 'Desalpar (Kanthi)', NULL, 'In', '', '', 0),
(503, 395, NULL, 'Rekha', '<NAME>', '<NAME>', '48', 'Pratapur', NULL, 'In', '', '', 0),
(504, 396, NULL, 'Ratanben', '<NAME>', '<NAME>', '201', 'Deshalpur', NULL, 'In', '', '', 0),
(505, 396, NULL, 'Neeta', '<NAME>', '<NAME>', '52', 'Navavas', NULL, 'Out', '', '', 0),
(506, 396, NULL, 'Dipti', '<NAME>', '<NAME>', '201', 'Karaghogha', NULL, '', '', '', 0),
(507, 396, NULL, 'Aruna', '<NAME>', '<NAME>', '167', 'Tunda (Layja)', NULL, 'Out', '', '', 0),
(508, 397, NULL, 'Jayvantiben', '<NAME>', '<NAME>', '27', 'Kundrodi', NULL, 'In', '', '', 0),
(509, 397, NULL, 'Charmi', '<NAME>', '<NAME>', '225', 'Vadala', NULL, 'In', '', '', 0),
(510, 398, NULL, 'Manjulaben', '<NAME>', '<NAME>', '27', 'Pundi', NULL, 'In', '', '', 0),
(511, 398, NULL, 'Jyoti', '<NAME>', '<NAME>', '205', 'Pratapur', NULL, 'Out', '', '', 0),
(512, 398, NULL, 'Heena', '<NAME>', '<NAME>', '157', 'Merav', NULL, 'In', '', '', 0),
(513, 399, NULL, 'Reena', '<NAME>', '<NAME>', '167', 'Bidada', NULL, 'Out', '9819109182', '', 0),
(514, 399, NULL, 'Bharati', '<NAME>', '<NAME>', '34', 'Kandagra', NULL, 'In', '', '', 0),
(515, 400, NULL, 'Urmila', '<NAME>', '<NAME>', '27', '<NAME> ', NULL, 'In', '', '', 0),
(516, 401, NULL, 'Taraben', '<NAME>', '<NAME>', '95', 'Bidada', NULL, 'In', '', '', 0),
(517, 402, NULL, 'Beena', '<NAME>', '<NAME>', '287', 'Gelda', NULL, 'In', '', '', 0),
(518, 403, NULL, 'Bhavna', '<NAME>', '<NAME>', '185', 'Lakhpat', NULL, 'Out', '9029939811', '', 0),
(519, 403, NULL, 'Hemlataben', '<NAME>', '<NAME>', '70', 'Ramania', NULL, 'In', '', '', 0),
(520, 403, NULL, 'Heena', '<NAME>', '<NAME>', '167', 'Khambhat', NULL, 'Out', '9320077909', '', 0),
(521, 403, NULL, 'Jayshree', '<NAME>', '<NAME>', '34', 'Pragpur', NULL, 'In', '', '', 0),
(522, 404, NULL, 'Diraj', '<NAME>', '<NAME>', '27', '<NAME>', NULL, 'Out', '9870557355', '', 0),
(523, 404, NULL, 'Dr. Sunita', 'Vinaykumar', 'Vinaykumar', '288', 'Rajkot', NULL, 'In', '', '', 0),
(524, 405, NULL, 'Harsha', '<NAME>', '<NAME>', '47', 'Tragdi', NULL, 'Out', '', '', 0),
(525, 405, NULL, 'Meena', '<NAME>', '<NAME>', '48', 'Kandagra', NULL, '', '', '', 0),
(526, 405, NULL, 'Ranjan', '<NAME>', '<NAME>', '48', 'Sadau', NULL, 'Out', '', '', 0),
(527, 405, NULL, 'Chanchalbai', '<NAME>', '<NAME>', '203', 'Koday', NULL, '', '', '', 0),
(528, 406, NULL, 'Bharati', '<NAME>', '<NAME>', '116', 'Changdai', NULL, 'Out', '', '', 0),
(529, 406, NULL, 'Javerbai', '<NAME>', '<NAME>', '201', 'Karaghogha', NULL, 'In', '', '', 0),
(530, 407, NULL, 'Ketki', 'Rajesh', 'Rajesh', '52', 'Deshalpur', NULL, 'Out', '', '', 0),
(531, 407, NULL, 'Jayaben', '<NAME>', '<NAME>', '0', 'Koday', NULL, 'In', '', '', 0),
(532, 407, NULL, 'Vandna', 'Hitesh', 'Hitesh', '157', 'Kapaya', NULL, 'Out', '', '', 0),
(533, 407, NULL, 'Pragna', '<NAME>', '<NAME>', '157', 'Pragpur', NULL, 'In', '', '', 0),
(534, 408, NULL, 'Rukshamani', '<NAME>', '<NAME>', '289', 'Bidada', NULL, 'In', '', '', 0),
(535, 409, NULL, 'Meena', '<NAME>', '<NAME>', '48', 'Kandagra', NULL, 'In', '', '', 0),
(536, 409, NULL, 'Maniben', '<NAME>', '<NAME>', '47', 'Bidada', NULL, 'In', '', '', 0),
(537, 410, NULL, 'Laxmiben', '<NAME>', '<NAME>', '118', 'Kapaya', NULL, 'In', '', '', 0),
(538, 410, NULL, 'Bharati', '<NAME>', '<NAME>', '34', 'Bhujpur', NULL, 'In', '', '', 0),
(539, 411, NULL, 'Panbai', '<NAME>', '<NAME>', '147', 'Ramania', NULL, 'In', '', '', 0),
(540, 411, NULL, 'Bharati', '<NAME>', '<NAME>', '121', 'Vadala', NULL, 'In', '', '', 0),
(541, 411, NULL, 'Bhranti', '<NAME>', '<NAME>', '48', 'Bario', NULL, 'In', '', '', 0),
(542, 412, NULL, 'Sejal', '<NAME>', '<NAME>', '167', 'Beraja', NULL, 'Out', '', '', 0),
(543, 412, NULL, 'Madhuriben', 'Khamji', 'Khamji', '48', 'Koday', NULL, 'In', '', '', 0),
(544, 412, NULL, 'Urvi', '<NAME>', '<NAME>', '48', 'Chasara', NULL, 'In', '', '', 0),
(545, 413, NULL, 'Priti', 'Cheatan jethalal', 'Cheatan jethalal', '112', 'Sayra', NULL, 'Out', '', '', 0),
(546, 413, NULL, 'Sushilaben', '<NAME> ', '<NAME> ', '34', 'Beraja', NULL, 'In', '', '', 0),
(547, 413, NULL, 'Parul', 'Vinodrai ', 'Vinodrai ', '290', 'Gujarat', NULL, 'In', '', '', 0),
(548, 415, NULL, 'Meeta', '<NAME>', '<NAME>', '48', 'Luni', NULL, 'In', '', '', 0),
(549, 416, NULL, 'Varsha', 'Kekin', 'Kekin', '37', 'Beraja', NULL, 'Out', '9768971171', '', 0),
(550, 416, NULL, 'Laxmiben', '<NAME>', '<NAME>', '284', 'Baroi', NULL, 'In', '', '', 0),
(551, 416, NULL, 'Urvashi', '<NAME>', '<NAME>', '201', '<NAME>anthi)', NULL, 'In', '', '', 0),
(552, 417, NULL, 'Ridhi', 'Pratik', 'Pratik', '48', 'Sadau', NULL, 'Out', '', '', 0),
(553, 417, NULL, 'Kusumben', '<NAME>', '<NAME>', '205', 'Pratpur', NULL, 'In', '', '', 0),
(554, 417, NULL, 'Ronak', '<NAME>', '<NAME>', '34', 'Pragpur', NULL, 'In', '', '', 0),
(555, 418, NULL, 'Priti', '<NAME>', '<NAME>', '284', 'Mundra', NULL, 'In', '', '', 0),
(556, 418, NULL, 'Neha', '<NAME>', '<NAME>', '52', 'Lakhapar', NULL, 'In', '', '', 0),
(557, 420, NULL, 'Sushilaben', '<NAME>', '<NAME>', '39', 'Navinar', NULL, 'In', '', '', 0),
(558, 420, NULL, 'Parul', '<NAME>', '<NAME>', '113', 'Pundi', NULL, 'Out', '', '', 0),
(559, 420, NULL, 'Bhavya', '<NAME>', '<NAME>', '167', 'Kundrodi', NULL, 'Out', '', '', 0),
(560, 420, NULL, 'Hetal', '<NAME>', '<NAME>', '167', 'Kundrodi', NULL, 'Out', '', '', 0),
(561, 421, NULL, 'Sejal', 'Ganesh', 'Ganesh', '291', 'Sion', NULL, 'Out', '', '', 0),
(562, 421, NULL, 'Kusumben', 'Chunilal', 'Chunilal', '205', 'Rajkot', NULL, 'In', '', '', 0),
(563, 422, NULL, 'Urmi', '<NAME> ', '<NAME> ', '34', 'Bagda', NULL, 'Out', '9819424927', '', 0),
(564, 422, NULL, 'Sulochanaben', '<NAME>', '<NAME>', '27', '<NAME>', NULL, 'In', '', '', 0),
(565, 422, NULL, 'Jalpa', '<NAME>', '<NAME>', '292', 'Tadaj', NULL, 'Out', '9820707516', '', 0),
(566, 423, NULL, 'Harsha', '<NAME>', '<NAME>', '27', 'Bhukpur', NULL, 'In', '', '', 0),
(567, 424, NULL, 'Varsha', '<NAME>', '<NAME>', '205', 'Navinar', NULL, 'In', '', '', 0),
(568, 425, NULL, 'Rekha', 'Ratilal', 'Ratilal', '27', '<NAME>', NULL, 'Out', '', '', 0),
(569, 425, NULL, 'Mongiben', '<NAME>', '<NAME>', '48', 'Desalpar (Kanthi)', NULL, 'In', '', '', 0),
(570, 425, NULL, 'Hansha', 'Vijay ', 'Vijay ', '277', 'Beraja', NULL, 'Out', '', '', 0),
(571, 425, NULL, 'Prafula', 'Shirish', 'Shirish', '48', 'Lakhapar', NULL, 'Out', '', '', 0),
(572, 425, NULL, 'Shilpa', 'Jayesh', 'Jayesh', '46', 'Bidada', NULL, 'Out', '', '', 0),
(573, 425, NULL, 'Dr Charul', 'Yogesh', 'Yogesh', '167', 'Bidada', NULL, 'Out', '', '', 0),
(574, 426, NULL, 'Neeta', '<NAME>', '<NAME>', '284', 'Bario', NULL, 'Out', '', '', 0),
(575, 426, NULL, 'Rukshmani', '<NAME>', '<NAME>', '48', 'Kandagra', NULL, 'In', '', '', 0),
(576, 426, NULL, 'Meeta', '<NAME>', '<NAME>', '34', 'Bhujpur', NULL, 'In', '', '', 0),
(577, 427, NULL, 'Vijayaben', 'Malshi', 'Malshi', '39', 'Chasara', NULL, 'In', '', '', 0),
(578, 428, NULL, 'Sarlaben', '<NAME>', '<NAME>', '48', 'Desalpar', NULL, 'In', '', '', 0),
(579, 429, NULL, 'Vimlaben', '<NAME>', '<NAME>', '0', 'Depa', NULL, 'In', '', '', 0),
(580, 430, NULL, 'Hemali', '<NAME>', '<NAME>', '27', 'Kandagra', NULL, 'Out', '9833199388', '', 0),
(581, 430, NULL, 'Laxmiben', '<NAME>', '<NAME>', '277', 'Ramaniya', NULL, 'In', '', '', 0),
(582, 430, NULL, 'Sonal', '<NAME>', '<NAME>', '48', 'Pratapur', NULL, 'Out', '9819960994', '', 0),
(583, 430, NULL, 'Dimple', '<NAME>', '<NAME>', '47', 'Raydhanjar', NULL, 'In', '', '', 0),
(584, 431, NULL, 'Manjulaben', '<NAME>', '<NAME>', '48', 'Bhujpur', NULL, 'In', '', '', 0),
(585, 431, NULL, 'Hetal', '<NAME>', '<NAME>', '293', 'Savarkunla', NULL, 'Out', '', '', 0),
(586, 431, NULL, 'Hetal', '<NAME>', '<NAME>', '269', 'Luni', NULL, '', '', '', 0),
(587, 431, NULL, 'Jigna', '<NAME>', '<NAME>', '39', 'Patri', NULL, 'Out', '', '', 0),
(588, 432, NULL, 'Hiral', 'Manan', 'Manan', '133', 'Surat', NULL, 'Out', '19172096872', '', 0),
(589, 432, NULL, 'Manda', '<NAME>', '<NAME>', '294', 'Jalgav', NULL, 'In', '', '', 0),
(590, 433, NULL, 'Manjulaben', '<NAME>', '<NAME>', '233', '<NAME>', NULL, '', '', '', 0),
(591, 433, NULL, 'Bindu', 'Chetankumar', 'Chetankumar', '167', 'Mahuaa', NULL, 'Out', '', '', 0),
(592, 434, NULL, 'Divyaben', '<NAME>', '<NAME>', '34', '<NAME>', NULL, 'In', '', '', 0),
(593, 434, NULL, 'Neelam', '<NAME>', 'Bhavanji Meghaji', '46', 'Gelda', NULL, 'In', '', '', 0),
(594, 434, NULL, 'Rashmi', '<NAME>', '<NAME>', '157', 'Kapaya', NULL, 'In', '', '', 0),
(595, 435, NULL, 'Ratanben', '<NAME> ', '<NAME> ', '52', 'Chundi', NULL, 'In', '', '', 0),
(596, 435, NULL, 'Aruna', '<NAME>', '<NAME>', '52', 'Nagalpur', NULL, 'In', '', '', 0),
(597, 436, NULL, 'Deena', '<NAME>', '<NAME>', '277', 'Kundrodi', NULL, 'In', '', '', 0),
(598, 437, NULL, 'Vaishali', '<NAME>', '<NAME>', '147', 'Gundala', NULL, 'In', '', '', 0),
(599, 438, NULL, 'Maya', 'Damodar', 'Damodar', '295', 'Mumbai', NULL, 'Out', '', '', 0),
(600, 438, NULL, 'Manjulaben', '<NAME>', '<NAME>', '106', 'Bidada', NULL, 'In', '', '', 0),
(601, 438, NULL, 'Varsha', 'Jayesh', 'Jayesh', '27', 'Bhujpur', NULL, 'Out', '', '', 0),
(602, 438, NULL, 'Rita', 'Pankaj', 'Pankaj', '48', 'Vadala', NULL, 'Out', '', '', 0),
(603, 439, NULL, 'Lataben', 'Kektabai ', 'Kektabai ', '133', 'Valsad', NULL, 'In', '', '', 0),
(604, 440, NULL, 'Asha', '<NAME>', '<NAME>', '48', 'Mukha', NULL, 'Out', '9820125492', '', 0),
(605, 440, NULL, 'Laxmiben', '<NAME>', '<NAME>', '25', 'Karaghogha', NULL, 'In', '', '', 0),
(606, 440, NULL, 'Nisha ', '<NAME>', '<NAME>', '15', 'Bhujpur', NULL, 'Out', '9619631434', '', 0),
(607, 440, NULL, 'Jasmin', '<NAME>', '<NAME>', '205', 'Patri', NULL, 'In', '', '', 0),
(608, 441, NULL, 'Bhavika', '<NAME>', '<NAME>', '12', '<NAME>)', NULL, 'Out', '', '', 0),
(609, 441, NULL, 'Sumatiben', '<NAME>', '<NAME>', '34', 'Bhujpur', NULL, 'In', '', '', 0),
(610, 442, NULL, 'Pinky', 'Kanubhai', 'Kanubhai', '133', 'Nadyad', NULL, 'In', '', '', 0),
(611, 443, NULL, 'Smita', '<NAME>', '<NAME>', '39', 'Patri', NULL, 'In', '', '', 0),
(612, 444, NULL, 'Jevarben', '<NAME>', '<NAME>', '34', 'Kapay', NULL, 'Out', '', '', 0),
(613, 444, NULL, 'Ushaben', '<NAME>', '<NAME>', '147', 'Nagalpur', NULL, 'In', '', '', 0),
(614, 444, NULL, 'Aruna', 'Vansantlal', 'Vansantlal', '34', 'Desalpar', NULL, 'Out', '', '', 0),
(615, 444, NULL, 'Velbai', '<NAME>', '<NAME>', '48', 'Karaghogha', NULL, 'In', '', '', 0),
(616, 445, NULL, 'Pallavi', '<NAME>', '<NAME>', '39', 'Lakhapur', NULL, 'In', '', '', 0),
(617, 446, NULL, 'Sheetal', '<NAME>', '<NAME>', '118', 'Rayan', NULL, 'In', '', '', 0),
(618, 446, NULL, 'Binal', '<NAME>', '<NAME>', '46', 'Bidada', NULL, 'In', '', '', 0),
(619, 447, NULL, 'Gangaben', '<NAME>', '<NAME>', '132', 'Gelada', NULL, 'In', '', '', 0),
(620, 447, NULL, 'Heena', '<NAME>', '<NAME>', '27', '<NAME>', NULL, 'Out', '', '', 0),
(621, 447, NULL, 'Bhavna', '<NAME>', '<NAME>', '48', 'Vaki', NULL, 'Out', '', '', 0),
(622, 448, NULL, 'Dhara', '<NAME>', '<NAME>', '156', 'Morbi', NULL, 'Out', '', '', 0),
(623, 448, NULL, 'Jayaben', '<NAME>', '<NAME>', '27', 'Rayan', NULL, 'In', '', '', 0),
(624, 449, NULL, 'Falguni', '<NAME>', '<NAME>', '106', 'Halapur', NULL, 'Out', '9869188217', '', 0),
(625, 449, NULL, 'Jayvantiben', '<NAME>', '<NAME>', '27', 'Talvana', NULL, 'In', '', '', 0),
(626, 450, NULL, 'Jigna', '<NAME>', '<NAME>', '74', 'Dumara', NULL, 'In', '', '', 0),
(627, 451, NULL, 'Chandan', '<NAME>', '<NAME>', '56', 'Bidada', NULL, 'Out', '8655697076', '', 0),
(628, 451, NULL, 'Kasturben', '<NAME>', '<NAME>', '56', 'Bhujpur', NULL, 'In', '', '', 0),
(629, 451, NULL, 'Jayshree', '<NAME>', '<NAME>', '52', 'Nagalpur', NULL, 'Out', '9819059879', '', 0),
(630, 452, NULL, 'Alapa', '<NAME>', '<NAME>', '34', 'Talvana', NULL, 'Out', '', '', 0),
(631, 452, NULL, 'Vanitaben', '<NAME>', '<NAME>', '157', 'Toda', NULL, 'In', '', '', 0),
(632, 453, NULL, 'Hasbai', '<NAME>', '<NAME>', '182', 'Desalpar', NULL, 'In', '', '', 0),
(633, 453, NULL, 'Madhu', '<NAME>al', '<NAME>atlal', '157', 'Nagalpur', NULL, 'Out', '', '', 0),
(634, 453, NULL, 'Sushilaben', '<NAME>', '<NAME>', '27', '<NAME>', NULL, 'In', '', '', 0),
(635, 453, NULL, 'Premila', '<NAME>', '<NAME>', '46', 'Bidada', NULL, 'Out', '', '', 0),
(636, 453, NULL, 'Pooja', '<NAME>', '<NAME>', '147', 'Ramaniya', NULL, 'In', '', '', 0),
(637, 453, NULL, 'Dr Monika', 'Dr <NAME>', 'Dr <NAME>', '48', 'Vadala', NULL, 'Out', '9769021118', '', 0),
(638, 454, NULL, 'Neetaben', '<NAME>', '<NAME>', '27', 'Bagada', NULL, 'In', '', '', 0),
(639, 455, NULL, 'Amisha', 'Hardik', 'Hardik', '44', 'Botad', NULL, 'Out', '', '', 0),
(640, 455, NULL, 'Heenaben', '<NAME>', '<NAME>', '157', 'Kapaya', NULL, 'In', '', '', 0),
(641, 456, NULL, 'Devkaben', '<NAME>', '<NAME>', '46', 'Depa', NULL, 'In', '', '', 0),
(642, 456, NULL, 'Kastuben', '<NAME>', '<NAME>', '113', 'Baroi', NULL, 'Out', '', '', 0),
(643, 456, NULL, 'Manjulaben', '<NAME>', '<NAME>', '48', 'Vande', NULL, 'In', '', '', 0),
(644, 456, NULL, 'Mita', '<NAME>', '<NAME>', '34', 'Desalpar', NULL, 'Out', '', '', 0),
(645, 456, NULL, 'Nirmala', '<NAME>', '<NAME>', '296', 'Mumbai', NULL, 'In', '', '', 0),
(646, 457, 1216, 'Daksha', 'Raghvji', 'Damji', '48', 'Mumbai', '120', 'in', '', '', 0),
(647, 458, NULL, 'Sapana', '<NAME>', '<NAME>', '147', 'Ramniya', NULL, 'In', '', '', 0),
(648, 459, NULL, 'Leena', '<NAME>', '<NAME>', '34', 'Bhorara', NULL, 'In', '', '', 0),
(649, 460, NULL, 'Maniben', '<NAME>', '<NAME>', '27', 'Beraja', NULL, 'In', '', '', 0),
(650, 460, NULL, 'Hansa', '<NAME>', '<NAME>', '27', 'Kundrodi', NULL, 'Out', '', '', 0),
(651, 460, NULL, 'Jyoti', '<NAME>', '<NAME>', '34', 'Kapaya', NULL, 'Out', '', '', 0),
(652, 460, NULL, 'Neeta', '<NAME>', '<NAME>', '161', 'Mokha', NULL, 'Out', '', '', 0),
(653, 460, NULL, 'Kalpana', '<NAME>', '<NAME>', '34', 'Bhujpur', NULL, 'Out', '', '', 0),
(654, 461, NULL, 'Ilaben', '<NAME>', '<NAME>', '46', 'Bidada', NULL, 'In', '', '', 0),
(655, 462, NULL, 'Hemlataben', '<NAME>', '<NAME>', '34', 'Gadhsisa', NULL, 'In', '', '', 0),
(656, 462, NULL, 'Nenbai', '<NAME>', '<NAME>', '71', 'Beraja', NULL, 'In', '', '', 0),
(657, 463, NULL, 'Hansa', '<NAME>', '<NAME>', '27', 'Pundi', NULL, 'In', '', '', 0),
(658, 464, NULL, 'Kokilaben', '<NAME>', '<NAME>', '277', 'Pundi', NULL, 'In', '', '', 0),
(659, 465, NULL, 'Monica', 'Prakashchandra ', 'Prakashchandra ', '297', 'Jabalpur', NULL, 'In', '', '', 0),
(660, 466, NULL, 'Anikta', 'Jubin', 'Jubin', '167', 'Pragpur', NULL, 'Out', '9689993338', '', 0),
(661, 466, NULL, 'Vidhisa', 'Shasikumar ', 'Shasikumar ', '298', '<NAME>', NULL, 'In', '', '', 0),
(662, 466, NULL, 'Manjulaben', '<NAME>', '<NAME>', '48', 'Chasara', NULL, 'In', '', '', 0),
(663, 467, NULL, 'Deenaben', 'Umershi', 'Umershi', '34', 'Kapaya', NULL, 'In', '', '', 0),
(664, 467, NULL, 'Mital', '<NAME>', '<NAME>', '205', 'Navinar', NULL, 'In', '', '', 0),
(665, 468, NULL, 'Meena', '<NAME>', '<NAME>', '27', 'Pundi', NULL, 'Out', '', '', 0),
(666, 468, NULL, 'Jayshree', '<NAME>', '<NAME>', '44', 'Amrapur', NULL, 'In', '', '', 0),
(667, 468, NULL, 'Chandrika', '<NAME>', '<NAME>', '276', 'Bhadreshwar', NULL, 'Out', '', '', 0),
(668, 468, NULL, 'Bharti', '<NAME>', '<NAME>', '57', 'Vadala', NULL, 'Out', '', '', 0),
(669, 468, NULL, 'Varsha', '<NAME>', '<NAME>', '118', '<NAME>', NULL, 'Out', '', '', 0),
(670, 468, NULL, 'Vimlaben', '<NAME>', '<NAME>', '233', 'Tumbadi', NULL, 'In', '', '', 0),
(671, 469, NULL, 'Nepa', '<NAME>', '<NAME>', '167', 'Takoar', NULL, 'Out', '9920018599', '', 0),
(672, 469, NULL, 'Rekhaben', '<NAME>', '<NAME>', '34', 'Bhujpur', NULL, 'In', '', '', 0),
(673, 469, NULL, 'Reena', '<NAME>', '<NAME>', '48', '<NAME>', NULL, 'Out', '9821821826', '', 0),
(674, 469, NULL, 'Dhiral', '<NAME>', '<NAME>', '131', 'Mothara', NULL, 'In', '', '', 0),
(675, 469, NULL, 'Teena', '<NAME>', '<NAME>', '34', 'Sadua', NULL, 'Out', '9920898201', '', 0),
(676, 470, NULL, 'Dhara', '<NAME>', '<NAME>', '167', 'Devgana', NULL, 'Out', '9920477925', '', 0),
(677, 470, NULL, 'Pushpa', '<NAME>', '<NAME>', '27', 'Godhra', NULL, 'In', '', '', 0),
(678, 470, NULL, 'Bhavini', '<NAME>', '<NAME>', '201', 'Merau', NULL, 'Out', '9930021333', '', 0),
(679, 471, NULL, 'Kalaben', '<NAME>', '<NAME>', '34', 'Navnaar', NULL, 'In', '', '', 0),
(680, 472, NULL, 'Nikunj', '<NAME>', '<NAME>', '292', 'Ratnagiri', NULL, 'in', '', '', 0),
(681, 473, NULL, 'Urvi', '<NAME>', '<NAME>', '27', 'Bagada', NULL, 'In', '', '', 0),
(682, 473, NULL, 'Ferin', '<NAME>', '<NAME>', '284', 'Baroi', NULL, 'In', '', '', 0),
(683, 474, NULL, 'Meena', '<NAME>', '<NAME>', '147', 'Gundala', NULL, 'In', '', '', 0),
(684, 475, NULL, 'Alpa', '<NAME>', '<NAME>', '34', 'Talvana', NULL, 'Out', '', '', 0),
(685, 475, NULL, 'Jayvantiben', '<NAME>', '<NAME>', '225', 'Karaghogha', NULL, 'In', '', '', 0),
(686, 475, NULL, 'Manisha', '<NAME>', '<NAME>', '225', 'Bhujpur', NULL, 'Out', '', '', 0),
(687, 475, NULL, 'Mittal', '<NAME>', '<NAME>', '48', 'Beraja', NULL, 'In', '', '', 0),
(688, 475, NULL, 'Vishali', '<NAME>', '<NAME>', '205', 'Godhra', NULL, 'Out', '', '', 0),
(689, 476, NULL, 'Bhavini', '<NAME>', '<NAME>', '48', 'Bidada', NULL, 'Out', '', '', 0),
(690, 476, NULL, 'Bharatiben', '<NAME>', '<NAME>', '48', 'Bhujpur', NULL, 'In', '', '', 0),
(691, 476, NULL, 'Khushbu', '<NAME>', '<NAME>', '27', '<NAME>', NULL, 'In', '', '', 0),
(692, 477, NULL, 'Hetal', '<NAME>', '<NAME>', '48', 'Talwana', NULL, 'Out', '', '', 0),
(693, 477, NULL, 'Chandrikben', '<NAME> ', '<NAME> ', '27', 'Karaghogha', NULL, 'In', '', '', 0),
(694, 478, NULL, 'Aruna', '<NAME>', '<NAME>', '205', 'Navinar', NULL, 'Out', '', '', 0),
(695, 478, NULL, 'Chanchalben', '<NAME>', '<NAME>', '205', 'Gelda', NULL, 'In', '', '', 0),
(696, 478, NULL, 'Urmila', '<NAME>', '<NAME>', '277', 'Sadau', NULL, 'Out', '', '', 0),
(697, 478, NULL, 'Chetna', '<NAME>', '<NAME>', '156', 'Morbe', NULL, 'In', '', '', 0),
(698, 479, NULL, 'Pritesh', '<NAME>', '<NAME>', '27', 'Vaki', NULL, 'Out', '', '', 0),
(699, 479, NULL, 'Shantaben', '<NAME>', '<NAME>', '25', 'Karaghogha', NULL, 'In', '', '', 0),
(700, 479, NULL, 'Praneeta', '<NAME>', '<NAME>', '299', 'Rajapur', NULL, 'In', '', '', 0),
(701, 480, NULL, 'Nisha', '<NAME>', '<NAME>', '167', 'Koday', NULL, 'Out', '9833366403', '', 0),
(702, 480, NULL, 'Bhanuben', '<NAME>', '<NAME>', '52', '<NAME>', NULL, 'In', '', '', 0),
(703, 480, NULL, 'Jasmine', '<NAME>', '<NAME>', '118', 'Baroi', NULL, 'In', '', '', 0),
(704, 480, NULL, 'Heena', '<NAME>', '<NAME>', '147', 'Gundala', NULL, 'In', '', '', 0),
(705, 481, NULL, 'Sheela', '<NAME>', '<NAME>', '56', '<NAME>', NULL, 'In', '', '', 0),
(706, 482, NULL, 'Leena', '<NAME>', '<NAME>', '48', 'Vadala', NULL, 'In', '', '', 0),
(707, 483, NULL, 'Rupal', '<NAME>', '<NAME>', '48', 'Samagoga', NULL, 'In', '', '', 0),
(708, 484, NULL, 'Pushpaben', '<NAME>', '<NAME>', '56', 'Bhujpur', NULL, 'In', '', '', 0),
(709, 485, NULL, 'Gunvantiben', '<NAME>', '<NAME>', '34', 'Meruvu', NULL, 'In', '', '', 0),
(710, 485, NULL, 'Chhaya', '<NAME>', '<NAME>', '300', 'Rajkot', NULL, 'In', '', '', 0),
(711, 486, NULL, 'Ranjanben', 'Punshi', 'Punshi', '301', 'Bhujpur', NULL, 'In', '', '', 0),
(712, 487, NULL, 'Jayshree', '<NAME>', '<NAME>', '59', 'Godhra', NULL, 'In', '', '', 0),
(713, 488, NULL, 'Beena', '<NAME>', '<NAME>', '48', '<NAME>', NULL, 'In', '', '', 0),
(714, 489, NULL, 'Harsha', '<NAME>', '<NAME>', '57', 'Tunda', NULL, 'In', '', '', 0),
(715, 490, NULL, 'Nirmalaben', '<NAME>', '<NAME>', '27', '<NAME>', NULL, 'In', '', '', 0),
(716, 490, NULL, 'Rajan', '<NAME>', '<NAME>', '39', 'Luni', NULL, 'Out', '', '', 0),
(717, 490, NULL, 'Hiral', '<NAME>', '<NAME>', '197', '<NAME>', NULL, 'In', '', '', 0),
(718, 490, NULL, 'Rekha', '<NAME>', '<NAME>', '34', 'Bidada', NULL, 'Out', '', '', 0),
(719, 491, NULL, 'Maduben', 'Vallabji ', 'Vallabji ', '130', '<NAME>', NULL, 'Out', '', '', 0),
(720, 491, NULL, 'Lilavantiben', '<NAME>', '<NAME>', '130', 'Faradi', NULL, 'In', '', '', 0),
(721, 491, NULL, 'Dhanuben', 'Manubhai', 'Manubhai', '303', 'Naranpa', NULL, 'Out', '', '', 0),
(722, 492, NULL, 'Vasantben', '<NAME>', '<NAME>', '193', 'Kundrodi', NULL, 'In', '', '', 0),
(723, 493, NULL, 'Smita', '<NAME>', '<NAME>', '304', 'Godhra', NULL, 'in', '', '', 0),
(724, 494, NULL, 'Usha', '<NAME>', '<NAME>', '193', 'Durgapur', NULL, 'In', '', '', 0),
(725, 495, NULL, 'Geeta', '<NAME>', '<NAME>', '193', 'Talvana', NULL, 'Out', '', '', 0),
(726, 495, NULL, 'Heeravanti', '<NAME>', '<NAME>', '0', 'Koday', NULL, 'In', '', '', 0),
(727, 495, NULL, 'Varsha', '<NAME>', '<NAME>', '193', '<NAME>', NULL, 'Out', '', '', 0),
(728, 495, NULL, 'Kiran', '<NAME>', '<NAME>', '70', 'Undhod', NULL, 'In', '', '', 0),
(729, 496, NULL, 'Heena', 'Manilal', 'Manilal', '13', 'Bhuj', NULL, 'In', '', '', 0),
(730, 497, NULL, 'Kritida', '<NAME>', '<NAME>', '193', 'Lakhpur', NULL, 'Out', '', '', 0),
(731, 497, NULL, 'Kusumben', '<NAME>', '<NAME>', '193', 'Kundrodi', NULL, 'In', '', '', 0),
(732, 497, NULL, 'Heena', '<NAME>', '<NAME>', '193', 'Navavas', NULL, 'Out', '', '', 0),
(733, 497, NULL, 'Manisha', '<NAME>', '<NAME>', '193', 'Navavas', NULL, 'In', '', '', 0),
(734, 498, NULL, 'Bindiya', '<NAME>', '<NAME>', '305', 'Lakhpur', NULL, 'In', '', '', 0),
(735, 499, NULL, 'Geeta', '<NAME>', '<NAME>', '193', '<NAME>', NULL, 'In', '', '', 0),
(736, 500, NULL, 'Bijal', 'Pushpak ', 'Pushpak ', '193', 'Koday', NULL, 'Out', '', '', 0),
(737, 500, NULL, 'Jyoti', '<NAME>', '<NAME>', '193', 'Navavas', NULL, 'In', '', '', 0),
(738, 500, NULL, 'Hetal', 'Chirag', 'Chirag', '193', 'Kundrodi', NULL, 'Out', '', '', 0),
(740, 501, 1394, 'Chirag', '', '', '', '', '', 'in', '', '', 0),
(741, NULL, 692, 'Aarati', '', '', '', '', '', 'in', '', '', 0),
(742, NULL, 692, 'Aarati', '', '', '', '', '', 'in', '', '', 0),
(743, 148, 692, 'Aarati', '', '', '', '', '', 'in', '', '', 0),
(744, NULL, 1397, '<NAME>', '', '', '', '', '', 'in', '', '', 0),
(745, NULL, 1397, '<NAME>', '', '', '', '', '', 'in', '', '', 0),
(746, 514, 1408, 'shikha', 'Ramesh', 'D', '66', '', '116', 'in', '8498789712', '', 0),
(747, 514, 1410, 'Bindu', 'Ravindra', 'ffw', '13', 'cotton green', '24', 'in', '9004190906', '', 0),
(748, 457, 1413, 'PRACHI', 'RAKESH', 'GANGJI', '78', 'DOMBIVALI', '77', 'in', '7045081265', '', 0),
(749, 528, 0, 'Kishanti', 'Dhanan', '', '108', '<NAME>', '13', 'in', '9920103605', '', 0),
(750, 265, 1450, 'Upasana', 'Jeetendra', 'Meghji', '27', 'Matunga', '98', 'in', '9664428534', '', 0),
(751, 517, 1449, 'Chandan', 'Morarji', '', '34', 'Kutch', '35', 'in', '9664428534', '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `family_master`
--
CREATE TABLE `family_master` (
`id` int(11) NOT NULL,
`family_id` varchar(15) DEFAULT NULL,
`address_1` text,
`address_2` text,
`added_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`deleted` int(11) NOT NULL DEFAULT '0',
`deleted_on` timestamp NULL DEFAULT NULL,
`area_id` int(11) DEFAULT NULL,
`pincode` int(11) DEFAULT NULL,
`landline` varchar(25) DEFAULT NULL,
`email` varchar(155) DEFAULT NULL,
`split_status` int(1) NOT NULL DEFAULT '0',
`split_data` text NOT NULL,
`merge_status` int(1) NOT NULL DEFAULT '0',
`merge_data` text NOT NULL,
`split_created` varchar(30) NOT NULL,
`merge_created` varchar(30) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `family_master`
--
INSERT INTO `family_master` (`id`, `family_id`, `address_1`, `address_2`, `added_on`, `deleted`, `deleted_on`, `area_id`, `pincode`, `landline`, `email`, `split_status`, `split_data`, `merge_status`, `merge_data`, `split_created`, `merge_created`) VALUES
(148, 'DPF0001', 'D/4, <NAME> Co.op. Soc., Cartor Rd. No-3', 'Borivali ( E), M-66.', '2020-07-31 10:08:26', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(149, 'DPF0002', '3/1, <NAME>, <NAME>, <NAME>-2 ', 'Sion Koliwada, M-22.', '2020-07-31 10:08:26', 0, NULL, 54, 0, '', NULL, 0, '', 0, '', '', ''),
(150, 'DPF0003', '104, Bhanu Apartment, Jivan Nagar, Waghle Estate, Rd. no-9, ', 'Thane-4.', '2020-07-31 10:08:26', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(151, 'DPF0004', '201, Chhadwa Sadan, Shanti Nagar, Waghle Estate', 'Thane (W)-400604.', '2020-07-31 10:08:26', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(152, 'DPF0005', '101, <NAME>, <NAME>, Road no-27, Waghle Estate', 'Thane (W)-400604.', '2020-07-31 10:08:26', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(153, 'DPF0006', '<NAME>, Near Senetorium', '<NAME>', '2020-07-31 10:08:26', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(154, 'DPF0007', 'A-103, Toral Co-op. Soc. Ltd., Cabin Cross Rd.', 'Bhayander ( E), Thana-401 105.', '2020-07-31 10:08:26', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(155, 'DPF0008', 'B-16-17, Dahisar Apartment Co-op.H.S.Ltd., C.S. Rd.', 'Dahisar ( E), M-68.', '2020-07-31 10:08:26', 0, NULL, 11, 0, '', NULL, 0, '', 0, '', '', ''),
(156, 'DPF0009', 'Room No-1-2, <NAME>, <NAME>, Kajupada', 'Borivali ( E), M-66.', '2020-07-31 10:08:26', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(157, 'DPF0010', '<NAME>, <NAME>, Kajupada', 'Borivali ( E), M-66.', '2020-07-31 10:08:26', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(158, 'DPF0011', 'F-304, Koyna Bldg., 3rd Floor, Shantivan, Near National Park', 'Borivali ( E), M-66.', '2020-07-31 10:08:26', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(159, 'DPF0012', '<NAME>, Bldg. No-9, Block No-327, Shailendra Nagar ', 'Dahisar ( E), Mumbai-68.', '2020-07-31 10:08:26', 0, NULL, 11, 0, '', NULL, 0, '', 0, '', '', ''),
(160, 'DPF0013', 'A-301. Koyna Bldg., Shantivan, Sh<NAME> Nagar, Near National Park', 'Borivali ( E), M-66.', '2020-07-31 10:08:26', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(161, 'DPF0014', 'Dhenu Bldg., Room No-12/A, 1st floor, Dr. Ambedkar Rd.', 'Parel T.T., M-12.', '2020-07-31 10:08:26', 0, NULL, 39, 0, '', NULL, 0, '', 0, '', '', ''),
(162, 'DPF0015', 'Sargam\' Vidhya Hou.Soc., Ward no-7, Shrirampur, Belapur Rd.', 'Ahmednagar, Maharastra-413 709', '2020-07-31 10:08:26', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(163, 'DPF0016', 'Sudarshan Emporium, Shrirampur, Main Rd.', 'Ahmednagar, Maharastra-413 709', '2020-07-31 10:08:26', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(164, 'DPF0017', '43-B, 15, Prem Kunj, 3rd. Floor, Sion Circle', 'Sion (W), M-22.', '2020-07-31 10:08:26', 0, NULL, 54, 0, '', NULL, 0, '', 0, '', '', ''),
(165, 'DPF0018', '<NAME>, Samta colony, Near Ashok Talkies, Shrirampur', 'Ahmednagar, Maharastra-413 709', '2020-07-31 10:08:26', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(166, 'DPF0019', 'B-7, Sai Jesal Co-op. Hou. Soc., Near Sai Baba Mandir, Cabin Cross Rd.', 'Bhayander ( E), Thana-401 105.', '2020-07-31 10:08:26', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(167, 'DPF0020', '<NAME>, 3rd floor, 22, Near <NAME>, G.G. Rd.', 'Dombivali (W), Thana', '2020-07-31 10:08:26', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(168, 'DPF0021', 'E-602, <NAME>, Near <NAME>,<NAME>, Raju nagar, Subhash Rd.', 'Dombivali (W), Thana', '2020-07-31 10:08:26', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(169, 'DPF0022', 'G-703. <NAME>, Desle Pada', 'Dombivali (W), Thana', '2020-07-31 10:08:26', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(170, 'DPF0023', '<NAME>, Opp. <NAME>', '<NAME>', '2020-07-31 10:08:26', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(171, 'DPF0024', 'A-2, Pachvati Apartment, Vrundavan Soc., Behind Dan Hotel', 'Selvas (Dadra nagar haveli), Gujarat', '2020-07-31 10:08:26', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(172, 'DPF0025', 'Plot-19, Siddhivinayak Apartment, 513, 5th flr.,Hindu Friends Society, Rd.,', 'Jogeshwari ( E), M-60', '2020-07-31 10:08:26', 0, NULL, 12, 0, '', NULL, 0, '', 0, '', '', ''),
(173, 'DPF0026', 'Nirmal Niketan, Near Govardhan Complex, Gufa Rd.', 'Jogeshwari ( E), M-60', '2020-07-31 10:08:26', 0, NULL, 12, 0, '', NULL, 0, '', 0, '', '', ''),
(174, 'DPF0027', '102, Gunodaya Ashish Apartment, Hardevibai Soc. Gate no-3.', 'Jogeshwari ( E), M-60', '2020-07-31 10:08:26', 0, NULL, 12, 0, '', NULL, 0, '', 0, '', '', ''),
(175, 'DPF0028', '257/3, Champa Nivas, Opp. Bansidhar Agarwal High School', 'Wadala (W), M-31.', '2020-07-31 10:08:26', 0, NULL, 65, 0, '', NULL, 0, '', 0, '', '', ''),
(176, 'DPF0029', 'B-6, Ananddham Soc., Near Yatri Hotel, Jaku Club, Prabhat Colony Rd.,', 'Santacruz ( E), M-55.', '2020-07-31 10:08:26', 0, NULL, 16, 0, '', NULL, 0, '', 0, '', '', ''),
(177, 'DPF0030', 'Ambo Smruti Bldg., Room No-32, 3rd flr., P.P. Marg', 'Virar (W), Thana-401303', '2020-07-31 10:08:26', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(178, 'DPF0031', 'B-9, Rukshmini Niwas, Irani wadi, Shantilal Modi Rd. no-2', 'Kandivali (W), M-67.', '2020-07-31 10:08:26', 0, NULL, 14, 0, '', NULL, 0, '', 0, '', '', ''),
(179, 'DPF0032', 'Ambo Smruti Bldg., Room No-36, 3rd flr., P.P. Marg', 'Virar (W), Thana-401303', '2020-07-31 10:08:26', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(180, 'DPF0033', 'C-16, Jal Sarovar Soc., Plot-528, Charkop Sector-5, Jain Derasar Lane', 'Kandivali (W), M-67', '2020-07-31 10:08:26', 0, NULL, 14, 0, '', NULL, 0, '', 0, '', '', ''),
(181, 'DPF0034', '201, Shivashraya Homes, A-1, Parvati Park Soc., Opp. Narayan Bunglow', 'Vadodara, Gujarat-390008', '2020-07-31 10:08:26', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(182, 'DPF0035', 'Room-58, 1st Flr., Shantiniketan, Plot-322, Dr. Ambedkar Rd.', 'Matunga ( E), M-19.', '2020-07-31 10:08:26', 0, NULL, 41, 0, '', NULL, 0, '', 0, '', '', ''),
(183, 'DPF0036', 'B-601/602, Arial Tower Co-op. Soc., Near National School', 'Bhandup (W), M-78.', '2020-07-31 10:08:26', 0, NULL, 20, 0, '', NULL, 0, '', 0, '', '', ''),
(184, 'DPF0037', 'Block No-402, C-wing, <NAME>oj, Near Maharaja Bhuvan, Gufa Rd.', 'Jogeshwari ( E), M-60.', '2020-07-31 10:08:26', 0, NULL, 12, 0, '', NULL, 0, '', 0, '', '', ''),
(185, 'DPF0038', 'Flat No-13, 1st Flr., Anand Mangal Co-op. Hou. Soc., Jambli Gali', 'Borivali (W), M-72.', '2020-07-31 10:08:26', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(186, 'DPF0039', NULL, NULL, '2020-07-31 10:08:26', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(187, 'DPF0040', '402, Navkar Soc., Near Mother Bekary, Turel Pakhadi Rd.', 'Malad (W), M-64.', '2020-07-31 10:08:27', 0, NULL, 2, 0, '', NULL, 0, '', 0, '', '', ''),
(188, 'DPF0041', 'Green Mandoz Bldg. No-6, Lokhandwala, Aakurli Rd.', 'Kandivali ( E), M-101.', '2020-07-31 10:08:27', 0, NULL, 14, 0, '', NULL, 0, '', 0, '', '', ''),
(189, 'DPF0042', '601, Neeta Tower, Mamlatdarwadi Rd. no-1.', 'Malad (W), M-64.', '2020-07-31 10:08:27', 0, NULL, 2, 0, '', NULL, 0, '', 0, '', '', ''),
(190, 'DPF0043', '16, <NAME>, Mukta Baug, Station Rd.', 'Malad (W), M-64.', '2020-07-31 10:08:27', 0, NULL, 2, 0, '', NULL, 0, '', 0, '', '', ''),
(191, 'DPF0044', '203, Pooja nagar no-1, Cabin cross Rd.', 'Bhayander ( E), Thana-401 105.', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(192, 'DPF0045', 'B-605, Sarvodaya Anklave, Opp. Canara Bank, New Golden Nest', 'Bhayander( E), Thana', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(193, 'DPF0046', 'Chawl no-2, Room no-4, Jagatraj Niwas Thakur Chawl, Kurar Village, Near Jain Mandir', 'Malad ( E), Mumbai', '2020-07-31 10:08:27', 0, NULL, 2, 0, '', NULL, 0, '', 0, '', '', ''),
(194, 'DPF0047', '203, Pooja nagar no-1, Cabin cross Rd.', 'Bhayander ( E), Thana-401 105.', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(195, 'DPF0048', '403/A-wing, Tuljeshwari Hill, Rambhau Nagar, Ambawadi, Tulinj Rd.', 'Nalasopara ( E), Thana', '2020-07-31 10:08:27', 0, NULL, 42, 0, '', NULL, 0, '', 0, '', '', ''),
(196, 'DPF0049', 'B-406, Shiv Shakti Complex, Near Manav Kalyan Kendra, S.V. Rd.', 'Dahisar ( E), M-68.', '2020-07-31 10:08:27', 0, NULL, 11, 0, '', NULL, 0, '', 0, '', '', ''),
(197, 'DPF0050', 'Cozi-A-202, Lovely -CoziCo-op. Hou. Soc., Near Sai Baba Mandir, Overypada', 'Dahisar ( E), M-68.', '2020-07-31 10:08:27', 0, NULL, 11, 0, '', NULL, 0, '', 0, '', '', ''),
(198, 'DPF0051', 'A-101, <NAME>, R<NAME>ada, S.N. Dubey Rd.', 'Dahisar ( E), M-68.', '2020-07-31 10:08:27', 0, NULL, 11, 0, '', NULL, 0, '', 0, '', '', ''),
(199, 'DPF0052', '<NAME>', '<NAME>.', '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(200, 'DPF0053', '3/24, 29, Bhutta Niwas, Dr. <NAME> Rd.', 'Matunga ( E), M-19.', '2020-07-31 10:08:27', 0, NULL, 41, 0, '', NULL, 0, '', 0, '', '', ''),
(201, 'DPF0054', 'A-Wing, Satyam Soc., Flat no-202, Thakur Complex, Near Hotel Avenue.', 'Kandivali ( E), M-101.', '2020-07-31 10:08:27', 0, NULL, 14, 0, '', NULL, 0, '', 0, '', '', ''),
(202, 'DPF0055', 'A/9, Ishwar Niwas bldg., 2nd floor, Opp. <NAME>, Dr. S.S.Rao Rd.', 'Lalbaug, M-12.', '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(203, 'DPF0056', 'Manek kunj Bldg., A-Wing, 1st Floor., Block No-107, Dr. S.S. Rao Rd., Meghwai.', 'Lalbaug, M-12.', '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(204, 'DPF0057', '<NAME>, <NAME>, Near Income Tax Office, Opp. Maharshi Karve School, Station Rd.', '<NAME>', '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(205, 'DPF0058', '2, Harman House, <NAME>, S.V. Rd.', 'Malad (W), M-64.', '2020-07-31 10:08:27', 0, NULL, 2, 0, '', NULL, 0, '', 0, '', '', ''),
(206, 'DPF0059', '106, <NAME>, <NAME>, Near Satyanarayan Mandir, cabin Cross Rd.', 'Bhayander ( E), Thana-401105.', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(207, 'DPF0060', 'B-404, Meet Co-op. Hou. Soc., 4th Floor, Dhobi Aali, Near Masjid, Tembi Naka.', 'Thana (W)-601.', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(208, 'DPF0061', '503, Ashirwad Bldg., 156 Mangalvaar Peth, Parge Chowk', 'Pune-411 011.', '2020-07-31 10:08:27', 0, NULL, 64, 0, '', NULL, 0, '', 0, '', '', ''),
(209, 'DPF0062', '501, <NAME>, Sayani Rd., Gokhle Rd. (D)', 'Dadar (W), M-25.', '2020-07-31 10:08:27', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(210, 'DPF0063', 'A/103, <NAME>, <NAME>, Marve Rd. Lane', 'Malad (W), M-95.', '2020-07-31 10:08:27', 0, NULL, 2, 0, '', NULL, 0, '', 0, '', '', ''),
(211, 'DPF0064', 'C-9, Ganesh Soc., Near Apna Bazar, J.N. Rd., ', 'Mulund (W), M-80.', '2020-07-31 10:08:27', 0, NULL, 23, 0, '', NULL, 0, '', 0, '', '', ''),
(212, 'DPF0065', 'Vidya Vinay Vivek Co-<NAME>., Room No-7, 2nd Floor, S. V. Rd.', 'Vile parle (W), M-56.', '2020-07-31 10:08:27', 0, NULL, 19, 0, '', NULL, 0, '', 0, '', '', ''),
(213, 'DPF0066', NULL, NULL, '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(214, 'DPF0065', '305, Shrenik Tower, 3rd Floor, <NAME>', 'Ghatkopar ( E), M-86.', '2020-07-31 10:08:27', 0, NULL, 4, 0, '', NULL, 0, '', 0, '', '', ''),
(215, 'DPF0066', NULL, NULL, '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(216, 'DPF0065', NULL, NULL, '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(217, 'DPF0066', NULL, NULL, '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(218, 'DPF0067', 'A-203, Aarti Bldg., <NAME>', 'Ghatkopar (W), M-86.', '2020-07-31 10:08:27', 0, NULL, 4, 0, '', NULL, 0, '', 0, '', '', ''),
(219, 'DPF0068', 'Prajakta Bldg., B-wing, Room No-6, Jainam Motodi Wadi, Chalpeth', 'Virar (W), Thana', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(220, 'DPF0069', 'New Aabadi Ward No-14, Sanichara Bazar Rd., Behind Gandhi Ganjani', 'Chindwada, M.P.-480002', '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(221, 'DPF0070', 'New Aabadi Ward No-14, Sanichara Bazar Rd., Behind Gandhi Ganjani', 'Chindwada, M.P.-480002', '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(222, 'DPF0071', 'A/1002, Venkatesh Krupa, Balaji Complex, 150 Feet Rd.', 'Bhayander (W), Thana-401101', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(223, 'DPF0072', '4/2, Samadhan Bldg., Near Vitthal Mandir, <NAME>', 'Dombivali ( E), Thana.', '2020-07-31 10:08:27', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(224, 'DPF0073', 'Room No-101, dolphin, Plot No-269, Sector-21, ', 'Nerul ( E), Navi Mumbai-706.', '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(225, 'DPF0074', '2/B-32, Rustamji Rigency, J.S. Rd.', 'Dahisar (W), M-68.', '2020-07-31 10:08:27', 0, NULL, 11, 0, '', NULL, 0, '', 0, '', '', ''),
(226, 'DPF0075', NULL, NULL, '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(227, 'DPF0076', 'Sai Complex, Flat No-3, Mahagiri, Opp. Surya Rice Mill', 'Thana (W)', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(228, 'DPF0077', 'Bhaskar Smruti Co-op. Hou. Soc. Ltd., Block No-6, liberty Garden, Extention Rd.', 'Malad (W), M-64.', '2020-07-31 10:08:27', 0, NULL, 2, 0, '', NULL, 0, '', 0, '', '', ''),
(229, 'DPF0078', 'A-204, Prerna Apartment, Sane guruji Nagar', 'Mulund ( E), M-81.', '2020-07-31 10:08:27', 0, NULL, 23, 0, '', NULL, 0, '', 0, '', '', ''),
(230, 'DPF0079', 'Room No-133, Haribhai Chawl, Janta Colony, Prem Nagar, Market Rd.', 'Jogeshwari ( E), M-60.', '2020-07-31 10:08:27', 0, NULL, 12, 0, '', NULL, 0, '', 0, '', '', ''),
(231, 'DPF0080', '202, Pooja Nagar Bldg. No-1, Near Narmada Nagar, Cabin Cross Rd.', 'Bhayander ( E), Thana-401105.', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(232, 'DPF0081', '303, <NAME>, S.N.D.T. Cllage Lane, Kirol Marg', 'Ghatkopar (W), M-86.', '2020-07-31 10:08:27', 0, NULL, 4, 0, '', NULL, 0, '', 0, '', '', ''),
(233, 'DPF0082', 'Shree Niwas Hou. Soc., Flat No-4, Ground Floor, 60 Feet Rd.', 'Bhayander (W), Thana-401101.', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(234, 'DPF0083', '15/4, <NAME>, Sant Frances Rd.', 'Vileparle (W), M-56.', '2020-07-31 10:08:27', 0, NULL, 19, 0, '', NULL, 0, '', 0, '', '', ''),
(235, 'DPF0084', 'Latifabai Chawl, Room No-18, Amir Baug No-1, Bhakti Bhavan, Near Masjid', 'Chembur, M-71.', '2020-07-31 10:08:27', 0, NULL, 28, 0, '', NULL, 0, '', 0, '', '', ''),
(236, 'DPF0085', '204, Pooja Nagar Bldg. No-1, Near Narmada Nagar, Cabin Cross Rd.', 'Bhayander ( E), Thana-401105', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(237, 'DPF0086', 'Tripathi Bhavan Co-op. Hou. Soc. Ltd., Flat No-23, 3rd Floor, Above Bharat Cafe Hotel', 'Mahul, M-74.', '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(238, 'DPF0087', '16, Laxmi Villa, Prem Nagar, Jawahar Nehru Rd.', 'Mulund (W), M-80.', '2020-07-31 10:08:27', 0, NULL, 23, 0, '', NULL, 0, '', 0, '', '', ''),
(239, 'DPF0088', NULL, NULL, '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(240, 'DPF0089', '2, Dilip Niwas, Sitabai compound, Shastri Nagar, Copar Cross Rd.', 'Dombivali (W), Thana-421202', '2020-07-31 10:08:27', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(241, 'DPF0090', 'B-7, Jai Laxmi Co-op. Hou. Soc., 1st floor, Thakurwadi, Dindayal Cross Rd.', 'Dombivali (W), Thana-421202', '2020-07-31 10:08:27', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(242, 'DPF0091', '104, Vijay Niwas, Thakurwadi, DinDayal Cross Rd.', 'Dombivali (W), Thana-421201', '2020-07-31 10:08:27', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(243, 'DPF0092', 'H-704, Navneet Nagar, Near Lodha Heritage, Deshlepada', 'Dombivali ( E), Thana', '2020-07-31 10:08:27', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(244, 'DPF0093', 'B-8, Shree Rajlaxmi Prassan Co-op. Hou. Soc., <NAME>', 'Dombivali ( E), Thana', '2020-07-31 10:08:27', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(245, 'DPF0094', 'C-3, Raw House, Lodha Heaven, Kalyan Sheel Rd.', 'Dombivali ( E), Thana', '2020-07-31 10:08:27', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(246, 'DPF0095', 'Supriya B-wing/104, Dhuri Complex, Om Nagar, Ambadi Rd', 'Vasai (W), Thana', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(247, 'DPF0096', '306, Subham Heritage, Cross Lane No-5, behind gopal Bldg., Off Ambadi Rd', 'Vasai (W), Thana', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(248, 'DPF0097', '36, Nember Fario, Depa', 'Taluka-Mundra, Kutch', '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(249, 'DPF0098', 'Depa', 'Taluka-Mundra, Kutch', '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(250, 'DPF0099', 'A/102, Girirath Bldg., Kasturba Rd-3.', 'Borivali ( E), M-66.', '2020-07-31 10:08:27', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(251, 'DPF0100', 'C-2/3, Sagar Vaibhav Co-op. hou. Soc., Navagaon, <NAME> Rd', 'Dahisar (W), M-68.', '2020-07-31 10:08:27', 0, NULL, 11, 0, '', NULL, 0, '', 0, '', '', ''),
(252, 'DPF0101', 'A-wing/202, Girirath Co-op. Hou. Soc. Ltd., Carter Rd. No-3', 'Borivali ( E), M-66.', '2020-07-31 10:08:27', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(253, 'DPF0102', 'Krushna Co-op. Hou. Soc. Ltd., Flat No-602, 6th Floor, Carter Rd. No-4', 'Borivali ( E), M-66.', '2020-07-31 10:08:27', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(254, 'DPF0103', '183/2816, <NAME>, Group No. 8-B', 'Vikroli ( E), M-83.', '2020-07-31 10:08:27', 0, NULL, 27, 0, '', NULL, 0, '', 0, '', '', ''),
(255, 'DPF0104', 'E-306, Navneet nagar, Deshlepada, Near Bhadra Nagar, Bhopar', 'Dombivali ( E), Thana-421201', '2020-07-31 10:08:27', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(256, 'DPF0105', 'N-102, Navneet Nagar, Near Lodha Heritage', 'Dombivali ( E), Thana-421201', '2020-07-31 10:08:27', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(257, 'DPF0106', '191/9, Pushkraj Sadan, 2nd Floor, Above ICICI Bank, Station Rd.', 'Wadala (W), M-31.', '2020-07-31 10:08:27', 0, NULL, 65, 0, '', NULL, 0, '', 0, '', '', ''),
(258, 'DPF0107', '251/11, Tanibai Niwas, Station Rd.', 'Wadala (W), M-31.', '2020-07-31 10:08:27', 0, NULL, 65, 0, '', NULL, 0, '', 0, '', '', ''),
(259, 'DPF0108', 'Flat No-205, 1 Pooja Nagar, Co-op. hou. Soc. Ltd. Cabin Cross rd.', 'Bhayander ( E), Thana-401105', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(260, 'DPF0109', 'A-206, Hem Nagar, 2nd Floor, Kesri Park, Ambawadi', 'Nalasopara ( E), Thana-401209', '2020-07-31 10:08:27', 0, NULL, 42, 0, '', NULL, 0, '', 0, '', '', ''),
(261, 'DPF0110', '102, Tulsi Apartment, Mahesh Park, Tulinj Rd.', 'Nalasopara ( E), Thana-401209', '2020-07-31 10:08:27', 0, NULL, 42, 0, '', NULL, 0, '', 0, '', '', ''),
(262, 'DPF0111', '2/8, Laxmibaug, Agarbazar, S.K. Bole Rd.', 'Dadar (W), M-28.', '2020-07-31 10:08:27', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(263, 'DPF0112', 'Meghalaya Bldg., Near Water Tank, Akluj', 'Solapur, Maharashtra-413101.', '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(264, 'DPF0113', 'Blgd. No-113, Block-3346, Narkar marg, pant Nagar', 'Ghatkopar ( E), M-75.', '2020-07-31 10:08:27', 0, NULL, 4, 0, '', NULL, 0, '', 0, '', '', ''),
(265, 'DPF0114', 'Plot No-52, Priyanjali, Block No-7, 1st Floor, Jagdusha Nagar, Golibar Rd.', 'Ghatkopar (W), M-86.', '2020-07-31 10:08:27', 0, NULL, 4, 0, '', NULL, 0, '', 0, '', '', ''),
(266, 'DPF0115', 'B/12, Gelda Jyot Co-op. Hou. Soc. Ltd., Gelda Nagar, Golibar Rd', 'Ghatkopar (W), M-86.', '2020-07-31 10:08:27', 0, NULL, 4, 0, '', NULL, 0, '', 0, '', '', ''),
(267, 'DPF0116', 'Madhuban Complex, 2 Kadamb Bldg., Ground Floor, Umberpada, Palghar', 'Safala ( E), Thana-401102', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(268, 'DPF0117', 'Raman Sadan 5-6, Near Devbhumi Complex, Tandulwadi Rd., Umberpada, Palghar', 'Safala , Thana-401102', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(269, 'DPF0118', 'Shanti Ganga Apartment, B-C-111, Opp. Railway Station', 'Bhayander ( E), Thana', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(270, 'DPF0119', '10, Navnidh Apartment, Liberty Garden, rd. No-3', 'Malad (W), M-64.', '2020-07-31 10:08:27', 0, NULL, 2, 0, '', NULL, 0, '', 0, '', '', ''),
(271, 'DPF0120', '7/245, Subhash Nagar, Opp. Muktanand Highschool, N.G. Acharya <arg, Chembur Govandi Rd.', 'Chembur, M-71.', '2020-07-31 10:08:27', 0, NULL, 28, 0, '', NULL, 0, '', 0, '', '', ''),
(272, 'DPF0121', 'B-202, Snehdhara, Plot No-180/183, Opp. Manjula Cycle, Sector No-22.', 'Turbhe Gaon, Navi Mumbai-400705', '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(273, 'DPF0122', 'A/101, <NAME>, Plot No-40, Central Park', 'Nalasopara ( E), Thana-40120', '2020-07-31 10:08:27', 0, NULL, 42, 0, '', NULL, 0, '', 0, '', '', ''),
(274, 'DPF0123', 'C/112, <NAME>, <NAME>, Saibaba Rd.', 'Borivali (W), M-92.', '2020-07-31 10:08:27', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(275, 'DPF0124', '15, Noorjahan Soc., Opp. Saibaba Mandir, Saibaba Nagar', 'Borivali (W), M-92.', '2020-07-31 10:08:27', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(276, 'DPF0125', 'B/5, Veera Sadan, 1st Floor, Zaveri Baug, S.V. Rd., Poisar', 'Kandivali (W), M-67.', '2020-07-31 10:08:27', 0, NULL, 14, 0, '', NULL, 0, '', 0, '', '', ''),
(277, 'DPF0126', '17/1, Sh<NAME>agar, Sane guruji Marg, Jecub Circle', 'Saat Rasta, M-11', '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(278, 'DPF0127', 'H/12, Vishram Dham-7 Society, Vina Nagar Phase-II, L.B.S. Marg', 'Mulund (W), M-80.', '2020-07-31 10:08:27', 0, NULL, 23, 0, '', NULL, 0, '', 0, '', '', ''),
(279, 'DPF0128', '203, Nav Rajaram Co-op. Hou. Soc., B-Wing, 2nd Floor, Mahatma Phoole Rd', 'Dombivali (W), Thana-421202', '2020-07-31 10:08:27', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(280, 'DPF0129', 'Room No-3, <NAME> Bldg,. <NAME>, Copar Rd.', ' Dombivali (W), Thana-421202', '2020-07-31 10:08:27', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(281, 'DPF0130', '13, <NAME>, 2nd Floor, Near moti Pachan Rashtriya School, Sevaram Lalvani Rd.', 'Mulund (W), M-80.', '2020-07-31 10:08:27', 0, NULL, 23, 0, '', NULL, 0, '', 0, '', '', ''),
(282, 'DPF0131', '501, Rajyog Society, Above Dhanlaxmi Bank, Dr. R.P.Rd.', 'Mulund (W), m-80.', '2020-07-31 10:08:27', 0, NULL, 23, 0, '', NULL, 0, '', 0, '', '', ''),
(283, 'DPF0132', 'Room no-38, <NAME>, 3rd Floor, <NAME>', 'Sewree (W), M-15.', '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(284, 'DPF0133', 'B-2/201, Pranay Society, Lok Upvan Phase-II, Konkan Rd. No-2', 'Thana (W)-400601', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(285, 'DPF0134', '502, Chanakya, lallubhai Park', 'Andheri (W), M-58.', '2020-07-31 10:08:27', 0, NULL, 1, 0, '', NULL, 0, '', 0, '', '', ''),
(286, 'DPF0135', '1103-A, Bhavya Hights, Katrak Rd.', 'Wadala (W), M-31.', '2020-07-31 10:08:27', 0, NULL, 65, 0, '', NULL, 0, '', 0, '', '', ''),
(287, 'DPF0136', 'Harsh Vihar Co-op Hou. Soc., Bldg. No-18, Shanti Nagar, Sector-1', 'Mira Rd.( E), Thana-401107', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(288, 'DPF0137', '6, Tejkunj, Anad Nagar Co-op. H.S.L., Kardal Village, Palghar, Umberpada', 'Saphala ( E), Thana-401102', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(289, 'DPF0138', '6, Tejkunj, Anad Nagar Co-op. H.S.L., Kardal Village, Palghar, Umberpada', 'Saphala ( E), Thana-401102', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(290, 'DPF0139', 'B/12, Neelkamal Co-op. Hou. Soc., <NAME>, palghar, Umberpada', 'Saphala ( E), Thana-401102', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(291, 'DPF0140', '<NAME>, 1/3, Safed Pool, (Saphala) LBS Nagar, 90 Feet Rd', 'Sakinaka, M-92.', '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(292, 'DPF0141', '<NAME>, <NAME>, saphala, Umberpada', 'Palghar, Thana-401102', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(293, 'DPF0142', '<NAME>, 3rd Floor, Block No-307, Tardeo Rd.', 'M-34.', '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(294, 'DPF0143', '203/B, <NAME>, 2nd Floor, Malviya Rd.', 'Vile Parle ( E), M-57.', '2020-07-31 10:08:27', 0, NULL, 19, 0, '', NULL, 0, '', 0, '', '', ''),
(295, 'DPF0144', '28, New Modern Society, 2nd Floor, Block No-9, Gokhle Rd., <NAME>', 'Kandivali (W), M-67.', '2020-07-31 10:08:27', 0, NULL, 14, 0, '', NULL, 0, '', 0, '', '', ''),
(296, 'DPF0145', 'Room No-44, Plot No-1, gate No-5, Malvani Colony, Abdul Hamid Rd.', 'Malad (W), M-95.', '2020-07-31 10:08:27', 0, NULL, 2, 0, '', NULL, 0, '', 0, '', '', ''),
(297, 'DPF0146', 'Bldg. No-409, Old M.H.B. Colony, Gorai Rd.', 'Borivali (W), Mumbai', '2020-07-31 10:08:27', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(298, 'DPF0147', '1/105, Pooja Nagar, Cabin Cross Rd', 'Bhayander ( E), Thana-401105.', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(299, 'DPF0148', '11, Laxmi Niwas, Opp. Vartak Tower, Tulinj Rd.', 'NalaSopara ( E), Thana-401209.', '2020-07-31 10:08:27', 0, NULL, 42, 0, '', NULL, 0, '', 0, '', '', ''),
(300, 'DPF0149', '105, B-Wing, P<NAME>ar, Bldg. no-5, CO-op.H.S.L., Cabin Cross Rd.', 'Bhayander ( E), Thana-401105', '2020-07-31 10:08:27', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(301, 'DPF0150', 'C-9/10, Forjet Tarrace Bldg., 14/16, Opp. Bhatia Hospital, Forjet Hill Rd.', 'Tardeo, M-36.', '2020-07-31 10:08:27', 0, NULL, 40, 0, '', NULL, 0, '', 0, '', '', ''),
(302, 'DPF0151', '14/16, Forjet tarrace Bldg., Shop No-8, Forjet Hill Rd.', 'Tardeo, M-36.', '2020-07-31 10:08:27', 0, NULL, 40, 0, '', NULL, 0, '', 0, '', '', ''),
(303, 'DPF0152', 'Sudarshan Bldg., Block No-6, 1st Floor, Shivaji Park Rd. No-3.', 'Dadar (W), M-28.', '2020-07-31 10:08:27', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(304, 'DPF0153', '21, Corner View Bldg., 2nd Floor, Gokhle Rd.', 'Dadar (W), M-28.', '2020-07-31 10:08:27', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(305, 'DPF0154', '2/18, <NAME> Bldg., Gokhle Rd.', 'Dadar (W), M-28.', '2020-07-31 10:08:27', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(306, 'DPF0155', '3/15, Bhupat Bhuvan Hou. Soc., S Lane, Babrekar Marg, Kathiawadi Cottage', 'Dadar (W), M-28.', '2020-07-31 10:08:27', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(307, 'DPF0156', '3/31, Corner View Building, Gokhale Road,', 'Dadar (West), M - 28', '2020-07-31 10:08:27', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(308, 'DPF0157', '14, Deepali Society, Narayan Nagar, Near Jarnada, Gat Lotya and chand Luteya Marg, ', 'Ahmedabad', '2020-07-31 10:08:27', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(309, 'DPF0158', '303/304, Sapana Building, Agar Bazar, S.K.Bole Road, ', 'Dadar (West), M - 22', '2020-07-31 10:08:27', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(310, 'DPF0159', '301, 3rd Floor, Rahul Apartment 2, Baburav Padukone Marg,', 'Dadar (West), M - 28', '2020-07-31 10:08:27', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(311, 'DPF0160', '3/31, New Indradhanu Society, Shivaji Park, H.M.Patil Road,', 'Dadar (West), M - 28', '2020-07-31 10:08:27', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(312, 'DPF0161', '2/26, Venket Prasad Building, N.C. Kelkar Road, ', 'Dadar (West), M - 28', '2020-07-31 10:08:28', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(313, 'DPF0162', 'Flat No 503, Building No 15, A Wing, Mug Vihar Society, Subhash Nagar,', 'Chembur, M - 71', '2020-07-31 10:08:28', 0, NULL, 28, 0, '', NULL, 0, '', 0, '', '', ''),
(314, 'DPF0163', 'H-3, <NAME>, Ghatla, ', 'Chembur, M - 71', '2020-07-31 10:08:28', 0, NULL, 28, 0, '', NULL, 0, '', 0, '', '', ''),
(315, 'DPF0164', '901, Samruddhi, Opp Cosmos Bank, D.L.Vaidya Road,', 'Dadar (West), M - 28', '2020-07-31 10:08:28', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(316, 'DPF0165', NULL, NULL, '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(317, 'DPF0166', '<NAME>, Upper Cosmos Bank, D.L.Vaidya Road,', 'Dadar (West), M - 28', '2020-07-31 10:08:28', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(318, 'DPF0167', '<NAME>, Upper Cosmos Bank, D.L.Vaidya Road,', 'Dadar (West), M - 28', '2020-07-31 10:08:28', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(319, 'DPF0168', '53/59, New Khoj Chawl, 1st Floor, Room No 5, Lamington Road,', 'Mumbai Central (East), M - 8', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(320, 'DPF0169', 'A/10, Shilpkar Co. Op. Hsg. Soc., 2nd Floor, Daulat Nagar, Opp Navneet Hospital, Road No 7,', 'Borivali (East)', '2020-07-31 10:08:28', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(321, 'DPF0170', '<NAME>, Depa', 'Kutch Depa', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(322, 'DPF0171', 'Om Vinayak apartment, A Wing, Room No 303, Opp Damodar Nagar, Tulinj road', 'Nalasopara(East)', '2020-07-31 10:08:28', 0, NULL, 42, 0, '', NULL, 0, '', 0, '', '', ''),
(323, 'DPF0172', 'Ram Lakhan Building No 6, Room No 8, Shivaji Nagar, Opp Hari Nagar School,', 'Jogeshwari (East), M - 60', '2020-07-31 10:08:28', 0, NULL, 12, 0, '', NULL, 0, '', 0, '', '', ''),
(324, 'DPF0173', 'Matru Mandir Building, Room No 204, 2nd Floor, Near Damodar Hall, Tulinj road', 'Nalasopara(East)', '2020-07-31 10:08:28', 0, NULL, 42, 0, '', NULL, 0, '', 0, '', '', ''),
(325, 'DPF0174', '<NAME>, <NAME>', 'Moti Khakhar, Kutch - 370435', '2020-07-31 10:08:28', 0, NULL, 15, 0, '', NULL, 0, '', 0, '', '', ''),
(326, 'DPF0175', '9/324, Gulmarg Tarang Bldg., A-Wing, Ground Floor, Shailendra Nagar', 'Dahisar ( E), Mumbai', '2020-07-31 10:08:28', 0, NULL, 11, 0, '', NULL, 0, '', 0, '', '', ''),
(327, 'DPF0176', 'A-103, Mukund Nandanvan Co-op. Hou. Soc., Near Radhakrushna Mandir', 'Dahisar ( E), M-68.', '2020-07-31 10:08:28', 0, NULL, 11, 0, '', NULL, 0, '', 0, '', '', ''),
(328, 'DPF0177', '<NAME>, Room No-3, 2nd Floor, Near Datt Mandir, Parthli Rd.', 'Dombivali ( E), Thana-421201', '2020-07-31 10:08:28', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(329, 'DPF0178', 'Rad<NAME>sad Chawl No-1, Room No-12, Kajupada, Pipe Line', 'Kurla (W), M-72.', '2020-07-31 10:08:28', 0, NULL, 22, 0, '', NULL, 0, '', 0, '', '', ''),
(330, 'DPF0179', '3/8, Ankur Apartment, Godavari Mahatre Rd.', 'Dahisar (W0, M-68.', '2020-07-31 10:08:28', 0, NULL, 11, 0, '', NULL, 0, '', 0, '', '', ''),
(331, 'DPF0180', '501, Ruby Terrace, Near Bank of Baroda, M.G.Cross Road,', 'Vileparle (East) M - 57', '2020-07-31 10:08:28', 0, NULL, 19, 0, '', NULL, 0, '', 0, '', '', ''),
(332, 'DPF0181', '5, Siddhivinayak Niwas, Back Uma Mandir, Prabhat Nagar', 'Kurla (West) M - 72', '2020-07-31 10:08:28', 0, NULL, 22, 0, '', NULL, 0, '', 0, '', '', ''),
(333, 'DPF0182', NULL, NULL, '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(334, 'DPF0183', 'A-1/2, Malad Highway View Co. Op. Hsg. Soc., Kurar Village, Near Satara Lake,', 'Malad (East), M - 97', '2020-07-31 10:08:28', 0, NULL, 2, 0, '', NULL, 0, '', 0, '', '', ''),
(335, 'DPF0184', 'A-1/1, Malad Highway View Co. Op. Hsg. Soc., Kurar Village, Near Satara Lake,', 'Malad (East), M - 97', '2020-07-31 10:08:28', 0, NULL, 2, 0, '', NULL, 0, '', 0, '', '', ''),
(336, 'DPF0185', 'B-503, Bhoomi Tower, Off Nehru Road,', 'Santacruz (East), M - 55', '2020-07-31 10:08:28', 0, NULL, 16, 0, '', NULL, 0, '', 0, '', '', ''),
(337, 'DPF0186', NULL, NULL, '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(338, 'DPF0187', 'Room No 1, Bhari Chawl, Kajupada Pipeline, Near Shivaji Park,', 'Kurla (West), M - 72', '2020-07-31 10:08:28', 0, NULL, 22, 0, '', NULL, 0, '', 0, '', '', ''),
(339, 'DPF0188', '102, Mahavir Building, Lajpatrai Road,', 'Vileparla (West), M - 56', '2020-07-31 10:08:28', 0, NULL, 19, 0, '', NULL, 0, '', 0, '', '', ''),
(340, 'DPF0189', '806, Alpadu, 1001/1002, 10th Floor, Khodadad Circle, Dr Ambedkar Road', 'Dadar (East) M - 14', '2020-07-31 10:08:28', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(341, 'DPF0190', 'Minaxi, 162-D, Opp Parsi Gymkhana, Dr Ambedkar Road', 'Dadar (East) M - 14', '2020-07-31 10:08:28', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(342, 'DPF0191', '401, 4th Floor, Ashirwad Building, Nadkarni Park Road,', 'Wadala (East), M - 37', '2020-07-31 10:08:28', 0, NULL, 65, 0, '', NULL, 0, '', 0, '', '', ''),
(343, 'DPF0192', '201, Vasant Complex, Jay Prakash Road No 1, Opp Cosmos Bank', 'Goregaon (East), M - 63', '2020-07-31 10:08:28', 0, NULL, 5, 0, '', NULL, 0, '', 0, '', '', ''),
(344, 'DPF0193', 'B/4, Lanu Villa, 79/B, Tagore Road,', 'Santacruz (West), M - 54', '2020-07-31 10:08:28', 0, NULL, 16, 0, '', NULL, 0, '', 0, '', '', ''),
(345, 'DPF0194', '901, 9th Floor, Palya Ratan, Telang Cross Road, King Circle', 'Matunga (East), M - 19', '2020-07-31 10:08:28', 0, NULL, 41, 0, '', NULL, 0, '', 0, '', '', ''),
(346, 'DPF0195', 'B-20, Gautam Nagar, L.T.Road,', 'Borivali (West), M - 92', '2020-07-31 10:08:28', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(347, 'DPF0196', NULL, NULL, '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(348, 'DPF0197', '4, Godavari Building, 1st Floor, 19th Road,', 'Khan (West), M - 52', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(349, 'DPF0198', '58/60, 3rd Floor, Bazar Gate Street, ', 'CST, M -1', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(350, 'DPF0199', '13, <NAME>, 2nd Floor, Bhaijevanne Lane, Thakurdwar', 'Thakurdwar, M-2', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(351, 'DPF0200', 'Aloka Apartment, 13th Floor, Gyan Mandir Road,', 'Dadar (West), M-28', '2020-07-31 10:08:28', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(352, 'DPF0201', 'Depa', 'Kutch - 370435', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(353, 'DPF0202', 'Room No 7-8, 60-E, Shiv Shakti Building, Shadana <NAME>,', 'Dadar (East), M-14', '2020-07-31 10:08:28', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(354, 'DPF0203', '1/10, Kunj Niwas, Sahakar Road,', 'Jogeshwari (West), M-400102', '2020-07-31 10:08:28', 0, NULL, 12, 0, '', NULL, 0, '', 0, '', '', ''),
(355, 'DPF0204', 'Nice Collection, <NAME>, Kanjur Village Road', 'Kanjur Marg (East), M-42', '2020-07-31 10:08:28', 0, NULL, 21, 0, '', NULL, 0, '', 0, '', '', ''),
(356, 'DPF0205', 'A/502, Acropolis, Thatte Nagar, Opp HDFC Bank, Off College Road', 'Nasik - 422005', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(357, 'DPF0206', 'B-6, Rekhankit, R.K.Nagar, Opp Nirmala Convent School, Gangapur Road', 'Nasik - 422013', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(358, 'DPF0207', 'Depa', 'Kutch - 370435', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(359, 'DPF0208', 'B-103, Shivek Center, Opp Hanuman Mandir, Station Road ', 'Nalasopara (West) - 401203', '2020-07-31 10:08:28', 0, NULL, 42, 0, '', NULL, 0, '', 0, '', '', ''),
(360, 'DPF0209', 'Tiwari Sadan, 2nd Floor, Opp Asian Center, Dapoda Road,', 'Palghar (West) - 401404', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(361, 'DPF0210', '<NAME>, <NAME>, <NAME>', 'Jogeshwari (East)', '2020-07-31 10:08:28', 0, NULL, 12, 0, '', NULL, 0, '', 0, '', '', ''),
(362, 'DPF0211', 'A-203, Chheda Apartment, Opp Axis Bank, Station Road', 'Nalasopara (West) - 401203', '2020-07-31 10:08:28', 0, NULL, 42, 0, '', NULL, 0, '', 0, '', '', ''),
(363, 'DPF0212', '902, B Wing, Shiv Sakti Aprtment, Dr. R.P. Road', 'Mulund (West) - 80', '2020-07-31 10:08:28', 0, NULL, 23, 0, '', NULL, 0, '', 0, '', '', ''),
(364, 'DPF0213', '207, <NAME>, Upper Supra Trading Co., Near Damodar Park, Tulinj Road', 'Nalasopara (Eest) - 401209', '2020-07-31 10:08:28', 0, NULL, 42, 0, '', NULL, 0, '', 0, '', '', ''),
(365, 'DPF0214', 'B Wing, 201, Sai Shakti Co. Op. Hsg. Soc., Ambawadi, Mahesh Park, Tulinj Road', 'Nalasopara (East) - 401209', '2020-07-31 10:08:28', 0, NULL, 42, 0, '', NULL, 0, '', 0, '', '', ''),
(366, 'DPF0215', '402, Rameshwar, Dhobi Aadi, Mudada Compound, Opp Fenial Society', 'Thane (West) - 400601', '2020-07-31 10:08:28', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(367, 'DPF0216', 'A/502, New Look Apartment, Opp Wadala Udyog Bhavan, M.M.G.S. Road,', 'Dadar (East), M - 14', '2020-07-31 10:08:28', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(368, 'DPF0217', '124, Sawkar Colony, Prem Nagar Market,', 'Jogeshwari (East), M-60', '2020-07-31 10:08:28', 0, NULL, 12, 0, '', NULL, 0, '', 0, '', '', ''),
(369, 'DPF0218', '33, Dinesh building, Guffa Road,', 'Jogeshwari (East), M-60', '2020-07-31 10:08:28', 0, NULL, 12, 0, '', NULL, 0, '', 0, '', '', ''),
(370, 'DPF0219', 'B/6, Madan Villa, Hardevibai Society, Ashoka Road,', 'Jogeshwari (East), M-60', '2020-07-31 10:08:28', 0, NULL, 12, 0, '', NULL, 0, '', 0, '', '', ''),
(371, 'DPF0220', 'B Wing,105, 1st Floor, Kishor Kunj, Building No 5, Near Viva College', 'Virar (West)', '2020-07-31 10:08:28', 0, NULL, 18, 0, '', NULL, 0, '', 0, '', '', ''),
(372, 'DPF0221', '1, Sathya Sadan, Opp Bhagshala Ground, Karve Road', 'Dombivli (West) - 421202', '2020-07-31 10:08:28', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(373, 'DPF0222', 'Mohan Manor Building, 162-E, Dr Baba Saheb Ambedkar Road', 'Dadar (East), M-14', '2020-07-31 10:08:28', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(374, 'DPF0223', '4153, 2nd Floor, Rambhia Building,', 'Puna-413801', '2020-07-31 10:08:28', 0, NULL, 64, 0, '', NULL, 0, '', 0, '', '', ''),
(375, 'DPF0224', 'Flat No 6, Shubham Apartment, Nane Chawl, Below PDCC Bank,', 'Puna-413801', '2020-07-31 10:08:28', 0, NULL, 64, 0, '', NULL, 0, '', 0, '', '', ''),
(376, 'DPF0225', 'Room No 4, Dhondu Rangwala Chawl, Prabhat Colony, Jco Club', 'Santacruz (East), M-55', '2020-07-31 10:08:28', 0, NULL, 16, 0, '', NULL, 0, '', 0, '', '', ''),
(377, 'DPF0226', 'Flat No 1-3, Lalit Apartment, Opp Tahsil Kacheri, Shivaji Chowk, Daund,', 'Puna', '2020-07-31 10:08:28', 0, NULL, 64, 0, '', NULL, 0, '', 0, '', '', ''),
(378, 'DPF0227', 'B/201, New Laxmi Niwas Co. Op. Hsg. Soc., Tulinj Road,', 'Nalasopara (East) - 401209', '2020-07-31 10:08:28', 0, NULL, 42, 0, '', NULL, 0, '', 0, '', '', ''),
(379, 'DPF0228', 'A/103, Sai Shakti Co. Op. Hsg. Soc., Vardhaman Park, Tulinj Road,', 'Nalasopara (East) - 401209', '2020-07-31 10:08:28', 0, NULL, 42, 0, '', NULL, 0, '', 0, '', '', ''),
(380, 'DPF0229', 'Bhagyoday Building, Room No 11, 1st Floor, <NAME>, Dr Ambedkar Road, Lalbaug', 'Lalbaug - 12', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(381, 'DPF0230', 'Flat No 304, Shyam Novel, 4-5-947, <NAME>, <NAME>, Hyderabad', ' Hyderabad-500095', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(382, 'DPF0231', '302/3, Shri Swami Samarth Apartment, V.N.Purav Marg,', 'Chunbhatti (East), M-22', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(383, 'DPF0232', '18, Tilak Building, Achary Duda road,', 'Sewri (West), M-15', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(384, 'DPF0233', 'G-11/5, Platinum City, Yeshwantpur, H.M.D. Road, ', 'Bangalore, - 560003', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(385, 'DPF0234', '504, Maitri Residency - 1, <NAME>', 'Kandivali (West), M-67', '2020-07-31 10:08:28', 0, NULL, 14, 0, '', NULL, 0, '', 0, '', '', ''),
(386, 'DPF0235', 'Bhagyoday Building, Room No 12, 1st Floor, Ganesh Gully,', 'Lalbugh, M-12', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(387, 'DPF0236', 'A/11, Priyanka, Deshmukh Garden Lane, Opp Patrawala chawl, M.P.Road', 'Mulund (East), M-51', '2020-07-31 10:08:28', 0, NULL, 23, 0, '', NULL, 0, '', 0, '', '', ''),
(388, 'DPF0237', '30, Northville, Block No 7B, 2nd Floor, Near Dr Shirodkar School, KEM Hospital Road', 'Parel, M-12', '2020-07-31 10:08:28', 0, NULL, 39, 0, '', NULL, 0, '', 0, '', '', ''),
(389, 'DPF0238', '8-9, Bhimabai Mansion, 2nd Floor, Jakari Road', 'Malad (West), M-64.', '2020-07-31 10:08:28', 0, NULL, 2, 0, '', NULL, 0, '', 0, '', '', ''),
(390, 'DPF0239', '161, Malhar Bhavan, Block No 8, 1st Floor, Hindu Colony, Sir Bhalchandra Road', 'Dadar (East), M-14', '2020-07-31 10:08:28', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(391, 'DPF0240', '1103, Bhavya Supreme Annexe, Parel Village, Parel Tank Road', 'Parel, M-12', '2020-07-31 10:08:28', 0, NULL, 39, 0, '', NULL, 0, '', 0, '', '', ''),
(392, 'DPF0241', 'Flat 7, Plot 42A, Khamiya Kunj, 3rd Floor, Scheme No 6, Road - 25, Sion Circle', 'Sion (West), M-22', '2020-07-31 10:08:28', 0, NULL, 54, 0, '', NULL, 0, '', 0, '', '', ''),
(393, 'DPF0242', 'Flat 7, Plot 42A, Khamiya Kunj, 3rd Floor, Scheme No 6, Road - 25, Sion Circle', 'Sion (West), M-22', '2020-07-31 10:08:28', 0, NULL, 54, 0, '', NULL, 0, '', 0, '', '', ''),
(394, 'DPF0243', 'Sushila Baug Co. Op. Hsg. Soc., 53/A Wing, 1st Floor, Swami Vivekananda Road,', 'Santacruz (West), M-54', '2020-07-31 10:08:28', 0, NULL, 16, 0, '', NULL, 0, '', 0, '', '', ''),
(395, 'DPF0244', '158, New Bori building, Room No 37-44, 2nd Floor, Alibhai Premji Marg,', 'Grant Road, M-7', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(396, 'DPF0245', '4,Ground Floor, Tushar Park, Opp Navneet Motors, Vijay Colony, Juhi Galli', 'Andheri (West), M- 58', '2020-07-31 10:08:28', 0, NULL, 1, 0, '', NULL, 0, '', 0, '', '', ''),
(397, 'DPF0246', '207, Puja Nagar, Building No 1, Cabin Cross Road, ', 'Bhayandar (East) - 401105', '2020-07-31 10:08:28', 0, NULL, 9, 0, '', NULL, 0, '', 0, '', '', ''),
(398, 'DPF0247', '301, Rajhans Society, Nariman Road,', 'Vileparle (East), M-57', '2020-07-31 10:08:28', 0, NULL, 19, 0, '', NULL, 0, '', 0, '', '', ''),
(399, 'DPF0248', '403A, Visnu Villa, Nariman Road,', 'Vileparle (East), M-57', '2020-07-31 10:08:28', 0, NULL, 19, 0, '', NULL, 0, '', 0, '', '', ''),
(400, 'DPF0249', '32, Vijay Niwas, Near Canara Bank, Nehru Road,', 'Vileparle (East), M-57', '2020-07-31 10:08:28', 0, NULL, 19, 0, '', NULL, 0, '', 0, '', '', ''),
(401, 'DPF0250', '9/448, Jethwa Niwas, Dr Ambedkar Road, King Circle', 'Matunga (C.Rly), M-19', '2020-07-31 10:08:28', 0, NULL, 41, 0, '', NULL, 0, '', 0, '', '', ''),
(402, 'DPF0251', '11/448, Jethwa Niwas, Dr Ambedkar Road, King Circle', 'Matunga (C.Rly), M-19', '2020-07-31 10:08:28', 0, NULL, 41, 0, '', NULL, 0, '', 0, '', '', ''),
(403, 'DPF0252', '30/210-E, Kumud Kalpana Building, Near Vijaya Bank, Dr Ambedkar Road', 'Matunga(East), M-19', '2020-07-31 10:08:28', 0, NULL, 41, 0, '', NULL, 0, '', 0, '', '', ''),
(404, 'DPF0253', '17, S<NAME>, R.C.Marg,', 'Chembur, M-71', '2020-07-31 10:08:28', 0, NULL, 28, 0, '', NULL, 0, '', 0, '', '', ''),
(405, 'DPF0254', '<NAME>, Mota Kandagra', 'Bidada', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(406, 'DPF0255', 'B/5, Pratibha Building, Room No 101, Sector No 4 , Shanti Nagar', 'Miraroad (East)', '2020-07-31 10:08:28', 0, NULL, 8, 0, '', NULL, 0, '', 0, '', '', ''),
(407, 'DPF0256', '5, Megh Dhanush Building, Block No 3, Opp Bhatia Hospital, Forjett Hill Road', 'Tardeo', '2020-07-31 10:08:28', 0, NULL, 40, 0, '', NULL, 0, '', 0, '', '', ''),
(408, 'DPF0257', ' Megdanus Building, Room No 2, Ground Floor, Forjet Hill Road,', 'Tardeo, M-36', '2020-07-31 10:08:28', 0, NULL, 40, 0, '', NULL, 0, '', 0, '', '', ''),
(409, 'DPF0258', '6, Prabhat Building, Prabhakar Pundlik Bhagat Wadi, Tukaram Nagar, Aya Re Road', 'Dombivli (East) - 421201', '2020-07-31 10:08:28', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(410, 'DPF0259', '62/3, Trivedi Building, Near Jain Hostel', 'Sion (West), M-22', '2020-07-31 10:08:28', 0, NULL, 54, 0, '', NULL, 0, '', 0, '', '', ''),
(411, 'DPF0260', 'B-501, Purnima Apartment, Shrinagar Soc., M.G.Road', 'Goregaon (West), M-62 ', '2020-07-31 10:08:28', 0, NULL, 5, 0, '', NULL, 0, '', 0, '', '', ''),
(412, 'DPF0261', '788, Shree Building, Flat No 501, Opp RaviRaj Hotel, Bhandarkar Road', 'Puna - 411 004', '2020-07-31 10:08:28', 0, NULL, 64, 0, '', NULL, 0, '', 0, '', '', ''),
(413, 'DPF0262', 'B-6, 16th Floor, Avanti Apartment, Opp Shanmukhananda Hall,', 'King Circle, M-19', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(414, 'DPF0263', 'A-206, Amrut Cottage, Near Saibaba Mandir, Dewan Man ', 'Vasai (West)', '2020-07-31 10:08:28', 0, NULL, 17, 0, '', NULL, 0, '', 0, '', '', ''),
(415, 'DPF0264', 'B-15, Shailesh Apartment, Anand Nagar,', 'Vasai (West)', '2020-07-31 10:08:28', 0, NULL, 17, 0, '', NULL, 0, '', 0, '', '', ''),
(416, 'DPF0265', '1203, <NAME>, <NAME>, Near Hira Mugi Hospital, Valji Ladha Road', 'Mulund (West), M-80', '2020-07-31 10:08:28', 0, NULL, 23, 0, '', NULL, 0, '', 0, '', '', ''),
(417, 'DPF0266', '602, BPS.Anand, Opp Kalidas Hall, P.K.Road', 'Mulund (West)', '2020-07-31 10:08:28', 0, NULL, 23, 0, '', NULL, 0, '', 0, '', '', ''),
(418, 'DPF0267', '501, Pasava Apartment, Dr Ambedkar Road', 'Mulund (West), M-80', '2020-07-31 10:08:28', 0, NULL, 23, 0, '', NULL, 0, '', 0, '', '', ''),
(419, 'DPF0268', '<NAME>, Geeta Nagar No 1, Gayatri Nagar, Main Road', 'Rajkot - 360002', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(420, 'DPF0269', 'Flat No11, 1st Floor, Building No 52, Mira Society, Shankar Sheth Road', 'Puna', '2020-07-31 10:08:28', 0, NULL, 64, 0, '', NULL, 0, '', 0, '', '', ''),
(421, 'DPF0270', '15, Kishore Mansion, 211-C, Dr B.A.Road', 'Matunga (C.Rly.), M-19', '2020-07-31 10:08:28', 0, NULL, 41, 0, '', NULL, 0, '', 0, '', '', ''),
(422, 'DPF0271', '302, Kasturi Kunj, Tata Power Lane, Ram Nagar', 'Dombivli (East)', '2020-07-31 10:08:28', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(423, 'DPF0272', '207, Parle Abhishek, V.P.Road', 'Vile Parle (West), M-56', '2020-07-31 10:08:28', 0, NULL, 19, 0, '', NULL, 0, '', 0, '', '', ''),
(424, 'DPF0273', '42, Kaushik Niwas, L.N.Road,', 'Matunga (East), M-19', '2020-07-31 10:08:28', 0, NULL, 41, 0, '', NULL, 0, '', 0, '', '', ''),
(425, 'DPF0274', 'A Wing, 1st Floor, 7, Yagneshwar Building, Kasturba Road', 'Mulund (West), M-80', '2020-07-31 10:08:28', 0, NULL, 23, 0, '', NULL, 0, '', 0, '', '', ''),
(426, 'DPF0275', '1802, Moksh Mahal, P.K.Road', 'Mulund (West), M-80', '2020-07-31 10:08:28', 0, NULL, 23, 0, '', NULL, 0, '', 0, '', '', ''),
(427, 'DPF0276', '703, Sursha Apartment, Sarvodaya Nagar, Jain Mandir Road mulund', 'Mulund (West), M-80', '2020-07-31 10:08:28', 0, NULL, 23, 0, '', NULL, 0, '', 0, '', '', ''),
(428, 'DPF0277', 'Fyoladiya', 'USA', '2020-07-31 10:08:28', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(429, 'DPF0278', 'Block No 5A, Varsha Building, North-South Road No 5, Juhu Scheme', 'Vile Parle (West), M-56', '2020-07-31 10:08:28', 0, NULL, 19, 0, '', NULL, 0, '', 0, '', '', ''),
(430, 'DPF0279', '201, Rashmi Kunj, Juhu Scheme, V.M.Road', 'Vile Parle (West), M-56', '2020-07-31 10:08:28', 0, NULL, 19, 0, '', NULL, 0, '', 0, '', '', ''),
(431, 'DPF0280', 'Het Kunj Building, Block No 6, N.S.Road No 2,', 'Vile Parle (West), M-56', '2020-07-31 10:08:28', 0, NULL, 19, 0, '', NULL, 0, '', 0, '', '', ''),
(432, 'DPF0281', 'Block No 5A, Varsha Building, North-South Road No 5, Juhu Scheme', 'Vile Parle (West), M-56', '2020-07-31 10:08:28', 0, NULL, 19, 0, '', NULL, 0, '', 0, '', '', ''),
(433, 'DPF0282', '105/3175, Pant Nagar', 'Ghatkopar (East), M-75', '2020-07-31 10:08:28', 0, NULL, 4, 0, '', NULL, 0, '', 0, '', '', ''),
(434, 'DPF0283', 'B-603, Iswar Swarup 6, Mamletdar wadi,', 'Malad (West), M-64', '2020-07-31 10:08:28', 0, NULL, 2, 0, '', NULL, 0, '', 0, '', '', ''),
(435, 'DPF0284', '13, 205, <NAME>, Ramnagar, Chincholi Bunder Road', 'Malad (West), M-64', '2020-07-31 10:08:28', 0, NULL, 2, 0, '', NULL, 0, '', 0, '', '', ''),
(436, 'DPF0285', 'A-205, Kaveri Building, Ramnagar, Chincholi Bunder Road', 'Malad (West), M-64', '2020-07-31 10:08:28', 0, NULL, 2, 0, '', NULL, 0, '', 0, '', '', ''),
(437, 'DPF0286', '13, 204, <NAME>, Ramnagar, Chincholi Bunder Road', 'Malad (West), M-64', '2020-07-31 10:08:28', 0, NULL, 2, 0, '', NULL, 0, '', 0, '', '', ''),
(438, 'DPF0287', '5, Pitru Chhaya Building No 1, Near Rajda School, Shopping Cross Road No 2', 'Borivali (West), M-92', '2020-07-31 10:08:28', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(439, 'DPF0288', '106, Sita Apartment, Navghar Road', 'Bhayandar (East)', '2020-07-31 10:08:28', 0, NULL, 9, 0, '', NULL, 0, '', 0, '', '', ''),
(440, 'DPF0289', 'A Wing, Flat No 4A, Shiv Krupa Society, Old Nagardas Road', 'Andheri (East), M-69', '2020-07-31 10:08:28', 0, NULL, 1, 0, '', NULL, 0, '', 0, '', '', ''),
(441, 'DPF0290', 'A Wing, Flat No 6A, Shiv Krupa Society, Old Nagardas Road', 'Andheri (East), M-69', '2020-07-31 10:08:28', 0, NULL, 1, 0, '', NULL, 0, '', 0, '', '', ''),
(442, 'DPF0291', 'A-204, Shri Vimalnath Apartment, Vagad Nagar, Ramdev Park Road,', 'Miraroad (East) - 401107', '2020-07-31 10:08:29', 0, NULL, 8, 0, '', NULL, 0, '', 0, '', '', ''),
(443, 'DPF0292', '402, Vijay Vilas Co. Op. Hsg. Soc., Opp Chiranjeevi Hospital,, Old Nagardas Road', 'Andheri (East), M-69', '2020-07-31 10:08:29', 0, NULL, 1, 0, '', NULL, 0, '', 0, '', '', ''),
(444, 'DPF0293', '1752, E Ward, Nabar School, 201, Rajarampuri, 5th Lane,', 'Kolhapur', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(445, 'DPF0294', 'Arfan Apartment, Plot No F/101, 1981-E Ward, Rajarampuri, 9th Lane', 'Kolhapur', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', '');
INSERT INTO `family_master` (`id`, `family_id`, `address_1`, `address_2`, `added_on`, `deleted`, `deleted_on`, `area_id`, `pincode`, `landline`, `email`, `split_status`, `split_data`, `merge_status`, `merge_data`, `split_created`, `merge_created`) VALUES
(446, 'DPF0295', 'A-003, Sukh Shanti Apartment, Opp Shanti Ashram Bus Depot, Eksar Road', 'Borival, M-400103', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(447, 'DPF0296', 'Room No 2, Gulab Nagar Building, Patharli Naka No 8, Near Datta Mandir, Kalyan Road', 'Dombivli (East)', '2020-07-31 10:08:29', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(448, 'DPF0297', 'B-502, Navneet Nagar, Deshpada', 'Dombivli (East)', '2020-07-31 10:08:29', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(449, 'DPF0298', '55/1621, Ground Floor, Savrajli, Pant Nagar, Opp. Apna Bazar', 'Ghatkopar (East), M-75', '2020-07-31 10:08:29', 0, NULL, 4, 0, '', NULL, 0, '', 0, '', '', ''),
(450, 'DPF0299', '30, D-1, 4th Floor, Shanti Shekhar Apartments, Rajbhavan Road, SomajiGuda', 'Hyderabad - 500082', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(451, 'DPF0300', '11, Patel Bhavan, 1st Floor, Jivdaya Lane, Panjrapole Lane, Agra Road', 'Ghatkopar (West), M- 86', '2020-07-31 10:08:29', 0, NULL, 4, 0, '', NULL, 0, '', 0, '', '', ''),
(452, 'DPF0301', '1, Kaldevi Bridge Vashi Chawl No 1, Majas Wadi, Majas Road,', 'Jogeshwari (East), M-60', '2020-07-31 10:08:29', 0, NULL, 12, 0, '', NULL, 0, '', 0, '', '', ''),
(453, 'DPF0302', 'B-201, Mathuria Apartment, Near Vishal Hall, Andheri-Kurla Road', 'Andheri (East)', '2020-07-31 10:08:29', 0, NULL, 1, 0, '', NULL, 0, '', 0, '', '', ''),
(454, 'DPF0303', 'B-15, Chandralok Building, Mehta Apartment, Punjabi Lane, L.T.Road', 'Borivali (West), M-92', '2020-07-31 10:08:29', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(455, 'DPF0304', 'A-13, Kunj Niwas, Sahakar Road', 'Jogeshwari (West), M-400102', '2020-07-31 10:08:29', 0, NULL, 12, 0, '', NULL, 0, '', 0, '', '', ''),
(456, 'DPF0305', 'K-203,Navneet Nagar, Lodha Heritage, Desale Pada', 'Dombivli (East)', '2020-07-31 10:08:29', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(457, 'DPF0306', '1/103,Puja Nagar No 1, Cabin Cross Road,', 'Bhayandar (East)', '2020-07-31 10:08:29', 0, NULL, 9, 0, '', NULL, 0, '', 0, '', '', ''),
(458, 'DPF0307', 'Jain Gurukul Society, Below Jain Mandir, Char Rasta,', 'Bharuch', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(459, 'DPF0308', 'B-203, Sarvoday Apartment, B.P Cross Road no 4', 'Bhayandar (East)', '2020-07-31 10:08:29', 0, NULL, 9, 0, '', NULL, 0, '', 0, '', '', ''),
(460, 'DPF0309', 'Room No 33, 2nd Floor, Dube Building, Old Nagardas Road', 'Andheri (East), M-69', '2020-07-31 10:08:29', 0, NULL, 1, 0, '', NULL, 0, '', 0, '', '', ''),
(461, 'DPF0310', '101, Dipika Apartment, Dahanukar Wadi, Gokhale Road', 'Kandivali (West), M-67', '2020-07-31 10:08:29', 0, NULL, 14, 0, '', NULL, 0, '', 0, '', '', ''),
(462, 'DPF0311', '602,Runwal Residency, Upper ICICI Bank, D.K.Sandhu Marg,', 'Chembur, M- 71', '2020-07-31 10:08:29', 0, NULL, 28, 0, '', NULL, 0, '', 0, '', '', ''),
(463, 'DPF0312', 'B-6, Shankar Darshan Society, Plot 189, 15th Road, R.C.Marg', 'Chembur(East), M-71', '2020-07-31 10:08:29', 0, NULL, 28, 0, '', NULL, 0, '', 0, '', '', ''),
(464, 'DPF0313', 'B-102, <NAME>, Near Lodha Heritage, Desale Pada', 'Dombilvali (East)', '2020-07-31 10:08:29', 0, NULL, 59, 0, '', NULL, 0, '', 0, '', '', ''),
(465, 'DPF0314', 'D-4, Kanchan Avenue, Tulsi Nagar, Jabalpur', 'Jabalpur - 482002', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(466, 'DPF0315', 'B-104, Vande Mataram Home, Near Chainpur Bus Stand, Navaraniya', 'Ahmedabad', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(467, 'DPF0316', '310, Shreepati Keshav, 3rd Floor, Opp Union School, 208/210, Khetwadi Main Road', 'Khetwadi, M-4', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(468, 'DPF0317', '7, 1st Floor, Avinash Bhavan, Dikshita Cross Road No 1,', '<NAME> (East), M-57', '2020-07-31 10:08:29', 0, NULL, 19, 0, '', NULL, 0, '', 0, '', '', ''),
(469, 'DPF0318', 'Flat No 9, 2nd Floor,Mohan Kunj, 68, Jyotiba Phule Road', 'Dadar (East), M-14', '2020-07-31 10:08:29', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(470, 'DPF0319', 'A-202, Savan Bhavan, Near Sunshine Plaza, Naigaon Cross Road', 'Dadar (East), M-14', '2020-07-31 10:08:29', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(471, 'DPF0320', 'A-304, Tuljeswari Hill, Ambawadi, Tulinj Road,', 'Nalasopara (East)', '2020-07-31 10:08:29', 0, NULL, 42, 0, '', NULL, 0, '', 0, '', '', ''),
(472, 'DPF0321', '2/601, Heal Craft co. Op. Hsg. Soc., Manpada, Ghodbunder Road, Maula bagh', 'Thane (West)', '2020-07-31 10:08:29', 0, NULL, 58, 0, '', NULL, 0, '', 0, '', '', ''),
(473, 'DPF0322', 'R.H.1, Daffodils Co. Op. Hsg. Soc., Sector 14,', 'Vashi', '2020-07-31 10:08:29', 0, NULL, 63, 0, '', NULL, 0, '', 0, '', '', ''),
(474, 'DPF0323', 'D-41, N-1, Amar Jyoti Co. Op. Hsg. Soc., M.G.Complex, Sector 14', 'Vashi', '2020-07-31 10:08:29', 0, NULL, 63, 0, '', NULL, 0, '', 0, '', '', ''),
(475, 'DPF0324', 'Room No 27, 3rd Floor, <NAME>, <NAME>, <NAME>, Delisle Road,', NULL, '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(476, 'DPF0325', '60, Deeplaxmi Apartment, B.I.T Chawl No 16, 55 Red Cross Street, Madhavrao Gangan Marg, Agripada', 'Agripada, M-11', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(477, 'DPF0326', '301, <NAME>, K.K.Marg, Satt Rasta', 'Satt Rasta, M-11', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(478, 'DPF0327', '302, Madhur Apartment, Plot No 210, TPS Road, Babhai Naka', 'Borivali (West), M-92', '2020-07-31 10:08:29', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(479, 'DPF0328', 'A-202, Yashodeep Co. Op. Hsg. Soc., Opp Vartak Tower, Tulinj Road', 'Nallasopara (East)', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(480, 'DPF0329', 'Block 28, 3rd Floor, Building No 3A, Agrawal Nagar, Dr Ambedkar Road', 'Matunga (C.Rly.), M-19', '2020-07-31 10:08:29', 0, NULL, 41, 0, '', NULL, 0, '', 0, '', '', ''),
(481, 'DPF0330', '101/103, Maha Prabhu Co. Op. Hsg. Soc., Carter Road No 3,', 'Borivali (East), M - 400066', '2020-07-31 10:08:29', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(482, 'DPF0331', '12, Sukh Shanti Co. Op. Hsg. Soc., (Rambhia Niwas), Main Kasturba Road,', 'Borivali (East), M - 400066', '2020-07-31 10:08:29', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(483, 'DPF0332', '101/103, Maha Prabhu Co. Op. Hsg. Soc., Carter Road No 3,', 'Borivali (East), M - 400066', '2020-07-31 10:08:29', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(484, 'DPF0333', 'B/6, 2nd Floor, Laxmi Nagar Co. Op. Hsg. Soc., Carter Road No 3, ', 'Borivali (East), M - 400066', '2020-07-31 10:08:29', 0, NULL, 6, 0, '', NULL, 0, '', 0, '', '', ''),
(485, 'DPF0334', 'Room No 1, <NAME>, Kokani Pada, Opp. Santoshi Mata Mandir, Kurar Village', 'Malad (East), - 400 097', '2020-07-31 10:08:29', 0, NULL, 2, 0, '', NULL, 0, '', 0, '', '', ''),
(486, 'DPF0335', 'Room No 2, <NAME>, Kokani Pada, Opp. Santoshi Mata Mandir, Kurar Village', 'Malad (East), - 400 097', '2020-07-31 10:08:29', 0, NULL, 2, 0, '', NULL, 0, '', 0, '', '', ''),
(487, 'DPF0336', ' 7, Seven Sagar Bunglow, Near Kovai Nagar,', 'Mundra Road, Bhuj- Kutch', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(488, 'DPF0337', 'A-1, Ground Floor, Parijat, Nayak Wadi, Aarey Road,', 'Goregav (East),', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(489, 'DPF0338', 'B-101, Shidi Paras Apartment, Pushpa Park, Daftary Road,', 'Malad (East), M-97', '2020-07-31 10:08:29', 0, NULL, 2, 0, '', NULL, 0, '', 0, '', '', ''),
(490, 'DPF0339', 'D-105, Tulip Co. op. Hsg. Soc., Godiya Velli of Flower, Thakur Village,', 'Kandivali (East)-400101', '2020-07-31 10:08:29', 0, NULL, 14, 0, '', NULL, 0, '', 0, '', '', ''),
(491, 'DPF0340', '<NAME>', '<NAME>', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(492, 'DPF0341', 'A/24, Siddhivinayak Nagar Co. Op. Hsg. Soc., S. N. Dubey Road, Raval Pada,', 'Dahisar (East), M-68.', '2020-07-31 10:08:29', 0, NULL, 11, 0, '', NULL, 0, '', 0, '', '', ''),
(493, 'DPF0342', '302, 3rd Floor, Plot No 33, Jain Society, Sector 2, ', 'Gandhidham - 370201 ', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(494, 'DPF0343', 'Back to Derasar', '<NAME>', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(495, 'DPF0344', 'Tower D-803, Balaji Garden Co. Op. Soc., Plot No 17, Sector 11, ', '<NAME>, <NAME> - 400 709', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(496, 'DPF0345', '9/5, Shri Sai Home, S-3, Sundar Rajan Street, Venket Narayana Road, T Nagar,', 'Chennai - 600 017', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(497, 'DPF0346', 'Home No 6-14-104, Namdevwada, Opp. Broker Tank Water,', 'Nizamabad- 503 003', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(498, 'DPF0347', '104, Sayunkta, B Apartment, Diamond Point, Opp Kulti Guest House, Shikh Village,', 'Sikandrabad - 500009', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(499, 'DPF0348', '201, Sayunkta, B Apartment, Diamond Point, Opp Kulti Guest House, Shikh Village,', 'Sikandrabad - 500009', '2020-07-31 10:08:29', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(500, 'DPF0349', 'F-603, Shiv Shakti Complex, Near Manav Kalyan Kendra, S.V.Road,', 'Dahisar (East) 400068', '2020-07-31 10:08:29', 0, NULL, 11, 0, '', NULL, 0, '', 0, '', '', ''),
(501, 'DPF0350', '<NAME>', 'Mumbai 400 009', '2020-08-03 05:45:43', 0, NULL, 3, 0, '', NULL, 0, '', 0, '', '', ''),
(503, 'DPF0351', 'Mumbai', NULL, '2020-10-12 04:49:21', 0, NULL, 4, 0, '', NULL, 0, '', 0, '', '', ''),
(504, 'DPF0352', 'Mumbai', NULL, '2020-10-14 16:07:32', 0, NULL, 2, 400002, '4544578789', NULL, 0, '', 0, '', '', ''),
(505, 'DPF0353', 'D/4, Ravi Kiran Co.op. Soc., Cartor Rd. No-3, Borivali ( E), M-66.', NULL, '2020-10-20 14:46:33', 0, NULL, 2, 400013, '28055630', NULL, 0, '', 0, '', '', ''),
(506, 'DPF0354', 'D/4, R<NAME>iran Co.op. Soc., Cartor Rd. No-3, Borivali ( E), M-66.', NULL, '2020-10-20 14:46:42', 0, NULL, 2, 400013, '28055630', NULL, 0, '', 0, '', '', ''),
(507, 'DPF0355', 'D/4, Ravi Kiran Co.op. Soc., Cartor Rd. No-3, Borivali ( E), M-66.', NULL, '2020-10-20 14:46:43', 0, NULL, 2, 400013, '28055630', NULL, 0, '', 0, '', '', ''),
(508, 'DPF0356', 'D/4, Ravi Kiran Co.op. Soc., Cartor Rd. No-3, Borivali ( E), M-66.', NULL, '2020-10-20 14:46:45', 0, NULL, 2, 400013, '28055630', NULL, 0, '', 0, '', '', ''),
(509, 'DPF0357', 'D/4, Ravi Kiran Co.op. Soc., Cartor Rd. No-3, Borivali ( E), M-66.', NULL, '2020-10-20 14:46:52', 0, NULL, 2, 400013, '28055630', NULL, 0, '', 0, '', '', ''),
(510, 'DPF0358', 'D/4, R<NAME>iran Co.op. Soc., Cartor Rd. No-3, Borivali ( E), M-66.', NULL, '2020-10-20 14:46:58', 0, NULL, 2, 400013, '28055630', NULL, 0, '', 0, '', '', ''),
(511, 'DPF0359', 'D/4, Ravi Kiran Co.op. Soc., Cartor Rd. No-3, Borivali ( E), M-66.', NULL, '2020-10-21 05:38:04', 0, NULL, 0, 400, '28055630', NULL, 0, '', 0, '', '', ''),
(512, 'DPF0360', 'Test address', NULL, '2021-02-01 10:35:31', 0, NULL, 3, 673409, '987675645', NULL, 0, '', 0, '', '', ''),
(513, 'DPF0361', 'sion', NULL, '2021-03-07 09:31:47', 0, NULL, 2, 400002, '07376675', NULL, 0, '', 0, '', '', ''),
(514, 'DPF0514', 'Kurla East Nehru Nagar', 'Mumbai 24', '2021-03-12 05:16:02', 0, NULL, 41, 400024, '0987654321', '<EMAIL>', 0, '[{\"address_1\":\"B\\/702, Tulip garden\\nOstwal NAGARI Nalasopara East\",\"landline\":\"8983680321\",\"area_id\":\"1\",\"pincode\":\"401209\"},[{\"id\":\"1451\",\"relation_id\":\"22\"}]]', 0, '', '10/08/2021 16:29 PM', ''),
(515, 'DPF0515', 'D/4, <NAME> Co.op. Soc., Cartor Rd. No-3, Borivali ( E), M-66.', NULL, '2021-03-12 16:27:46', 0, NULL, 0, 0, '28055630', NULL, 0, '', 0, '', '', ''),
(516, 'DPF0516', 'fgef', NULL, '2021-03-13 13:52:48', 0, NULL, 2, 400015, '9004190906', NULL, 0, '', 0, '', '', ''),
(517, 'DPF0517', 'Modern Bldg', 'Cotton Green', '2021-03-13 13:55:48', 0, NULL, 3, 400019, '9664428534', '<EMAIL>', 0, '[{\"address_1\":\"Cotton Green\",\"landline\":\"9004190906\",\"area_id\":\"7\",\"pincode\":\"400033\"},[{\"id\":\"1446\",\"relation_id\":\"22\"},{\"id\":\"1448\",\"relation_id\":\"4\"}]]', 0, '', '', ''),
(518, 'DPF0518', 'cvxcvxcv', NULL, '2021-03-21 08:17:29', 0, NULL, 2, 400015, '9004190906', NULL, 0, '', 0, '', '', ''),
(519, 'DPF0519', 'efgdsvgds', NULL, '2021-03-21 08:20:51', 0, NULL, 3, 400015, '9004190906', NULL, 0, '', 0, '', '', ''),
(520, 'DPF0520', 'gfasjhgasd', NULL, '2021-03-21 09:51:46', 0, NULL, 3, 2000019, '123', NULL, 0, '', 0, '', '', ''),
(521, 'DPF0521', 'jygewfdjhg', NULL, '2021-03-21 09:56:00', 0, NULL, 3, 200014, '98764598', NULL, 0, '', 0, '', '', ''),
(522, 'DPF0522', 'cotton green, null', NULL, '2021-03-25 07:34:23', 0, NULL, 0, 0, '', NULL, 0, '', 0, '', '', ''),
(523, 'DPF0523', '<NAME>', NULL, '2021-06-21 05:49:58', 0, NULL, 1, 400078, '9877844547', NULL, 0, '', 0, '', '', ''),
(524, 'DPF0524', 'cotton green', NULL, '2021-06-21 08:27:47', 0, NULL, 3, 400015, '022417116', NULL, 0, '', 0, '', '', ''),
(525, 'DPF0525', 'cotton green', NULL, '2021-06-21 11:49:40', 0, NULL, 3, 400015, '022417116', NULL, 0, '', 0, '', '', ''),
(526, 'DPF0526', '35/741, <NAME>, Century Bazar', NULL, '2021-06-25 12:44:43', 0, NULL, 57, 400030, '02224734272', '<EMAIL>', 0, '', 0, '', '', ''),
(527, 'DPF0527', 'kahin par toh ek ghar meh', NULL, '2021-06-26 13:17:34', 0, NULL, 3, 400250, NULL, NULL, 0, '', 0, '', '', ''),
(528, 'DPF0528', 'kahin par toh ek ghar meh, mumbai ka', NULL, '2021-06-26 14:43:18', 0, NULL, 5, 400050, NULL, NULL, 0, '', 0, '', '', ''),
(529, 'DPF0529', '<NAME>', NULL, '2021-06-27 16:31:42', 0, NULL, 16, 400011, '95699', NULL, 0, '', 0, '', '', ''),
(530, 'DPF0530', 'dadar', NULL, '2021-07-02 08:51:20', 0, NULL, 1, 400078, '9004190906', '<EMAIL>', 0, '', 0, '', '', ''),
(531, 'DPF0531', 'Ctton green', NULL, '2021-07-03 06:42:11', 0, NULL, 3, 400019, '9664428534', NULL, 0, '', 0, '', '', ''),
(532, 'DPF0532', 'Ctton green', NULL, '2021-07-03 12:45:14', 0, NULL, 3, 400019, '9664428534', NULL, 0, '', 0, '', '', ''),
(533, 'DPF0533', 'Kurla East', NULL, '2021-07-26 09:57:43', 0, NULL, 34, 400071, '0987654321', NULL, 0, '', 0, '', '', ''),
(534, 'DPF0534', 'Kurla East', NULL, '2021-08-09 12:24:48', 0, NULL, 34, 400071, '0987654321', NULL, 0, '', 0, '', '', ''),
(535, 'DPF0535', 'Kurla East', NULL, '2021-08-09 12:29:38', 0, NULL, 34, 400071, '0987654321', NULL, 0, '', 0, '', '', ''),
(536, 'DPF0536', 'Kurla East', NULL, '2021-08-10 10:34:39', 0, NULL, 34, 400071, '0987654321', NULL, 0, '', 0, '', '', ''),
(537, 'DPF0537', 'Kurla East', NULL, '2021-08-10 10:54:36', 0, NULL, 34, 400071, '0987654321', NULL, 0, '', 0, '', '', ''),
(538, 'DPF0538', 'Kurla East', NULL, '2021-08-10 11:00:50', 0, NULL, 34, 400071, '0987654321', NULL, 0, '', 0, '', '', ''),
(539, 'DPF0539', 'fefdsf', NULL, '2021-08-12 08:35:07', 1, '2021-08-23 11:25:57', 1, 400031, '7020491668', '<EMAIL>', 0, '', 0, '', '', ''),
(540, 'DPF0540', 'B-15, 5B, 1st Floor, Royal Industrial Estate,\r\nNaigaum Cross Road, Near Nico hall,\r\nDadar East, Wadala West,\r\nMumbai, Maharashtra 400031', NULL, '2021-08-13 06:26:39', 0, NULL, 1, 400031, '', '<EMAIL>', 0, '', 0, '', '', '');
-- --------------------------------------------------------
--
-- Table structure for table `family_member`
--
CREATE TABLE `family_member` (
`id` int(11) NOT NULL,
`family_id` int(11) DEFAULT NULL,
`member_no` varchar(15) DEFAULT NULL,
`family_no` varchar(10) DEFAULT NULL,
`first_name` varchar(50) DEFAULT NULL,
`second_name` varchar(50) DEFAULT NULL,
`third_name` varchar(50) DEFAULT NULL,
`surname_id` int(11) DEFAULT NULL,
`other_surname_details` varchar(255) DEFAULT NULL,
`regd_id` varchar(20) DEFAULT NULL,
`sex` char(1) DEFAULT NULL,
`blood_id` int(11) DEFAULT NULL,
`relation_id` int(11) DEFAULT NULL,
`other_relation_details` varchar(255) DEFAULT NULL,
`dob` date DEFAULT NULL,
`dod` date DEFAULT NULL,
`marriage_type` int(11) DEFAULT NULL,
`dom` varchar(10) DEFAULT NULL,
`education_id` varchar(100) DEFAULT NULL,
`other_education_details` varchar(255) DEFAULT NULL,
`occupation_id` int(11) DEFAULT NULL,
`other_occupation_details` varchar(255) DEFAULT NULL,
`contact` varchar(50) DEFAULT NULL,
`altcontact` varchar(50) DEFAULT NULL,
`email` varchar(100) DEFAULT NULL,
`live_type` varchar(10) DEFAULT NULL,
`member_type` varchar(10) DEFAULT NULL,
`image` varchar(50) DEFAULT 'noimage.jpg',
`life_insurance` tinyint(1) NOT NULL DEFAULT '0',
`life_insurance_text` varchar(255) DEFAULT NULL,
`medical_insurance` tinyint(1) DEFAULT '0',
`sanjeevni` tinyint(1) NOT NULL DEFAULT '0',
`medical_insurance_text` varchar(255) DEFAULT NULL,
`sports_id` varchar(100) DEFAULT NULL,
`other_sports_details` varchar(255) DEFAULT NULL,
`achivements` varchar(255) NOT NULL,
`dharmik_id` int(11) NOT NULL DEFAULT '0',
`username` varchar(255) DEFAULT NULL,
`password` varchar(255) DEFAULT NULL,
`fm_status` int(11) NOT NULL DEFAULT '0',
`old_value` text NOT NULL,
`new_value` text NOT NULL,
`merge_status` int(1) NOT NULL DEFAULT '0',
`merge_flag` int(1) NOT NULL DEFAULT '0',
`merge_data` longtext NOT NULL,
`merge_user_data` text NOT NULL,
`added_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_on` datetime DEFAULT NULL,
`deleted` int(11) NOT NULL DEFAULT '0',
`delete_reason` text,
`deleted_on` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `family_member`
--
INSERT INTO `family_member` (`id`, `family_id`, `member_no`, `family_no`, `first_name`, `second_name`, `third_name`, `surname_id`, `other_surname_details`, `regd_id`, `sex`, `blood_id`, `relation_id`, `other_relation_details`, `dob`, `dod`, `marriage_type`, `dom`, `education_id`, `other_education_details`, `occupation_id`, `other_occupation_details`, `contact`, `altcontact`, `email`, `live_type`, `member_type`, `image`, `life_insurance`, `life_insurance_text`, `medical_insurance`, `sanjeevni`, `medical_insurance_text`, `sports_id`, `other_sports_details`, `achivements`, `dharmik_id`, `username`, `password`, `fm_status`, `old_value`, `new_value`, `merge_status`, `merge_flag`, `merge_data`, `merge_user_data`, `added_on`, `updated_on`, `deleted`, `delete_reason`, `deleted_on`) VALUES
(11, 148, 'DPF0001-01', 'DPF0001', '<PASSWORD>aben', 'Gangji', 'Premji', 214, NULL, '', 'F', 3, 18, NULL, '1940-07-11', '2021-06-13', 1, NULL, '257', '', 4, NULL, '9876543214', NULL, '', 'Death', NULL, 'DPF0001-01.jpg', 1, 'LIC', 1, 0, 'Medi Claim', '1', NULL, '', 1, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, 'Duplicate', '2020-10-21 07:49:46'),
(12, 148, 'DPF0001-02', 'DPF0001', 'Uday', 'Gangji', 'Premji', 214, NULL, '', 'M', 3, 16, NULL, '1968-08-18', '2020-10-02', 3, '2000-10-02', '259', '', 8, NULL, '9619565790', NULL, '<EMAIL>', 'Death', '', 'DPF0001-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, 'Duplicate', '2020-10-21 07:51:27'),
(13, 519, 'DPF0519-01', 'DPF0519', 'Dhruvil', 'Lalit', 'khimji', 15, '', '', 'M', 3, 22, '', '1990-03-08', NULL, NULL, '2000-10-02', '', NULL, 8, NULL, '545587888', '', '<EMAIL>', 'Death', NULL, 'DPF0001-032.png', 0, '', 1, 0, 'Kotak', NULL, NULL, '', 1, 'seema_uday', '$2a$10$dZZ28wp1VyFBnTvGnzwN6exjA7cy13NS2ffhzsn8qzg5ERs2io6/W', 1, '[{\"first_name\":\"Dhruvil\",\"second_name\":\"LalitJi\",\"third_name\":\"khimji\",\"sex\":\"M\",\"surname_id\":\"15\",\"other_surname_details\":\"\",\"blood_id\":\"3\",\"relation_id\":\"22\",\"other_relation_details\":\"\",\"marriage_type\":\"3\",\"education_id\":\"2\",\"other_education_details\":null,\"occupation_id\":\"8\",\"other_occupation_details\":null,\"dob\":\"1990-03-08\",\"dom\":\"2000-10-02\",\"dod\":null,\"contact\":\"545587888\",\"altcontact\":\"\",\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"1\",\"achivements\":\"\",\"sports_id\":\"0\",\"other_sports_details\":null,\"dharmik_id\":\"1\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"Kotak\",\"sanjeevni\":\"0\",\"life_insurance\":\"0\",\"image\":\"DPF0001-032.png\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', '[{\"first_name\":\"Dhruvil\",\"second_name\":\"LalitJi\",\"third_name\":\"khimji\",\"sex\":\"M\",\"surname_id\":\"15\",\"other_surname_details\":\"\",\"blood_id\":\"3\",\"relation_id\":\"22\",\"other_relation_details\":\"\",\"marriage_type\":\"3\",\"education_id\":\"2\",\"other_education_details\":null,\"occupation_id\":\"8\",\"other_occupation_details\":null,\"dob\":\"1990-03-08\",\"dom\":\"2000-10-02\",\"dod\":null,\"contact\":\"545587888\",\"altcontact\":\"\",\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"1\",\"achivements\":\"\",\"sports_id\":\"0\",\"other_sports_details\":null,\"dharmik_id\":\"1\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"Kotak\",\"sanjeevni\":\"0\",\"life_insurance\":\"0\",\"image\":\"DPF0001-032.png\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', 0, 0, '', '', '2020-07-31 10:08:26', '2021-08-04 11:49:04', 0, NULL, NULL),
(14, 513, 'DPF0361-01', 'DPF0361', 'Zeel', 'Uday', 'Gangji', 214, NULL, '', 'M', 3, 22, NULL, '1995-09-11', '1990-10-02', 2, NULL, '215', '', 0, NULL, '8383924538', NULL, '<EMAIL>', 'Death', '', 'DPF0001-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, 'zeel.uday', '$2a$08$vbw/3RIRrx3qVTiVGAk19.2nR3W5DuHB0zTK27B1Mx0K0ZoHEXoNS', 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(15, 148, 'DPF0001-05', 'DPF0001', 'Zalak', 'Uday', 'Gangji', 214, NULL, '', 'F', 3, 6, NULL, '1997-05-03', NULL, 2, NULL, '214', '', 4, NULL, '9773018329', NULL, '<EMAIL>', 'Live', NULL, 'DPF0001-05.jpg', 0, '', 0, 0, '', '0', NULL, 'uyutyr ytt', 1, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(16, 512, 'DPF0360-01', 'DPF0360', 'Talakshi', 'Premji', 'Tejshi', 214, NULL, '', 'M', 3, 22, NULL, '1944-10-20', NULL, 3, NULL, '216', '', 0, NULL, '9870810770', NULL, '', 'Live', '', 'DPF0002-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, '', NULL),
(17, 512, 'DPF0360-02', 'DPF0360', 'Laxmiben', 'Talakshi', 'Premji', 214, NULL, '', 'F', 5, 28, NULL, '1952-09-19', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0002-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, '', NULL),
(18, 512, 'DPF0360-03', 'DPF0360', 'Nipesh', 'Talakshi', 'Premji', 214, NULL, '', 'M', 3, 25, NULL, '1977-10-12', NULL, 3, NULL, '216', '', 0, NULL, '9870002663', NULL, '', 'Live', '', 'DPF0002-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, '', NULL),
(19, 149, 'DPF0002-04', 'DPF0002', 'Jayshree', 'Nipesh', 'Talakshi', 214, NULL, '', 'F', 5, 35, NULL, '1979-12-23', NULL, 3, NULL, '24', '', 0, NULL, '9892378781', NULL, '', 'Live', '', 'DPF0002-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(20, 149, 'DPF0002-05', 'DPF0002', 'Taneesh', 'Nipesh', 'Talakshi', 214, NULL, '', 'M', 5, 15, NULL, '2002-03-04', NULL, 2, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0002-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(21, 150, 'DPF0003-01', 'DPF0003', 'Vallabhji', 'Hirji', 'Tejshi', 214, NULL, '', 'M', 5, 22, NULL, '1946-04-06', NULL, 3, NULL, '216', '', 0, NULL, '9892042739', NULL, '', 'Live', '', 'DPF0003-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(22, 150, 'DPF0003-02', 'DPF0003', 'Jayvantiben', 'Vallabhji', 'Hirji', 214, NULL, '', 'F', 5, 28, NULL, '1940-01-01', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0003-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(23, 150, 'DPF0003-03', 'DPF0003', 'Piyush', 'Vallabhji', 'Hirji', 214, NULL, '', 'M', 3, 25, NULL, '1975-09-08', NULL, 2, NULL, '214', '', 0, NULL, '9892042739', NULL, '', 'Live', '', 'DPF0003-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(24, 150, 'DPF0003-04', 'DPF0003', 'Vishal', 'Vallabhji', 'Hirji', 214, NULL, '', 'M', 3, 25, NULL, '1978-10-20', NULL, 2, NULL, '216', '', 0, NULL, '9920343125', NULL, '', 'Live', '', 'DPF0003-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(25, 151, 'DPF0004-01', 'DPF0004', 'Mulchand', 'Hirji', 'Tejshi', 214, NULL, '', 'M', 4, 22, NULL, '1953-03-25', NULL, 3, NULL, '216', '', 0, NULL, '9920272161', NULL, '', 'Live', '', 'DPF0004-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(26, 151, 'DPF0004-02', 'DPF0004', 'Ranjanben', 'Mulchand', 'Hirji', 214, NULL, '', 'F', 3, 28, NULL, '1955-06-30', NULL, 3, NULL, '216', '', 0, NULL, '9223844189', NULL, '', 'Live', '', 'DPF0004-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(27, 151, 'DPF0004-03', 'DPF0004', 'Mehul', 'Mulchand', 'Hirji', 214, NULL, '', 'M', 3, 25, NULL, '1979-02-15', NULL, 3, NULL, '216', '', 0, NULL, '9987408041', NULL, '<EMAIL>', 'Live', '', 'DPF0004-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(28, 151, 'DPF0004-04', 'DPF0004', 'Alpa', 'Mehul', 'Mulchand', 214, NULL, '', 'F', 6, 35, NULL, '1983-08-01', NULL, 3, NULL, '216', '', 0, NULL, '9870035884', NULL, '', 'Live', '', 'DPF0004-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(29, 151, 'DPF0004-05', 'DPF0004', 'Hiten', 'Mulchand', 'Hirji', 214, NULL, '', 'M', 3, 25, NULL, '1982-02-08', NULL, 3, NULL, '259', '', 0, NULL, '9967595735', NULL, '<EMAIL>', 'Live', '', 'DPF0004-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(30, 151, 'DPF0004-06', 'DPF0004', 'Priyanka', 'Hiten', 'Mulchand', 214, NULL, '', 'F', 3, 35, NULL, '1986-09-05', NULL, 3, NULL, '259', '', 0, NULL, '9221692616', NULL, '<EMAIL>', 'Live', '', 'DPF0004-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(31, 152, 'DPF0005-01', 'DPF0005', 'Mahendra', 'Hirji', 'Tejshi', 214, NULL, '', 'M', 0, 22, NULL, '1964-10-30', NULL, 3, NULL, '216', '', 0, NULL, '9969783369', NULL, '', 'Live', '', 'DPF0005-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(32, 152, 'DPF0005-02', 'DPF0005', 'Paresha', 'Mahendra', 'Hirji', 214, NULL, '', 'F', 0, 28, NULL, '1966-08-02', NULL, 3, NULL, '216', '', 0, NULL, '9619093072', NULL, '', 'Live', '', 'DPF0005-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(33, 152, 'DPF0005-03', 'DPF0005', 'Ankita', 'Mahendra', 'Hirji', 214, NULL, '', 'F', 0, 6, NULL, '1990-02-28', NULL, 2, NULL, '155', '', 0, NULL, '9773354947', NULL, '<EMAIL>', 'Live', '', 'DPF0005-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(34, 512, 'DPF0360-04', 'DPF0360', 'Ankit', 'Mahendra', 'Hirji', 214, NULL, '', 'M', 0, 5, NULL, '1994-10-20', NULL, 2, NULL, '217', '', 0, NULL, '9969085848', NULL, '', 'Live', '', 'DPF0005-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, '', NULL),
(35, 153, 'DPF0006-01', 'DPF0006', 'Zaverilal', 'Kunvarji', 'Tejshi', 214, NULL, '', 'M', 0, 22, NULL, '1952-09-06', NULL, 2, NULL, '257', '', 7, NULL, '9428080207', NULL, '', 'Live', '', 'DPF0006-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(36, 154, 'DPF0007-01', 'DPF0007', 'Shantilal', 'Kunvarji', 'Tejshi', 214, NULL, '', 'M', 3, 22, NULL, '1956-02-12', NULL, 3, NULL, '261', '', 0, NULL, '7666621878', NULL, '<EMAIL>', 'Live', '', 'DPF0007-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(37, 154, 'DPF0007-02', 'DPF0007', 'Madhumati', 'Shantilal', 'Kunvarji', 214, NULL, '', 'F', 5, 28, NULL, '1966-11-25', NULL, 3, NULL, '262', '', 0, NULL, '9969832598', NULL, '', 'Live', '', 'DPF0007-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(38, 154, 'DPF0007-03', 'DPF0007', 'Hitendra', 'Shantilal', 'Kunvarji', 214, NULL, '', 'M', 3, 25, NULL, '1985-03-03', NULL, 3, NULL, '259', '', 0, NULL, '9664815882', NULL, '<EMAIL>', 'Live', '', 'DPF0007-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(39, 154, 'DPF0007-04', 'DPF0007', 'Charmi', 'Hitendra', 'Shantilal', 214, NULL, '', 'F', 5, 35, NULL, '1989-10-14', NULL, 3, NULL, '216', '', 0, NULL, '9664840578', NULL, '', 'Live', '', 'DPF0007-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(40, 154, 'DPF0007-05', 'DPF0007', 'Hetal', 'Shantilal', 'Kunvarji', 214, NULL, '', 'F', 3, 6, NULL, '1988-06-18', NULL, 2, NULL, '216', '', 0, NULL, '9892769641', NULL, '', 'Live', '', 'DPF0007-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(41, 155, 'DPF0008-01', 'DPF0008', 'Vinod', 'Kunvarji', 'Tejshi', 214, NULL, '', 'M', 4, 22, NULL, '1968-02-08', NULL, 3, NULL, '218', '', 15, NULL, '9821008176', NULL, '<EMAIL>', 'Live', '', 'DPF0008-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(42, 155, 'DPF0008-02', 'DPF0008', 'Poonam', 'Vinod', 'Kunvarji', 214, NULL, '', 'F', 7, 28, NULL, '1971-02-17', NULL, 3, NULL, '214', '', 0, NULL, '9619480707', NULL, '', 'Live', '', 'DPF0008-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(43, 155, 'DPF0008-03', 'DPF0008', 'Tanvi', 'Vinod', 'Kunvarji', 214, NULL, '', 'F', 3, 6, NULL, '2002-01-08', NULL, 2, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0008-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(44, 156, 'DPF0009-01', 'DPF0009', 'Vallabhji', 'Narshi', 'Pachan', 214, NULL, '', 'M', 7, 22, NULL, '1948-11-03', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0009-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(45, 156, 'DPF0009-02', 'DPF0009', 'Laxmiben', 'Vallabhji', 'Narshi', 214, NULL, '', 'F', 5, 28, NULL, '1955-10-05', NULL, 3, NULL, '216', '', 0, NULL, '9819142230', NULL, '', 'Live', '', 'DPF0009-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(46, 156, 'DPF0009-03', 'DPF0009', 'Bhavin', 'Vallabhji', 'Narshi', 214, NULL, '', 'M', 1, 25, NULL, '1980-10-16', NULL, 3, NULL, '219', '', 0, NULL, '9820073724', NULL, '<EMAIL>', 'Live', '', 'DPF0009-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(47, 156, 'DPF0009-04', 'DPF0009', 'Deepa', 'Bhavin', 'Vallabhji', 214, NULL, '', 'F', 3, 35, NULL, '1981-04-05', NULL, 3, NULL, '216', '', 0, NULL, '9323404432', NULL, '', 'Live', '', 'DPF0009-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(48, 157, 'DPF0010-01', 'DPF0010', 'Bhartiben', 'Vasanji', 'Narshi', 214, NULL, '', 'F', 3, 22, NULL, '1962-11-30', NULL, 3, NULL, '216', '', 0, NULL, '9987737807', NULL, '', 'Live', '', 'DPF0010-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(49, 157, 'DPF0010-02', 'DPF0010', 'Chetan', 'Vasanji', 'Narshi', 214, NULL, '', 'M', 3, 25, NULL, '1988-08-30', NULL, 2, NULL, '60', '', 0, NULL, '9920230800', NULL, '<EMAIL>', 'Live', '', 'DPF0010-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(50, 157, 'DPF0010-03', 'DPF0010', 'Dhawal', 'Vasanji', 'Narshi', 214, NULL, '', 'M', 5, 25, NULL, '1990-02-22', NULL, 2, NULL, '220', '', 0, NULL, '9821033095', NULL, '<EMAIL>', 'Live', '', 'DPF0010-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(51, 158, 'DPF0011-01', 'DPF0011', 'Jethalal', 'Palan', 'Pachan', 214, NULL, '', 'M', 7, 22, NULL, '1936-02-17', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0011-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(52, 158, 'DPF0011-02', 'DPF0011', 'Sunderben', 'Jethalal', 'Palan', 214, NULL, '', 'F', 3, 28, NULL, '1938-11-24', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0011-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(53, 158, 'DPF0011-03', 'DPF0011', 'Paresh', 'Jethalal', 'Palan', 214, NULL, '', 'M', 7, 25, NULL, '1966-10-13', NULL, 3, NULL, '261', '', 0, NULL, '9869007745', NULL, '', 'Live', '', 'DPF0011-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(54, 158, 'DPF0011-04', 'DPF0011', 'Kalpana', 'Paresh', 'Jethalal', 214, NULL, '', 'F', 0, 35, NULL, '1969-09-05', NULL, 3, NULL, '216', '', 0, NULL, '9870215559', NULL, '', 'Live', '', 'DPF0011-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(55, 158, 'DPF0011-05', 'DPF0011', 'Bhavik', 'Paresh', 'Jethalal', 214, NULL, '', 'M', 8, 15, NULL, '1999-06-29', NULL, 2, NULL, '262', '', 0, NULL, '9664056153', NULL, '', 'Live', '', 'DPF0011-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(56, 159, 'DPF0012-01', 'DPF0012', 'Arvind', 'Jethalal', 'Palan', 214, NULL, '', 'M', 7, 22, NULL, '1960-12-27', NULL, 3, NULL, '216', '', 0, NULL, '8286030124', NULL, '<EMAIL>', 'Live', '', 'DPF0012-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(57, 159, 'DPF0012-02', 'DPF0012', 'Jagruti', 'Arvind', 'Jethalal', 214, NULL, '', 'F', 5, 28, NULL, '1967-12-05', NULL, 3, NULL, '221', '', 0, NULL, '8286030125', NULL, '<EMAIL>', 'Live', '', 'DPF0012-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(58, 159, 'DPF0012-03', 'DPF0012', 'Zarna', 'Arvind', 'Jethalal', 214, NULL, '', 'F', 3, 6, NULL, '1993-06-14', NULL, 2, NULL, '222', '', 0, NULL, '8286030126', NULL, '<EMAIL>', 'Live', '', 'DPF0012-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(59, 159, 'DPF0012-04', 'DPF0012', 'Jeel', 'Arvind', 'Jethalal', 214, NULL, '', 'F', 1, 6, NULL, '1994-09-16', NULL, 2, NULL, '223', '', 0, NULL, '8286030127', NULL, '<EMAIL>', 'Live', '', 'DPF0012-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(60, 160, 'DPF0013-01', 'DPF0013', 'Narendra', 'Jethalal', 'Palan', 214, NULL, '', 'M', 1, 22, NULL, '1962-10-05', NULL, 3, NULL, '216', '', 8, NULL, '9870904059', NULL, '', 'Live', '', 'DPF0013-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(61, 160, 'DPF0013-02', 'DPF0013', 'Manisha', 'Narendra', 'Jethalal', 214, NULL, '', 'F', 3, 28, NULL, '1973-02-17', NULL, 3, NULL, '216', '', 0, NULL, '9870904056', NULL, '<EMAIL>', 'Live', '', 'DPF0013-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(62, 160, 'DPF0013-03', 'DPF0013', 'Khushboo', 'Narendra', 'Jethalal', 214, NULL, '', 'F', 7, 6, NULL, '1994-06-26', NULL, 2, NULL, '224', '', 0, NULL, '9870904053', NULL, '<EMAIL>', 'Live', '', 'DPF0013-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(63, 160, 'DPF0013-04', 'DPF0013', 'Harshal', 'Narendra', 'Jethalal', 214, NULL, '', 'M', 5, 25, NULL, '1996-06-19', NULL, 2, NULL, '225', '', 0, NULL, '9870904054', NULL, '<EMAIL>', 'Live', '', 'DPF0013-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(64, 161, 'DPF0014-01', 'DPF0014', 'Praful', 'Jethalal', 'Palan', 214, NULL, '', 'M', 7, 22, NULL, '1964-08-11', NULL, 3, NULL, '261', '', 0, NULL, '9869149140', NULL, '', 'Live', '', 'DPF0014-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(65, 161, 'DPF0014-02', 'DPF0014', 'Rashmi', 'Praful', 'Jethalal', 214, NULL, '', 'F', 1, 28, NULL, '1968-01-22', NULL, 3, NULL, '216', '', 0, NULL, '9321022016', NULL, '', 'Live', '', 'DPF0014-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(66, 162, 'DPF0015-01', 'DPF0015', 'Bhogilal', 'Nanji', 'Devji', 214, NULL, '', 'M', 5, 22, NULL, '1941-08-05', NULL, 3, NULL, '214', '', 7, NULL, '9767424698', NULL, '', 'Live', '', 'DPF0015-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(67, 162, 'DPF0015-02', 'DPF0015', 'Shantaben', 'Bhogilal', 'Nanji', 214, NULL, '', 'F', 5, 28, NULL, '1944-02-24', NULL, 3, NULL, '214', '', 0, NULL, '9370409191', NULL, '', 'Live', '', 'DPF0015-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(68, 162, 'DPF0015-03', 'DPF0015', 'Raju', 'Bhogilal', 'Nanji', 214, NULL, '', 'M', 5, 25, NULL, '1972-04-28', NULL, 3, NULL, '279', '', 0, NULL, '9765405944', NULL, '<EMAIL>', 'Live', '', 'DPF0015-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(69, 162, 'DPF0015-04', 'DPF0015', 'Chhaya', 'Raju', 'Bhogilal', 214, NULL, '', 'F', 5, 35, NULL, '1976-07-25', NULL, 3, NULL, '259', '', 0, NULL, '9209736800', NULL, '', 'Live', '', 'DPF0015-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(70, 162, 'DPF0015-05', 'DPF0015', 'Disha', 'Raju', 'Bhogilal', 214, NULL, '', 'F', 5, 10, NULL, '2000-03-08', NULL, 2, NULL, '262', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0015-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(71, 163, 'DPF0016-01', 'DPF0016', 'Kishor', 'Nanji', 'Devji', 214, NULL, '', 'M', 5, 22, NULL, '1948-11-20', NULL, 3, NULL, '60', '', 0, NULL, '9860458021', NULL, '', 'Live', '', 'DPF0016-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(72, 163, 'DPF0016-02', 'DPF0016', 'Hansaben', 'Kishor', 'Nanji', 214, NULL, '', 'F', 5, 28, NULL, '1952-12-06', NULL, 3, NULL, '214', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0016-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(73, 163, 'DPF0016-03', 'DPF0016', 'Parin', 'Kishor', 'Nanji', 214, NULL, '', 'M', 5, 25, NULL, '1981-02-01', NULL, 2, NULL, '116', '', 0, NULL, '9561884914', NULL, '', 'Live', '', 'DPF0016-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(74, 163, 'DPF0016-04', 'DPF0016', 'Sachin', 'Kishor', 'Nanji', 214, NULL, '', 'M', 5, 25, NULL, '1976-10-01', NULL, 7, NULL, '280', '', 0, NULL, '', NULL, '', '', '', '', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(75, 164, 'DPF0017-01', 'DPF0017', 'Girish', 'Nanji', 'Devji', 214, NULL, '', 'M', 0, 22, NULL, '1955-02-22', NULL, 3, NULL, '214', '', 0, NULL, '9320070520', NULL, '', 'Live', '', 'DPF0017-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(76, 164, 'DPF0017-02', 'DPF0017', 'Lata', 'Girish', 'Nanji', 214, NULL, '', 'F', 0, 28, NULL, '1958-11-04', NULL, 3, NULL, '24', '', 0, NULL, '9833940520', NULL, '<EMAIL>', 'Live', '', 'DPF0017-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(77, 164, 'DPF0017-03', 'DPF0017', 'Sneh', 'Girish', 'Nanji', 214, NULL, '', 'F', 0, 6, NULL, '1983-03-03', NULL, 2, NULL, '148', '', 0, NULL, '', NULL, '<EMAIL>', 'Live', '', 'DPF0017-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(78, 164, 'DPF0017-04', 'DPF0017', 'Viraj', 'Girish', 'Nanji', 214, NULL, '', 'M', 0, 25, NULL, '1992-02-01', NULL, 2, NULL, '281', '', 0, NULL, '', NULL, '<EMAIL>', 'Live', '', 'DPF0017-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(79, 165, 'DPF0018-01', 'DPF0018', 'Nalin', 'Ramji', 'Devji', 214, NULL, '', 'M', 1, 22, NULL, '1944-06-07', NULL, 3, NULL, '259', '', 7, NULL, '9890292662', NULL, '', 'Live', '', 'DPF0018-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(80, 165, 'DPF0018-02', 'DPF0018', 'Rashmiben', 'Nalin', 'Ramji', 214, NULL, '', 'F', 0, 28, NULL, '1947-11-12', NULL, 3, NULL, '24', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0018-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(81, 166, 'DPF0019-01', 'DPF0019', 'Kishor', 'Popatla', 'Lalji', 214, NULL, '', 'M', 3, 22, NULL, '1962-05-27', NULL, 3, NULL, '261', '', 0, NULL, '9821785326', NULL, '', 'Live', '', 'DPF0019-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(82, 166, 'DPF0019-02', 'DPF0019', 'Meena', 'Kishor', 'Popatla', 214, NULL, '', 'F', 4, 28, NULL, '1969-08-23', NULL, 3, NULL, '216', '', 0, NULL, '8108910441', NULL, '', 'Live', '', 'DPF0019-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(83, 166, 'DPF0019-03', 'DPF0019', 'Vinkit', 'Kishor', 'Popatla', 214, NULL, '', 'M', 3, 25, NULL, '1991-04-18', NULL, 2, NULL, '214', '', 0, NULL, '9004181215', NULL, '', 'Live', '', 'DPF0019-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(84, 166, 'DPF0019-04', 'DPF0019', 'Vinit', 'Kishor', 'Popatla', 214, NULL, '', 'M', 3, 25, NULL, '1994-04-15', NULL, 2, NULL, '226', '', 0, NULL, '8097489574', NULL, '', 'Live', '', 'DPF0019-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(85, 167, 'DPF0020-01', 'DPF0020', 'Rajesh', 'Popatla', 'Lalji', 214, NULL, '', 'F', 6, 22, NULL, '1965-01-26', NULL, 3, NULL, '12', '', 0, NULL, '9867387067', NULL, '', 'Live', '', 'DPF0020-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(86, 167, 'DPF0020-02', 'DPF0020', 'Raksha', 'Rajesh', 'Popatla', 214, NULL, '', 'M', 5, 28, NULL, '1970-04-21', NULL, 3, NULL, '261', '', 0, NULL, '8879086377', NULL, '', 'Live', '', 'DPF0020-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(87, 167, 'DPF0020-03', 'DPF0020', 'Bhumi', 'Rajesh', 'Popatla', 214, NULL, '', 'M', 6, 6, NULL, '2004-11-16', NULL, 2, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0020-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(88, 168, 'DPF0021-01', 'DPF0021', 'Kalyanji', 'Lalji', 'Devraj', 214, NULL, '', 'M', 3, 22, NULL, '1946-07-25', NULL, 3, NULL, '216', '', 0, NULL, '8097135671', NULL, '<EMAIL>', 'Live', '', 'DPF0021-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(89, 168, 'DPF0021-02', 'DPF0021', 'Nirmalaben', 'Kalyanji', 'Lalji', 214, NULL, '', 'F', 6, 28, NULL, '1948-05-13', NULL, 3, NULL, '256', '', 0, NULL, '8108645216', NULL, '', 'Live', '', 'DPF0021-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(90, 168, 'DPF0021-03', 'DPF0021', 'Vaishali', 'Kalyanji', 'Lalji', 214, NULL, '', 'F', 3, 6, NULL, '1976-02-09', NULL, 2, NULL, '216', '', 0, NULL, '9867575382', NULL, '', 'Live', '', 'DPF0021-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(91, 169, 'DPF0022-01', 'DPF0022', 'Mehul', 'Kalyanji', 'Lalji', 214, NULL, '', 'M', 0, 22, NULL, '1977-04-29', NULL, 3, NULL, '216', '', 0, NULL, '9967896151', NULL, '', 'Live', '', 'DPF0022-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(92, 169, 'DPF0022-02', 'DPF0022', 'Sarika', 'Mehul', 'Kalyanji', 214, NULL, '', 'F', 0, 28, NULL, '1978-04-04', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0022-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(93, 169, 'DPF0022-03', 'DPF0022', 'Yamini', 'Mehul', 'Kalyanji', 214, NULL, '', 'F', 0, 6, NULL, '2005-01-08', NULL, 2, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0022-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(94, 170, 'DPF0023-01', 'DPF0023', 'Mavji', 'Murji', 'Devji', 27, NULL, '', 'M', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '256', '', 0, NULL, '9909220070', NULL, '', 'Live', '', 'DPF0023-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(95, 170, 'DPF0023-02', 'DPF0023', 'Nirmalaben', 'Mavji', 'Murji', 27, NULL, '', 'F', 0, 28, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0023-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(96, 171, 'DPF0024-01', 'DPF0024', 'Dinesh', 'Mavji', 'Murji', 27, NULL, '', 'M', 5, 22, NULL, '1956-04-10', NULL, 3, NULL, '216', '', 0, NULL, '9824302304', NULL, '', 'Live', '', 'DPF0024-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(97, 171, 'DPF0024-02', 'DPF0024', 'Jayaben', 'Dinesh', 'Mavji', 27, NULL, '', 'F', 5, 28, NULL, '1956-12-16', NULL, 3, NULL, '216', '', 0, NULL, '9904425654', NULL, '', 'Live', '', 'DPF0024-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(98, 171, 'DPF0024-03', 'DPF0024', 'Fenil', 'Dinesh', 'Mavji', 27, NULL, '', 'M', 6, 25, NULL, '1985-01-19', NULL, 3, NULL, '227', '', 0, NULL, '9033172368', NULL, '<EMAIL>', 'Live', '', 'DPF0024-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(99, 171, 'DPF0024-04', 'DPF0024', 'Kavita', 'Fenil', 'Dinesh', 27, NULL, '', 'F', 5, 35, NULL, '1987-05-04', NULL, 3, NULL, '214', '', 0, NULL, '7405292589', NULL, '', 'Live', '', 'DPF0024-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(100, 172, 'DPF0025-01', 'DPF0025', 'Dhiraj', 'Mavji', 'Murji', 27, NULL, '', 'M', 6, 22, NULL, '1961-06-14', NULL, 3, NULL, '216', '', 0, NULL, '9821045961', NULL, '<EMAIL>', 'Live', '', 'DPF0025-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, 'dhirajchheda ', '$2a$10$6xt7csIqKXE/q208vKLlFusL2oCBVGGNQJBpyPkiLcGcKYGNSw5dO', 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(101, 172, 'DPF0025-02', 'DPF0025', 'Bhavna', 'Dhiraj', 'Mavji', 27, NULL, '', 'F', 3, 28, NULL, '1965-03-25', NULL, 3, NULL, '259', '', 0, NULL, '9322104834', NULL, '<EMAIL>', 'Live', '', 'DPF0025-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(102, 172, 'DPF0025-03', 'DPF0025', 'Pankit', 'Dhiraj', 'Mavji', 27, NULL, '', 'M', 5, 25, NULL, '1989-02-23', NULL, 2, NULL, '228', '', 0, NULL, '9819210461', NULL, '<EMAIL>', 'Live', '', 'DPF0025-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(103, 172, 'DPF0025-04', 'DPF0025', 'Shreni', 'Dhiraj', 'Mavji', 27, NULL, '', 'F', 3, 6, NULL, '1992-08-15', NULL, 2, NULL, '56', '', 0, NULL, '9769161416', NULL, '<EMAIL>', 'Live', '', 'DPF0025-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(104, 173, 'DPF0026-01', 'DPF0026', 'Bipin', 'Mavji', 'Murji', 27, NULL, '', 'M', 5, 22, NULL, '1965-07-05', NULL, 3, NULL, '216', '', 0, NULL, '9323111096', NULL, '', 'Live', '', 'DPF0026-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(105, 173, 'DPF0026-02', 'DPF0026', 'Chetna', 'Bipin', 'Mavji', 27, NULL, '', 'F', 3, 28, NULL, '1965-04-30', NULL, 3, NULL, '259', '', 0, NULL, '8080023015', NULL, '', 'Live', '', 'DPF0026-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(106, 173, 'DPF0026-03', 'DPF0026', 'Smit', 'Bipin', 'Mavji', 27, NULL, '', 'M', 3, 25, NULL, '1993-01-26', NULL, 2, NULL, '281', '', 0, NULL, '7666693109', NULL, '<EMAIL>', 'Live', '', 'DPF0026-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(107, 173, 'DPF0026-04', 'DPF0026', 'Shruti', 'Bipin', 'Mavji', 27, NULL, '', 'F', 3, 6, NULL, '1995-02-02', NULL, 2, NULL, '229', '', 0, NULL, '8080037453', NULL, '<EMAIL>', 'Live', '', 'DPF0026-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(108, 174, 'DPF0027-01', 'DPF0027', 'Ketan', 'Mavji', 'Murji', 27, NULL, '', 'M', 5, 22, NULL, '1971-11-07', NULL, 3, NULL, '214', '', 0, NULL, '9819747711', NULL, '<EMAIL>', 'Live', '', 'DPF0027-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(109, 174, 'DPF0027-02', 'DPF0027', 'Vandana', 'Ketan', 'Mavji', 27, NULL, '', 'F', 5, 28, NULL, '1971-07-19', NULL, 3, NULL, '230', '', 0, NULL, '9819189270', NULL, '', 'Live', '', 'DPF0027-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(110, 174, 'DPF0027-03', 'DPF0027', 'Jeet', 'Ketan', 'Mavji', 27, NULL, '', 'M', 5, 25, NULL, '1994-07-22', NULL, 2, NULL, '231', '', 0, NULL, '8080979993', NULL, '<EMAIL>', 'Live', '', 'DPF0027-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(111, 175, 'DPF0028-01', 'DPF0028', 'Nemji', 'Jivraj', 'Murji', 27, NULL, '', 'M', 5, 22, NULL, '1944-08-26', NULL, 3, NULL, '216', '', 0, NULL, '9892425877', NULL, '<EMAIL>', 'Live', '', 'DPF0028-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(112, 175, 'DPF0028-02', 'DPF0028', 'Vasantiben', 'Nemji', 'Jivraj', 27, NULL, '', 'F', 7, 28, NULL, '1948-07-12', NULL, 3, NULL, '232', '', 0, NULL, '9004134475', NULL, '<EMAIL>', 'Live', '', 'DPF0028-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(113, 176, 'DPF0029-01', 'DPF0029', 'Chunilal', 'Hirji', 'Pasu', 27, NULL, '', 'M', 3, 22, NULL, '1949-02-06', NULL, 3, NULL, '257', '', 0, NULL, '8080232334', NULL, '', 'Live', '', 'DPF0029-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(114, 176, 'DPF0029-02', 'DPF0029', 'Hemlataben', 'Chunilal', 'Hirji', 27, NULL, '', 'F', 5, 28, NULL, '1957-06-04', NULL, 3, NULL, '257', '', 0, NULL, '8080232334', NULL, '', 'Live', '', 'DPF0029-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(115, 176, 'DPF0029-03', 'DPF0029', 'Ritesh', 'Chunilal', 'Hirji', 27, NULL, '', 'M', 5, 25, NULL, '1981-09-04', NULL, 3, NULL, '214', '', 0, NULL, '9820461362', NULL, '<EMAIL>', 'Live', '', 'DPF0029-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(116, 176, 'DPF0029-04', 'DPF0029', 'Krina', 'Ritesh', 'Chunilal', 27, NULL, '', 'F', 5, 35, NULL, '1984-07-27', NULL, 3, NULL, '216', '', 0, NULL, '9773466016', NULL, '', 'Live', '', 'DPF0029-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(117, 176, 'DPF0029-05', 'DPF0029', 'Dhiya', 'Ritesh', 'Chunilal', 27, NULL, '', 'F', 0, 10, NULL, '2011-08-10', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0029-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(118, 176, 'DPF0029-06', 'DPF0029', 'Mithaben', 'Hirji', 'Pasu', 27, NULL, '', 'F', 3, 17, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '9537502096', NULL, '', 'Live', '', 'DPF0029-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(119, 177, 'DPF0030-01', 'DPF0030', 'Uttam', 'Chunilal', 'Hirji', 27, NULL, '', 'M', 5, 22, NULL, '1977-01-02', NULL, 3, NULL, '256', '', 0, NULL, '9323124313', NULL, '', 'Live', '', 'DPF0030-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(120, 177, 'DPF0030-02', 'DPF0030', 'Manisha', 'Uttam', 'Chunilal', 27, NULL, '', 'F', 5, 28, NULL, '1984-06-14', NULL, 3, NULL, '256', '', 0, NULL, '8767208565', NULL, '', 'Live', '', 'DPF0030-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(121, 177, 'DPF0030-03', 'DPF0030', 'Maitri', 'Uttam', 'Chunilal', 27, NULL, '', 'F', 5, 6, NULL, '2002-08-10', NULL, 2, NULL, '282', '', 0, NULL, '9323867148', NULL, '', 'Live', '', 'DPF0030-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(122, 178, 'DPF0031-01', 'DPF0031', 'Vanitaben', 'Nanji', 'Hirji', 27, NULL, '', 'F', 3, 22, NULL, '1962-07-21', NULL, 3, NULL, '256', '', 0, NULL, '9699524989', NULL, '', 'Live', '', 'DPF0031-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(123, 178, 'DPF0031-02', 'DPF0031', 'Khushal', 'Nanji', 'Hirji', 27, NULL, '', 'M', 3, 25, NULL, '1980-11-14', NULL, 3, NULL, '216', '', 0, NULL, '9323479759', NULL, '', 'Live', '', 'DPF0031-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(124, 178, 'DPF0031-03', 'DPF0031', 'Nehal', 'Khushal', 'Nanji', 27, NULL, '', 'F', 5, 35, NULL, '1986-06-21', NULL, 3, NULL, '214', '', 0, NULL, '9773547174', NULL, '', 'Live', '', 'DPF0031-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(125, 178, 'DPF0031-04', 'DPF0031', 'Hasti', 'Khushal', 'Nanji', 27, NULL, '', 'F', 3, 10, NULL, '2011-07-30', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0031-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(126, 179, 'DPF0032-01', 'DPF0032', 'Jayesh', 'Nanji', 'Hirji', 27, NULL, '', 'M', 3, 22, NULL, '1995-07-30', NULL, 3, NULL, '216', '', 0, NULL, '9320940725', NULL, '', 'Live', '', 'DPF0032-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(127, 179, 'DPF0032-02', 'DPF0032', 'Bhavini', 'Jayesh', 'Nanji', 27, NULL, '', 'F', 5, 28, NULL, '1980-06-01', NULL, 3, NULL, '216', '', 0, NULL, '9766661038', NULL, '', 'Live', '', 'DPF0032-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(128, 179, 'DPF0032-03', 'DPF0032', 'Rushabh', 'Jayesh', 'Nanji', 27, NULL, '', 'M', 3, 25, NULL, '1999-05-01', NULL, 2, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0032-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(129, 180, 'DPF0033-01', 'DPF0033', 'Dhanji', 'Shivji', 'Pasu', 27, NULL, '', 'M', 5, 22, NULL, '1952-07-05', NULL, 3, NULL, '256', '', 0, NULL, '9322616272', NULL, '', 'Live', '', 'DPF0033-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(130, 180, 'DPF0033-02', 'DPF0033', 'Manish', 'Dhanji', 'Shivji', 27, NULL, '', 'M', 5, 25, NULL, '1988-11-03', NULL, 2, NULL, '214', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0033-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(131, 180, 'DPF0033-03', 'DPF0033', 'Beena', 'Dhanji', 'Shivji', 27, NULL, '', 'F', 5, 6, NULL, '1986-06-09', NULL, 2, NULL, '259', '', 0, NULL, '', NULL, '<EMAIL>', 'Live', '', 'DPF0033-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(132, 180, 'DPF0033-04', 'DPF0033', 'Ankita', 'Dhanji', 'Shivji', 27, NULL, '', 'F', 5, 6, NULL, '1990-12-30', NULL, 2, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0033-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(133, 181, 'DPF0034-01', 'DPF0034', 'Naresh', 'Damji', 'Tejpar', 27, NULL, '', 'M', 6, 22, NULL, '1969-07-24', NULL, 3, NULL, '214', '', 0, NULL, '9426019533', NULL, '', 'Live', '', 'DPF0034-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(134, 181, 'DPF0034-02', 'DPF0034', 'Rajul', 'Naresh', 'Damji', 27, NULL, '', 'F', 1, 28, NULL, '1973-08-05', NULL, 3, NULL, '216', '', 0, NULL, '9099606464', NULL, '', 'Live', '', 'DPF0034-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(135, 181, 'DPF0034-03', 'DPF0034', 'Akshay', 'Naresh', 'Damji', 27, NULL, '', 'M', 1, 25, NULL, '1996-06-12', NULL, 2, NULL, '214', '', 0, NULL, '9409332022', NULL, '<EMAIL>', 'Live', '', 'DPF0034-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(136, 181, 'DPF0034-04', 'DPF0034', 'Yukti', 'Naresh', 'Damji', 27, NULL, '', 'F', 1, 6, NULL, '2000-02-26', NULL, 2, NULL, '262', '', 0, NULL, '9327237895', NULL, '', 'Live', '', 'DPF0034-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(137, 181, 'DPF0034-05', 'DPF0034', 'Bhanuben', 'Damji', 'Tejpar', 27, NULL, '', 'F', 5, 17, NULL, '1936-08-02', NULL, 3, NULL, '282', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0034-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(138, 182, 'DPF0035-01', 'DPF0035', 'Hemkunvarben', 'Nanji', 'Tejpar', 27, NULL, '', 'M', 5, 22, NULL, '1942-03-02', NULL, 3, NULL, '216', '', 15, NULL, '9892098372', NULL, '', 'Live', '', 'DPF0035-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(139, 182, 'DPF0035-02', 'DPF0035', 'Jitendra', 'Nanji', 'Tejpar', 27, NULL, '', 'F', 5, 25, NULL, '1972-09-18', NULL, 2, NULL, '259', '', 0, NULL, '7303142638', NULL, '', 'Live', '', 'DPF0035-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(140, 183, 'DPF0036-01', 'DPF0036', 'Tushar', 'Nanji', 'Tejpar', 27, NULL, '', 'M', 5, 22, NULL, '1974-11-13', NULL, 3, NULL, '226', '', 16, NULL, '9322646401', NULL, '', 'Live', '', 'DPF0036-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(141, 183, 'DPF0036-02', 'DPF0036', 'Pinki', 'Tushar', 'Nanji', 27, NULL, '', 'F', 1, 28, NULL, '1978-05-19', NULL, 3, NULL, '281', '', 0, NULL, '9324722439', NULL, '', 'Live', '', 'DPF0036-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(142, 183, 'DPF0036-03', 'DPF0036', 'Priyam', 'Tushar', 'Nanji', 27, NULL, '', 'M', 5, 25, NULL, '2011-12-06', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0036-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(143, 184, 'DPF0037-01', 'DPF0037', 'Meena', 'Laxmichand', 'Damji', 27, NULL, '', 'F', 0, 22, NULL, '1969-01-09', NULL, 3, NULL, '230', '', 0, NULL, '8097363002', NULL, '', 'Live', '', 'DPF0037-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(144, 184, 'DPF0037-02', 'DPF0037', 'Nainil', 'Laxmichand', 'Damji', 27, NULL, '', 'M', 0, 25, NULL, '1992-02-25', NULL, 2, NULL, '233', '', 0, NULL, '9702355553', NULL, '<EMAIL>', 'Live', '', 'DPF0037-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(145, 184, 'DPF0037-03', 'DPF0037', 'Preet', 'Laxmichand', 'Damji', 27, NULL, '', 'M', 0, 25, NULL, '1996-01-12', NULL, 2, NULL, '234', '', 0, NULL, '9892733674', NULL, '<EMAIL>', 'Live', '', 'DPF0037-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(146, 185, 'DPF0038-01', 'DPF0038', 'Amrut', 'Damji', 'Rayshi', 27, NULL, '', 'M', 5, 22, NULL, '1969-01-03', NULL, 3, NULL, '216', '', 0, NULL, '9821258455', NULL, '', 'Live', '', 'DPF0038-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(147, 185, 'DPF0038-02', 'DPF0038', 'Kapila', 'Amrut', 'Damji', 27, NULL, '', 'F', 1, 28, NULL, '1971-07-21', NULL, 3, NULL, '214', '', 0, NULL, '9870031484', NULL, '', 'Live', '', 'DPF0038-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(148, 185, 'DPF0038-03', 'DPF0038', 'Harsh', 'Amrut', 'Damji', 27, NULL, '', 'M', 1, 25, NULL, '1992-07-29', NULL, 2, NULL, '283', '', 0, NULL, '9892464668', NULL, '<EMAIL>', 'Live', '', 'DPF0038-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:26', NULL, 0, NULL, NULL),
(149, 186, 'DPF0039-01', 'DPF0039', 'Bharat', 'Damji', 'Rayshi', 27, NULL, '', 'M', 0, 22, NULL, '1974-12-15', NULL, 3, NULL, '216', '', 0, NULL, '9892644674', NULL, '', 'Live', '', 'DPF0039-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(150, 186, 'DPF0039-02', 'DPF0039', 'Sheetal', 'Bharat', 'Damji', 27, NULL, '', 'F', 3, 28, NULL, '1978-03-08', NULL, 3, NULL, '259', '', 0, NULL, '9821415120', NULL, '<EMAIL>', 'Live', '', 'DPF0039-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(151, 187, 'DPF0040-01', 'DPF0040', 'Nirmalaben', 'Kheraj', 'Nathu', 46, NULL, '', 'F', 5, 22, NULL, '1940-03-14', NULL, 3, NULL, '258', '', 0, NULL, '8286264855', NULL, '', 'Live', '', 'DPF0040-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(152, 187, 'DPF0040-02', 'DPF0040', 'Mukesh', 'Kheraj', 'Nathu', 46, NULL, '', 'M', 3, 25, NULL, '1970-10-27', NULL, 3, NULL, '114', '', 0, NULL, '9892313499', NULL, '', 'Live', '', 'DPF0040-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(153, 187, 'DPF0040-03', 'DPF0040', 'Neeta', 'Mukesh', 'Kheraj', 46, NULL, '', 'F', 1, 35, NULL, '1972-04-06', NULL, 3, NULL, '225', '', 0, NULL, '9619575424', NULL, '', 'Live', '', 'DPF0040-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(154, 187, 'DPF0040-04', 'DPF0040', 'Smit', 'Mukesh', 'Kheraj', 46, NULL, '', 'M', 5, 15, NULL, '1996-01-22', NULL, 2, NULL, '235', '', 0, NULL, '8898212254', NULL, '<EMAIL>', 'Live', '', 'DPF0040-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL);
INSERT INTO `family_member` (`id`, `family_id`, `member_no`, `family_no`, `first_name`, `second_name`, `third_name`, `surname_id`, `other_surname_details`, `regd_id`, `sex`, `blood_id`, `relation_id`, `other_relation_details`, `dob`, `dod`, `marriage_type`, `dom`, `education_id`, `other_education_details`, `occupation_id`, `other_occupation_details`, `contact`, `altcontact`, `email`, `live_type`, `member_type`, `image`, `life_insurance`, `life_insurance_text`, `medical_insurance`, `sanjeevni`, `medical_insurance_text`, `sports_id`, `other_sports_details`, `achivements`, `dharmik_id`, `username`, `password`, `fm_status`, `old_value`, `new_value`, `merge_status`, `merge_flag`, `merge_data`, `merge_user_data`, `added_on`, `updated_on`, `deleted`, `delete_reason`, `deleted_on`) VALUES
(155, 187, 'DPF0040-05', 'DPF0040', 'Vidhi', 'Mukesh', 'Kheraj', 46, NULL, '', 'F', 7, 10, NULL, '0000-00-00', NULL, 2, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0040-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(156, 187, 'DPF0040-06', 'DPF0040', 'Chanchalben', 'Nathu', '', 46, NULL, '', 'F', 5, 36, NULL, '0000-00-00', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0040-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(157, 188, 'DPF0041-01', 'DPF0041', 'Ashwin', 'Kheraj', 'Nathu', 46, NULL, '', 'M', 5, 22, NULL, '1964-08-28', NULL, 3, NULL, '214', '', 0, NULL, '9892543458', NULL, '', 'Live', '', 'DPF0041-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(158, 188, 'DPF0041-02', 'DPF0041', 'Taruna', 'Ashwin', 'Kheraj', 46, NULL, '', 'F', 5, 28, NULL, '1968-07-06', NULL, 3, NULL, '216', '', 0, NULL, '9702366633', NULL, '', 'Live', '', 'DPF0041-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(159, 188, 'DPF0041-03', 'DPF0041', 'Kunal', 'Ashwin', 'Kheraj', 46, NULL, '', 'M', 5, 25, NULL, '1988-07-13', NULL, 2, NULL, '202', '', 0, NULL, '9769975592', NULL, '<EMAIL>', 'Live', '', 'DPF0041-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(160, 188, 'DPF0041-04', 'DPF0041', 'Niral', 'Ashwin', 'Kheraj', 46, NULL, '', 'M', 3, 25, NULL, '1991-06-25', NULL, 2, NULL, '259', '', 0, NULL, '9768508552', NULL, '<EMAIL>', 'Live', '', 'DPF0041-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(161, 189, 'DPF0042-01', 'DPF0042', 'Khimji', 'Nathu', 'Vajpar', 46, NULL, '', 'M', 5, 22, NULL, '1940-08-10', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0042-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(162, 189, 'DPF0042-02', 'DPF0042', 'Velbai', 'Khimji', 'Nathu', 46, NULL, '', 'F', 5, 28, NULL, '1947-01-06', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0042-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(163, 189, 'DPF0042-03', 'DPF0042', 'Jayant', 'Khimji', 'Nathu', 46, NULL, '', 'M', 5, 25, NULL, '1965-09-07', NULL, 3, NULL, '71', '', 0, NULL, '9820145379', NULL, '<EMAIL>', 'Live', '', 'DPF0042-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(164, 189, 'DPF0042-04', 'DPF0042', 'Nita', 'Jayant', 'Khimji', 46, NULL, '', 'F', 1, 35, NULL, '1968-07-07', NULL, 3, NULL, '60', '', 0, NULL, '9819599519', NULL, '<EMAIL>', 'Live', '', 'DPF0042-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(165, 189, 'DPF0042-05', 'DPF0042', 'Viral', 'Jayant', 'Khimji', 46, NULL, '', 'M', 5, 15, NULL, '1991-10-25', NULL, 2, NULL, '279', '', 0, NULL, '9920076664', NULL, '<EMAIL>', 'Live', '', 'DPF0042-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(166, 189, 'DPF0042-06', 'DPF0042', 'Manthan', 'Jayant', 'Khimji', 46, NULL, '', 'M', 5, 15, NULL, '1996-08-15', NULL, 2, NULL, '214', '', 0, NULL, '9930333739', NULL, '', 'Live', '', 'DPF0042-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(167, 190, 'DPF0043-01', 'DPF0043', 'Bharat', 'Khimji', 'Nathu', 46, NULL, '', 'M', 5, 22, NULL, '1967-04-30', NULL, 3, NULL, '259', '', 0, NULL, '9820435438', NULL, 'bhar<EMAIL>', 'Live', '', 'DPF0043-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(168, 190, 'DPF0043-02', 'DPF0043', 'Pratiksha', 'Bharat', 'Khimji', 46, NULL, '', 'F', 0, 28, NULL, '1972-12-28', NULL, 3, NULL, '216', '', 0, NULL, '9769709210', NULL, '', 'Live', '', 'DPF0043-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(169, 190, 'DPF0043-03', 'DPF0043', 'Charmi', 'Bharat', 'Khimji', 46, NULL, '', 'F', 0, 6, NULL, '1995-03-30', NULL, 2, NULL, '202', '', 0, NULL, '9594232401', NULL, '', 'Live', '', 'DPF0043-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(170, 190, 'DPF0043-04', 'DPF0043', 'Yash', 'Bharat', 'Khimji', 46, NULL, '', 'M', 5, 25, NULL, '1997-09-08', NULL, 2, NULL, '217', '', 0, NULL, '9769711491', NULL, '', 'Live', '', 'DPF0043-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(171, 191, 'DPF0044-01', 'DPF0044', 'Bhavesh', 'Kantilal', 'Hirji', 46, NULL, '', 'M', 1, 22, NULL, '1974-11-17', NULL, 3, NULL, '216', '', 0, NULL, '9892042151', NULL, '', 'Live', '', 'DPF0044-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(172, 191, 'DPF0044-02', 'DPF0044', 'Heena', 'Bhavesh', 'Kantilal', 46, NULL, '', 'F', 6, 28, NULL, '1978-09-27', NULL, 3, NULL, '216', '', 0, NULL, '9004407849', NULL, '', 'Live', '', 'DPF0044-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(173, 191, 'DPF0044-03', 'DPF0044', 'Viraj', 'Bhavesh', 'Kantilal', 46, NULL, '', 'M', 1, 25, NULL, '1999-05-16', NULL, 2, NULL, '262', '', 0, NULL, '8097702551', NULL, '', 'Live', '', 'DPF0044-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(174, 191, 'DPF0044-04', 'DPF0044', 'Kevin', 'Bhavesh', 'Kantilal', 46, NULL, '', 'M', 5, 25, NULL, '2001-04-29', NULL, 2, NULL, '256', '', 0, NULL, '8097702550', NULL, '', 'Live', '', 'DPF0044-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(175, 191, 'DPF0044-05', 'DPF0044', 'Damyantiben', 'Kantilal', 'Hirji', 46, NULL, '', 'F', 1, 17, NULL, '1952-09-25', NULL, 3, NULL, '256', '', 0, NULL, '9819892569', NULL, '', 'Live', '', 'DPF0044-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(176, 191, 'DPF0044-06', 'DPF0044', 'Jayesh', 'Kantilal', 'Hirji', 46, NULL, '', 'M', 0, 4, NULL, '1980-12-11', NULL, 2, NULL, '216', '', 0, NULL, '9769924204', NULL, '', 'Live', '', 'DPF0044-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(177, 192, 'DPF0045-01', 'DPF0045', 'Paresh', 'Kantilal', 'Hirji', 46, NULL, '', 'M', 5, 22, NULL, '1977-06-24', NULL, 3, NULL, '216', '', 0, NULL, '9987745010', NULL, '', 'Live', '', 'DPF0045-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(178, 192, 'DPF0045-02', 'DPF0045', 'Vaishali', 'Paresh', 'Kantilal', 46, NULL, '', 'F', 3, 28, NULL, '1981-06-02', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0045-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(179, 192, 'DPF0045-03', 'DPF0045', 'Netra', 'Paresh', 'Kantilal', 46, NULL, '', 'M', 0, 25, NULL, '2004-04-08', NULL, 2, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0045-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(180, 192, 'DPF0045-04', 'DPF0045', 'Meet', 'Paresh', 'Kantilal', 46, NULL, '', 'M', 0, 25, NULL, '2006-11-14', NULL, 2, NULL, '268', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0045-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(181, 193, 'DPF0046-01', 'DPF0046', 'Kishor', 'Hirji', '', 46, NULL, '', 'M', 1, 22, NULL, '1953-03-23', NULL, 3, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0046-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(182, 193, 'DPF0046-02', 'DPF0046', 'Chirag', 'Kishor', 'Hirji', 46, NULL, '', 'M', 1, 25, NULL, '1983-04-19', NULL, 3, NULL, '214', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0046-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(183, 193, 'DPF0046-03', 'DPF0046', 'Meghna', 'Chirag', 'Kishor', 46, NULL, '', 'F', 3, 35, NULL, '1983-10-05', NULL, 3, NULL, '216', '', 0, NULL, '9987160930', NULL, '', 'Live', '', 'DPF0046-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(184, 193, 'DPF0046-04', 'DPF0046', 'Jenil', 'Chirag', 'Kishor', 46, NULL, '', 'M', 3, 15, NULL, '2008-02-07', NULL, 2, NULL, '236', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0046-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(185, 193, 'DPF0046-05', 'DPF0046', 'Sourya', 'Chirag', 'Kishor', 46, NULL, '', 'M', 5, 15, NULL, '2010-10-20', NULL, 2, NULL, '237', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0046-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(186, 194, 'DPF0047-01', 'DPF0047', 'Bharat', 'Narshi', 'Vajpar', 46, NULL, '', 'M', 0, 22, NULL, '1966-08-26', NULL, 3, NULL, '216', '', 8, NULL, '', NULL, '', 'Live', '', 'DPF0047-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(187, 194, 'DPF0047-02', 'DPF0047', 'Jayshree', 'Bharat', 'Narshi', 46, NULL, '', 'F', 3, 28, NULL, '1974-08-30', NULL, 3, NULL, '256', '', 0, NULL, '9022690256', NULL, '', 'Live', '', 'DPF0047-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(188, 194, 'DPF0047-03', 'DPF0047', 'Hemant', 'Bharat', 'Narshi', 46, NULL, '', 'M', 1, 25, NULL, '1993-12-30', NULL, 2, NULL, '214', '', 0, NULL, '9867840302', NULL, '', 'Live', '', 'DPF0047-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(189, 194, 'DPF0047-04', 'DPF0047', 'Lucky', 'Bharat', 'Narshi', 46, NULL, '', 'M', 7, 25, NULL, '1997-06-02', NULL, 2, NULL, '216', '', 0, NULL, '9930378228', NULL, '', 'Live', '', 'DPF0047-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(190, 194, 'DPF0047-05', 'DPF0047', 'Sunderben', 'Narshi', 'Vajpar', 46, NULL, '', 'F', 7, 17, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0047-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(191, 195, 'DPF0048-01', 'DPF0048', 'Tarun', 'Narshi', 'Vajpar', 46, NULL, '', 'M', 1, 22, NULL, '1970-11-14', NULL, 3, NULL, '216', '', 0, NULL, '9987989564', NULL, '', 'Live', '', 'DPF0048-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(192, 195, 'DPF0048-02', 'DPF0048', 'Neeta', 'Tarun', 'Narshi', 46, NULL, '', 'F', 3, 28, NULL, '1977-05-04', NULL, 3, NULL, '216', '', 0, NULL, '9004053167', NULL, '', 'Live', '', 'DPF0048-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(193, 195, 'DPF0048-03', 'DPF0048', 'Miral', 'Tarun', 'Narshi', 46, NULL, '', 'F', 0, 6, NULL, '2000-08-01', NULL, 2, NULL, '261', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0048-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(194, 195, 'DPF0048-04', 'DPF0048', 'Riya', 'Tarun', 'Narshi', 46, NULL, '', 'F', 0, 6, NULL, '2009-06-04', NULL, 2, NULL, '236', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0048-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(195, 196, 'DPF0049-01', 'DPF0049', 'Nemji', 'Bhavanji', 'Monshi', 46, NULL, '', 'M', 1, 22, NULL, '1950-05-03', NULL, 3, NULL, '256', '', 0, NULL, '9870244634', NULL, '', 'Live', '', 'DPF0049-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(196, 196, 'DPF0049-02', 'DPF0049', 'Kanchanben', 'Nemji', 'Bhavanji', 46, NULL, '', 'F', 3, 28, NULL, '1959-01-22', NULL, 3, NULL, '216', '', 0, NULL, '9870076070', NULL, '', 'Live', '', 'DPF0049-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(197, 196, 'DPF0049-03', 'DPF0049', 'Kalpesh', 'Nemji', 'Bhavanji', 46, NULL, '', 'M', 3, 25, NULL, '1979-04-04', NULL, 2, NULL, '216', '', 0, NULL, '9820989566', NULL, '', 'Live', '', 'DPF0049-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(198, 196, 'DPF0049-04', 'DPF0049', 'Hiren', 'Nemji', 'Bhavanji', 46, NULL, '', 'M', 3, 25, NULL, '1981-07-03', NULL, 3, NULL, '214', '', 0, NULL, '9870344635', NULL, '<EMAIL>', 'Live', '', 'DPF0049-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(199, 196, 'DPF0049-05', 'DPF0049', 'Usha', 'Hiren', 'Nemji', 46, NULL, '', 'F', 0, 35, NULL, '1984-12-01', NULL, 3, NULL, '259', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0049-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(200, 197, 'DPF0050-01', 'DPF0050', 'Damji', 'Bhavanji', 'Monshi', 46, NULL, '', 'M', 5, 22, NULL, '1957-06-01', '2011-08-06', 3, NULL, '216', '', 0, NULL, '9833669691', NULL, '', 'Death', '', 'DPF0050-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(201, 197, 'DPF0050-02', 'DPF0050', 'Meena', 'Damji', 'Bhavanji', 46, NULL, '', 'F', 3, 28, NULL, '1964-12-24', NULL, 3, NULL, '216', '', 0, NULL, '9892073314', NULL, '', 'Live', '', 'DPF0050-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(202, 197, 'DPF0050-03', 'DPF0050', 'Uday', 'Damji', 'Bhavanji', 46, NULL, '', 'M', 3, 25, NULL, '1986-08-27', NULL, 2, NULL, '284', '', 0, NULL, '9819023996', NULL, '<EMAIL>', 'Live', '', 'DPF0050-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(203, 198, 'DPF0051-01', 'DPF0051', 'Navin', 'Bhavanji', 'Monshi', 46, NULL, '', 'M', 1, 22, NULL, '1968-07-07', NULL, 3, NULL, '216', '', 0, NULL, '9323058270', NULL, '', 'Live', '', 'DPF0051-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(204, 198, 'DPF0051-02', 'DPF0051', 'Priti', 'Navin', 'Bhavanji', 46, NULL, '', 'F', 5, 28, NULL, '1972-11-19', NULL, 3, NULL, '216', '', 0, NULL, '7208370027', NULL, '', 'Live', '', 'DPF0051-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(205, 198, 'DPF0051-03', 'DPF0051', 'Ridhesh', 'Navin', 'Bhavanji', 46, NULL, '', 'M', 1, 25, NULL, '1998-06-05', NULL, 2, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0051-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(206, 198, 'DPF0051-04', 'DPF0051', 'Mansi', 'Navin', 'Bhavanji', 46, NULL, '', 'F', 1, 6, NULL, '2002-11-27', NULL, 2, NULL, '282', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0051-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(207, 199, 'DPF0052-01', 'DPF0052', 'Popatbhai', 'Velji', 'Shivji', 46, NULL, '', 'M', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '257', '', 7, NULL, '', NULL, '', 'Live', '', 'DPF0052-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(208, 199, 'DPF0052-02', 'DPF0052', 'Nanbai', 'Popatbhai', 'Velji', 46, NULL, '', 'F', 0, 28, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0052-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(209, 199, 'DPF0052-03', 'DPF0052', 'Dipesh', 'Popatbhai', 'Velji', 46, NULL, '', 'M', 0, 25, NULL, '1991-03-18', NULL, 2, NULL, '225', '', 0, NULL, '7208049203', NULL, '', 'Live', '', 'DPF0052-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(210, 200, 'DPF0053-01', 'DPF0053', 'Kesarben', 'Vallabhji', 'TEJSHI', 48, NULL, '', 'F', 5, 22, NULL, '1940-02-01', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0053-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(211, 200, 'DPF0053-02', 'DPF0053', 'Paresh', 'Vallabhji', 'TEJSHI', 48, NULL, '', 'M', 3, 25, NULL, '1972-08-14', NULL, 3, NULL, '60', '', 0, NULL, '9322275777', NULL, '<EMAIL>', 'Live', '', 'DPF0053-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(212, 200, 'DPF0053-03', 'DPF0053', 'Shikha', 'Paresh', 'Vallabhji', 48, NULL, '', 'F', 5, 35, NULL, '1973-11-06', NULL, 3, NULL, '259', '', 0, NULL, '7506075910', NULL, '', 'Live', '', 'DPF0053-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(213, 200, 'DPF0053-04', 'DPF0053', 'Darshi', 'Paresh', 'Vallabhji', 48, NULL, '', 'F', 5, 10, NULL, '2004-04-18', NULL, 2, NULL, '258', '', 0, NULL, '9223226510', NULL, '', 'Live', '', 'DPF0053-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(214, 201, 'DPF0054-01', 'DPF0054', 'Hemlataben', 'Nemji', 'TEJSHI', 48, NULL, '', 'F', 5, 22, NULL, '1947-02-13', NULL, 3, NULL, '216', '', 0, NULL, '9769676261', NULL, '', 'Live', '', 'DPF0054-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(215, 201, 'DPF0054-02', 'DPF0054', 'Dhiren', 'Nemji', 'TEJSHI', 48, NULL, '', 'M', 3, 25, NULL, '1966-06-06', NULL, 3, NULL, '35', '', 0, NULL, '9819136261', NULL, '<EMAIL>', 'Live', '', 'DPF0054-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(216, 201, 'DPF0054-03', 'DPF0054', 'Anita', 'Dhiren', 'Nemji', 48, NULL, '', 'F', 5, 35, NULL, '1970-02-11', NULL, 3, NULL, '202', '', 0, NULL, '9820523725', NULL, '', 'Live', '', 'DPF0054-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(217, 201, 'DPF0054-04', 'DPF0054', 'Juhi', 'Dhiren', 'Nemji', 48, NULL, '', 'F', 5, 10, NULL, '1992-09-07', NULL, 2, NULL, '42', '', 0, NULL, '9769691004', NULL, '', 'Live', '', 'DPF0054-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(218, 201, 'DPF0054-05', 'DPF0054', 'Riya', 'Dhiren', 'Nemji', 48, NULL, '', 'F', 5, 10, NULL, '2004-10-15', NULL, 2, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0054-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(219, 202, 'DPF0055-01', 'DPF0055', 'Ashaben', 'Kundan', 'Ramji', 48, NULL, '', 'F', 5, 22, NULL, '0000-00-00', NULL, 3, NULL, '256', '', 0, NULL, '9323002714', NULL, '', 'Live', '', 'DPF0055-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(220, 202, 'DPF0055-02', 'DPF0055', 'Jigar', 'Kundan', 'Ramji', 48, NULL, '', 'M', 3, 25, NULL, '1985-10-22', NULL, 3, NULL, '214', '', 0, NULL, '9769250152', NULL, '', 'Live', '', 'DPF0055-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(221, 202, 'DPF0055-03', 'DPF0055', 'Jinal', 'Jigar', 'Kundan', 48, NULL, '', 'F', 3, 35, NULL, '1986-12-10', NULL, 3, NULL, '250', '', 0, NULL, '9820803116', NULL, '<EMAIL>', 'Live', '', 'DPF0055-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(222, 202, 'DPF0055-04', 'DPF0055', 'Vivaan', 'Jigar', 'Kundan', 48, NULL, '', 'M', 5, 10, NULL, '2012-07-14', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0055-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(223, 203, 'DPF0056-01', 'DPF0056', 'Chetan', 'Ramji', 'Narshi', 48, NULL, '', 'M', 3, 22, NULL, '1965-01-28', NULL, 3, NULL, '214', '', 0, NULL, '9322507625', NULL, '', 'Live', '', 'DPF0056-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(224, 203, 'DPF0056-02', 'DPF0056', 'Bhavna', 'Chetan', 'Ramji', 48, NULL, '', 'F', 6, 28, NULL, '1965-07-07', NULL, 3, NULL, '214', '', 0, NULL, '9773561165', NULL, '<EMAIL>', 'Live', '', 'DPF0056-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(225, 203, 'DPF0056-03', 'DPF0056', 'Priynka', 'Chetan', 'Ramji', 48, NULL, '', 'F', 4, 6, NULL, '1991-11-30', NULL, 2, NULL, '148', '', 0, NULL, '8879118112', NULL, '<EMAIL>', 'Live', '', 'DPF0056-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(226, 204, 'DPF0057-01', 'DPF0057', 'Sheelaben', 'Pravin', 'Umarshi', 48, NULL, '', 'F', 5, 22, NULL, '1970-04-28', NULL, 3, NULL, '216', '', 0, NULL, '9604343878', NULL, '', 'Live', '', 'DPF0057-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(227, 204, 'DPF0057-02', 'DPF0057', 'Nevil', 'Sheelaben', 'Pravin', 48, NULL, '', 'M', 0, 25, NULL, '1992-11-24', NULL, 2, NULL, '214', '', 0, NULL, '7666612577', NULL, '<EMAIL>', 'Live', '', 'DPF0057-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(228, 204, 'DPF0057-03', 'DPF0057', 'Ruchita', 'Sheelaben', 'Pravin', 48, NULL, '', 'F', 3, 6, NULL, '2000-10-09', NULL, 2, NULL, '261', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0057-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(229, 205, 'DPF0058-01', 'DPF0058', 'Mahesh', 'Dungarshi', 'Devji', 48, NULL, '', 'M', 3, 22, NULL, '1968-01-20', NULL, 2, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0058-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(230, 206, 'DPF0059-01', 'DPF0059', 'Kishor', 'Virji', 'Devji', 48, NULL, '', 'M', 5, 22, NULL, '1964-10-26', NULL, 3, NULL, '216', '', 0, NULL, '9930986680', NULL, '', 'Live', '', 'DPF0059-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(231, 206, 'DPF0059-02', 'DPF0059', 'Nayna', 'Kishor', 'Virji', 48, NULL, '', 'F', 5, 28, NULL, '1965-03-21', NULL, 3, NULL, '216', '', 0, NULL, '9768894281', NULL, '', 'Live', '', 'DPF0059-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(232, 206, 'DPF0059-03', 'DPF0059', 'Neha', 'Kishor', 'Virji', 48, NULL, '', 'F', 5, 6, NULL, '1991-11-09', NULL, 2, NULL, '259', '', 0, NULL, '9930288306', NULL, '<EMAIL>', 'Live', '', 'DPF0059-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(233, 206, 'DPF0059-04', 'DPF0059', 'Yesh', 'Kishor', 'Virji', 48, NULL, '', 'M', 6, 25, NULL, '1995-05-16', NULL, 2, NULL, '114', '', 0, NULL, '9167130830', NULL, '<EMAIL>', 'Live', '', 'DPF0059-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(234, 206, 'DPF0059-05', 'DPF0059', 'Shantaben', 'Virji', 'Devji', 48, NULL, '', 'F', 5, 17, NULL, '1941-04-05', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0059-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(235, 207, 'DPF0060-01', 'DPF0060', 'Ratanshi', 'Devji', 'Lakhamshi', 48, NULL, '', 'M', 5, 22, NULL, '1946-01-02', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0060-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(236, 207, 'DPF0060-02', 'DPF0060', 'Ramilaben', 'Ratanshi', 'Devji', 48, NULL, '', 'F', 5, 28, NULL, '1948-04-06', NULL, 3, NULL, '261', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0060-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(237, 207, 'DPF0060-03', 'DPF0060', 'Rajesh', 'Ratanshi', 'Devji', 48, NULL, '', 'M', 5, 25, NULL, '1971-07-30', NULL, 3, NULL, '216', '', 0, NULL, '7506093087', NULL, '', 'Live', '', 'DPF0060-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(238, 207, 'DPF0060-04', 'DPF0060', 'Kalpesh', 'Ratanshi', 'Devji', 48, NULL, '', 'M', 5, 25, NULL, '1976-05-03', NULL, 3, NULL, '216', '', 0, NULL, '9819902413', NULL, '', 'Live', '', 'DPF0060-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(239, 207, 'DPF0060-05', 'DPF0060', 'Dimple', 'Kalpesh', 'Ratanshi', 48, NULL, '', 'F', 3, 35, NULL, '1980-06-15', NULL, 3, NULL, '216', '', 0, NULL, '7506093078', NULL, '', 'Live', '', 'DPF0060-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(240, 207, 'DPF0060-06', 'DPF0060', 'Pritika', 'Kalpesh', 'Ratanshi', 48, NULL, '', 'F', 3, 10, NULL, '2011-12-18', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0060-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(241, 208, 'DPF0061-01', 'DPF0061', 'Jayaben', 'Kalyanji', 'Devji', 48, NULL, '', 'F', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0061-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(242, 208, 'DPF0061-02', 'DPF0061', 'Jitesh', 'Kalyanji', 'Devji', 48, NULL, '', 'M', 5, 25, NULL, '1978-02-06', NULL, 3, NULL, '259', '', 0, NULL, '9890828831', NULL, '<EMAIL>', 'Live', '', 'DPF0061-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(243, 208, 'DPF0061-03', 'DPF0061', 'Hasti', 'Jitesh', 'Kalyanji', 48, NULL, '', 'F', 5, 35, NULL, '1983-05-18', NULL, 3, NULL, '216', '', 0, NULL, '9970024353', NULL, '', 'Live', '', 'DPF0061-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(244, 208, 'DPF0061-04', 'DPF0061', 'Riddhi', 'Jitesh', 'Kalyanji', 48, NULL, '', 'F', 5, 10, NULL, '2008-10-01', NULL, 2, NULL, '236', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0061-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(245, 208, 'DPF0061-05', 'DPF0061', 'Parshav', 'Jitesh', 'Kalyanji', 48, NULL, '', 'M', 5, 15, NULL, '2011-02-19', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0061-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(246, 208, 'DPF0061-06', 'DPF0061', 'Chirag', 'Kalyanji', 'Devji', 48, NULL, '', 'M', 0, 25, NULL, '1984-01-11', NULL, 3, NULL, '259', '', 0, NULL, '9822822845', NULL, '', 'Live', '', 'DPF0061-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(247, 208, 'DPF0061-07', 'DPF0061', 'Hiral', 'Chirag', 'Kalyanji', 48, NULL, '', 'F', 0, 35, NULL, '1987-05-05', NULL, 3, NULL, '285', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0061-07.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(248, 209, 'DPF0062-01', 'DPF0062', 'Dhanji', 'Karamshi', 'Narshi', 104, NULL, '', 'M', 5, 22, NULL, '1945-05-03', NULL, 3, NULL, '216', '', 0, NULL, '9320670777', NULL, '', 'Live', '', 'DPF0062-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(249, 209, 'DPF0062-02', 'DPF0062', 'Chanchalben', 'Dhanji', 'Karamshi', 104, NULL, '', 'F', 1, 28, NULL, '1952-08-09', NULL, 3, NULL, '256', '', 0, NULL, '9022030302', NULL, '', 'Live', '', 'DPF0062-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(250, 209, 'DPF0062-03', 'DPF0062', 'Punit', 'Dhanji', 'Karamshi', 104, NULL, '', 'M', 1, 25, NULL, '1984-03-18', NULL, 3, NULL, '259', '', 0, NULL, '9322210566', NULL, '<EMAIL>', 'Live', '', 'DPF0062-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(251, 209, 'DPF0062-04', 'DPF0062', 'Bhavini', 'Punit', 'Dhanji', 104, NULL, '', 'F', 5, 35, NULL, '1984-06-15', NULL, 3, NULL, '124', '', 0, NULL, '9323233733', NULL, '', 'Live', '', 'DPF0062-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(252, 209, 'DPF0062-05', 'DPF0062', 'Jash', 'Punit', 'Dhanji', 104, NULL, '', 'M', 5, 15, NULL, '2009-10-26', NULL, 2, NULL, '237', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0062-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(253, 210, 'DPF0063-01', 'DPF0063', 'Chunilal', 'Karamshi', 'Narshi', 104, NULL, '', 'M', 5, 22, NULL, '1951-04-06', NULL, 3, NULL, '60', '', 8, NULL, '9049683664', NULL, '<EMAIL>', 'Live', '', 'DPF0063-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(254, 210, 'DPF0063-02', 'DPF0063', 'Urmila', 'Chunilal', 'Karamshi', 104, NULL, '', 'F', 3, 28, NULL, '1967-06-28', NULL, 3, NULL, '24', '', 0, NULL, '8806795860', NULL, '', 'Live', '', 'DPF0063-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(255, 211, 'DPF0064-01', 'DPF0064', 'Bhavanji', 'Karamshi', 'Narshi', 104, NULL, '', 'M', 3, 22, NULL, '1956-03-07', NULL, 3, NULL, '216', '', 0, NULL, '9819339990', NULL, '', 'Live', '', 'DPF0064-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(256, 211, 'DPF0064-02', 'DPF0064', 'Chhayaben', 'Bhavanji', 'Karamshi', 104, NULL, '', 'F', 3, 28, NULL, '1957-12-09', NULL, 3, NULL, '216', '', 0, NULL, '9819469990', NULL, '', 'Live', '', 'DPF0064-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(257, 211, 'DPF0064-03', 'DPF0064', 'Mehul', 'Bhavanji', 'Karamshi', 104, NULL, '', 'M', 5, 25, NULL, '1984-09-24', NULL, 3, NULL, '238', '', 0, NULL, '9920779910', NULL, '<EMAIL>', 'Live', '', 'DPF0064-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(258, 211, 'DPF0064-04', 'DPF0064', 'Deepali', 'Mehul', 'Bhavanji', 104, NULL, '', 'F', 5, 35, NULL, '1985-02-07', NULL, 3, NULL, '239', '', 0, NULL, '9833281384', NULL, '<EMAIL>', 'Live', '', 'DPF0064-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(259, 211, 'DPF0064-05', 'DPF0064', 'Sanchi', 'Mehul', 'Bhavanji', 104, NULL, '', 'F', 5, 10, NULL, '2012-02-22', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0064-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(260, 212, 'DPF0065-01', 'DPF0065', 'Prabhaben', 'Shantilal', 'Shamji', 104, NULL, '', 'F', 0, 22, NULL, '1950-01-11', NULL, 3, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0065-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(261, 212, 'DPF0065-02', 'DPF0065', 'Mukesh', 'Shantilal', 'Shamji', 104, NULL, '', 'M', 0, 25, NULL, '1972-12-10', NULL, 3, NULL, '286', '', 0, NULL, '9819311773', NULL, '<EMAIL>', 'Live', '', 'DPF0065-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(262, 212, 'DPF0065-03', 'DPF0065', 'Daksha', 'Mukesh', 'Shantilal', 104, NULL, '', 'F', 0, 35, NULL, '1973-01-10', NULL, 3, NULL, '259', '', 0, NULL, '9769690691', NULL, '', 'Live', '', 'DPF0065-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(263, 212, 'DPF0065-04', 'DPF0065', 'Smit', 'Mukesh', 'Shantilal', 104, NULL, '', 'M', 1, 15, NULL, '2001-12-22', NULL, 2, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0065-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(264, 213, 'DPF0066-01', 'DPF0066', 'Jagdish', 'Ramji', 'Dharshi', 104, NULL, '', 'M', 0, 22, NULL, '1963-05-15', NULL, 3, NULL, '216', '', 0, NULL, '9869320464', NULL, '', 'Live', '', 'DPF0066-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(265, 214, 'DPF0065-01', 'DPF0065', 'Subhadra', 'Jagdish', 'Ramji', 104, NULL, '', 'F', 0, 28, NULL, '1966-04-17', NULL, 3, NULL, '240', '', 0, NULL, '9969617428', NULL, '', 'Live', '', 'DPF0065-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(266, 215, 'DPF0066-01', 'DPF0066', 'Jinal', 'Jagdish', 'Ramji', 104, NULL, '', 'F', 0, 6, NULL, '1992-03-29', NULL, 2, NULL, '260', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0066-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(267, 216, 'DPF0065-01', 'DPF0065', 'Khyati', 'Jagdish', 'Ramji', 104, NULL, '', 'F', 3, 6, NULL, '1998-09-03', NULL, 2, NULL, '241', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0065-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(268, 217, 'DPF0066-01', 'DPF0066', 'Priyanka', 'Jagdish', 'Ramji', 104, NULL, '', 'F', 3, 6, NULL, '2001-04-07', NULL, 2, NULL, '261', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0066-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(269, 218, 'DPF0067-01', 'DPF0067', 'Praful', 'Ramji', 'Dharshi', 104, NULL, '', 'M', 1, 22, NULL, '1965-02-18', NULL, 3, NULL, '256', '', 0, NULL, '9323608106', NULL, '<EMAIL>', 'Live', '', 'DPF0067-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(270, 218, 'DPF0067-02', 'DPF0067', 'Saroj', 'Praful', 'Ramji', 104, NULL, '', 'F', 3, 28, NULL, '1971-05-17', NULL, 3, NULL, '216', '', 0, NULL, '9867122844', NULL, '', 'Live', '', 'DPF0067-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(271, 218, 'DPF0067-03', 'DPF0067', 'Bhakti', 'Praful', 'Ramji', 104, NULL, '', 'F', 5, 6, NULL, '1993-04-13', NULL, 2, NULL, '242', '', 0, NULL, '8879501309', NULL, '<EMAIL>', 'Live', '', 'DPF0067-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(272, 218, 'DPF0067-04', 'DPF0067', 'Tejas', 'Praful', 'Ramji', 104, NULL, '', 'M', 7, 25, NULL, '1995-05-14', NULL, 2, NULL, '243', '', 0, NULL, '9768619241', NULL, '<EMAIL>', 'Live', '', 'DPF0067-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(273, 219, 'DPF0068-01', 'DPF0068', 'Ashok', 'Hirji', 'Dharshi', 104, NULL, '', 'M', 3, 22, NULL, '1967-01-21', NULL, 3, NULL, '261', '', 0, NULL, '9323483380', NULL, '', 'Live', '', 'DPF0068-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(274, 219, 'DPF0068-02', 'DPF0068', 'Varsha', 'Ashok', 'Hirji', 104, NULL, '', 'F', 3, 28, NULL, '1971-04-22', NULL, 3, NULL, '258', '', 0, NULL, '9320761394', NULL, '', 'Live', '', 'DPF0068-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(275, 219, 'DPF0068-03', 'DPF0068', 'Pritesh', 'Ashok', 'Hirji', 104, NULL, '', 'M', 3, 25, NULL, '2002-07-15', NULL, 2, NULL, '282', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0068-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(276, 219, 'DPF0068-04', 'DPF0068', 'Hiral', 'Ashok', 'Hirji', 104, NULL, '', 'F', 0, 6, NULL, '2007-01-31', NULL, 2, NULL, '268', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0068-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(277, 219, 'DPF0068-05', 'DPF0068', 'Tejbai', 'Hirji', 'Dharshi', 104, NULL, '', 'F', 0, 17, NULL, '0000-00-00', NULL, 3, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0068-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(278, 220, 'DPF0069-01', 'DPF0069', 'Kunvarji', 'Punja', 'Monshi', 104, NULL, '', 'M', 3, 22, NULL, '1925-07-18', NULL, 3, NULL, '261', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0069-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(279, 220, 'DPF0069-02', 'DPF0069', 'Jayesh', 'Kunvarji', 'Punja', 104, NULL, '', 'M', 7, 25, NULL, '1962-11-04', NULL, 3, NULL, '216', '', 0, NULL, '9425819541', NULL, '', 'Live', '', 'DPF0069-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(280, 220, 'DPF0069-03', 'DPF0069', 'Usha', 'Jayesh', 'Kunvarji', 104, NULL, '', 'F', 5, 35, NULL, '1965-04-11', NULL, 3, NULL, '216', '', 0, NULL, '9424666141', NULL, '', 'Live', '', 'DPF0069-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(281, 220, 'DPF0069-04', 'DPF0069', 'Varchesh', 'Jayesh', 'Kunvarji', 104, NULL, '', 'M', 3, 15, NULL, '1991-06-12', NULL, 2, NULL, '148', '', 0, NULL, '9754116111', NULL, '', 'Live', '', 'DPF0069-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(282, 220, 'DPF0069-05', 'DPF0069', 'Virali', 'Jayesh', 'Kunvarji', 104, NULL, '', 'F', 1, 10, NULL, '1997-09-23', NULL, 2, NULL, '217', '', 0, NULL, '9424666141', NULL, '', 'Live', '', 'DPF0069-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(283, 221, 'DPF0070-01', 'DPF0070', 'Mitesh', 'Kunvarji', 'Punja', 104, NULL, '', 'M', 3, 22, NULL, '1967-11-14', NULL, 3, NULL, '259', '', 0, NULL, '9425148341', NULL, '', 'Live', '', 'DPF0070-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(284, 221, 'DPF0070-02', 'DPF0070', 'Pratibha', 'Mitesh', 'Kunvarji', 104, NULL, '', 'F', 5, 28, NULL, '1978-07-14', NULL, 3, NULL, '0', '', 0, NULL, '9424679941', NULL, '', 'Live', '', 'DPF0070-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(285, 221, 'DPF0070-03', 'DPF0070', 'Pakhil', 'Mitesh', 'Kunvarji', 104, NULL, '', 'M', 5, 25, NULL, '2000-05-14', NULL, 2, NULL, '261', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0070-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(286, 221, 'DPF0070-04', 'DPF0070', 'Jinay', 'Mitesh', 'Kunvarji', 104, NULL, '', 'M', 3, 25, NULL, '2003-08-11', NULL, 2, NULL, '257', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0070-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(287, 222, 'DPF0071-01', 'DPF0071', 'Dhanvantiben', 'Ramji', 'Bhimshi', 106, NULL, '', 'F', 5, 22, NULL, '1957-11-24', NULL, 3, NULL, '216', '', 0, NULL, '9987566299', NULL, '', 'Live', '', 'DPF0071-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(288, 222, 'DPF0071-02', 'DPF0071', 'Rahul', 'Ramji', 'Bhimshi', 106, NULL, '', 'M', 5, 25, NULL, '1983-03-03', NULL, 3, NULL, '217', '', 0, NULL, '9870797779', NULL, '<EMAIL>', 'Live', '', 'DPF0071-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(289, 222, 'DPF0071-03', 'DPF0071', 'Rinku', 'Rahul', 'Ramji', 106, NULL, '', 'F', 3, 35, NULL, '1985-05-04', NULL, 3, NULL, '24', '', 0, NULL, '8879400882', NULL, '', 'Live', '', 'DPF0071-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(290, 222, 'DPF0071-04', 'DPF0071', 'Tisha', 'Rahul', 'Ramji', 106, NULL, '', 'F', 0, 10, NULL, '2009-11-11', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0071-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(291, 223, 'DPF0072-01', 'DPF0072', 'Manilal', 'Nanji', 'Virji', 106, NULL, '', 'M', 3, 22, NULL, '1952-08-20', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0072-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(292, 223, 'DPF0072-02', 'DPF0072', 'Vasumatiben', 'Manilal', 'Nanji', 106, NULL, '', 'F', 5, 28, NULL, '1958-03-26', NULL, 3, NULL, '216', '', 0, NULL, '9768781290', NULL, '', 'Live', '', 'DPF0072-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(293, 224, 'DPF0073-01', 'DPF0073', 'Kantilal', 'Nanji', 'Virji', 106, NULL, '', 'M', 1, 22, NULL, '1955-12-01', NULL, 3, NULL, '216', '', 0, NULL, '9820746688', NULL, '<EMAIL>', 'Live', '', 'DPF0073-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(294, 224, 'DPF0073-02', 'DPF0073', 'Bharti', 'Kantilal', 'Nanji', 106, NULL, '', 'F', 6, 28, NULL, '1967-08-15', NULL, 3, NULL, '259', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0073-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(295, 224, 'DPF0073-03', 'DPF0073', 'Dhaval', 'Kantilal', 'Nanji', 106, NULL, '', 'M', 3, 25, NULL, '1992-09-06', NULL, 2, NULL, '259', '', 0, NULL, '7738598781', NULL, '', 'Live', '', 'DPF0073-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(296, 225, 'DPF0074-01', 'DPF0074', 'Shantilal', 'Ramji', 'Virji', 106, NULL, '', 'M', 1, 22, NULL, '1966-05-13', NULL, 3, NULL, '216', '', 0, NULL, '9819380285', NULL, '', 'Live', '', 'DPF0074-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(297, 225, 'DPF0074-02', 'DPF0074', 'Bharti', 'Shantilal', 'Ramji', 106, NULL, '', 'F', 3, 28, NULL, '1968-12-20', NULL, 3, NULL, '214', '', 0, NULL, '9867932265', NULL, '', 'Live', '', 'DPF0074-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(298, 225, 'DPF0074-03', 'DPF0074', 'Punit', 'Shantilal', 'Ramji', 106, NULL, '', 'M', 5, 25, NULL, '1990-02-13', NULL, 2, NULL, '155', '', 0, NULL, '9867932265', NULL, '<EMAIL>', 'Live', '', 'DPF0074-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(299, 225, 'DPF0074-04', 'DPF0074', 'Zalak', 'Shantilal', 'Ramji', 106, NULL, '', 'F', 3, 6, NULL, '1998-08-12', NULL, 2, NULL, '216', '', 0, NULL, '9004257787', NULL, '', 'Live', '', 'DPF0074-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(300, 225, 'DPF0074-05', 'DPF0074', 'Maniben', 'Ramji', 'Virji', 106, NULL, '', 'F', 5, 17, NULL, '1939-03-15', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0074-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(301, 226, 'DPF0075-01', 'DPF0075', 'Manjulaben', 'Mavji', 'Murji', 106, NULL, '', 'F', 5, 22, NULL, '1942-09-05', NULL, 3, NULL, '257', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0075-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(302, 226, 'DPF0075-02', 'DPF0075', 'Jayshree', '', 'Mavji', 106, NULL, '', 'F', 5, 35, NULL, '1968-07-02', NULL, 3, NULL, '217', '', 0, NULL, '9821472668', NULL, '', 'Live', '', 'DPF0075-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(303, 226, 'DPF0075-03', 'DPF0075', 'Kirtan', '', 'Mavji', 106, NULL, '', 'M', 5, 15, NULL, '1993-09-10', NULL, 2, NULL, '201', '', 0, NULL, '9867803639', NULL, '<EMAIL>', 'Live', '', 'DPF0075-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(304, 226, 'DPF0075-04', 'DPF0075', 'Richa', '', 'Mavji', 106, NULL, '', 'F', 5, 10, NULL, '1998-09-23', NULL, 2, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0075-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(305, 226, 'DPF0075-05', 'DPF0075', 'Bipin', 'Mavji', 'Murji', 106, NULL, '', 'M', 7, 25, NULL, '1968-07-22', NULL, 3, NULL, '216', '', 0, NULL, '9820503451', NULL, '', 'Live', '', 'DPF0075-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(306, 226, 'DPF0075-06', 'DPF0075', 'Heena', 'Bipin', 'Mavji', 106, NULL, '', 'F', 5, 35, NULL, '1972-08-07', NULL, 3, NULL, '225', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0075-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(307, 226, 'DPF0075-07', 'DPF0075', 'Harsh', 'Bipin', 'Mavji', 106, NULL, '', 'M', 5, 15, NULL, '1996-03-30', NULL, 2, NULL, '225', '', 0, NULL, '8451893120', NULL, '<EMAIL>', 'Live', '', 'DPF0075-07.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL);
INSERT INTO `family_member` (`id`, `family_id`, `member_no`, `family_no`, `first_name`, `second_name`, `third_name`, `surname_id`, `other_surname_details`, `regd_id`, `sex`, `blood_id`, `relation_id`, `other_relation_details`, `dob`, `dod`, `marriage_type`, `dom`, `education_id`, `other_education_details`, `occupation_id`, `other_occupation_details`, `contact`, `altcontact`, `email`, `live_type`, `member_type`, `image`, `life_insurance`, `life_insurance_text`, `medical_insurance`, `sanjeevni`, `medical_insurance_text`, `sports_id`, `other_sports_details`, `achivements`, `dharmik_id`, `username`, `password`, `fm_status`, `old_value`, `new_value`, `merge_status`, `merge_flag`, `merge_data`, `merge_user_data`, `added_on`, `updated_on`, `deleted`, `delete_reason`, `deleted_on`) VALUES
(308, 226, 'DPF0075-08', 'DPF0075', 'Rushabh', 'Bipin', 'Mavji', 106, NULL, '', 'M', 5, 15, NULL, '2002-02-05', NULL, 2, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0075-08.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(309, 227, 'DPF0076-01', 'DPF0076', 'Tokershi', 'Virji', 'Manek', 106, NULL, '', 'M', 1, 22, NULL, '1942-03-17', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0076-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(310, 227, 'DPF0076-02', 'DPF0076', 'Premilaben', 'Tokershi', 'Virji', 106, NULL, '', 'F', 3, 28, NULL, '1947-11-23', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0076-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(311, 227, 'DPF0076-03', 'DPF0076', 'Hiren', 'Tokershi', 'Virji', 106, NULL, '', 'M', 0, 25, NULL, '1976-03-12', NULL, 2, NULL, '216', '', 0, NULL, '9820893412', NULL, '<EMAIL>', 'Live', '', 'DPF0076-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(312, 227, 'DPF0076-04', 'DPF0076', 'Jatin', 'Tokershi', 'Virji', 106, NULL, '', 'M', 1, 25, NULL, '1978-07-20', NULL, 2, NULL, '216', '', 0, NULL, '9920893412', NULL, '<EMAIL>', 'Live', '', 'DPF0076-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(313, 228, 'DPF0077-01', 'DPF0077', 'Talakshi', 'Khimji', 'Manek', 106, NULL, '', 'M', 3, 22, NULL, '1951-11-29', NULL, 3, NULL, '259', '', 7, NULL, '9324215677', NULL, '', 'Live', '', 'DPF0077-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(314, 228, 'DPF0077-02', 'DPF0077', 'Pravina', 'Talakshi', 'Khimji', 106, NULL, '', 'F', 3, 28, NULL, '1960-12-24', NULL, 3, NULL, '144', '', 0, NULL, '9029029359', NULL, '', 'Live', '', 'DPF0077-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(315, 228, 'DPF0077-03', 'DPF0077', 'Ankit', 'Talakshi', 'Khimji', 106, NULL, '', 'M', 3, 25, NULL, '1987-06-18', NULL, 2, NULL, '71', '', 0, NULL, '8097700519', NULL, '<EMAIL>', 'Live', '', 'DPF0077-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(316, 228, 'DPF0077-04', 'DPF0077', 'Sejal', 'Talakshi', 'Khimji', 106, NULL, '', 'F', 3, 6, NULL, '1991-11-16', NULL, 2, NULL, '244', '', 0, NULL, '9821813732', NULL, '', 'Live', '', 'DPF0077-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(317, 229, 'DPF0078-01', 'DPF0078', 'Hirji', 'Khimji', 'Manek', 106, NULL, '', 'M', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '9870528181', NULL, '', 'Live', '', 'DPF0078-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(318, 229, 'DPF0078-02', 'DPF0078', 'Mukesh', 'Hirji', 'Khimji', 106, NULL, '', 'M', 3, 25, NULL, '1964-11-27', NULL, 3, NULL, '216', '', 0, NULL, '9870523737', NULL, '', 'Live', '', 'DPF0078-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(319, 229, 'DPF0078-03', 'DPF0078', 'Bhanumati', 'Mukesh', 'Hirji', 106, NULL, '', 'F', 5, 35, NULL, '1964-10-12', NULL, 3, NULL, '216', '', 0, NULL, '9821599570', NULL, '', 'Live', '', 'DPF0078-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(320, 229, 'DPF0078-04', 'DPF0078', 'Bhadresh', 'Mukesh', 'Hirji', 106, NULL, '', 'M', 5, 15, NULL, '1993-05-03', NULL, 2, NULL, '245', '', 0, NULL, '9821106218', NULL, '<EMAIL>', 'Live', '', 'DPF0078-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(321, 229, 'DPF0078-05', 'DPF0078', 'Meet', 'Mukesh', 'Hirji', 106, NULL, '', 'M', 0, 15, NULL, '1998-01-17', NULL, 2, NULL, '246', '', 0, NULL, '9870500460', NULL, '', 'Live', '', 'DPF0078-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(322, 230, 'DPF0079-01', 'DPF0079', 'Morarji', 'Murji', 'Padamshi', 106, NULL, '', 'M', 3, 22, NULL, '1947-07-30', NULL, 3, NULL, '256', '', 0, NULL, '8080573778', NULL, '', 'Live', '', 'DPF0079-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(323, 230, 'DPF0079-02', 'DPF0079', 'Bhanumatiben', 'Morarji', 'Murji', 106, NULL, '', 'F', 3, 28, NULL, '1956-02-09', NULL, 3, NULL, '262', '', 0, NULL, '9987389251', NULL, '', 'Live', '', 'DPF0079-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(324, 230, 'DPF0079-03', 'DPF0079', 'Brinal', 'Morarji', 'Murji', 106, NULL, '', 'F', 4, 6, NULL, '1992-08-21', NULL, 2, NULL, '214', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0079-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(325, 231, 'DPF0080-01', 'DPF0080', 'Kanchanben', 'Kanji', 'Murji', 106, NULL, '', 'F', 3, 22, NULL, '1956-09-02', NULL, 3, NULL, '263', '', 17, NULL, '9967675213', NULL, '', 'Live', '', 'DPF0080-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(326, 231, 'DPF0080-02', 'DPF0080', 'Mayur', 'Kanji', 'Murji', 106, NULL, '', 'M', 3, 25, NULL, '1976-03-15', NULL, 2, NULL, '282', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0080-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(327, 232, 'DPF0081-01', 'DPF0081', 'Hemlataben', 'Shantilal', 'Malshi', 106, NULL, '', 'F', 5, 22, NULL, '1953-02-27', NULL, 3, NULL, '216', '', 0, NULL, '9819989423', NULL, '', 'Live', '', 'DPF0081-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(328, 232, 'DPF0081-02', 'DPF0081', 'Ashok', 'Shantilal', 'Malshi', 106, NULL, '', 'M', 5, 25, NULL, '1976-12-16', NULL, 3, NULL, '259', '', 0, NULL, '9821400682', NULL, '', 'Live', '', 'DPF0081-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(329, 232, 'DPF0081-03', 'DPF0081', 'Jyoti', 'Ashok', 'Shantilal', 106, NULL, '', 'F', 0, 35, NULL, '1986-03-13', NULL, 3, NULL, '259', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0081-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(330, 233, 'DPF0082-01', 'DPF0082', 'Laxmichand', 'Tokershi', 'Velji', 106, NULL, '', 'M', 1, 22, NULL, '1942-08-07', NULL, 3, NULL, '118', '', 0, NULL, '9619209260', NULL, '', 'Live', '', 'DPF0082-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(331, 233, 'DPF0082-02', 'DPF0082', 'Indiraben', 'Laxmichand', 'Tokershi', 106, NULL, '', 'F', 5, 28, NULL, '1948-04-10', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0082-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(332, 233, 'DPF0082-03', 'DPF0082', 'Vipul', 'Laxmichand', 'Tokershi', 106, NULL, '', 'M', 1, 25, NULL, '1973-02-16', NULL, 3, NULL, '247', '', 0, NULL, '9324965898', NULL, '', 'Live', '', 'DPF0082-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(333, 233, 'DPF0082-04', 'DPF0082', 'Priti', 'Vipul', 'Laxmichand', 106, NULL, '', 'F', 3, 35, NULL, '1974-08-20', NULL, 3, NULL, '259', '', 0, NULL, '9324467666', NULL, '', 'Live', '', 'DPF0082-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(334, 233, 'DPF0082-05', 'DPF0082', 'Darshan', 'Vipul', 'Laxmichand', 106, NULL, '', 'M', 1, 15, NULL, '1998-03-01', NULL, 2, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0082-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(335, 233, 'DPF0082-06', 'DPF0082', 'Darshil', 'Vipul', 'Laxmichand', 106, NULL, '', 'M', 1, 15, NULL, '2000-01-14', NULL, 2, NULL, '262', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0082-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(336, 233, 'DPF0082-07', 'DPF0082', 'Priyal', 'Vipul', 'Laxmichand', 106, NULL, '', 'F', 0, 10, NULL, '2005-02-26', NULL, 2, NULL, '263', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0082-07.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(337, 233, 'DPF0082-08', 'DPF0082', 'Maniben', 'Tokershi', 'Velji', 106, NULL, '', 'F', 1, 17, NULL, '1923-03-20', NULL, 3, NULL, '263', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0082-08.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(338, 234, 'DPF0083-01', 'DPF0083', 'Gangabai', 'Lalji', 'Punja', 106, NULL, '', 'F', 0, 22, NULL, '1966-02-28', NULL, 3, NULL, '0', '', 0, NULL, '9869358675', NULL, '', 'Live', '', 'DPF0083-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(339, 234, 'DPF0083-02', 'DPF0083', 'Vasant', 'Lalji', 'Punja', 106, NULL, '', 'M', 5, 25, NULL, '1972-02-01', NULL, 3, NULL, '261', '', 0, NULL, '9969288143', NULL, '', 'Live', '', 'DPF0083-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(340, 234, 'DPF0083-03', 'DPF0083', 'Nayna', 'Vasant', 'Lalji', 106, NULL, '', 'F', 5, 35, NULL, '2005-12-19', NULL, 3, NULL, '261', '', 0, NULL, '9869358675', NULL, '', 'Live', '', 'DPF0083-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(341, 234, 'DPF0083-04', 'DPF0083', 'Hetvi', 'Vasant', 'Lalji', 106, NULL, '', 'F', 5, 10, NULL, '0000-00-00', NULL, 2, NULL, '263', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0083-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(342, 235, 'DPF0084-01', 'DPF0084', 'Ramesh', 'Bhavanji', 'Punja', 106, NULL, '', 'M', 0, 22, NULL, '1964-08-13', NULL, 3, NULL, '258', '', 0, NULL, '9320825118', NULL, '', 'Live', '', 'DPF0084-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(343, 235, 'DPF0084-02', 'DPF0084', 'Bharti', 'Ramesh', 'Bhavanji', 106, NULL, '', 'F', 0, 28, NULL, '1973-12-30', NULL, 3, NULL, '216', '', 0, NULL, '9892301304', NULL, '', 'Live', '', 'DPF0084-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(344, 236, 'DPF0085-01', 'DPF0085', 'Dhirendra', 'Bhavanji', 'Punja', 106, NULL, '', 'M', 5, 22, NULL, '1966-07-31', NULL, 3, NULL, '261', '', 8, NULL, '9619527226', NULL, '', 'Live', '', 'DPF0085-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(345, 236, 'DPF0085-02', 'DPF0085', 'Ramila', 'Dhirendra', 'Bhavanji', 106, NULL, '', 'F', 3, 28, NULL, '1972-03-12', NULL, 3, NULL, '216', '', 0, NULL, '9004551383', NULL, '', 'Live', '', 'DPF0085-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(346, 236, 'DPF0085-03', 'DPF0085', 'Jaimin', 'Dhirendra', 'Bhavanji', 106, NULL, '', 'M', 5, 25, NULL, '2001-09-28', NULL, 2, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0085-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(347, 237, 'DPF0086-01', 'DPF0086', 'Vijay', 'Bhavanji', 'Punja', 106, NULL, '', 'M', 5, 22, NULL, '1968-04-02', NULL, 3, NULL, '216', '', 0, NULL, '9324740567', NULL, '', 'Live', '', 'DPF0086-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(348, 237, 'DPF0086-02', 'DPF0086', 'Nayna', 'Vijay', 'Bhavanji', 106, NULL, '', 'F', 7, 28, NULL, '1975-12-23', NULL, 3, NULL, '256', '', 0, NULL, '9324452051', NULL, '', 'Live', '', 'DPF0086-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(349, 238, 'DPF0087-01', 'DPF0087', 'Premji', 'Punja', 'Devshi', 106, NULL, '', 'M', 0, 22, NULL, '1941-12-12', NULL, 3, NULL, '258', '', 0, NULL, '9833992832', NULL, '', 'Live', '', 'DPF0087-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(350, 238, 'DPF0087-02', 'DPF0087', 'Premilaben', 'Premji', 'Punja', 106, NULL, '', 'F', 0, 28, NULL, '1943-09-30', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0087-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(351, 238, 'DPF0087-03', 'DPF0087', 'Amit', 'Premji', 'Punja', 106, NULL, '', 'M', 6, 25, NULL, '1973-09-15', NULL, 3, NULL, '248', '', 0, NULL, '9892353085', NULL, '', 'Live', '', 'DPF0087-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(352, 238, 'DPF0087-04', 'DPF0087', 'Kilpa', 'Amit', 'Premji', 106, NULL, '', 'F', 3, 35, NULL, '1976-12-08', NULL, 3, NULL, '155', '', 0, NULL, '7506049954', NULL, '', 'Live', '', 'DPF0087-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(353, 238, 'DPF0087-05', 'DPF0087', 'Vatsal', 'Amit', 'Premji', 106, NULL, '', 'M', 4, 15, NULL, '2004-08-11', NULL, 2, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0087-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(354, 239, 'DPF0088-01', 'DPF0088', 'Bhogilal', 'Velji', 'Palan', 106, NULL, '', 'M', 3, 22, NULL, '1953-11-11', NULL, 3, NULL, '216', '', 0, NULL, '8291813246', NULL, '', 'Live', '', 'DPF0088-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(355, 239, 'DPF0088-02', 'DPF0088', 'Bhavna', 'Bhogilal', 'Velji', 106, NULL, '', 'F', 1, 28, NULL, '1962-06-06', NULL, 3, NULL, '256', '', 0, NULL, '9167433932', NULL, '', 'Live', '', 'DPF0088-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(356, 240, 'DPF0089-01', 'DPF0089', 'Haresh', 'Velji', 'Palan', 106, NULL, '', 'M', 3, 22, NULL, '1969-05-22', NULL, 3, NULL, '262', '', 0, NULL, '9833553257', NULL, '', 'Live', '', 'DPF0089-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(357, 240, 'DPF0089-02', 'DPF0089', 'Raksha', 'Haresh', 'Velji', 106, NULL, '', 'F', 1, 28, NULL, '1972-02-06', NULL, 3, NULL, '256', '', 0, NULL, '9819124270', NULL, '', 'Live', '', 'DPF0089-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(358, 240, 'DPF0089-03', 'DPF0089', 'Vinit', 'Haresh', 'Velji', 106, NULL, '', 'M', 5, 25, NULL, '1995-07-23', NULL, 2, NULL, '114', '', 0, NULL, '8108848488', NULL, '', 'Live', '', 'DPF0089-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(359, 240, 'DPF0089-04', 'DPF0089', 'Pratik', 'Haresh', 'Velji', 106, NULL, '', 'M', 5, 25, NULL, '1997-11-25', NULL, 2, NULL, '217', '', 0, NULL, '7208343822', NULL, '', 'Live', '', 'DPF0089-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(360, 241, 'DPF0090-01', 'DPF0090', 'Ramesh', 'Velji', 'Palan', 106, NULL, '', 'M', 3, 22, NULL, '1957-03-19', NULL, 3, NULL, '262', '', 0, NULL, '9820292024', NULL, '', 'Live', '', 'DPF0090-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(361, 241, 'DPF0090-02', 'DPF0090', 'Taraben', 'Ramesh', 'Velji', 106, NULL, '', 'F', 0, 28, NULL, '1959-08-22', NULL, 3, NULL, '256', '', 0, NULL, '9967481149', NULL, '', 'Live', '', 'DPF0090-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(362, 241, 'DPF0090-03', 'DPF0090', 'Jigar', 'Ramesh', 'Velji', 106, NULL, '', 'M', 5, 25, NULL, '1981-12-03', NULL, 3, NULL, '214', '', 0, NULL, '9870602700', NULL, '<EMAIL>', 'Live', '', 'DPF0090-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(363, 241, 'DPF0090-04', 'DPF0090', 'Sejal', 'Jigar', 'Ramesh', 106, NULL, '', 'F', 3, 35, NULL, '1986-01-12', NULL, 3, NULL, '214', '', 0, NULL, '9619743567', NULL, '<EMAIL>', 'Live', '', 'DPF0090-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(364, 241, 'DPF0090-05', 'DPF0090', 'Darshi', 'Jigar', 'Ramesh', 106, NULL, '', 'F', 0, 10, NULL, '2010-11-18', NULL, 2, NULL, '180', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0090-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(365, 242, 'DPF0091-01', 'DPF0091', 'Jatin', 'Ramesh', 'Velji', 106, NULL, '', 'M', 0, 22, NULL, '1980-03-14', NULL, 3, NULL, '256', '', 0, NULL, '8291725216', NULL, '', 'Live', '', 'DPF0091-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(366, 242, 'DPF0091-02', 'DPF0091', 'Charul', 'Jatin', 'Ramesh', 106, NULL, '', 'F', 3, 28, NULL, '1982-06-16', NULL, 3, NULL, '256', '', 0, NULL, '9172195068', NULL, '<EMAIL>', 'Live', '', 'DPF0091-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(367, 242, 'DPF0091-03', 'DPF0091', 'Arya', 'Jatin', 'Ramesh', 106, NULL, '', 'M', 3, 25, NULL, '2005-04-09', NULL, 2, NULL, '263', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0091-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(368, 242, 'DPF0091-04', 'DPF0091', 'Siddhi', 'Jatin', 'Ramesh', 106, NULL, '', 'F', 3, 6, NULL, '2006-05-20', NULL, 2, NULL, '268', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0091-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(369, 243, 'DPF0092-01', 'DPF0092', 'Kirit', 'Ramji', 'Kanji', 106, NULL, '', 'M', 5, 22, NULL, '1966-08-14', NULL, 3, NULL, '256', '', 0, NULL, '9820347162', NULL, '', 'Live', '', 'DPF0092-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(370, 243, 'DPF0092-02', 'DPF0092', 'Rita', 'Kirit', 'Ramji', 106, NULL, '', 'F', 3, 28, NULL, '1968-05-11', NULL, 3, NULL, '216', '', 0, NULL, '9930639976', NULL, '<EMAIL>', 'Live', '', 'DPF0092-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(371, 243, 'DPF0092-03', 'DPF0092', 'Hemali', 'Kirit', 'Ramji', 106, NULL, '', 'F', 5, 6, NULL, '1990-03-09', NULL, 2, NULL, '214', '', 0, NULL, '', NULL, '<EMAIL>', 'Live', '', 'DPF0092-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(372, 243, 'DPF0092-04', 'DPF0092', 'Chirag', 'Kirit', 'Ramji', 106, NULL, '', 'M', 5, 25, NULL, '1994-06-02', NULL, 2, NULL, '214', '', 18, NULL, '8080845770', NULL, '<EMAIL>', 'Live', '', 'DPF0092-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(373, 244, 'DPF0093-01', 'DPF0093', 'Devendra', 'Ramji', 'Kanji', 106, NULL, '', 'M', 5, 22, NULL, '1968-10-06', NULL, 3, NULL, '282', '', 8, NULL, '9821288292', NULL, '', 'Live', '', 'DPF0093-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(374, 244, 'DPF0093-02', 'DPF0093', 'Geeta', 'Devendra', 'Ramji', 106, NULL, '', 'F', 5, 28, NULL, '1977-07-20', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0093-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(375, 244, 'DPF0093-03', 'DPF0093', 'Anuj', 'Devendra', 'Ramji', 106, NULL, '', 'M', 5, 25, NULL, '2001-04-23', NULL, 2, NULL, '261', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0093-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(376, 244, 'DPF0093-04', 'DPF0093', 'Vidhi', 'Devendra', 'Ramji', 106, NULL, '', 'F', 5, 6, NULL, '2008-04-09', NULL, 2, NULL, '237', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0093-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(377, 244, 'DPF0093-05', 'DPF0093', 'Khetbai', 'Ramji', 'Kanji', 106, NULL, '', 'F', 5, 17, NULL, '0000-00-00', NULL, 3, NULL, '263', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0093-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(378, 245, 'DPF0094-01', 'DPF0094', 'Praful', 'Ramji', 'Kanji', 106, NULL, '', 'M', 0, 22, NULL, '1962-02-22', NULL, 3, NULL, '262', '', 0, NULL, '9702881789', NULL, '', 'Live', '', '', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(379, 245, 'DPF0094-02', 'DPF0094', 'Ganga', 'Praful', 'Ramji', 106, NULL, '', 'F', 0, 28, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '9867180155', NULL, '', 'Live', '', '', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(380, 245, 'DPF0094-03', 'DPF0094', 'Sonali', 'Praful', 'Ramji', 106, NULL, '', 'F', 0, 6, NULL, '1996-11-19', NULL, 2, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', '', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(381, 245, 'DPF0094-04', 'DPF0094', 'Poonam', 'Praful', 'Ramji', 106, NULL, '', 'F', 0, 25, NULL, '2004-05-29', NULL, 2, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', '', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(382, 245, 'DPF0094-05', 'DPF0094', 'Harsh', 'Praful', 'Ramji', 106, NULL, '', 'M', 0, 25, NULL, '2010-06-16', NULL, 2, NULL, '180', '', 0, NULL, '', NULL, '', 'Live', '', '', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(383, 246, 'DPF0095-01', 'DPF0095', 'Kusumben', 'Kunvarji', 'Kanji', 106, NULL, '', 'F', 5, 22, NULL, '1945-12-15', NULL, 3, NULL, '216', '', 0, NULL, '8446985123', NULL, '', 'Live', '', 'DPF0095-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(384, 246, 'DPF0095-02', 'DPF0095', 'Bharat', 'Kunvarji', 'Kanji', 106, NULL, '', 'M', 5, 25, NULL, '1976-01-01', NULL, 3, NULL, '216', '', 0, NULL, '9860433565', NULL, '', 'Live', '', 'DPF0095-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(385, 246, 'DPF0095-03', 'DPF0095', 'Manisha', 'Bharat', 'Kunvarji', 106, NULL, '', 'F', 4, 35, NULL, '1976-08-26', NULL, 3, NULL, '216', '', 0, NULL, '8976760955', NULL, '', 'Live', '', 'DPF0095-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(386, 247, 'DPF0096-01', 'DPF0096', 'Bhagvatiben', 'Nemji', 'Kanji', 106, NULL, '', 'F', 5, 22, NULL, '1952-11-21', NULL, 3, NULL, '216', '', 0, NULL, '9561254676', NULL, '', 'Live', '', 'DPF0096-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(387, 247, 'DPF0096-02', 'DPF0096', 'Bhavesh', 'Nemji', 'Kanji', 106, NULL, '', 'M', 5, 25, NULL, '1973-01-04', NULL, 3, NULL, '217', '', 0, NULL, '9923291135', NULL, '', 'Live', '', 'DPF0096-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(388, 247, 'DPF0096-03', 'DPF0096', 'Minal', 'Bhavesh', 'Nemji', 106, NULL, '', 'F', 6, 35, NULL, '1978-06-21', NULL, 3, NULL, '259', '', 0, NULL, '9987070010', NULL, '<EMAIL>', 'Live', '', 'DPF0096-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(389, 247, 'DPF0096-04', 'DPF0096', 'Deep', 'Bhavesh', 'Nemji', 106, NULL, '', 'M', 5, 15, NULL, '2002-12-14', NULL, 2, NULL, '282', '', 0, NULL, '', NULL, '<EMAIL>', 'Live', '', 'DPF0096-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(390, 247, 'DPF0096-05', 'DPF0096', 'Diya', 'Bhavesh', 'Nemji', 106, NULL, '', 'F', 5, 10, NULL, '2004-11-21', NULL, 2, NULL, '263', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0096-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(391, 247, 'DPF0096-06', 'DPF0096', 'Jay', 'Nemji', 'Kanji', 106, NULL, '', 'M', 5, 25, NULL, '1982-05-14', NULL, 3, NULL, '249', '', 0, NULL, '9986827882', NULL, 'jay.nmaru<EMAIL>', 'Live', '', 'DPF0096-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(392, 247, 'DPF0096-07', 'DPF0096', 'Prachi', 'Jay', 'Nemji', 106, NULL, '', 'F', 5, 35, NULL, '1984-12-05', NULL, 3, NULL, '249', '', 0, NULL, '9916903390', NULL, '<EMAIL>', 'Live', '', 'DPF0096-07.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(393, 248, 'DPF0097-01', 'DPF0097', 'Shamji', 'Kanji', 'Mona', 106, NULL, '', 'M', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0097-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(394, 248, 'DPF0097-02', 'DPF0097', 'Rekhaben', 'Shamji', 'Kanji', 106, NULL, '', 'F', 0, 28, NULL, '1964-06-21', NULL, 3, NULL, '257', '', 0, NULL, '9978863759', NULL, '', 'Live', '', 'DPF0097-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(395, 248, 'DPF0097-03', 'DPF0097', 'Jinesh', 'Shamji', 'Kanji', 106, NULL, '', 'M', 0, 25, NULL, '1984-02-27', NULL, 2, NULL, '257', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0097-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(396, 248, 'DPF0097-04', 'DPF0097', 'Nirav', 'Shamji', 'Kanji', 106, NULL, '', 'M', 0, 25, NULL, '1985-01-25', NULL, 3, NULL, '216', '', 0, NULL, '9979339966', NULL, '<EMAIL>', 'Live', '', 'DPF0097-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(397, 248, 'DPF0097-05', 'DPF0097', 'Priti', 'Nirav', 'Shamji', 106, NULL, '', 'F', 0, 35, NULL, '1988-08-10', NULL, 3, NULL, '257', '', 0, NULL, '8141020302', NULL, '', 'Live', '', 'DPF0097-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(398, 248, 'DPF0097-06', 'DPF0097', 'Dharvay', 'Nirav', 'Shamji', 106, NULL, '', 'M', 0, 15, NULL, '2012-06-05', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', '', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(399, 249, 'DPF0098-01', 'DPF0098', 'Ratanben', 'Ramji', 'Ravji', 106, NULL, '', 'F', 0, 22, NULL, '1946-01-20', NULL, 2, NULL, '257', '', 0, NULL, '9537477418', NULL, '', 'Live', '', 'DPF0098-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(400, 250, 'DPF0099-01', 'DPF0099', 'Raghavji', 'Ramji', 'Ravji', 106, NULL, '', 'M', 5, 22, NULL, '1951-04-21', NULL, 3, NULL, '216', '', 0, NULL, '9870615209', NULL, '', 'Live', '', 'DPF0099-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(401, 250, 'DPF0099-02', 'DPF0099', 'Rasila', 'Raghavji', 'Ramji', 106, NULL, '', 'F', 5, 28, NULL, '1954-01-13', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0099-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(402, 250, 'DPF0099-03', 'DPF0099', 'Vipul', 'Raghavji', 'Ramji', 106, NULL, '', 'M', 5, 25, NULL, '1977-10-03', NULL, 3, NULL, '259', '', 0, NULL, '9821173227', NULL, '<EMAIL>', 'Live', '', 'DPF0099-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(403, 250, 'DPF0099-04', 'DPF0099', 'Pratiksha', 'Vipul', 'Raghavji', 106, NULL, '', 'F', 5, 35, NULL, '1978-04-06', NULL, 3, NULL, '250', '', 0, NULL, '9820566213', NULL, '', 'Live', '', 'DPF0099-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(404, 250, 'DPF0099-05', 'DPF0099', 'Drashti', 'Vipul', 'Raghavji', 106, NULL, '', 'F', 5, 10, NULL, '2001-05-19', NULL, 2, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0099-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(405, 250, 'DPF0099-06', 'DPF0099', 'Pal', 'Vipul', 'Raghavji', 106, NULL, '', 'F', 5, 10, NULL, '2007-06-22', NULL, 2, NULL, '264', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0099-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(406, 250, 'DPF0099-07', 'DPF0099', 'Dipesh', 'Raghavji', 'Ramji', 106, NULL, '', 'M', 5, 25, NULL, '1982-10-03', NULL, 3, NULL, '259', '', 0, NULL, '9870642326', NULL, '', 'Live', '', 'DPF0099-07.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(407, 250, 'DPF0099-08', 'DPF0099', 'Neha', 'Dipesh', 'Raghavji', 106, NULL, '', 'F', 3, 35, NULL, '1982-07-31', NULL, 3, NULL, '250', '', 0, NULL, '7066162375', NULL, '', 'Live', '', 'DPF0099-08.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(408, 250, 'DPF0099-09', 'DPF0099', 'Diya', 'Dipesh', 'Raghavji', 106, NULL, '', 'F', 3, 10, NULL, '2008-10-13', NULL, 2, NULL, '236', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0099-09.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(409, 251, 'DPF0100-01', 'DPF0100', 'Premji', 'Ramji', 'Ravji', 106, NULL, '', 'M', 5, 22, NULL, '1954-03-20', NULL, 3, NULL, '256', '', 0, NULL, '9619906211', NULL, '', 'Live', '', 'DPF0100-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(410, 251, 'DPF0100-02', 'DPF0100', 'Pritiben', 'Premji', 'Ramji', 106, NULL, '', 'F', 5, 28, NULL, '1960-01-16', NULL, 3, NULL, '256', '', 0, NULL, '9819399511', NULL, '', 'Live', '', 'DPF0100-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(411, 251, 'DPF0100-03', 'DPF0100', 'Pritesh', 'Premji', 'Ramji', 106, NULL, '', 'M', 5, 25, NULL, '1985-11-09', NULL, 3, NULL, '216', '', 0, NULL, '9819266211', NULL, '<EMAIL>', 'Live', '', 'DPF0100-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(412, 251, 'DPF0100-04', 'DPF0100', 'Deepa', 'Pritesh', 'Premji', 106, NULL, '', 'F', 5, 35, NULL, '1987-12-27', NULL, 3, NULL, '217', '', 0, NULL, '976938771', NULL, '<EMAIL>', 'Live', '', 'DPF0100-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(413, 251, 'DPF0100-05', 'DPF0100', 'Manan', 'Pritesh', 'Premji', 106, NULL, '', 'M', 5, 15, NULL, '2009-11-12', NULL, 2, NULL, '237', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0100-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(414, 252, 'DPF0101-01', 'DPF0101', 'Manilal', 'Ramji', 'Ravji', 106, NULL, '', 'M', 5, 22, NULL, '1956-05-19', NULL, 3, NULL, '216', '', 0, NULL, '9821006361', NULL, '', 'Live', '', 'DPF0101-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(415, 252, 'DPF0101-02', 'DPF0101', 'Naliniben', 'Manilal', 'Ramji', 106, NULL, '', 'F', 5, 28, NULL, '1959-11-02', NULL, 3, NULL, '24', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0101-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(416, 252, 'DPF0101-03', 'DPF0101', 'Paras', 'Manilal', 'Ramji', 106, NULL, '', 'M', 5, 25, NULL, '1987-10-20', NULL, 2, NULL, '226', '', 0, NULL, '9029006362', NULL, '', 'Live', '', 'DPF0101-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(417, 253, 'DPF0102-01', 'DPF0102', 'Mansukh', 'Ramji', 'Ravji', 106, NULL, '', 'M', 3, 22, NULL, '1957-06-01', '2011-08-08', 3, NULL, '216', '', 0, NULL, '9930035213', NULL, '', 'Death', '', 'DPF0102-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(418, 253, 'DPF0102-02', 'DPF0102', 'Taruna', 'Mansukh', 'Ramji', 106, NULL, '', 'F', 1, 28, NULL, '1968-02-20', NULL, 3, NULL, '216', '', 0, NULL, '9619312747', NULL, '', 'Live', '', 'DPF0102-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(419, 253, 'DPF0102-03', 'DPF0102', 'Pratik', 'Mansukh', 'Ramji', 106, NULL, '', 'M', 0, 25, NULL, '1986-12-24', NULL, 3, NULL, '259', '', 0, NULL, '9833025640', NULL, '', 'Live', '', 'DPF0102-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(420, 253, 'DPF0102-04', 'DPF0102', 'Charmi', 'Pratik', 'Mansukh', 106, NULL, '', 'F', 3, 35, NULL, '1986-07-27', NULL, 3, NULL, '251', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0102-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(421, 253, 'DPF0102-05', 'DPF0102', 'Parin', 'Mansukh', 'Ramji', 106, NULL, '', 'M', 7, 15, NULL, '1989-09-02', NULL, 2, NULL, '252', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0102-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(422, 254, 'DPF0103-01', 'DPF0103', 'Chanchalben', 'Bhavanji', 'Ravji', 106, NULL, '', 'F', 4, 22, NULL, '1933-08-08', NULL, 3, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0103-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(423, 254, 'DPF0103-02', 'DPF0103', 'Laxmichand', 'Bhavanji', 'Ravji', 106, NULL, '', 'M', 3, 25, NULL, '1952-03-03', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0103-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(424, 254, 'DPF0103-03', 'DPF0103', 'Hemlata', 'Laxmichand', 'Bhavanji', 106, NULL, '', 'F', 5, 35, NULL, '1956-01-27', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0103-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(425, 254, 'DPF0103-04', 'DPF0103', 'Dipesh', 'Laxmichand', 'Bhavanji', 106, NULL, '', 'M', 3, 15, NULL, '1984-05-26', NULL, 2, NULL, '259', '', 0, NULL, '9987342413', NULL, '', 'Live', '', 'DPF0103-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(426, 254, 'DPF0103-05', 'DPF0103', 'Nikita', 'Laxmichand', 'Bhavanji', 106, NULL, '', 'F', 3, 10, NULL, '1991-05-01', NULL, 2, NULL, '259', '', 0, NULL, '9619642040', NULL, '', 'Live', '', 'DPF0103-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(427, 254, 'DPF0103-06', 'DPF0103', 'Ranjanben', 'Bhavanji', 'Ravji', 106, NULL, '', 'F', 3, 6, NULL, '1963-06-16', NULL, 2, NULL, '256', '', 0, NULL, '9930151593', NULL, '', 'Live', '', 'DPF0103-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(428, 255, 'DPF0104-01', 'DPF0104', 'Mulchand', 'Bhavanji', 'Ravji', 106, NULL, '', 'M', 3, 22, NULL, '1955-03-31', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0104-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(429, 255, 'DPF0104-02', 'DPF0104', 'Chetna', 'Mulchand', 'Bhavanji', 106, NULL, '', 'F', 3, 28, NULL, '1961-05-11', NULL, 3, NULL, '216', '', 0, NULL, '9167193819', NULL, '', 'Live', '', 'DPF0104-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(430, 255, 'DPF0104-03', 'DPF0104', 'Dipak', 'Mulchand', 'Bhavanji', 106, NULL, '', 'M', 3, 25, NULL, '1986-08-24', NULL, 2, NULL, '230', '', 0, NULL, '9322607142', NULL, '<EMAIL>', 'Live', '', 'DPF0104-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(431, 255, 'DPF0104-04', 'DPF0104', 'Virangi', 'Mulchand', 'Bhavanji', 106, NULL, '', 'F', 3, 6, NULL, '1993-09-08', NULL, 2, NULL, '202', '', 0, NULL, '', NULL, '<EMAIL>', 'Live', '', 'DPF0104-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(432, 256, 'DPF0105-01', 'DPF0105', 'Dhiraj', 'Bhavanji', 'Ravji', 106, NULL, '', 'M', 5, 22, NULL, '1969-06-17', NULL, 3, NULL, '216', '', 0, NULL, '9867476623', NULL, '', 'Live', '', 'DPF0105-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(433, 256, 'DPF0105-02', 'DPF0105', 'Shweta', 'Dhiraj', 'Bhavanji', 106, NULL, '', 'F', 3, 28, NULL, '1982-04-30', NULL, 3, NULL, '200', '', 0, NULL, '9773300356', NULL, '', 'Live', '', 'DPF0105-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(434, 257, 'DPF0106-01', 'DPF0106', 'Manjulaben', 'Nagji', 'Ravji', 106, NULL, '', 'F', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '258', '', 0, NULL, '9869827716', NULL, '', 'Live', '', 'DPF0106-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(435, 257, 'DPF0106-02', 'DPF0106', 'Heena', '', 'Nagji', 106, NULL, '', 'F', 0, 35, NULL, '1967-03-22', NULL, 3, NULL, '259', '', 0, NULL, '9819737720', NULL, '', 'Live', '', 'DPF0106-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(436, 257, 'DPF0106-03', 'DPF0106', 'Aniket', '', 'Nagji', 106, NULL, '', 'M', 3, 15, NULL, '1993-09-07', NULL, 2, NULL, '253', '', 0, NULL, '9619418738', NULL, '<EMAIL>', 'Live', '', 'DPF0106-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(437, 257, 'DPF0106-04', 'DPF0106', 'Venil', '', 'Nagji', 106, NULL, '', 'M', 0, 15, NULL, '1996-10-02', NULL, 2, NULL, '254', '', 0, NULL, '8767106171', NULL, '<EMAIL>', 'Live', '', 'DPF0106-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(438, 258, 'DPF0107-01', 'DPF0107', 'Jitendra', 'Nagji', 'Velji', 106, NULL, '', 'M', 0, 22, NULL, '1974-06-09', NULL, 3, NULL, '216', '', 0, NULL, '9867312220', NULL, '', 'Live', '', 'DPF0107-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(439, 258, 'DPF0107-02', 'DPF0107', 'Bhavna', 'Jitendra', 'Nagji', 106, NULL, '', 'F', 0, 28, NULL, '1978-09-11', NULL, 3, NULL, '214', '', 0, NULL, '9987769926', NULL, '', 'Live', '', 'DPF0107-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(440, 258, 'DPF0107-03', 'DPF0107', 'Palak', 'Jitendra', 'Nagji', 106, NULL, '', 'F', 0, 6, NULL, '2007-05-26', NULL, 2, NULL, '264', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0107-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(441, 258, 'DPF0107-04', 'DPF0107', 'Dhairya', 'Jitendra', 'Nagji', 106, NULL, '', 'M', 0, 25, NULL, '2008-09-09', NULL, 2, NULL, '236', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0107-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(442, 259, 'DPF0108-01', 'DPF0108', 'Vinod', 'Laxmichand', 'Devshi', 106, NULL, '', 'M', 5, 22, NULL, '1967-05-09', NULL, 3, NULL, '256', '', 8, NULL, '9221931596', NULL, '<EMAIL>', 'Live', '', 'DPF0108-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(443, 259, 'DPF0108-02', 'DPF0108', 'Meeta', 'Vinod', 'Laxmichand', 106, NULL, '', 'F', 5, 28, NULL, '1974-01-11', NULL, 3, NULL, '256', '', 0, NULL, '9892658654', NULL, '', 'Live', '', 'DPF0108-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(444, 259, 'DPF0108-03', 'DPF0108', 'Viral', 'Vinod', 'Laxmichand', 106, NULL, '', 'M', 5, 25, NULL, '1997-04-11', NULL, 2, NULL, '262', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0108-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(445, 259, 'DPF0108-04', 'DPF0108', 'Yashvi', 'Vinod', 'Laxmichand', 106, NULL, '', 'F', 5, 6, NULL, '2004-12-11', NULL, 2, NULL, '263', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0108-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(446, 260, 'DPF0109-01', 'DPF0109', 'Dinesh', 'Laxmichand', 'Devshi', 106, NULL, '', 'M', 5, 22, NULL, '1962-04-04', NULL, 3, NULL, '263', '', 0, NULL, '9987222798', NULL, '', 'Live', '', 'DPF0109-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(447, 260, 'DPF0109-02', 'DPF0109', 'Jyoti', 'Dinesh', 'Laxmichand', 106, NULL, '', 'F', 5, 28, NULL, '1959-03-15', NULL, 3, NULL, '259', '', 0, NULL, '9892658456', NULL, '', 'Live', '', 'DPF0109-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(448, 261, 'DPF0110-01', 'DPF0110', 'Tokershi', 'Devshi', 'Raymal', 106, NULL, '', 'M', 0, 22, NULL, '1939-03-23', NULL, 3, NULL, '256', '', 0, NULL, '8866202097', NULL, '', 'Live', '', 'DPF0110-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(449, 261, 'DPF0110-02', 'DPF0110', 'Hansaben', 'Tokershi', 'Devshi', 106, NULL, '', 'F', 0, 28, NULL, '1949-05-31', NULL, 3, NULL, '282', '', 0, NULL, '8866202097', NULL, '', 'Live', '', 'DPF0110-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(450, 261, 'DPF0110-03', 'DPF0110', 'Bharat', 'Tokershi', 'Devshi', 106, NULL, '', 'M', 0, 25, NULL, '1972-05-03', NULL, 3, NULL, '216', '', 0, NULL, '9825280573', NULL, '', 'Live', '', 'DPF0110-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(451, 261, 'DPF0110-04', 'DPF0110', 'Deepak', 'Tokershi', 'Devshi', 106, NULL, '', 'M', 3, 25, NULL, '1977-06-11', NULL, 3, NULL, '216', '', 0, NULL, '9324523589', NULL, '', 'Live', '', 'DPF0110-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(452, 261, 'DPF0110-05', 'DPF0110', 'Beena', 'Deepak', 'Tokershi', 106, NULL, '', 'F', 3, 35, NULL, '1978-09-23', NULL, 3, NULL, '216', '', 0, NULL, '9322162191', NULL, '', 'Live', '', 'DPF0110-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(453, 261, 'DPF0110-06', 'DPF0110', 'Maitrik', 'Deepak', 'Tokershi', 106, NULL, '', 'M', 3, 15, NULL, '2000-08-03', NULL, 2, NULL, '261', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0110-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(454, 261, 'DPF0110-07', 'DPF0110', 'Subham', 'Deepak', 'Tokershi', 106, NULL, '', 'M', 3, 15, NULL, '2004-06-10', NULL, 2, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0110-07.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(455, 262, 'DPF0111-01', 'DPF0111', 'Javerben', 'Monshi', 'Palan', 106, NULL, '', 'F', 0, 22, NULL, '1932-06-10', NULL, 3, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0111-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(456, 262, 'DPF0111-02', 'DPF0111', 'Mahendra', 'Monshi', 'Palan', 106, NULL, '', 'M', 3, 25, NULL, '1961-03-27', NULL, 3, NULL, '214', '', 0, NULL, '9820477006', NULL, '', 'Live', '', 'DPF0111-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(457, 262, 'DPF0111-03', 'DPF0111', 'Varsha', 'Mahendra', 'Monshi', 106, NULL, '', 'F', 3, 35, NULL, '0000-00-00', NULL, 3, NULL, '216', '', 0, NULL, '9820477006', NULL, '', 'Live', '', 'DPF0111-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(458, 262, 'DPF0111-04', 'DPF0111', 'Tinisha', 'Mahendra', 'Monshi', 106, NULL, '', 'F', 3, 10, NULL, '1991-10-06', NULL, 2, NULL, '259', '', 0, NULL, '', NULL, '<EMAIL>', 'Live', '', 'DPF0111-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(459, 262, 'DPF0111-05', 'DPF0111', 'Avani', 'Mahendra', 'Monshi', 106, NULL, '', 'F', 3, 10, NULL, '1992-11-09', NULL, 2, NULL, '255', '', 0, NULL, '8286239523', NULL, '', 'Live', '', 'DPF0111-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(460, 262, 'DPF0111-06', 'DPF0111', 'Rachit', 'Mahendra', 'Monshi', 106, NULL, '', 'M', 3, 15, NULL, '1994-12-05', NULL, 2, NULL, '259', '', 0, NULL, '9664304060', NULL, '', 'Live', '', 'DPF0111-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL);
INSERT INTO `family_member` (`id`, `family_id`, `member_no`, `family_no`, `first_name`, `second_name`, `third_name`, `surname_id`, `other_surname_details`, `regd_id`, `sex`, `blood_id`, `relation_id`, `other_relation_details`, `dob`, `dod`, `marriage_type`, `dom`, `education_id`, `other_education_details`, `occupation_id`, `other_occupation_details`, `contact`, `altcontact`, `email`, `live_type`, `member_type`, `image`, `life_insurance`, `life_insurance_text`, `medical_insurance`, `sanjeevni`, `medical_insurance_text`, `sports_id`, `other_sports_details`, `achivements`, `dharmik_id`, `username`, `password`, `fm_status`, `old_value`, `new_value`, `merge_status`, `merge_flag`, `merge_data`, `merge_user_data`, `added_on`, `updated_on`, `deleted`, `delete_reason`, `deleted_on`) VALUES
(461, 263, 'DPF0112-01', '<PASSWORD>', 'Vimlaben', 'Premji', 'Umershi', 106, NULL, '', 'F', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0112-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(462, 263, 'DPF0112-02', 'DPF0112', 'Sanjay', 'Premji', 'Umershi', 106, NULL, '', 'M', 3, 25, NULL, '1973-11-05', NULL, 3, NULL, '214', '', 0, NULL, '8600755295', NULL, '', 'Live', '', 'DPF0112-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(463, 263, 'DPF0112-03', 'DPF0112', 'Sneha', 'Sanjay', 'Premji', 106, NULL, '', 'F', 0, 35, NULL, '1978-04-30', NULL, 3, NULL, '24', '', 0, NULL, '', NULL, '', 'Live', '', '', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(464, 263, 'DPF0112-04', 'DPF0112', 'Kushi', 'Sanjay', 'Premji', 106, NULL, '', 'F', 0, 10, NULL, '2005-12-06', NULL, 2, NULL, '268', '', 0, NULL, '', NULL, '', 'Live', '', '', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(465, 263, 'DPF0112-05', 'DPF0112', 'Dhruv', 'Sanjay', 'Premji', 106, NULL, '', 'M', 0, 15, NULL, '2009-09-27', NULL, 2, NULL, '237', '', 0, NULL, '', NULL, '', 'Live', '', '', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(466, 264, 'DPF0113-01', 'DPF0113', 'Rukshmaniben', 'Vasanji', 'Kurpar', 106, NULL, '', 'F', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0113-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(467, 264, 'DPF0113-02', 'DPF0113', 'Naresh', 'Vasanji', 'Kurpar', 106, NULL, '', 'M', 0, 25, NULL, '1961-05-31', NULL, 2, NULL, '287', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0113-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(468, 264, 'DPF0113-03', 'DPF0113', 'Harsha', 'Vasanji', 'Kurpar', 106, NULL, '', 'F', 0, 6, NULL, '1965-11-15', NULL, 2, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0113-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(469, 265, 'DPF0114-01', 'DPF0114', 'Mahesh', 'Vasanji', 'Kurpar', 106, NULL, '', 'M', 5, 22, NULL, '1959-02-23', NULL, 3, NULL, '35', '', 0, NULL, '9820419340', NULL, '<EMAIL>', 'Live', '', 'DPF0114-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, 'maheshmaru', '$2a$10$6xt7csIqKXE/q208vKLlFusL2oCBVGGNQJBpyPkiLcGcKYGNSw5dO', 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(470, 265, 'DPF0114-02', 'DPF0114', 'Kusum', 'Mahesh', 'Vasanji', 106, NULL, '', 'F', 3, 28, NULL, '1960-04-03', NULL, 3, NULL, '60', '', 0, NULL, '9819011844', NULL, '<EMAIL>', 'Live', '', 'DPF0114-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(471, 265, 'DPF0114-03', 'DPF0114', 'Shwet', 'Mahesh', 'Vasanji', 106, '', '', 'M', 5, 25, '', '1991-08-26', NULL, 3, '2019-12-08', '1,63', NULL, 8, NULL, '+19292717667', '', '<EMAIL>', 'Live', NULL, 'DPF0114-032.jpg', 0, '', 0, 0, '', '1', NULL, '', 3, NULL, NULL, 1, '[{\"first_name\":\"\",\"second_name\":\"\",\"third_name\":\"\",\"sex\":\"\",\"surname_id\":\"\",\"other_surname_details\":\"\",\"blood_id\":\"\",\"relation_id\":\"\",\"other_relation_details\":\"\",\"marriage_type\":\"\",\"education_id\":null,\"other_education_details\":\"\",\"occupation_id\":\"\",\"other_occupation_details\":\"\",\"dob\":\"\",\"old_dom\":\"\",\"dod\":null,\"contact\":\"\",\"altcontact\":\"\",\"email\":\"\",\"member_type\":null,\"medical_insurance\":\"\",\"achivements\":\"\",\"sports_id\":null,\"other_sports_details\":\"\",\"dharmik_id\":\"0\",\"medical_insurance_text\":\"\",\"life_insurance_text\":\"\",\"sanjeevni\":\"0\",\"life_insurance\":\"0\",\"old_image\":\"\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', '[{\"first_name\":\"Shwet\",\"second_name\":\"Mahesh\",\"third_name\":\"Vasanji\",\"sex\":\"M\",\"surname_id\":\"106\",\"other_surname_details\":\"\",\"blood_id\":\"5\",\"relation_id\":\"25\",\"other_relation_details\":\"\",\"marriage_type\":\"3\",\"education_id\":\"1,63\",\"other_education_details\":null,\"occupation_id\":\"8\",\"other_occupation_details\":null,\"dob\":\"1991-08-26\",\"dom\":\"2019-12-08\",\"dod\":null,\"contact\":\"+19292717667\",\"altcontact\":\"\",\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"0\",\"achivements\":\"\",\"sports_id\":\"1\",\"other_sports_details\":null,\"dharmik_id\":\"3\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"\",\"sanjeevni\":\"0\",\"life_insurance\":\"0\",\"image\":\"DPF0114-032.jpg\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', 0, 0, '', '', '2020-07-31 10:08:27', '2021-07-03 06:03:21', 0, NULL, NULL),
(472, 266, 'DPF0115-01', 'DPF0115', 'Jatin', 'Vasanji', 'Kurpar', 106, NULL, '', 'M', 3, 22, NULL, '1968-02-25', NULL, 3, NULL, '259', '', 19, NULL, '9322799019', NULL, '<EMAIL>', 'Live', '', 'DPF0115-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(473, 266, 'DPF0115-02', 'DPF0115', 'Raksha', 'Jatin', 'Vasanji', 106, NULL, '', 'F', 5, 28, NULL, '1971-11-15', NULL, 3, NULL, '259', '', 0, NULL, '9930242346', NULL, '<EMAIL>', 'Live', '', 'DPF0115-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(474, 267, 'DPF0116-01', 'DPF0116', 'Pravin', 'Kurpar', 'Varjang', 106, NULL, '', 'M', 3, 22, NULL, '1952-05-06', NULL, 3, NULL, '216', '', 0, NULL, '9850220320', NULL, '', 'Live', '', 'DPF0116-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(475, 267, 'DPF0116-02', 'DPF0116', 'Prabha', 'Pravin', 'Kurpar', 106, NULL, '', 'F', 2, 28, NULL, '1954-09-28', NULL, 3, NULL, '216', '', 0, NULL, '9028298202', NULL, '', 'Live', '', 'DPF0116-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(476, 267, 'DPF0116-03', 'DPF0116', 'Sheetal', 'Pravin', 'Kurpar', 106, NULL, '', 'F', 3, 6, NULL, '1977-05-11', NULL, 2, NULL, '259', '', 0, NULL, '9022824941', NULL, '<EMAIL>', 'Live', '', 'DPF0116-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(477, 268, 'DPF0117-01', 'DPF0117', 'Bharat', 'Kurpar', 'Varjang', 106, NULL, '', 'M', 0, 22, NULL, '1955-02-19', NULL, 3, NULL, '262', '', 0, NULL, '8087373284', NULL, '', 'Live', '', 'DPF0117-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(478, 268, 'DPF0117-02', 'DPF0117', 'Bharati', 'Bharat', 'Kurpar', 106, NULL, '', 'F', 0, 28, NULL, '1969-10-21', NULL, 3, NULL, '216', '', 0, NULL, '9225846446', NULL, '', 'Live', '', 'DPF0117-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(479, 268, 'DPF0117-03', 'DPF0117', 'Rahul', 'Bharat', 'Kurpar', 106, NULL, '', 'M', 0, 25, NULL, '1981-03-25', NULL, 2, NULL, '214', '', 0, NULL, '8087373330', NULL, '', 'Live', '', 'DPF0117-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(480, 268, 'DPF0117-04', 'DPF0117', 'Vishal', 'Bharat', 'Kurpar', 106, NULL, '', 'M', 0, 25, NULL, '1986-10-21', NULL, 2, NULL, '217', '', 0, NULL, '9221044666', NULL, '', 'Live', '', 'DPF0117-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(481, 269, 'DPF0118-01', 'DPF0118', 'Rasilaben', 'Manilal', 'Kunvarji', 106, NULL, '', 'F', 3, 22, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0118-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(482, 269, 'DPF0118-02', 'DPF0118', 'Yogesh', 'Manilal', 'Kunvarji', 106, NULL, '', 'M', 5, 25, NULL, '1982-05-08', NULL, 2, NULL, '216', '', 0, NULL, '9820957760', NULL, '', 'Live', '', 'DPF0118-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(483, 269, 'DPF0118-03', 'DPF0118', 'Jayesh', 'Manilal', 'Kunvarji', 106, NULL, '', 'M', 5, 25, NULL, '1984-08-11', NULL, 2, NULL, '216', '', 0, NULL, '9920268880', NULL, '', 'Live', '', 'DPF0118-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(484, 270, 'DPF0119-01', 'DPF0119', 'Praful', 'Bhavanji', 'Velji', 106, NULL, '', 'M', 3, 22, NULL, '1952-06-02', NULL, 3, NULL, '226', '', 20, NULL, '9869770858', NULL, '<EMAIL>', 'Live', '', 'DPF0119-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(485, 270, 'DPF0119-02', 'DPF0119', 'Kusumben', 'Praful', 'Bhavanji', 106, NULL, '', 'F', 3, 28, NULL, '1952-12-30', NULL, 3, NULL, '216', '', 0, NULL, '9757408661', NULL, '', 'Live', '', 'DPF0119-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(486, 270, 'DPF0119-03', 'DPF0119', 'Amit', 'Praful', 'Bhavanji', 106, NULL, '', 'M', 3, 25, NULL, '1979-10-07', NULL, 3, NULL, '220', '', 0, NULL, '9930264910', NULL, '<EMAIL>', 'Live', '', 'DPF0119-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(487, 270, 'DPF0119-04', 'DPF0119', 'Bhavini', 'Amit', 'Praful', 106, NULL, '', 'F', 5, 35, NULL, '1982-05-12', NULL, 3, NULL, '250', '', 0, NULL, '9869285594', NULL, '', 'Live', '', 'DPF0119-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(488, 270, 'DPF0119-05', 'DPF0119', 'Ashish', 'Praful', 'Bhavanji', 106, NULL, '', 'M', 3, 25, NULL, '1983-06-09', NULL, 3, NULL, '259', '', 0, NULL, '9920092773', NULL, '<EMAIL>', 'Live', '', 'DPF0119-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(489, 270, 'DPF0119-06', 'DPF0119', 'Bhakti', 'Ashish', 'Praful', 106, NULL, '', 'F', 5, 35, NULL, '1987-01-27', NULL, 3, NULL, '259', '', 0, NULL, '9930225535', NULL, '', 'Live', '', 'DPF0119-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(490, 271, 'DPF0120-01', 'DPF0120', 'Gangaben', 'Tokershi', 'Velji', 106, NULL, '', 'F', 1, 22, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0120-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(491, 271, 'DPF0120-02', 'DPF0120', 'Manish', 'Tokershi', 'Velji', 106, NULL, '', 'M', 6, 25, NULL, '1969-07-17', NULL, 3, NULL, '216', '', 0, NULL, '9029978454', NULL, '', 'Live', '', 'DPF0120-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(492, 271, 'DPF0120-03', 'DPF0120', 'Savita', 'Manish', 'Tokershi', 106, NULL, '', 'F', 2, 35, NULL, '1984-01-08', NULL, 3, NULL, '216', '', 0, NULL, '9029262740', NULL, '', 'Live', '', 'DPF0120-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(493, 271, 'DPF0120-04', 'DPF0120', 'Meet', 'Manish', 'Tokershi', 106, NULL, '', 'M', 7, 15, NULL, '2010-12-25', NULL, 2, NULL, '180', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0120-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(494, 272, 'DPF0121-01', 'DPF0121', 'Bhaskar', 'Tokershi', 'Velji', 106, NULL, '', 'M', 0, 22, NULL, '1961-02-11', NULL, 3, NULL, '214', '', 0, NULL, '9820855785', NULL, '<EMAIL>', 'Live', '', 'DPF0121-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(495, 272, 'DPF0121-02', 'DPF0121', 'Jayshree', 'Bhaskar', 'Tokershi', 106, NULL, '', 'F', 0, 28, NULL, '1964-11-12', NULL, 3, NULL, '216', '', 0, NULL, '9819552785', NULL, '', 'Live', '', 'DPF0121-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(496, 272, 'DPF0121-03', 'DPF0121', 'Bhavin', 'Bhaskar', 'Tokershi', 106, NULL, '', 'M', 0, 25, NULL, '1987-07-10', NULL, 2, NULL, '259', '', 0, NULL, '9920538648', NULL, '', 'Live', '', 'DPF0121-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(497, 272, 'DPF0121-04', 'DPF0121', 'Sanket', 'Bhaskar', 'Tokershi', 106, NULL, '', 'M', 0, 25, NULL, '1992-02-06', NULL, 2, NULL, '259', '', 0, NULL, '9833510824', NULL, '', 'Live', '', 'DPF0121-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(498, 273, 'DPF0122-01', 'DPF0122', 'Tushar', 'Tokershi', 'Velji', 106, NULL, '', 'M', 4, 22, NULL, '1965-11-22', NULL, 3, NULL, '214', '', 0, NULL, '9594294284', NULL, '', 'Live', '', 'DPF0122-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(499, 273, 'DPF0122-02', 'DPF0122', 'Bharati', 'Tushar', 'Tokershi', 106, NULL, '', 'F', 7, 28, NULL, '1969-10-07', NULL, 3, NULL, '214', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0122-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(500, 273, 'DPF0122-03', 'DPF0122', 'Neha', 'Tushar', 'Tokershi', 106, NULL, '', 'F', 7, 6, NULL, '1994-05-26', NULL, 2, NULL, '288', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0122-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(501, 273, 'DPF0122-04', 'DPF0122', 'Herin', 'Tushar', 'Tokershi', 106, NULL, '', 'M', 4, 25, NULL, '1997-04-16', NULL, 2, NULL, '217', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0122-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(502, 274, 'DPF0123-01', 'DPF0123', 'Mavji', 'Velji', '', 106, NULL, '', 'M', 0, 22, NULL, '1928-12-04', NULL, 3, NULL, '256', '', 7, NULL, '', NULL, '', 'Live', '', '', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(503, 274, 'DPF0123-02', 'DPF0123', 'Sakarben', 'Mavji', 'Velji', 106, NULL, '', 'F', 0, 28, NULL, '1930-11-22', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', '', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(504, 275, 'DPF0124-01', 'DPF0124', 'Induben', 'Vinod', 'Mavji', 106, NULL, '', 'F', 3, 22, NULL, '1956-05-21', NULL, 3, NULL, '216', '', 20, NULL, '9820930668', NULL, '', 'Live', '', 'DPF0124-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(505, 276, 'DPF0125-01', 'DPF0125', 'Kantilala', 'Velji', 'Maya', 106, NULL, '', 'M', 3, 22, NULL, '1942-02-25', NULL, 3, NULL, '256', '', 7, NULL, '9619535311', NULL, '', 'Live', '', 'DPF0125-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(506, 276, 'DPF0125-02', 'DPF0125', 'Zaverben', 'Kantilala', 'Velji', 106, NULL, '', 'F', 7, 28, NULL, '1947-11-20', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0125-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(507, 276, 'DPF0125-03', 'DPF0125', 'Rakesh', 'Kantilala', 'Velji', 106, NULL, '', 'M', 3, 25, NULL, '1976-01-23', NULL, 3, NULL, '216', '', 8, NULL, '9920780669', NULL, '', 'Live', '', 'DPF0125-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(508, 276, 'DPF0125-04', 'DPF0125', 'Deepa', 'Rakesh', 'Kantilala', 106, NULL, '', 'F', 5, 35, NULL, '1978-06-27', NULL, 3, NULL, '259', '', 0, NULL, '9172061544', NULL, '<EMAIL>', 'Live', '', 'DPF0125-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(509, 276, 'DPF0125-05', 'DPF0125', 'Neer', 'Rakesh', 'Kantilala', 106, NULL, '', 'M', 3, 15, NULL, '2003-05-17', NULL, 2, NULL, '12', '', 0, NULL, '', NULL, '<EMAIL>', 'Live', '', 'DPF0125-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(510, 277, 'DPF0126-01', 'DPF0126', 'Sarojben', 'Shantilal', 'Talakshi', 106, NULL, '', 'F', 5, 22, NULL, '1945-01-28', NULL, 3, NULL, '262', '', 0, NULL, '9892976151', NULL, '', 'Live', '', 'DPF0126-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(511, 277, 'DPF0126-02', 'DPF0126', 'Hitesh', 'Shantilal', 'Talakshi', 106, NULL, '', 'M', 6, 25, NULL, '1970-06-08', NULL, 3, NULL, '259', '', 0, NULL, '9869037454', NULL, '<EMAIL>', 'Live', '', 'DPF0126-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(512, 277, 'DPF0126-03', 'DPF0126', 'Vaishali', 'Shantilal', 'Talakshi', 106, NULL, '', 'F', 5, 35, NULL, '1970-10-11', NULL, 3, NULL, '60', '', 0, NULL, '8879381544', NULL, '<EMAIL>', 'Live', '', 'DPF0126-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(513, 277, 'DPF0126-04', 'DPF0126', 'Parth', 'Shantilal', 'Talakshi', 106, NULL, '', 'M', 5, 15, NULL, '1996-03-06', NULL, 2, NULL, '214', '', 0, NULL, '9820350310', NULL, '<EMAIL>', 'Live', '', 'DPF0126-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(514, 277, 'DPF0126-05', 'DPF0126', 'Rushabh', 'Shantilal', 'Talakshi', 106, NULL, '', 'M', 5, 15, NULL, '1999-12-05', NULL, 2, NULL, '262', '', 0, NULL, '', NULL, '<EMAIL>', 'Live', '', 'DPF0126-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(515, 278, 'DPF0127-01', 'DPF0127', 'Vishanji', 'Talakshi', 'Khimji', 106, NULL, '', 'M', 4, 22, NULL, '1941-04-28', NULL, 3, NULL, '216', '', 21, NULL, '9869350801', NULL, '', 'Live', '', 'DPF0127-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(516, 278, 'DPF0127-02', 'DPF0127', 'Rasilaben', 'Vishanji', 'Talakshi', 106, NULL, '', 'F', 5, 28, NULL, '1947-01-22', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0127-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(517, 278, 'DPF0127-03', 'DPF0127', 'Mehul', 'Vishanji', 'Talakshi', 106, NULL, '', 'M', 5, 25, NULL, '1972-11-27', NULL, 3, NULL, '226', '', 0, NULL, '7738087778', NULL, '<EMAIL>', 'Live', '', 'DPF0127-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(518, 278, 'DPF0127-04', 'DPF0127', 'Deepa', 'Mehul', 'Vishanji', 106, NULL, '', 'F', 5, 35, NULL, '1974-10-29', NULL, 3, NULL, '259', '', 0, NULL, '9967519006', NULL, '<EMAIL>', 'Live', '', 'DPF0127-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(519, 278, 'DPF0127-05', 'DPF0127', 'Pankti', 'Mehul', 'Vishanji', 106, NULL, '', 'F', 5, 10, NULL, '2000-08-31', NULL, 2, NULL, '261', '', 0, NULL, '9930219161', NULL, '<EMAIL>', 'Live', '', 'DPF0127-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(520, 279, 'DPF0128-01', 'DPF0128', 'Jayantilal', 'Shamji', 'Khimji', 106, NULL, '', 'M', 0, 22, NULL, '1951-12-27', NULL, 3, NULL, '289', '', 7, NULL, '9821547509', NULL, '', 'Live', '', 'DPF0128-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(521, 279, 'DPF0128-02', 'DPF0128', 'Ketan', 'Jayantilal', 'Shamji', 106, NULL, '', 'M', 0, 25, NULL, '1984-01-17', NULL, 3, NULL, '148', '', 0, NULL, '9820936655', NULL, '<EMAIL>', 'Live', '', 'DPF0128-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(522, 279, 'DPF0128-03', 'DPF0128', 'Urvi', 'Ketan', 'Jayantilal', 106, NULL, '', 'F', 0, 35, NULL, '1985-03-26', NULL, 3, NULL, '148', '', 0, NULL, '9819083607', NULL, '<EMAIL>', 'Live', '', 'DPF0128-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(523, 280, 'DPF0129-01', 'DPF0129', 'Vitesh', 'Jayantilal', 'Shamji', 106, NULL, '', 'M', 7, 22, NULL, '1981-02-12', NULL, 3, NULL, '214', '', 0, NULL, '9619689811', NULL, '<EMAIL>', 'Live', '', 'DPF0129-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(524, 280, 'DPF0129-02', 'DPF0129', 'Hetal', 'Vitesh', 'Jayantilal', 106, NULL, '', 'F', 1, 28, NULL, '1983-10-02', NULL, 3, NULL, '214', '', 0, NULL, '8082788670', NULL, '', 'Live', '', 'DPF0129-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(525, 280, 'DPF0129-03', 'DPF0129', 'Shreya', 'Vitesh', 'Jayantilal', 106, NULL, '', 'F', 7, 6, NULL, '2005-05-02', NULL, 2, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', '', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(526, 281, 'DPF0130-01', 'DPF0130', 'Champaben', 'Vasanji', 'Morarji', 106, NULL, '', 'F', 3, 22, NULL, '1941-03-28', NULL, 3, NULL, '130', '', 0, NULL, '9867878784', NULL, '', 'Live', '', 'DPF0130-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(527, 281, 'DPF0130-02', 'DPF0130', 'Meenal', 'Vasanji', 'Morarji', 106, NULL, '', 'F', 3, 6, NULL, '1976-09-15', NULL, 2, NULL, '259', '', 0, NULL, '98928241424', NULL, '<EMAIL>', 'Live', '', 'DPF0130-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(528, 282, 'DPF0131-01', 'DPF0131', 'Thakarshi', 'Morarji', 'Korshi', 106, NULL, '', 'M', 5, 22, NULL, '1939-11-22', NULL, 3, NULL, '60', '', 0, NULL, '9869167095', NULL, '', 'Live', '', 'DPF0131-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(529, 282, 'DPF0131-02', 'DPF0131', 'Nirmalaben', 'Thakarshi', 'Morarji', 106, NULL, '', 'F', 3, 28, NULL, '1943-02-28', NULL, 3, NULL, '133', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0131-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(530, 282, 'DPF0131-03', 'DPF0131', 'Nayan', 'Thakarshi', 'Morarji', 106, NULL, '', 'M', 3, 25, NULL, '1972-09-14', NULL, 3, NULL, '266', '', 0, NULL, '9820126272', NULL, '<EMAIL>', 'Live', '', 'DPF0131-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(531, 282, 'DPF0131-04', 'DPF0131', 'Mili', 'Nayan', 'Thakarshi', 106, NULL, '', 'F', 4, 35, NULL, '1978-11-23', NULL, 3, NULL, '267', '', 0, NULL, '9320026272', NULL, '<EMAIL>', 'Live', '', 'DPF0131-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(532, 282, 'DPF0131-05', 'DPF0131', 'Kayva', 'Nayan', 'Thakarshi', 106, NULL, '', 'F', 3, 10, NULL, '2006-10-13', NULL, 2, NULL, '268', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0131-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(533, 282, 'DPF0131-06', 'DPF0131', 'Dhairya', 'Nayan', 'Thakarshi', 106, NULL, '', 'M', 3, 25, NULL, '2010-04-05', NULL, 2, NULL, '180', '', 0, NULL, '', NULL, '', 'Live', '', 'DPM000511.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(534, 282, 'DPF0131-07', 'DPF0131', 'Dhruv', 'Nayan', 'Thakarshi', 106, NULL, '', 'M', 3, 25, NULL, '2010-04-05', NULL, 2, NULL, '180', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0131-07.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(535, 283, 'DPF0132-01', 'DPF0132', 'Haresh', 'Tokershi', 'Korshi', 106, NULL, '', 'M', 7, 22, NULL, '1950-08-12', NULL, 3, NULL, '216', '', 0, NULL, '9821640403', NULL, '', 'Live', '', 'DPF0132-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(536, 283, 'DPF0132-02', 'DPF0132', 'Niruben', 'Haresh', 'Tokershi', 106, NULL, '', 'F', 3, 28, NULL, '1957-01-12', NULL, 3, NULL, '216', '', 0, NULL, '9820929424', NULL, '', 'Live', '', 'DPF0132-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(537, 284, 'DPF0133-01', 'DPF0133', 'Jayaben', 'Chunilal', 'Tokershi', 106, NULL, '', 'F', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0133-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(538, 285, 'DPF0134-01', 'DPF0134', '<NAME>)', 'Tokershi', 'Korshi', 106, NULL, '', 'M', 3, 22, NULL, '1945-03-15', NULL, 3, NULL, '226', '', 0, NULL, '9819732059', NULL, '<EMAIL>', 'Live', '', 'DPF0134-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(539, 285, 'DPF0134-02', 'DPF0134', 'Vinaben', 'Manilal', 'Tokershi', 106, NULL, '', 'F', 1, 28, NULL, '1946-11-11', NULL, 3, NULL, '290', '', 0, NULL, '9833616527', NULL, '', 'Live', '', 'DPF0134-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(540, 285, 'DPF0134-03', 'DPF0134', 'Chandresh', 'Manilal', 'Tokershi', 106, NULL, '', 'M', 1, 25, NULL, '1974-05-19', NULL, 3, NULL, '259', '', 0, NULL, '9820232059', NULL, '<EMAIL>', 'Live', '', 'DPF0134-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(541, 285, 'DPF0134-04', 'DPF0134', 'Fanny', 'Chandresh', 'Manilal', 106, NULL, '', 'F', 5, 35, NULL, '1975-09-15', NULL, 3, NULL, '291', '', 0, NULL, '9819332059', NULL, '<EMAIL>', 'Live', '', 'DPF0134-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(542, 285, 'DPF0134-05', 'DPF0134', 'Frreya', 'Chandresh', 'Manilal', 106, NULL, '', 'F', 5, 10, NULL, '2000-06-18', NULL, 2, NULL, '261', '', 0, NULL, '', NULL, '<EMAIL>', 'Live', '', 'DPF0134-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(543, 285, 'DPF0134-06', 'DPF0134', 'Fiona', 'Chandresh', 'Manilal', 106, NULL, '', 'F', 1, 10, NULL, '2008-01-07', NULL, 2, NULL, '236', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0134-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(544, 286, 'DPF0135-01', 'DPF0135', 'Nilesh', 'Manilal', 'Tokershi', 106, NULL, '', 'M', 7, 22, NULL, '1970-09-08', NULL, 3, NULL, '259', '', 0, NULL, '9820100261', NULL, '<EMAIL>', 'Live', '', 'DPF0135-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(545, 286, 'DPF0135-02', 'DPF0135', 'Rashmi', 'Nilesh', 'Manilal', 106, NULL, '', 'F', 5, 28, NULL, '1971-12-14', NULL, 3, NULL, '292', '', 0, NULL, '9820100663', NULL, '<EMAIL>', 'Live', '', 'DPF0135-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(546, 286, 'DPF0135-03', 'DPF0135', 'Karan', 'Nilesh', 'Manilal', 106, NULL, '', 'M', 3, 25, NULL, '2000-11-15', NULL, 2, NULL, '261', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0135-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(547, 287, 'DPF0136-01', 'DPF0136', 'Chandrakant', 'Tokershi', 'Korshi', 106, NULL, '', 'M', 4, 22, NULL, '1947-09-13', NULL, 3, NULL, '261', '', 0, NULL, '9833930639', NULL, '', 'Live', '', 'DPF0136-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(548, 287, 'DPF0136-02', 'DPF0136', 'Urmilaben', 'Chandrakant', 'Tokershi', 106, NULL, '', 'F', 5, 28, NULL, '1949-10-10', NULL, 3, NULL, '293', '', 0, NULL, '8976023024', NULL, '', 'Live', '', 'DPF0136-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(549, 287, 'DPF0136-03', 'DPF0136', 'Kapil', 'Chandrakant', 'Tokershi', 106, NULL, '', 'M', 3, 25, NULL, '1979-05-01', NULL, 3, NULL, '216', '', 0, NULL, '9594909960', NULL, '', 'Live', '', 'DPF0136-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(550, 287, 'DPF0136-04', 'DPF0136', 'Dhurti', 'Kapil', 'Chandrakant', 106, NULL, '', 'F', 3, 35, NULL, '1982-04-14', NULL, 3, NULL, '294', '', 0, NULL, '9820809083', NULL, '<EMAIL>', 'Live', '', 'DPF0136-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(551, 287, 'DPF0136-05', 'DPF0136', 'Prinal', 'Kapil', 'Chandrakant', 106, NULL, '', 'F', 3, 10, NULL, '2009-12-10', NULL, 2, NULL, '237', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0136-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(552, 288, 'DPF0137-01', 'DPF0137', 'Ramesh', 'Tejshi', 'Vijpar', 106, NULL, '', 'M', 6, 22, NULL, '1957-01-06', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0137-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(553, 288, 'DPF0137-02', 'DPF0137', 'Manjulaben', 'Ramesh', 'Tejshi', 106, NULL, '', 'F', 4, 28, NULL, '1962-12-13', NULL, 3, NULL, '261', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0137-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(554, 288, 'DPF0137-03', 'DPF0137', 'Vinil', 'Ramesh', 'Tejshi', 106, NULL, '', 'M', 6, 25, NULL, '1983-05-13', NULL, 3, NULL, '214', '', 0, NULL, '9226333965', NULL, '<EMAIL>', 'Live', '', 'DPF0137-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(555, 288, 'DPF0137-04', 'DPF0137', 'Mansi', 'Vinil', 'Ramesh', 106, NULL, '', 'F', 5, 35, NULL, '1986-07-11', NULL, 3, NULL, '259', '', 0, NULL, '8793626281', NULL, '<EMAIL>', 'Live', '', 'DPF0137-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(556, 288, 'DPF0137-05', 'DPF0137', 'Henil', 'Vinil', 'Ramesh', 106, NULL, '', 'M', 5, 15, NULL, '2011-05-09', NULL, 2, NULL, '196', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0137-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(557, 288, 'DPF0137-06', 'DPF0137', 'Mehul', 'Ramesh', 'Tejshi', 106, NULL, '', 'M', 3, 25, NULL, '1987-01-19', NULL, 3, NULL, '259', '', 0, NULL, '9270320076', NULL, '<EMAIL>', 'Live', '', 'DPF0137-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(558, 288, 'DPF0137-07', 'DPF0137', 'Jinal', 'Mehul', 'Ramesh', 106, NULL, '', 'F', 5, 35, NULL, '1988-08-02', NULL, 3, NULL, '216', '', 0, NULL, '9987012318', NULL, '', 'Live', '', 'DPF0137-07.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(559, 288, 'DPF0137-08', 'DPF0137', 'Khetbai', 'Tejshi', 'Vijpar', 106, NULL, '', 'F', 5, 17, NULL, '1932-02-22', NULL, 3, NULL, '268', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0137-08.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(560, 289, 'DPF0138-01', 'DPF0138', 'Bharat', 'Tejshi', 'Vijpar', 106, NULL, '', 'M', 3, 22, NULL, '1961-01-16', NULL, 3, NULL, '216', '', 0, NULL, '9028259317', NULL, '', 'Live', '', 'DPF0138-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(561, 289, 'DPF0138-02', 'DPF0138', 'Varsha', 'Bharat', 'Tejshi', 106, NULL, '', 'F', 4, 28, NULL, '1966-12-25', NULL, 3, NULL, '261', '', 0, NULL, '7507047775', NULL, '', 'Live', '', 'DPF0138-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(562, 289, 'DPF0138-03', 'DPF0138', 'Pooja', 'Bharat', 'Tejshi', 106, NULL, '', 'F', 3, 6, NULL, '1991-07-16', NULL, 2, NULL, '230', '', 0, NULL, '9637504828', NULL, '<EMAIL>', 'Live', '', 'DPF0138-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(563, 290, 'DPF0139-01', 'DPF0139', 'Arvind', 'Liladhar', 'Vijpar', 106, NULL, '', 'M', 5, 22, NULL, '1959-05-05', NULL, 3, NULL, '216', '', 0, NULL, '7798230043', NULL, '', 'Live', '', 'DPF0139-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(564, 290, 'DPF0139-02', 'DPF0139', 'Harsha', 'Arvind', 'Liladhar', 106, NULL, '', 'F', 5, 28, NULL, '1962-01-22', NULL, 3, NULL, '216', '', 0, NULL, '9270553034', NULL, '', 'Live', '', 'DPF0139-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(565, 290, 'DPF0139-03', 'DPF0139', 'Kaushik', 'Arvind', 'Liladhar', 106, NULL, '', 'M', 5, 25, NULL, '1987-08-21', NULL, 3, NULL, '216', '', 0, NULL, '9028983539', NULL, '<EMAIL>', 'Live', '', 'DPF0139-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(566, 290, 'DPF0139-04', 'DPF0139', 'Dipti', 'Kaushik', 'Arvind', 106, NULL, '', 'F', 5, 35, NULL, '1989-06-28', NULL, 3, NULL, '214', '', 0, NULL, '8087178087', NULL, '', 'Live', '', 'DPF0139-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(567, 290, 'DPF0139-05', 'DPF0139', 'Ansh', 'Kaushik', 'Arvind', 106, NULL, '', 'M', 5, 15, NULL, '2010-08-31', NULL, 2, NULL, '180', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0139-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(568, 291, 'DPF0140-01', 'DPF0140', 'Jyotiben', 'Jayant', 'Liladhar', 106, NULL, '', 'F', 5, 22, NULL, '1968-12-07', NULL, 3, NULL, '216', '', 0, NULL, '9819244571', NULL, '', 'Live', '', 'DPF0140-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(569, 291, 'DPF0140-02', 'DPF0140', 'Mansi', 'Jayant', 'Liladhar', 106, NULL, '', 'F', 5, 6, NULL, '1994-03-25', NULL, 2, NULL, '214', '', 0, NULL, '9619754021', NULL, '', 'Live', '', 'DPF0140-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(570, 291, 'DPF0140-03', 'DPF0140', 'Khushbu', 'Jayant', 'Liladhar', 106, NULL, '', 'F', 5, 6, NULL, '1996-07-30', NULL, 2, NULL, '214', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0140-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(571, 292, 'DPF0141-01', 'DPF0141', 'Nitin', 'Liladhar', 'Vijpar', 106, NULL, '', 'M', 5, 22, NULL, '1963-10-20', NULL, 3, NULL, '214', '', 0, NULL, '9270287950', NULL, '', 'Live', '', 'DPF0141-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(572, 292, 'DPF0141-02', 'DPF0141', 'Jayshree', 'Nitin', 'Liladhar', 106, NULL, '', 'F', 0, 28, NULL, '1970-05-25', NULL, 3, NULL, '261', '', 0, NULL, '9767800938', NULL, '', 'Live', '', 'DPF0141-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(573, 292, 'DPF0141-03', 'DPF0141', 'Nidhi', 'Nitin', 'Liladhar', 106, NULL, '', 'F', 0, 6, NULL, '2001-10-20', NULL, 2, NULL, '282', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0141-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(574, 292, 'DPF0141-04', 'DPF0141', 'Hemkunvarben', 'Liladhar', 'Vijpar', 106, NULL, '', 'F', 5, 17, NULL, '1933-01-01', NULL, 3, NULL, '263', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0141-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(575, 293, 'DPF0142-01', 'DPF0142', 'Devshi', 'Vijpar', 'Ravji', 106, NULL, '', 'M', 3, 22, NULL, '1938-09-08', NULL, 3, NULL, '256', '', 0, NULL, '9819189806', NULL, '', 'Live', '', 'DPF0142-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(576, 293, 'DPF0142-02', 'DPF0142', 'Prabhaben', 'Vijpar', 'Ravji', 106, NULL, '', 'F', 3, 28, NULL, '1942-09-19', NULL, 3, NULL, '256', '', 0, NULL, '9833077170', NULL, '', 'Live', '', 'DPF0142-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(577, 293, 'DPF0142-03', 'DPF0142', 'Manoj', 'Vijpar', 'Ravji', 106, NULL, '', 'M', 0, 25, NULL, '1967-07-11', NULL, 2, NULL, '257', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0142-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(578, 294, 'DPF0143-01', 'DPF0143', 'Dhanji', 'Ravji', 'Monshi', 106, NULL, '', 'M', 5, 22, NULL, '1923-12-10', NULL, 3, NULL, '60', '', 7, NULL, '', NULL, '', 'Live', '', 'DPF0143-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(579, 294, 'DPF0143-02', 'DPF0143', 'Navin', 'Ravji', 'Monshi', 106, NULL, '', 'M', 5, 25, NULL, '1951-05-21', NULL, 3, NULL, '60', '', 0, NULL, '9987418107', NULL, '', 'Live', '', 'DPF0143-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(580, 294, 'DPF0143-03', 'DPF0143', 'Indiraben', 'Navin', 'Ravji', 106, NULL, '', 'F', 1, 35, NULL, '1954-06-26', NULL, 3, NULL, '216', '', 0, NULL, '9920665166', NULL, '', 'Live', '', 'DPF0143-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(581, 294, 'DPF0143-04', 'DPF0143', 'Urvi', 'Navin', 'Ravji', 106, NULL, '', 'F', 3, 10, NULL, '1976-05-28', NULL, 2, NULL, '148', '', 0, NULL, '9820659059', NULL, '<EMAIL>', 'Live', '', 'DPF0143-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(582, 294, 'DPF0143-05', 'DPF0143', 'Urmi', 'Navin', 'Ravji', 106, NULL, '', 'F', 1, 10, NULL, '1980-11-22', NULL, 2, NULL, '295', '', 0, NULL, '9819012796', NULL, '<EMAIL>', 'Live', '', 'DPF0143-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(583, 295, 'DPF0144-01', 'DPF0144', 'Bipin', 'Dhanji', 'Ravji', 106, NULL, '', 'M', 1, 22, NULL, '1954-02-11', NULL, 3, NULL, '296', '', 8, NULL, '9321323245', NULL, '', 'Live', '', 'DPF0144-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(584, 295, 'DPF0144-02', 'DPF0144', 'Meena', 'Bipin', 'Dhanji', 106, NULL, '', 'F', 5, 28, NULL, '1958-04-28', NULL, 3, NULL, '297', '', 0, NULL, '9920347973', NULL, '', 'Live', '', 'DPF0144-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(585, 296, 'DPF0145-01', 'DPF0145', 'Jayvanti', 'Jadavji', 'Kunvarji', 106, NULL, '', 'F', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '216', '', 0, NULL, '9820319830', NULL, '', 'Live', '', 'DPF0145-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(586, 296, 'DPF0145-02', 'DPF0145', 'Manish', 'Jadavji', 'Kunvarji', 106, NULL, '', 'M', 0, 25, NULL, '1979-10-17', NULL, 2, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0145-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(587, 296, 'DPF0145-03', 'DPF0145', 'Hetal', 'Jadavji', 'Kunvarji', 106, NULL, '', 'F', 0, 6, NULL, '1982-12-05', NULL, 2, NULL, '214', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0145-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(588, 296, 'DPF0145-04', 'DPF0145', 'Bhavika', 'Jadavji', 'Kunvarji', 106, NULL, '', 'F', 0, 6, NULL, '1984-12-23', NULL, 2, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0145-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(589, 297, 'DPF0146-01', 'DPF0146', 'Dilip', 'Navin', 'Mavji', 106, NULL, '', 'M', 2, 22, NULL, '1984-08-16', NULL, 3, NULL, '216', '', 0, NULL, '9867139072', NULL, '', 'Live', '', 'DPF0146-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(590, 297, 'DPF0146-02', 'DPF0146', 'Nehal', 'Dilip', 'Navin', 106, NULL, '', 'F', 4, 28, NULL, '1991-03-08', NULL, 3, NULL, '216', '', 0, NULL, '9004334463', NULL, '<EMAIL>', 'Live', '', 'DPF0146-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(591, 297, 'DPF0146-03', 'DPF0146', 'Diya', 'Dilip', 'Navin', 106, NULL, '', 'F', 0, 6, NULL, '0000-00-00', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0146-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(592, 298, 'DPF0147-01', 'DPF0147', 'Dhanji', 'Mavji', 'Gosar', 106, NULL, '', 'M', 3, 22, NULL, '1955-04-02', NULL, 3, NULL, '261', '', 22, NULL, '', NULL, '', 'Live', '', 'DPF0147-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(593, 298, 'DPF0147-02', 'DPF0147', 'Pushpaben', 'Dhanji', 'Mavji', 106, NULL, '', 'F', 5, 28, NULL, '1966-12-06', NULL, 3, NULL, '261', '', 0, NULL, '9320260317', NULL, '', 'Live', '', 'DPF0147-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(594, 298, 'DPF0147-03', 'DPF0147', 'Kiran', 'Dhanji', 'Mavji', 106, NULL, '', 'M', 3, 25, NULL, '1987-01-14', NULL, 2, NULL, '298', '', 0, NULL, '9920311470', NULL, '<EMAIL>', 'Live', '', 'DPF0147-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(595, 298, 'DPF0147-04', 'DPF0147', 'Jayesh', 'Dhanji', 'Mavji', 106, NULL, '', 'M', 5, 25, NULL, '1988-08-26', NULL, 2, NULL, '205', '', 0, NULL, '9322821897', NULL, '<EMAIL>', 'Live', '', 'DPF0147-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(596, 298, 'DPF0147-05', 'DPF0147', 'Tarun', 'Dhanji', 'Mavji', 106, NULL, '', 'M', 3, 25, NULL, '1989-12-24', NULL, 2, NULL, '205', '', 0, NULL, '9892497492', NULL, '<EMAIL>', 'Live', '', 'DPF0147-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(597, 299, 'DPF0148-01', 'DPF0148', 'Ramesh', 'Mavji', 'Gosar', 106, NULL, '', 'M', 6, 22, NULL, '1959-06-07', NULL, 3, NULL, '216', '', 8, NULL, '9930716379', NULL, '', 'Live', '', 'DPF0148-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(598, 299, 'DPF0148-02', 'DPF0148', 'Harsha', 'Ramesh', 'Mavji', 106, NULL, '', 'F', 1, 28, NULL, '1965-02-05', NULL, 3, NULL, '256', '', 0, NULL, '9545965616', NULL, '', 'Live', '', 'DPF0148-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(599, 299, 'DPF0148-03', 'DPF0148', 'Aarti', 'Ramesh', 'Mavji', 106, NULL, '', 'F', 5, 6, NULL, '1993-02-27', NULL, 6, NULL, '', '', 17, NULL, '9673234365', NULL, '', 'Live', NULL, 'DPF0148-03.jpg', 0, '', 0, 0, '', '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(600, 300, 'DPF0149-01', 'DPF0149', 'Rajesh', 'Mavji', 'Gosar', 106, NULL, '', 'M', 6, 22, NULL, '1965-07-08', NULL, 3, NULL, '256', '', 23, NULL, '9969448742', NULL, '', 'Live', '', 'DPF0149-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(601, 300, 'DPF0149-02', 'DPF0149', 'Nayna', 'Rajesh', 'Mavji', 106, NULL, '', 'F', 5, 28, NULL, '1968-07-20', NULL, 3, NULL, '216', '', 0, NULL, '8450938221', NULL, '', 'Live', '', 'DPF0149-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(602, 300, 'DPF0149-03', 'DPF0149', 'Urvi', 'Rajesh', 'Mavji', 106, NULL, '', 'F', 5, 6, NULL, '1999-07-10', NULL, 2, NULL, '262', '', 0, NULL, '9833921923', NULL, '', 'Live', '', 'DPF0149-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(603, 301, 'DPF0150-01', 'DPF0150', 'Khimji', 'Lakhamshi', 'Gosar', 106, NULL, '', 'M', 4, 22, NULL, '1957-02-26', NULL, 3, NULL, '256', '', 0, NULL, '9224529715', NULL, '', 'Live', '', 'DPF0150-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(604, 301, 'DPF0150-02', 'DPF0150', 'Rita', 'Khimji', 'Lakhamshi', 106, NULL, '', 'F', 3, 28, NULL, '1965-07-08', NULL, 3, NULL, '216', '', 0, NULL, '8879200559', NULL, '', 'Live', '', 'DPF0150-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(605, 301, 'DPF0150-03', 'DPF0150', 'Darshan', 'Khimji', 'Lakhamshi', 106, NULL, '', 'M', 5, 25, NULL, '1992-08-17', NULL, 2, NULL, '299', '', 0, NULL, '9224922390', NULL, '<EMAIL>', 'Live', '', 'DPF0150-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL);
INSERT INTO `family_member` (`id`, `family_id`, `member_no`, `family_no`, `first_name`, `second_name`, `third_name`, `surname_id`, `other_surname_details`, `regd_id`, `sex`, `blood_id`, `relation_id`, `other_relation_details`, `dob`, `dod`, `marriage_type`, `dom`, `education_id`, `other_education_details`, `occupation_id`, `other_occupation_details`, `contact`, `altcontact`, `email`, `live_type`, `member_type`, `image`, `life_insurance`, `life_insurance_text`, `medical_insurance`, `sanjeevni`, `medical_insurance_text`, `sports_id`, `other_sports_details`, `achivements`, `dharmik_id`, `username`, `password`, `fm_status`, `old_value`, `new_value`, `merge_status`, `merge_flag`, `merge_data`, `merge_user_data`, `added_on`, `updated_on`, `deleted`, `delete_reason`, `deleted_on`) VALUES
(606, 301, 'DPF0150-04', 'DPF0150', 'Vinay', 'Khimji', 'Lakhamshi', 106, NULL, '', 'M', 3, 25, NULL, '1994-08-30', NULL, 2, NULL, '214', '', 0, NULL, '8879200560', NULL, '<EMAIL>', 'Live', '', 'DPF0150-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(607, 302, 'DPF0151-01', 'DPF0151', 'Hasmukh', 'Lakhamshi', 'Gosar', 106, NULL, '', 'M', 5, 22, NULL, '1962-01-22', NULL, 3, NULL, '216', '', 0, NULL, '9221931454', NULL, '', 'Live', '', 'DPF0151-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(608, 302, 'DPF0151-02', 'DPF0151', 'Shilpa', 'Hasmukh', 'Lakhamshi', 106, NULL, '', 'F', 4, 28, NULL, '1973-10-08', NULL, 3, NULL, '216', '', 0, NULL, '9773159640', NULL, '', 'Live', '', 'DPF0151-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(609, 302, 'DPF0151-03', 'DPF0151', 'Akshita', 'Hasmukh', 'Lakhamshi', 106, NULL, '', 'F', 4, 6, NULL, '1996-06-12', NULL, 2, NULL, '226', '', 0, NULL, '9930997917', NULL, '', 'Live', '', 'DPM000587.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(610, 302, 'DPF0151-04', 'DPF0151', 'Vidhi', 'Hasmukh', 'Lakhamshi', 106, NULL, '', 'F', 1, 6, NULL, '1997-11-15', NULL, 2, NULL, '217', '', 0, NULL, '9821964071', NULL, '<EMAIL>', 'Live', '', 'DPF0151-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(611, 303, 'DPF0152-01', 'DPF0152', 'Laxmiben', 'Premji', 'Dungarshi', 106, NULL, '', 'M', 0, 22, NULL, '1939-04-19', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0152-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(612, 303, 'DPF0152-02', 'DPF0152', 'Kantilal', 'Premji', 'Dungarshi', 106, NULL, '', 'F', 0, 25, NULL, '1956-06-01', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0152-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(613, 304, 'DPF0153-01', 'DPF0153', 'Suresh', 'Premji', 'Dungarshi', 106, NULL, '', 'M', 5, 22, NULL, '1959-02-01', NULL, 3, NULL, '214', '', 0, NULL, '9757346452', NULL, '', 'Live', '', 'DPF0153-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(614, 304, 'DPF0153-02', 'DPF0153', 'Chandan', 'Suresh', 'Premji', 106, NULL, '', 'F', 4, 28, NULL, '1960-01-05', NULL, 3, NULL, '216', '', 0, NULL, '9969297418', NULL, '', 'Live', '', 'DPF0153-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(615, 304, 'DPF0153-03', 'DPF0153', 'Nirav', 'Suresh', 'Premji', 106, NULL, '', 'M', 3, 25, NULL, '1988-12-09', NULL, 2, NULL, '300', '', 0, NULL, '9773719448', NULL, '<EMAIL>', 'Live', '', 'DPF0153-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(616, 304, 'DPF0153-04', 'DPF0153', 'Manali', 'Suresh', 'Premji', 106, NULL, '', 'F', 3, 6, NULL, '1992-08-28', NULL, 2, NULL, '301', '', 0, NULL, '9821469651', NULL, '<EMAIL>', 'Live', '', 'DPF0153-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(617, 305, 'DPF0154-01', 'DPF0154', 'Anil', 'Premji', 'Dungarshi', 106, NULL, '', 'M', 5, 22, NULL, '1960-11-23', NULL, 3, NULL, '216', '', 0, NULL, '9869702151', NULL, '', 'Live', '', 'DPF0154-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(618, 305, 'DPF0154-02', 'DPF0154', 'Jyoti', 'Anil', 'Premji', 106, NULL, '', 'F', 5, 28, NULL, '1961-03-16', NULL, 3, NULL, '217', '', 0, NULL, '9757207898', NULL, '', 'Live', '', 'DPF0154-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(619, 305, 'DPF0154-03', 'DPF0154', 'Pooja', 'Anil', 'Premji', 106, NULL, '', 'F', 5, 6, NULL, '1989-06-13', NULL, 2, NULL, '302', '', 0, NULL, '9867474268', NULL, '<EMAIL>', 'Live', '', 'DPF0154-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(620, 305, 'DPF0154-04', 'DPF0154', 'Rushabh', 'Anil', 'Premji', 106, NULL, '', 'M', 5, 25, NULL, '1994-09-09', NULL, 2, NULL, '303', '', 0, NULL, '8080203468', NULL, '<EMAIL>', 'Live', '', 'DPF0154-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(621, 306, 'DPF0155-01', 'DPF0155', 'Rajesh', 'Premji', 'Dungarshi', 106, NULL, '', 'M', 5, 22, NULL, '1964-03-03', NULL, 3, NULL, '216', '', 0, NULL, '9969065993', NULL, '', 'Live', '', 'DPF0155-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(622, 306, 'DPF0155-02', 'DPF0155', 'Rita', 'Rajesh', 'Premji', 106, NULL, '', 'F', 5, 28, NULL, '1964-12-02', NULL, 3, NULL, '304', '', 0, NULL, '9757486844', NULL, '', 'Live', '', 'DPF0155-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(623, 306, 'DPF0155-03', 'DPF0155', 'Sneha', 'Rajesh', 'Premji', 106, NULL, '', 'F', 5, 6, NULL, '1994-06-01', NULL, 2, NULL, '305', '', 0, NULL, '8082771051', NULL, '', 'Live', '', 'DPF0155-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(624, 306, 'DPF0155-04', 'DPF0155', 'Sweta', 'Rajesh', 'Premji', 106, NULL, '', 'F', 5, 6, NULL, '1994-06-01', NULL, 2, NULL, '305', '', 0, NULL, '9870140313', NULL, '', 'Live', '', 'DPF0155-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(625, 307, 'DPF0156-01', 'DPF0156', 'Ashok', 'Premji', 'Dungarshi', 106, NULL, '', 'M', 5, 22, NULL, '1966-08-09', NULL, 3, NULL, '216', '', 0, NULL, '9969203861', NULL, '', 'Live', '', 'DPF0156-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(626, 307, 'DPF0156-02', 'DPF0156', 'Kiranben', 'Ashok', 'Premji', 106, NULL, '', 'F', 1, 28, NULL, '1968-03-10', NULL, 3, NULL, '24', '', 0, NULL, '9969203862', NULL, '', 'Live', '', 'DPF0156-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(627, 308, 'DPF0157-01', 'DPF0157', 'Ratanben', 'Ramji', 'Dungarshi', 106, NULL, '', 'F', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '258', '', 0, NULL, '9638752664', NULL, '', 'Live', '', 'DPF0157-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(628, 308, 'DPF0157-02', 'DPF0157', 'Ramesh', 'Ramji', 'Dungarshi', 106, NULL, '', 'M', 0, 25, NULL, '0000-00-00', NULL, 2, NULL, '216', '', 0, NULL, '9638752664', NULL, '', 'Live', '', 'DPF0157-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(629, 309, 'DPF0158-01', 'DPF0158', 'Diwaliben', 'Nanji', 'Dungarshi', 106, NULL, '', 'F', 0, 22, NULL, '1942-08-09', NULL, 3, NULL, '282', '', 0, NULL, '24302746', NULL, '', 'Live', '', 'DPF0158-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(630, 309, 'DPF0158-02', 'DPF0158', 'Hemant', 'Nanji', 'Dungarshi', 106, NULL, '', 'M', 3, 25, NULL, '1967-01-26', NULL, 3, '1982-08-07', '216', '', 0, NULL, '9223424448', NULL, '<EMAIL>', 'Live', '', 'DPF0158-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(631, 309, 'DPF0158-03', 'DPF0158', 'Varsha', 'Hemant', 'Nanji', 106, NULL, '', 'F', 5, 35, NULL, '1968-09-14', NULL, 3, '1982-08-07', '267', '', 0, NULL, '9821105813', NULL, '<EMAIL>', 'Live', '', 'DPF0158-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(632, 309, 'DPF0158-04', 'DPF0158', 'Pankit', 'Hemant', 'Nanji', 106, NULL, '', 'F', 3, 10, NULL, '1995-02-19', NULL, 2, NULL, '288', '', 0, NULL, '9619734488', NULL, '<EMAIL>', 'Live', '', 'DPF0158-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(633, 309, 'DPF0158-05', 'DPF0158', 'Paresh', 'Nanji', 'Dungarshi', 106, NULL, '', 'M', 3, 25, NULL, '1971-07-01', NULL, 3, NULL, '216', '', 0, NULL, '9833645897', NULL, '', 'Live', '', 'DPF0158-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(634, 309, 'DPF0158-06', 'DPF0158', 'Bhamini', 'Paresh', 'Nanji', 106, NULL, '', 'F', 5, 35, NULL, '1974-12-14', NULL, 3, NULL, '216', '', 0, NULL, '9833291629', NULL, '', 'Live', '', 'DPF0158-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(635, 310, 'DPF0159-01', 'DPF0159', 'Kiran', 'Nanji', 'Dungarshi', 106, NULL, '', 'M', 3, 22, NULL, '1965-08-25', NULL, 3, NULL, '216', '', 0, NULL, '9920655497', NULL, '', 'Live', '', 'DPF0159-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(636, 310, 'DPF0159-02', 'DPF0159', 'Jeeta', 'Kiran', 'Nanji', 106, NULL, '', 'F', 5, 28, NULL, '1966-09-24', NULL, 3, NULL, '214', '', 0, NULL, '9821061624', NULL, '', 'Live', '', 'DPF0159-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(637, 310, 'DPF0159-03', 'DPF0159', 'Rohan', 'Kiran', 'Nanji', 106, NULL, '', 'M', 3, 25, NULL, '1990-01-19', NULL, 2, NULL, '271', '', 0, NULL, '9664271719', NULL, '<EMAIL>', 'Live', '', 'DPF0159-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:27', NULL, 0, NULL, NULL),
(638, 311, 'DPF0160-01', 'DPF0160', 'Vimalaben', 'Anandji', 'Tejshi', 106, NULL, '', 'F', 5, 22, NULL, '1940-04-12', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0160-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(639, 311, 'DPF0160-02', 'DPF0160', 'Ushma', 'Anandji', 'Tejshi', 106, NULL, '', 'F', 5, 6, NULL, '1965-11-10', NULL, 2, NULL, '24', '', 0, NULL, '9819914657', NULL, '', 'Live', '', 'DPF0160-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(640, 311, 'DPF0160-03', 'DPF0160', 'Kamlesh', 'Anandji', 'Tejshi', 106, NULL, '', 'M', 1, 25, NULL, '1968-09-17', NULL, 3, NULL, '214', '', 0, NULL, '9833165705', NULL, '', 'Live', '', 'DPF0160-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(641, 311, 'DPF0160-04', 'DPF0160', 'Manisha', 'Kamlesh', 'Anandji', 106, NULL, '', 'F', 3, 35, NULL, '1970-11-21', NULL, 3, NULL, '259', '', 0, NULL, '9892567681', NULL, '', 'Live', '', 'DPF0160-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(642, 311, 'DPF0160-05', 'DPF0160', 'Romit', 'Kamlesh', 'Anandji', 106, NULL, '', 'M', 1, 15, NULL, '2007-03-09', NULL, 2, NULL, '264', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0160-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(643, 311, 'DPF0160-06', 'DPF0160', 'Bhavna', 'Anandji', 'Tejshi', 106, NULL, '', 'F', 1, 6, NULL, '1970-07-18', NULL, 2, NULL, '306', '', 0, NULL, '9820370568', NULL, '', 'Live', '', 'DPF0160-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(644, 312, 'DPF0161-01', 'DPF0161', 'Paresh', 'Anandji', 'Tejshi', 106, NULL, '', 'M', 5, 22, NULL, '1973-01-24', NULL, 3, NULL, '214', '', 0, NULL, '9833782121', NULL, '', 'Live', '', 'DPF0161-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(645, 312, 'DPF0161-02', 'DPF0161', 'Jyoti', 'Paresh', 'Anandji', 106, NULL, '', 'F', 7, 28, NULL, '1974-03-19', NULL, 3, NULL, '216', '', 0, NULL, '9167592321', NULL, '', 'Live', '', 'DPF0161-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(646, 312, 'DPF0161-03', 'DPF0161', 'Jash', 'Paresh', 'Anandji', 106, NULL, '', 'M', 1, 25, NULL, '2007-08-25', NULL, 2, NULL, '264', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0161-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(647, 313, 'DPF0162-01', 'DPF0162', 'Bipin', 'Talakshi', 'Narshi', 106, NULL, '', 'M', 5, 22, NULL, '1962-05-06', NULL, 3, NULL, '216', '', 0, NULL, '9930089879', NULL, '', 'Live', '', 'DPF0162-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(648, 313, 'DPF0162-02', 'DPF0162', 'Bharati', 'Bipin', 'Talakshi', 106, NULL, '', 'F', 3, 28, NULL, '1963-05-13', NULL, 3, NULL, '259', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0162-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(649, 313, 'DPF0162-03', 'DPF0162', 'Himanshu', 'Bipin', 'Talakshi', 106, NULL, '', 'M', 3, 25, NULL, '1986-04-18', NULL, 3, NULL, '35', '', 0, NULL, '9867289228', NULL, '<EMAIL>', 'Live', '', 'DPF0162-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(650, 313, 'DPF0162-04', 'DPF0162', 'Tina', 'Himanshu', 'Bipin', 106, NULL, '', 'F', 5, 35, NULL, '1986-07-12', NULL, 3, NULL, '35', '', 0, NULL, '8454040291', NULL, '<EMAIL>', 'Live', '', 'DPF0162-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(651, 313, 'DPF0162-05', 'DPF0162', 'Hetal', 'Bipin', 'Talakshi', 106, NULL, '', 'F', 3, 6, NULL, '1989-09-26', NULL, 2, NULL, '271', '', 0, NULL, '9819164529', NULL, '<EMAIL>', 'Live', '', 'DPF0162-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(652, 314, 'DPF0163-01', 'DPF0163', 'Pankaj', 'Talakshi', 'Narshi', 106, NULL, '', 'M', 5, 22, NULL, '1968-04-13', NULL, 3, NULL, '216', '', 0, NULL, '9819962692', NULL, '', 'Live', '', 'DPF0163-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(653, 314, 'DPF0163-02', 'DPF0163', 'Jigana', 'Pankaj', 'Talakshi', 106, NULL, '', 'F', 5, 28, NULL, '1974-06-09', NULL, 3, NULL, '216', '', 0, NULL, '9833376018', NULL, '', 'Live', '', 'DPF0163-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(654, 314, 'DPF0163-03', 'DPF0163', 'Purvi', 'Pankaj', 'Talakshi', 106, NULL, '', 'F', 5, 6, NULL, '1999-11-04', NULL, 2, NULL, '262', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0163-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(655, 314, 'DPF0163-04', 'DPF0163', 'Hetavi', 'Pankaj', 'Talakshi', 106, NULL, '', 'F', 5, 6, NULL, '2007-04-24', NULL, 2, NULL, '264', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0163-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(656, 315, 'DPF0164-01', 'DPF0164', 'Shantilal', 'Dungarshi', 'Dharshi', 106, NULL, '', 'M', 5, 22, NULL, '1946-08-14', NULL, 3, NULL, '256', '', 2, NULL, '9821074100', NULL, '<EMAIL>', 'Live', '', 'DPF0164-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, 'shantimaro', '$2a$10$6xt7csIqKXE/q208vKLlFusL2oCBVGGNQJBpyPkiLcGcKYGNSw5dO', 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(657, 315, 'DPF0164-02', 'DPF0164', 'Nirmalalben', 'Shantilal', 'Dungarshi', 106, NULL, '', 'F', 3, 28, NULL, '1946-09-18', NULL, 3, NULL, '216', '', 0, NULL, '9870900940', NULL, '', 'Live', '', 'DPF0164-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(658, 315, 'DPF0164-03', 'DPF0164', 'Kalpesh', 'Shantilal', 'Dungarshi', 106, NULL, '', 'M', 0, 25, NULL, '1976-10-15', NULL, 3, NULL, '214', '', 0, NULL, '9920939641', NULL, '<EMAIL>', 'Live', '', 'DPF0164-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(659, 315, 'DPF0164-04', 'DPF0164', 'Rachana', 'Kalpesh', 'Shantilal', 106, NULL, '', 'F', 0, 35, NULL, '1978-12-25', NULL, 3, NULL, '216', '', 0, NULL, '9870039641', NULL, '', 'Live', '', 'DPF0164-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(660, 315, 'DPF0164-05', 'DPF0164', 'Aarav', 'Kalpesh', 'Shantilal', 106, NULL, '', 'M', 0, 15, NULL, '2004-05-16', NULL, 2, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0164-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, 'Aarav_kmaru', '$2a$10$vFQY3g1UnGGE01y3BTz7DOq7B8cGLfAHrWVxwHK4njSd/Cm9yz5z2', 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(661, 316, 'DPF0165-01', 'DPF0165', 'Tokershi', 'Dungarshi', 'Dharshi', 106, NULL, '', 'M', 0, 22, NULL, '1956-10-28', NULL, 3, NULL, '216', '', 2, NULL, '9870900949', NULL, '<EMAIL>', 'Live', '', 'DPF0165-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(662, 316, 'DPF0165-02', 'DPF0165', 'Prabhavati', 'Tokershi', 'Dungarshi', 106, NULL, '', 'F', 7, 28, NULL, '1958-02-07', NULL, 3, NULL, '216', '', 0, NULL, '9870900941', NULL, '', 'Live', '', 'DPF0165-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(663, 317, 'DPF0166-01', 'DPF0166', 'Vadilal', 'Dungarshi', 'Dharshi', 106, NULL, '', 'M', 1, 22, NULL, '1959-12-12', NULL, 3, NULL, '214', '', 2, NULL, '9870900943', NULL, '', 'Live', '', 'DPF0166-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(664, 317, 'DPF0166-02', 'DPF0166', 'Rashmiben', 'Vadilal', 'Dungarshi', 106, NULL, '', 'F', 3, 28, NULL, '1960-09-26', NULL, 3, NULL, '60', '', 0, NULL, '9870900944', NULL, '<EMAIL>', 'Live', '', 'DPF0166-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(665, 317, 'DPF0166-03', 'DPF0166', 'Pritesh', 'Vadilal', 'Dungarshi', 106, NULL, '', 'M', 7, 25, NULL, '1985-05-02', NULL, 3, NULL, '259', '', 0, NULL, '9819435777', NULL, '<EMAIL>', 'Live', '', 'DPF0166-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(666, 317, 'DPF0166-04', 'DPF0166', 'Sejul', 'Pritesh', 'Vadilal', 106, NULL, '', 'F', 1, 35, NULL, '1985-06-20', NULL, 3, NULL, '24', '', 0, NULL, '9820257673', NULL, '<EMAIL>', 'Live', '', 'DPF0166-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(667, 318, 'DPF0167-01', 'DPF0167', 'Ramnik', 'Dungarshi', 'Dharshi', 106, NULL, '', 'M', 7, 22, NULL, '1966-12-11', NULL, 3, NULL, '214', '', 2, NULL, '9870900947', NULL, '<EMAIL>', 'Live', '', 'DPF0167-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(668, 318, 'DPF0167-02', 'DPF0167', 'Prina', 'Ramnik', 'Dungarshi', 106, NULL, '', 'F', 5, 28, NULL, '1969-02-07', NULL, 3, NULL, '307', '', 0, NULL, '9821283552', NULL, '<EMAIL>', 'Live', '', 'DPF0167-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(669, 318, 'DPF0167-03', 'DPF0167', 'Saloni', 'Ramnik', 'Dungarshi', 106, NULL, '', 'F', 7, 6, NULL, '1992-01-10', NULL, 2, NULL, '55', '', 0, NULL, '9769315345', NULL, '<EMAIL>', 'Live', '', 'DPF0167-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(670, 318, 'DPF0167-04', 'DPF0167', 'Yashvi', 'Ramnik', 'Dungarshi', 106, NULL, '', 'F', 3, 6, NULL, '2001-01-19', NULL, 2, NULL, '256', '', 0, NULL, '', NULL, '<EMAIL>', 'Live', '', 'DPF0167-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(671, 319, 'DPF0168-01', 'DPF0168', 'Ashwin', 'Talakshi', 'Ravji', 106, NULL, '', 'M', 0, 22, NULL, '1975-02-19', NULL, 3, NULL, '216', '', 0, NULL, '9892893673', NULL, '', 'Live', '', 'DPF0168-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(672, 319, 'DPF0168-02', 'DPF0168', 'Priti', 'Ashwin', 'Talakshi', 106, NULL, '', 'F', 3, 28, NULL, '1977-09-14', NULL, 3, NULL, '216', '', 0, NULL, '9819539928', NULL, '', 'Live', '', 'DPF0168-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(673, 319, 'DPF0168-03', 'DPF0168', 'Smit', 'Ashwin', 'Talakshi', 106, NULL, '', 'M', 3, 25, NULL, '2003-09-10', NULL, 2, NULL, '257', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0168-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(674, 320, 'DPF0169-01', 'DPF0169', 'Bharatiben', 'Navinchandra ', 'Talakshi', 106, NULL, '', 'F', 5, 22, NULL, '1956-12-17', NULL, 3, NULL, '216', '', 8, NULL, '9892157631', NULL, '', 'Live', '', 'DPF0169-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(675, 320, 'DPF0169-02', 'DPF0169', 'Rahul', 'Navinchandra ', 'Talakshi', 106, NULL, '', 'M', 6, 25, NULL, '1978-10-20', NULL, 3, NULL, '225', '', 0, NULL, '9967676663', NULL, '', 'Live', '', 'DPF0169-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(676, 320, 'DPF0169-03', 'DPF0169', 'Alpa', 'Rahul', 'Navinchandra ', 106, NULL, '', 'F', 2, 35, NULL, '1980-02-21', NULL, 3, NULL, '259', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0169-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(677, 320, 'DPF0169-04', 'DPF0169', 'Richa', 'Rahul', 'Navinchandra ', 106, NULL, '', 'F', 2, 10, NULL, '2008-10-01', NULL, 2, NULL, '204', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0169-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(678, 320, 'DPF0169-05', 'DPF0169', 'Riya', 'Rahul', 'Navinchandra ', 106, NULL, '', 'F', 6, 10, NULL, '2008-10-01', NULL, 2, NULL, '204', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0169-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(679, 321, 'DPF0170-01', 'DPF0170', 'Nanbai', 'Maganlal', 'Ravji', 106, NULL, '', 'F', 5, 22, NULL, '1943-05-09', NULL, 3, NULL, '256', '', 0, NULL, '9769237339', NULL, '', 'Live', '', 'DPF0170-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(680, 321, 'DPF0170-02', 'DPF0170', 'Upendra', 'Maganlal', 'Ravji', 106, NULL, '', 'M', 5, 25, NULL, '1963-03-05', NULL, 3, NULL, '262', '', 0, NULL, '9979212549', NULL, '', 'Live', '', 'DPF0170-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(681, 321, 'DPF0170-03', 'DPF0170', 'Hemlata', 'Upendra', 'Maganlal', 106, NULL, '', 'F', 1, 35, NULL, '1966-07-18', NULL, 3, NULL, '216', '', 0, NULL, '9979212549', NULL, '', 'Live', '', 'DPM000659.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(682, 321, 'DPF0170-04', 'DPF0170', 'Nayan', 'Upendra', 'Maganlal', 106, NULL, '', 'M', 1, 15, NULL, '1989-11-28', NULL, 2, NULL, '216', '', 0, NULL, '9769237339', NULL, '', 'Live', '', 'DPF0170-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(683, 322, 'DPF0171-01', 'DPF0171', 'Dinesh', 'Maganlal', 'Ravji', 106, NULL, '', 'M', 1, 22, NULL, '1966-06-15', NULL, 3, NULL, '216', '', 2, NULL, '9769237339', NULL, '', 'Live', '', 'DPF0171-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(684, 322, 'DPF0171-02', 'DPF0171', 'Chandan', 'Dinesh', 'Maganlal', 106, NULL, '', 'F', 5, 28, NULL, '1972-03-18', NULL, 3, NULL, '216', '', 0, NULL, '9867457967', NULL, '', 'Live', '', 'DPF0171-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(685, 322, 'DPF0171-03', 'DPF0171', 'Santosh', 'Dinesh', 'Maganlal', 106, NULL, '', 'M', 1, 25, NULL, '1990-02-26', NULL, 2, NULL, '155', '', 0, NULL, '9022434590', NULL, '', 'Live', '', 'DPF0171-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(686, 322, 'DPF0171-04', 'DPF0171', 'Dipti', 'Dinesh', 'Maganlal', 106, NULL, '', 'F', 5, 6, NULL, '1992-05-28', NULL, 2, NULL, '259', '', 0, NULL, '9867457967', NULL, '', 'Live', '', 'DPF0171-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(687, 323, 'DPF0172-01', 'DPF0172', 'Pravin', 'Maganlal', 'Ravji', 106, NULL, '', 'M', 1, 22, NULL, '1968-10-28', NULL, 3, NULL, '216', '', 0, NULL, '9892783976', NULL, '', 'Live', '', 'DPF0172-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(688, 323, 'DPF0172-02', 'DPF0172', 'Hansa', 'Pravin', 'Maganlal', 106, NULL, '', 'F', 3, 28, NULL, '1975-11-24', NULL, 3, NULL, '216', '', 0, NULL, '9769266384', NULL, '', 'Live', '', 'DPF0172-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(689, 323, 'DPF0172-03', 'DPF0172', 'Ankit', 'Pravin', 'Maganlal', 106, NULL, '', 'M', 1, 25, NULL, '1993-05-19', NULL, 2, NULL, '214', '', 0, NULL, '8898746920', NULL, '', 'Live', '', 'DPF0172-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(690, 323, 'DPF0172-04', 'DPF0172', 'Tushar', 'Pravin', 'Maganlal', 106, NULL, '', 'M', 3, 25, NULL, '1996-07-24', NULL, 2, NULL, '226', '', 0, NULL, '9819742057', NULL, '<EMAIL>', 'Live', '', 'DPF0172-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(691, 148, 'DPF0001-06', 'DPF0001', 'Laherchand', 'Maganlal', 'Ravji', 106, NULL, '', 'M', 6, 22, NULL, '1971-11-13', NULL, 3, NULL, '216', '', 0, NULL, '9970348311', NULL, '', 'Live', '', 'DPF0173-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(692, 148, 'DPF0001-10', 'DPF0001', 'Aarati', 'Laherchand', 'Maganlal', 106, NULL, '', 'F', 2, 28, NULL, '1972-12-26', NULL, 3, NULL, '216', '', 4, NULL, '7387211124', NULL, '<EMAIL>', 'Live', NULL, 'DPF0173-02.jpg', 0, '', 0, 0, '', '0', NULL, '', 4, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(693, 148, 'DPF0001-08', 'DPF0001', 'Dhruv', 'Laherchand', 'Maganlal', 106, NULL, '', 'M', 5, 25, NULL, '2006-01-01', NULL, 2, NULL, '263', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0173-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, 'test', '2021-03-11 11:41:49'),
(694, 324, 'DPF0173-04', 'DPF0173', 'Sneha', 'Laherchand', 'Maganlal', 106, NULL, '', 'F', 1, 6, NULL, '2007-08-02', NULL, 2, NULL, '264', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0173-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(695, 325, 'DPF0174-01', 'DPF0174', 'Ratanben', 'Gangji', 'Ravji', 106, NULL, '', 'F', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 2, NULL, '', NULL, '', 'Live', '', 'DPM000673.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(696, 325, 'DPF0174-02', 'DPF0174', 'Rekhaben', '', 'Gangji', 106, NULL, '', 'F', 0, 35, NULL, '1962-07-20', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPM000674.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(697, 325, 'DPF0174-03', 'DPF0174', 'Jatin', '', 'Gangji', 106, NULL, '', 'M', 0, 15, NULL, '1980-12-08', NULL, 3, NULL, '0', '', 0, NULL, '9974672586', NULL, '', 'Live', '', 'DPM000675.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(698, 325, 'DPF0174-04', 'DPF0174', 'Anjana', 'Jatin', '', 106, NULL, '', 'F', 0, 37, NULL, '1988-01-25', NULL, 3, NULL, '0', '', 0, NULL, '9714517234', NULL, '', 'Live', '', 'DPM000676.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(699, 325, 'DPF0174-05', 'DPF0174', 'Dikesh', '', 'Gangji', 106, NULL, '', 'M', 0, 15, NULL, '1986-09-01', NULL, 3, NULL, '0', '', 0, NULL, '9879711234', NULL, '', 'Live', '', 'DPM000677.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(700, 325, 'DPF0174-06', 'DPF0174', 'Pallavi', 'Dikesh', '', 106, NULL, '', 'F', 0, 37, NULL, '1986-08-10', NULL, 3, NULL, '0', '', 0, NULL, '9727764774', NULL, '', 'Live', '', 'DPM000678.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(701, 326, 'DPF0175-01', 'DPF0175', 'Kalayanji', 'Gangji', 'Ravji', 106, NULL, '', 'M', 5, 22, NULL, '1948-11-18', NULL, 3, NULL, '256', '', 0, NULL, '9769419241', NULL, '', 'Live', '', 'DPF0175-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(702, 326, 'DPF0175-02', 'DPF0175', 'Vanitaben', 'Kalayanji', 'Gangji', 106, NULL, '', 'F', 5, 28, NULL, '0000-00-00', NULL, 3, NULL, '256', '', 0, NULL, '9769073215', NULL, '', 'Live', '', 'DPF0175-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(703, 326, 'DPF0175-03', 'DPF0175', 'Rajan', 'Kalayanji', 'Gangji', 106, NULL, '', 'M', 5, 25, NULL, '1984-02-22', NULL, 3, NULL, '216', '', 0, NULL, '9726822729', NULL, '', 'Live', '', 'DPM000681.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(704, 326, 'DPF0175-04', 'DPF0175', 'Khyati', 'Rajan', 'Kalayanji', 106, NULL, '', 'F', 3, 35, NULL, '1986-05-02', NULL, 3, NULL, '226', '', 0, NULL, '9221056101', NULL, '', 'Live', '', 'DPF0175-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(705, 326, 'DPF0175-05', 'DPF0175', 'Vansh', 'Rajan', 'Kalayanji', 106, NULL, '', 'M', 3, 15, NULL, '2009-01-07', NULL, 2, NULL, '136', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0175-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(706, 327, 'DPF0176-01', 'DPF0176', 'Hitesh', 'Kalyanji', 'Gangji', 106, NULL, '', 'M', 5, 22, NULL, '1973-04-11', NULL, 3, NULL, '216', '', 0, NULL, '9820095944', NULL, '<EMAIL>', 'Live', '', 'DPM000684.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(707, 327, 'DPF0176-02', 'DPF0176', 'Heena', 'Hitesh', 'Kalyanji', 106, NULL, '', 'F', 5, 28, NULL, '1973-12-22', NULL, 3, NULL, '216', '', 0, NULL, '9820004522', NULL, '', 'Live', '', 'DPF0176-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(708, 327, 'DPF0176-03', 'DPF0176', 'Ronak', 'Hitesh', 'Kalyanji', 106, NULL, '', 'M', 5, 25, NULL, '1997-11-28', NULL, 2, NULL, '217', '', 0, NULL, '', NULL, '', 'Live', '', 'DPM000686.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(709, 328, 'DPF0177-01', 'DPF0177', 'Mulchand', 'Gangji', 'Ravji', 106, NULL, '', 'M', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '261', '', 0, NULL, '9867999179', NULL, '', 'Live', '', 'DPF0177-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(710, 328, 'DPF0177-02', 'DPF0177', 'Jyotiben', 'Mulchand', 'Gangji', 106, NULL, '', 'F', 0, 28, NULL, '0000-00-00', NULL, 3, NULL, '216', '', 0, NULL, '9920306885', NULL, '', 'Live', '', 'DPF0177-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(711, 328, 'DPF0177-03', 'DPF0177', 'Deepak', 'Mulchand', 'Gangji', 106, NULL, '', 'M', 5, 25, NULL, '0000-00-00', NULL, 3, NULL, '216', '', 0, NULL, '9819472479', NULL, '', 'Live', '', 'DPM000689.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(712, 328, 'DPF0177-04', 'DPF0177', 'Dharini', 'Deepak', 'Mulchand', 106, NULL, '', 'F', 4, 35, NULL, '0000-00-00', NULL, 3, NULL, '155', '', 0, NULL, '8080472429', NULL, '', 'Live', '', 'DPF0177-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(713, 328, 'DPF0177-05', 'DPF0177', 'Jiya', 'Deepak', 'Mulchand', 106, NULL, '', 'F', 5, 10, NULL, '0000-00-00', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0177-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(714, 328, 'DPF0177-06', 'DPF0177', 'Mayur', 'Mulchand', 'Gangji', 106, NULL, '', 'M', 5, 25, NULL, '0000-00-00', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0177-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(715, 328, 'DPF0177-07', 'DPF0177', 'Jinal', 'Mayur', 'Mulchand', 106, NULL, '', 'F', 5, 35, NULL, '0000-00-00', NULL, 3, NULL, '259', '', 0, NULL, '', NULL, '', 'Live', '', 'DPM000693.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(716, 329, 'DPF0178-01', 'DPF0178', 'Kantilal', 'Gangji', 'Ravji', 106, NULL, '', 'M', 0, 22, NULL, '1957-07-22', NULL, 3, NULL, '262', '', 0, NULL, '9769403080', NULL, '', 'Live', '', 'DPF0178-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(717, 329, 'DPF0178-02', 'DPF0178', 'Rekhaben', 'Kantilal', 'Gangji', 106, NULL, '', 'F', 0, 28, NULL, '1958-11-10', NULL, 3, NULL, '256', '', 0, NULL, '9619565056', NULL, '', 'Live', '', 'DPF0178-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(718, 330, 'DPF0179-01', 'DPF0179', 'Khushal', 'Gangji', 'Ravji', 106, NULL, '', 'M', 5, 22, NULL, '1960-10-19', NULL, 3, NULL, '216', '', 0, NULL, '9322371593', NULL, '', 'Live', '', 'DPF0179-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(719, 330, 'DPF0179-02', 'DPF0179', 'Shushila', 'Khushal', 'Gangji', 106, NULL, '', 'F', 5, 28, NULL, '1968-01-17', NULL, 3, NULL, '262', '', 0, NULL, '9322301604', NULL, '', 'Live', '', 'DPF0179-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(720, 330, 'DPF0179-03', 'DPF0179', 'Ankita', 'Khushal', 'Gangji', 106, NULL, '', 'F', 5, 6, NULL, '1991-07-06', NULL, 2, NULL, '308', '', 0, NULL, '9773178876', NULL, '<EMAIL>', 'Live', '', 'DPF0179-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(721, 331, 'DPF0180-01', 'DPF0180', 'Jayantilal', 'Kanji', 'Ravji', 106, NULL, '', 'M', 5, 22, NULL, '1958-10-21', NULL, 3, NULL, '261', '', 0, NULL, '9869533058', NULL, '', 'Live', '', 'DPF0180-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(722, 331, 'DPF0180-02', 'DPF0180', 'Amrutben', 'Jayantilal', 'Kanji', 106, NULL, '', 'F', 3, 28, NULL, '1959-01-18', NULL, 3, NULL, '24', '', 0, NULL, '26131406', NULL, '', 'Live', '', 'DPF0180-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(723, 331, 'DPF0180-03', 'DPF0180', 'Bijal', 'Jayantilal', 'Kanji', 106, NULL, '', 'F', 3, 6, NULL, '1984-08-21', NULL, 2, NULL, '60', '', 0, NULL, '9969395596', NULL, '', 'Live', '', 'DPF0180-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(724, 331, 'DPF0180-04', 'DPF0180', 'Mital', 'Jayantilal', 'Kanji', 106, NULL, '', 'F', 3, 6, NULL, '1985-10-11', NULL, 2, NULL, '60', '', 0, NULL, '7208650506', NULL, '', 'Live', '', 'DPF0180-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(725, 332, 'DPF0181-01', 'DPF0181', 'Chetan', 'Kanji', 'Ravji', 106, NULL, '', 'M', 6, 22, NULL, '1969-08-30', NULL, 3, NULL, '216', '', 0, NULL, '9422679071', NULL, '', 'Live', '', 'DPF0181-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(726, 332, 'DPF0181-02', 'DPF0181', 'Nilam', 'Chetan', 'Kanji', 106, NULL, '', 'F', 3, 28, NULL, '1975-12-29', NULL, 3, NULL, '216', '', 0, NULL, '9969850082', NULL, '', 'Live', '', 'DPF0181-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(727, 333, 'DPF0182-01', 'DPF0182', 'Vishanji', 'Ravji', 'Korshi', 106, NULL, '', 'M', 5, 22, NULL, '0000-00-00', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0182-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(728, 333, 'DPF0182-02', 'DPF0182', 'Laxmiben', 'Vishanji', 'Ravji', 106, NULL, '', 'F', 5, 28, NULL, '0000-00-00', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0182-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(729, 333, 'DPF0182-03', 'DPF0182', 'Nemji', 'Vishanji', 'Ravji', 106, NULL, '', 'M', 5, 25, NULL, '1963-06-06', NULL, 3, NULL, '216', '', 0, NULL, '9820662490', NULL, '', 'Live', '', 'DPF0182-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(730, 333, 'DPF0182-04', 'DPF0182', 'Priti', 'Nemji', 'Vishanji', 106, NULL, '', 'F', 3, 35, NULL, '1964-01-06', NULL, 3, NULL, '216', '', 0, NULL, '9167185758', NULL, '', 'Live', '', 'DPF0182-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(731, 333, 'DPF0182-05', 'DPF0182', 'Jekin', 'Nemji', 'Vishanji', 106, NULL, '', 'M', 5, 15, NULL, '1986-04-03', NULL, 3, NULL, '269', '', 0, NULL, '9819657579', NULL, '<EMAIL>', 'Live', '', 'DPF0182-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(732, 333, 'DPF0182-06', 'DPF0182', 'Rashmi', 'Jekin', 'Nemji', 106, NULL, '', 'F', 3, 37, NULL, '1988-08-18', NULL, 3, NULL, '122', '', 0, NULL, '9167183130', NULL, '', 'Live', '', 'DPF0182-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(733, 333, 'DPF0182-07', 'DPF0182', 'Minal', 'Nemji', 'Vishanji', 106, NULL, '', 'F', 5, 10, NULL, '1989-07-07', NULL, 2, NULL, '270', '', 0, NULL, '9820802970', NULL, '', 'Live', '', 'DPF0182-07.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(734, 334, 'DPF0183-01', 'DPF0183', 'Vinod', 'Vishanji', 'Ravji', 106, NULL, '', 'M', 0, 22, NULL, '1967-06-15', NULL, 3, NULL, '216', '', 0, NULL, '9821281666', NULL, '', 'Live', '', 'DPF0183-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(735, 334, 'DPF0183-02', 'DPF0183', 'Vashali', 'Vinod', 'Vishanji', 106, NULL, '', 'F', 7, 28, NULL, '1970-12-13', NULL, 3, NULL, '216', '', 0, NULL, '9969321322', NULL, '', 'Live', '', 'DPF0183-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(736, 334, 'DPF0183-03', 'DPF0183', 'Chintan', 'Vinod', 'Vishanji', 106, NULL, '', 'M', 7, 25, NULL, '1991-12-17', NULL, 2, NULL, '271', '', 0, NULL, '9773360413', NULL, '', 'Live', '', 'DPF0183-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(737, 334, 'DPF0183-04', 'DPF0183', 'Vinit', 'Vinod', 'Vishanji', 106, NULL, '', 'M', 0, 25, NULL, '1998-11-06', NULL, 2, NULL, '262', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0183-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(738, 335, 'DPF0184-01', 'DPF0184', 'Praful', 'Vishanji', 'Ravji', 106, NULL, '', 'M', 5, 22, NULL, '1974-05-30', NULL, 3, NULL, '216', '', 0, NULL, '9892436766', NULL, '<EMAIL>', 'Live', '', 'DPF0184-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(739, 335, 'DPF0184-02', 'DPF0184', 'Deepali', 'Praful', 'Vishanji', 106, NULL, '', 'F', 5, 28, NULL, '1976-11-04', NULL, 3, NULL, '216', '', 0, NULL, '9867489020', NULL, '', 'Live', '', 'DPF0184-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(740, 335, 'DPF0184-03', 'DPF0184', 'Raj', 'Praful', 'Vishanji', 106, NULL, '', 'M', 5, 25, NULL, '1998-05-11', NULL, 2, NULL, '216', '', 0, NULL, '8652067027', NULL, '', 'Live', '', 'DPF0184-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(741, 336, 'DPF0185-01', 'DPF0185', 'Kunvarji', 'Ravji', 'Korshi', 106, NULL, '', 'M', 1, 22, NULL, '0000-00-00', NULL, 3, NULL, '258', '', 0, NULL, '26631346', NULL, '', 'Live', '', 'DPF0185-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(742, 336, 'DPF0185-02', 'DPF0185', 'Lachhbai', 'Kunvarji', 'Ravji', 106, NULL, '', 'F', 5, 28, NULL, '0000-00-00', NULL, 3, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0185-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(743, 336, 'DPF0185-03', 'DPF0185', 'Bipin', 'Kunvarji', 'Ravji', 106, NULL, '', 'M', 5, 25, NULL, '1972-05-14', NULL, 3, NULL, '214', '', 0, NULL, '9820386707', NULL, '<EMAIL>', 'Live', '', 'DPF0185-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(744, 336, 'DPF0185-04', 'DPF0185', 'Geeta', 'Bipin', 'Kunvarji', 106, NULL, '', 'F', 5, 35, NULL, '1975-04-07', NULL, 3, NULL, '259', '', 0, NULL, '9833313006', NULL, '<EMAIL>', 'Live', '', 'DPF0185-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(745, 336, 'DPF0185-05', 'DPF0185', 'Freya', 'Bipin', 'Kunvarji', 106, NULL, '', 'F', 5, 10, NULL, '2002-01-13', NULL, 2, NULL, '282', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0185-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(746, 337, 'DPF0186-01', 'DPF0186', 'Shantilal', 'Hirji', 'Ravji', 106, NULL, '', 'M', 1, 22, NULL, '1964-10-17', NULL, 3, NULL, '257', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0186-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(747, 337, 'DPF0186-02', 'DPF0186', 'Laxmiben', 'Shantilal', 'Hirji', 106, NULL, '', 'F', 1, 28, NULL, '1965-12-05', NULL, 3, NULL, '256', '', 0, NULL, '9702877443', NULL, '', 'Live', '', 'DPF0186-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(748, 337, 'DPF0186-03', 'DPF0186', 'Sagar', 'Shantilal', 'Hirji', 106, NULL, '', 'M', 1, 25, NULL, '1988-08-01', NULL, 2, NULL, '256', '', 0, NULL, '9967124574', NULL, '', 'Live', '', 'DPF0186-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(749, 337, 'DPF0186-04', 'DPF0186', 'Dimple', 'Shantilal', 'Hirji', 106, NULL, '', 'F', 5, 6, NULL, '1992-08-27', NULL, 2, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0186-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(750, 337, 'DPF0186-05', 'DPF0186', 'Javerben', 'Hirji', 'Ravji', 106, NULL, '', 'F', 1, 17, NULL, '0000-00-00', NULL, 3, NULL, '257', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0186-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(751, 338, 'DPF0187-01', 'DPF0187', 'Jayesh', 'Hirji', 'Ravji', 106, NULL, '', 'M', 0, 22, NULL, '1967-06-25', NULL, 3, NULL, '261', '', 0, NULL, '8080290340', NULL, '', 'Live', '', 'DPF0187-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(752, 338, 'DPF0187-02', 'DPF0187', 'Taruna', 'Jayesh', 'Hirji', 106, NULL, '', 'F', 0, 28, NULL, '1970-01-04', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0187-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(753, 338, 'DPF0187-03', 'DPF0187', 'Tejas', 'Jayesh', 'Hirji', 106, NULL, '', 'M', 0, 25, NULL, '1992-09-29', NULL, 2, NULL, '214', '', 0, NULL, '8108040594', NULL, '', 'Live', '', 'DPF0187-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(754, 338, 'DPF0187-04', 'DPF0187', 'Nitin', 'Jayesh', 'Hirji', 106, NULL, '', 'M', 0, 25, NULL, '1975-01-10', NULL, 2, NULL, '257', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0187-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(755, 339, 'DPF0188-01', 'DPF0188', 'Sakarben', 'Bhanji', 'Nanji', 147, NULL, '', 'F', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '26492379', NULL, '', 'Live', '', 'DPF0188-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(756, 339, 'DPF0188-02', 'DPF0188', 'Talak', 'Bhanji', 'Nanji', 147, NULL, '', 'M', 3, 25, NULL, '1942-12-05', NULL, 3, NULL, '309', '', 0, NULL, '9819170315', NULL, '<EMAIL>', 'Live', '', 'DPF0188-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL);
INSERT INTO `family_member` (`id`, `family_id`, `member_no`, `family_no`, `first_name`, `second_name`, `third_name`, `surname_id`, `other_surname_details`, `regd_id`, `sex`, `blood_id`, `relation_id`, `other_relation_details`, `dob`, `dod`, `marriage_type`, `dom`, `education_id`, `other_education_details`, `occupation_id`, `other_occupation_details`, `contact`, `altcontact`, `email`, `live_type`, `member_type`, `image`, `life_insurance`, `life_insurance_text`, `medical_insurance`, `sanjeevni`, `medical_insurance_text`, `sports_id`, `other_sports_details`, `achivements`, `dharmik_id`, `username`, `password`, `fm_status`, `old_value`, `new_value`, `merge_status`, `merge_flag`, `merge_data`, `merge_user_data`, `added_on`, `updated_on`, `deleted`, `delete_reason`, `deleted_on`) VALUES
(757, 339, 'DPF0188-03', 'DPF0188', 'Madhuriben', 'Talak', 'Bhanji', 147, NULL, '', 'F', 3, 35, NULL, '1947-06-15', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0188-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(758, 340, 'DPF0189-01', 'DPF0189', 'Lakhamshi', 'Devji', 'Nanji ', 147, NULL, '', 'M', 5, 22, NULL, '0000-00-00', NULL, 3, NULL, '257', '', 0, NULL, '9820950809', NULL, '<EMAIL>', 'Live', '', 'DPF0189-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(759, 340, 'DPF0189-02', 'DPF0189', 'Panbai', 'Lakhamshi', 'Devji', 147, NULL, '', 'F', 5, 28, NULL, '0000-00-00', NULL, 3, NULL, '268', '', 0, NULL, '9619350858', NULL, '', 'Live', '', 'DPF0189-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(760, 340, 'DPF0189-03', 'DPF0189', 'Niteen', 'Lakhamshi', 'Devji', 147, NULL, '', 'M', 5, 25, NULL, '1963-07-05', NULL, 3, NULL, '259', '', 0, NULL, '9322241318', NULL, '<EMAIL>', 'Live', '', 'DPF0189-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(761, 340, 'DPF0189-04', 'DPF0189', 'Heena', 'Niteen', 'Lakhamshi', 147, NULL, '', 'F', 5, 35, NULL, '1965-09-12', NULL, 3, NULL, '259', '', 0, NULL, '9819397814', NULL, '<EMAIL>', 'Live', '', 'DPF0189-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(762, 340, 'DPF0189-05', 'DPF0189', 'Tanvi', 'Niteen', 'Lakhamshi', 147, NULL, '', 'F', 5, 10, NULL, '1990-07-30', NULL, 2, NULL, '310', '', 0, NULL, '9820193005', NULL, '<EMAIL>', 'Live', '', 'DPF0189-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(763, 341, 'DPF0190-01', 'DPF0190', 'Dhiraj', 'Lakhamshi', 'Devji', 147, NULL, '', 'M', 5, 22, NULL, '1960-09-01', NULL, 3, NULL, '271', '', 0, NULL, '9819941760', NULL, '<EMAIL>', 'Live', '', 'DPF0190-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(764, 341, 'DPF0190-02', 'DPF0190', 'Harsha', 'Dhiraj', 'Lakhamshi', 147, NULL, '', 'F', 1, 28, NULL, '1962-08-27', NULL, 3, NULL, '259', '', 0, NULL, '9833965516', NULL, '<EMAIL>', 'Live', '', 'DPF0190-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(765, 341, 'DPF0190-03', 'DPF0190', 'Bhavi', 'Dhiraj', 'Lakhamshi', 147, NULL, '', 'F', 5, 6, NULL, '1993-11-18', NULL, 2, NULL, '272', '', 0, NULL, '98339156183', NULL, '<EMAIL>', 'Live', '', 'DPF0190-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(766, 342, 'DPF0191-01', 'DPF0191', 'Damji', 'Devji', 'Nanji', 147, NULL, '', 'M', 0, 22, NULL, '1930-02-25', NULL, 3, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0191-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(767, 342, 'DPF0191-02', 'DPF0191', 'Zaverben', 'Damji', 'Devji', 147, NULL, '', 'F', 7, 28, NULL, '1937-10-24', NULL, 3, NULL, '268', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0191-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(768, 342, 'DPF0191-03', 'DPF0191', 'Deepak', 'Damji', 'Devji', 147, NULL, '', 'M', 7, 25, NULL, '1964-12-12', NULL, 3, NULL, '216', '', 0, NULL, '9820735115', NULL, '', 'Live', '', 'DPF0191-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(769, 342, 'DPF0191-04', 'DPF0191', 'Daksha', 'Deepak', 'Damji', 147, NULL, '', 'F', 5, 35, NULL, '1966-10-27', NULL, 3, NULL, '214', '', 0, NULL, '9920904499', NULL, '', 'Live', '', 'DPF0191-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(770, 342, 'DPF0191-05', 'DPF0191', 'Jay', 'Deepak', 'Damji', 147, NULL, '', 'M', 7, 15, NULL, '1989-05-27', NULL, 2, NULL, '148', '', 0, NULL, '9619150663', NULL, '<EMAIL>', 'Live', '', 'DPF0191-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(771, 343, 'DPF0192-01', 'DPF0192', 'Bhavesh', 'Tokershi', 'Ramji', 147, NULL, '', 'M', 3, 22, NULL, '1972-07-24', NULL, 3, NULL, '216', '', 0, NULL, '9324312809', NULL, '<EMAIL>', 'Live', '', 'DPF0192-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(772, 343, 'DPF0192-02', 'DPF0192', 'Bhavika', 'Bhavesh', 'Tokershi', 147, NULL, '', 'F', 3, 28, NULL, '1977-01-30', NULL, 3, NULL, '259', '', 0, NULL, '9323123293', NULL, '', 'Live', '', 'DPF0192-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(773, 343, 'DPF0192-03', 'DPF0192', 'Aayush', 'Bhavesh', 'Tokershi', 147, NULL, '', 'M', 3, 25, NULL, '2003-10-12', NULL, 2, NULL, '257', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0192-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(774, 344, 'DPF0193-01', 'DPF0193', 'Khushal', 'Raghavji', 'Kheraj', 147, NULL, '', 'M', 5, 22, NULL, '1951-11-06', NULL, 3, NULL, '60', '', 0, NULL, '9323521364', NULL, '<EMAIL>', 'Live', '', 'DPF0193-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(775, 344, 'DPF0193-02', 'DPF0193', 'Hansa', 'Khushal', 'Raghavji', 147, NULL, '', 'F', 3, 28, NULL, '1953-09-04', NULL, 3, NULL, '311', '', 0, NULL, '9323206587', NULL, '<EMAIL>', 'Live', '', 'DPF0193-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(776, 344, 'DPF0193-03', 'DPF0193', 'Niket', 'Khushal', 'Raghavji', 147, NULL, '', 'M', 5, 25, NULL, '1979-05-24', NULL, 3, NULL, '312', '', 0, NULL, '9821615128', NULL, '<EMAIL>', 'Live', '', 'DPF0193-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(777, 344, 'DPF0193-04', 'DPF0193', 'Jital', 'Niket', 'Khushal', 147, NULL, '', 'F', 3, 35, NULL, '1980-12-11', NULL, 3, NULL, '313', '', 0, NULL, '9820502424', NULL, '<EMAIL>', 'Live', '', 'DPF0193-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(778, 344, 'DPF0193-05', 'DPF0193', 'Arhaan', 'Niket', 'Khushal', 147, NULL, '', 'M', 3, 15, NULL, '2009-12-19', NULL, 2, NULL, '314', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0193-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(779, 344, 'DPF0193-06', 'DPF0193', 'Anishka', 'Niket', 'Khushal', 147, NULL, '', 'M', 5, 15, NULL, '2013-08-02', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0193-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(780, 344, 'DPF0193-07', 'DPF0193', 'Laxmiben', 'Raghavji', 'Kheraj', 147, NULL, '', 'F', 0, 17, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0193-07.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(781, 345, 'DPF0194-01', 'DPF0194', 'Dinesh', 'Raghavji', 'Kheraj', 147, NULL, '', 'M', 4, 22, NULL, '1954-04-28', NULL, 3, NULL, '114', '', 0, NULL, '9323527265', NULL, '', 'Live', '', 'DPF0194-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(782, 345, 'DPF0194-02', 'DPF0194', 'Jyotiben', 'Dinesh', 'Raghavji', 147, NULL, '', 'F', 3, 28, NULL, '1957-05-18', NULL, 3, NULL, '24', '', 0, NULL, '9870534445', NULL, '', 'Live', '', 'DPF0194-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(783, 345, 'DPF0194-03', 'DPF0194', 'Kekin', 'Dinesh', 'Raghavji', 147, NULL, '', 'M', 1, 25, NULL, '1980-10-28', NULL, 3, NULL, '259', '', 0, NULL, '9320034446', NULL, '<EMAIL>', 'Live', '', 'DPF0194-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(784, 345, 'DPF0194-04', 'DPF0194', 'Reena', 'Kekin', 'Dinesh', 147, NULL, '', 'F', 1, 35, NULL, '1980-04-29', NULL, 3, NULL, '273', '', 0, NULL, '9920034445', NULL, '<EMAIL>', 'Live', '', 'DPF0194-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(785, 345, 'DPF0194-05', 'DPF0194', 'Fiyoni', 'Kekin', 'Dinesh', 147, NULL, '', 'F', 1, 10, NULL, '2007-09-21', NULL, 2, NULL, '264', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0194-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(786, 345, 'DPF0194-06', 'DPF0194', 'Riyona', 'Kekin', 'Dinesh', 147, NULL, '', 'F', 7, 10, NULL, '2010-08-15', NULL, 2, NULL, '180', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0194-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(787, 346, 'DPF0195-01', 'DPF0195', 'Hirji', 'Devraj', 'Valji', 147, NULL, '', 'M', 5, 22, NULL, '1939-07-17', NULL, 3, NULL, '216', '', 7, NULL, '7738031006', NULL, '', 'Live', '', 'DPF0195-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(788, 346, 'DPF0195-02', 'DPF0195', 'Nirmalben', 'Hirji', 'Devraj', 147, NULL, '', 'F', 3, 28, NULL, '1941-10-17', NULL, 3, NULL, '257', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0195-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(789, 347, 'DPF0196-01', 'DPF0196', 'Maniben', 'Ratilal', 'Gangji', 147, NULL, '', 'F', 3, 22, NULL, '1944-11-21', NULL, 3, NULL, '258', '', 7, NULL, '', NULL, '', 'Live', '', 'DPF0196-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(790, 348, 'DPF0197-01', 'DPF0197', 'Umesh', 'Ratilal', 'Gangji', 147, NULL, '', 'M', 0, 22, NULL, '1963-03-01', NULL, 3, NULL, '216', '', 8, NULL, '9892303529', NULL, '<EMAIL>', 'Live', '', 'DPF0197-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(791, 348, 'DPF0197-02', 'DPF0197', 'Sushma', 'Umesh', 'Ratilal', 147, NULL, '', 'F', 5, 28, NULL, '1966-07-07', NULL, 3, NULL, '214', '', 0, NULL, '9987427839', NULL, '', 'Live', '', 'DPF0197-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(792, 348, 'DPF0197-03', 'DPF0197', 'Richa', 'Umesh', 'Ratilal', 147, NULL, '', 'F', 5, 6, NULL, '1998-10-22', NULL, 2, NULL, '216', '', 0, NULL, '9172873437', NULL, '', 'Live', '', 'DPF0197-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(793, 349, 'DPF0198-01', 'DPF0198', 'Shailesh', 'Ratilal', 'Gangji', 147, NULL, '', 'M', 7, 22, NULL, '1964-05-06', NULL, 3, NULL, '259', '', 2, NULL, '9324646381', NULL, '<EMAIL>', 'Live', '', 'DPF0198-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(794, 349, 'DPF0198-02', 'DPF0198', 'Ashwini', 'Shailesh', 'Ratilal', 147, NULL, '', 'F', 5, 28, NULL, '1966-03-26', NULL, 3, NULL, '259', '', 0, NULL, '9869326365', NULL, '', 'Live', '', 'DPF0198-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(795, 350, 'DPF0199-01', 'DPF0199', 'Kantilal', 'Gangji', 'Valji', 147, NULL, '', 'M', 0, 22, NULL, '1945-12-19', NULL, 3, NULL, '216', '', 7, NULL, '7208105072', NULL, '', 'Live', '', 'DPF0199-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(796, 350, 'DPF0199-02', 'DPF0199', 'Rukshmani', 'Kantilal', 'Gangji', 147, NULL, '', 'F', 0, 28, NULL, '1948-05-20', NULL, 3, NULL, '256', '', 0, NULL, '9221204477', NULL, '', 'Live', '', 'DPF0199-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(797, 350, 'DPF0199-03', 'DPF0199', 'Harsha', '', 'Kantilal', 147, NULL, '', 'F', 3, 35, NULL, '1974-12-31', NULL, 3, NULL, '216', '', 0, NULL, '9820303565', NULL, '<EMAIL>', 'Live', '', 'DPF0199-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(798, 350, 'DPF0199-04', 'DPF0199', 'Khushbu', '', 'Kantilal', 147, NULL, '', 'F', 3, 10, NULL, '1999-06-30', NULL, 2, NULL, '262', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0199-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(799, 351, 'DPF0200-01', 'DPF0200', 'Mahendra', 'Gangji', 'Valji', 147, NULL, '', 'M', 7, 22, NULL, '1955-09-14', NULL, 3, NULL, '271', '', 2, NULL, '9322233322', NULL, '<EMAIL>', 'Live', '', 'DPF0200-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(800, 351, 'DPF0200-02', 'DPF0200', 'Pravina', 'Mahendra', 'Gangji', 147, NULL, '', 'F', 3, 28, NULL, '1959-06-10', NULL, 3, NULL, '259', '', 0, NULL, '9320026350', NULL, '', 'Live', '', 'DPF0200-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(801, 351, 'DPF0200-03', 'DPF0200', 'Keyur', 'Mahendra', 'Gangji', 147, NULL, '', 'M', 3, 25, NULL, '1982-09-12', NULL, 3, NULL, '271', '', 0, NULL, '9869017494', NULL, '<EMAIL>', 'Live', '', 'DPF0200-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(802, 351, 'DPF0200-04', 'DPF0200', 'Rinku', 'Keyur', 'Mahendra', 147, NULL, '', 'F', 1, 35, NULL, '1982-10-18', NULL, 3, NULL, '315', '', 0, NULL, '9820235064', NULL, '<EMAIL>', 'Live', '', 'DPF0200-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(803, 351, 'DPF0200-05', 'DPF0200', 'Khant', 'Keyur', 'Mahendra', 147, NULL, '', 'M', 7, 15, NULL, '2010-09-20', NULL, 2, NULL, '180', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0200-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(804, 351, 'DPF0200-06', 'DPF0200', 'Jay', 'Gangji', 'Valji', 147, NULL, '', 'M', 7, 25, NULL, '1987-04-21', NULL, 3, NULL, '271', '', 0, NULL, '9820896491', NULL, '<EMAIL>', 'Live', '', 'DPF0200-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(805, 351, 'DPF0200-07', 'DPF0200', 'Hemal', 'Jay', 'Gangji', 147, NULL, '', 'F', 3, 35, NULL, '1987-08-05', NULL, 3, NULL, '148', '', 0, NULL, '7666750028', NULL, '<EMAIL>', 'Live', '', 'DPF0200-07.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(806, 352, 'DPF0201-01', 'DPF0201', 'Laxmichand', 'Premji', 'Valji', 147, NULL, '', 'M', 0, 22, NULL, '0000-00-00', NULL, 2, NULL, '0', '', 7, NULL, '', NULL, '', 'Live', '', 'DPM000786.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(807, 353, 'DPF0202-01', 'DPF0202', 'Manilal', 'Premji', 'Valji', 147, NULL, '', 'M', 3, 22, NULL, '1949-01-22', NULL, 3, NULL, '256', '', 2, NULL, '9869576070', NULL, '', 'Live', '', 'DPF0202-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(808, 353, 'DPF0202-02', 'DPF0202', 'Hemlataben', 'Manilal', 'Premji', 147, NULL, '', 'F', 3, 28, NULL, '1955-04-01', NULL, 3, NULL, '217', '', 0, NULL, '7738833335', NULL, '', 'Live', '', 'DPF0202-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(809, 353, 'DPF0202-03', 'DPF0202', 'Digesh', 'Manilal', 'Premji', 147, NULL, '', 'M', 3, 25, NULL, '1981-05-28', NULL, 3, NULL, '271', '', 0, NULL, '8080883188', NULL, '<EMAIL>', 'Live', '', 'DPF0202-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(810, 353, 'DPF0202-04', 'DPF0202', 'Bhakti', 'Digesh', 'Manilal', 147, NULL, '', 'F', 5, 35, NULL, '1982-08-30', NULL, 3, NULL, '107', '', 0, NULL, '9819167636', NULL, '<EMAIL>', 'Live', '', 'DPF0202-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(811, 353, 'DPF0202-05', 'DPF0202', 'Parhrvi', 'Digesh', 'Manilal', 147, NULL, '', 'F', 3, 10, NULL, '2013-04-23', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPM000791.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(812, 353, 'DPF0202-06', 'DPF0202', 'Neepa', 'Manilal', 'Premji', 147, NULL, '', 'F', 3, 6, NULL, '1986-04-26', NULL, 2, NULL, '285', '', 0, NULL, '9820222577', NULL, '', 'Live', '', 'DPF0202-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(813, 354, 'DPF0203-01', 'DPF0203', 'Chandrakant', 'Premji', 'Valji', 147, NULL, '', 'M', 0, 22, NULL, '1954-09-14', NULL, 3, NULL, '216', '', 7, NULL, '9324732917', NULL, '', 'Live', '', 'DPF0203-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(814, 354, 'DPF0203-02', 'DPF0203', 'Ankita', 'Chandrakant', 'Premji', 147, NULL, '', 'F', 0, 6, NULL, '1991-09-28', NULL, 2, NULL, '316', '', 0, NULL, '9967979679', NULL, '<EMAIL>', 'Live', '', 'DPF0203-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(815, 354, 'DPF0203-03', 'DPF0203', 'Dimple', 'Chandrakant', 'Premji', 147, NULL, '', 'F', 0, 6, NULL, '1994-05-18', NULL, 2, NULL, '317', '', 0, NULL, '9870732847', NULL, '', 'Live', '', 'DPF0203-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(816, 355, 'DPF0204-01', 'DPF0204', 'Devchand', 'Shamji', '', 147, NULL, '', 'M', 3, 22, NULL, '1960-05-20', NULL, 3, NULL, '256', '', 2, NULL, '9892930896', NULL, '', 'Live', '', 'DPF0204-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(817, 355, 'DPF0204-02', 'DPF0204', 'Geeta', 'Devchand', 'Shamji', 147, NULL, '', 'F', 3, 28, NULL, '1968-01-05', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0204-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(818, 355, 'DPF0204-03', 'DPF0204', 'Hiral', 'Devchand', 'Shamji', 147, NULL, '', 'M', 5, 25, NULL, '1988-05-21', NULL, 2, NULL, '259', '', 0, NULL, '9699132600', NULL, '<EMAIL>', 'Live', '', 'DPF0204-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(819, 355, 'DPF0204-04', 'DPF0204', 'Shweta', 'Devchand', 'Shamji', 147, NULL, '', 'F', 5, 6, NULL, '1991-08-26', NULL, 2, NULL, '259', '', 0, NULL, '9892930896', NULL, '<EMAIL>', 'Live', '', 'DPF0204-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(820, 355, 'DPF0204-05', 'DPF0204', 'Harkhchand', 'Shamji', '', 147, NULL, '', 'M', 0, 4, NULL, '1957-12-12', NULL, 2, NULL, '261', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0204-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(821, 356, 'DPF0205-01', 'DPF0205', 'Suresh', 'Shamji', 'Chana', 147, NULL, '', 'M', 0, 22, NULL, '1963-09-04', NULL, 3, NULL, '216', '', 2, NULL, '9890005466', NULL, '', 'Live', '', 'DPF0205-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(822, 356, 'DPF0205-02', 'DPF0205', 'Jayshree', 'Suresh', 'Shamji', 147, NULL, '', 'F', 0, 28, NULL, '1968-07-11', NULL, 3, NULL, '216', '', 0, NULL, '7588306815', NULL, '', 'Live', '', 'DPF0205-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(823, 356, 'DPF0205-03', 'DPF0205', 'Ankita', 'Suresh', 'Shamji', 147, NULL, '', 'F', 0, 6, NULL, '1990-11-30', NULL, 2, NULL, '148', '', 0, NULL, '9890443344', NULL, '<EMAIL>', 'Live', '', 'DPF0205-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(824, 357, 'DPF0206-01', 'DPF0206', 'Hasmukh', 'Shamji', 'Valji', 147, NULL, '', 'M', 0, 22, NULL, '1965-08-24', NULL, 3, '1982-08-07', '216', '', 2, NULL, '9595540360', NULL, '', 'Live', '', 'DPF0206-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(825, 357, 'DPF0206-02', 'DPF0206', 'Vanita', 'Hasmukh', 'Shamji', 147, NULL, '', 'F', 0, 28, NULL, '1968-09-14', NULL, 3, '1982-08-07', '216', '', 0, NULL, '7843060868', NULL, '', 'Live', '', 'DPF0206-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(826, 357, 'DPF0206-03', 'DPF0206', 'Rushabh', 'Hasmukh', 'Shamji', 147, NULL, '', 'M', 0, 25, NULL, '1993-01-16', NULL, 2, NULL, '318', '', 0, NULL, '9028909314', NULL, '', 'Live', '', 'DPF0206-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(827, 357, 'DPF0206-04', 'DPF0206', 'Umang', 'Hasmukh', 'Shamji', 147, NULL, '', 'M', 0, 25, NULL, '2000-06-29', NULL, 2, NULL, '261', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0206-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(828, 358, 'DPF0207-01', 'DPF0207', 'Shantaben', 'Shivji', 'Jetha', 147, NULL, '', 'F', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPM000808.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(829, 359, 'DPF0208-01', 'DPF0208', 'Vijay', 'Hirji', 'Jetha', 147, NULL, '', 'M', 5, 22, NULL, '1959-05-08', NULL, 3, NULL, '216', '', 2, NULL, '9322114179', NULL, '', 'Live', '', 'DPF0208-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(830, 359, 'DPF0208-02', 'DPF0208', 'Harsha', 'Vijay', 'Hirji', 147, NULL, '', 'F', 5, 28, NULL, '1966-10-10', NULL, 3, NULL, '216', '', 0, NULL, '9322114176', NULL, '', 'Live', '', 'DPF0208-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(831, 359, 'DPF0208-03', 'DPF0208', 'Nirav', 'Vijay', 'Hirji', 147, NULL, '', 'M', 5, 25, NULL, '1989-06-17', NULL, 2, NULL, '259', '', 0, NULL, '9860235526', NULL, '', 'Live', '', 'DPF0208-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(832, 359, 'DPF0208-04', 'DPF0208', 'Khushbu', 'Vijay', 'Hirji', 147, NULL, '', 'F', 5, 6, NULL, '1991-10-16', NULL, 2, NULL, '285', '', 0, NULL, '9322114173', NULL, '<EMAIL>', 'Live', '', 'DPF0208-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(833, 360, 'DPF0209-01', 'DPF0209', 'Bharat', 'Hirji', 'Jethalal', 147, NULL, '', 'M', 0, 22, NULL, '1962-02-02', NULL, 3, NULL, '282', '', 2, NULL, '9429017301', NULL, '', 'Live', '', 'DPF0209-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(834, 360, 'DPF0209-02', 'DPF0209', 'Usha', 'Bharat', 'Hirji', 147, NULL, '', 'F', 3, 28, NULL, '1971-01-06', NULL, 3, NULL, '216', '', 0, NULL, '9324520886', NULL, '<EMAIL>', 'Live', '', 'DPF0209-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(835, 360, 'DPF0209-03', 'DPF0209', 'Chintan', 'Bharat', 'Hirji', 147, NULL, '', 'M', 0, 25, NULL, '1996-06-08', NULL, 2, NULL, '226', '', 0, NULL, '9665948454', NULL, '', 'Live', '', 'DPF0209-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(836, 360, 'DPF0209-04', 'DPF0209', 'Himanshu', 'Bharat', 'Hirji', 147, NULL, '', 'M', 3, 25, NULL, '1999-10-31', NULL, 2, NULL, '262', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0209-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(837, 361, 'DPF0210-01', 'DPF0210', 'Alpaben', 'Hirji', 'Jethalal', 147, NULL, '', 'F', 5, 22, NULL, '1971-12-30', NULL, 2, NULL, '60', '', 2, NULL, '9029928689', NULL, '', 'Live', '', 'DPF0210-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(838, 362, 'DPF0211-01', 'DPF0211', 'Harakhchand', 'Jetha', 'Palan', 147, NULL, '', 'M', 5, 22, NULL, '1946-12-31', NULL, 3, NULL, '258', '', 2, NULL, '7276370799', NULL, '', 'Live', '', 'DPF0211-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(839, 362, 'DPF0211-02', 'DPF0211', 'Hansaben', 'Harakhchand', 'Jetha', 147, NULL, '', 'F', 3, 28, NULL, '1947-10-24', NULL, 3, NULL, '256', '', 0, NULL, '9224186683', NULL, '', 'Live', '', 'DPF0211-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(840, 362, 'DPF0211-03', 'DPF0211', 'Tushar', 'Harakhchand', 'Jetha', 147, NULL, '', 'M', 5, 25, NULL, '1971-08-27', NULL, 3, NULL, '216', '', 0, NULL, '9049861557', NULL, '', 'Live', '', 'DPF0211-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(841, 362, 'DPF0211-04', 'DPF0211', 'Usha', 'Tushar', 'Harakhchand', 147, NULL, '', 'F', 1, 35, NULL, '1975-11-30', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0211-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(842, 362, 'DPF0211-05', 'DPF0211', 'Aaray', 'Tushar', 'Harakhchand', 147, NULL, '', 'M', 5, 15, NULL, '2005-12-13', NULL, 2, NULL, '263', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0211-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(843, 363, 'DPF0212-01', 'DPF0212', 'Jayvantiben', 'Nagshi', 'Umarshi', 147, NULL, '', 'F', 5, 22, NULL, '1947-08-14', NULL, 3, NULL, '216', '', 2, NULL, '', NULL, '', 'Live', '', 'DPF0212-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(844, 363, 'DPF0212-02', 'DPF0212', 'Kapin', 'Nagshi', 'Umarshi', 147, NULL, '', 'M', 5, 25, NULL, '1975-12-14', NULL, 3, NULL, '259', '', 0, NULL, '9222373771', NULL, '<EMAIL>', 'Live', '', 'DPF0212-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(845, 363, 'DPF0212-03', 'DPF0212', 'Punam', 'Kapin', 'Nagshi', 147, NULL, '', 'F', 3, 35, NULL, '1978-03-20', NULL, 3, NULL, '259', '', 0, NULL, '8108971971', NULL, '<EMAIL>', 'Live', '', 'DPF0212-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(846, 363, 'DPF0212-04', 'DPF0212', 'Naman', 'Kapin', 'Nagshi', 147, NULL, '', 'M', 5, 15, NULL, '2010-08-25', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0212-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(847, 364, 'DPF0213-01', 'DPF0213', 'Popatlal', 'Umarshi', 'Palan', 147, NULL, '', 'M', 5, 22, NULL, '1944-02-14', NULL, 3, NULL, '216', '', 2, NULL, '9768275669', NULL, '', 'Live', '', 'DPF0213-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(848, 364, 'DPF0213-02', 'DPF0213', 'Rohit', 'Popatlal', 'Umarshi', 147, NULL, '', 'M', 3, 25, NULL, '1980-09-13', NULL, 3, NULL, '214', '', 0, NULL, '9028286235', NULL, '<EMAIL>', 'Live', '', 'DPF0213-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(849, 364, 'DPF0213-03', 'DPF0213', 'Sejal', 'Rohit', 'Popatlal', 147, NULL, '', 'F', 3, 35, NULL, '1982-08-07', NULL, 3, NULL, '216', '', 0, NULL, '9930513551', NULL, '', 'Live', '', 'DPF0213-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(850, 364, 'DPF0213-04', 'DPF0213', 'Prachi', 'Rohit', 'Popatlal', 147, NULL, '', 'F', 3, 10, NULL, '2007-05-26', NULL, 2, NULL, '264', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0213-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(851, 365, 'DPF0214-01', 'DPF0214', 'Hitesh', 'Popatlal', 'Umarshi', 147, NULL, '', 'M', 3, 22, NULL, '1984-03-15', NULL, 3, NULL, '216', '', 2, NULL, '9960787111', NULL, '<EMAIL>', 'Live', '', 'DPF0214-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(852, 365, 'DPF0214-02', 'DPF0214', 'Pallavi', 'Hitesh', 'Popatlal', 147, NULL, '', 'F', 3, 28, NULL, '1987-09-24', NULL, 3, NULL, '74', '', 0, NULL, '9960787222', NULL, '<EMAIL>', 'Live', '', 'DPF0214-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(853, 365, 'DPF0214-03', 'DPF0214', 'Jeel', 'Hitesh', 'Popatlal', 147, NULL, '', 'M', 3, 25, NULL, '2011-11-03', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0214-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(854, 365, 'DPF0214-04', 'DPF0214', 'Mayur', 'Popatlal', 'Umarshi', 147, NULL, '', 'M', 3, 4, NULL, '1993-04-05', NULL, 2, NULL, '214', '', 0, NULL, '9029581906', NULL, '<EMAIL>', 'Live', '', 'DPF0214-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(855, 366, 'DPF0215-01', 'DPF0215', 'Damji', 'Umarshi', 'Palan', 147, NULL, '', 'M', 5, 22, NULL, '1947-05-17', NULL, 3, NULL, '216', '', 8, NULL, '', NULL, '', 'Live', '', 'DPF0215-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(856, 366, 'DPF0215-02', 'DPF0215', 'Damyantiben', 'Damji', 'Umarshi', 147, NULL, '', 'F', 3, 28, NULL, '1952-11-26', NULL, 3, NULL, '216', '', 0, NULL, '9930139720', NULL, '', 'Live', '', 'DPF0215-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(857, 366, 'DPF0215-03', 'DPF0215', 'Dilip', 'Damji', 'Umarshi', 147, NULL, '', 'M', 5, 25, NULL, '1978-02-11', NULL, 2, NULL, '319', '', 2, NULL, '9833451194', NULL, '<EMAIL>', 'Live', '', 'DPF0215-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(858, 366, 'DPF0215-04', 'DPF0215', 'Bhavin', 'Damji', 'Umarshi', 147, NULL, '', 'M', 3, 25, NULL, '1983-05-01', NULL, 2, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0215-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(859, 367, 'DPF0216-01', 'DPF0216', 'Pravin', 'Umarshi', 'Palan', 147, NULL, '', 'M', 5, 22, NULL, '1954-06-09', NULL, 3, NULL, '259', '', 2, NULL, '9819186921', NULL, '<EMAIL>', 'Live', '', 'DPF0216-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(860, 367, 'DPF0216-02', 'DPF0216', 'Kesharben', 'Pravin', 'Umarshi', 147, NULL, '', 'F', 5, 28, NULL, '1955-04-05', NULL, 3, NULL, '216', '', 0, NULL, '9757413002', NULL, '<EMAIL>', 'Live', '', 'DPF0216-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(861, 367, 'DPF0216-03', 'DPF0216', 'Harsha', 'Pravin', 'Umarshi', 147, NULL, '', 'M', 5, 25, NULL, '1982-02-07', NULL, 3, NULL, '259', '', 0, NULL, '9769567362', NULL, '<EMAIL>', 'Live', '', 'DPF0216-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(862, 367, 'DPF0216-04', 'DPF0216', 'Heta', 'Harsha', 'Pravin', 147, NULL, '', 'F', 5, 35, NULL, '1986-05-15', NULL, 3, NULL, '60', '', 0, NULL, '9769587984', NULL, '<EMAIL>', 'Live', '', 'DPF0216-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(863, 367, 'DPF0216-05', 'DPF0216', 'Jainya', 'Harsha', 'Pravin', 147, NULL, '', 'M', 5, 15, NULL, '2010-04-07', NULL, 2, NULL, '180', '', 2, NULL, '9167262311', NULL, '', 'Live', '', 'DPF0216-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(864, 368, 'DPF0217-01', 'DPF0217', 'Tejshi', 'Govar ', 'Palan', 147, NULL, '', 'M', 0, 22, NULL, '1948-09-08', NULL, 3, NULL, '257', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0217-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(865, 368, 'DPF0217-02', 'DPF0217', 'Prabhaben', 'Tejshi', 'Govar ', 147, NULL, '', 'F', 0, 28, NULL, '1949-10-21', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0217-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(866, 368, 'DPF0217-03', 'DPF0217', 'Manilal', 'Govar ', 'Palan', 147, NULL, '', 'M', 0, 4, NULL, '1955-11-22', NULL, 2, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0217-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(867, 369, 'DPF0218-01', 'DPF0218', 'Dipen', 'Tejshi', 'Dovar', 147, NULL, '', 'M', 0, 22, NULL, '1974-07-12', NULL, 3, NULL, '216', '', 2, NULL, '9757300899', NULL, '', 'Live', '', 'DPF0218-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(868, 369, 'DPF0218-02', 'DPF0218', 'Eena', 'Dipen', 'Tejshi', 147, NULL, '', 'F', 0, 28, NULL, '1975-06-07', NULL, 3, NULL, '216', '', 0, NULL, '9702889907', NULL, '', 'Live', '', 'DPF0218-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(869, 369, 'DPF0218-03', 'DPF0218', 'Heet', 'Dipen', 'Tejshi', 147, NULL, '', 'M', 0, 25, NULL, '2003-03-14', NULL, 2, NULL, '282', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0218-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(870, 370, 'DPF0219-01', 'DPF0219', 'Jatin', 'Tejshi', 'Govar ', 147, NULL, '', 'M', 1, 22, NULL, '1979-02-25', NULL, 3, NULL, '320', '', 8, NULL, '9930267978', NULL, '<EMAIL>', 'Live', '', 'DPF0219-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(871, 370, 'DPF0219-02', 'DPF0219', 'Jinal', 'Jatin', 'Tejshi', 147, NULL, '', 'F', 5, 28, NULL, '1981-08-14', NULL, 3, NULL, '259', '', 0, NULL, '9820267978', NULL, '', 'Live', '', 'DPF0219-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(872, 370, 'DPF0219-03', 'DPF0219', 'Yashvi', 'Jatin', 'Tejshi', 147, NULL, '', 'F', 5, 6, NULL, '2006-08-05', NULL, 2, NULL, '268', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0219-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(873, 370, 'DPF0219-04', 'DPF0219', 'Hriday', 'Jatin', 'Tejshi', 147, NULL, '', 'M', 5, 25, NULL, '2013-03-22', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPM000853.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(874, 371, 'DPF0220-01', 'DPF0220', 'Mulchand', 'Govar ', 'Palan', 147, NULL, '', 'M', 5, 22, NULL, '1956-02-17', NULL, 3, NULL, '262', '', 2, NULL, '', NULL, '', 'Live', '', 'DPF0220-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(875, 371, 'DPF0220-02', 'DPF0220', 'Kamlaben', 'Mulchand', 'Govar ', 147, NULL, '', 'F', 3, 28, NULL, '1959-12-08', NULL, 3, NULL, '256', '', 0, NULL, '9594725051', NULL, '', 'Live', '', 'DPF0220-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(876, 371, 'DPF0220-03', 'DPF0220', 'Nikhil', 'Mulchand', 'Govar ', 147, NULL, '', 'M', 3, 25, NULL, '1984-08-04', NULL, 3, NULL, '216', '', 0, NULL, '9022126335', NULL, '', 'Live', '', 'DPF0220-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(877, 371, 'DPF0220-04', 'DPF0220', 'Dharmishtha', 'Nikhil', 'Mulchand', 147, NULL, '', 'F', 5, 35, NULL, '1992-11-12', NULL, 3, NULL, '262', '', 0, NULL, '7709046166', NULL, '', 'Live', '', 'DPF0220-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(878, 371, 'DPF0220-05', 'DPF0220', 'Mayur', 'Nikhil', 'Mulchand', 147, NULL, '', 'M', 0, 15, NULL, '1986-02-12', NULL, 2, NULL, '216', '', 0, NULL, '9323469141', NULL, '', 'Live', '', 'DPF0220-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(879, 372, 'DPF0221-01', 'DPF0221', 'Bharat', 'Govar ', 'Palan', 147, NULL, '', 'M', 5, 22, NULL, '1951-07-01', NULL, 3, NULL, '256', '', 2, NULL, '9702141520', NULL, '', 'Live', '', 'DPF0221-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(880, 372, 'DPF0221-02', 'DPF0221', 'Taramatiben', 'Bharat', 'Govar ', 147, NULL, '', 'F', 5, 28, NULL, '1957-10-24', NULL, 3, NULL, '256', '', 0, NULL, '9870449274', NULL, '', 'Live', '', 'DPF0221-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(881, 372, 'DPF0221-03', 'DPF0221', 'Rashmi', 'Bharat', 'Govar ', 147, NULL, '', 'F', 5, 6, NULL, '1980-07-25', NULL, 2, NULL, '257', '', 0, NULL, '8879344486', NULL, '', 'Live', '', 'DPF0221-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(882, 373, 'DPF0222-01', 'DPF0222', 'Tejbai', 'Nagshi', 'Palan', 147, NULL, '', 'F', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '9870109119', NULL, '', 'Live', '', 'DPF0222-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(883, 374, 'DPF0223-01', 'DPF0223', 'Ashok', 'Nagshi', 'Palan', 147, NULL, '', 'M', 5, 22, NULL, '1948-09-28', NULL, 3, NULL, '262', '', 7, NULL, '9323859111', NULL, '', 'Live', '', 'DPF0223-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(884, 374, 'DPF0223-02', 'DPF0223', 'Jasvantiben', 'Ashok', 'Nagshi', 147, NULL, '', 'F', 6, 28, NULL, '1952-10-27', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0223-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(885, 374, 'DPF0223-03', 'DPF0223', 'Harsha', 'Ashok', 'Nagshi', 147, NULL, '', 'F', 6, 6, NULL, '1979-05-28', NULL, 2, NULL, '214', '', 0, NULL, '9323912360', NULL, '', 'Live', '', 'DPM000865.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(886, 375, 'DPF0224-01', 'DPF0224', 'Mohanlal', 'Nagshi', 'Palan', 147, NULL, '', 'M', 5, 22, NULL, '1950-04-01', NULL, 3, NULL, '217', '', 2, NULL, '9270303871', NULL, '', 'Live', '', 'DPF0224-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(887, 375, 'DPF0224-02', 'DPF0224', 'Amit', 'Mohanlal', 'Nagshi', 147, NULL, '', 'M', 3, 25, NULL, '1976-08-16', NULL, 3, NULL, '226', '', 0, NULL, '9822055111', NULL, '', 'Live', '', 'DPF0224-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(888, 375, 'DPF0224-03', 'DPF0224', 'Dimpi', 'Amit', 'Mohanlal', 147, NULL, '', 'F', 5, 35, NULL, '1980-02-27', NULL, 3, NULL, '259', '', 0, NULL, '9822044111', NULL, '<EMAIL>', 'Live', '', 'DPF0224-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(889, 375, 'DPF0224-04', 'DPF0224', 'Dhairay', 'Amit', 'Mohanlal', 147, NULL, '', 'M', 3, 15, NULL, '2009-01-23', NULL, 2, NULL, '136', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0224-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(890, 376, 'DPF0225-01', 'DPF0225', 'Harilal', 'Nagshi', 'Palan', 147, NULL, '', 'M', 5, 22, NULL, '1952-07-04', NULL, 3, NULL, '216', '', 2, NULL, '9223309031', NULL, '', 'Live', '', 'DPF0225-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(891, 376, 'DPF0225-02', 'DPF0225', 'Lilavantiben', 'Harilal', 'Nagshi', 147, NULL, '', 'F', 5, 28, NULL, '1954-07-26', NULL, 3, NULL, '216', '', 0, NULL, '9223422662', NULL, '', 'Live', '', 'DPF0225-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(892, 376, 'DPF0225-03', 'DPF0225', 'Paresh', 'Harilal', 'Nagshi', 147, NULL, '', 'M', 5, 25, NULL, '1978-10-02', NULL, 3, NULL, '288', '', 0, NULL, '9223392221', NULL, '<EMAIL>', 'Live', '', 'DPF0225-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(893, 376, 'DPF0225-04', 'DPF0225', 'Bhavana', 'Paresh', 'Harilal', 147, NULL, '', 'F', 3, 35, NULL, '1980-10-15', NULL, 3, NULL, '321', '', 0, NULL, '9821373047', NULL, '<EMAIL>', 'Live', '', 'DPF0225-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(894, 376, 'DPF0225-05', 'DPF0225', 'Devam', 'Paresh', 'Harilal', 147, NULL, '', 'M', 5, 15, NULL, '2004-09-28', NULL, 2, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0225-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(895, 377, 'DPF0226-01', 'DPF0226', 'Hasmukh', 'Nagshi', 'Palan', 147, NULL, '', 'M', 3, 22, NULL, '1953-05-13', NULL, 3, NULL, '216', '', 2, NULL, '9226366059', NULL, '', 'Live', '', 'DPF0226-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(896, 377, 'DPF0226-02', 'DPF0226', 'Nirmalaben', 'Hasmukh', 'Nagshi', 147, NULL, '', 'F', 3, 28, NULL, '1960-03-19', NULL, 3, NULL, '216', '', 0, NULL, '02117-262304', NULL, '', 'Live', '', 'DPF0226-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(897, 377, 'DPF0226-03', 'DPF0226', 'Haresh', 'Hasmukh', 'Nagshi', 147, NULL, '', 'M', 3, 25, NULL, '1981-12-15', NULL, 3, NULL, '60', '', 0, NULL, '9226366105', NULL, '<EMAIL>', 'Live', '', 'DPF0226-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(898, 377, 'DPF0226-04', 'DPF0226', 'Dimple', 'Haresh', 'Hasmukh', 147, NULL, '', 'F', 5, 35, NULL, '1986-08-05', NULL, 3, NULL, '259', '', 0, NULL, '9970349851', NULL, '', 'Live', '', 'DPF0226-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(899, 377, 'DPF0226-05', 'DPF0226', 'Nikita', 'Hasmukh', 'Nagshi', 147, NULL, '', 'F', 4, 6, NULL, '1991-02-10', NULL, 2, NULL, '122', '', 0, NULL, '9890220127', NULL, '<EMAIL>', 'Live', '', 'DPF0226-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(900, 378, 'DPF0227-01', 'DPF0227', 'Deepak', 'Dungarshi', 'Hirji', 161, NULL, '', 'M', 3, 22, NULL, '1968-04-26', NULL, 3, NULL, '216', '', 2, NULL, '7666826685', NULL, '', 'Live', '', 'DPF0227-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(901, 378, 'DPF0227-02', 'DPF0227', 'Kanchan', 'Deepak', 'Dungarshi', 161, NULL, '', 'F', 5, 28, NULL, '1972-06-12', NULL, 3, NULL, '216', '', 0, NULL, '8007034067', NULL, '', 'Live', '', 'DPF0227-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(902, 378, 'DPF0227-03', 'DPF0227', 'Harsha', 'Deepak', 'Dungarshi', 161, NULL, '', 'F', 3, 6, NULL, '1997-08-02', NULL, 2, NULL, '217', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0227-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(903, 378, 'DPF0227-04', 'DPF0227', 'Sakshi', 'Deepak', 'Dungarshi', 161, NULL, '', 'F', 5, 6, NULL, '2002-07-28', NULL, 2, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0227-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(904, 379, 'DPF0228-01', 'DPF0228', 'Dinesh', 'Dungarshi', 'Hirji', 161, NULL, '', 'M', 5, 22, NULL, '1974-06-14', NULL, 3, NULL, '214', '', 2, NULL, '9860441184', NULL, '', 'Live', '', 'DPF0228-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(905, 379, 'DPF0228-02', 'DPF0228', 'Manisha', 'Dinesh', 'Dungarshi', 161, NULL, '', 'F', 3, 28, NULL, '1978-12-19', NULL, 3, NULL, '214', '', 0, NULL, '7498706126', NULL, '', 'Live', '', 'DPF0228-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(906, 379, 'DPF0228-03', 'DPF0228', 'Devanshi', 'Dinesh', 'Dungarshi', 161, NULL, '', 'F', 5, 6, NULL, '2000-07-22', NULL, 2, NULL, '261', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0228-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL);
INSERT INTO `family_member` (`id`, `family_id`, `member_no`, `family_no`, `first_name`, `second_name`, `third_name`, `surname_id`, `other_surname_details`, `regd_id`, `sex`, `blood_id`, `relation_id`, `other_relation_details`, `dob`, `dod`, `marriage_type`, `dom`, `education_id`, `other_education_details`, `occupation_id`, `other_occupation_details`, `contact`, `altcontact`, `email`, `live_type`, `member_type`, `image`, `life_insurance`, `life_insurance_text`, `medical_insurance`, `sanjeevni`, `medical_insurance_text`, `sports_id`, `other_sports_details`, `achivements`, `dharmik_id`, `username`, `password`, `fm_status`, `old_value`, `new_value`, `merge_status`, `merge_flag`, `merge_data`, `merge_user_data`, `added_on`, `updated_on`, `deleted`, `delete_reason`, `deleted_on`) VALUES
(907, 379, 'DPF0228-04', 'DPF0228', 'Shruti', 'Dinesh', 'Dungarshi', 161, NULL, '', 'F', 3, 6, NULL, '2003-03-01', NULL, 2, NULL, '257', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0228-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(908, 380, 'DPF0229-01', 'DPF0229', 'Panbai', 'Meghji', 'Ukeda', 164, NULL, '', 'F', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 2, NULL, '', NULL, '', 'Live', '', 'DPF0229-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(909, 380, 'DPF0229-02', 'DPF0229', 'Ramesh', 'Meghji', 'Ukeda', 164, NULL, '', 'M', 3, 25, NULL, '1952-03-16', NULL, 3, NULL, '216', '', 0, NULL, '9967399702', NULL, '', 'Live', '', 'DPF0229-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(910, 380, 'DPF0229-03', 'DPF0229', 'Ranjanben', 'Ramesh', 'Meghji', 164, NULL, '', 'F', 1, 35, NULL, '1955-07-27', NULL, 3, NULL, '216', '', 0, NULL, '9768951251', NULL, '', 'Live', '', 'DPF0229-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(911, 381, 'DPF0230-01', 'DPF0230', 'Vallabhji', 'Meghji', 'Ukeda', 164, NULL, '', 'M', 3, 22, NULL, '1940-05-09', NULL, 3, NULL, '60', '', 0, NULL, '9390992811', NULL, '', 'Live', '', 'DPF0230-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(912, 381, 'DPF0230-02', 'DPF0230', 'Vimalaben', 'Vallabhji', 'Meghji', 164, NULL, '', 'F', 3, 28, NULL, '1946-01-13', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0230-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(913, 381, 'DPF0230-03', 'DPF0230', 'Sandeep', 'Vallabhji', 'Meghji', 164, NULL, '', 'M', 4, 25, NULL, '1974-08-06', NULL, 3, NULL, '322', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0230-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(914, 381, 'DPF0230-04', 'DPF0230', 'Alpana', 'Sandeep', 'Vallabhji', 164, NULL, '', 'F', 4, 35, NULL, '1976-10-10', NULL, 3, NULL, '166', '', 0, NULL, '', NULL, '', 'Live', '', 'DPM000894.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(915, 381, 'DPF0230-05', 'DPF0230', 'Sania', 'Sandeep', 'Vallabhji', 164, NULL, '', 'F', 0, 10, NULL, '2004-06-25', NULL, 2, NULL, '268', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0230-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(916, 381, 'DPF0230-06', 'DPF0230', 'Naysa', 'Sandeep', 'Vallabhji', 164, NULL, '', 'F', 0, 10, NULL, '2009-10-09', NULL, 2, NULL, '204', '', 0, NULL, '', NULL, '', 'Live', '', 'DPM000896.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(917, 382, 'DPF0231-01', 'DPF0231', 'Hasmukh', 'Meghji', 'Ukeda', 164, NULL, '', 'M', 2, 22, NULL, '1954-07-30', NULL, 3, NULL, '216', '', 2, NULL, '9820129738', NULL, '', 'Live', '', 'DPF0231-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(918, 382, 'DPF0231-02', 'DPF0231', 'Hemaben', 'Hasmukh', 'Meghji', 164, NULL, '', 'F', 3, 28, NULL, '1956-07-28', NULL, 3, NULL, '216', '', 0, NULL, '9664354396', NULL, '', 'Live', '', 'DPF0231-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(919, 382, 'DPF0231-03', 'DPF0231', 'Nirav', 'Hasmukh', 'Meghji', 164, NULL, '', 'M', 1, 25, NULL, '1981-10-30', NULL, 3, NULL, '259', '', 0, NULL, '9867978526', NULL, '', 'Live', '', 'DPF0231-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(920, 382, 'DPF0231-04', 'DPF0231', 'Hetal', 'Nirav', 'Hasmukh', 164, NULL, '', 'F', 3, 35, NULL, '1982-02-07', NULL, 3, NULL, '216', '', 0, NULL, '8805447319', NULL, '', 'Live', '', 'DPF0231-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(921, 382, 'DPF0231-05', 'DPF0231', 'Prasam', 'Nirav', 'Hasmukh', 164, NULL, '', 'M', 7, 15, NULL, '2012-07-24', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0231-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(922, 383, 'DPF0232-01', 'DPF0232', 'Khushal', 'Meghji', 'Ukeda', 164, NULL, '', 'M', 1, 22, NULL, '1957-01-03', NULL, 3, NULL, '216', '', 2, NULL, '9969160290', NULL, '', 'Live', '', 'DPF0232-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(923, 383, 'DPF0232-02', 'DPF0232', 'Rekha', 'Khushal', 'Meghji', 164, NULL, '', 'F', 6, 28, NULL, '1961-04-03', NULL, 3, NULL, '216', '', 0, NULL, '9322747199', NULL, '', 'Live', '', 'DPF0232-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(924, 383, 'DPF0232-03', 'DPF0232', 'Khyati', 'Khushal', 'Meghji', 164, NULL, '', 'F', 5, 6, NULL, '1992-01-06', NULL, 2, NULL, '323', '', 0, NULL, '9920751518', NULL, '<EMAIL>', 'Live', '', 'DPF0232-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(925, 384, 'DPF0233-01', 'DPF0233', 'Kantilal', 'Kunvarji', 'Meghji', 164, NULL, '', 'M', 5, 22, NULL, '1943-07-14', NULL, 3, NULL, '0', '', 2, NULL, '8951683773', NULL, '', 'Live', '', 'DPF0233-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(926, 384, 'DPF0233-02', 'DPF0233', 'Maniben', 'Kantilal', 'Kunvarji', 164, NULL, '', 'F', 0, 28, NULL, '1947-12-12', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0233-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(927, 384, 'DPF0233-03', 'DPF0233', 'Uday', 'Kantilal', 'Kunvarji', 164, NULL, '', 'M', 1, 25, NULL, '1973-02-11', NULL, 3, NULL, '259', '', 0, NULL, '9986665791', NULL, '<EMAIL>', 'Live', '', 'DPF0233-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(928, 384, 'DPF0233-04', 'DPF0233', 'Neela', 'Uday', 'Kantilal', 164, NULL, '', 'F', 1, 35, NULL, '1975-04-01', NULL, 3, NULL, '259', '', 0, NULL, '9844108705', NULL, '', 'Live', '', 'DPF0233-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(929, 384, 'DPF0233-05', 'DPF0233', 'Dhruv', 'Uday', 'Kantilal', 164, NULL, '', 'M', 1, 15, NULL, '2002-04-03', NULL, 2, NULL, '282', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0233-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(930, 384, 'DPF0233-06', 'DPF0233', 'Puneet', 'Uday', 'Kantilal', 164, NULL, '', 'M', 1, 15, NULL, '2006-04-13', NULL, 2, NULL, '268', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0233-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(931, 385, 'DPF0234-01', 'DPF0234', 'Manoj', 'Kantilal', 'Kunvarji', 164, NULL, '', 'M', 0, 22, NULL, '1971-09-18', NULL, 3, NULL, '259', '', 2, NULL, '9892026209', NULL, '<EMAIL>', 'Live', '', 'DPF0234-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(932, 385, 'DPF0234-02', 'DPF0234', 'Dimple', 'Manoj', 'Kantilal', 164, NULL, '', 'F', 0, 28, NULL, '1972-12-23', NULL, 3, NULL, '259', '', 0, NULL, '9892508819', NULL, '', 'Live', '', 'DPF0234-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(933, 385, 'DPF0234-03', 'DPF0234', 'Hetavi', 'Manoj', 'Kantilal', 164, NULL, '', 'F', 0, 6, NULL, '2005-11-22', NULL, 2, NULL, '263', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0234-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(934, 386, 'DPF0235-01', 'DPF0235', 'Pranlal', 'Kunvarji', 'Meghji', 164, NULL, '', 'M', 1, 22, NULL, '1948-08-06', NULL, 3, NULL, '216', '', 7, NULL, '9820836994', NULL, '', 'Live', '', 'DPF0235-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(935, 386, 'DPF0235-02', 'DPF0235', 'Hemlataben', 'Pranlal', 'Kunvarji', 164, NULL, '', 'F', 5, 28, NULL, '1953-03-26', NULL, 3, NULL, '216', '', 0, NULL, '8879273668', NULL, '', 'Live', '', 'DPF0235-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(936, 387, 'DPF0236-01', 'DPF0236', 'Vadilal', 'Kunvarji', 'Meghji', 164, NULL, '', 'M', 5, 22, NULL, '1950-08-08', NULL, 3, NULL, '216', '', 7, NULL, '9920160680', NULL, '', 'Live', '', 'DPF0236-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(937, 387, 'DPF0236-02', 'DPF0236', 'Vimlaben', 'Vadilal', 'Kunvarji', 164, NULL, '', 'F', 3, 28, NULL, '1954-12-31', NULL, 3, NULL, '216', '', 0, NULL, '9833990284', NULL, '<EMAIL>', 'Live', '', 'DPF0236-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(938, 387, 'DPF0236-03', 'DPF0236', 'Nayan', 'Vadilal', 'Kunvarji', 164, NULL, '', 'M', 0, 25, NULL, '1982-02-17', NULL, 2, NULL, '324', '', 0, NULL, '001-323-2060-560', NULL, '<EMAIL>', 'Live', '', 'DPF0236-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(939, 388, 'DPF0237-01', 'DPF0237', 'Prakash', 'Kunvarji', 'Meghji', 164, NULL, '', 'M', 5, 22, NULL, '1953-08-15', NULL, 3, NULL, '216', '', 2, NULL, '9820478962', NULL, '<EMAIL>', 'Live', '', 'DPF0237-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(940, 388, 'DPF0237-02', 'DPF0237', 'Chetna', 'Prakash', 'Kunvarji', 164, NULL, '', 'F', 3, 28, NULL, '1961-08-01', NULL, 3, NULL, '216', '', 0, NULL, '9820420046', NULL, '', 'Live', '', 'DPF0237-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(941, 388, 'DPF0237-03', 'DPF0237', 'Minal', 'Prakash', 'Kunvarji', 164, NULL, '', 'F', 5, 6, NULL, '1980-04-24', NULL, 2, NULL, '214', '', 0, NULL, '9821107429', NULL, '<EMAIL>', 'Live', '', 'DPF0237-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(942, 388, 'DPF0237-04', 'DPF0237', 'Sweta', 'Prakash', 'Kunvarji', 164, NULL, '', 'F', 5, 6, NULL, '1982-12-22', NULL, 2, NULL, '259', '', 0, NULL, '9820590991', NULL, '<EMAIL>', 'Live', '', 'DPF0237-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(943, 389, 'DPF0238-01', 'DPF0238', 'Vinod', 'Kunvarji', 'Meghji', 164, NULL, '', 'M', 5, 22, NULL, '1955-12-26', NULL, 3, NULL, '214', '', 2, NULL, '9503351474', NULL, '', 'Live', '', 'DPF0238-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(944, 389, 'DPF0238-02', 'DPF0238', 'Hemlata', 'Vinod', 'Kunvarji', 164, NULL, '', 'F', 5, 28, NULL, '1960-05-31', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0238-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(945, 389, 'DPF0238-03', 'DPF0238', 'Ankit', 'Vinod', 'Kunvarji', 164, NULL, '', 'M', 5, 25, NULL, '1992-03-09', NULL, 2, NULL, '271', '', 0, NULL, '9619032512', NULL, '', 'Live', '', 'DPF0238-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(946, 390, 'DPF0239-01', 'DPF0239', 'Manilal', 'Raghavji', 'Meghji', 164, NULL, '', 'M', 3, 22, NULL, '1948-12-21', NULL, 3, NULL, '216', '', 0, NULL, '9324611886', NULL, '', 'Live', '', 'DPF0239-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(947, 390, 'DPF0239-02', 'DPF0239', 'Rajanben', 'Manilal', 'Raghavji', 164, NULL, '', 'F', 5, 28, NULL, '1949-12-16', NULL, 3, NULL, '232', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0239-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(948, 390, 'DPF0239-03', 'DPF0239', 'Kalpa', 'Manilal', 'Raghavji', 164, NULL, '', 'F', 5, 6, NULL, '1974-12-01', NULL, 2, NULL, '261', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0239-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(949, 390, 'DPF0239-04', 'DPF0239', 'Nitesh', 'Manilal', 'Raghavji', 164, NULL, '', 'M', 5, 25, NULL, '1979-07-07', NULL, 3, NULL, '271', '', 2, NULL, '9819893949', NULL, '', 'Live', '', 'DPF0239-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(950, 390, 'DPF0239-05', 'DPF0239', 'Sejal', 'Nitesh', 'Manilal', 164, NULL, '', 'F', 5, 35, NULL, '1981-04-02', NULL, 3, NULL, '285', '', 0, NULL, '9920303949', NULL, '', 'Live', '', 'DPF0239-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(951, 390, 'DPF0239-06', 'DPF0239', 'Vidhi', 'Nitesh', 'Manilal', 164, NULL, '', 'F', 5, 10, NULL, '2009-04-27', NULL, 2, NULL, '204', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0239-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(952, 390, 'DPF0239-07', 'DPF0239', 'Rashmi', 'Manilal', 'Raghavji', 164, NULL, '', 'F', 2, 23, NULL, '1958-04-20', NULL, 3, NULL, '282', '', 0, NULL, '9320950139', NULL, '', 'Live', '', 'DPF0239-07.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(953, 391, 'DPF0240-01', 'DPF0240', 'Mahesh', 'Raghavji', 'Meghji', 164, NULL, '', 'M', 7, 22, NULL, '1956-12-29', NULL, 3, NULL, '216', '', 2, NULL, '9819967475', NULL, '', 'Live', '', 'DPF0240-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(954, 391, 'DPF0240-02', 'DPF0240', 'Laxmiben', 'Mahesh', 'Raghavji', 164, NULL, '', 'F', 0, 28, NULL, '1956-03-17', NULL, 3, NULL, '216', '', 0, NULL, '9930232282', NULL, '', 'Live', '', 'DPF0240-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(955, 391, 'DPF0240-03', 'DPF0240', 'Hiren', 'Mahesh', 'Raghavji', 164, NULL, '', 'M', 0, 25, NULL, '1983-06-14', NULL, 3, NULL, '214', '', 0, NULL, '9769000456', NULL, '<EMAIL>', 'Live', '', 'DPF0240-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(956, 391, 'DPF0240-04', 'DPF0240', 'Mittal', 'Hiren', 'Mahesh', 164, NULL, '', 'F', 0, 35, NULL, '1984-03-16', NULL, 3, NULL, '259', '', 0, NULL, '9820782966', NULL, '', 'Live', '', 'DPF0240-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(957, 391, 'DPF0240-05', 'DPF0240', 'Shloak', 'Hiren', 'Mahesh', 164, NULL, '', 'M', 3, 15, NULL, '2013-02-12', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0240-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(958, 391, 'DPF0240-06', 'DPF0240', 'Dhruv', 'Mahesh', 'Raghavji', 164, NULL, '', 'M', 3, 25, NULL, '1996-06-10', NULL, 2, NULL, '214', '', 0, NULL, '9930232292', NULL, 'dhrusav<EMAIL>', 'Live', '', 'DPF0240-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(959, 392, 'DPF0241-01', 'DPF0241', 'Umarshi', 'Devji', 'Virji', 164, NULL, '', 'M', 3, 22, NULL, '1939-08-08', NULL, 3, NULL, '216', '', 2, NULL, '9322843567', NULL, '', 'Live', '', 'DPF0241-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(960, 392, 'DPF0241-02', 'DPF0241', 'Ushaben', 'Umarshi', 'Devji', 164, NULL, '', 'F', 5, 28, NULL, '1940-08-11', NULL, 3, NULL, '256', '', 0, NULL, '7506115512', NULL, '', 'Live', '', 'DPF0241-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(961, 393, 'DPF0242-01', 'DPF0242', 'Nitesh', 'Umarshi', 'Devji', 164, NULL, '', 'M', 5, 22, NULL, '1966-09-19', NULL, 3, NULL, '288', '', 2, NULL, '9820066808', NULL, '', 'Live', '', 'DPF0242-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(962, 393, 'DPF0242-02', 'DPF0242', 'Geeta', 'Nitesh', 'Umarshi', 164, NULL, '', 'F', 5, 28, NULL, '1969-08-28', NULL, 3, NULL, '216', '', 0, NULL, '9769528777', NULL, '', 'Live', '', 'DPF0242-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(963, 393, 'DPF0242-03', 'DPF0242', 'Hena', 'Nitesh', 'Umarshi', 164, NULL, '', 'F', 5, 6, NULL, '1991-01-03', NULL, 2, NULL, '325', '', 0, NULL, '9769514666', NULL, '<EMAIL>', 'Live', '', 'DPF0242-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(964, 393, 'DPF0242-04', 'DPF0242', 'Karan', 'Nitesh', 'Umarshi', 164, NULL, '', 'M', 5, 25, NULL, '1994-09-28', NULL, 2, NULL, '226', '', 0, NULL, '9920239370', NULL, '', 'Live', '', 'DPF0242-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(965, 394, 'DPF0243-01', 'DPF0243', 'Paresh', 'Umarshi', 'Devji', 164, NULL, '', 'M', 5, 22, NULL, '1968-02-16', NULL, 3, NULL, '326', '', 2, NULL, '9967990673', NULL, '', 'Live', '', 'DPF0243-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(966, 394, 'DPF0243-02', 'DPF0243', 'Parina', 'Paresh', 'Umarshi', 164, NULL, '', 'F', 3, 28, NULL, '1966-06-09', NULL, 3, NULL, '326', '', 0, NULL, '9920799894', NULL, '', 'Live', '', 'DPF0243-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(967, 394, 'DPF0243-03', 'DPF0243', 'Priyanshi', 'Paresh', 'Umarshi', 164, NULL, '', 'F', 5, 6, NULL, '1995-02-19', NULL, 2, NULL, '327', '', 0, NULL, '8879212764', NULL, '', 'Live', '', 'DPF0243-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(968, 394, 'DPF0243-04', 'DPF0243', 'Rishikesh', 'Paresh', 'Umarshi', 164, NULL, '', 'M', 3, 25, NULL, '2002-08-08', NULL, 2, NULL, '282', '', 0, NULL, '9594466765', NULL, '', 'Live', '', 'DPF0243-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(969, 395, 'DPF0244-01', 'DPF0244', 'Kirit', 'Ravji', 'Virji', 164, NULL, '', 'M', 5, 22, NULL, '1962-02-16', NULL, 3, NULL, '216', '', 2, NULL, '9769302240', NULL, '', 'Live', '', 'DPF0244-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(970, 395, 'DPF0244-02', 'DPF0244', 'Rekha', 'Kirit', 'Ravji', 164, NULL, '', 'F', 5, 28, NULL, '1966-07-01', NULL, 3, NULL, '258', '', 0, NULL, '9867920040', NULL, '', 'Live', '', 'DPF0244-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(971, 395, 'DPF0244-03', 'DPF0244', 'Riki', 'Kirit', 'Ravji', 164, NULL, '', 'M', 7, 25, NULL, '1988-04-03', NULL, 2, NULL, '288', '', 0, NULL, '7738364494', NULL, '', 'Live', '', 'DPF0244-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(972, 395, 'DPF0244-04', 'DPF0244', 'Nimesh', 'Kirit', 'Ravji', 164, NULL, '', 'M', 5, 25, NULL, '1989-09-07', NULL, 2, NULL, '288', '', 0, NULL, '9769300191', NULL, '', 'Live', '', 'DPF0244-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(973, 395, 'DPF0244-05', 'DPF0244', 'Nayna', 'Ravji', 'Virji', 164, NULL, '', 'F', 5, 23, NULL, '1963-10-18', NULL, 2, NULL, '256', '', 0, NULL, '9167614370', NULL, '', 'Live', '', 'DPF0244-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(974, 396, 'DPF0245-01', 'DPF0245', 'Ratanben', 'Shamji', 'Kanji', 164, NULL, '', 'F', 5, 22, NULL, '1944-07-29', NULL, 3, NULL, '258', '', 2, NULL, '9892789958', NULL, '', 'Live', '', 'DPF0245-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(975, 396, 'DPF0245-02', 'DPF0245', 'Bharat', 'Shamji', 'Kanji', 164, NULL, '', 'M', 3, 25, NULL, '1970-04-27', NULL, 3, NULL, '214', '', 0, NULL, '9819061640', NULL, '<EMAIL>', 'Live', '', 'DPF0245-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(976, 396, 'DPF0245-03', 'DPF0245', 'Dipti', 'Bharat', 'Shamji', 164, NULL, '', 'F', 5, 35, NULL, '1975-05-07', NULL, 3, NULL, '216', '', 0, NULL, '9819459724', NULL, '', 'Live', '', 'DPF0245-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(977, 396, 'DPF0245-04', 'DPF0245', 'Krisha', 'Bharat', 'Shamji', 164, NULL, '', 'F', 3, 10, NULL, '2001-10-09', NULL, 2, NULL, '256', '', 0, NULL, '8879190918', NULL, '', 'Live', '', 'DPF0245-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(978, 396, 'DPF0245-05', 'DPF0245', 'Sherya', 'Bharat', 'Shamji', 164, NULL, '', 'F', 5, 10, NULL, '2006-10-04', NULL, 2, NULL, '268', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0245-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(979, 396, 'DPF0245-06', 'DPF0245', 'Harsha', 'Shamji', 'Kanji', 164, NULL, '', 'F', 3, 6, NULL, '1971-08-18', NULL, 2, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0245-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(980, 397, 'DPF0246-01', 'DPF0246', 'Jayvantiben', 'Chunilal', 'Kanji', 164, NULL, '', 'F', 3, 22, NULL, '1957-12-25', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0246-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(981, 397, 'DPF0246-02', 'DPF0246', 'Chetan', 'Chunilal', 'Kanji', 164, NULL, '', 'M', 3, 25, NULL, '1981-04-04', NULL, 3, NULL, '214', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0246-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(982, 397, 'DPF0246-03', 'DPF0246', 'Charmi', 'Chetan', 'Chunilal', 164, NULL, '', 'F', 3, 35, NULL, '1986-06-29', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0246-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(983, 397, 'DPF0246-04', 'DPF0246', 'Nitin', 'Chunilal', 'Kanji', 164, NULL, '', 'M', 3, 25, NULL, '1984-10-26', NULL, 2, NULL, '259', '', 0, NULL, '', NULL, '<EMAIL>', 'Live', '', 'DPF0246-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(984, 398, 'DPF0247-01', 'DPF0247', 'Manjulaben', 'Manilal', 'Ramji', 164, NULL, '', 'F', 3, 22, NULL, '1941-11-19', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0247-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(985, 398, 'DPF0247-02', 'DPF0247', 'Khushal', 'Manilal', 'Ramji', 164, NULL, '', 'M', 3, 25, NULL, '1972-05-06', NULL, 3, NULL, '259', '', 2, NULL, '9322219282', NULL, '<EMAIL>', 'Live', '', 'DPF0247-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(986, 398, 'DPF0247-03', 'DPF0247', 'Heena', 'Khushal', 'Manilal', 164, NULL, '', 'F', 3, 35, NULL, '1976-08-24', NULL, 3, NULL, '214', '', 0, NULL, '9321403982', NULL, '', 'Live', '', 'DPF0247-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(987, 398, 'DPF0247-04', 'DPF0247', 'Isha', 'Khushal', 'Manilal', 164, NULL, '', 'F', 3, 10, NULL, '2005-04-10', NULL, 2, NULL, '263', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0247-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(988, 398, 'DPF0247-05', 'DPF0247', 'Parin', 'Khushal', 'Manilal', 164, NULL, '', 'M', 3, 15, NULL, '2008-03-21', NULL, 2, NULL, '328', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0247-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(989, 399, 'DPF0248-01', 'DPF0248', '<NAME>)', 'Ramji', 'Ramji', 164, '', '', 'M', 5, 22, '', '1961-12-08', NULL, 3, '1985-01-27', '17', NULL, 2, NULL, '9322656566', '8082565665', '<EMAIL>', 'Live', NULL, 'DPF0248-01.jpg', 1, '', 1, 0, '', '0', NULL, '', 0, 'navinsavla', '$2a$10$Y/QRd8icBRyvZdrye5jFQ.j.zRLPRWEZqw6pEZCur5zZKqDbSRtWW', 1, '[{\"first_name\":\"Navin (Jitu)\",\"second_name\":\"Ramji\",\"third_name\":\"Ramji\",\"sex\":\"M\",\"surname_id\":\"164\",\"other_surname_details\":\"\",\"blood_id\":\"5\",\"relation_id\":\"22\",\"other_relation_details\":\"\",\"marriage_type\":\"3\",\"education_id\":\"17\",\"other_education_details\":null,\"occupation_id\":\"2\",\"other_occupation_details\":null,\"dob\":\"1961-12-08\",\"dom\":\"1985-01-27\",\"dod\":null,\"contact\":\"9322656566\",\"altcontact\":\"8082565665\",\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"1\",\"achivements\":\"\",\"sports_id\":\"0\",\"other_sports_details\":null,\"dharmik_id\":\"0\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"\",\"sanjeevni\":\"0\",\"life_insurance\":\"1\",\"image\":\"DPF0248-01.jpg\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', '[{\"first_name\":\"Navin (Jitu)\",\"second_name\":\"Ramji\",\"third_name\":\"Ramji\",\"sex\":\"M\",\"surname_id\":\"164\",\"other_surname_details\":\"\",\"blood_id\":\"5\",\"relation_id\":\"22\",\"other_relation_details\":\"\",\"marriage_type\":\"3\",\"education_id\":\"17\",\"other_education_details\":null,\"occupation_id\":\"2\",\"other_occupation_details\":null,\"dob\":\"1961-12-08\",\"dom\":\"1985-01-27\",\"dod\":null,\"contact\":\"9322656566\",\"altcontact\":\"8082565665\",\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"1\",\"achivements\":\"\",\"sports_id\":\"0\",\"other_sports_details\":null,\"dharmik_id\":\"0\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"\",\"sanjeevni\":\"0\",\"life_insurance\":\"1\",\"image\":\"DPF0248-01.jpg\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', 0, 0, '', '', '2020-07-31 10:08:28', '2021-08-14 07:05:48', 0, NULL, NULL),
(990, 399, 'DPF0248-02', 'DPF0248', 'Bharati', 'Navin (Jitu)', 'Manilal', 164, NULL, '', 'F', 5, 28, NULL, '1963-07-07', NULL, 3, NULL, '216', '', 0, NULL, '9702284495', NULL, '<EMAIL>', 'Live', '', 'DPF0248-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(991, 399, 'DPF0248-03', 'DPF0248', 'Zeel', 'Navin (Jitu)', 'Manilal', 164, NULL, '', 'F', 5, 6, NULL, '1989-08-16', NULL, 2, NULL, '271', '', 0, NULL, '9819142282', NULL, '<EMAIL>', 'Live', '', 'DPF0248-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(992, 400, 'DPF0249-01', 'DPF0249', 'Jaysukh', 'Manilal', 'Ramji', 164, NULL, '', 'M', 4, 22, NULL, '1964-05-31', NULL, 3, NULL, '216', '', 2, NULL, '9820830995', NULL, '', 'Live', '', 'DPF0249-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(993, 400, 'DPF0249-02', 'DPF0249', 'Urmila', 'Jaysukh', 'Manilal', 164, NULL, '', 'F', 5, 28, NULL, '1966-03-21', NULL, 3, NULL, '214', '', 0, NULL, '9969841790', NULL, '<EMAIL>', 'Live', '', 'DPF0249-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(994, 400, 'DPF0249-03', 'DPF0249', 'Nidhi', 'Jaysukh', 'Manilal', 164, NULL, '', 'F', 3, 6, NULL, '1989-06-17', NULL, 2, NULL, '329', '', 0, NULL, '9821743113', NULL, '<EMAIL>', 'Live', '', 'DPF0249-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(995, 400, 'DPF0249-04', 'DPF0249', 'Darshan', 'Jaysukh', 'Manilal', 164, NULL, '', 'M', 5, 25, NULL, '1993-11-24', NULL, 2, NULL, '259', '', 0, NULL, '7666425808', NULL, '<EMAIL>', 'Live', '', 'DPF0249-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(996, 401, 'DPF0250-01', 'DPF0250', 'Taraben', 'Kantilal', 'Ramji', 164, NULL, '', 'F', 0, 22, NULL, '1943-04-23', NULL, 3, NULL, '216', '', 0, NULL, '24015173', NULL, '', 'Live', '', 'DPF0250-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(997, 401, 'DPF0250-02', 'DPF0250', 'Sanjay', 'Kantilal', 'Ramji', 164, NULL, '', 'M', 0, 25, NULL, '1965-05-25', NULL, 0, NULL, '214', '', 2, NULL, '9819836008', NULL, '<EMAIL>', 'Live', '', 'DPF0250-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(998, 402, 'DPF0251-01', 'DPF0251', 'Shailesh', 'Kantilal', 'Ramji', 164, NULL, '', 'M', 0, 22, NULL, '1967-04-06', NULL, 3, '1982-08-08', '259', '', 2, NULL, '9820179089', NULL, '<EMAIL>', 'Live', '', 'DPF0251-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(999, 402, 'DPF0251-02', 'DPF0251', 'Beena', 'Shailesh', 'Kantilal', 164, NULL, '', 'F', 0, 28, NULL, '1970-01-19', NULL, 3, '1982-08-08', '214', '', 0, NULL, '9619726719', NULL, '<EMAIL>', 'Live', '', 'DPF0251-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1000, 402, 'DPF0251-03', 'DPF0251', 'Vidhi', 'Shailesh', 'Kantilal', 164, NULL, '', 'F', 0, 6, NULL, '1997-07-02', NULL, 2, NULL, '217', '', 0, NULL, '9820544933', NULL, '<EMAIL>', 'Live', '', 'DPF0251-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1001, 403, 'DPF0252-01', 'DPF0252', 'Premchand(Babubhai)', 'Ramji', 'Deraj', 164, NULL, '', 'M', 3, 22, NULL, '1943-07-09', NULL, 3, NULL, '256', '', 2, NULL, '9757393871', NULL, '', 'Live', '', 'DPF0252-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1002, 403, 'DPF0252-02', 'DPF0252', 'Hemlataben', 'Premchand(Babubhai)', 'Ramji', 164, NULL, '', 'F', 5, 28, NULL, '1947-02-05', NULL, 3, NULL, '256', '', 0, NULL, '9029969655', NULL, '', 'Live', '', 'DPF0252-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1003, 403, 'DPF0252-03', 'DPF0252', 'Chandresh', 'Premchand(Babubhai)', 'Ramji', 164, NULL, '', 'M', 3, 25, NULL, '1968-12-28', NULL, 3, NULL, '271', '', 0, NULL, '9029969663', NULL, '<EMAIL>', 'Live', '', 'DPF0252-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1004, 403, 'DPF0252-04', 'DPF0252', 'Jayshree', 'Chandresh', 'Premchand(Babubhai)', 164, NULL, '', 'F', 3, 35, NULL, '1974-11-21', NULL, 3, NULL, '259', '', 0, NULL, '9029478345', NULL, '<EMAIL>', 'Live', '', 'DPF0252-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1005, 403, 'DPF0252-05', 'DPF0252', 'Raj', 'Chandresh', 'Premchand(Babubhai)', 164, NULL, '', 'M', 3, 15, NULL, '2004-03-09', NULL, 2, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0252-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1006, 404, 'DPF0253-01', 'DPF0253', 'Jayantilal', 'Ramji', 'Deraj ', 164, NULL, '', 'M', 3, 22, NULL, '1945-06-30', NULL, 3, NULL, '216', '', 0, NULL, '9322282016', NULL, '', 'Live', '', 'DPF0253-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1007, 404, 'DPF0253-02', 'DPF0253', 'Dr. Chirag', 'Ramji', 'Deraj ', 164, NULL, '', 'M', 7, 25, NULL, '1972-04-13', NULL, 3, NULL, '330', '', 2, NULL, '9821038532', NULL, '<EMAIL>', 'Live', '', 'DPF0253-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1008, 404, 'DPF0253-03', 'DPF0253', 'Dr. Sunita', 'Dr. Chirag', 'Ramji', 164, NULL, '', 'F', 5, 35, NULL, '1972-07-01', NULL, 3, NULL, '331', '', 0, NULL, '9870731122', NULL, '<EMAIL>', 'Live', '', 'DPF0253-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1009, 404, 'DPF0253-04', 'DPF0253', 'Freya', 'Dr. Chirag', 'Ramji', 164, NULL, '', 'F', 0, 10, NULL, '2000-02-02', NULL, 2, NULL, '261', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0253-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1010, 404, 'DPF0253-05', 'DPF0253', 'Krish', 'Dr. Chirag', 'Ramji', 164, NULL, '', 'M', 3, 15, NULL, '2003-02-14', NULL, 2, NULL, '257', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0253-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1011, 405, 'DPF0254-01', 'DPF0254', 'Praful', 'Morarji', '', 164, NULL, '', 'M', 5, 22, NULL, '1971-06-17', NULL, 3, NULL, '261', '', 0, NULL, '9978056435', NULL, '', 'Live', '', 'DPF0254-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1012, 405, 'DPF0254-02', 'DPF0254', 'Meena', 'Praful', 'Morarji', 164, NULL, '', 'F', 8, 28, NULL, '1980-04-26', NULL, 3, NULL, '216', '', 0, NULL, '9712436310', NULL, '', 'Live', '', 'DPF0254-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1013, 405, 'DPF0254-03', 'DPF0254', 'Neha', 'Praful', 'Morarji', 164, NULL, '', 'F', 3, 6, NULL, '1996-09-19', NULL, 2, NULL, '226', '', 0, NULL, '8980925288', NULL, '', 'Live', '', 'DPF0254-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1014, 405, 'DPF0254-04', 'DPF0254', 'Nikunj', 'Praful', 'Morarji', 164, NULL, '', 'M', 5, 25, NULL, '1998-09-27', NULL, 2, NULL, '261', '', 0, NULL, '9537125435', NULL, '<EMAIL>.com', 'Live', '', 'DPF0254-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1015, 405, 'DPF0254-05', 'DPF0254', 'Avani', 'Praful', 'Morarji', 164, NULL, '', 'F', 3, 6, NULL, '2000-09-17', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0254-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1016, 405, 'DPF0254-06', 'DPF0254', 'Chanchalbai', 'Morarji', '', 164, NULL, '', 'F', 0, 17, NULL, '0000-00-00', NULL, 3, NULL, '264', '', 0, NULL, '9978056435', NULL, '', 'Live', '', 'DPF0254-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1017, 406, 'DPF0255-01', 'DPF0255', 'Gangji', 'Velji', '', 164, NULL, '', 'M', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '256', '', 7, NULL, '28114148', NULL, '', 'Live', '', 'DPF0255-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1018, 406, 'DPF0255-02', 'DPF0255', 'Javerbai', 'Gangji', 'Velji', 164, NULL, '', 'F', 0, 28, NULL, '0000-00-00', NULL, 3, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0255-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1019, 407, 'DPF0256-01', 'DPF0256', 'Khimji', 'Velji', 'Hansraj', 164, NULL, '', 'M', 5, 22, NULL, '1939-05-23', NULL, 3, NULL, '282', '', 2, NULL, '23878653', NULL, '', 'Live', '', 'DPF0256-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1020, 407, 'DPF0256-02', 'DPF0256', 'Jayaben', 'Khimji', 'Velji', 164, NULL, '', 'F', 5, 28, NULL, '1941-11-15', NULL, 3, NULL, '282', '', 0, NULL, '9619456286', NULL, '', 'Live', '', 'DPF0256-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1021, 407, 'DPF0256-03', 'DPF0256', 'Digesh', 'Khimji', 'Velji', 164, NULL, '', 'M', 5, 25, NULL, '1969-03-20', NULL, 3, NULL, '216', '', 0, NULL, '9892560130', NULL, '<EMAIL>', 'Live', '', 'DPF0256-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1022, 407, 'DPF0256-04', 'DPF0256', 'Pragna', 'Digesh', 'Khimji', 164, NULL, '', 'F', 5, 35, NULL, '1967-03-27', NULL, 3, NULL, '259', '', 0, NULL, '9820763156', NULL, '', 'Live', '', 'DPF0256-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1023, 407, 'DPF0256-05', 'DPF0256', 'Nainit', 'Digesh', 'Khimji', 164, NULL, '', 'M', 5, 15, NULL, '1991-11-28', NULL, 2, NULL, '271', '', 0, NULL, '9820909290', NULL, '<EMAIL>', 'Live', '', 'DPF0256-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1024, 408, 'DPF0257-01', 'DPF0257', 'Bhavanji', 'Velji', 'Hansraj', 164, NULL, '', 'M', 1, 22, NULL, '1945-02-18', NULL, 3, NULL, '256', '', 2, NULL, '9664970060', NULL, '', 'Live', '', 'DPF0257-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1025, 408, 'DPF0257-02', 'DPF0257', 'Rukshamani', 'Bhavanji', 'Velji', 164, NULL, '', 'F', 5, 28, NULL, '1950-09-17', NULL, 3, NULL, '262', '', 0, NULL, '9664970060', NULL, '', 'Live', '', 'DPF0257-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1026, 409, 'DPF0258-01', 'DPF0258', 'Kishor', 'Raghavji', 'Velji', 164, NULL, '', 'M', 2, 22, NULL, '1964-04-17', NULL, 3, NULL, '262', '', 2, NULL, '9029648565', NULL, '', 'Live', '', 'DPF0258-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1027, 409, 'DPF0258-02', 'DPF0258', 'Meena', 'Kishor', 'Raghavji', 164, NULL, '', 'F', 5, 28, NULL, '1966-08-31', NULL, 3, NULL, '256', '', 0, NULL, '9221437168', NULL, '', 'Live', '', 'DPF0258-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1028, 409, 'DPF0258-03', 'DPF0258', 'Hardik', 'Kishor', 'Raghavji', 164, NULL, '', 'M', 1, 25, NULL, '1992-06-26', NULL, 2, NULL, '259', '', 0, NULL, '9029602589', NULL, '<EMAIL>', 'Live', '', 'DPF0258-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1029, 409, 'DPF0258-04', 'DPF0258', 'Drashti', 'Kishor', 'Raghavji', 164, NULL, '', 'F', 0, 6, NULL, '1995-09-12', NULL, 2, NULL, '226', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0258-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1030, 409, 'DPF0258-05', 'DPF0258', 'Grishma', 'Kishor', 'Raghavji', 164, NULL, '', 'F', 5, 6, NULL, '1997-12-07', NULL, 2, NULL, '217', '', 0, NULL, '', NULL, '<EMAIL>', 'Live', '', 'DPF0258-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1031, 409, 'DPF0258-06', 'DPF0258', 'Hiren', 'Raghavji', 'Velji', 164, NULL, '', 'm', 5, 4, NULL, '1966-06-08', NULL, 2, NULL, '261', '', 0, NULL, '9223504112', NULL, '<EMAIL>', 'Live', '', 'DPF0258-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1032, 409, 'DPF0258-07', 'DPF0258', 'Maniben', 'Raghavji', 'Velji', 164, NULL, '', 'F', 0, 17, NULL, '0000-00-00', NULL, 3, NULL, '264', '', 0, NULL, '9221437168', NULL, '', 'Live', '', 'DPF0258-07.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1033, 410, 'DPF0259-01', 'DPF0259', 'Laxmiben', 'Liladhar', 'Hirji', 164, NULL, '', 'F', 0, 22, NULL, '1933-03-30', NULL, 3, NULL, '0', '', 0, NULL, '9324566768', NULL, '', 'Live', '', 'DPF0259-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1034, 410, 'DPF0259-02', 'DPF0259', 'Raju', 'Liladhar', 'Hirji', 164, NULL, '', 'M', 4, 25, NULL, '1961-10-11', NULL, 3, NULL, '60', '', 2, NULL, '9769766768', NULL, '<EMAIL>', 'Live', '', 'DPF0259-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1035, 410, 'DPF0259-03', 'DPF0259', 'Bharati', 'Raju', 'Liladhar', 164, NULL, '', 'F', 5, 35, NULL, '1962-07-19', NULL, 3, NULL, '216', '', 0, NULL, '9322006352', NULL, '', 'Live', '', 'DPF0259-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1036, 410, 'DPF0259-04', 'DPF0259', 'Harsha', 'Raju', 'Liladhar', 164, NULL, '', 'M', 5, 15, NULL, '1991-02-26', NULL, 2, NULL, '274', '', 0, NULL, '9920234667', NULL, '<EMAIL>', 'Live', '', 'DPF0259-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1037, 410, 'DPF0259-05', 'DPF0259', 'Riya', 'Raju', 'Liladhar', 164, NULL, '', 'F', 3, 10, NULL, '1996-10-14', NULL, 2, NULL, '214', '', 0, NULL, '9833566768', NULL, '', 'Live', '', 'DPF0259-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1038, 411, 'DPF0260-01', 'DPF0260', 'Panbai', 'Mulchand', 'Hirji ', 164, NULL, '', 'F', 0, 22, NULL, '1932-02-14', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0260-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1039, 411, 'DPF0260-02', 'DPF0260', 'Mahesh', 'Mulchand', 'Hirji ', 164, NULL, '', 'M', 3, 25, NULL, '1956-03-25', NULL, 3, NULL, '216', '', 2, NULL, '9967546919', NULL, '<EMAIL>', 'Live', '', 'DPF0260-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1040, 411, 'DPF0260-03', 'DPF0260', 'Bharati', 'Mahesh', 'Mulchand', 164, NULL, '', 'F', 3, 35, NULL, '1956-04-30', NULL, 3, NULL, '216', '', 0, NULL, '8080350506', NULL, '', 'Live', '', 'DPF0260-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1041, 411, 'DPF0260-04', 'DPF0260', 'Sameer', 'Mahesh', 'Mulchand', 164, NULL, '', 'M', 3, 15, NULL, '1979-06-15', NULL, 3, NULL, '259', '', 0, NULL, '9820184321', NULL, '<EMAIL>', 'Live', '', 'DPF0260-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1042, 411, 'DPF0260-05', 'DPF0260', 'Bhranti', 'Sameer', 'Mahesh', 164, NULL, '', 'F', 3, 37, NULL, '1979-10-26', NULL, 3, NULL, '259', '', 0, NULL, '9920824543', NULL, '', 'Live', '', 'DPF0260-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1043, 411, 'DPF0260-06', 'DPF0260', 'Jay', 'Sameer', 'Mahesh', 164, NULL, '', 'M', 3, 38, NULL, '2003-11-29', NULL, 2, NULL, '257', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0260-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1044, 411, 'DPF0260-07', 'DPF0260', 'Sahil', 'Sameer', 'Mahesh', 164, NULL, '', 'M', 3, 38, NULL, '2006-10-31', NULL, 2, NULL, '268', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0260-07.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1045, 412, 'DPF0261-01', 'DPF0261', 'Anil', 'Mulchand', 'Hirji ', 164, NULL, '', 'M', 7, 22, NULL, '1952-04-24', NULL, 3, NULL, '332', '', 2, NULL, '9890212460', NULL, '', 'Live', '', 'DPF0261-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1046, 412, 'DPF0261-02', 'DPF0261', 'Madhuriben', 'Anil', 'Mulchand', 164, NULL, '', 'F', 3, 28, NULL, '1952-11-10', NULL, 3, NULL, '216', '', 0, NULL, '9561341552', NULL, '', 'Live', '', 'DPF0261-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1047, 412, 'DPF0261-03', 'DPF0261', 'Kinjal', 'Anil', 'Mulchand', 164, NULL, '', 'M', 3, 25, NULL, '1978-03-17', NULL, 3, NULL, '214', '', 0, NULL, '9822061096', NULL, '<EMAIL>', 'Live', '', 'DPF0261-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1048, 412, 'DPF0261-04', 'DPF0261', 'Urvi', 'Kinjal', 'Anil', 164, NULL, '', 'F', 5, 35, NULL, '1980-01-26', NULL, 3, NULL, '259', '', 0, NULL, '9822721096', NULL, '<EMAIL>', 'Live', '', 'DPF0261-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1049, 412, 'DPF0261-05', 'DPF0261', 'Jiya', 'Kinjal', 'Anil', 164, NULL, '', 'F', 3, 10, NULL, '2006-10-30', NULL, 2, NULL, '268', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0261-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1050, 413, 'DPF0262-01', 'DPF0262', 'Ratilal', 'Hirji ', '', 164, NULL, '', 'M', 0, 22, NULL, '1932-10-03', NULL, 3, NULL, '216', '', 2, NULL, '9821375774', NULL, '', 'Live', '', 'DPM001030.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL);
INSERT INTO `family_member` (`id`, `family_id`, `member_no`, `family_no`, `first_name`, `second_name`, `third_name`, `surname_id`, `other_surname_details`, `regd_id`, `sex`, `blood_id`, `relation_id`, `other_relation_details`, `dob`, `dod`, `marriage_type`, `dom`, `education_id`, `other_education_details`, `occupation_id`, `other_occupation_details`, `contact`, `altcontact`, `email`, `live_type`, `member_type`, `image`, `life_insurance`, `life_insurance_text`, `medical_insurance`, `sanjeevni`, `medical_insurance_text`, `sports_id`, `other_sports_details`, `achivements`, `dharmik_id`, `username`, `password`, `fm_status`, `old_value`, `new_value`, `merge_status`, `merge_flag`, `merge_data`, `merge_user_data`, `added_on`, `updated_on`, `deleted`, `delete_reason`, `deleted_on`) VALUES
(1051, 413, 'DPF0262-02', 'DPF0262', 'Sushilaben', 'Ratilal', 'Hirji ', 164, NULL, '', 'F', 0, 28, NULL, '1940-04-29', NULL, 3, NULL, '257', '', 0, NULL, '', NULL, '', 'Live', '', 'DPM001031.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1052, 413, 'DPF0262-03', 'DPF0262', 'Jayesh', 'Ratilal', 'Hirji ', 164, NULL, '', 'M', 0, 25, NULL, '1962-11-04', NULL, 3, NULL, '259', '', 0, NULL, '9821148775', NULL, '', 'Live', '', 'DPM001032.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1053, 413, 'DPF0262-04', 'DPF0262', 'Parul', 'Jayesh', 'Ratilal', 164, NULL, '', 'F', 0, 35, NULL, '1967-08-09', NULL, 3, NULL, '259', '', 0, NULL, '', NULL, '', 'Live', '', 'DPM001033.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1054, 413, 'DPF0262-05', 'DPF0262', 'Riyanka', 'Jayesh', 'Ratilal', 164, NULL, '', 'F', 0, 10, NULL, '1990-10-20', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPM001034.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1055, 413, 'DPF0262-06', 'DPF0262', 'Janvi', 'Jayesh', 'Ratilal', 164, NULL, '', 'F', 0, 10, NULL, '1995-10-30', NULL, 2, NULL, '226', '', 0, NULL, '', NULL, '', 'Live', '', 'DPM001035.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1056, 414, 'DPF0263-01', 'DPF0263', 'Pravinchandra', 'Ravilal', 'Dungarshi', 164, NULL, '', 'M', 1, 22, NULL, '1960-07-01', NULL, 3, NULL, '259', '', 2, NULL, '9869605891', NULL, '', 'Live', '', 'DPF0263-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1057, 414, 'DPF0263-02', 'DPF0263', 'Rushabh', 'Pravinchandra', 'Ravilal', 164, NULL, '', 'M', 3, 25, NULL, '1992-05-16', NULL, 2, NULL, '299', '', 0, NULL, '8237431443', NULL, '<EMAIL>', 'Live', '', 'DPF0263-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1058, 414, 'DPF0263-03', 'DPF0263', 'Dimple', 'Pravinchandra', 'Ravilal', 164, NULL, '', 'F', 8, 6, NULL, '1994-10-29', NULL, 2, NULL, '288', '', 0, NULL, '7276878993', NULL, '<EMAIL>', 'Live', '', 'DPF0263-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1059, 415, 'DPF0264-01', 'DPF0264', 'Mukesh', 'Raghavji', 'Dungarshi', 164, NULL, '', 'M', 0, 22, NULL, '1967-08-06', NULL, 3, NULL, '216', '', 2, NULL, '9820031028', NULL, '', 'Live', '', 'DPF0264-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1060, 415, 'DPF0264-02', 'DPF0264', 'Meeta', 'Mukesh', 'Raghavji', 164, NULL, '', 'F', 5, 28, NULL, '1969-12-03', NULL, 3, NULL, '216', '', 0, NULL, '9960120639', NULL, '', 'Live', '', 'DPF0264-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1061, 415, 'DPF0264-03', 'DPF0264', 'Somil', 'Mukesh', 'Raghavji', 164, NULL, '', 'M', 5, 25, NULL, '2004-02-21', NULL, 2, NULL, '257', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0264-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1062, 416, 'DPF0265-01', 'DPF0265', 'Lalji', 'Tejshi', '', 164, NULL, '', 'M', 5, 22, NULL, '1936-10-03', NULL, 3, NULL, '0', '', 2, NULL, '9726207172', NULL, '', 'Live', '', 'DPF0265-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1063, 416, 'DPF0265-02', 'DPF0265', 'Laxmiben', 'Lalji', 'Tejshi', 164, NULL, '', 'F', 3, 28, NULL, '1937-01-07', NULL, 3, NULL, '0', '', 0, NULL, '9726207172', NULL, '', 'Live', '', 'DPF0265-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1064, 416, 'DPF0265-03', 'DPF0265', 'Kalpesh', 'Lalji', 'Tejshi', 164, NULL, '', 'M', 3, 25, NULL, '1964-02-24', NULL, 3, NULL, '259', '', 0, NULL, '9821161867', NULL, '<EMAIL>', 'Live', '', 'DPF0265-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1065, 416, 'DPF0265-04', 'DPF0265', 'Urvashi', 'Kalpesh', 'Lalji', 164, NULL, '', 'F', 1, 35, NULL, '1964-08-29', NULL, 3, NULL, '214', '', 0, NULL, '9819003939', NULL, '<EMAIL>', 'Live', '', 'DPF0265-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1066, 416, 'DPF0265-05', 'DPF0265', 'Mahek', 'Kalpesh', 'Lalji', 164, NULL, '', 'M', 7, 15, NULL, '1990-08-22', NULL, 2, NULL, '333', '', 0, NULL, '9619864905', NULL, '<EMAIL>', 'Live', '', 'DPF0265-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1067, 416, 'DPF0265-06', 'DPF0265', 'Bhavya', 'Kalpesh', 'Lalji', 164, NULL, '', 'M', 7, 15, NULL, '1992-10-03', NULL, 2, NULL, '334', '', 0, NULL, '9867887852', NULL, '<EMAIL>', 'Live', '', 'DPF0265-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1068, 417, 'DPF0266-01', 'DPF0266', 'Paresh', 'Lalji', 'Tejshi', 164, NULL, '', 'M', 0, 22, NULL, '1959-09-05', NULL, 3, NULL, '60', '', 2, NULL, '9833148157', NULL, '<EMAIL>', 'Live', '', 'DPF0266-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1069, 417, 'DPF0266-02', 'DPF0266', 'Kusumben', 'Paresh', 'Lalji', 164, NULL, '', 'F', 5, 28, NULL, '1960-08-17', NULL, 3, NULL, '226', '', 0, NULL, '9323311530', NULL, '', 'Live', '', 'DPF0266-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1070, 417, 'DPF0266-03', 'DPF0266', 'Sanket', 'Paresh', 'Lalji', 164, NULL, '', 'M', 5, 25, NULL, '1985-02-19', NULL, 3, NULL, '335', '', 0, NULL, '9987198439', NULL, '<EMAIL>', 'Live', '', 'DPF0266-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1071, 417, 'DPF0266-04', 'DPF0266', 'Ronak', 'Sanket', 'Paresh', 164, NULL, '', 'F', 1, 35, NULL, '1986-01-05', NULL, 3, NULL, '113', '', 0, NULL, '9004401705', NULL, '<EMAIL>', 'Live', '', 'DPF0266-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1072, 418, 'DPF0267-01', 'DPF0267', 'Rajesh', 'Lalji', 'Tejshi', 164, NULL, '', 'M', 3, 22, NULL, '1961-08-08', NULL, 3, NULL, '259', '', 2, NULL, '9820281631', NULL, '<EMAIL>', 'Live', '', 'DPF0267-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1073, 418, 'DPF0267-02', 'DPF0267', 'Priti', 'Rajesh', 'Lalji', 164, NULL, '', 'F', 5, 28, NULL, '1963-07-26', NULL, 3, NULL, '214', '', 0, NULL, '8652490150', NULL, '', 'Live', '', 'DPF0267-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1074, 418, 'DPF0267-03', 'DPF0267', 'Vaibhav', 'Rajesh', 'Lalji', 164, NULL, '', 'M', 5, 25, NULL, '1987-06-23', NULL, 3, NULL, '336', '', 0, NULL, '9819525424', NULL, '', 'Live', '', 'DPF0267-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1075, 418, 'DPF0267-04', 'DPF0267', 'Neha', 'Vaibhav', 'Rajesh', 164, NULL, '', 'F', 0, 35, NULL, '1987-09-01', NULL, 3, NULL, '337', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0267-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1076, 418, 'DPF0267-05', 'DPF0267', 'Avani', 'Rajesh', 'Lalji', 164, NULL, '', 'F', 5, 6, NULL, '1988-07-08', NULL, 2, NULL, '24', '', 0, NULL, '9820726107', NULL, '', 'Live', '', 'DPF0267-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1077, 419, 'DPF0268-01', 'DPF0268', 'Prabhaben', 'Damji', 'Tejshi', 164, NULL, '', 'M', 0, 22, NULL, '1947-05-30', NULL, 3, NULL, '217', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0268-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1078, 419, 'DPF0268-02', 'DPF0268', 'Kalpana', '', 'Damji', 164, NULL, '', 'F', 0, 35, NULL, '1968-03-15', NULL, 3, NULL, '285', '', 0, NULL, '9375214890', NULL, '', 'Live', '', 'DPF0268-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1079, 419, 'DPF0268-03', 'DPF0268', 'Dhvani', '', 'Damji', 164, NULL, '', 'F', 0, 10, NULL, '1993-08-28', NULL, 2, NULL, '338', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0268-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1080, 419, 'DPF0268-04', 'DPF0268', 'Margi', '', 'Damji', 164, NULL, '', 'F', 0, 10, NULL, '1995-11-16', NULL, 2, NULL, '339', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0268-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1081, 419, 'DPF0268-05', 'DPF0268', 'Manish', 'Damji', 'Tejshi', 164, NULL, '', 'M', 0, 25, NULL, '1970-10-06', NULL, 3, NULL, '259', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0268-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1082, 419, 'DPF0268-06', 'DPF0268', 'Bijal', 'Manish', 'Damji', 164, NULL, '', 'F', 0, 35, NULL, '1975-11-11', NULL, 3, NULL, '24', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0268-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1083, 419, 'DPF0268-07', 'DPF0268', 'Anshul', 'Manish', 'Damji', 164, NULL, '', 'M', 0, 15, NULL, '2001-09-06', NULL, 2, NULL, '282', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0268-07.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1084, 419, 'DPF0268-08', 'DPF0268', 'Priyanshu', 'Manish', 'Damji', 164, NULL, '', 'M', 0, 15, NULL, '2003-02-19', NULL, 2, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0268-08.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1085, 420, 'DPF0269-01', 'DPF0269', 'Sushilaben', 'Kantilal', 'Tejshi', 164, NULL, '', 'F', 6, 22, NULL, '1951-04-03', NULL, 3, NULL, '262', '', 0, NULL, '9860369100', NULL, '', 'Live', '', 'DPM001065.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1086, 421, 'DPF0270-01', 'DPF0270', 'Tarachand', 'Ramji', 'Velji', 164, NULL, '', 'M', 3, 22, NULL, '1936-06-29', NULL, 3, NULL, '60', '', 2, NULL, '9820085207', NULL, '<EMAIL>', 'Live', '', 'DPF0270-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1087, 421, 'DPF0270-02', 'DPF0270', 'Kusumben', 'Tarachand', 'Ramji', 164, NULL, '', 'F', 3, 28, NULL, '1944-07-19', NULL, 3, NULL, '340', '', 0, NULL, '9920085207', NULL, '', 'Live', '', 'DPF0270-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1088, 421, 'DPF0270-03', 'DPF0270', 'Ajay', 'Tarachand', 'Ramji', 164, NULL, '', 'M', 0, 25, NULL, '1963-11-02', NULL, 2, NULL, '341', '', 0, NULL, '9820020772', NULL, '', 'Live', '', 'DPF0270-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1089, 422, 'DPF0271-01', 'DPF0271', 'Kamlesh', 'Hemraj', 'Ramji', 164, NULL, '', 'M', 3, 22, NULL, '1953-07-24', NULL, 3, NULL, '216', '', 0, NULL, '9819113104', NULL, '', 'Live', '', 'DPF0271-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1090, 422, 'DPF0271-02', 'DPF0271', 'Sulochanaben', 'Kamlesh', 'Hemraj', 164, NULL, '', 'F', 1, 28, NULL, '1953-12-12', NULL, 3, NULL, '342', '', 0, NULL, '9930429771', NULL, '', 'Live', '', 'DPF0271-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1091, 423, 'DPF0272-01', 'DPF0272', 'Mukesh', 'Hemraj', 'Ramji', 164, NULL, '', 'M', 5, 22, NULL, '1957-04-10', NULL, 3, NULL, '259', '', 2, NULL, '9819417350', NULL, '', 'Live', '', 'DPF0272-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1092, 423, 'DPF0272-02', 'DPF0272', 'Harsha', 'Mukesh', 'Hemraj', 164, NULL, '', 'F', 3, 28, NULL, '1957-06-01', '2011-03-12', 3, NULL, '343', '', 0, NULL, '9833438096', NULL, '<EMAIL>', 'Death', '', 'DPF0272-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1093, 423, 'DPF0272-03', 'DPF0272', 'Radhika', 'Mukesh', 'Hemraj', 164, NULL, '', 'F', 5, 6, NULL, '1987-08-29', NULL, 2, NULL, '344', '', 0, NULL, '9892042866', NULL, '<EMAIL>', 'Live', '', 'DPF0272-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1094, 423, 'DPF0272-04', 'DPF0272', 'Mahek', 'Mukesh', 'Hemraj', 164, NULL, '', 'M', 3, 25, NULL, '1990-11-12', NULL, 2, NULL, '299', '', 0, NULL, '9820394821', NULL, '<EMAIL>', 'Live', '', 'DPF0272-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1095, 424, 'DPF0273-01', 'DPF0273', 'Sanjay', 'Hemraj', 'Ramji', 164, NULL, '', 'M', 3, 22, NULL, '1967-04-06', NULL, 3, '1982-08-08', '259', '', 2, NULL, '9833783390', NULL, '<EMAIL>', 'Live', '', 'DPF0273-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1096, 424, 'DPF0273-02', 'DPF0273', 'Varsha', 'Sanjay', 'Hemraj', 164, NULL, '', 'F', 1, 28, NULL, '1967-04-14', NULL, 3, '1982-08-08', '24', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0273-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1097, 424, 'DPF0273-03', 'DPF0273', 'Parth', 'Sanjay', 'Hemraj', 164, NULL, '', 'M', 1, 25, NULL, '1995-10-23', NULL, 2, NULL, '345', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0273-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1098, 425, 'DPF0274-01', 'DPF0274', 'Laxmichand', 'Talakshi', 'Velji', 164, NULL, '', 'M', 1, 22, NULL, '1933-04-25', NULL, 3, NULL, '0', '', 7, NULL, '9699910409', NULL, '', 'Live', '', 'DPF0274-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1099, 425, 'DPF0274-02', 'DPF0274', 'Mongiben', 'Laxmichand', 'Talakshi', 164, NULL, '', 'F', 5, 28, NULL, '1935-06-20', NULL, 3, NULL, '0', '', 0, NULL, '9699906307', NULL, '', 'Live', '', 'DPF0274-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1100, 426, 'DPF0275-01', 'DPF0275', 'Kalyanji', 'Talakshi', 'Velji', 164, NULL, '', 'M', 3, 22, NULL, '1939-09-08', NULL, 3, NULL, '216', '', 2, NULL, '', NULL, '', 'Live', '', 'DPF0275-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1101, 426, 'DPF0275-02', 'DPF0275', 'Rukshmani', 'Kalyanji', 'Talakshi', 164, NULL, '', 'F', 5, 28, NULL, '1945-05-30', NULL, 3, NULL, '216', '', 0, NULL, '9769633239', NULL, '', 'Live', '', 'DPF0275-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1102, 426, 'DPF0275-03', 'DPF0275', 'Amit', 'Kalyanji', 'Talakshi', 164, NULL, '', 'M', 3, 25, NULL, '1972-02-20', NULL, 3, NULL, '317', '', 0, NULL, '9821053771', NULL, '<EMAIL>', 'Live', '', 'DPF0275-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1103, 426, 'DPF0275-04', 'DPF0275', 'Meeta', 'Amit', 'Kalyanji', 164, NULL, '', 'F', 3, 35, NULL, '1972-07-15', NULL, 3, NULL, '317', '', 0, NULL, '9819054334', NULL, '', 'Live', '', 'DPF0275-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1104, 426, 'DPF0275-05', 'DPF0275', 'Hanisi', 'Amit', 'Kalyanji', 164, NULL, '', 'F', 5, 10, NULL, '1995-12-11', NULL, 2, NULL, '116', '', 0, NULL, '9820057080', NULL, '', 'Live', '', 'DPF0275-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1105, 427, 'DPF0276-01', 'DPF0276', 'Vijayaben', 'Jayesh', 'Kalyanji', 164, NULL, '', 'F', 5, 22, NULL, '1966-03-01', NULL, 3, NULL, '259', '', 0, NULL, '9821408518', NULL, '', 'Live', '', 'DPF0276-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1106, 427, 'DPF0276-02', 'DPF0276', 'Dhruven', 'Jayesh', 'Kalyanji', 164, NULL, '', 'M', 5, 25, NULL, '1991-04-06', NULL, 2, NULL, '271', '', 0, NULL, '9664535691', NULL, '<EMAIL>', 'Live', '', 'DPF0276-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1107, 427, 'DPF0276-03', 'DPF0276', 'Parth', 'Jayesh', 'Kalyanji', 164, NULL, '', 'M', 5, 25, NULL, '1993-08-21', NULL, 2, NULL, '271', '', 0, NULL, '8082433809', NULL, '<EMAIL>', 'Live', '', 'DPF0276-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1108, 428, 'DPF0277-01', 'DPF0277', 'Premji', 'Talakshi', '', 164, NULL, '', 'M', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '60', '', 0, NULL, '', NULL, '', 'Live', '', 'DPM001088.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1109, 428, 'DPF0277-02', 'DPF0277', 'Sarlaben', 'Premji', 'Talakshi', 164, NULL, '', 'F', 0, 28, NULL, '0000-00-00', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPM001089.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1110, 428, 'DPF0277-03', 'DPF0277', 'Rocin', 'Premji', 'Talakshi', 164, NULL, '', 'F', 0, 6, NULL, '0000-00-00', NULL, 2, NULL, '56', '', 0, NULL, '', NULL, '', 'Live', '', 'DPM001090.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1111, 429, 'DPF0278-01', 'DPF0278', 'Ramniklal', 'Narshi', 'Velji', 164, NULL, '', 'M', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '286', '', 7, NULL, '', NULL, '', 'Live', '', 'DPM001091.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1112, 429, 'DPF0278-02', 'DPF0278', 'Vimlaben', 'Ramniklal', 'Narshi', 164, NULL, '', 'F', 0, 28, NULL, '0000-00-00', NULL, 3, NULL, '60', '', 0, NULL, '9765879966', NULL, '', 'Live', '', 'DPM001092.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1113, 429, 'DPF0278-03', 'DPF0278', 'Parag', 'Ramniklal', 'Narshi', 164, NULL, '', 'M', 0, 25, NULL, '0000-00-00', NULL, 3, NULL, '346', '', 0, NULL, '9890807073', NULL, '<EMAIL>', 'Live', '', 'DPM001093.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1114, 429, 'DPF0278-04', 'DPF0278', 'Heena', 'Parag', 'Ramniklal', 164, NULL, '', 'F', 0, 35, NULL, '0000-00-00', NULL, 3, NULL, '60', '', 0, NULL, '9823021358', NULL, '', 'Live', '', 'DPM001094.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1115, 429, 'DPF0278-05', 'DPF0278', 'Jay', 'Parag', 'Ramniklal', 164, NULL, '', 'M', 0, 15, NULL, '0000-00-00', NULL, 2, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPM001095.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1116, 429, 'DPF0278-06', 'DPF0278', 'Meghna', 'Parag', 'Ramniklal', 164, NULL, '', 'F', 0, 10, NULL, '0000-00-00', NULL, 2, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPM001096.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1117, 430, 'DPF0279-01', 'DPF0279', 'Jayant', 'Narshi', 'Velji', 164, NULL, '', 'M', 3, 22, NULL, '1941-08-01', NULL, 3, NULL, '216', '', 7, NULL, '9820445546', NULL, '<EMAIL>', 'Live', '', 'DPF0279-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1118, 430, 'DPF0279-02', 'DPF0279', 'Laxmiben', 'Narshi', 'Velji', 164, NULL, '', 'F', 5, 28, NULL, '1948-04-11', NULL, 3, NULL, '216', '', 0, NULL, '9819445546', NULL, '', 'Live', '', 'DPF0279-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1119, 430, 'DPF0279-03', 'DPF0279', 'Jamir', 'Narshi', 'Velji', 164, NULL, '', 'M', 5, 25, NULL, '1975-09-16', NULL, 3, NULL, '148', '', 0, NULL, '201-993-1083', NULL, '<EMAIL>', 'Live', '', 'DPF0279-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1120, 430, 'DPF0279-04', 'DPF0279', 'Dimple', 'Jamir', 'Narshi', 164, NULL, '', 'F', 4, 35, NULL, '1980-02-01', NULL, 3, NULL, '148', '', 0, NULL, '201-334-7982', NULL, '', 'Live', '', 'DPF0279-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1121, 430, 'DPF0279-05', 'DPF0279', 'Jiya', 'Jamir', 'Narshi', 164, NULL, '', 'M', 0, 10, NULL, '2010-07-30', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0279-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1122, 431, 'DPF0280-01', 'DPF0280', 'Manjulaben', 'Bhogilal', 'Narshi', 164, NULL, '', 'F', 6, 22, NULL, '1952-09-19', NULL, 3, NULL, '116', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0280-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1123, 431, 'DPF0280-02', 'DPF0280', 'Parin', 'Bhogilal', 'Narshi', 164, NULL, '', 'M', 6, 25, NULL, '1980-09-10', NULL, 3, NULL, '259', '', 2, NULL, '9820154683', NULL, '<EMAIL>', 'Live', '', 'DPF0280-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1124, 431, 'DPF0280-03', 'DPF0280', 'Hetal', 'Parin', 'Bhogilal', 164, NULL, '', 'F', 1, 35, NULL, '1980-03-28', NULL, 3, NULL, '259', '', 0, NULL, '', NULL, '<EMAIL>', 'Live', '', 'DPF0280-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1125, 431, 'DPF0280-04', 'DPF0280', 'Digant', 'Parin', 'Bhogilal', 164, NULL, '', 'M', 1, 15, NULL, '2007-10-24', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0280-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1126, 432, 'DPF0281-01', 'DPF0281', 'Mahendra', 'Narshi', 'Velji', 164, NULL, '', 'M', 0, 22, NULL, '1952-08-18', NULL, 3, NULL, '347', '', 2, NULL, '9820315979', NULL, '<EMAIL>', 'Live', '', 'DPM001106.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1127, 432, 'DPF0281-02', 'DPF0281', 'Manda', 'Mahendra', 'Narshi', 164, NULL, '', 'F', 0, 28, NULL, '1959-06-13', NULL, 3, NULL, '133', '', 0, NULL, '9820315966', NULL, '<EMAIL>', 'Live', '', 'DPF0281-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1128, 433, 'DPF0282-01', 'DPF0282', 'Manjulaben', 'Chunilal', 'Gagubhai', 164, NULL, '', 'F', 5, 22, NULL, '1946-07-15', NULL, 3, NULL, '240', '', 0, NULL, '9833484545', NULL, '', 'Live', '', 'DPM001108.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1129, 433, 'DPF0282-02', 'DPF0282', 'Kirtikumar', 'Manjulaben', 'Chunilal', 164, NULL, '', 'M', 3, 25, NULL, '1970-12-13', NULL, 3, NULL, '214', '', 0, NULL, '9870063439', NULL, '', 'Live', '', 'DPF0282-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1130, 434, 'DPF0283-01', 'DPF0283', 'Devchand', 'Gagubhai', 'Velji', 164, NULL, '', 'M', 5, 22, NULL, '1951-10-20', NULL, 3, NULL, '262', '', 2, NULL, '9324225684', NULL, '', 'Live', '', 'DPF0283-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1131, 434, 'DPF0283-02', 'DPF0283', 'Divyaben', 'Devchand', 'Gagubhai', 164, NULL, '', 'F', 1, 28, NULL, '1952-08-30', NULL, 3, NULL, '216', '', 0, NULL, '9022636854', NULL, '', 'Live', '', 'DPF0283-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1132, 434, 'DPF0283-03', 'DPF0283', 'Ritesh', 'Devchand', 'Gagubhai', 164, NULL, '', 'M', 5, 25, NULL, '1977-05-02', NULL, 3, NULL, '216', '', 0, NULL, '9820648120', NULL, '<EMAIL>', 'Live', '', 'DPF0283-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1133, 434, 'DPF0283-04', 'DPF0283', 'Neelam', 'Ritesh', 'Devchand', 164, NULL, '', 'F', 7, 35, NULL, '1977-10-15', NULL, 3, NULL, '24', '', 0, NULL, '9930636446', NULL, '', 'Live', '', 'DPF0283-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1134, 434, 'DPF0283-05', 'DPF0283', 'Kosha', 'Ritesh', 'Devchand', 164, NULL, '', 'F', 1, 10, NULL, '2003-05-05', NULL, 2, NULL, '257', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0283-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1135, 434, 'DPF0283-06', 'DPF0283', 'Hien', 'Devchand', 'Gagubhai', 164, NULL, '', 'M', 1, 25, NULL, '1979-07-24', NULL, 3, NULL, '259', '', 0, NULL, '9920226407', NULL, '<EMAIL>', 'Live', '', 'DPF0283-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1136, 434, 'DPF0283-07', 'DPF0283', 'Rashmi', 'Hien', 'Devchand', 164, NULL, '', 'F', 5, 35, NULL, '1979-07-04', NULL, 3, NULL, '214', '', 0, NULL, '9699214844', NULL, '<EMAIL>', 'Live', '', 'DPF0283-07.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1137, 434, 'DPF0283-08', 'DPF0283', 'Rachit', 'Hien', 'Devchand', 164, NULL, '', 'M', 5, 15, NULL, '2010-06-22', NULL, 2, NULL, '180', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0283-08.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1138, 435, 'DPF0284-01', 'DPF0284', 'Manilal', 'Tejshi', 'Nathu', 164, NULL, '', 'M', 5, 22, NULL, '1941-04-11', NULL, 3, NULL, '257', '', 2, NULL, '9819925210', NULL, '', 'Live', '', 'DPF0284-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1139, 435, 'DPF0284-02', 'DPF0284', 'Ratanben', 'Manilal', 'Tejshi', 164, NULL, '', 'F', 5, 28, NULL, '1947-05-03', NULL, 3, NULL, '263', '', 0, NULL, '9322639319', NULL, '', 'Live', '', 'DPF0284-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1140, 435, 'DPF0284-03', 'DPF0284', NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Live', NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', '2021-06-21 06:02:31', 0, NULL, NULL),
(1141, 435, 'DPF0284-04', 'DPF0284', 'Aruna', 'Bipin', 'Manilal', 164, NULL, '', 'F', 7, 35, NULL, '1967-09-23', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0284-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1142, 435, 'DPF0284-05', 'DPF0284', 'Ankita', 'Bipin', 'Manilal', 164, NULL, '', 'F', 7, 10, NULL, '1996-08-04', NULL, 2, NULL, '214', '', 0, NULL, '', NULL, '<EMAIL>', 'Live', '', 'DPF0284-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1143, 436, 'DPF0285-01', 'DPF0285', 'Mahesh', 'Manilal', 'Tejshi', 164, NULL, '', 'M', 5, 22, NULL, '1969-01-08', NULL, 3, NULL, '216', '', 2, NULL, '9924312109', NULL, '<EMAIL>', 'Live', '', 'DPF0285-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1144, 436, 'DPF0285-02', 'DPF0285', 'Deena', 'Mahesh', 'Manilal', 164, NULL, '', 'F', 5, 28, NULL, '1974-10-28', NULL, 3, NULL, '216', '', 0, NULL, '9323524587', NULL, '', 'Live', '', 'DPF0285-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1145, 436, 'DPF0285-03', 'DPF0285', 'Siddharth', 'Mahesh', 'Manilal', 164, NULL, '', 'M', 5, 25, NULL, '1995-03-29', NULL, 2, NULL, '348', '', 0, NULL, '9757039364', NULL, '<EMAIL>', 'Live', '', 'DPF0285-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1146, 436, 'DPF0285-04', 'DPF0285', 'Heenal', 'Mahesh', 'Manilal', 164, NULL, '', 'F', 5, 6, NULL, '1997-01-24', NULL, 2, NULL, '214', '', 0, NULL, '7208037782', NULL, '', 'Live', '', 'DPF0285-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1147, 437, 'DPF0286-01', 'DPF0286', 'Haresh', 'Manilal', 'Tejshi', 164, NULL, '', 'M', 5, 22, NULL, '1970-07-05', NULL, 3, NULL, '216', '', 0, NULL, '9930221229', NULL, '', 'Live', '', 'DPF0286-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1148, 437, 'DPF0286-02', 'DPF0286', 'Vaishali', 'Haresh', 'Manilal', 164, NULL, '', 'F', 1, 28, NULL, '1978-07-29', NULL, 3, NULL, '288', '', 0, NULL, '9322568228', NULL, '', 'Live', '', 'DPF0286-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1149, 437, 'DPF0286-03', 'DPF0286', 'Preet', 'Haresh', 'Manilal', 164, NULL, '', 'M', 1, 25, NULL, '1999-10-09', NULL, 2, NULL, '262', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0286-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1150, 438, 'DPF0287-01', 'DPF0287', 'Thakarshi', 'Tejshi', 'Nathu', 164, NULL, '', 'M', 3, 22, NULL, '1945-06-15', NULL, 3, NULL, '257', '', 7, NULL, '9867115020', NULL, '', 'Live', '', 'DPF0287-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1151, 438, 'DPF0287-02', 'DPF0287', 'Manjulaben', 'Thakarshi', 'Tejshi', 164, NULL, '', 'F', 0, 28, NULL, '1950-07-01', NULL, 3, NULL, '282', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0287-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1152, 439, 'DPF0288-01', 'DPF0288', 'Lataben', 'Mansukh', 'Tejshi', 164, NULL, '', 'F', 1, 22, NULL, '1960-03-05', NULL, 3, NULL, '214', '', 0, NULL, '9224259259', NULL, '', 'Live', '', 'DPF0288-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1153, 440, 'DPF0289-01', 'DPF0289', 'Lalji', 'Vershi', 'Nathu', 164, NULL, '', 'M', 5, 22, NULL, '1943-01-21', NULL, 3, NULL, '257', '', 2, NULL, '9322297798', NULL, '', 'Live', '', 'DPF0289-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1154, 440, 'DPF0289-02', 'DPF0289', 'Laxmiben', 'Lalji', 'Vershi', 164, NULL, '', 'F', 5, 28, NULL, '1946-06-30', NULL, 3, NULL, '257', '', 0, NULL, '9870470811', NULL, '', 'Live', '', 'DPF0289-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1155, 440, 'DPF0289-03', 'DPF0289', 'Bharat', 'Lalji', 'Vershi', 164, NULL, '', 'M', 5, 25, NULL, '1967-08-17', NULL, 3, NULL, '216', '', 0, NULL, '9821136877', NULL, '<EMAIL>', 'Live', '', 'DPF0289-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1156, 440, 'DPF0289-04', 'DPF0289', 'Jasmin', 'Bharat', 'Lalji', 164, NULL, '', 'F', 5, 35, NULL, '1969-01-19', NULL, 3, NULL, '259', '', 0, NULL, '9821299832', NULL, '<EMAIL>', 'Live', '', 'DPF0289-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1157, 440, 'DPF0289-05', 'DPF0289', 'Viral', 'Bharat', 'Lalji', 164, NULL, '', 'M', 5, 15, NULL, '1992-11-12', NULL, 2, NULL, '275', '', 0, NULL, '9870456781', NULL, '<EMAIL>', 'Live', '', 'DPF0289-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1158, 441, 'DPF0290-01', 'DPF0290', 'Chunilal', 'Versi', 'Nathu', 164, NULL, '', 'M', 3, 22, NULL, '1948-01-24', NULL, 3, NULL, '256', '', 2, NULL, '9322291444', NULL, '<EMAIL>', 'Live', '', 'DPF0290-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:28', NULL, 0, NULL, NULL),
(1159, 441, 'DPF0290-02', 'DPF0290', 'Sumatiben', 'Chunilal', 'Versi', 164, NULL, '', 'F', 2, 28, NULL, '1950-05-11', NULL, 3, NULL, '216', '', 0, NULL, '9920821113', NULL, '', 'Live', '', 'DPF0290-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1160, 442, 'DPF0291-01', 'DPF0291', 'Anil', 'Chunilal', 'Versi', 164, NULL, '', 'M', 7, 22, NULL, '1970-11-12', NULL, 3, NULL, '259', '', 8, NULL, '8097381416', NULL, '<EMAIL>', 'Live', '', 'DPF0291-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1161, 442, 'DPF0291-02', 'DPF0291', 'Pinky', 'Anil', 'Chunilal', 164, NULL, '', 'F', 5, 28, NULL, '1977-03-08', NULL, 3, NULL, '259', '', 0, NULL, '9172462656', NULL, '<EMAIL>', 'Live', '', 'DPF0291-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1162, 442, 'DPF0291-03', 'DPF0291', 'Samarth', 'Anil', 'Chunilal', 164, NULL, '', 'M', 3, 25, NULL, '2002-07-26', NULL, 2, NULL, '282', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0291-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1163, 442, 'DPF0291-04', 'DPF0291', 'Preksha', 'Anil', 'Chunilal', 164, NULL, '', 'F', 1, 6, NULL, '2009-08-24', NULL, 2, NULL, '136', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0291-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1164, 443, 'DPF0292-01', 'DPF0292', 'Vipul', 'Chunilal', 'Vershi', 164, NULL, '', 'M', 7, 22, NULL, '1973-03-11', NULL, 3, NULL, '214', '', 2, NULL, '9821098004', NULL, '<EMAIL>', 'Live', '', 'DPF0292-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1165, 443, 'DPF0292-02', 'DPF0292', 'Smita', 'Vipul', 'Chunilal', 164, NULL, '', 'F', 5, 28, NULL, '1975-06-01', NULL, 3, NULL, '216', '', 0, NULL, '9892032444', NULL, '', 'Live', '', 'DPF0292-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1166, 443, 'DPF0292-03', 'DPF0292', 'Jenil', 'Vipul', 'Chunilal', 164, NULL, '', 'M', 3, 25, NULL, '1998-03-24', NULL, 2, NULL, '216', '', 0, NULL, '9820009544', NULL, '<EMAIL>', 'Live', '', 'DPF0292-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1167, 504, 'DPF0352-01', 'DPF0352', 'Tarachand', 'Khimji', 'Virji', 164, NULL, '', 'M', 3, 22, NULL, '1951-09-07', NULL, 3, NULL, '216', '', 2, NULL, '9890595677', NULL, '', 'Live', '', 'DPF0293-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1168, 504, 'DPF0352-02', 'DPF0352', 'Ushaben', 'Tarachand', 'Khimji', 164, NULL, '', 'F', 5, 28, NULL, '1959-01-19', NULL, 3, NULL, '216', '', 0, NULL, '9987839877', NULL, '', 'Live', '', 'DPF0293-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1169, 446, 'DPF0295-06', 'DPF0295', 'Khimji', 'Virji', '', 164, NULL, '', 'M', 0, 8, NULL, '0000-00-00', NULL, 3, NULL, '256', '', 0, NULL, '8980575861', NULL, '', 'Live', '', 'DPF0293-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1170, 446, 'DPF0295-07', 'DPF0295', 'Velbai', 'Khimji', 'Virji', 164, NULL, '', 'F', 0, 17, NULL, '0000-00-00', NULL, 3, NULL, '257', '', 0, NULL, '8980575861', NULL, '', 'Live', '', 'DPF0293-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1171, 445, 'DPF0294-01', 'DPF0294', 'Jayanti', 'Khimji', 'Virji', 164, NULL, '', 'M', 3, 22, NULL, '1956-11-26', NULL, 3, NULL, '216', '', 2, NULL, '9881304507', NULL, '', 'Live', '', 'DPF0294-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1172, 445, 'DPF0294-02', 'DPF0294', 'Pallavi', 'Jayanti', 'Khimji', 164, NULL, '', 'F', 5, 28, NULL, '1961-04-28', NULL, 3, NULL, '216', '', 0, NULL, '9860127977', NULL, '', 'Live', '', 'DPF0294-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1173, 445, 'DPF0294-03', 'DPF0294', 'Punit', 'Jayanti', 'Khimji', 164, NULL, '', 'M', 3, 25, NULL, '2001-05-05', NULL, 2, NULL, '261', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0294-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1174, 446, 'DPF0295-01', 'DPF0295', 'Mehul', 'Tarachand', 'Khimji', 164, NULL, '', 'M', 3, 25, NULL, '1979-12-10', NULL, 3, '0000-00-00', '37', '', 8, NULL, '9096323776', NULL, '<EMAIL>', 'Live', '', 'DPF0295-01.jpg', 0, NULL, 0, 0, NULL, '1', NULL, '', 3, 'Mehul_savla', '$2a$10$KbyDCCF5Db6Z/PiSnriAV.ZCpZA9qdNUScmoDO/WKsC.DIa4Hhpaq', 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', '2020-10-04 16:05:17', 0, NULL, NULL),
(1175, 446, 'DPF0295-02', 'DPF0295', 'Sheetal', 'Mehul', 'Tarachand', 164, NULL, '', 'F', 3, 28, NULL, '1979-11-26', NULL, 3, NULL, '259', '', 0, NULL, '9561399877', NULL, '<EMAIL>', 'Live', '', 'DPF0295-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1176, 446, 'DPF0295-03', 'DPF0295', 'Siddhi', 'Mehul', 'Tarachand', 164, NULL, '', 'F', 3, 6, NULL, '2010-01-19', NULL, 2, NULL, '276', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0295-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1177, 446, 'DPF0295-10', 'DPF0295', 'Hemal', 'Tarachand', 'Khimji', 164, NULL, '', 'M', 3, 22, NULL, '1983-10-02', NULL, 3, NULL, '148', '', 0, NULL, '9561999877', NULL, '<EMAIL>', 'Live', '', 'DPF0295-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1178, 446, 'DPF0295-11', 'DPF0295', 'Binal', 'Hemal', 'Tarachand', 164, NULL, '', 'F', 5, 28, NULL, '1990-01-08', NULL, 3, NULL, '148', '', 0, NULL, '9167511902', NULL, '<EMAIL>', 'Live', '', 'DPF0295-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1179, 447, 'DPF0296-01', 'DPF0296', 'Gangaben', 'Vadilal ', 'Umarshi', 164, NULL, '', 'F', 3, 22, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPM001161.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1180, 448, 'DPF0297-01', 'DPF0297', 'Jayant', 'Vasanji', 'Devji', 164, NULL, '', 'M', 3, 22, NULL, '1959-04-30', NULL, 3, NULL, '216', '', 8, NULL, '9867392849', NULL, '', 'Live', '', 'DPF0297-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1181, 448, 'DPF0297-02', 'DPF0297', 'Jayaben', 'Jayant', 'Vasanji', 164, NULL, '', 'F', 3, 28, NULL, '1963-09-01', NULL, 3, NULL, '256', '', 0, NULL, '9867177179', NULL, '', 'Live', '', 'DPF0297-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1182, 448, 'DPF0297-03', 'DPF0297', 'Harshal', 'Jayant', 'Vasanji', 164, NULL, '', 'M', 3, 25, NULL, '1987-12-10', NULL, 2, NULL, '56', '', 0, NULL, '9702798678', NULL, '', 'Live', '', 'DPF0297-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1183, 448, 'DPF0297-04', 'DPF0297', 'Dhaval', 'Jayant', 'Vasanji', 164, NULL, '', 'M', 5, 25, NULL, '1994-07-22', NULL, 2, NULL, '288', '', 0, NULL, '9167732289', NULL, '', 'Live', '', 'DPF0297-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1184, 449, 'DPF0298-01', 'DPF0298', 'Shamji', 'Dungarshi', 'Shivji', 164, NULL, '', 'M', 3, 22, NULL, '0000-00-00', NULL, 3, NULL, '256', '', 0, NULL, '9969776561', NULL, '', 'Live', '', 'DPF0298-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1185, 449, 'DPF0298-02', 'DPF0298', 'Jayvantiben', 'Shamji', 'Dungarshi', 164, NULL, '', 'F', 5, 28, NULL, '0000-00-00', NULL, 3, NULL, '257', '', 0, NULL, '9869947390', NULL, '', 'Live', '', 'DPF0298-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1186, 450, 'DPF0299-01', 'DPF0299', 'Rajeev', 'Shamji', 'Dungarshi', 164, NULL, '', 'M', 5, 22, NULL, '1971-06-06', NULL, 3, NULL, '216', '', 2, NULL, '9440896292', NULL, '<EMAIL>', 'Live', '', 'DPF0299-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1187, 450, 'DPF0299-02', 'DPF0299', 'Jigna', 'Rajeev', 'Shamji', 164, NULL, '', 'F', 3, 28, NULL, '1973-10-06', NULL, 3, NULL, '122', '', 0, NULL, '9246849998', NULL, '<EMAIL>', 'Live', '', 'DPF0299-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1188, 450, 'DPF0299-03', 'DPF0299', 'Jainil', 'Rajeev', 'Shamji', 164, NULL, '', 'M', 5, 25, NULL, '1997-05-27', NULL, 2, NULL, '349', '', 0, NULL, '9553493128', NULL, '<EMAIL>', 'Live', '', 'DPF0299-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1189, 450, 'DPF0299-04', 'DPF0299', 'Rushit', 'Rajeev', 'Shamji', 164, NULL, '', 'M', 3, 25, NULL, '1999-10-11', NULL, 2, NULL, '262', '', 0, NULL, '', NULL, '<EMAIL>', 'Live', '', 'DPF0299-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1190, 451, 'DPF0300-01', 'DPF0300', 'Nanji', 'Dungarshi', 'Shivji', 164, NULL, '', 'M', 0, 22, NULL, '1938-08-01', NULL, 3, NULL, '256', '', 7, NULL, '', NULL, '', 'Live', '', 'DPF0300-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1191, 451, 'DPF0300-02', 'DPF0300', 'Kasturben', 'Nanji', 'Dungarshi', 164, NULL, '', 'F', 3, 28, NULL, '0000-00-00', NULL, 3, NULL, '263', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0300-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1192, 452, 'DPF0301-01', 'DPF0301', 'Hemchand', 'Khiyashi', 'Shivji', 164, NULL, '', 'M', 3, 22, NULL, '1951-09-14', NULL, 3, NULL, '256', '', 0, NULL, '9869792347', NULL, '', 'Live', '', 'DPF0301-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1193, 452, 'DPF0301-02', 'DPF0301', 'Vanitaben', 'Hemchand', 'Khiyashi', 164, NULL, '', 'F', 3, 28, NULL, '1956-01-05', NULL, 3, NULL, '216', '', 0, NULL, '9029820677', NULL, '', 'Live', '', 'DPF0301-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1194, 452, 'DPF0301-03', 'DPF0301', 'Nilesh', 'Hemchand', 'Khiyashi', 164, NULL, '', 'M', 1, 25, NULL, '1982-04-12', NULL, 2, NULL, '217', '', 0, NULL, '9757310351', NULL, '', 'Live', '', 'DPF0301-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1195, 453, 'DPF0302-01', 'DPF0302', 'Hasbai', 'Lalji', 'Shivji', 164, NULL, '', 'F', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 2, NULL, '', NULL, '', 'Live', '', 'DPF0302-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1196, 453, 'DPF0302-02', 'DPF0302', 'Kantilal', 'Lalji', 'Shivji', 164, NULL, '', 'M', 3, 25, NULL, '1954-06-03', NULL, 3, NULL, '261', '', 0, NULL, '9820999509', NULL, '', 'Live', '', 'DPF0302-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1197, 453, 'DPF0302-03', 'DPF0302', 'Sushilaben', 'Kantilal', 'Lalji', 164, NULL, '', 'F', 3, 35, NULL, '1954-12-30', NULL, 3, NULL, '259', '', 0, NULL, '9820999498', NULL, '', 'Live', '', 'DPF0302-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1198, 453, 'DPF0302-04', 'DPF0302', 'Keyur', 'Kantilal', 'Lalji', 164, NULL, '', 'M', 3, 15, NULL, '1982-05-24', NULL, 3, NULL, '148', '', 0, NULL, '9867321653', NULL, '<EMAIL>', 'Live', '', 'DPF0302-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1199, 453, 'DPF0302-05', 'DPF0302', 'Pooja', 'Keyur', 'Kantilal', 164, NULL, '', 'F', 3, 37, NULL, '1983-06-18', NULL, 3, NULL, '277', '', 0, NULL, '9867653050', NULL, '<EMAIL>', 'Live', '', 'DPF0302-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1200, 453, 'DPF0302-06', 'DPF0302', 'Kerav', 'Keyur', 'Kantilal', 164, NULL, '', 'M', 5, 38, NULL, '2010-01-29', NULL, 2, NULL, '136', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0302-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL);
INSERT INTO `family_member` (`id`, `family_id`, `member_no`, `family_no`, `first_name`, `second_name`, `third_name`, `surname_id`, `other_surname_details`, `regd_id`, `sex`, `blood_id`, `relation_id`, `other_relation_details`, `dob`, `dod`, `marriage_type`, `dom`, `education_id`, `other_education_details`, `occupation_id`, `other_occupation_details`, `contact`, `altcontact`, `email`, `live_type`, `member_type`, `image`, `life_insurance`, `life_insurance_text`, `medical_insurance`, `sanjeevni`, `medical_insurance_text`, `sports_id`, `other_sports_details`, `achivements`, `dharmik_id`, `username`, `password`, `fm_status`, `old_value`, `new_value`, `merge_status`, `merge_flag`, `merge_data`, `merge_user_data`, `added_on`, `updated_on`, `deleted`, `delete_reason`, `deleted_on`) VALUES
(1201, 454, 'DPF0303-01', 'DPF0303', 'Devchand', 'Lalji', 'Shivji', 164, NULL, '', 'M', 3, 22, NULL, '1957-01-26', NULL, 3, NULL, '261', '', 2, NULL, '9819428547', NULL, '', 'Live', '', 'DPF0303-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1202, 454, 'DPF0303-02', 'DPF0303', 'Neetaben', 'Devchand', 'Lalji', 164, NULL, '', 'F', 3, 28, NULL, '1962-02-28', NULL, 3, NULL, '256', '', 0, NULL, '28933049', NULL, '', 'Live', '', 'DPF0303-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1203, 454, 'DPF0303-03', 'DPF0303', 'Dimple', 'Devchand', 'Lalji', 164, NULL, '', 'F', 3, 6, NULL, '1986-10-27', NULL, 2, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0303-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1204, 454, 'DPF0303-04', 'DPF0303', 'Nirav', 'Devchand', 'Lalji', 164, NULL, '', 'M', 3, 25, NULL, '1990-01-21', NULL, 2, NULL, '217', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0303-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1205, 455, 'DPF0304-01', 'DPF0304', 'Pravin', 'Lalji', 'Shivji', 164, NULL, '', 'M', 0, 22, NULL, '1959-01-03', NULL, 3, NULL, '256', '', 2, NULL, '9892133132', NULL, '', 'Live', '', 'DPF0304-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1206, 455, 'DPF0304-02', 'DPF0304', 'Heenaben', 'Pravin', 'Lalji', 164, NULL, '', 'F', 0, 28, NULL, '1964-02-24', NULL, 3, NULL, '216', '', 0, NULL, '9773656297', NULL, '', 'Live', '', 'DPF0304-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1207, 455, 'DPF0304-03', 'DPF0304', 'Nikunj', 'Pravin', 'Lalji', 164, NULL, '', 'M', 0, 25, NULL, '1990-10-23', NULL, 2, NULL, '280', '', 0, NULL, '9821113580', NULL, '<EMAIL>', 'Live', '', 'DPF0304-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1208, 456, 'DPF0305-01', 'DPF0305', 'Devkaben', 'Meghji', 'Shivji', 164, NULL, '', 'F', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0305-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1209, 456, 'DPF0305-02', 'DPF0305', 'Manilal', 'Meghji', 'Shivji', 164, NULL, '', 'M', 3, 25, NULL, '1958-12-30', NULL, 3, NULL, '261', '', 8, NULL, '9769062851', NULL, '', 'Live', '', 'DPF0305-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1210, 456, 'DPF0305-03', 'DPF0305', 'Manjulaben', 'Manilal', 'Meghji', 164, NULL, '', 'F', 0, 35, NULL, '1963-12-07', NULL, 3, NULL, '256', '', 0, NULL, '8652368166', NULL, '', 'Live', '', 'DPF0305-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1211, 456, 'DPF0305-04', 'DPF0305', 'Vivek', 'Manilal', 'Meghji', 164, NULL, '', 'M', 3, 15, NULL, '1986-11-17', NULL, 3, NULL, '214', '', 0, NULL, '8652146760', NULL, '', 'Live', '', 'DPF0305-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1212, 456, 'DPF0305-05', 'DPF0305', 'Nirmala', 'Vivek', 'Manilal', 164, NULL, '', 'F', 3, 37, NULL, '1987-08-26', NULL, 3, NULL, '214', '', 0, NULL, '8691898353', NULL, '', 'Live', '', 'DPF0305-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1213, 456, 'DPF0305-06', 'DPF0305', 'Daksh', 'Vivek', 'Manilal', 164, NULL, '', 'M', 0, 38, NULL, '2013-07-27', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPM001195.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1214, 456, 'DPF0305-07', 'DPF0305', 'Vinay', 'Manilal', 'Meghji', 164, NULL, '', 'M', 3, 15, NULL, '1993-04-25', NULL, 2, NULL, '216', '', 0, NULL, '8108863748', NULL, '', 'Live', '', 'DPF0305-07.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1215, 457, 'DPF0306-01', 'DPF0306', 'Khushal', 'Meghji', 'Shivji', 164, NULL, '', 'M', 5, 8, NULL, '1963-11-23', NULL, 3, NULL, '262', '', 2, NULL, '9892171255', NULL, '', 'Live', '', 'DPF0306-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1216, 457, 'DPF0306-02', 'DPF0306', 'Daksha', 'Khushal', 'Meghji', 164, NULL, '', 'F', 5, 17, NULL, '1965-11-07', NULL, 3, NULL, '214', '', 11, NULL, '8082430894', NULL, '', 'Live', NULL, 'DPF0306-02.jpg', 0, '', 0, 0, '', '1', NULL, '', 4, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1217, 457, 'DPF0306-03', 'DPF0306', 'Nirav', 'Khushal', 'Meghji', 164, NULL, '', 'M', 5, 22, NULL, '1991-01-12', NULL, 2, '0000-00-00', '1,271', '', 6, NULL, '9892437162', NULL, '<EMAIL>', 'Live', NULL, 'DPF0306-03.jpg', 1, 'LIC', 1, 1, '', '1', NULL, '', 1, 'nksavla91', '$2a$10$d3v6jIdKO29ZLp3mExhPc.RepPDnhw2rwd7XOV.U1dleggBMLOwFC', 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', '2021-03-21 12:05:59', 0, NULL, NULL),
(1218, 457, 'DPF0306-04', 'DPF0306', 'Ankita', 'Khushal', 'Meghji', 164, NULL, '', 'F', 5, 23, NULL, '1992-10-13', '2021-03-04', 2, NULL, '350', '', 0, NULL, '9867124756', NULL, '<EMAIL>', 'Death', '', 'DPF0306-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1219, 458, 'DPF0307-01', 'DPF0307', 'Paresh', 'Meghji', 'Shivji', 164, NULL, '', 'M', 1, 22, NULL, '1967-06-09', NULL, 3, NULL, '216', '', 2, NULL, '9904028159', NULL, '', 'Live', '', 'DPF0307-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1220, 458, 'DPF0307-02', 'DPF0307', 'Sapana', 'Paresh', 'Meghji', 164, NULL, '', 'F', 0, 28, NULL, '1974-01-27', NULL, 3, NULL, '262', '', 0, NULL, '9824577132', NULL, '', 'Live', '', 'DPF0307-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1221, 459, 'DPF0308-01', 'DPF0308', 'Hasmukh', 'Meghji', 'Shivji', 164, NULL, '', 'M', 3, 22, NULL, '1976-06-29', NULL, 3, NULL, '216', '', 2, NULL, '9820915086', NULL, '', 'Live', '', 'DPF0308-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1222, 459, 'DPF0308-02', 'DPF0308', 'Leena', 'Hasmukh', 'Meghji', 164, NULL, '', 'F', 5, 28, NULL, '1977-03-23', NULL, 3, NULL, '216', '', 0, NULL, '9167689309', NULL, '', 'Live', '', 'DPF0308-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1223, 459, 'DPF0308-03', 'DPF0308', 'Dhruv', 'Hasmukh', 'Meghji', 164, NULL, '', 'M', 5, 25, NULL, '2005-08-16', NULL, 2, NULL, '263', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0308-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1224, 460, 'DPF0309-01', 'DPF0309', 'Maniben', 'Kalyanji', 'Shivji', 164, NULL, '', 'F', 0, 22, NULL, '1939-12-31', NULL, 3, NULL, '268', '', 0, NULL, '9819120267', NULL, '', 'Live', '', 'DPF0309-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1225, 461, 'DPF0310-01', 'DPF0310', 'Ilaben', 'Jayantilal', 'Popatlal', 164, NULL, '', 'F', 5, 22, NULL, '1939-08-14', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0310-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1226, 462, 'DPF0311-01', 'DPF0311', 'Ramnik', 'Talakshi', 'Maiya', 164, NULL, '', 'M', 3, 22, NULL, '1953-09-12', NULL, 3, NULL, '259', '', 2, NULL, '9619580343', NULL, '<EMAIL>', 'Live', '', 'DPF0311-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1227, 462, 'DPF0311-02', 'DPF0311', 'Hemlataben', 'Ramnik', 'Talakshi', 164, NULL, '', 'F', 7, 28, NULL, '1953-02-27', NULL, 3, NULL, '24', '', 0, NULL, '9820580343', NULL, '', 'Live', '', 'DPF0311-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1228, 462, 'DPF0311-03', 'DPF0311', 'Jinal', 'Ramnik', 'Talakshi', 164, NULL, '', 'F', 3, 6, NULL, '1978-12-04', NULL, 2, NULL, '351', '', 0, NULL, '9820980343', NULL, '<EMAIL>', 'Live', '', 'DPF0311-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1229, 462, 'DPF0311-04', 'DPF0311', 'Pallavi', 'Ramnik', 'Talakshi', 164, NULL, '', 'F', 7, 6, NULL, '1980-07-05', NULL, 2, NULL, '351', '', 0, NULL, '9769980343', NULL, '<EMAIL>', 'Live', '', 'DPF0311-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1230, 462, 'DPF0311-05', 'DPF0311', 'Nenbai', 'Talakshi', 'Maiya', 164, NULL, '', 'F', 0, 17, NULL, '0000-00-00', NULL, 3, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0311-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1231, 463, 'DPF0312-01', 'DPF0312', 'Mahesh', 'Talakshi', 'Maiya', 164, NULL, '', 'M', 3, 22, NULL, '1962-05-13', NULL, 3, NULL, '216', '', 2, NULL, '9820518661', NULL, '<EMAIL>', 'Live', '', 'DPF0312-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1232, 463, 'DPF0312-02', 'DPF0312', 'Hansa', 'Mahesh', 'Talakshi', 164, NULL, '', 'F', 5, 28, NULL, '1963-06-23', NULL, 3, NULL, '217', '', 0, NULL, '9821609232', NULL, '<EMAIL>', 'Live', '', 'DPF0312-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1233, 463, 'DPF0312-03', 'DPF0312', 'Heny', 'Mahesh', 'Talakshi', 164, NULL, '', 'F', 3, 6, NULL, '1989-11-19', NULL, 2, NULL, '327', '', 0, NULL, '9820518331', NULL, '<EMAIL>', 'Live', '', 'DPF0312-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1234, 463, 'DPF0312-04', 'DPF0312', 'Shreya', 'Mahesh', 'Talakshi', 164, NULL, '', 'F', 3, 6, NULL, '1994-09-18', NULL, 2, NULL, '352', '', 0, NULL, '7738129019', NULL, '', 'Live', '', 'DPF0312-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1235, 464, 'DPF0313-01', 'DPF0313', 'Kokilaben', 'Vipin', 'Khimji', 164, NULL, '', 'F', 5, 22, NULL, '1971-05-28', NULL, 3, NULL, '262', '', 0, NULL, '8080294001', NULL, '', 'Live', '', 'DPF0313-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1236, 464, 'DPF0313-02', 'DPF0313', 'Yashvi', 'Vipin', 'Khimji', 164, NULL, '', 'F', 3, 6, NULL, '1993-01-20', NULL, 2, NULL, '353', '', 0, NULL, '8108738751', NULL, '<EMAIL>', 'Live', '', 'DPF0313-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1237, 464, 'DPF0313-03', 'DPF0313', 'Pallavi', 'Vipin', 'Khimji', 164, NULL, '', 'F', 3, 6, NULL, '1995-12-17', NULL, 2, NULL, '0', '', 0, NULL, '7666854711', NULL, '', 'Live', '', 'DPF0313-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1238, 464, 'DPF0313-04', 'DPF0313', 'Kartik', 'Vipin', 'Khimji', 164, NULL, '', 'M', 3, 25, NULL, '1997-02-18', NULL, 2, NULL, '217', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0313-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1239, 465, 'DPF0314-01', 'DPF0314', 'Jayesh', 'Khimji', '', 164, NULL, '', 'M', 3, 22, NULL, '1969-03-13', NULL, 3, NULL, '259', '', 0, NULL, '9424604038', NULL, '<EMAIL>', 'Live', '', 'DPF0314-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1240, 465, 'DPF0314-02', 'DPF0314', 'Monica', 'Jayesh', 'Khimji', 164, NULL, '', 'F', 3, 28, NULL, '1974-09-04', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0314-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1241, 465, 'DPF0314-03', 'DPF0314', 'Mahi', 'Jayesh', 'Khimji', 164, NULL, '', 'F', 3, 6, NULL, '2005-11-25', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0314-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1242, 465, 'DPF0314-04', 'DPF0314', 'Shivika', 'Jayesh', 'Khimji', 164, NULL, '', 'F', 3, 6, NULL, '2008-03-06', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0314-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1243, 465, 'DPF0314-05', 'DPF0314', 'Shivansh', 'Jayesh', 'Khimji', 164, NULL, '', 'M', 3, 25, NULL, '2008-03-06', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0314-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1244, 466, 'DPF0315-01', 'DPF0315', 'Pathik', 'Bhogilal', 'Khimji', 164, NULL, '', 'M', 3, 22, NULL, '1985-07-24', NULL, 3, NULL, '148', '', 2, NULL, '8140034656', NULL, '<EMAIL>', 'Live', '', 'DPF0315-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1245, 466, 'DPF0315-02', 'DPF0315', 'Vidhisa', 'Pathik', 'Bhogilal', 164, NULL, '', 'F', 3, 28, NULL, '1985-11-01', NULL, 3, NULL, '148', '', 0, NULL, '9978173793', NULL, '', 'Live', '', 'DPF0315-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1246, 466, 'DPF0315-03', 'DPF0315', 'Manjulaben', 'Bhogilal', 'Khimji', 164, NULL, '', 'F', 5, 17, NULL, '1963-08-20', NULL, 3, NULL, '0', '', 0, NULL, '9978173793', NULL, '', 'Live', '', 'DPF0315-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1247, 467, 'DPF0316-01', 'DPF0316', 'Ramesh', 'Lakhamshi', 'Gangji', 164, NULL, '', 'M', 3, 22, NULL, '1956-06-17', NULL, 3, NULL, '24', '', 0, NULL, '9869410599', NULL, '<EMAIL>', 'Live', '', 'DPF0316-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1248, 467, 'DPF0316-02', 'DPF0316', 'Deenaben', 'Ramesh', 'Lakhamshi', 164, NULL, '', 'F', 3, 28, NULL, '1958-06-10', NULL, 3, NULL, '214', '', 0, NULL, '9969779480', NULL, '', 'Live', '', 'DPF0316-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1249, 467, 'DPF0316-03', 'DPF0316', 'Gaurav', 'Ramesh', 'Lakhamshi', 164, NULL, '', 'M', 3, 25, NULL, '1988-12-14', NULL, 3, NULL, '259', '', 0, NULL, '9619410933', NULL, '', 'Live', '', 'DPF0316-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1250, 467, 'DPF0316-04', 'DPF0316', 'Mital', 'Gaurav', 'Ramesh', 164, NULL, '', 'F', 3, 35, NULL, '1987-11-16', NULL, 3, NULL, '259', '', 0, NULL, '9769234366', NULL, '', 'Live', '', 'DPF0316-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1251, 468, 'DPF0317-01', 'DPF0317', 'Rajesh', 'Shamji', 'Gangji', 164, NULL, '', 'M', 0, 22, NULL, '1971-10-09', NULL, 3, NULL, '216', '', 2, NULL, '9323652360', NULL, '', 'Live', '', 'DPF0317-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1252, 468, 'DPF0317-02', 'DPF0317', 'Jayshree', 'Rajesh', 'Shamji', 164, NULL, '', 'F', 5, 28, NULL, '1973-09-10', NULL, 3, NULL, '214', '', 0, NULL, '9323846528', NULL, '', 'Live', '', 'DPF0317-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1253, 468, 'DPF0317-03', 'DPF0317', 'Pankti', 'Rajesh', 'Shamji', 164, NULL, '', 'F', 0, 6, NULL, '1998-02-15', NULL, 2, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0317-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1254, 468, 'DPF0317-04', 'DPF0317', 'Pratham', 'Rajesh', 'Shamji', 164, NULL, '', 'M', 0, 25, NULL, '2000-11-12', NULL, 2, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0317-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1255, 468, 'DPF0317-05', 'DPF0317', 'Shamji', 'Shamji', 'Gangji', 164, NULL, '', 'M', 0, 8, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0317-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1256, 468, 'DPF0317-06', 'DPF0317', 'Vimlaben', 'Shamji', 'Gangji', 164, NULL, '', 'F', 0, 17, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0317-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1257, 469, 'DPF0318-01', 'DPF0318', 'Ratilal', 'Gangji', 'Narshi', 164, NULL, '', 'M', 3, 22, NULL, '1947-05-21', NULL, 3, NULL, '216', '', 2, NULL, '9819181755', NULL, '<EMAIL>', 'Live', '', 'DPF0318-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1258, 469, 'DPF0318-02', 'DPF0318', 'Rekhaben', 'Ratilal', 'Gangji', 164, NULL, '', 'F', 3, 28, NULL, '1954-09-23', NULL, 3, NULL, '216', '', 0, NULL, '9819625044', NULL, '', 'Live', '', 'DPF0318-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1259, 469, 'DPF0318-03', 'DPF0318', 'Mehul', 'Ratilal', 'Gangji', 164, NULL, '', 'M', 3, 25, NULL, '1979-11-13', NULL, 3, NULL, '216', '', 0, NULL, '9987844758', NULL, '<EMAIL>', 'Live', '', 'DPF0318-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1260, 469, 'DPF0318-04', 'DPF0318', 'Dhiral', 'Mehul', 'Ratilal', 164, NULL, '', 'F', 3, 35, NULL, '1982-05-11', NULL, 3, NULL, '259', '', 0, NULL, '9892273937', NULL, '<EMAIL>', 'Live', '', 'DPF0318-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1261, 469, 'DPF0318-05', 'DPF0318', 'Sanvi', 'Mehul', 'Ratilal', 164, NULL, '', 'F', 3, 10, NULL, '2009-08-09', NULL, 2, NULL, '136', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0318-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1262, 470, 'DPF0319-01', 'DPF0319', 'Jasvant', 'Ratilal', 'Gangji', 164, NULL, '', 'M', 5, 22, NULL, '1953-09-19', NULL, 3, NULL, '217', '', 0, NULL, '9920545593', NULL, '', 'Live', '', 'DPF0319-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1263, 470, 'DPF0319-02', 'DPF0319', 'Pushpa', 'Jasvant', 'Ratilal', 164, NULL, '', 'F', 5, 28, NULL, '1959-07-12', NULL, 3, NULL, '216', '', 0, NULL, '9920181765', NULL, '', 'Live', '', 'DPF0319-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1264, 470, 'DPF0319-03', 'DPF0319', 'Feni', 'Jasvant', 'Ratilal', 164, NULL, '', 'F', 5, 6, NULL, '1991-01-14', NULL, 2, NULL, '354', '', 0, NULL, '9833225599', NULL, '<EMAIL>', 'Live', '', 'DPF0319-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1265, 471, 'DPF0320-01', 'DPF0320', 'Lakhmichand', 'Bhavanji', 'Devraj', 164, NULL, '', 'M', 0, 22, NULL, '1944-10-15', NULL, 3, NULL, '257', '', 2, NULL, '9920600074', NULL, '', 'Live', '', 'DPF0320-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1266, 471, 'DPF0320-02', 'DPF0320', 'Kalaben', 'Lakhmichand', 'Bhavanji', 164, NULL, '', 'F', 0, 28, NULL, '0000-00-00', NULL, 3, NULL, '256', '', 0, NULL, '9768289255', NULL, '', 'Live', '', 'DPF0320-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1267, 471, 'DPF0320-03', 'DPF0320', 'Meeta', 'Lakhmichand', 'Bhavanji', 164, NULL, '', 'F', 0, 6, NULL, '1980-05-22', NULL, 0, NULL, '214', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0320-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1268, 472, 'DPF0321-01', 'DPF0321', 'Neetaben', 'Nemji', 'Bhavanji', 164, NULL, '', 'F', 0, 22, NULL, '1962-06-28', NULL, 3, NULL, '216', '', 0, NULL, '9324395892', NULL, '', 'Live', '', 'DPF0321-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1269, 472, 'DPF0321-02', 'DPF0321', 'Nikunj', 'Nemji', 'Bhavanji', 164, NULL, '', 'M', 0, 25, NULL, '1996-05-05', NULL, 2, NULL, '214', '', 0, NULL, '9702011046', NULL, '<EMAIL>', 'Live', '', 'DPF0321-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1270, 472, 'DPF0321-03', 'DPF0321', 'Heeral', 'Nemji', 'Bhavanji', 164, NULL, '', 'F', 0, 6, NULL, '2000-08-01', NULL, 2, NULL, '261', '', 0, NULL, '9324395892', NULL, '', 'Live', '', 'DPF0321-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1271, 473, 'DPF0322-01', 'DPF0322', 'Dhiraj', 'Hirji', 'Devraj', 164, NULL, '', 'M', 5, 22, NULL, '1954-11-29', NULL, 3, NULL, '216', '', 0, NULL, '9323548008', NULL, '', 'Live', '', 'DPF0322-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1272, 473, 'DPF0322-02', 'DPF0322', 'Chandrikaben', 'Dhiraj', 'Hirji', 164, NULL, '', 'F', 5, 28, NULL, '1959-08-21', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0322-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1273, 473, 'DPF0322-03', 'DPF0322', 'Nimesh', 'Dhiraj', 'Hirji', 164, NULL, '', 'M', 5, 25, NULL, '1982-07-04', NULL, 3, NULL, '148', '', 0, NULL, '9167827410', NULL, '<EMAIL>', 'Live', '', 'DPF0322-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1274, 473, 'DPF0322-04', 'DPF0322', 'Urvi', 'Nimesh', 'Dhiraj', 164, NULL, '', 'F', 5, 35, NULL, '1983-09-27', NULL, 3, NULL, '285', '', 0, NULL, '9869929422', NULL, '', 'Live', '', 'DPF0322-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1275, 473, 'DPF0322-05', 'DPF0322', 'Jiya', 'Nimesh', 'Dhiraj', 164, NULL, '', 'F', 5, 10, NULL, '2011-10-07', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0322-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1276, 473, 'DPF0322-06', 'DPF0322', 'Ferin', 'Dhiraj', 'Hirji', 164, NULL, '', 'F', 5, 6, NULL, '1985-07-29', NULL, 2, NULL, '294', '', 0, NULL, '9167575112', NULL, '', 'Live', '', 'DPF0322-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1277, 474, 'DPF0323-01', 'DPF0323', 'Navinchandra', 'Hirji', 'Devraj', 164, NULL, '', 'M', 5, 22, NULL, '1959-05-23', NULL, 3, NULL, '216', '', 0, NULL, '9821385235', NULL, '', 'Live', '', 'DPF0323-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1278, 474, 'DPF0323-02', 'DPF0323', 'Meena', 'Navinchandra', 'Hirji', 164, NULL, '', 'F', 5, 28, NULL, '1961-08-14', NULL, 3, NULL, '216', '', 0, NULL, '8082667743', NULL, '', 'Live', '', 'DPF0323-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1279, 474, 'DPF0323-03', 'DPF0323', 'Keval', 'Navinchandra', 'Hirji', 164, NULL, '', 'M', 5, 25, NULL, '1989-05-10', NULL, 2, NULL, '148', '', 0, NULL, '9833661856', NULL, '<EMAIL>', 'Live', '', 'DPF0323-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1280, 474, 'DPF0323-04', 'DPF0323', 'Komal', 'Navinchandra', 'Hirji', 164, NULL, '', 'F', 5, 6, NULL, '1993-04-27', NULL, 2, NULL, '355', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0323-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1281, 475, 'DPF0324-01', 'DPF0324', 'Popatlal', 'Tejshi', 'Hansraj', 164, NULL, '', 'M', 3, 22, NULL, '1947-05-16', NULL, 3, NULL, '216', '', 2, NULL, '23080652', NULL, '', 'Live', '', 'DPF0324-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1282, 475, 'DPF0324-02', 'DPF0324', 'Jayvantiben', 'Popatlal', 'Tejshi', 164, NULL, '', 'F', 4, 28, NULL, '1950-04-10', NULL, 3, NULL, '216', '', 0, NULL, '23053998', NULL, '', 'Live', '', 'DPF0324-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1283, 475, 'DPF0324-03', 'DPF0324', 'Ashwin', 'Popatlal', 'Tejshi', 164, NULL, '', 'M', 4, 25, NULL, '1976-10-14', NULL, 3, NULL, '216', '', 0, NULL, '9819298729', NULL, '', 'Live', '', 'DPF0324-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1284, 475, 'DPF0324-04', 'DPF0324', 'Mittal', 'Ashwin', 'Popatlal', 164, NULL, '', 'F', 5, 35, NULL, '1978-11-23', NULL, 3, NULL, '356', '', 0, NULL, '9167368379', NULL, '', 'Live', '', 'DPF0324-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1285, 475, 'DPF0324-05', 'DPF0324', 'Parav', 'Ashwin', 'Popatlal', 164, NULL, '', 'M', 0, 15, NULL, '2009-11-12', NULL, 2, NULL, '136', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0324-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1286, 476, 'DPF0325-01', 'DPF0325', 'Amrutlal', 'Tejshi', 'Hansraj', 164, NULL, '', 'M', 1, 22, NULL, '1952-06-22', NULL, 3, NULL, '214', '', 2, NULL, '9833444931', NULL, '', 'Live', '', 'DPF0325-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1287, 476, 'DPF0325-02', 'DPF0325', 'Bharatiben', 'Amrutlal', 'Tejshi', 164, NULL, '', 'F', 3, 28, NULL, '1957-05-17', NULL, 3, NULL, '214', '', 0, NULL, '9867205733', NULL, '', 'Live', '', 'DPF0325-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1288, 476, 'DPF0325-03', 'DPF0325', 'Pankaj', 'Amrutlal', 'Tejshi', 164, NULL, '', 'M', 3, 25, NULL, '1984-08-29', NULL, 3, NULL, '259', '', 0, NULL, '9819884519', NULL, '<EMAIL>', 'Live', '', 'DPF0325-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1289, 476, 'DPF0325-04', 'DPF0325', 'Khushbu', 'Pankaj', 'Amrutlal', 164, NULL, '', 'F', 1, 35, NULL, '1985-06-06', NULL, 3, NULL, '259', '', 0, NULL, '9769048464', NULL, '<EMAIL>', 'Live', '', 'DPF0325-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1290, 477, 'DPF0326-01', 'DPF0326', 'Dhiraj', 'Tejshi', 'Hansraj', 164, NULL, '', 'M', 3, 22, NULL, '1957-02-19', NULL, 3, NULL, '216', '', 2, NULL, '9820337040', NULL, '', 'Live', '', 'DPF0326-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1291, 477, 'DPF0326-02', 'DPF0326', 'Chandrikben', 'Tejshi', 'Hansraj', 164, NULL, '', 'F', 5, 28, NULL, '1961-11-01', NULL, 3, NULL, '216', '', 0, NULL, '9167842845', NULL, '', 'Live', '', 'DPF0326-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1292, 477, 'DPF0326-03', 'DPF0326', 'Viral', 'Tejshi', 'Hansraj', 164, NULL, '', 'M', 5, 25, NULL, '1988-09-30', NULL, 2, NULL, '271', '', 0, NULL, '9833472443', NULL, '<EMAIL>', 'Live', '', 'DPF0326-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1293, 478, 'DPF0327-01', 'DPF0327', 'Khimji', 'Nanji', 'Devraj', 164, NULL, '', 'M', 3, 22, NULL, '1938-10-31', NULL, 3, NULL, '216', '', 2, NULL, '', NULL, '', 'Live', '', 'DPF0327-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1294, 478, 'DPF0327-02', 'DPF0327', 'Chanchalben', 'Khimji', 'Nanji', 164, NULL, '', 'F', 7, 28, NULL, '1938-11-30', NULL, 3, NULL, '258', '', 0, NULL, '9619763907', NULL, '', 'Live', '', 'DPF0327-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1295, 478, 'DPF0327-03', 'DPF0327', 'Ramesh', 'Khimji', 'Nanji', 164, NULL, '', 'M', 3, 25, NULL, '1962-10-02', NULL, 3, NULL, '216', '', 0, NULL, '9833999055', NULL, '', 'Live', '', 'DPF0327-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1296, 478, 'DPF0327-04', 'DPF0327', 'Chetna', 'Ramesh', 'Khimji', 164, NULL, '', 'F', 3, 35, NULL, '1964-07-28', NULL, 3, NULL, '259', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0327-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1297, 478, 'DPF0327-05', 'DPF0327', 'Mehul', 'Ramesh', 'Khimji', 164, NULL, '', 'M', 3, 15, NULL, '1988-12-02', NULL, 2, NULL, '278', '', 0, NULL, '9820511007', NULL, '', 'Live', '', 'DPF0327-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1298, 479, 'DPF0328-01', 'DPF0328', 'Nemji', 'Ravji', 'Devraj', 164, NULL, '', 'M', 5, 22, NULL, '1940-09-07', NULL, 3, NULL, '262', '', 2, NULL, '', NULL, '', 'Live', '', 'DPF0328-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1299, 479, 'DPF0328-02', 'DPF0328', 'Shantaben', 'Nemji', 'Ravji', 164, NULL, '', 'F', 5, 28, NULL, '1946-10-16', NULL, 3, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0328-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1300, 479, 'DPF0328-03', 'DPF0328', 'Manoj', 'Nemji', 'Ravji', 164, NULL, '', 'M', 5, 25, NULL, '1972-07-15', NULL, 3, NULL, '259', '', 0, NULL, '9967963123', NULL, '<EMAIL>', 'Live', '', 'DPF0328-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1301, 479, 'DPF0328-04', 'DPF0328', 'Praneeta', 'Manoj', 'Nemji', 164, NULL, '', 'F', 5, 35, NULL, '1978-10-17', NULL, 3, NULL, '259', '', 0, NULL, '8237322732', NULL, '<EMAIL>', 'Live', '', 'DPF0328-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1302, 479, 'DPF0328-05', 'DPF0328', 'Ujjwal', 'Manoj', 'Nemji', 164, NULL, '', 'M', 5, 15, NULL, '2006-05-28', NULL, 2, NULL, '268', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0328-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1303, 479, 'DPF0328-06', 'DPF0328', 'Jaini', 'Manoj', 'Nemji', 164, NULL, '', 'F', 5, 10, NULL, '2012-07-09', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0328-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1304, 480, 'DPF0329-01', 'DPF0329', 'Lakhamshi', 'Ravji', 'Devraj', 164, NULL, '', 'M', 0, 22, NULL, '1942-11-26', NULL, 3, NULL, '216', '', 2, NULL, '8879529544', NULL, '', 'Live', '', 'DPF0329-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1305, 480, 'DPF0329-02', 'DPF0329', 'Bhanuben', 'Lakhamshi', 'Ravji', 164, NULL, '', 'F', 3, 28, NULL, '1948-01-25', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0329-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1306, 480, 'DPF0329-03', 'DPF0329', 'Prashant', 'Lakhamshi', 'Ravji', 164, NULL, '', 'M', 5, 25, NULL, '1974-06-27', NULL, 3, NULL, '271', '', 0, NULL, '', NULL, '<EMAIL>', 'Live', '', 'DPF0329-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1307, 480, 'DPF0329-04', 'DPF0329', 'Jasmine', 'Prashant', 'Lakhamshi', 164, NULL, '', 'F', 5, 35, NULL, '1980-04-10', NULL, 3, NULL, '24', '', 0, NULL, '', NULL, '<EMAIL>', 'Live', '', 'DPF0329-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1308, 480, 'DPF0329-05', 'DPF0329', 'Dharmil', 'Prashant', 'Lakhamshi', 164, NULL, '', 'M', 5, 15, NULL, '2006-06-13', NULL, 2, NULL, '268', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0329-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1309, 480, 'DPF0329-06', 'DPF0329', 'Ruthwik', 'Prashant', 'Lakhamshi', 164, NULL, '', 'M', 5, 15, NULL, '2011-07-13', NULL, 2, NULL, '196', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0329-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1310, 480, 'DPF0329-07', 'DPF0329', 'Heemanshu', 'Lakhamshi', 'Ravji', 164, NULL, '', 'M', 4, 25, NULL, '1975-11-25', NULL, 3, NULL, '225', '', 0, NULL, '9820123913', NULL, '<EMAIL>', 'Live', '', 'DPF0329-07.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1311, 480, 'DPF0329-08', 'DPF0329', 'Heena', 'Heemanshu', 'Lakhamshi', 164, NULL, '', 'F', 3, 35, NULL, '1977-05-24', NULL, 3, NULL, '225', '', 0, NULL, '9322505056', NULL, '<EMAIL>', 'Live', '', 'DPF0329-08.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1312, 480, 'DPF0329-09', 'DPF0329', 'Dhruvil', 'Heemanshu', 'Lakhamshi', 164, NULL, '', 'M', 3, 15, NULL, '2006-06-13', NULL, 2, NULL, '268', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0329-09.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1313, 480, 'DPF0329-10', 'DPF0329', 'Nivan', 'Heemanshu', 'Lakhamshi', 164, NULL, '', 'M', 3, 15, NULL, '2009-10-20', NULL, 2, NULL, '136', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0329-10.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1314, 481, 'DPF0330-01', 'DPF0330', 'Murji', 'Shivji', 'Korshi', 164, NULL, '', 'M', 3, 22, NULL, '1942-03-09', NULL, 3, NULL, '256', '', 2, NULL, '', NULL, '', 'Live', '', 'DPF0330-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1315, 481, 'DPF0330-02', 'DPF0330', 'Anil', 'Murji', 'Shivji', 164, NULL, '', 'M', 3, 25, NULL, '1966-12-23', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0330-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1316, 481, 'DPF0330-03', 'DPF0330', 'Sheela', 'Anil', 'Murji', 164, NULL, '', 'F', 7, 35, NULL, '1970-05-01', NULL, 3, NULL, '19', '', 0, NULL, '9920478953', NULL, '', 'Live', '', 'DPF0330-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1317, 481, 'DPF0330-04', 'DPF0330', 'Harsh', 'Anil', 'Murji', 164, NULL, '', 'M', 7, 15, NULL, '1992-04-12', NULL, 2, NULL, '357', '', 0, NULL, '9867064242', NULL, '<EMAIL>', 'Live', '', 'DPF0330-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1318, 481, 'DPF0330-05', 'DPF0330', 'Hiten', 'Murji', 'Shivji', 164, NULL, '', 'M', 3, 25, NULL, '1968-05-05', NULL, 2, NULL, '358', '', 0, NULL, '9821423451', NULL, '<EMAIL>', 'Live', '', 'DPF0330-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1319, 482, 'DPF0331-01', 'DPF0331', 'Manish', 'Murji', 'Shivji', 164, NULL, '', 'M', 5, 22, NULL, '1972-03-26', NULL, 3, NULL, '259', '', 2, NULL, '9869680362', NULL, '', 'Live', '', 'DPF0331-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1320, 482, 'DPF0331-02', 'DPF0331', 'Leena', 'Manish', 'Murji', 164, NULL, '', 'F', 5, 28, NULL, '1975-05-10', NULL, 3, NULL, '259', '', 0, NULL, '9969688382', NULL, '', 'Live', '', 'DPF0331-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1321, 482, 'DPF0331-03', 'DPF0331', 'Umang', 'Manish', 'Murji', 164, NULL, '', 'M', 5, 25, NULL, '2000-10-16', NULL, 2, NULL, '261', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0331-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1322, 483, 'DPF0332-01', 'DPF0332', 'Sanjay', 'Murji', 'Shivji', 164, NULL, '', 'M', 3, 22, NULL, '1970-01-10', NULL, 3, NULL, '35', '', 2, NULL, '9323866244', NULL, '<EMAIL>', 'Live', '', 'DPF0332-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1323, 483, 'DPF0332-02', 'DPF0332', 'Rupal', 'Sanjay', 'Murji', 164, NULL, '', 'F', 5, 28, NULL, '1970-11-28', NULL, 3, NULL, '259', '', 0, NULL, '9869817822', NULL, '', 'Live', '', 'DPF0332-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1324, 483, 'DPF0332-03', 'DPF0332', 'Vidhi', 'Sanjay', 'Murji', 164, NULL, '', 'F', 5, 6, NULL, '1998-09-11', NULL, 2, NULL, '216', '', 0, NULL, '9821031695', NULL, '<EMAIL>', 'Live', '', 'DPF0332-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1325, 483, 'DPF0332-04', 'DPF0332', 'Harshal', 'Sanjay', 'Murji', 164, NULL, '', 'M', 3, 25, NULL, '2002-12-22', NULL, 2, NULL, '282', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0332-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1326, 484, 'DPF0333-01', 'DPF0333', 'Devchand', 'Shivji', 'Korshi', 164, NULL, '', 'M', 5, 22, NULL, '1949-03-01', NULL, 3, NULL, '216', '', 2, NULL, '9820231658', NULL, '<EMAIL>', 'Live', '', 'DPF0333-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1327, 484, 'DPF0333-02', 'DPF0333', 'Pushpaben', 'Devchand', 'Shivji', 164, NULL, '', 'F', 3, 28, NULL, '1953-03-29', NULL, 3, NULL, '216', '', 0, NULL, '9969597244', NULL, '', 'Live', '', 'DPF0333-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1328, 484, 'DPF0333-03', 'DPF0333', 'Beena', 'Devchand', 'Shivji', 164, NULL, '', 'F', 3, 6, NULL, '1977-11-25', NULL, 2, NULL, '19', '', 0, NULL, '9029396444', NULL, '', 'Live', '', 'DPF0333-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1329, 484, 'DPF0333-04', 'DPF0333', 'Vikash', 'Devchand', 'Shivji', 164, NULL, '', 'M', 3, 25, NULL, '1979-10-10', NULL, 2, NULL, '359', '', 0, NULL, '9820231658', NULL, '<EMAIL>', 'Live', '', 'DPF0333-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1330, 485, 'DPF0334-01', 'DPF0334', 'Devchand', 'Vasanji', 'Narshi', 164, NULL, '', 'M', 5, 22, NULL, '1953-07-04', NULL, 3, NULL, '256', '', 2, NULL, '9220264633', NULL, '', 'Live', '', 'DPF0334-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1331, 485, 'DPF0334-02', 'DPF0334', 'Gunvantiben', 'Devchand', 'Vasanji', 164, NULL, '', 'F', 5, 28, NULL, '1962-01-01', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0334-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1332, 485, 'DPF0334-03', 'DPF0334', 'Dipti', 'Devchand', 'Vasanji', 164, NULL, '', 'F', 0, 6, NULL, '1985-01-01', NULL, 2, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0334-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1333, 485, 'DPF0334-04', 'DPF0334', 'Pritesh', 'Devchand', 'Vasanji', 164, NULL, '', 'M', 0, 25, NULL, '1986-01-04', NULL, 3, NULL, '19', '', 0, NULL, '9004690054', NULL, '', 'Live', '', 'DPF0334-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1334, 485, 'DPF0334-05', 'DPF0334', 'Chhaya', 'Pritesh', 'Devchand', 164, NULL, '', 'F', 0, 35, NULL, '1988-05-03', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0334-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1335, 486, 'DPF0335-01', 'DPF0335', 'Ranjanben', 'Pravin', 'Vasanji', 164, NULL, '', 'F', 5, 22, NULL, '1960-12-09', NULL, 3, NULL, '216', '', 2, NULL, '9323010987', NULL, '', 'Live', '', 'DPF0335-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1336, 486, 'DPF0335-02', 'DPF0335', 'Neha', 'Pravin', 'Vasanji', 164, NULL, '', 'F', 5, 6, NULL, '1987-06-12', NULL, 2, NULL, '19', '', 0, NULL, '9323945336', NULL, '<EMAIL>', 'Live', '', 'DPF0335-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1337, 486, 'DPF0335-03', 'DPF0335', 'Viral', 'Pravin', 'Vasanji', 164, NULL, '', 'M', 5, 25, NULL, '1990-06-20', NULL, 2, NULL, '360', '', 0, NULL, '9870808042', NULL, '<EMAIL>', 'Live', '', 'DPF0335-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1338, 487, 'DPF0336-01', 'DPF0336', 'Keval', 'Vasanji', 'Narshi', 164, NULL, '', 'M', 5, 22, NULL, '1966-05-23', NULL, 3, NULL, '216', '', 2, NULL, '9638487015', NULL, '<EMAIL>', 'Live', '', 'DPF0336-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1339, 487, 'DPF0336-02', 'DPF0336', 'Jayshree', 'Keval', 'Vasanji', 164, NULL, '', 'F', 5, 28, NULL, '1967-03-22', NULL, 3, NULL, '256', '', 0, NULL, '9427656443', NULL, '', 'Live', '', 'DPF0336-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1340, 487, 'DPF0336-03', 'DPF0336', 'Nirjara', 'Keval', 'Vasanji', 164, NULL, '', 'F', 7, 6, NULL, '2007-02-01', NULL, 2, NULL, '268', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0336-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1341, 488, 'DPF0337-01', 'DPF0337', 'Dilip', 'Vasanji', 'Narshi', 164, NULL, '', 'M', 5, 22, NULL, '1962-01-13', NULL, 3, NULL, '261', '', 2, NULL, '9870626343', NULL, '', 'Live', '', 'DPF0337-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1342, 488, 'DPF0337-02', 'DPF0337', 'Beena', 'Dilip', 'Vasanji', 164, NULL, '', 'F', 5, 28, NULL, '1964-02-21', NULL, 3, NULL, '216', '', 0, NULL, '9870504890', NULL, '', 'Live', '', 'DPF0337-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1343, 488, 'DPF0337-03', 'DPF0337', 'Charmi', 'Dilip', 'Vasanji', 164, NULL, '', 'F', 5, 6, NULL, '1994-02-14', NULL, 2, NULL, '259', '', 0, NULL, '8082764214', NULL, '<EMAIL>', 'Live', '', 'DPF0337-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1344, 488, 'DPF0337-04', 'DPF0337', 'Urmi', 'Dilip', 'Vasanji', 164, NULL, '', 'F', 5, 6, NULL, '1999-10-26', NULL, 2, NULL, '262', '', 0, NULL, '9664863792', NULL, '', 'Live', '', 'DPF0337-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1345, 489, 'DPF0338-01', 'DPF0338', 'Hasmukh', 'Umarshi (mangal)', 'Narshi', 164, NULL, '', 'M', 5, 22, NULL, '1969-07-17', NULL, 3, NULL, '214', '', 2, NULL, '9619127393', NULL, '', 'Live', '', 'DPF0338-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1346, 489, 'DPF0338-02', 'DPF0338', 'Harsha', 'Hasmukh', 'Umarshi (mangal)', 164, NULL, '', 'F', 3, 28, NULL, '1975-03-23', NULL, 3, NULL, '216', '', 0, NULL, '9220968145', NULL, '', 'Live', '', 'DPF0338-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1347, 489, 'DPF0338-03', 'DPF0338', 'Nikhil', 'Hasmukh', 'Umarshi (mangal)', 164, NULL, '', 'M', 5, 25, NULL, '1997-11-03', NULL, 2, NULL, '361', '', 0, NULL, '8454090899', NULL, '', 'Live', '', 'DPF0338-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1348, 489, 'DPF0338-04', 'DPF0338', 'Vatsal', 'Hasmukh', 'Umarshi (mangal)', 164, NULL, '', 'M', 3, 25, NULL, '2002-10-25', NULL, 2, NULL, '282', '', 0, NULL, '8451865086', NULL, '', 'Live', '', 'DPF0338-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1349, 490, 'DPF0339-01', 'DPF0339', 'Nirmalaben', 'Umarshi', 'Narshi', 164, NULL, '', 'F', 5, 22, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0339-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1350, 490, 'DPF0339-02', 'DPF0339', 'Harkhchand', 'Umarshi', 'Narshi', 164, NULL, '', 'M', 5, 25, NULL, '1973-11-16', NULL, 3, NULL, '361', '', 0, NULL, '9920074221', NULL, '', 'Live', '', 'DPF0339-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL);
INSERT INTO `family_member` (`id`, `family_id`, `member_no`, `family_no`, `first_name`, `second_name`, `third_name`, `surname_id`, `other_surname_details`, `regd_id`, `sex`, `blood_id`, `relation_id`, `other_relation_details`, `dob`, `dod`, `marriage_type`, `dom`, `education_id`, `other_education_details`, `occupation_id`, `other_occupation_details`, `contact`, `altcontact`, `email`, `live_type`, `member_type`, `image`, `life_insurance`, `life_insurance_text`, `medical_insurance`, `sanjeevni`, `medical_insurance_text`, `sports_id`, `other_sports_details`, `achivements`, `dharmik_id`, `username`, `password`, `fm_status`, `old_value`, `new_value`, `merge_status`, `merge_flag`, `merge_data`, `merge_user_data`, `added_on`, `updated_on`, `deleted`, `delete_reason`, `deleted_on`) VALUES
(1351, 490, 'DPF0339-03', 'DPF0339', 'Hiral', 'Harkhchand', 'Umarshi', 164, NULL, '', 'F', 7, 35, NULL, '1980-02-01', NULL, 3, NULL, '205', '', 0, NULL, '9833856117', NULL, '', 'Live', '', 'DPF0339-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1352, 490, 'DPF0339-04', 'DPF0339', 'Moksh', 'Harkhchand', 'Umarshi', 164, NULL, '', 'M', 3, 15, NULL, '2003-05-11', NULL, 2, NULL, '257', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0339-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1353, 490, 'DPF0339-05', 'DPF0339', 'Tirtha', 'Harkhchand', 'Umarshi', 164, NULL, '', 'F', 1, 10, NULL, '2008-10-29', NULL, 2, NULL, '0', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0339-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1354, 491, 'DPF0340-01', 'DPF0340', 'Laxmichand', 'Velji', '', 302, NULL, '', 'M', 0, 22, NULL, '0000-00-00', NULL, 3, NULL, '263', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0340-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1355, 491, 'DPF0340-02', 'DPF0340', 'Lilavantiben', 'Laxmichand', 'Velji', 302, NULL, '', 'F', 0, 28, NULL, '0000-00-00', NULL, 3, NULL, '0', '', 0, NULL, '02838-273647', NULL, '', 'Live', '', 'DPF0340-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1356, 491, 'DPF0340-03', 'DPF0340', 'Rasilaben', 'Laxmichand', 'Velji', 302, NULL, '', 'F', 0, 6, NULL, '1969-02-09', NULL, 3, NULL, '257', '', 0, NULL, '9879857115', NULL, '', 'Live', '', 'DPF0340-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1357, 492, 'DPF0341-01', 'DPF0341', 'Tulsidas', 'Ranchhoddas', 'Kunvarji', 193, NULL, '', 'M', 5, 22, NULL, '1939-01-14', NULL, 3, NULL, '258', '', 7, NULL, '', NULL, '', 'Live', '', 'DPF0341-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1358, 492, 'DPF0341-02', 'DPF0341', 'Vasantben', 'Tulsidas', 'Ranchhoddas', 193, NULL, '', 'F', 0, 28, NULL, '1940-01-20', NULL, 3, NULL, '256', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0341-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1359, 492, 'DPF0341-03', 'DPF0341', 'Manish', 'Tulsidas', 'Ranchhoddas', 193, NULL, '', 'M', 6, 25, NULL, '1976-02-17', NULL, 2, NULL, '216', '', 0, NULL, '9867228144', NULL, '', 'Live', '', 'DPF0341-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1360, 493, 'DPF0342-01', 'DPF0342', 'Rajesh', 'Tulsidas', 'Ranchhoddas', 193, NULL, '', 'M', 0, 22, NULL, '1964-06-20', NULL, 3, NULL, '361', '', 24, NULL, '9825435439', NULL, '', 'Live', '', 'DPF0342-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1361, 493, 'DPF0342-02', 'DPF0342', 'Smita', 'Rajesh', 'Tulsidas', 193, NULL, '', 'F', 1, 28, NULL, '1972-12-01', NULL, 3, NULL, '261', '', 0, NULL, '9662993566', NULL, '', 'Live', '', 'DPF0342-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1362, 493, 'DPF0342-03', 'DPF0342', 'Jalpa', 'Rajesh', 'Tulsidas', 193, NULL, '', 'F', 7, 6, NULL, '1991-12-10', NULL, 2, NULL, '285', '', 0, NULL, '9662993566', NULL, '<EMAIL>', 'Live', '', 'DPF0342-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1363, 493, 'DPF0342-04', 'DPF0342', 'Sonali', 'Rajesh', 'Tulsidas', 193, NULL, '', 'F', 7, 6, NULL, '1993-08-04', NULL, 2, NULL, '362', '', 0, NULL, '', NULL, '<EMAIL>', 'Live', '', 'DPF0342-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1364, 493, 'DPF0342-05', 'DPF0342', 'Jay', 'Rajesh', 'Tulsidas', 193, NULL, '', 'M', 1, 25, NULL, '1995-11-27', NULL, 2, NULL, '226', '', 0, NULL, '9913019636', NULL, '<EMAIL>', 'Live', '', 'DPF0342-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1365, 494, 'DPF0343-01', 'DPF0343', 'Deepak', 'Tulsidas', 'Ranchhoddas', 193, NULL, '', 'M', 3, 22, NULL, '1966-03-23', NULL, 3, NULL, '216', '', 8, NULL, '9998640851', NULL, '', 'Live', '', 'DPF0343-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1366, 494, 'DPF0343-02', 'DPF0343', 'Usha', 'Deepak', 'Tulsidas', 193, NULL, '', 'F', 5, 28, NULL, '1971-11-05', NULL, 3, NULL, '256', '', 0, NULL, '8141907805', NULL, '', 'Live', '', 'DPF0343-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1367, 494, 'DPF0343-03', 'DPF0343', 'Avni', 'Deepak', 'Tulsidas', 193, NULL, '', 'F', 0, 6, NULL, '1999-12-19', NULL, 2, NULL, '261', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0343-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1368, 494, 'DPF0343-04', 'DPF0343', 'Hinal', 'Deepak', 'Tulsidas', 193, NULL, '', 'F', 0, 6, NULL, '2004-02-06', NULL, 2, NULL, '257', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0343-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1369, 494, 'DPF0343-05', 'DPF0343', 'Punit', 'Deepak', 'Tulsidas', 193, NULL, '', 'M', 0, 25, NULL, '2007-05-27', NULL, 2, NULL, '268', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0343-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1370, 495, 'DPF0344-01', 'DPF0344', 'Valji', 'Ranchhoddas', 'Kunvarji', 193, NULL, '', 'M', 5, 22, NULL, '1942-11-24', NULL, 3, NULL, '258', '', 0, NULL, '9820538010', NULL, '', 'Live', '', 'DPF0344-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1371, 495, 'DPF0344-02', 'DPF0344', 'Heeravanti', 'Valji', 'Ranchhoddas', 193, NULL, '', 'F', 5, 28, NULL, '1944-12-12', NULL, 3, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0344-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1372, 495, 'DPF0344-03', 'DPF0344', 'Rohit', 'Valji', 'Ranchhoddas', 193, NULL, '', 'M', 5, 25, NULL, '1975-09-10', NULL, 3, NULL, '259', '', 0, NULL, '9324032728', NULL, '<EMAIL>', 'Live', '', 'DPF0344-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1373, 495, 'DPF0344-04', 'DPF0344', 'Kiran', 'Rohit', 'Valji', 193, NULL, '', 'F', 5, 35, NULL, '1982-08-26', NULL, 3, NULL, '214', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0344-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1374, 495, 'DPF0344-05', 'DPF0344', 'Monisha', 'Rohit', 'Valji', 193, NULL, '', 'F', 5, 10, NULL, '2004-04-03', NULL, 2, NULL, '258', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0344-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1375, 495, 'DPF0344-06', 'DPF0344', 'Mahi', 'Rohit', 'Valji', 193, NULL, '', 'F', 5, 10, NULL, '2007-01-07', NULL, 2, NULL, '264', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0344-06.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1376, 496, 'DPF0345-01', 'DPF0345', 'Bhavesh', 'Valji', 'Ranchhoddas', 193, NULL, '', 'M', 3, 22, NULL, '1970-04-25', NULL, 3, NULL, '216', '', 0, NULL, '9884955477', NULL, '<EMAIL>', 'Live', '', 'DPF0345-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1377, 496, 'DPF0345-02', 'DPF0345', 'Heena', 'Bhavesh', 'Valji', 193, NULL, '', 'F', 1, 28, NULL, '1971-07-23', NULL, 3, NULL, '259', '', 0, NULL, '9962299532', NULL, '', 'Live', '', 'DPF0345-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1378, 496, 'DPF0345-03', 'DPF0345', 'Nidhi', 'Bhavesh', 'Valji', 193, NULL, '', 'F', 5, 6, NULL, '2000-07-14', NULL, 2, NULL, '262', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0345-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1379, 496, 'DPF0345-04', 'DPF0345', 'Prachi', 'Bhavesh', 'Valji', 193, NULL, '', 'F', 5, 6, NULL, '2005-09-06', NULL, 2, NULL, '268', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0345-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1380, 497, 'DPF0346-01', 'DPF0346', 'Mulshankar', 'Ladhubhai', 'Kunvarji', 193, NULL, '', 'M', 1, 22, NULL, '1938-01-17', NULL, 3, NULL, '256', '', 2, NULL, '8897789051', NULL, '', 'Live', '', 'DPF0346-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1381, 497, 'DPF0346-02', 'DPF0346', 'Kusumben', 'Mulshankar', 'Ladhubhai', 193, NULL, '', 'F', 6, 28, NULL, '1943-07-18', NULL, 3, NULL, '256', '', 0, NULL, '9849326825', NULL, '', 'Live', '', 'DPF0346-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1382, 497, 'DPF0346-03', 'DPF0346', 'Pankaj', 'Mulshankar', 'Ladhubhai', 193, NULL, '', 'M', 5, 25, NULL, '1974-08-29', NULL, 3, NULL, '216', '', 0, NULL, '9989151050', NULL, '<EMAIL>', 'Live', '', 'DPF0346-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1383, 497, 'DPF0346-04', 'DPF0346', 'Manisha', 'Pankaj', 'Mulshankar', 193, NULL, '', 'F', 3, 35, NULL, '1979-08-12', NULL, 3, NULL, '216', '', 0, NULL, '9959527639', NULL, '', 'Live', '', 'DPF0346-04.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1384, 497, 'DPF0346-05', 'DPF0346', 'Varun', 'Pankaj', 'Mulshankar', 193, NULL, '', 'M', 3, 15, NULL, '2001-08-15', NULL, 2, NULL, '282', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0346-05.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1385, 498, 'DPF0347-01', 'DPF0347', 'Ishwarbhai', 'Mulshankar', 'Ladhubhai', 193, NULL, '', 'M', 5, 22, NULL, '1969-08-06', NULL, 3, NULL, '259', '', 2, NULL, '9959554918', NULL, '<EMAIL>', 'Live', '', 'DPF0347-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1386, 498, 'DPF0347-02', 'DPF0347', 'Bindiya', 'Ishwarbhai', 'Mulshankar', 193, NULL, '', 'F', 5, 28, NULL, '1970-07-02', NULL, 3, NULL, '216', '', 0, NULL, '9849269737', NULL, '', 'Live', '', 'DPF0347-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1387, 498, 'DPF0347-03', 'DPF0347', 'Mansi', 'Ishwarbhai', 'Mulshankar', 193, NULL, '', 'F', 5, 6, NULL, '1997-10-20', NULL, 2, NULL, '363', '', 0, NULL, '9959554918', NULL, '', 'Live', '', 'DPF0347-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1388, 499, 'DPF0348-01', 'DPF0348', 'Yogesh', 'Mulshankar', 'Ladhubhai', 193, NULL, '', 'M', 1, 22, NULL, '1966-11-13', NULL, 3, NULL, '271', '', 2, NULL, '9848999376', NULL, '<EMAIL>', 'Live', '', 'DPF0348-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1389, 499, 'DPF0348-02', 'DPF0348', 'Geeta', 'Yogesh', 'Mulshankar', 193, NULL, '', 'F', 5, 28, NULL, '1970-11-09', NULL, 3, NULL, '216', '', 0, NULL, '', NULL, '', 'Live', '', 'DPF0348-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1390, 499, 'DPF0348-03', 'DPF0348', 'Rajal', 'Yogesh', 'Mulshankar', 193, NULL, '', 'F', 5, 6, NULL, '1995-09-28', NULL, 2, NULL, '259', '', 0, NULL, '7207733616', NULL, '', 'Live', '', 'DPF0348-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1391, 500, 'DPF0349-01', 'DPF0349', 'Rameshchandra', 'Ladhubhai', 'Kunvarji', 193, NULL, '', 'M', 1, 22, NULL, '1961-05-29', NULL, 3, NULL, '216', '', 2, NULL, '9820313894', NULL, '<EMAIL>', 'Live', '', 'DPF0349-01.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1392, 500, 'DPF0349-02', 'DPF0349', 'Jyoti', 'Rameshchandra', 'Ladhubhai', 193, NULL, '', 'F', 0, 28, NULL, '1965-08-29', NULL, 3, NULL, '256', '', 0, NULL, '9920313894', NULL, '', 'Live', '', 'DPF0349-02.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1393, 500, 'DPF0349-03', 'DPF0349', 'Monil', 'Rameshchandra', 'Ladhubhai', 193, NULL, '', 'M', 0, 25, NULL, '1996-08-16', NULL, 2, NULL, '226', '', 0, NULL, '8108319958', NULL, '<EMAIL>', 'Live', '', 'DPF0349-03.jpg', 0, NULL, 0, 0, NULL, '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2020-07-31 10:08:29', NULL, 0, NULL, NULL),
(1394, 517, 'DPF0517-01', 'DPF0517', 'Chirag', 'Shamji', 'Girish', 25, NULL, NULL, 'M', 3, 22, NULL, '1982-12-24', NULL, 3, '0000-00-00', '257', '', 8, NULL, '9664428534', NULL, '<EMAIL>', 'Live', NULL, 'DPF0350-011.jpg', 0, '', 0, 0, '', '1', NULL, '', 4, 'chiragch', '$2a$10$bH2oEB932eNuB0kkVhgcm.f6y7KNuh5R9EH.a3Fdeno3aHlJr30wK', 1, '', '', 0, 0, '', '', '2020-08-03 07:09:19', '2021-08-14 17:51:04', 0, NULL, NULL),
(1397, 514, 'DPF0514-01', 'DPF0514', 'Omprakash', 'bachchalal', 'Sukhraj', 178, NULL, NULL, 'M', 5, 22, NULL, '0000-00-00', NULL, 3, '2012-07-31', '2', NULL, 6, NULL, '9004190906', NULL, '<EMAIL>', 'Live', NULL, 'DPF0514-012.jpg', 0, '', 1, 0, 'Mediclaim Religare', '0', NULL, '', 4, 'omprakash', '$2a$10$DOfvGo0/As/V078QybsxGezlHCxNT.D8.2DxzIy59keW9SeeVirC.', 1, '[{\"first_name\":\"om\",\"second_name\":\"bachchal\",\"third_name\":\"bachchalal\",\"sex\":\"M\",\"surname_id\":\"178\",\"other_surname_details\":null,\"blood_id\":\"5\",\"relation_id\":\"22\",\"other_relation_details\":null,\"marriage_type\":\"3\",\"education_id\":\"1\",\"other_education_details\":null,\"occupation_id\":\"6\",\"other_occupation_details\":null,\"dob\":\"05-10-1985\",\"dom\":\"2012-07-31\",\"dod\":\"\",\"contact\":\"9004190906\",\"altcontact\":null,\"email\":\"<EMAIL>\",\"member_type\":\"22\",\"medical_insurance\":\"1\",\"achivements\":\"\",\"sports_id\":\"0\",\"other_sports_details\":null,\"dharmik_id\":\"4\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"testing\",\"sanjeevni\":\"0\",\"life_insurance\":\"\",\"image\":\"DPF0514-012.jpg\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', '[{\"first_name\":\"om\",\"second_name\":\"bachchal\",\"third_name\":\"bachchalal\",\"sex\":\"M\",\"surname_id\":\"178\",\"other_surname_details\":null,\"blood_id\":\"5\",\"relation_id\":\"22\",\"other_relation_details\":null,\"marriage_type\":\"3\",\"education_id\":\"1\",\"other_education_details\":null,\"occupation_id\":\"6\",\"other_occupation_details\":null,\"dob\":\"05-10-1985\",\"dom\":\"2012-07-31\",\"dod\":\"\",\"contact\":\"9004190906\",\"altcontact\":null,\"email\":\"<EMAIL>\",\"member_type\":\"22\",\"medical_insurance\":\"1\",\"achivements\":\"\",\"sports_id\":\"0\",\"other_sports_details\":null,\"dharmik_id\":\"4\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"testing\",\"sanjeevni\":\"0\",\"life_insurance\":\"\",\"image\":\"DPF0514-012.jpg\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', 0, 0, '', '', '2021-03-12 05:16:02', '2021-08-27 12:23:56', 0, NULL, NULL),
(1398, 514, 'DPF0514-03', 'DPF0514', 'praanvi', 'omprakash', 'yadav', 178, NULL, NULL, 'F', 1, 6, NULL, '2031-00-02', '0000-00-00', 2, '', '1', NULL, 10, NULL, '9664428534', NULL, '<EMAIL>', 'Live', '6', 'DPF0514-031.jpg', 0, '', 1, 0, 'HDFC Argo Jeevan Raksha', '0', NULL, '', 3, NULL, NULL, 1, '[{\"first_name\":\"praanvi\",\"second_name\":\"omprakash\",\"third_name\":\"yadav\",\"sex\":\"F\",\"surname_id\":\"178\",\"other_surname_details\":null,\"blood_id\":\"1\",\"relation_id\":\"6\",\"other_relation_details\":null,\"marriage_type\":\"2\",\"education_id\":\"1\",\"other_education_details\":null,\"occupation_id\":\"10\",\"other_occupation_details\":null,\"dob\":\"31-00-0002\",\"dom\":\"\",\"dod\":\"\",\"contact\":\"9664428534\",\"altcontact\":null,\"email\":\"<EMAIL>\",\"member_type\":\"6\",\"medical_insurance\":\"1\",\"achivements\":\"\",\"sports_id\":\"0\",\"other_sports_details\":null,\"dharmik_id\":\"3\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"HDFC Argo Jeevan Raksha\",\"sanjeevni\":\"0\",\"life_insurance\":\"\",\"image\":\"DPF0514-031.jpg\",\"m_secondname\":\"null\",\"m_thirdname\":\"null\",\"m_surname\":\"null\",\"m_village\":\"null\",\"m_address\":\"null\",\"m_type\":null,\"m_contact\":\"9004190908\",\"m_email\":\"<EMAIL>\"}]', '[{\"first_name\":\"praanvi\",\"second_name\":\"omprakash\",\"third_name\":\"yadav\",\"sex\":\"F\",\"surname_id\":\"178\",\"other_surname_details\":null,\"blood_id\":\"1\",\"relation_id\":\"6\",\"other_relation_details\":null,\"marriage_type\":\"2\",\"education_id\":\"1\",\"other_education_details\":null,\"occupation_id\":\"10\",\"other_occupation_details\":null,\"dob\":\"31-00-0002\",\"dom\":\"\",\"dod\":\"\",\"contact\":\"9664428534\",\"altcontact\":null,\"email\":\"<EMAIL>\",\"member_type\":\"6\",\"medical_insurance\":\"1\",\"achivements\":\"\",\"sports_id\":\"0\",\"other_sports_details\":null,\"dharmik_id\":\"3\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"HDFC Argo J<NAME>\",\"sanjeevni\":\"0\",\"life_insurance\":\"\",\"image\":\"DPF0514-031.jpg\",\"m_secondname\":\"null\",\"m_thirdname\":\"null\",\"m_surname\":\"null\",\"m_village\":\"null\",\"m_address\":\"null\",\"m_type\":null,\"m_contact\":\"9004190908\",\"m_email\":\"<EMAIL>\"}]', 0, 0, '', '', '2021-03-12 05:30:13', '2021-08-28 08:44:09', 0, NULL, NULL),
(1406, 148, 'DPF0001-11', 'DPF0001', 'Abhay', 'Animator', 'Om', 1, NULL, NULL, 'M', 4, 25, NULL, '1985-03-12', NULL, 1, '2021-03-23', '3,4', '', 8, NULL, '8169839706', NULL, '<EMAIL>', NULL, NULL, 'DPF0001-11.jpg', 0, '', 0, 0, '', '1,3', NULL, '', 4, 'abhay', '$2a$10$IfHXhPWA0xpRQYvrIDVUZezpB48HuX1mkUnfNO/3B6N0nYNQSAfWC', 1, '', '', 0, 0, '', '', '2021-03-13 04:45:55', '2021-03-13 04:54:30', 0, NULL, NULL),
(1407, 148, 'DPF0001-12', 'DPF0001', 'Himmat', 'sandhu', 'sandhu', 8, NULL, NULL, 'M', 5, 2, NULL, '2021-03-11', NULL, 2, '2021-03-13', '1', '', 10, NULL, '9675435457', NULL, '<EMAIL>', NULL, NULL, 'DPF0001-12.jpg', 0, '', 0, 0, '', '0', NULL, 'Test Purpose', 1, NULL, NULL, 1, '', '', 0, 0, '', '', '2021-03-13 05:45:26', NULL, 0, NULL, NULL),
(1408, 516, 'DPF0516-01', 'DPF0516', 'shikha', 'om prakash', 'B', 3, NULL, NULL, 'F', 5, 22, NULL, '1989-07-07', '2021-03-13', 3, '2021-03-13', '6', '', 4, NULL, '8369965108', NULL, '<EMAIL>', 'Death', NULL, 'DPF0514-04.jpg', 0, '', 0, 0, '', '0', NULL, 'Cooking contest winner', 5, NULL, NULL, 1, '', '', 0, 0, '', '', '2021-03-13 07:09:16', NULL, 0, NULL, NULL),
(1409, 148, 'DPF0001-13', 'DPF0001', 'dhruvil', 'lalit', 'khimji', 47, NULL, NULL, 'M', 3, 2, NULL, '2021-03-13', '0000-00-00', 6, NULL, '0', '', 3, NULL, '97577575', NULL, 'gzgSga', NULL, '2', 'DPF0001-13.png', 0, '', 1, 0, '', '0', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2021-03-13 07:20:20', NULL, 0, NULL, NULL),
(1410, 514, 'DPF0514-07', 'DPF0514', 'Bindu', 'yadav', 'yadav', 3, '', NULL, 'F', 5, 28, '', '1999-01-21', '2021-07-31', 3, '2012-03-21', '', NULL, 4, NULL, '9004190906', '0224717186', '<EMAIL>', 'Death', NULL, 'DPF0514-07.jpg', 0, '', 1, 0, 'LIC', '0,1,2,3,5,6,7,8,9', NULL, 'asfdasf', 1, NULL, NULL, 1, '[{\"first_name\":\"Bindu\",\"second_name\":\"yadav\",\"third_name\":\"yadav\",\"sex\":\"F\",\"surname_id\":\"3\",\"other_surname_details\":\"\",\"blood_id\":\"5\",\"relation_id\":\"28\",\"other_relation_details\":\"\",\"marriage_type\":\"3\",\"education_id\":null,\"other_education_details\":\"\",\"occupation_id\":\"4\",\"other_occupation_details\":\"\",\"dob\":\"1999-01-21\",\"old_dom\":\"2012-03-21\",\"dod\":null,\"contact\":\"9004190906\",\"altcontact\":\"0224717186\",\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"1\",\"achivements\":\"asfdasf\",\"sports_id\":null,\"other_sports_details\":\"\",\"dharmik_id\":\"1\",\"medical_insurance_text\":\"LIC\",\"life_insurance_text\":\"\",\"sanjeevni\":\"0\",\"life_insurance\":\"0\",\"old_image\":\"\",\"m_secondname\":\"Ravindra\",\"m_thirdname\":\"ffw\",\"m_surname\":\"Sayani\",\"m_village\":\"Bagda\",\"m_address\":\"cotton green\",\"m_type\":null,\"m_contact\":\"9004190906\",\"m_email\":\"\"}]', '[{\"first_name\":\"Bindu\",\"second_name\":\"yadav\",\"third_name\":\"yadav\",\"sex\":\"F\",\"surname_id\":\"3\",\"other_surname_details\":\"\",\"blood_id\":\"5\",\"relation_id\":\"28\",\"other_relation_details\":\"\",\"marriage_type\":\"3\",\"education_id\":\"\",\"other_education_details\":null,\"occupation_id\":\"4\",\"other_occupation_details\":null,\"dob\":\"1999-01-21\",\"dom\":\"2012-03-21\",\"dod\":null,\"contact\":\"9004190906\",\"altcontact\":\"0224717186\",\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"1\",\"achivements\":\"asfdasf\",\"sports_id\":\"0,1,2,3,5,6,7,8,9\",\"other_sports_details\":null,\"dharmik_id\":\"1\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"LIC\",\"sanjeevni\":\"0\",\"life_insurance\":\"0\",\"image\":\"DPF0514-07.jpg\",\"m_secondname\":\"Ravindra\",\"m_thirdname\":\"ffw\",\"m_surname\":\"13\",\"m_village\":\"24\",\"m_address\":\"cotton green\",\"m_type\":\"in\",\"m_contact\":\"9004190906\",\"m_email\":\"\"}]', 0, 0, '', '', '2021-03-13 07:37:55', '2021-06-21 03:43:24', 0, 'test', '2021-07-02 13:56:32'),
(1411, 514, 'DPF0514-15', 'DPF0514', '<NAME>', 'yadav', 'yadav', 3, '', NULL, 'M', 4, 18, 'testing', '2021-06-17', NULL, 2, NULL, '3', NULL, 10, NULL, '9004190906', '9664428534', '<EMAIL>', 'Death', NULL, NULL, 0, '', 0, 0, '', '1', NULL, 'dsf', 5, NULL, NULL, 1, '[{\"first_name\":\"<NAME>\",\"second_name\":\"yadav\",\"third_name\":\"yadav\",\"sex\":\"M\",\"surname_id\":\"3\",\"other_surname_details\":\"\",\"blood_id\":\"4\",\"relation_id\":\"39\",\"other_relation_details\":\"testing\",\"marriage_type\":\"2\",\"education_id\":null,\"other_education_details\":\"\",\"occupation_id\":\"10\",\"other_occupation_details\":\"\",\"dob\":\"2021-06-17\",\"old_dom\":\"\",\"dod\":null,\"contact\":\"9004190906\",\"altcontact\":\"9664428534\",\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"0\",\"achivements\":\"\",\"sports_id\":null,\"other_sports_details\":\"\",\"dharmik_id\":\"5\",\"medical_insurance_text\":\"\",\"life_insurance_text\":\"\",\"sanjeevni\":\"0\",\"life_insurance\":\"0\",\"old_image\":\"\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', '[{\"first_name\":\"<NAME>\",\"second_name\":\"yadav\",\"third_name\":\"yadav\",\"sex\":\"M\",\"surname_id\":\"3\",\"other_surname_details\":\"\",\"blood_id\":\"4\",\"relation_id\":\"39\",\"other_relation_details\":\"testing\",\"marriage_type\":\"2\",\"education_id\":\"3\",\"other_education_details\":null,\"occupation_id\":\"10\",\"other_occupation_details\":null,\"dob\":\"2021-06-17\",\"dom\":null,\"dod\":null,\"contact\":\"9004190906\",\"altcontact\":\"9664428534\",\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"0\",\"achivements\":\"dsf\",\"sports_id\":\"1\",\"other_sports_details\":null,\"dharmik_id\":\"5\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"\",\"sanjeevni\":\"0\",\"life_insurance\":\"0\",\"image\":null,\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', 0, 0, '', '', '2021-03-19 08:23:25', '2021-06-27 09:57:43', 1, 'test', '2021-08-10 11:06:17'),
(1412, 457, 'DPF0306-05', 'DPF0306', 'PRACHI', 'NIRAV', 'KHUSHAL', 164, NULL, NULL, 'F', 12, 7, NULL, '1995-08-28', NULL, 3, '2018-12-15', '1', '', 4, NULL, '98955', NULL, '<EMAIL>', NULL, NULL, '', 0, '', 1, 1, '', '', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2021-03-21 12:19:46', NULL, 0, NULL, NULL),
(1413, 457, 'DPF0306-06', 'DPF0306', 'PRACHI', 'NIRAV', 'KHUSHAL', 164, NULL, NULL, 'F', 12, 7, NULL, '1995-08-28', NULL, 3, '2018-12-15', '1', '', 4, NULL, '98955', NULL, '<EMAIL>', NULL, NULL, '', 0, '', 1, 1, '', '', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2021-03-21 12:19:54', NULL, 1, 'wrongly created twice', '2021-03-21 12:22:32'),
(1415, 536, 'DPF0536-02', 'DPF0536', 'Depak', 'Mahesh', 'Chauhan', 115, 'deepak', NULL, 'M', 3, 4, '123', '2003-02-10', NULL, 2, NULL, '2,3', '', 2, 'co worker', '9702043716', '9702043716', '<EMAIL>', NULL, NULL, 'DPF0514-10.png', 0, '', 0, 0, '', '0,1', 'E sports', '', 0, NULL, NULL, 0, '', '', 0, 0, '', '', '2021-06-13 18:56:27', '2021-06-15 16:29:49', 0, NULL, NULL),
(1416, 523, 'DPF0523-01', 'DPF0523', 'AJAY', 'GGXD', 'CHAUHAN', 1, '', NULL, 'M', 1, 22, '', '2021-06-17', NULL, 2, '2021-06-24', '2', '', 2, '', '9619527226', '', '<EMAIL>', NULL, NULL, 'DPF0514-11.png', 0, '', 0, 0, '', '', '', '', 1, NULL, NULL, 1, '', '', 0, 0, '', '', '2021-06-17 06:48:19', NULL, 0, NULL, NULL),
(1417, 523, 'DPF0523-02', 'DPF0523', 'AJAY', 'CHAUHAN', 'CHAUHAN', 2, '', NULL, 'M', 3, 4, '', '2021-06-17', NULL, 1, '2021-06-01', '2,20', '', 6, '', '897884568', '547899514', '<EMAIL>', NULL, NULL, 'DPF0514-12.png', 1, 'LIC India', 0, 0, '', '1,3', '', '', 1, NULL, NULL, 1, '', '', 0, 0, '', '', '2021-06-17 08:11:17', NULL, 0, NULL, NULL),
(1423, 523, 'DPF0523-03', 'DPF0523', 'priya', 'yadav', 'yadav', 156, NULL, NULL, 'F', 3, 3, NULL, '2021-01-01', NULL, 2, '2021-06-17', '3,4,8', NULL, 8, NULL, '9004190906', NULL, '<EMAIL>', 'Death', NULL, 'DPF0514-13.jpg', 1, 'HDFC', 1, 0, 'Bank', '0,1,2,3,5,6,7,8,9', NULL, '', 5, NULL, NULL, 1, '', '', 0, 0, '', '', '2021-06-17 08:57:16', NULL, 0, NULL, NULL),
(1424, 524, 'DPF0524-01', 'DPF0524', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, NULL, '', 0, NULL, NULL, 1, '[{\"first_name\":\"Depak\",\"second_name\":\"M\",\"third_name\":\"Chauhan\",\"sex\":\"M\",\"surname_id\":\"1\",\"other_surname_details\":\"\",\"blood_id\":\"1\",\"relation_id\":\"2\",\"other_relation_details\":\"\",\"marriage_type\":\"2\",\"education_id\":null,\"other_education_details\":\"\",\"occupation_id\":\"2\",\"other_occupation_details\":\"\",\"dob\":\"2021-06-21\",\"old_dom\":\"2021-06-21\",\"dod\":null,\"contact\":\"1234567890\",\"altcontact\":\"4567891230\",\"email\":\"\",\"member_type\":null,\"medical_insurance\":\"0\",\"achivements\":\"s9sa4d54as65d4as5d456a\",\"sports_id\":null,\"other_sports_details\":\"\",\"dharmik_id\":\"4\",\"medical_insurance_text\":\"\",\"life_insurance_text\":\"\",\"sanjeevni\":\"0\",\"life_insurance\":\"0\",\"old_image\":\"DPF0514-11.png\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', '[{\"first_name\":\"<NAME>\",\"second_name\":\"Chauhan Edit 1\",\"third_name\":\"Chauhan Edit 1\",\"sex\":\"M\",\"surname_id\":\"1\",\"other_surname_details\":\"\",\"blood_id\":\"2\",\"relation_id\":\"2\",\"other_relation_details\":\"\",\"marriage_type\":\"1\",\"education_id\":\"\",\"other_education_details\":null,\"occupation_id\":\"2\",\"other_occupation_details\":null,\"dob\":\"2021-06-21\",\"dom\":\"2021-06-21\",\"dod\":null,\"contact\":\"1234567890\",\"altcontact\":\"4567891230\",\"email\":\"\",\"member_type\":null,\"medical_insurance\":\"0\",\"achivements\":\"s9sa4d54as65d4as5d456a Edit 1\",\"sports_id\":\"2,5,6,7,8\",\"other_sports_details\":null,\"dharmik_id\":\"3\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"\",\"sanjeevni\":\"0\",\"life_insurance\":\"0\",\"image\":\"DPF0514-113.png\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', 0, 0, '', '', '2021-06-21 07:23:02', '2021-07-02 04:25:05', 0, NULL, NULL),
(1425, 524, 'DPF0524-02', 'DPF0524', 'f2', 'm2', 'l2', 2, '', NULL, 'M', 1, 4, '', '2021-06-21', NULL, 2, NULL, '', '', 2, '', '1234567890', '4567891230', '', NULL, NULL, 'DPF0514-12.png', 0, '', 0, 0, '', '1,2,3,5', '', 's1d32as1d32asd1', 4, NULL, NULL, 1, '', '', 0, 0, '', '', '2021-06-21 08:26:29', NULL, 0, NULL, NULL),
(1426, 526, 'DPF0526-01', 'DPF0526', 'Jayantilal', 'N', 'K', 116, NULL, NULL, 'M', 5, 22, NULL, '1972-02-25', NULL, 3, '1991-03-07', '2', NULL, 2, NULL, '9833562250', NULL, '<EMAIL>', 'Live', NULL, 'DPF0526-01.jpg', 1, 'LIC India', 0, 0, '', '7', NULL, '', 3, NULL, NULL, 1, '[{\"first_name\":\"Jayantilal\",\"second_name\":\"N\",\"third_name\":\"K\",\"sex\":\"M\",\"surname_id\":\"116\",\"other_surname_details\":null,\"blood_id\":\"5\",\"relation_id\":\"22\",\"other_relation_details\":null,\"marriage_type\":\"3\",\"education_id\":\"2\",\"other_education_details\":null,\"occupation_id\":\"8\",\"other_occupation_details\":null,\"dob\":\"1972-02-25\",\"dom\":\"1991-03-07\",\"dod\":null,\"contact\":\"9833562250\",\"altcontact\":null,\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"0\",\"achivements\":\"\",\"sports_id\":\"7\",\"other_sports_details\":null,\"dharmik_id\":\"1\",\"life_insurance_text\":\"LIC India\",\"medical_insurance_text\":\"\",\"sanjeevni\":\"0\",\"life_insurance\":\"1\",\"image\":null,\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', '[{\"first_name\":\"Jayantilal\",\"second_name\":\"N\",\"third_name\":\"K\",\"sex\":\"M\",\"surname_id\":\"116\",\"other_surname_details\":null,\"blood_id\":\"5\",\"relation_id\":\"22\",\"other_relation_details\":null,\"marriage_type\":\"3\",\"education_id\":\"2\",\"other_education_details\":null,\"occupation_id\":\"8\",\"other_occupation_details\":null,\"dob\":\"1972-02-25\",\"dom\":\"1991-03-07\",\"dod\":null,\"contact\":\"9833562250\",\"altcontact\":null,\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"0\",\"achivements\":\"\",\"sports_id\":\"7\",\"other_sports_details\":null,\"dharmik_id\":\"1\",\"life_insurance_text\":\"LIC India\",\"medical_insurance_text\":\"\",\"sanjeevni\":\"0\",\"life_insurance\":\"1\",\"image\":null,\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', 0, 0, '', '', '2021-06-25 12:44:43', NULL, 0, NULL, NULL),
(1427, 526, 'DPF0526-02', 'DPF0526', 'Harsh', 'Jayantilal', 'Nanji', 116, NULL, NULL, 'M', 5, 25, NULL, '1995-06-04', '0000-00-00', 2, '0000-00-00', '2', NULL, 6, NULL, '9028984783', NULL, '<EMAIL>', 'Live', '25', '1427.png', 0, '', 1, 0, 'jh', '1', NULL, '', 3, NULL, '$2a$10$wofGfXKj4cacJJW.CaCcI.X2.U/Un9rnfxUkpHf2JcmdrVgiFu11C', 1, '[{\"first_name\":\"Harsh\",\"second_name\":\"Jayantial\",\"third_name\":\"Nanji\",\"sex\":\"M\",\"surname_id\":\"116\",\"other_surname_details\":null,\"blood_id\":\"5\",\"relation_id\":\"25\",\"other_relation_details\":null,\"marriage_type\":\"2\",\"education_id\":\"2\",\"other_education_details\":null,\"occupation_id\":\"6\",\"other_occupation_details\":null,\"dob\":\"1995-06-04\",\"dom\":\"0000-00-00\",\"dod\":\"\",\"contact\":\"9028984783\",\"altcontact\":null,\"email\":\"<EMAIL>\",\"member_type\":\"25\",\"medical_insurance\":\"1\",\"achivements\":\"\",\"sports_id\":\"1\",\"other_sports_details\":null,\"dharmik_id\":\"3\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"jh\",\"sanjeevni\":\"0\",\"life_insurance\":\"\",\"image\":\"1427.png\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', '[{\"first_name\":\"Harsh\",\"second_name\":\"Jayantial\",\"third_name\":\"Nanji\",\"sex\":\"M\",\"surname_id\":\"116\",\"other_surname_details\":null,\"blood_id\":\"5\",\"relation_id\":\"25\",\"other_relation_details\":null,\"marriage_type\":\"2\",\"education_id\":\"2\",\"other_education_details\":null,\"occupation_id\":\"6\",\"other_occupation_details\":null,\"dob\":\"1995-06-04\",\"dom\":\"0000-00-00\",\"dod\":\"\",\"contact\":\"9028984783\",\"altcontact\":null,\"email\":\"<EMAIL>\",\"member_type\":\"25\",\"medical_insurance\":\"1\",\"achivements\":\"\",\"sports_id\":\"1\",\"other_sports_details\":null,\"dharmik_id\":\"3\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"jh\",\"sanjeevni\":\"0\",\"life_insurance\":\"\",\"image\":\"1427.png\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', 0, 0, '', '', '2021-06-25 12:53:41', '2021-08-14 12:09:15', 0, NULL, NULL),
(1428, 514, 'DPF0514-16', 'DPF0514', 'chirag', 'hirji', 'hirji', 25, '', NULL, 'M', 3, 25, '', '1982-12-24', NULL, 3, '', '2', NULL, 2, NULL, '9664428534', '9869707959', '<EMAIL>', 'Death', NULL, '', 0, '', 0, 0, '', '5,7', NULL, '', 6, NULL, NULL, 1, '[{\"first_name\":\"chirag\",\"second_name\":\"hirji\",\"third_name\":\"hirji\",\"sex\":\"M\",\"surname_id\":\"25\",\"other_surname_details\":\"\",\"blood_id\":\"3\",\"relation_id\":\"25\",\"other_relation_details\":\"\",\"marriage_type\":\"3\",\"education_id\":\"2\",\"other_education_details\":null,\"occupation_id\":\"2\",\"other_occupation_details\":null,\"dob\":\"1982-12-24\",\"dom\":\"\",\"dod\":null,\"contact\":\"9664428534\",\"altcontact\":\"9869707959\",\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"0\",\"achivements\":\"\",\"sports_id\":\"5,7\",\"other_sports_details\":null,\"dharmik_id\":\"6\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"\",\"sanjeevni\":\"0\",\"life_insurance\":\"0\",\"image\":\"\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', '[{\"first_name\":\"chirag\",\"second_name\":\"hirji\",\"third_name\":\"hirji\",\"sex\":\"M\",\"surname_id\":\"25\",\"other_surname_details\":\"\",\"blood_id\":\"3\",\"relation_id\":\"25\",\"other_relation_details\":\"\",\"marriage_type\":\"3\",\"education_id\":\"2\",\"other_education_details\":null,\"occupation_id\":\"2\",\"other_occupation_details\":null,\"dob\":\"1982-12-24\",\"dom\":\"\",\"dod\":null,\"contact\":\"9664428534\",\"altcontact\":\"9869707959\",\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"0\",\"achivements\":\"\",\"sports_id\":\"5,7\",\"other_sports_details\":null,\"dharmik_id\":\"6\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"\",\"sanjeevni\":\"0\",\"life_insurance\":\"0\",\"image\":\"\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', 0, 0, '', '', '2021-06-26 10:28:32', '2021-08-09 06:14:49', 1, 'test', '2021-08-12 08:04:01'),
(1429, 527, 'DPF0527-01', 'DPF0527', 'Prince', 's', 'hirji', 4, NULL, NULL, 'M', 5, 22, NULL, '1993-06-26', NULL, 2, NULL, '2', NULL, 2, NULL, '8564428534', NULL, '<EMAIL>', 'Live', NULL, 'DPF0527-01.png', 0, '', 0, 0, '', '1', NULL, '', 3, NULL, NULL, 0, '', '', 0, 0, '', '', '2021-06-26 13:17:34', NULL, 0, NULL, NULL),
(1430, 527, 'DPF0527-02', 'DPF0527', 'chirag', 's', 'hirji', 7, NULL, NULL, 'M', 4, 22, NULL, '2008-06-26', NULL, 2, NULL, '1', NULL, 6, NULL, '9664428534', NULL, '<EMAIL>', 'Live', NULL, 'DPF0527-02.png', 0, '', 0, 0, '', '1', NULL, '', 3, NULL, NULL, 0, '', '', 0, 0, '', '', '2021-06-26 13:22:37', NULL, 0, NULL, NULL),
(1431, 527, 'DPF0527-03', 'DPF0527', 'Prince', 'gh', 'hirji', 8, NULL, NULL, 'M', 3, 6, NULL, '2021-06-26', NULL, 2, NULL, '6', NULL, 10, NULL, '9664428667', NULL, '<EMAIL>', 'Live', NULL, 'noimage.jpg', 0, '', 0, 0, '', '0', NULL, '', 3, NULL, NULL, 0, '', '', 0, 0, '', '', '2021-06-26 13:24:40', NULL, 0, NULL, NULL),
(1432, 527, 'DPF0527-04', 'DPF0527', 'Prince', 's', 'hirji', 8, NULL, NULL, 'F', 6, 19, NULL, '2021-06-16', NULL, 2, NULL, '4', NULL, 19, NULL, '9664428582', NULL, '<EMAIL>', 'Live', NULL, 'DPF0527-04.png', 0, '', 0, 0, '', '1', NULL, '', 3, NULL, NULL, 0, '', '', 0, 0, '', '', '2021-06-26 13:38:55', NULL, 0, NULL, NULL),
(1433, 527, 'DPF0527-05', 'DPF0527', 'pr1', 'p1', 'hirji', 3, NULL, NULL, 'M', 7, 23, NULL, '2021-06-26', NULL, 2, NULL, '4', NULL, 10, NULL, '9664428534', NULL, '<EMAIL>', 'Live', NULL, 'DPF0527-05.png', 0, '', 0, 0, '', '1', NULL, '', 3, NULL, NULL, 0, '', '', 0, 0, '', '', '2021-06-26 13:40:54', NULL, 0, NULL, NULL),
(1434, 527, 'DPF0527-06', 'DPF0527', 'p2', 'p3', 'p4', 71, NULL, NULL, 'M', 8, 15, NULL, '2021-06-26', NULL, 2, NULL, '3', NULL, 5, NULL, '9664428534', NULL, '<EMAIL>', 'Live', NULL, 'DPF0527-06.png', 0, '', 0, 0, '', '1', NULL, '', 3, NULL, NULL, 0, '', '', 0, 0, '', '', '2021-06-26 13:47:58', NULL, 0, NULL, NULL),
(1435, 527, 'DPF0527-07', 'DPF0527', 'Harsh', 'H1', 'G2', 2, NULL, NULL, 'F', 3, 23, NULL, '2021-06-26', NULL, 2, NULL, '', NULL, 5, NULL, '9664428536', NULL, '', 'Live', NULL, 'DPF0527-07.jpg', 0, '', 0, 0, '', '', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2021-06-26 14:37:56', NULL, 0, NULL, NULL),
(1436, 528, 'DPF0528-01', 'DPF0528', 'Mahesh', 'Chauhan', '', 25, NULL, NULL, 'M', 1, 22, NULL, '2021-06-09', NULL, 3, '2021-06-07', '43', NULL, 8, NULL, '9920042215', NULL, '<EMAIL>', 'Live', NULL, 'DPF0528-01.jpg', 0, '', NULL, 0, '', '', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2021-06-26 14:43:18', NULL, 0, NULL, NULL),
(1437, 528, 'DPF0528-02', 'DPF0528', 'Deepak', 'Mahesh', 'M', 25, NULL, NULL, 'M', 4, 25, NULL, '1999-06-26', NULL, 1, NULL, '', NULL, 10, NULL, '9702043716', NULL, '<EMAIL>', 'Live', NULL, 'DPF0528-02.jpg', 0, '', 0, 0, '', '', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2021-06-26 14:49:45', NULL, 0, NULL, NULL),
(1438, 528, 'DPF0528-03', 'DPF0528', 'Kishanti', 'Mahesh', 'M', 25, NULL, NULL, 'F', 5, 28, NULL, '2006-06-10', NULL, 3, '2017-06-22', '2', NULL, 4, NULL, '9664428534', NULL, '<EMAIL>', 'Live', NULL, 'DPF0528-03.jpg', 0, '', 0, 0, '', '', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2021-06-26 15:03:58', NULL, 0, NULL, NULL),
(1439, 534, 'DPF0534-01', 'DPF0534', 'Harsh', 'J', 'N', 1, '', NULL, 'M', 2, 22, '', '1995-06-04', NULL, 2, NULL, '31', '', 6, '', '7864823456', '', '<EMAIL>', NULL, NULL, 'DPF0514-13.png', 0, '', 1, 0, 'Kotak', '', '', '', 3, NULL, NULL, 1, '', '', 0, 0, '', '', '2021-06-27 16:25:23', NULL, 0, NULL, NULL),
(1440, 530, 'DPF0530-01', 'DPF0530', 'Satya', 'prakash', 'bachchalal', 178, NULL, NULL, 'M', 3, 22, NULL, '2018-06-02', NULL, 2, NULL, '2', NULL, 2, NULL, '9004190906', NULL, '<EMAIL>', 'Live', NULL, 'DPF0530-01.png', 1, 'LIC India', 1, 1, '', '1', NULL, 'test', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2021-07-02 08:51:20', NULL, 0, NULL, NULL),
(1442, 514, 'DPF0514-11', 'DPF0514', 'Chirag', 'Shamji', 'Hirji', 25, '', NULL, 'M', 1, 4, '', '1982-12-24', NULL, 3, '2011-05-21', '6', NULL, 2, NULL, '9664428534', '9664428534', '<EMAIL>', NULL, NULL, 'DPF0514-11.JPG', 0, '', 0, 0, '', '2,5,7', NULL, '', 1, NULL, NULL, 1, '[{\"first_name\":\"Chirag\",\"second_name\":\"Shamji\",\"third_name\":\"Hirji\",\"sex\":\"M\",\"surname_id\":\"25\",\"other_surname_details\":\"\",\"blood_id\":\"1\",\"relation_id\":\"4\",\"other_relation_details\":\"\",\"marriage_type\":\"3\",\"education_id\":null,\"other_education_details\":\"\",\"occupation_id\":\"2\",\"other_occupation_details\":\"\",\"dob\":\"1982-12-24\",\"old_dom\":\"2011-05-21\",\"dod\":null,\"contact\":\"9664428534\",\"altcontact\":\"9664428534\",\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"0\",\"achivements\":\"\",\"sports_id\":null,\"other_sports_details\":\"\",\"dharmik_id\":\"1\",\"medical_insurance_text\":\"\",\"life_insurance_text\":\"\",\"sanjeevni\":\"0\",\"life_insurance\":\"0\",\"old_image\":\"DPF0514-11.JPG\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', '[{\"first_name\":\"Chirag\",\"second_name\":\"Hirji\",\"third_name\":\"Hirji\",\"sex\":\"M\",\"surname_id\":\"25\",\"other_surname_details\":\"\",\"blood_id\":\"1\",\"relation_id\":\"4\",\"other_relation_details\":\"\",\"marriage_type\":\"2\",\"education_id\":\"6,25,27\",\"other_education_details\":null,\"occupation_id\":\"2\",\"other_occupation_details\":null,\"dob\":\"1982-12-24\",\"dom\":\"\",\"dod\":null,\"contact\":\"9664428534\",\"altcontact\":\"\",\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"0\",\"achivements\":\"\",\"sports_id\":\"2,5,7\",\"other_sports_details\":null,\"dharmik_id\":\"1\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"\",\"sanjeevni\":\"0\",\"life_insurance\":\"0\",\"image\":\"DPF0514-11.jpg\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', 0, 0, '', '', '2021-07-02 14:00:06', '2021-07-02 07:32:29', 1, 'death', '2021-07-02 14:05:01'),
(1443, 535, 'DPF0535-01', 'DPF0535', 'chirag', 'shamji', 'hirji', 27, '', NULL, 'M', 1, 22, '', '1982-12-24', NULL, 2, '0000-00-00', '2', NULL, 2, NULL, '9664428534', '', '<EMAIL>', NULL, NULL, 'DPF0514-121.jpg', 0, '', 0, 0, '', '1,2', NULL, '', 0, NULL, NULL, 1, '[{\"first_name\":\"\",\"second_name\":\"\",\"third_name\":\"\",\"sex\":\"\",\"surname_id\":\"\",\"other_surname_details\":\"\",\"blood_id\":\"\",\"relation_id\":\"\",\"other_relation_details\":\"\",\"marriage_type\":\"\",\"education_id\":null,\"other_education_details\":\"\",\"occupation_id\":\"\",\"other_occupation_details\":\"\",\"dob\":\"\",\"old_dom\":\"\",\"dod\":null,\"contact\":\"\",\"altcontact\":\"\",\"email\":\"\",\"member_type\":null,\"medical_insurance\":\"\",\"achivements\":\"\",\"sports_id\":null,\"other_sports_details\":\"\",\"dharmik_id\":\"0\",\"medical_insurance_text\":\"\",\"life_insurance_text\":\"\",\"sanjeevni\":\"0\",\"life_insurance\":\"0\",\"old_image\":\"\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', '[{\"first_name\":\"chirag\",\"second_name\":\"shamji\",\"third_name\":\"hirji\",\"sex\":\"M\",\"surname_id\":\"27\",\"other_surname_details\":\"\",\"blood_id\":\"1\",\"relation_id\":\"4\",\"other_relation_details\":\"\",\"marriage_type\":\"2\",\"education_id\":\"2\",\"other_education_details\":null,\"occupation_id\":\"2\",\"other_occupation_details\":null,\"dob\":\"1982-12-24\",\"dom\":\"\",\"dod\":null,\"contact\":\"9664428534\",\"altcontact\":\"\",\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"0\",\"achivements\":\"\",\"sports_id\":\"1,2\",\"other_sports_details\":null,\"dharmik_id\":\"\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"\",\"sanjeevni\":\"0\",\"life_insurance\":\"0\",\"image\":\"DPF0514-121.jpg\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', 0, 0, '', '', '2021-07-02 14:36:01', '2021-07-03 02:59:37', 0, NULL, NULL),
(1444, 528, 'DPF0528-04', 'DPF0528', 'AK', 'Mahesh', 'Chauhan', 25, NULL, NULL, 'M', 1, 4, NULL, '2021-07-02', NULL, 2, '2021-07-01', '', NULL, 2, NULL, '7895462130', NULL, '', 'Live', NULL, 'DPF0528-04.png', 0, '', 0, 0, '', '', NULL, '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2021-07-02 19:06:52', NULL, 0, NULL, NULL),
(1445, 514, 'DPF0514-13', 'DPF0514', 'test1', 'test3', 'test3', 3, '', NULL, 'M', 1, 8, '', '2021-07-03', NULL, 2, '0000-00-00', '12', NULL, 2, NULL, '1237894560', '', '', NULL, NULL, 'DPF0514-13.png', 0, '', 0, 0, '', '', NULL, '', 4, NULL, NULL, 1, '[{\"first_name\":\"test1\",\"second_name\":\"test3\",\"third_name\":\"test3\",\"sex\":\"M\",\"surname_id\":\"3\",\"other_surname_details\":\"\",\"blood_id\":\"1\",\"relation_id\":\"8\",\"other_relation_details\":\"\",\"marriage_type\":\"2\",\"education_id\":null,\"other_education_details\":\"\",\"occupation_id\":\"2\",\"other_occupation_details\":\"\",\"dob\":\"2021-07-03\",\"old_dom\":\"0000-00-00\",\"dod\":null,\"contact\":\"1237894560\",\"altcontact\":\"\",\"email\":\"\",\"member_type\":null,\"medical_insurance\":\"0\",\"achivements\":\"\",\"sports_id\":null,\"other_sports_details\":\"\",\"dharmik_id\":\"1\",\"medical_insurance_text\":\"\",\"life_insurance_text\":\"\",\"sanjeevni\":\"0\",\"life_insurance\":\"0\",\"old_image\":\"DPF0514-13.png\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', '[{\"first_name\":\"test1\",\"second_name\":\"test3\",\"third_name\":\"test3\",\"sex\":\"M\",\"surname_id\":\"3\",\"other_surname_details\":\"\",\"blood_id\":\"1\",\"relation_id\":\"8\",\"other_relation_details\":\"\",\"marriage_type\":\"2\",\"education_id\":\"12\",\"other_education_details\":null,\"occupation_id\":\"2\",\"other_occupation_details\":null,\"dob\":\"2021-07-03\",\"dom\":\"\",\"dod\":null,\"contact\":\"1237894560\",\"altcontact\":\"\",\"email\":\"\",\"member_type\":null,\"medical_insurance\":\"0\",\"achivements\":\"\",\"sports_id\":\"\",\"other_sports_details\":null,\"dharmik_id\":\"4\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"\",\"sanjeevni\":\"0\",\"life_insurance\":\"0\",\"image\":\"DPF0514-13.png\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', 0, 0, '', '', '2021-07-02 19:12:06', '2021-07-03 01:10:58', 1, 'wrong added', '2021-07-02 19:42:15'),
(1446, 532, 'DPF0532-01', 'DPF0532', 'Om', 'Bachalal', 'Yadav', 25, '', NULL, 'M', 5, 22, '', '1985-08-15', NULL, 3, '1995-12-12', '2', '', 6, '', '9004190906', '', '<EMAIL>', NULL, NULL, 'DPF0517-02.jpg', 0, '', 0, 0, '', '1', '', '', 3, NULL, NULL, 1, '', '', 0, 0, '', '', '2021-07-03 06:30:22', NULL, 0, NULL, NULL);
INSERT INTO `family_member` (`id`, `family_id`, `member_no`, `family_no`, `first_name`, `second_name`, `third_name`, `surname_id`, `other_surname_details`, `regd_id`, `sex`, `blood_id`, `relation_id`, `other_relation_details`, `dob`, `dod`, `marriage_type`, `dom`, `education_id`, `other_education_details`, `occupation_id`, `other_occupation_details`, `contact`, `altcontact`, `email`, `live_type`, `member_type`, `image`, `life_insurance`, `life_insurance_text`, `medical_insurance`, `sanjeevni`, `medical_insurance_text`, `sports_id`, `other_sports_details`, `achivements`, `dharmik_id`, `username`, `password`, `fm_status`, `old_value`, `new_value`, `merge_status`, `merge_flag`, `merge_data`, `merge_user_data`, `added_on`, `updated_on`, `deleted`, `delete_reason`, `deleted_on`) VALUES
(1447, 517, 'DPF0517-03', 'DPF0517', 'Sowmya', 'Chhadva', 'Chhadva', 25, NULL, NULL, 'M', 5, 25, NULL, '2012-05-16', '0000-00-00', 2, '', '1', NULL, 10, NULL, '9664428534', NULL, '<EMAIL>', NULL, '25', '14471.png', 0, '', 1, 1, '', '0', NULL, 'na', 1, NULL, NULL, 1, '[{\"first_name\":\"Sowmya\",\"second_name\":\"Chhadva\",\"third_name\":\"Chhadva\",\"sex\":\"M\",\"surname_id\":\"25\",\"other_surname_details\":null,\"blood_id\":\"5\",\"relation_id\":\"25\",\"other_relation_details\":null,\"marriage_type\":\"2\",\"education_id\":\"1\",\"other_education_details\":null,\"occupation_id\":\"10\",\"other_occupation_details\":null,\"dob\":\"2012-05-16\",\"dom\":\"\",\"dod\":\"\",\"contact\":\"9664428534\",\"altcontact\":null,\"email\":\"<EMAIL>\",\"member_type\":\"25\",\"medical_insurance\":\"1\",\"achivements\":\"na\",\"sports_id\":\"0\",\"other_sports_details\":null,\"dharmik_id\":\"1\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"\",\"sanjeevni\":\"1\",\"life_insurance\":\"\",\"image\":\"14471.png\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', '[{\"first_name\":\"Sowmya\",\"second_name\":\"Chhadva\",\"third_name\":\"Chhadva\",\"sex\":\"M\",\"surname_id\":\"25\",\"other_surname_details\":null,\"blood_id\":\"5\",\"relation_id\":\"25\",\"other_relation_details\":null,\"marriage_type\":\"2\",\"education_id\":\"1\",\"other_education_details\":null,\"occupation_id\":\"10\",\"other_occupation_details\":null,\"dob\":\"2012-05-16\",\"dom\":\"\",\"dod\":\"\",\"contact\":\"9664428534\",\"altcontact\":null,\"email\":\"<EMAIL>\",\"member_type\":\"25\",\"medical_insurance\":\"1\",\"achivements\":\"na\",\"sports_id\":\"0\",\"other_sports_details\":null,\"dharmik_id\":\"1\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"\",\"sanjeevni\":\"1\",\"life_insurance\":\"\",\"image\":\"14471.png\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', 0, 0, '', '', '2021-07-03 06:33:16', '2021-08-13 09:17:47', 0, NULL, NULL),
(1448, 532, 'DPF0532-02', 'DPF0532', 'Harsh', 'Jayanti', 'Nanji', 1, '', NULL, 'M', 3, 4, '', '1995-06-04', NULL, 2, NULL, '2,31', '', 6, '', '9028984783', '', '<EMAIL>', NULL, NULL, 'DPF0517-04.jpg', 0, '', 0, 0, '', '7', '', '', 5, 'harsh', '$2a$10$it34YLDVclk0IMynqmvoYurQWRbkYbLJJ8U8jkFFmaZ55nnJqPMfO', 1, '', '', 0, 0, '', '', '2021-07-03 06:35:24', '2021-08-14 14:55:45', 0, NULL, NULL),
(1449, 517, 'DPF0517-05', 'DPF0517', 'Chandan', 'Chirag', 'Shamji', 25, '', NULL, 'F', 6, 28, '', '1985-02-24', NULL, 3, '2010-05-21', '2', '', 4, '', '9664428537', '', '<EMAIL>', NULL, NULL, 'DPF0517-05.jpg', 0, '', 0, 0, '', '3,5', '', '', 6, NULL, NULL, 1, '', '', 0, 0, '', '', '2021-07-03 06:40:53', NULL, 0, NULL, NULL),
(1450, 265, 'DPF0114-04', 'DPF0114', 'Upasana', 'Shwet', 'Mahesh', 106, '', NULL, 'F', 6, 7, '', '1991-05-15', NULL, 3, '2019-12-08', '1', 'Master In Finance', 4, '', '+14254434466', '', '<EMAIL>', NULL, NULL, 'DPF0114-04.jpg', 0, '', 0, 0, '', '9', '', '', 0, NULL, NULL, 1, '', '', 0, 0, '', '', '2021-07-03 12:39:20', NULL, 0, NULL, NULL),
(1451, 514, 'DPF0514-17', 'DPF0514', 'pranv', 'omprakash', 'yadav', 178, NULL, NULL, 'M', 3, 22, NULL, '0000-00-00', '0000-00-00', 2, 'null', '2', NULL, 10, NULL, '9004190907', NULL, '<EMAIL>', 'Live', '22', 'DPF0514-09.jpg', 0, '', 1, 0, 'praanvi ent', '0', NULL, '', 0, NULL, NULL, 1, '[{\"first_name\":\"pranv\",\"second_name\":\"omprakash\",\"third_name\":\"yadav\",\"sex\":\"M\",\"surname_id\":\"178\",\"other_surname_details\":null,\"blood_id\":\"3\",\"relation_id\":\"22\",\"other_relation_details\":null,\"marriage_type\":\"2\",\"education_id\":\"2\",\"other_education_details\":null,\"occupation_id\":\"10\",\"other_occupation_details\":null,\"dob\":\"09-07-2019\",\"dom\":\"null\",\"dod\":\"\",\"contact\":\"9004190907\",\"altcontact\":null,\"email\":\"<EMAIL>\",\"member_type\":\"22\",\"medical_insurance\":\"1\",\"achivements\":\"\",\"sports_id\":\"0\",\"other_sports_details\":null,\"dharmik_id\":\"0\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"praanvi ent\",\"sanjeevni\":\"0\",\"life_insurance\":\"\",\"image\":\"DPF0514-09.jpg\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', '[{\"first_name\":\"pranv\",\"second_name\":\"omprakash\",\"third_name\":\"yadav\",\"sex\":\"M\",\"surname_id\":\"178\",\"other_surname_details\":null,\"blood_id\":\"3\",\"relation_id\":\"22\",\"other_relation_details\":null,\"marriage_type\":\"2\",\"education_id\":\"2\",\"other_education_details\":null,\"occupation_id\":\"10\",\"other_occupation_details\":null,\"dob\":\"09-07-2019\",\"dom\":\"null\",\"dod\":\"\",\"contact\":\"9004190907\",\"altcontact\":null,\"email\":\"<EMAIL>\",\"member_type\":\"22\",\"medical_insurance\":\"1\",\"achivements\":\"\",\"sports_id\":\"0\",\"other_sports_details\":null,\"dharmik_id\":\"0\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"praanvi ent\",\"sanjeevni\":\"0\",\"life_insurance\":\"\",\"image\":\"DPF0514-09.jpg\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', 0, 0, '', '', '2021-08-09 12:53:28', '2021-08-23 12:43:50', 1, 'test', '2021-08-26 19:07:53'),
(1452, 514, 'DPF0514-18', 'DPF0514', 'AJAY UPDATE', 'CHAUHAN', 'CHAUHAN', 1, '', NULL, 'M', 1, 15, '', '2021-12-30', NULL, 2, '', '2', NULL, 2, NULL, '9999999999', '', '<EMAIL>', NULL, NULL, 'DPF0514-18.jpg', 0, '', 1, 1, '', '1,3,7', NULL, 'asdasdasdasdasdad', 3, NULL, NULL, 2, '[{\"first_name\":\"<NAME>\",\"second_name\":\"CHAUHAN\",\"third_name\":\"CHAUHAN\",\"sex\":\"M\",\"surname_id\":\"1\",\"other_surname_details\":\"\",\"blood_id\":\"1\",\"relation_id\":\"15\",\"other_relation_details\":\"\",\"marriage_type\":\"2\",\"education_id\":\"2\",\"other_education_details\":null,\"occupation_id\":\"2\",\"other_occupation_details\":null,\"dob\":\"2021-12-30\",\"dom\":\"\",\"dod\":null,\"contact\":\"9999999999\",\"altcontact\":\"\",\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"1\",\"achivements\":\"asdasdasdasdasdad\",\"sports_id\":\"1,3,7\",\"other_sports_details\":null,\"dharmik_id\":\"3\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"\",\"sanjeevni\":\"1\",\"life_insurance\":\"0\",\"image\":\"DPF0514-18.jpg\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', '[{\"first_name\":\"<NAME>\",\"second_name\":\"CHAUHAN\",\"third_name\":\"CHAUHAN\",\"sex\":\"M\",\"surname_id\":\"1\",\"other_surname_details\":null,\"blood_id\":\"1\",\"relation_id\":\"15\",\"other_relation_details\":null,\"marriage_type\":\"2\",\"education_id\":\"1\",\"other_education_details\":null,\"occupation_id\":\"2\",\"other_occupation_details\":null,\"dob\":\"30-12-2021\",\"dom\":\"\",\"dod\":\"\",\"contact\":\"9999999998\",\"altcontact\":null,\"email\":\"<EMAIL>\",\"member_type\":\"15\",\"medical_insurance\":\"1\",\"achivements\":\"asdasdasdasdasdad\",\"sports_id\":\"0\",\"other_sports_details\":null,\"dharmik_id\":\"3\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"\",\"sanjeevni\":\"1\",\"life_insurance\":\"\",\"image\":\"DPF0514-18.jpg\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', 0, 0, '', '', '2021-08-10 11:11:50', '2021-08-28 08:45:27', 0, NULL, NULL),
(1453, 514, 'DPF0514-19', 'DPF0514', 'sat test', 'yadav', 'yadav', 1, '', NULL, 'M', 1, 4, '', '2021-08-09', NULL, 2, '', '3,13', NULL, 6, NULL, '9004190906', '9664428534', '<EMAIL>', NULL, NULL, 'DPF0514-19.jpg', 0, '', 1, 1, '', '5,6,7,8', NULL, '', 3, NULL, NULL, 1, '[{\"first_name\":\"<NAME>\",\"second_name\":\"yadav\",\"third_name\":\"yadav\",\"sex\":\"M\",\"surname_id\":\"1\",\"other_surname_details\":\"\",\"blood_id\":\"1\",\"relation_id\":\"4\",\"other_relation_details\":\"\",\"marriage_type\":\"2\",\"education_id\":\"3,13\",\"other_education_details\":null,\"occupation_id\":\"6\",\"other_occupation_details\":null,\"dob\":\"2021-08-09\",\"dom\":\"\",\"dod\":null,\"contact\":\"9004190906\",\"altcontact\":\"9664428534\",\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"1\",\"achivements\":\"\",\"sports_id\":\"5,6,7,8\",\"other_sports_details\":null,\"dharmik_id\":\"3\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"\",\"sanjeevni\":\"1\",\"life_insurance\":\"0\",\"image\":\"DPF0514-19.jpg\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', '[{\"first_name\":\"<NAME>\",\"second_name\":\"yadav\",\"third_name\":\"yadav\",\"sex\":\"M\",\"surname_id\":\"1\",\"other_surname_details\":\"\",\"blood_id\":\"1\",\"relation_id\":\"4\",\"other_relation_details\":\"\",\"marriage_type\":\"2\",\"education_id\":\"3,13\",\"other_education_details\":null,\"occupation_id\":\"6\",\"other_occupation_details\":null,\"dob\":\"2021-08-09\",\"dom\":\"\",\"dod\":null,\"contact\":\"9004190906\",\"altcontact\":\"9664428534\",\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"1\",\"achivements\":\"\",\"sports_id\":\"5,6,7,8\",\"other_sports_details\":null,\"dharmik_id\":\"3\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"\",\"sanjeevni\":\"1\",\"life_insurance\":\"0\",\"image\":\"DPF0514-19.jpg\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', 0, 0, '', '', '2021-08-10 11:15:44', '2021-08-10 04:47:50', 1, 'test', '2021-08-10 11:18:12'),
(1454, 514, 'DPF0514-11', 'DPF0514', 'tttm1', 'dvssdv', 'dvssdv', 4, '', NULL, 'M', 3, 24, '', '2021-08-11', '2021-08-11', 2, '2021-08-11', '2', NULL, 2, NULL, '9004190906', '', '<EMAIL>', 'Death', NULL, 'DPF0514-11.jpg', 0, '', 1, 1, '', '0,1,2,3,5,6,7,8,9', NULL, 'vdsvsdvsdvdsv', 1, NULL, NULL, 1, '[{\"first_name\":\"tttm1\",\"second_name\":\"dvssdv\",\"third_name\":\"dvssdv\",\"sex\":\"M\",\"surname_id\":\"4\",\"other_surname_details\":\"\",\"blood_id\":\"3\",\"relation_id\":\"24\",\"other_relation_details\":\"\",\"marriage_type\":\"2\",\"education_id\":\"2\",\"other_education_details\":null,\"occupation_id\":\"2\",\"other_occupation_details\":null,\"dob\":\"2021-08-11\",\"dom\":\"2021-08-11\",\"dod\":null,\"contact\":\"9004190906\",\"altcontact\":\"\",\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"1\",\"achivements\":\"vdsvsdvsdvdsv\",\"sports_id\":\"0,1,2,3,5,6,7,8,9\",\"other_sports_details\":null,\"dharmik_id\":\"1\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"\",\"sanjeevni\":\"1\",\"life_insurance\":\"0\",\"image\":\"DPF0514-11.jpg\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', '[{\"first_name\":\"tttm1\",\"second_name\":\"dvssdv\",\"third_name\":\"dvssdv\",\"sex\":\"M\",\"surname_id\":\"4\",\"other_surname_details\":\"\",\"blood_id\":\"3\",\"relation_id\":\"24\",\"other_relation_details\":\"\",\"marriage_type\":\"2\",\"education_id\":\"2\",\"other_education_details\":null,\"occupation_id\":\"2\",\"other_occupation_details\":null,\"dob\":\"2021-08-11\",\"dom\":\"2021-08-11\",\"dod\":null,\"contact\":\"9004190906\",\"altcontact\":\"\",\"email\":\"<EMAIL>\",\"member_type\":null,\"medical_insurance\":\"1\",\"achivements\":\"vdsvsdvsdvdsv\",\"sports_id\":\"0,1,2,3,5,6,7,8,9\",\"other_sports_details\":null,\"dharmik_id\":\"1\",\"life_insurance_text\":\"\",\"medical_insurance_text\":\"\",\"sanjeevni\":\"1\",\"life_insurance\":\"0\",\"image\":\"DPF0514-11.jpg\",\"m_secondname\":\"\",\"m_thirdname\":\"\",\"m_surname\":\"\",\"m_village\":\"\",\"m_address\":\"\",\"m_type\":\"\",\"m_contact\":\"\",\"m_email\":\"\"}]', 0, 0, '', '', '2021-08-11 09:38:01', '2021-08-11 03:11:51', 1, 'test', '2021-08-13 11:28:02'),
(1455, 539, 'DPF0539-01', 'DPF0539', 'Om', 'Test', 'yadav', 1, NULL, NULL, 'M', 1, 22, NULL, '2021-08-12', NULL, 2, NULL, '8', NULL, 2, NULL, '7020491668', NULL, '<EMAIL>', 'Live', NULL, 'DPF0539-01.png', 0, '', 0, 0, '', '', NULL, 'fdsf', 1, NULL, NULL, 1, '', '', 0, 0, '', '', '2021-08-12 08:35:07', '2021-08-12 14:08:47', 1, 'Family Deleted', '2021-08-23 11:25:57'),
(1456, 540, 'DPF0540-01', 'DPF0540', 'satya', 'prakash', 'yadav', 1, NULL, NULL, 'M', 1, 22, NULL, '2021-08-13', NULL, 2, NULL, '1,6', NULL, 0, NULL, '9004190906', NULL, '<EMAIL>', 'Live', NULL, 'DPF0540-01.png', 0, '', 0, 0, '', '', NULL, 'test', 0, 'satyaprakash', '$2a$10$1i4mIQJo/Jyq9KfrpDiJouw6w58oWG6b9nd4ptH03LGLCmmQ6y97O', 1, '', '', 0, 0, '', '', '2021-08-13 06:26:39', '2021-08-13 18:50:51', 0, NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `family_member_edit`
--
CREATE TABLE `family_member_edit` (
`id` int(11) NOT NULL,
`family_id` int(11) DEFAULT NULL,
`member_no` varchar(15) DEFAULT NULL,
`family_no` varchar(10) DEFAULT NULL,
`first_name` varchar(50) DEFAULT NULL,
`second_name` varchar(50) DEFAULT NULL,
`third_name` varchar(50) DEFAULT NULL,
`surname_id` int(11) DEFAULT NULL,
`other_surname_details` varchar(255) DEFAULT NULL,
`regd_id` varchar(20) DEFAULT NULL,
`sex` char(1) DEFAULT NULL,
`blood_id` int(11) DEFAULT NULL,
`relation_id` int(11) DEFAULT NULL,
`other_relation_details` varchar(255) DEFAULT NULL,
`dob` date DEFAULT NULL,
`dod` date DEFAULT NULL,
`marriage_type` int(11) DEFAULT NULL,
`dom` date DEFAULT NULL,
`education_id` varchar(100) DEFAULT NULL,
`other_education_details` varchar(255) DEFAULT NULL,
`occupation_id` int(11) DEFAULT NULL,
`other_occupation_details` varchar(255) DEFAULT NULL,
`contact` varchar(50) DEFAULT NULL,
`altcontact` varchar(50) DEFAULT NULL,
`email` varchar(100) DEFAULT NULL,
`live_type` varchar(10) DEFAULT NULL,
`member_type` varchar(10) DEFAULT NULL,
`image` varchar(50) DEFAULT 'noimage.jpg',
`life_insurance` tinyint(1) NOT NULL DEFAULT '0',
`life_insurance_text` varchar(255) DEFAULT NULL,
`medical_insurance` tinyint(1) DEFAULT '0',
`sanjeevni` tinyint(1) NOT NULL DEFAULT '0',
`medical_insurance_text` varchar(255) DEFAULT NULL,
`sports_id` varchar(100) DEFAULT NULL,
`other_sports_details` varchar(255) DEFAULT NULL,
`achivements` varchar(255) NOT NULL,
`dharmik_id` int(11) NOT NULL,
`username` varchar(255) DEFAULT NULL,
`password` varchar(255) DEFAULT NULL,
`fm_status` int(11) NOT NULL DEFAULT '0',
`added_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_on` datetime DEFAULT NULL,
`deleted` int(11) NOT NULL DEFAULT '0',
`delete_reason` text,
`deleted_on` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `gallery_image`
--
CREATE TABLE `gallery_image` (
`id` int(11) NOT NULL,
`gal_id` int(11) NOT NULL,
`image` varchar(255) NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `gallery_image`
--
INSERT INTO `gallery_image` (`id`, `gal_id`, `image`, `deleted`) VALUES
(1, 1, '202003220549401.jpg', 0),
(2, 1, '202003220549402.jpg', 0),
(3, 1, '202003220549403.jpg', 0),
(4, 1, '202003220549404.jpg', 0),
(5, 1, '202003220549405.jpg', 0),
(6, 1, '202003220549406.jpg', 0),
(13, 2, '202003220609501.jpg', 0),
(14, 2, '202003220609502.jpg', 0),
(15, 2, '202003220609503.jpg', 0),
(16, 2, '202003220609504.jpg', 0),
(17, 2, '202003220609505.jpg', 0),
(18, 2, '202003220609506.jpg', 0),
(19, 2, '202003220609507.jpg', 0),
(20, 4, '202003230111551.jpg', 0),
(21, 4, '202003230111552.jpg', 0),
(22, 4, '202003230111553.jpg', 0),
(23, 4, '202003230111554.jpg', 0),
(24, 4, '202003230111555.jpg', 0),
(25, 4, '202003230111556.jpg', 0),
(26, 4, '202003230111557.jpg', 0),
(42, 13, '202007091011401.jpg', 0),
(43, 13, '202007091011402.jpg', 0),
(44, 13, '202007091011403.jpg', 0),
(45, 13, '202007091011404.jpg', 0),
(46, 13, '202007091011405.jpg', 0),
(47, 13, '202007091011406.jpg', 0),
(48, 13, '202007091011407.jpg', 0),
(49, 14, '202007101246141.jpg', 0),
(50, 14, '202007101246142.jpg', 0),
(59, 15, '20200713060034.jpg', 0),
(60, 15, '202007130600341.jpg', 0),
(61, 15, '202007130600342.jpg', 0),
(62, 15, '20200713060103.jpg', 0),
(63, 16, '20200713060428.jpg', 0),
(64, 16, '202007130604281.jpg', 0),
(66, 16, '202007130604283.jpg', 0),
(67, 16, '20200713060521.jpg', 0),
(68, 17, '20200725050143.jpg', 0),
(69, 17, '202007250501431.jpg', 0),
(70, 17, '202007250501432.jpg', 0),
(71, 17, '202007250501433.jpg', 0),
(72, 17, '202007250501434.jpg', 0),
(73, 17, '202007250501435.jpg', 0),
(74, 18, '20200729122511.jpeg', 0),
(76, 19, '20200729124208.jpeg', 0),
(77, 19, '202007291242081.jpeg', 0),
(78, 19, '202007291242082.jpeg', 0),
(79, 19, '202007291242083.jpeg', 0),
(80, 19, '202007291242084.jpeg', 0),
(81, 19, '202007291242085.jpeg', 0),
(82, 19, '202007291242086.jpeg', 0),
(83, 19, '202007291242087.jpeg', 0),
(84, 19, '202007291242088.jpeg', 0),
(85, 19, '202007291242089.jpeg', 0),
(86, 19, '2020072912420810.jpeg', 0),
(87, 19, '2020072912420811.jpeg', 0),
(88, 19, '2020072912420812.jpeg', 0),
(89, 6, '20200812115744.jpeg', 0),
(90, 6, '202008121157441.jpeg', 0),
(91, 6, '202008121157442.jpeg', 0),
(92, 6, '202008121157443.jpeg', 0),
(96, 21, '20210310115656.jpg', 0),
(97, 21, '202103101156561.jpg', 0),
(98, 21, '202103101156562.jpg', 0),
(103, 20, '202103110750031.jpg', 0),
(104, 20, '202103110750032.jpg', 0),
(105, 20, '20210311080539.jpg', 0),
(106, 22, '20210312065550.jpg', 0),
(107, 23, '20210622013235.jpg', 0),
(108, 23, '202106220132351.jpg', 0),
(109, 25, '20210622013913.jpg', 0),
(110, 25, '202106220139131.jpg', 0),
(111, 25, '202106220139132.jpg', 0),
(112, 25, '20210622013913.png', 0),
(113, 25, '202106220139133.jpg', 0),
(114, 25, '202106220139134.jpg', 0),
(115, 25, '202106220139135.jpg', 0),
(116, 25, '202106220139136.jpg', 0),
(117, 25, '202106220139137.jpg', 0),
(118, 25, '202106220139138.jpg', 0),
(119, 25, '202106220139139.jpg', 0),
(120, 26, '20210625121045.jpg', 0),
(121, 26, '202106251210451.jpg', 0),
(122, 26, '202106251210452.jpg', 0),
(123, 27, '20210625071518.jpg', 0),
(124, 27, '202106250715181.jpg', 0),
(125, 27, '202106250715182.jpg', 0),
(126, 27, '202106250715183.jpg', 0),
(127, 27, '202106250715184.jpg', 0),
(128, 27, '202106250715185.jpg', 0),
(129, 28, '20210626022132.jpg', 0),
(130, 28, '202106260221321.jpg', 0),
(131, 29, '20210626022235.jpg', 0),
(132, 29, '202106260222351.jpg', 0),
(133, 29, '202106260222352.jpg', 0),
(134, 18, '20210627075741.jpeg', 0),
(135, 18, '202106270757411.jpeg', 0),
(136, 18, '202106270757412.jpeg', 0),
(137, 18, '202106270757413.jpeg', 0),
(138, 18, '202106270757414.jpeg', 0),
(139, 18, '202106270757415.jpeg', 0),
(140, 30, '20210627093359.jpeg', 0),
(141, 30, '202106270933591.jpeg', 0),
(142, 30, '202106270933592.jpeg', 0),
(143, 30, '202106270933593.jpeg', 0),
(144, 31, '20210703114911.JPG', 0),
(145, 31, '202107031149111.JPG', 0),
(146, 31, '202107031149112.JPG', 0),
(147, 31, '202107031149113.JPG', 0),
(148, 32, '20210703053738.JPG', 0),
(149, 32, '202107030537381.JPG', 0),
(150, 32, '202107030537382.JPG', 0),
(151, 32, '202107030537383.JPG', 0),
(152, 33, '20210725035912.jpg', 0),
(153, 33, '202107250359121.jpg', 0),
(154, 33, '20210725035912.png', 0),
(155, 34, '20210726024507.jpeg', 0),
(156, 34, '202107260245071.jpeg', 0),
(157, 34, '202107260245072.jpeg', 0),
(158, 34, '202107260245073.jpeg', 0),
(159, 34, '202107260245074.jpeg', 0),
(160, 34, '202107260245075.jpeg', 0),
(161, 34, '202107260245076.jpeg', 0),
(162, 34, '202107260245077.jpeg', 0),
(163, 35, '20210809070804.jpg', 0),
(164, 35, '202108090708041.jpg', 0),
(165, 35, '202108090708042.jpg', 0),
(166, 35, '202108090708043.jpg', 0),
(167, 35, '202108090708044.jpg', 0),
(168, 36, '20210812024813.jpg', 0),
(169, 36, '202108120248131.jpg', 0),
(170, 36, '202108120248132.jpg', 0);
-- --------------------------------------------------------
--
-- Table structure for table `keys`
--
CREATE TABLE `keys` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`key` varchar(40) NOT NULL,
`level` int(11) NOT NULL,
`ignore_limits` tinyint(1) NOT NULL DEFAULT '0',
`is_private_key` tinyint(1) NOT NULL DEFAULT '0',
`ip_addresses` text,
`date_created` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `keys`
--
INSERT INTO `keys` (`id`, `user_id`, `key`, `level`, `ignore_limits`, `is_private_key`, `ip_addresses`, `date_created`) VALUES
(1, 0, 'deepa@123', 0, 0, 0, NULL, '2017-10-12 13:34:33');
-- --------------------------------------------------------
--
-- Table structure for table `map_b2b_image`
--
CREATE TABLE `map_b2b_image` (
`id` int(11) NOT NULL,
`bid` int(11) NOT NULL,
`image` varchar(155) NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `map_b2b_image`
--
INSERT INTO `map_b2b_image` (`id`, `bid`, `image`, `deleted`) VALUES
(1, 2, 'image_20200604064921.jpg', 0),
(2, 2, 'image_202006040649211.jpg', 0),
(3, 2, 'image_202006040649212.jpg', 0),
(4, 4, 'image_20200606090914.jpg', 0),
(5, 4, 'image_202006060909141.jpg', 0),
(6, 4, 'image_202006060909142.jpg', 0),
(7, 5, 'image_20200606091148.jpg', 0),
(8, 5, 'image_202006060911481.jpg', 0),
(9, 5, 'image_202006060911482.jpg', 0),
(10, 6, 'image_20200708043422.jpg', 0),
(11, 7, 'image_20200708043450.jpg', 0),
(12, 8, 'image_20200708044318.png', 0),
(13, 9, 'image_20200708044358.png', 0),
(14, 10, 'image_20200708044435.png', 0),
(15, 11, 'image_20200708044504.png', 0),
(16, 12, 'image_20200708044533.png', 0),
(17, 13, 'image_20210310120439.jpg', 0),
(18, 13, 'image_20210312070656.jpg', 0),
(19, 14, 'image_20210312073721.png', 0),
(20, 14, 'image_20210323114817.jpg', 0),
(21, 14, 'image_202103231148171.jpg', 0),
(22, 14, 'image_202103231148172.jpg', 0),
(23, 14, 'image_202103231148173.jpg', 0),
(24, 14, 'image_202103231148174.jpg', 0),
(25, 15, 'image_20210610083656.png', 0),
(26, 16, 'image_20210619112137.jpg', 0),
(27, 17, 'image_20210619113654.jpg', 0),
(28, 17, 'image_202106191136541.jpg', 0),
(29, 17, 'image_202106191136542.jpg', 0),
(30, 17, 'image_202106191136543.jpg', 0),
(31, 17, 'image_202106191136544.jpg', 0),
(32, 18, 'image_20210619115629.png', 0),
(33, 20, 'image_20210619120526.jpg', 0),
(34, 21, 'image_20210622091544.png', 0),
(35, 21, 'image_202106220915441.png', 0),
(36, 22, 'image_20210625020827.jpg', 0),
(37, 22, 'image_202106250208271.jpg', 0),
(38, 22, 'image_202106250208272.jpg', 0),
(39, 22, 'image_202106250208273.jpg', 0),
(40, 22, 'image_202106250208274.jpg', 0),
(41, 23, 'image_20210626054220.jpg', 0),
(42, 23, 'image_202106260542201.jpg', 0),
(43, 23, 'image_202106260542202.jpg', 0),
(44, 23, 'image_202106260542203.jpg', 0),
(45, 23, 'image_202106260542204.jpg', 0),
(46, 24, 'image_20210626085009.png', 0),
(47, 25, 'image_20210626092706.png', 0),
(48, 26, 'image_20210626094837.jpg', 0),
(49, 27, 'image_20210626101347.jpg', 0),
(50, 27, 'image_202106261013471.jpg', 0),
(51, 27, 'image_202106261013472.jpg', 0),
(52, 27, 'image_202106261013473.jpg', 0),
(53, 27, 'image_202106261013474.jpg', 0),
(54, 29, 'image_20210701092736.jpg', 0),
(55, 29, 'image_20210701092736.jpeg', 0),
(56, 29, 'image_20210701092736.png', 0),
(57, 30, 'image_20210703060603.jpg', 0),
(58, 30, 'image_202107030606031.jpg', 0),
(59, 30, 'image_202107030606032.jpg', 0),
(60, 31, 'image_20210703070441.jpg', 0),
(61, 31, 'image_202107030704411.jpg', 0),
(62, 31, 'image_202107030704412.jpg', 0),
(63, 31, 'image_202107030704413.jpg', 0),
(64, 31, 'image_202107030704414.jpg', 0),
(65, 32, 'image_20210703114604.jpg', 0),
(66, 32, 'image_202107031146041.jpg', 0),
(67, 32, 'image_202107031146042.jpg', 0),
(68, 32, 'image_202107031146043.jpg', 0),
(69, 32, 'image_202107031146044.jpg', 0),
(70, 33, 'image_20210724080846.jpg', 0),
(71, 33, 'image_202107240808461.jpg', 0),
(72, 33, 'image_202107240808462.jpg', 0),
(73, 33, 'image_202107240808463.jpg', 0),
(74, 33, 'image_202107240808464.jpg', 0),
(75, 34, 'image_20210726085438.jpeg', 0),
(76, 34, 'image_202107260854381.jpeg', 0),
(77, 34, 'image_202107260854382.jpeg', 0),
(78, 34, 'image_202107260854383.jpeg', 0),
(79, 35, 'image_20210726085908.jpg', 0),
(80, 35, 'image_202107260859081.jpg', 0),
(81, 35, 'image_202107260859082.jpg', 0),
(82, 35, 'image_202107260859083.jpg', 0),
(83, 36, 'image_20210809012118.png', 0),
(84, 37, 'image_20210810010919.jpg', 0),
(85, 37, 'image_202108100109191.jpg', 0),
(86, 38, 'image_20210810011013.jpg', 0),
(87, 38, 'image_202108100110131.jpg', 0),
(88, 39, 'image_20210810011214.jpg', 0),
(89, 39, 'image_202108100112141.jpg', 0),
(90, 40, 'image_20210810012412.jpg', 0),
(91, 40, 'image_202108100124121.jpg', 0),
(92, 41, 'image_20210810013628.jpg', 0),
(93, 41, 'image_20210810013628.png', 0),
(94, 41, 'image_202108100136281.jpg', 0),
(95, 41, 'image_202108100136282.jpg', 0),
(96, 42, 'image_20210810013947.jpeg', 0),
(97, 42, 'image_202108100139471.jpeg', 0),
(98, 42, 'image_20210810013947.jpg', 0),
(99, 43, 'image_20210811073810.jpg', 0),
(100, 43, 'image_202108110738101.jpg', 0),
(101, 43, 'image_202108110738102.jpg', 0),
(102, 44, 'image_20210811074944.jpg', 0),
(103, 44, 'image_202108110749441.jpg', 0),
(104, 44, 'image_202108110749442.jpg', 0),
(105, 44, 'image_202108110749443.jpg', 0),
(106, 46, 'image_20210812080821.png', 0),
(107, 46, 'image_202108120808211.png', 0),
(108, 46, 'image_202108120808212.png', 0),
(109, 46, 'image_202108120808213.png', 0),
(110, 46, 'image_202108120808214.png', 0),
(111, 123, 'image_202108120757300.jpg', 0),
(112, 123, 'image_202108120757301.jpg', 0),
(113, 123, 'image_202108120757302.jpg', 0),
(114, 123, 'image_202108120759190.jpg', 0),
(115, 123, 'image_202108120759191.jpg', 0),
(116, 123, 'image_202108120759192.jpg', 0),
(117, 123, 'image_202108120759540.jpg', 0),
(118, 123, 'image_202108120759541.jpg', 0),
(119, 123, 'image_202108120759542.jpg', 0),
(120, 47, 'image_202108120802510.jpg', 0),
(121, 47, 'image_202108120802511.jpg', 0),
(122, 47, 'image_202108120802512.jpg', 0),
(123, 48, 'image_202108121118240.jpg', 0),
(124, 48, 'image_202108121118241.jpg', 0),
(125, 48, 'image_202108121118242.jpg', 0),
(126, 56, 'image_202108121150410.jpg', 0),
(127, 56, 'image_202108121150411.jpg', 0),
(128, 56, 'image_202108121150412.jpg', 0),
(129, 64, 'image_202108121155310.jpg', 0),
(130, 64, 'image_202108121155311.jpg', 0),
(131, 64, 'image_202108121155312.jpg', 0),
(132, 65, 'image_202108141049200.jpg', 0),
(133, 65, 'image_202108141049201.jpg', 0),
(134, 65, 'image_202108141049202.jpg', 0),
(135, 66, 'image_202108230157330.jpg', 0),
(136, 66, 'image_202108230157331.jpg', 0),
(137, 66, 'image_202108230157332.jpg', 0),
(138, 66, 'image_202108230157333.jpg', 0),
(139, 67, 'image_202108270631000.jpg', 0),
(140, 68, 'image_202108270631040.jpg', 0),
(141, 69, 'image_202108270631150.jpg', 0),
(142, 70, 'image_202108270656360.jpg', 0),
(143, 70, 'image_202108270656361.jpg', 0);
-- --------------------------------------------------------
--
-- Table structure for table `map_blog_img`
--
CREATE TABLE `map_blog_img` (
`id` int(11) NOT NULL,
`bid` int(11) NOT NULL,
`image` varchar(55) NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `map_blog_img`
--
INSERT INTO `map_blog_img` (`id`, `bid`, `image`, `deleted`) VALUES
(1, 1, 'image_20200503053959.jpg', 0),
(2, 1, 'image_202005030539591.jpg', 0),
(3, 2, 'image_20200503054351.jpg', 0),
(4, 2, 'image_20200503054351.png', 0),
(5, 2, 'image_202005030543511.jpg', 0),
(6, 4, 'image_20200708035337.jpg', 0),
(7, 1, 'image_20200726082920.jpg', 0),
(8, 1, 'image_20200726082921.jpg', 0),
(9, 5, 'image_20210310114909.jpg', 0),
(10, 6, 'image_20210311111259.jpg', 0),
(11, 7, 'image_20210312063620.png', 0),
(12, 8, 'image_20210324095538.jpg', 0),
(13, 9, 'image_20210324095647.jpg', 0),
(14, 9, 'image_20210324095705.jpg', 0),
(15, 10, 'image_20210324095949.jpeg', 0),
(16, 11, 'image_20210324100143.jpeg', 0),
(17, 12, 'image_20210324100325.jpg', 0),
(18, 12, 'image_202103241003251.jpg', 0),
(19, 13, 'image_20210324101141.jpg', 0),
(20, 14, 'image_20210610104833.png', 0),
(21, 15, 'image_20210625071348.jpg', 0),
(22, 17, 'image_20210626020741.jpg', 0),
(23, 18, 'image_20210627091314.jpeg', 0),
(24, 19, 'image_20210701034108.jpg', 0),
(25, 20, 'image_20210701034122.jpg', 0),
(26, 21, 'image_20210701034137.jpg', 0),
(27, 22, 'image_20210703112857.jpg', 0),
(28, 24, 'image_20210726021450.jpg', 0),
(29, 25, 'image_20210726021643.jpg', 0),
(30, 26, 'image_20210729061225.png', 0),
(31, 27, 'image_20210729061702.png', 0),
(32, 30, 'image_20210729064144.jpg', 0),
(33, 31, 'image_20210809062549.jpg', 0),
(34, 32, 'image_20210810045443.jpg', 0),
(35, 33, 'image_20210811012552.jpg', 0),
(36, 34, 'image_20210811015021.jpg', 0),
(37, 35, 'image_20210811034817.jpg', 0),
(38, 35, 'image_202108110348171.jpg', 0),
(39, 35, 'image_202108110348172.jpg', 0),
(40, 36, 'image_20210811060100.png', 0),
(41, 37, 'image_20210812105449.jpg', 0),
(42, 37, 'image_202108121054491.jpg', 0),
(43, 37, 'image_202108121054492.jpg', 0),
(44, 38, 'image_20210812105802.jpg', 0),
(45, 38, 'image_202108121058021.jpg', 0),
(46, 38, 'image_202108121058022.jpg', 0),
(47, 40, 'blog_202108180843580.jpg', 0),
(48, 40, 'blog_202108180843581.jpg', 0),
(49, 40, 'blog_202108180843582.jpg', 0),
(50, 41, 'blog_202108230211450.jpg', 0),
(51, 41, 'blog_202108230211451.jpg', 0),
(52, 41, 'blog_202108230211452.jpg', 0),
(53, 41, 'blog_202108230211453.jpg', 0),
(54, 41, 'blog_202108230211454.jpg', 0),
(55, 41, 'blog_202108230211455.jpg', 0),
(56, 41, 'blog_202108230211456.jpg', 0),
(57, 43, 'blog_202108280830070.jpg', 0),
(58, 43, 'blog_202108280830071.jpg', 0),
(59, 43, 'blog_202108280830072.jpg', 0);
-- --------------------------------------------------------
--
-- Table structure for table `map_helpus_image`
--
CREATE TABLE `map_helpus_image` (
`id` int(255) NOT NULL,
`hid` int(255) NOT NULL,
`image` varchar(30) NOT NULL,
`deleted` int(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `map_helpus_image`
--
INSERT INTO `map_helpus_image` (`id`, `hid`, `image`, `deleted`) VALUES
(4, 8, 'image_20210729055440.jpeg', 0),
(5, 8, 'image_202107290554401.jpeg', 0),
(6, 8, 'image_20210729055440.jpg', 0),
(7, 9, 'image_20210729063044.jpg', 0),
(8, 9, 'image_202107290630441.jpg', 0),
(9, 9, 'image_202107290630442.jpg', 0),
(10, 10, 'image_20210731112607.jpg', 0),
(11, 10, 'image_202107311126071.jpg', 0),
(12, 10, 'image_202107311126072.jpg', 0),
(13, 11, 'image_20210731071014.png', 0),
(14, 11, 'image_202107310710141.png', 0),
(15, 11, 'image_202107310710142.png', 0),
(16, 12, 'image_20210802124326.jpeg', 0),
(17, 12, 'image_202108021243261.jpeg', 0),
(18, 12, 'image_20210802124326.jpg', 0),
(19, 13, 'image_20210809055531.jpeg', 0),
(20, 13, 'image_20210809055531.jpg', 0),
(21, 13, 'image_20210809055531.png', 0),
(22, 14, 'image_20210809061718.jpg', 0),
(23, 14, 'image_202108090617181.jpg', 0),
(24, 14, 'image_202108090617182.jpg', 0),
(25, 15, 'image_20210811125520.jpg', 0),
(26, 15, 'image_202108111255201.jpg', 0),
(27, 15, 'image_202108111255202.jpg', 0),
(28, 16, 'image_20210811033843.jpg', 0),
(29, 16, 'image_202108110338431.jpg', 0),
(30, 16, 'image_202108110338432.jpg', 0),
(31, 41, 'image_20210812015224.jpg', 0),
(32, 41, 'image_202108120152241.jpg', 0),
(33, 41, 'image_202108120152242.jpg', 0),
(34, 42, 'ajay_202108131211120.jpg', 0),
(35, 43, 'ajay_202108141234470.jpg', 0),
(36, 43, 'ajay_202108141234471.jpg', 0),
(37, 43, 'ajay_202108141234472.jpg', 0),
(38, 44, 'ajay_202108141236160.jpg', 0),
(39, 44, 'ajay_202108141236161.jpg', 0),
(40, 44, 'ajay_202108141236162.jpg', 0),
(41, 45, 'ajay_202108140946100.jpg', 0),
(42, 45, 'ajay_202108140946101.jpg', 0),
(43, 45, 'ajay_202108140946102.jpg', 0),
(44, 46, 'image_20210814013121.jpg', 0),
(45, 47, 'image_20210814064547.jpg', 0),
(46, 47, 'image_202108140645471.jpg', 0),
(47, 49, 'ajay_202108190509570.jpg', 0),
(48, 49, 'ajay_202108190509571.jpg', 0),
(49, 49, 'ajay_202108190509572.jpg', 0),
(50, 50, 'ajay_202108230247510.jpg', 0),
(51, 50, 'ajay_202108230247511.jpg', 0),
(52, 50, 'ajay_202108230247512.jpg', 0);
-- --------------------------------------------------------
--
-- Table structure for table `maran_nondh`
--
CREATE TABLE `maran_nondh` (
`id` int(11) NOT NULL,
`fullname` varchar(200) NOT NULL,
`family_no` varchar(55) NOT NULL,
`family_id` int(11) NOT NULL,
`family_person` int(11) NOT NULL,
`description` text NOT NULL,
`date` date NOT NULL,
`contact` varchar(200) NOT NULL,
`image` varchar(255) NOT NULL,
`deleted` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `maran_nondh`
--
INSERT INTO `maran_nondh` (`id`, `fullname`, `family_no`, `family_id`, `family_person`, `description`, `date`, `contact`, `image`, `deleted`) VALUES
(2, 'om bachchalal bachchalal ', 'DPF0514', 514, 1397, 'In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content. Lorem ipsum may be used as a placeholder before final copy is available. In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content. Lorem ipsum may be used as a placeholder before final copy is available.', '2021-08-12', 'pranv - 9004190906,AJAY - 9999999999,tttm1 - 9004190906', '1ca5c19bcda4cd936b286fa271180c2f.png', 0),
(4, '<NAME> ', 'DPF0514', 514, 1398, 'Death', '2021-08-14', 'om - 9004190906,Bindu - 9004190906', '763807a2fa9bb4edba51abe10455ff8c.jpg', 0);
-- --------------------------------------------------------
--
-- Table structure for table `master_admin`
--
CREATE TABLE `master_admin` (
`id` int(11) NOT NULL,
`full_name` varchar(255) NOT NULL,
`username` varchar(250) DEFAULT NULL,
`email` varchar(255) NOT NULL,
`password` text,
`activated` tinyint(1) NOT NULL DEFAULT '1',
`added_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_admin`
--
INSERT INTO `master_admin` (`id`, `full_name`, `username`, `email`, `password`, `activated`, `added_on`) VALUES
(1, 'Administrator', 'admin', '<EMAIL>', <PASSWORD>', 1, '2017-11-04 11:56:25'),
(2, 'Ajay', '<PASSWORD>', '<EMAIL>', <PASSWORD>$C<PASSWORD>4<PASSWORD>ZE.<PASSWORD>', 1, '2021-06-12 19:51:43'),
(3, 'Deepak', '<PASSWORD>', '<EMAIL>', <PASSWORD>$4W5aK/x74va77rOnES<PASSWORD>6<PASSWORD>.gr<PASSWORD>6S', 1, '2021-06-12 19:51:43');
-- --------------------------------------------------------
--
-- Table structure for table `master_admin_log`
--
CREATE TABLE `master_admin_log` (
`id` int(11) NOT NULL,
`user_id` varchar(45) DEFAULT NULL,
`user_name` varchar(45) DEFAULT NULL,
`type` varchar(45) DEFAULT NULL,
`details` text,
`date_time` varchar(45) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `master_admin_log`
--
INSERT INTO `master_admin_log` (`id`, `user_id`, `user_name`, `type`, `details`, `date_time`) VALUES
(5, '2', 'ajay', 'donor', 'New Donation Added = DATA: {\"donor_title\":\"sadasd\",\"donor_image\":\"38c2c43aab5cc8687648e8df4ab88f09.png\",\"category\":\"main\"}', '15-06-2021 12:46:43AM'),
(6, '2', 'ajay', '<NAME>', 'New ', '15-06-2021 01:06:14AM'),
(7, '3', 'deepak', 'mar<NAME>', 'New ', '15-06-2021 06:01:05PM'),
(8, '3', 'deepak', '<NAME>', 'New ', '15-06-2021 06:01:35PM'),
(9, '3', 'deepak', '<NAME>', 'New ', '15-06-2021 06:07:55PM'),
(10, '2', 'ajay', '<NAME>', 'New ', '16-06-2021 01:36:57AM'),
(11, '2', 'ajay', 'donor', 'New Donation Added = DATA: {\"donor_title\":\"asdasdasdasd\",\"donor_image\":\"e8446a1130a2fe76bf13232eff60febb.png\",\"category\":\"sports\"}', '16-06-2021 01:48:42AM'),
(12, '1', 'admin', '<NAME>', 'New ', '17-06-2021 07:34:25PM'),
(13, '1', 'admin', '<NAME>', 'New ', '19-06-2021 06:40:17PM'),
(14, '1', 'admin', 'maran nondh', 'New ', '19-06-2021 06:41:57PM'),
(15, '1', 'admin', 'maran nondh', 'New ', '19-06-2021 06:50:36PM'),
(16, '1', 'admin', 'maran nondh', 'New ', '19-06-2021 06:58:48PM'),
(17, '1', 'admin', 'donor', 'New Donation Added = DATA: {\"donor_title\":\"chirag\",\"donor_image\":\"66441fc32bd2ad9c85becc66bd3ac1a8.jpg\",\"category\":\"main\"}', '22-06-2021 12:25:40PM'),
(18, '1', 'admin', 'donor', 'New Donation Added = DATA: {\"donor_title\":\"PSD Donor Card\",\"donor_image\":\"043e91965b0ac109f3fc9ce903aa7b8e.jpg\",\"category\":\"main\"}', '25-06-2021 06:50:29PM'),
(19, '1', 'admin', 'maran nondh', 'New ', '25-06-2021 07:42:21PM'),
(20, '1', 'admin', 'maran nondh', 'New ', '26-06-2021 09:11:34AM'),
(21, '1', 'admin', 'maran nondh', 'New ', '27-06-2021 04:58:16PM'),
(22, '1', 'admin', 'saadri', 'New member as asaadri added', '27-06-2021 05:00:53PM'),
(23, '1', 'admin', 'saadri', 'New member as asaadri added', '27-06-2021 06:03:37PM'),
(24, '1', 'admin', 'saadri', 'New member as asaadri added', '27-06-2021 06:07:01PM'),
(25, '1', 'admin', 'maran nondh', 'New ', '27-06-2021 08:10:16PM'),
(26, '1', 'admin', 'saadri', 'New member as asaadri added', '27-06-2021 08:11:48PM'),
(27, '1', 'admin', 'saadri', 'New member as asaadri added', '02-07-2021 01:59:26PM'),
(28, '1', 'admin', 'maran nondh', 'New ', '03-07-2021 12:24:09PM'),
(29, '1', 'admin', 'donor', 'New Donation Added = DATA: {\"donor_title\":\"test1\",\"donor_image\":\"77d64397d011ac7e6843d7cd8b74297f.jpg\",\"category\":\"main\"}', '26-07-2021 01:14:56PM'),
(30, '1', 'admin', 'donor', 'New Donation Added = DATA: {\"donor_title\":\"temt\",\"donor_image\":\"9f1a7f52c6b1b4a60079ee656ae2b4e2.jpg\",\"category\":\"main\"}', '26-07-2021 01:16:03PM'),
(31, '1', 'admin', 'donor', 'New Donation Added = DATA: {\"donor_title\":\"the animator\",\"donor_image\":\"c10a68f7265c57b5fe4a8257896b36f0.png\",\"category\":\"main\"}', '09-08-2021 07:10:00PM'),
(32, '1', 'admin', 'donor', 'New Donation Added = DATA: {\"donor_title\":\"the animator\",\"donor_image\":\"d03c23b03843f6c7594c819c1967d59c.jpg\",\"category\":\"main\"}', '09-08-2021 07:11:05PM'),
(33, '1', 'admin', 'maran nondh', 'New ', '09-08-2021 07:18:20PM'),
(34, '1', 'admin', 'saadri', 'New member as asaadri added', '09-08-2021 07:23:53PM'),
(35, '1', 'admin', 'maran nondh', 'New ', '10-08-2021 05:30:12PM'),
(36, '1', 'admin', 'maran nondh', 'New ', '10-08-2021 06:14:45PM'),
(37, '1', 'admin', 'saadri', 'New member as asaadri added', '10-08-2021 06:22:59PM'),
(38, '1', 'admin', 'saadri', 'New member as asaadri added', '11-08-2021 02:55:42PM'),
(39, '1', 'admin', 'maran nondh', 'New ', '11-08-2021 03:01:38PM'),
(40, '1', 'admin', 'saadri', 'New member as asaadri added', '11-08-2021 07:34:46PM'),
(41, '1', 'admin', 'saadri', 'New member as asaadri added', '11-08-2021 07:45:27PM'),
(42, '1', 'admin', 'saadri', 'New member as asaadri added', '11-08-2021 07:46:59PM'),
(43, '1', 'admin', 'maran nondh', 'New ', '11-08-2021 08:03:07PM'),
(44, '1', 'admin', 'maran nondh', 'New ', '11-08-2021 08:04:08PM'),
(45, '1', 'admin', 'saadri', 'New member as asaadri added', '12-08-2021 11:02:10AM'),
(46, '1', 'admin', 'saadri', 'New member as asaadri added', '12-08-2021 11:03:53AM'),
(47, '1', 'admin', 'maran nondh', 'New ', '12-08-2021 11:06:51AM'),
(48, '1', 'admin', 'maran nondh', 'New ', '12-08-2021 11:09:00AM'),
(49, '1', 'admin', 'maran nondh', 'New ', '12-08-2021 11:10:53AM'),
(50, '1', 'admin', 'donor', 'New Donation Added = DATA: {\"donor_title\":\"test om\",\"donor_image\":\"0d03f9023b8672fda8529a6482bf650c.png\",\"category\":\"main\"}', '12-08-2021 01:40:51PM'),
(51, '1', 'admin', 'maran nondh', 'New ', '12-08-2021 04:37:38PM'),
(52, '1', 'admin', 'maran nondh', 'New ', '12-08-2021 04:40:36PM'),
(53, '1', 'admin', 'maran nondh', 'New ', '12-08-2021 07:10:22PM'),
(54, '1', 'admin', 'maran nondh', 'New ', '14-08-2021 07:29:27PM');
-- --------------------------------------------------------
--
-- Table structure for table `master_area`
--
CREATE TABLE `master_area` (
`id` int(11) NOT NULL,
`area` varchar(55) NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_area`
--
INSERT INTO `master_area` (`id`, `area`, `deleted`) VALUES
(1, 'Andheri', 0),
(2, 'Malad', 0),
(3, 'Dadar', 0),
(4, 'Ghatkopar', 0),
(5, 'Goregaon', 0),
(6, 'Borivali', 0),
(7, '<NAME>', 0),
(8, '<NAME>', 0),
(9, 'Bhayandar', 0),
(10, 'Bandra', 0),
(11, 'Dahisar', 0),
(12, 'Jogeshwari', 0),
(13, 'Juhu', 0),
(14, 'Kandivali', 0),
(15, 'Khar', 0),
(16, 'Santacruz', 0),
(17, 'Vasai', 0),
(18, 'Virar', 0),
(19, 'Vileparle', 0),
(20, 'Bhandup', 0),
(21, 'Kanjurmarg', 0),
(22, 'Kurla', 0),
(23, 'Mulund', 0),
(24, 'Nahur', 0),
(25, 'Powai', 0),
(26, 'Vidhayavihar', 0),
(27, 'Vikroli', 0),
(28, 'Chembur', 0),
(29, 'Govandi', 0),
(30, 'Mankhurd', 0),
(31, 'Trombay', 0),
(32, '<NAME>', 0),
(33, 'Byculla', 0),
(34, 'Colaba', 0),
(35, 'Fort', 0),
(36, 'Girgaon', 0),
(37, 'Kalbadevi', 0),
(38, 'Kamathipura', 0),
(39, 'Parel', 0),
(40, 'Tardeo', 0),
(41, 'Matunga', 0),
(42, 'Nalasopara', 0),
(43, 'Naigaon', 0),
(44, 'Deonar', 0),
(45, 'Churchgate', 0),
(46, 'Bhuleshwar', 0),
(47, '<NAME>', 0),
(48, 'Currey Road', 0),
(49, 'Mahalaxmi', 0),
(50, '<NAME>', 0),
(51, '<NAME>', 0),
(52, '<NAME>', 0),
(53, 'Prabhadevi', 0),
(54, 'Sion', 0),
(55, 'Mumbai Central', 0),
(56, 'Walkeshwar', 0),
(57, 'Worli', 0),
(58, 'Thane', 0),
(59, 'Dombivali', 0),
(60, 'Ambivali', 0),
(61, 'Dharavi', 0),
(62, '<NAME>', 0),
(63, 'bhuj', 1),
(64, 'Test 1', 1),
(65, 'test1', 1);
-- --------------------------------------------------------
--
-- Table structure for table `master_b2b`
--
CREATE TABLE `master_b2b` (
`id` int(11) NOT NULL,
`memid` int(11) NOT NULL,
`firm_name` varchar(55) NOT NULL,
`catergory` int(11) NOT NULL,
`description` text,
`logo` varchar(55) NOT NULL,
`visitingcard` varchar(55) DEFAULT NULL,
`video` varchar(55) DEFAULT NULL,
`pdf` varchar(55) NOT NULL,
`website` varchar(255) DEFAULT NULL,
`facebook` varchar(155) DEFAULT NULL,
`instagram` varchar(155) DEFAULT NULL,
`twitter` varchar(155) DEFAULT NULL,
`youtube` varchar(155) DEFAULT NULL,
`skype_id` varchar(155) DEFAULT NULL,
`can_reason` text NOT NULL,
`whatsapp_number` varchar(20) DEFAULT NULL,
`subscription` varchar(2) DEFAULT NULL,
`contact_person` varchar(155) DEFAULT NULL,
`contact_number` varchar(155) NOT NULL,
`email` varchar(155) DEFAULT NULL,
`address` text,
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0 pending, 1 Approved, 2 Reject',
`created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`approve_date` datetime DEFAULT NULL,
`expiry_date` date DEFAULT NULL,
`uploaded_by` varchar(55) DEFAULT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0',
`ip` varchar(55) NOT NULL,
`client` varchar(5) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_b2b`
--
INSERT INTO `master_b2b` (`id`, `memid`, `firm_name`, `catergory`, `description`, `logo`, `visitingcard`, `video`, `pdf`, `website`, `facebook`, `instagram`, `twitter`, `youtube`, `skype_id`, `can_reason`, `whatsapp_number`, `subscription`, `contact_person`, `contact_number`, `email`, `address`, `status`, `created_date`, `approve_date`, `expiry_date`, `uploaded_by`, `deleted`, `ip`, `client`) VALUES
(17, 1, 'VITAL ELECTRONICS AND MANUFACTURING CO', 21, 'VITAL ELECTRONICS & MANUFACTURING CO. (VEMCO) a partnership firm offers cost effective turnkey operations for electronic assemblies to the highest quality and workmanship standards covering Concurrent Engineering, Sourcing, Printed Circuit Board Assemblies, Electromechanical Assembly, Testing and Packaging', 'logo_20210619113654.jpg', 'vc_20210619113654.jpg', 'vital.mp4', 'VEMCO_20_1.pdf', 'https://www.vitalelectronics.co.in', 'https://www.facebook.com/facebook_id', 'https://www.instagram.com/instagram_id/', 'https://twitter.com/twitter_id', NULL, '', '', '9820419340', '4', '<NAME>', '27610218', '<EMAIL>', 'VITAL ELECTRONICS AND MANUFACTURING CO, EL-104, Electronic Zone, T.T.C Industrial Area, M I D C, Mahape, New Mumbai, Maharashtra – 400710', 1, '2021-06-19 11:36:54', '2021-06-19 00:00:00', '0000-00-00', 'Admin', 0, '172.16.31.10', 'web'),
(32, 1, '<NAME>', 36, 'Suvidha into readymade garments', 'logo_20210703114604.jpg', 'vc_20210703114604.jpg', 'video_20210703114604.mp4', 'pdf_20210703114604.pdf', 'https://suvidhafashion.com/', '', '', '', NULL, '', '', '09619156434', '4', '<NAME>', '09619156434', '<EMAIL>', 'Vasant Niwas Building, Railway Station, ground,first 1, 9, Ranade Rd, opp. Dadar, Mumbai, Maharashtra 400028', 1, '2021-07-03 11:46:04', '2021-07-03 00:00:00', '2022-07-03', 'Harsh N N', 0, '192.168.3.11', 'web'),
(33, 1, 'THE ANIMATOR', 1, 'iuiuyhuih', 'logo_20210724080846.jpg', 'vc_20210724080846.jpg', 'video_20210724080846.mp4', 'pdf_20210724080846.pdf', '#', '#', '#', '#', NULL, '#', '', '09619156434', '1', '<NAME>', '09619156434', '<EMAIL>', 'Shop no 172,\r\nBldg No 83', 0, '2021-07-24 20:08:46', NULL, NULL, '<NAME>', 0, '192.168.127.12', 'web'),
(57, 1397, 'Business Name', 1, 'Description', '', NULL, NULL, '', 'www.link.com', 'www.link.com', 'www.link.com', 'www.link.com', NULL, 'vvghj', '', '24578', '1', 'Contact Person', '0123456789', '<EMAIL>', 'AddressAddressAddressAddressAddressAddress', 0, '2021-08-12 18:22:16', NULL, NULL, 'om bachchalal bachchalal', 0, '', 'POCO '),
(58, 1397, 'Business Name', 1, 'Description', 'logo_2021081211525515.jpg', NULL, NULL, '', 'www.link.com', 'www.link.com', 'www.link.com', 'www.link.com', NULL, 'vvghj', '', '24578', '1', 'Contact Person', '0123456789', '<EMAIL>', 'AddressAddressAddressAddressAddressAddress', 0, '2021-08-12 18:22:55', NULL, NULL, 'om bachchalal bachchalal', 0, '', 'POCO '),
(59, 1397, 'Business Name', 1, 'Description', 'logo_2021081211531478.jpg', 'visitingcard_2021081211531438.jpg', NULL, '', 'www.link.com', 'www.link.com', 'www.link.com', 'www.link.com', NULL, 'vvghj', '', '24578', '1', 'Contact Person', '0123456789', '<EMAIL>', 'AddressAddressAddressAddressAddressAddress', 0, '2021-08-12 18:23:14', NULL, NULL, 'om bachchalal bachchalal', 0, '', 'POCO '),
(60, 1397, 'Business Name', 1, 'Description', 'logo_2021081211532693.jpg', 'visitingcard_2021081211532632.jpg', 'bvideo_2021081211532613.mp4', '', 'www.link.com', 'www.link.com', 'www.link.com', 'www.link.com', NULL, 'vvghj', '', '24578', '1', 'Contact Person', '0123456789', '<EMAIL>', 'AddressAddressAddressAddressAddressAddress', 0, '2021-08-12 18:23:26', NULL, NULL, 'om bachchalal bachchalal', 0, '', 'POCO '),
(61, 1397, 'Business Name', 1, 'Description', 'logo_2021081211534896.jpg', 'visitingcard_2021081211534823.jpg', 'bvideo_2021081211534832.mp4', 'image_2021081211534829.pdf', 'www.link.com', 'www.link.com', 'www.link.com', 'www.link.com', NULL, 'vvghj', '', '24578', '1', 'Contact Person', '0123456789', '<EMAIL>', 'AddressAddressAddressAddressAddressAddress', 0, '2021-08-12 18:23:48', NULL, NULL, 'om bachchalal bachchalal', 0, '', 'POCO '),
(62, 1397, 'Business Name', 1, 'Description', 'logo_2021081211541127.jpg', 'visitingcard_2021081211541173.jpg', 'bvideo_2021081211541194.mp4', 'image_2021081211541123.pdf', 'www.link.com', 'www.link.com', 'www.link.com', 'www.link.com', NULL, 'vvghj', '', '24578', '1', 'Contact Person', '0123456789', '<EMAIL>', 'AddressAddressAddressAddressAddressAddress', 0, '2021-08-12 18:24:11', NULL, NULL, 'om bachchalal bachchalal', 0, '', 'POCO '),
(65, 1, 'omprakash', 2, 'website ', 'logo_2021081410492080.jpg', 'visitingcard_2021081410492088.jpg', NULL, '', 'www.theanimator.in', '#', '#', '#', NULL, '', '', '9004190906', '3', 'I\'m prakash', '9004190906', '<EMAIL>', '<NAME>', 1, '2021-08-14 05:19:20', '2021-08-14 00:00:00', '2022-02-14', 'om bachchalal bachchalal', 0, '192.168.127.12', 'web'),
(67, 1397, 'Business Name', 1, 'Description', '', NULL, NULL, '', 'www.link.com', 'www.link.com', 'www.link.com', 'www.link.com', NULL, '', '', '', '1', 'Contact Person', '0123456789', '<EMAIL>', 'AddressAddressAddressAddressAddressAddress', 0, '2021-08-27 01:01:00', NULL, NULL, 'om bachchal bachchalal', 0, '', 'OPPO '),
(68, 1397, 'Business Name', 1, 'Description', '', NULL, NULL, '', 'www.link.com', 'www.link.com', 'www.link.com', 'www.link.com', NULL, '', '', '', '1', 'Contact Person', '0123456789', '<EMAIL>', 'AddressAddressAddressAddressAddressAddress', 0, '2021-08-27 01:01:04', NULL, NULL, 'om bachchal bachchalal', 0, '', 'OPPO '),
(69, 1397, 'Business Name', 1, 'Description', '', NULL, NULL, '', 'www.link.com', 'www.link.com', 'www.link.com', 'www.link.com', NULL, '', '', '', '1', 'Contact Person', '0123456789', '<EMAIL>', 'AddressAddressAddressAddressAddressAddress', 0, '2021-08-27 01:01:15', NULL, NULL, 'om bachchal bachchalal', 0, '', 'OPPO '),
(70, 1, 'raj', 4, 'Description', '', NULL, NULL, '', 'wwwerrtggv', 'www.link.com', 'www.link.com', 'www.link.com', NULL, '', '', '9664428534', '1', 'chirag', '9664428534', '<EMAIL>', 'AddressAddressAddressAddressAddressAddress', 1, '2021-08-27 01:26:36', '2021-08-27 00:00:00', '2021-09-27', 'om bachchal bachchalal', 0, '192.168.127.12', 'web');
-- --------------------------------------------------------
--
-- Table structure for table `master_blog`
--
CREATE TABLE `master_blog` (
`id` int(11) NOT NULL,
`title` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
`slug` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
`description` text CHARACTER SET utf8,
`uploaded_by` varchar(55) NOT NULL,
`memberid` int(11) NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
`client` varchar(3) NOT NULL,
`ip` varchar(35) NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0',
`added_on` timestamp NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_blog`
--
INSERT INTO `master_blog` (`id`, `title`, `slug`, `description`, `uploaded_by`, `memberid`, `status`, `client`, `ip`, `deleted`, `added_on`) VALUES
(9, 'Ek Stree', 'ek-stree', '<p>કુખમાં રહું છું ને રાખી શકું છું…<br />\r\nભલે નથી ભગવાન હું તો પણ જન્મ આપી શકું છું….<br />\r\nછે મારા માં તાકાત કે હું દેશ ને વીર આપી શકું છું..<br />\r\nભલે રહું પોતે અભણ પણ જિંદગી ના પાઠ ભણાવી શકું છું…<br />\r\nઆવડતું નથી ગણિત ભલે પણ હિસાબ રાખી શકું છું…<br />\r\nઓછી આવકે પણ ઘર ચલાવી શકું છું…<br />\r\nજરા અમથું સ્મિત મળે તો નીખરી શકું છું….<br />\r\nભલે ના વાપરું મોઘાં પ્રસાધનો પણ હું સુંદર લાગી શકું છું…<br />\r\nહોય સાથ જો પરિવાર નો તો હું કંઈ પણ કરી શકું છું..<br />\r\nપરણીને ભલે આવી પારકી હું…<br />\r\nપોતાની આવડતે હું બીજાને પોતાના કરી શકું છું…<br />\r\nનથી પુરુષ સમોવડી ભલે…પણ મંદિરમાં તો પહેલી પૂજાઈ શકું છું..(રાધે-ક્રિશ્ના,સીતા-રામ,લક્ષ્મી-નારાયણ)<br />\r\nગર્વ છે મને ખુદ પર કે હું પોતે નવું જીવતદાન આપી શકું છું…..<br />\r\nછું એક સ્ત્રી ભલે…પણ સૌ કિરદાર નિભાવી શકું છું..</p>', 'admin', 13, 1, 'web', '172.16.17.32', 0, '2021-03-24 09:21:35'),
(10, 'Galib ki yadein', 'galib-ki-yadein', '<p>GALIB KI YADEIN</p>', 'admin', 13, 1, 'web', '172.16.17.32', 0, '2021-03-24 09:59:49'),
(11, '<NAME>', 'vicharva-jevu', '<p><NAME> : Something To Think Upon</p>', 'admin', 13, 1, 'web', '172.16.17.32', 0, '2021-03-24 10:01:43'),
(12, '<NAME>', 'tirth-vandan', '<p>14 R<NAME>andana - with Meaning</p>', 'admin', 13, 1, 'web', '172.16.17.32', 0, '2021-03-24 10:03:25'),
(13, '<NAME>', 'sadhuna-gungaan', '<p><strong>સુસાધુના ગુણગાન કરી જૈન શાસન દીપાવે</strong> : </p>\r\n\r\n<p>ગુજરાત રાજ્યમાં કચ્છ જિલ્લો. એમાં મુંદ્રા તાલુકાનું ડેપા ગામ. આ ગામમાં જૈન ધર્મી લોકોની વસ્તી.આઠ કોટી નાની પક્ષ સ્થાનક્વાસી સંપ્રદાયના ઘર પણ સારી સંખ્યામાં હતા. અવારનવાર સાધુ‌- સંતના ચાતુમાર્સનો લાભ મળે. ધર્માનુરાગી, દઢવેરાગી ક્ષાવકો વ્યાખ્યાન –વાણીનો લાભ લે અને ધર્મ આરાધના કરે.</p>\r\n\r\n<p>સાલ ૧૯૭૭માં આઠ કોટી નાની પક્ષ સંપ્રદાયના પૂ. શિવજીસ્વામી આદિ અન્ય સંતો ચાતુમાર્સ અર્થ ડેપા ગામમાં બિરાજ્તા હાતા. તપસ્વી સાધુ એટલે તેઓ ચાર- ચાર ઉપવાસના પારણા કરતા.</p>\r\n\r\n<p>એ ગામમાં નાગબાવા આવ્યા. ભિક્ષા માટે તેઓ ડેપા ગામમાં ઘરેઘરે ફ્રર્યા. પણ નાગાબાવાને જોઈને બેહેનોએ ભિક્ષા આપી નહિ. નાગાબાવાને ગુસ્સે થતા વાર નહિ. તેઓ તો ગામના કૂવાને પગ્થારે બેસી ગયા. બહેનોને પાણી ભરવાની મુશકેલી થઈ. બાવા બેઠા હોય ત્યા પાણી ભરવુ કેમ ? તે સમયે ઘરે ઘરે પાણીના નળની યોજ્ના નહોતી. કર્મ બંધનનું એ સાધન હજુ આવ્યું ન હોતું.</p>\r\n\r\n<p>ગામનું મહાજ્ન કૂવે આવ્યું. બાવાજીને કારણ પૂછયું એમ તો સંત કહેવાય એ, સાધુ છીએ અને અમને ભિક્ષા ન મળે ? હમ યહાસે જાયેંગે નહિ, હાં, બાવાજીએ ચીપિયો ખખડાવ્યો, મહાજ્ન ડાહ્યું માણસ કહેવાય. વાર્તાલાપ ક્ર્યો પછી કહ્યું. અમારે ત્યાં સંત બિરાજે છે, જુઓ એ તો ચાર ચાર ઉપવાસ કરે પછી એક દિવસ જ્મે, પાછા ચાર ઉપવાસ . અમારે મન તો એ સંત છે, સાધુ છે, પછી એમને સમજાવીને ભિક્ષા વગેરે તો આપ્યું.</p>\r\n\r\n<p>નાગાબાવાએ એ સંતના દશર્ન કર્યા. શિવજીસ્વામીના તપથી પ્રભાવિત થયા.અહો, ચાર ચાર ઉપવાસે ! એમનો સમાગ્મ ક્ર્યો. ખુબ સંતોષ થયો. પછી તો એ નાગાબાવા જ્યાં જાય ત્યાં જેન સંતના ગુણગ્રામ કરે . આમ અન્ય્મતિએ જેન સાંધુના ગુણગ્રામ કરી જેન ધર્મની પ્રભાવના કરી.</p>\r\n\r\n<p>ઉપરોક્ત માહિતી આપણા ધાર્મીક પુસ્તક <strong>લિઓ ભાવિ સમકિર્ત</strong> ના <strong>પાના નં ૯૭</strong> પર છે.</p>\r\n\r\n<p>જેની લેખિકા : ક્ષીમતી પુષપા .ક. શાહ <br />\r\nપ્રકાશક :- ક્ષી આઠ કોટી નાની પક્ષ સ્થાનક વાસી-જેન સક્ળ સંધ મુંબઈ, ૪૦૧, સીવીક સેનટર દાદર<br />\r\nપ્રસ્તુત કર્તા :- લક્ષ્મીચંદ ટૉકરશી મારૂ ( ડેપા/ ભાંયદર )</p>\r\n\r\n<p> </p>\r\n\r\n<p> </p>', 'admin', 13, 1, 'web', '172.16.17.32', 0, '2021-03-24 10:11:41'),
(14, 'Testing Blog', 'testing-blog', '<p>ભીડ વચ્ચે રહી મારી,<br />\r\nએકલતા સંતાવી જાઉં છું ...</p>\r\n\r\n<p>કોઈ આવશે નહીં મનાવવા,<br />\r\nમાટે હવે રીસાતો પણ નથી...</p>\r\n\r\n<p> ખુદથી જ નારાજ થઈ,<br />\r\nખુદને જ મનાવી જાઉં છું...</p>\r\n\r\n<p>મારા ખોટા સ્મિતને પણ લોકો,<br />\r\n સાચું જ માની બેઠા છે...</p>\r\n\r\n<p>હું ખુશ છું, એ હું પોતાને પણ,<br />\r\n સમજાવી જાઉં છું...</p>', 'admin', 1, 0, 'web', '::1', 1, '2021-06-10 08:48:33'),
(15, 'Ekalta', 'ekalta', '<p>આંખ ભીની છે છતાં,<br />\r\nસૌ કોઈને હસાવી જાઉં છું...</p>\r\n\r\n<p> ભીડ વચ્ચે રહી મારી,<br />\r\nએકલતા સંતાવી જાઉં છું ...</p>\r\n\r\n<p>કોઈ આવશે નહીં મનાવવા,<br />\r\nમાટે હવે રીસાતો પણ નથી...</p>\r\n\r\n<p> ખુદથી જ નારાજ થઈ,<br />\r\nખુદને જ મનાવી જાઉં છું...</p>\r\n\r\n<p>મારા ખોટા સ્મિતને પણ લોકો,<br />\r\n સાચું જ માની બેઠા છે...</p>\r\n\r\n<p>હું ખુશ છું, એ હું પોતાને પણ,<br />\r\n સમજાવી જાઉં છું...</p>\r\n\r\n<p> હું કાચો છું,<br />\r\nથોડી લાગણીઓનો વેપાર કરવામાં...</p>\r\n\r\n<p> બીજાઓને ખુશીઓ આપી,<br />\r\nદર્દને ખુદમાં સમાવતો જાઉં છું...</p>\r\n\r\n<p> ખબર જ છે કે, પડદો પડશે,<br />\r\nને, ભૂલી જશે આ દુનિયા મને...</p>\r\n\r\n<p> છતાં, જીવન રંગમંચ પર,<br />\r\nમારું પાત્ર નિભાવી જાઉં છું..!!</p>', 'admin', 1, 1, 'web', '192.168.127.12', 0, '2021-06-25 13:43:48'),
(18, 'Test Blog', 'test-blog', '<p>ગામ કાંડાગરા ના બા.બ્રહ્મચારી તેજબાઈ ઉમરશી કાનજી લાપસીયા ઉ.વર્ષ ૭૫ તા. ૨૪/૬/૨૦૨૧ના ટુંકી માંદગીથી અવસાન પામેલ છે.</p>\r\n\r\n<p>સ્વ.મોઘીબાઈ ઉમરશી કાનજી ની સુપુત્રી.</p>\r\n\r\n<p>સ્વ.પાનબાઈ ડુંગરશીની ભત્રીજી</p>\r\n\r\n<p>સ્વ.મણીબાઈ ખીમજી શામજી છેડા ની ભત્રીજી.</p>\r\n\r\n<p>સ્વ. મેઘજી, સ્વ.કલ્યાણજી, સ્વ. પોપટ, સ્વ.ઝવેરચંદ, સ્વ બાબુલાલ , સ્વ.લક્ષ્મીબાઈ સ્વ દેવંકાબાઈ , ધનવંતી , પ્રેમલતા ની બહેન</p>\r\n\r\n<p>એમની સ્મશાનયાત્રા કાંડાગરા મધે પૂર્ણ કરવામાં આવેલ છે</p>\r\n\r\n<p>ગામ કાંડાગરા ના બા.બ્રહ્મચારી તેજબાઈ ઉમરશી કાનજી લાપસીયા ઉ.વર્ષ ૭૫ તા. ૨૪/૬/૨૦૨૧ના ટુંકી માંદગીથી અવસાન પામેલ છે.</p>\r\n\r\n<p>સ્વ.મોઘીબાઈ ઉમરશી કાનજી ની સુપુત્રી.</p>\r\n\r\n<p>સ્વ.પાનબાઈ ડુંગરશીની ભત્રીજી</p>\r\n\r\n<p>સ્વ.મણીબાઈ ખીમજી શામજી છેડા ની ભત્રીજી.</p>\r\n\r\n<p>સ્વ. મેઘજી, સ્વ.કલ્યાણજી, સ્વ. પોપટ, સ્વ.ઝવેરચંદ, સ્વ બાબુલાલ , સ્વ.લક્ષ્મીબાઈ સ્વ દેવંકાબાઈ , ધનવંતી , પ્રેમલતા ની બહેન</p>\r\n\r\n<p>એમની સ્મશાનયાત્રા કાંડાગરા મધે પૂર્ણ કરવામાં આવેલ છે</p>', 'admin', 1, 1, 'web', '172.16.58.3', 1, '2021-06-27 15:43:14'),
(19, 'Test 1', 'test-1', '<h2>What is Lorem Ipsum?</h2>\r\n\r\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<h2>Why do we use it?</h2>\r\n\r\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>', 'admin', 1, 1, 'web', '172.16.31.10', 1, '2021-07-01 10:11:08'),
(20, 'TEST 2', 'test-2', '<h2>What is Lorem Ipsum?</h2>\r\n\r\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<h2>Why do we use it?</h2>\r\n\r\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>', 'admin', 1, 1, 'web', '172.16.31.10', 1, '2021-07-01 10:11:22'),
(21, 'TEST 3', 'test-3', '<h2>What is Lorem Ipsum?</h2>\r\n\r\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<h2>Why do we use it?</h2>\r\n\r\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>', 'admin', 1, 1, 'web', '172.16.31.10', 1, '2021-07-01 10:11:37'),
(22, 'Blog', 'blog', '<p>https://www.multibhashi.com/camping-meaning-in-gujarati/https://www.multibhashi.com/camping-meaning-in-gujarati/</p>', '<NAME>', 656, 1, 'web', '172.16.31.10', 1, '2021-07-03 05:58:57'),
(23, 'test', 'test', '<p>gfdhfdhghfgfhghghh</p>', 'admin', 1, 1, 'web', '192.168.127.12', 1, '2021-07-26 08:40:50'),
(24, 'bvbcvb', 'bvbcvb', '<p>xbcvbcvbcvb</p>', 'admin', 1, 1, 'web', '192.168.127.12', 1, '2021-07-26 08:44:50'),
(25, 'bncvnbn', 'bncvnbn', '<p>nbvnbvnvbnvbn</p>', 'om bachchalal bachchalal', 1397, 1, 'web', '192.168.127.12', 1, '2021-07-26 08:46:43'),
(26, 'GGXD Deleted Remove', 'ggxd-deleted-remove', '<p>GGXD Deleted Remove GGXD Deleted Remove GGXD Deleted Remove</p>', 'admin', 1, 1, 'web', '192.168.127.12', 1, '2021-07-29 12:42:25'),
(27, 'test removed', 'test-removed', '<p>test removed test removed test removed test removed test removed test removed </p>', 'admin', 1, 1, 'web', '192.168.127.12', 1, '2021-07-29 12:47:02'),
(28, 'Test M', 'test-m', '<p>test m</p>', 'admin', 1, 1, 'web', '192.168.127.12', 1, '2021-07-29 13:07:24'),
(29, 'test 10 mb', 'test-10-mb', '<p>test 10 mbtest 10 mbtest 10 mbtest 10 mb</p>', 'admin', 1, 1, 'web', '192.168.127.12', 1, '2021-07-29 13:08:55'),
(30, 'gdfsgfdg', 'gdfsgfdg', '<p>gffgdfg</p>', 'admin', 1, 1, 'web', '192.168.127.12', 1, '2021-07-29 13:11:44'),
(31, 'test depa om sir', 'test-depa', '<p>test</p>', 'om bachchalal bachchalal', 1397, 1, 'web', '192.168.3.11', 1, '2021-08-09 12:55:49'),
(32, 'ajay', 'ajay', '<p>ajay test</p>', 'om bachchalal bachchalal', 1397, 1, 'web', '192.168.127.12', 1, '2021-08-10 11:24:43'),
(33, 'happy independence day 2021', 'happy-independence-day-2021', '<h3><a href=\"https://www.google.com/search?sxsrf=ALeKk00DtcTum7y_oiRWDj4aPi15vxXp2Q:1628668518663&source=univ&tbm=isch&q=happy+independence+day+2021&sa=X&ved=2ahUKEwjyyYuEv6jyAhXvIbcAHa2YCiwQjJkEegQIBxAC\">happy independence day 2021</a></h3>', 'om bachchalal bachchalal', 1397, 1, 'web', '192.168.127.12', 1, '2021-08-11 07:55:52'),
(34, 'happy independence day', 'happy-independence-day', '<p>cdsZCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC</p>', 'om bachchalal bachchalal', 1397, 1, 'web', '192.168.127.12', 1, '2021-08-11 08:20:21'),
(35, 'avfdfdsf', 'avfdfdsf', '<p>In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design,</p>', 'om bachchalal bachchalal', 1397, 1, 'web', '192.168.127.12', 1, '2021-08-11 10:18:17'),
(36, 'Lorem Ipsum 2021', 'lorem-ipsum-2021', '<p>In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content. Lorem ipsum may be used as a placeholder before final copy is available.</p>', 'om bachchalal bachchalal', 1397, 1, 'web', '192.168.127.12', 1, '2021-08-11 12:31:00'),
(37, 'Testfff', 'testfff', '<p>The Animator started in <strong>2007</strong> by <strong>Mr. <NAME></strong>, an entrepreneur possessing humongous business perception; The Animator has grown by leaps and bounds since inception. We are running since last 10 Years in the market with innovative and exceptional compelling solution for the clients. Along with IT Solutions we serve in Web Designing and Development, Mobile Application, Software Development, Animation, Graphic Designing, IT Outsourcing, SEO and Digital Marketing.</p>', 'om bachchalal bachchalal', 1397, 1, 'web', '192.168.127.12', 1, '2021-08-12 05:24:49'),
(38, 'test om', 'test-om', '<p>The Animator started in <strong>2007</strong> by <strong>Mr. <NAME></strong>, an entrepreneur possessing humongous business perception; The Animator has grown by leaps and bounds since inception. We are running since last 10 Years in the market with innovative and exceptional compelling solution for the clients. Along with IT Solutions we serve in Web Designing and Development, Mobile Application, Software Development, Animation, Graphic Designing, IT Outsourcing, SEO and Digital Marketing.</p>', 'om bachchalal bachchalal', 1397, 1, 'web', '192.168.127.12', 0, '2021-08-12 05:28:02'),
(39, 'Android app', 'android-app', '<p>teye sheh shah</p>', '', 0, 1, 'app', '0', 0, '2021-08-18 15:06:45'),
(40, 'test test', 'test-test', '<p>hshs shshsb shsbdb</p>', '', 0, 1, 'app', '0', 0, '2021-08-18 15:13:58'),
(41, 'tttym', 'tttym', '<p>ttyyyy</p>', '', 0, 1, 'app', '0', 0, '2021-08-23 08:41:45'),
(42, 'hi', 'hi', 'hjjd', '', 0, 0, 'app', '0', 0, '2021-08-27 01:22:30'),
(43, 'hardh', 'hardh', '<p>test-Admin Edit</p>', '', 0, 1, 'app', '0', 0, '2021-08-28 15:00:07');
-- --------------------------------------------------------
--
-- Table structure for table `master_bloodgroup`
--
CREATE TABLE `master_bloodgroup` (
`id` int(11) NOT NULL,
`bloodgroup` varchar(11) NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_bloodgroup`
--
INSERT INTO `master_bloodgroup` (`id`, `bloodgroup`, `deleted`) VALUES
(1, 'A+', 0),
(2, 'A-', 0),
(3, 'B+', 0),
(4, 'B-', 0),
(5, 'O+', 0),
(6, 'O-', 0),
(7, 'AB+', 0),
(8, 'AB-', 0),
(9, 'ABCD+', 1),
(10, 'om+', 1);
-- --------------------------------------------------------
--
-- Table structure for table `master_bulk_email`
--
CREATE TABLE `master_bulk_email` (
`id` int(11) NOT NULL,
`type` varchar(30) NOT NULL,
`subject` varchar(100) NOT NULL,
`emails` text NOT NULL,
`message` text NOT NULL,
`added_on` varchar(30) NOT NULL,
`deleted` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `master_bulk_email`
--
INSERT INTO `master_bulk_email` (`id`, `type`, `subject`, `emails`, `message`, `added_on`, `deleted`) VALUES
(1, 'specific || Total Members = 6', 'test 1', '[{\"email\":\"sadsad\"},{\"email\":\"asdsadasd\"},{\"email\":\"asdasdasd\"},{\"email\":\"asdasdasd\"},{\"email\":\"asdsadas\"},{\"email\":\"dasdsad\"}]', 'test message', '15-06-2021, 09:24:02PM', 0),
(2, 'all || Total Members = 372', 'test 2', '[{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"0\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"gzgSga\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"}]', 'sadasdsadasdasdasd', '15-06-2021, 09:24:57PM', 0),
(3, 'specific || Total Members = 6', 'test 2 ', '[{\"email\":\"sadsad\"},{\"email\":\"asdsadasd\"},{\"email\":\"asdasdasd\"},{\"email\":\"asdasdasd\"},{\"email\":\"asdsadas\"},{\"email\":\"dasdsad\"}]', 'sadasdasd', '15-06-2021, 09:41:59PM', 0),
(4, 'specific || Total Members = 7', 'dsadasd', '[{\"email\":\"asdasdasd\"},{\"email\":\"asdasdasd\"},{\"email\":\"asdasdas\"},{\"email\":\"dasdasd\"},{\"email\":\"asdasdasd\"},{\"email\":\"asdasda\"},{\"email\":\"sd\"}]', 'asdasdasd', '16-06-2021, 01:30:39AM', 0),
(5, 'specific || Total Members = 4', 'TEST From OFFICE', '[{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"}]', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\r\n\r\n', '17-06-2021, 05:52:52PM', 0),
(6, 'specific || Total Members = 2', 'Test mail', '[{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"}]', '{#var#} is the OTP for your request to reset your password. DO NOT SHARE WITH ANYONE ', '30-07-2021, 05:52:50PM', 0),
(7, 'specific || Total Members = 1', 'new website', '[{\"email\":\"<EMAIL>\"}]', 'new website', '10-08-2021, 03:19:03PM', 0),
(8, 'specific || Total Members = 3', 'Bulk SMTP Setting Check', '[{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"}]', 'Bulk SMTP Setting Check, for DEPA site', '02-09-2021, 01:11:23PM', 0),
(9, 'specific || Total Members = 3', 'Test SMPT', '[{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"},{\"email\":\"<EMAIL>\"}]', 'smtp test gic', '02-09-2021, 01:20:47PM', 0);
-- --------------------------------------------------------
--
-- Table structure for table `master_bulk_sms`
--
CREATE TABLE `master_bulk_sms` (
`id` int(11) NOT NULL,
`send_to` varchar(30) NOT NULL,
`phones` text NOT NULL,
`message` varchar(80) NOT NULL,
`added_on` varchar(30) NOT NULL,
`deleted` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `master_bulk_sms`
--
INSERT INTO `master_bulk_sms` (`id`, `send_to`, `phones`, `message`, `added_on`, `deleted`) VALUES
(1, 'specific || Total Members = 1', '[{\"phone\":\"9619527226\"}]', 'This+is+an+example+message+to+test+sms.', '16-06-2021, 11:42:10AM', 0),
(2, 'specific || Total Members = 1', '[{\"phone\":\"9664428534\"}]', 'hi', '26-06-2021, 09:47:44AM', 0),
(3, 'specific || Total Members = 3', '[{\"phone\":\"9004190906\"},{\"phone\":\"9028984783\"},{\"phone\":\"\"}]', 'Bulk 1001 is the OTP for your request to reset your password. DO NOT SHARE WITH ', '30-07-2021, 12:21:05PM', 0),
(4, 'specific || Total Members = 2', '[{\"phone\":\"9004190906\"},{\"phone\":\"9619527226\"}]', 'new website', '10-08-2021, 09:47:11AM', 0);
-- --------------------------------------------------------
--
-- Table structure for table `master_business_category`
--
CREATE TABLE `master_business_category` (
`id` int(11) NOT NULL,
`category` varchar(255) NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_business_category`
--
INSERT INTO `master_business_category` (`id`, `category`, `deleted`) VALUES
(1, 'IT', 0),
(2, 'Marketing', 0),
(3, 'Fitness', 0),
(4, 'Accounts & Finance', 0),
(5, 'Acupressure', 0),
(6, 'Adventure and trekking Tours', 0),
(7, 'Advertising', 0),
(8, 'Aluminium Steel and Crockery', 0),
(9, 'Architect and Interior Designers', 0),
(10, 'Astrology & vaastu', 0),
(11, 'Automobile & components', 0),
(12, 'Ayurvedic Medicine', 0),
(13, 'Beautician and Mehendi', 0),
(14, 'Books & Stationary', 0),
(15, 'Builders & developers', 0),
(16, 'Building materials', 0),
(17, 'Chocolates', 0),
(18, 'Civil Contractors', 0),
(19, 'Coaching Classes and tutions', 0),
(20, 'Computer IT and Networking solutions', 0),
(21, 'Consumable Electronics', 0),
(22, 'Consumer Foods', 0),
(23, 'Cooking Classes', 0),
(24, 'Dance', 0),
(25, 'Event Management', 0),
(26, 'Furniture', 0),
(27, 'Hardware Electric Plumbing', 0),
(28, 'Home Made Food', 0),
(29, 'Insurance Consultants', 0),
(30, 'Jewellery', 0),
(31, 'Medical Store & Supplier', 0),
(32, 'Music', 0),
(33, 'Others', 0),
(34, 'Photography', 0),
(35, 'Property Consultants', 0),
(36, 'Readymade Garments & Clothing', 0),
(37, 'Recruitment', 0),
(38, 'Repair & Maintance', 0),
(39, 'Stock Market', 0),
(40, 'Sweets & Dry fruits', 0),
(41, 'Tax Consultant', 0),
(42, 'Tours and Travels', 0),
(43, 'Toys and Games', 0),
(44, 'Test 1234', 1),
(45, 'iit', 1);
-- --------------------------------------------------------
--
-- Table structure for table `master_dharmik_knowledge`
--
CREATE TABLE `master_dharmik_knowledge` (
`id` int(11) NOT NULL,
`dharmikknowledge` varchar(55) NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_dharmik_knowledge`
--
INSERT INTO `master_dharmik_knowledge` (`id`, `dharmikknowledge`, `deleted`) VALUES
(0, '', 0),
(1, 'Samayik Completed', 0),
(3, 'Samayik Learning', 0),
(4, 'Thokda', 0),
(5, 'Pratikraman Learning', 0),
(6, 'Pratikraman Completed', 0);
-- --------------------------------------------------------
--
-- Table structure for table `master_donation`
--
CREATE TABLE `master_donation` (
`id` int(11) NOT NULL,
`family_id` varchar(20) NOT NULL,
`recept_number` varchar(45) DEFAULT NULL,
`amount` varchar(255) NOT NULL,
`donor_name` varchar(250) DEFAULT NULL,
`contact_number` varchar(255) NOT NULL,
`pan_number` varchar(15) DEFAULT NULL,
`email` varchar(255) DEFAULT NULL,
`address` varchar(500) NOT NULL,
`reason` varchar(255) DEFAULT NULL,
`refernumber` varchar(255) DEFAULT NULL,
`category_amount` text CHARACTER SET utf8,
`status` tinyint(1) NOT NULL DEFAULT '0',
`approve_date` datetime DEFAULT NULL,
`cancel_reason` varchar(250) DEFAULT NULL,
`client` varchar(5) NOT NULL,
`added_date` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`ip` varchar(25) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_donation`
--
INSERT INTO `master_donation` (`id`, `family_id`, `recept_number`, `amount`, `donor_name`, `contact_number`, `pan_number`, `email`, `address`, `reason`, `refernumber`, `category_amount`, `status`, `approve_date`, `cancel_reason`, `client`, `added_date`, `ip`) VALUES
(18, 'DPF0514', 'J1Y3ANVNDR.pdf', '1', 'asdasd', '9632587410', '', '<EMAIL>', '', 'asd', 'asd', '{\"general\":\"1\",\"medical\":\"0\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 1, NULL, NULL, 'web', '2021-06-17 09:46:23', '::1'),
(19, 'DPF0514', '05IJ333S7J.pdf', '1', 'AJAY', '7894561230', '', '<EMAIL>', '', 'pata nai', '123ABCD', '{\"general\":\"01\",\"medical\":\"0\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 1, NULL, 'faltu tha', 'web', '2021-06-17 11:51:32', '172.16.31.10'),
(22, 'DPF0514', 'AN234X5MY6.pdf', '400', '<NAME> ', '9004190906', '', '<EMAIL>', '', 'test', 'hgfhgfh', '{\"general\":\"100\",\"medical\":\"100\",\"sports\":\"100\",\"bhojan-shala\":\"100\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 1, NULL, NULL, 'web', '2021-06-17 13:04:16', '172.16.31.10'),
(23, 'DPF0514', NULL, '1', 'AJAY', '9632587410', '', '<EMAIL>', '', 'asdasdasd', 'testref', '{\"general\":\"1\",\"medical\":\"0\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 2, NULL, 'test', 'web', '2021-06-18 20:00:44', '172.16.31.10'),
(24, '', NULL, '7750', 'Harsh', '8369965108', '', '<EMAIL>', '', '', 'KGH776566656FW', '{\"general\":\"50\",\"medical\":\"5000\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"2500\",\"kutra-ne-rotla\":\"200\",\"kabutar-ne-chana\":\"0\"}', 2, NULL, 'a1sd32sa1d32as1d', 'web', '2021-06-18 20:06:40', '172.16.31.10'),
(25, 'DPF0514', '8AYWE2L5XN.pdf', '100', 'AJAY', '1234568790', '', '<EMAIL>', '', 'Web Development Donation', 'AJAKSHAKAJ564654S', '{\"general\":\"10\",\"medical\":\"10\",\"sports\":\"10\",\"bhojan-shala\":\"10\",\"education\":\"10\",\"dharmik\":\"10\",\"it\":\"10\",\"gaas-charo-jeevdaya\":\"10\",\"kutra-ne-rotla\":\"10\",\"kabutar-ne-chana\":\"10\"}', 1, NULL, NULL, 'web', '2021-06-18 20:09:28', '172.16.31.10'),
(26, '', 'depa_recipt_GVH1X08BA6.pdf', '797797', '<NAME>', '8369965108', '', '<EMAIL>', '', '', '8979809-0987', '{\"general\":\"50\",\"medical\":\"700\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"3500\",\"kutra-ne-rotla\":\"2500\",\"kabutar-ne-chana\":\"2200\"}', 1, NULL, NULL, 'web', '2021-06-18 20:09:46', '172.16.31.10'),
(27, 'DPF0514', 'PBBZQ84MTN.pdf', '101', 'AJ', '1234567890', '', '<EMAIL>', '', 'TEST', 'TESTREF', '{\"general\":\"101\",\"medical\":\"0\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 1, NULL, NULL, 'web', '2021-06-18 20:12:43', '172.16.31.10'),
(28, '', NULL, '490', '<NAME>', '9028984783', '', '<EMAIL>', '', '', '78jhhuj88098', '{\"general\":\"490\",\"medical\":\"0\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 2, NULL, 'temt1', 'web', '2021-06-18 20:20:53', '60.254.42.21'),
(29, 'DPF0514', 'TSUUXAKBL4.pdf', '850', '<NAME>', '9004190906', '', '<EMAIL>', '', 'Test', 'TTTf6', '{\"general\":\"100\",\"medical\":\"100\",\"sports\":\"100\",\"bhojan-shala\":\"100\",\"education\":\"50\",\"dharmik\":\"50\",\"it\":\"50\",\"gaas-charo-jeevdaya\":\"100\",\"kutra-ne-rotla\":\"100\",\"kabutar-ne-chana\":\"100\"}', 1, NULL, NULL, 'web', '2021-06-19 04:57:23', '172.16.31.10'),
(30, 'DPF0514', 'GINRJLW93C.pdf', '30', 'asd', '9632587410', '', '<EMAIL>', '', 'asd', 'ad', '{\"general\":\"10\",\"medical\":\"020\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 1, NULL, NULL, 'web', '2021-06-19 06:56:32', '172.16.31.10'),
(31, 'DPF0514', 'X64CLA3DWD.pdf', '1400', 'om prakash', '9004190906', '', '<EMAIL>', '', 'Test', 'IITF1', '{\"general\":\"100\",\"medical\":\"100\",\"sports\":\"100\",\"bhojan-shala\":\"100\",\"education\":\"50\",\"dharmik\":\"50\",\"it\":\"600\",\"gaas-charo-jeevdaya\":\"100\",\"kutra-ne-rotla\":\"100\",\"kabutar-ne-chana\":\"100\"}', 1, NULL, NULL, 'web', '2021-06-19 06:59:33', '172.16.31.10'),
(32, 'DPF0514', 'J4GK60YD30.pdf', '500', '<NAME>', '9004190906', '', '<EMAIL>', '', 'Test M', 'IITF2', '{\"general\":\"100\",\"medical\":\"100\",\"sports\":\"100\",\"bhojan-shala\":\"100\",\"education\":\"0\",\"dharmik\":\"100\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 1, NULL, NULL, 'web', '2021-06-19 07:23:24', '172.16.31.10'),
(33, 'DPF0514', '7QY5X2T3R7.pdf', '500', '<NAME>', '9004190906', '', '<EMAIL>', '', 'TEM1', 'IITF3', '{\"general\":\"100\",\"medical\":\"100\",\"sports\":\"100\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"100\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"100\",\"kabutar-ne-chana\":\"0\"}', 1, NULL, NULL, 'web', '2021-06-19 07:56:19', '172.16.31.10'),
(34, 'DPF0514', NULL, '200', 'om', '9004190906', '', '<EMAIL>', '', 'Test', 'IITF3', '{\"general\":\"100\",\"medical\":\"100\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 2, NULL, 'cancel m', 'web', '2021-06-19 12:24:08', '172.16.31.10'),
(35, 'DPF0514', 'DVXRH0PZT6.pdf', '9', 'Deepak', '9702043716', '', '<EMAIL>', '', 'donation', 'jaksdfgasjdkhl', '{\"general\":\"1\",\"medical\":\"0\",\"sports\":\"1\",\"bhojan-shala\":\"1\",\"education\":\"1\",\"dharmik\":\"1\",\"it\":\"1\",\"gaas-charo-jeevdaya\":\"1\",\"kutra-ne-rotla\":\"1\",\"kabutar-ne-chana\":\"1\"}', 1, NULL, NULL, 'web', '2021-06-20 13:49:28', '192.168.127.12'),
(36, 'DPF0514', NULL, '644', 'xyz', '1231341561', '', '<EMAIL>', '', 'Test', 'fbjsdbfhnsd', '{\"general\":\"10\",\"medical\":\"10\",\"sports\":\"10\",\"bhojan-shala\":\"140\",\"education\":\"10\",\"dharmik\":\"40\",\"it\":\"410\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"14\",\"kabutar-ne-chana\":\"0\"}', 2, NULL, 'cancel', 'web', '2021-06-20 13:53:46', '192.168.127.12'),
(37, 'DPF0514', NULL, '510', '<NAME>', '9004190906', '', '<EMAIL>', '', 'Test', 'IIITF6', '{\"general\":\"100\",\"medical\":\"110\",\"sports\":\"100\",\"bhojan-shala\":\"100\",\"education\":\"0\",\"dharmik\":\"50\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"50\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 2, NULL, 'test444', 'web', '2021-06-21 09:55:53', '172.16.31.10'),
(38, 'DPF0514', '7T3GDGKIWM.pdf', '350', '<NAME>', '9004190906', '', '<EMAIL>', '', 'Test T', 'IITF 7', '{\"general\":\"100\",\"medical\":\"100\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"50\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"50\",\"kabutar-ne-chana\":\"50\"}', 1, NULL, NULL, 'web', '2021-06-21 10:00:00', '172.16.31.10'),
(39, 'DPF0514', NULL, '600', 'Om Prakash', '9004190906', '', '<EMAIL>', '', 'Test Om', 'IITF8', '{\"general\":\"100\",\"medical\":\"100\",\"sports\":\"100\",\"bhojan-shala\":\"100\",\"education\":\"100\",\"dharmik\":\"100\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 2, NULL, 'gdfgdfgdfg', 'web', '2021-06-21 10:02:38', '172.16.31.10'),
(40, 'chirag.chhadva', 'N6PEFAJGDQ.pdf', '180', 'chirag', '9664428534', '', '<EMAIL>', '', 'teasting', '12345', '{\"general\":\"50\",\"medical\":\"50\",\"sports\":\"10\",\"bhojan-shala\":\"10\",\"education\":\"10\",\"dharmik\":\"10\",\"it\":\"10\",\"gaas-charo-jeevdaya\":\"10\",\"kutra-ne-rotla\":\"10\",\"kabutar-ne-chana\":\"10\"}', 1, NULL, NULL, 'web', '2021-06-22 06:09:31', '172.16.31.10'),
(41, 'DPF0514', NULL, '100000', 'Deepak', '9702043716', 'skajdhssha', '<EMAIL>', '', 'kjsdfhkjsd', 'dsfdsfsdfsdfsd', '{\"general\":\"100000\",\"medical\":\"0\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 2, NULL, 'dummy', 'web', '2021-06-24 13:01:56', '172.16.31.10'),
(42, 'DPF0514', NULL, '100000', 'deepak', '8454154546', 'dasfsdf', '<EMAIL>', '', 'dsfsdf', 'sdfsdf', '{\"general\":\"100000\",\"medical\":\"0\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 2, NULL, 'Dumy', 'web', '2021-06-24 13:05:13', '172.16.31.10'),
(43, 'DPF0514', '4LEWXCVL54.pdf', '150000', 'sadfasd', '8798513154', 'ajsgdjas', '<EMAIL>', '', 'dkjfkdjsa', 'dsjkncfjkldsa', '{\"general\":\"150000\",\"medical\":\"0\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 1, NULL, NULL, 'web', '2021-06-24 13:08:00', '172.16.31.10'),
(44, 'DPF0514', 'MAJ5AMXG7Ydepa_recipt.pdf', '100', 'asdhlks', '8983680321', '', '<EMAIL>', '', 'sadas', 'dsadsadasd', '{\"general\":\"100\",\"medical\":\"0\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 1, NULL, NULL, 'web', '2021-06-24 13:18:26', '172.16.31.10'),
(45, 'DPF0514', 'depa_recipt_NSFLGYDBQH.pdf', '10000', 'asdsad', '8983680321', '', '<EMAIL>', '', '', 'sajkdhaskjdh', '{\"general\":\"10000\",\"medical\":\"0\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 1, NULL, NULL, 'web', '2021-06-24 13:23:58', '172.16.31.10'),
(46, 'DPF0514', 'depa_recipt_4XDSTXY44M.pdf', '155100', 'om prakash', '9004190906', 'TTTTMPRAZ1', '<EMAIL>', '', 'Test', 'IIT10', '{\"general\":\"100000\",\"medical\":\"50000\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"5000\",\"dharmik\":\"0\",\"it\":\"100\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 1, NULL, NULL, 'web', '2021-06-25 11:48:57', '192.168.127.12'),
(47, 'DPF0514', 'depa_recipt_3ECR42PV2U.pdf', '157000', '<NAME>', '9004190906', 'IIIIITYRE', '<EMAIL>', '', 'fgdgdfg', 'IIRTY', '{\"general\":\"100000\",\"medical\":\"50000\",\"sports\":\"5000\",\"bhojan-shala\":\"2000\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 1, NULL, NULL, 'web', '2021-06-25 11:53:08', '192.168.127.12'),
(48, 'DPF0514', NULL, '2000', '<NAME>', '9004190906', '', '<EMAIL>', '', 'test', 'iiiity', '{\"general\":\"1000\",\"medical\":\"0\",\"sports\":\"1000\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 2, NULL, 'demy', 'web', '2021-06-25 11:55:02', '192.168.127.12'),
(49, 'DPF0514', NULL, '10', 'bindu yadav', '9004190906', '', '<EMAIL>', '', 'test', 'iiiity', '{\"general\":\"10\",\"medical\":\"0\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 2, NULL, 'test', 'web', '2021-06-25 11:57:42', '192.168.127.12'),
(50, '', 'depa_recipt_1A8GO4HSYB.pdf', '500', 'chirag', '9664428534', '', '<EMAIL>', '', 'testing', '9664428534', '{\"general\":\"500\",\"medical\":\"0\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 1, NULL, NULL, 'web', '2021-06-26 03:27:41', '172.16.17.32'),
(51, '', 'depa_recipt_73DAN497JJ.pdf', '595', 'chirag', '9664428534', '', '<EMAIL>', '', 'teasting', '12345', '{\"general\":\"550\",\"medical\":\"5\",\"sports\":\"5\",\"bhojan-shala\":\"5\",\"education\":\"5\",\"dharmik\":\"5\",\"it\":\"5\",\"gaas-charo-jeevdaya\":\"5\",\"kutra-ne-rotla\":\"5\",\"kabutar-ne-chana\":\"5\"}', 1, NULL, NULL, 'web', '2021-06-26 08:15:36', '192.168.127.12'),
(52, '', 'depa_recipt_H39XSA6P7I.pdf', '12075', '<NAME>', '8369965108', 'AKJH878756', '<EMAIL>', '', 'testing', '36548678786756', '{\"general\":\"500\",\"medical\":\"1500\",\"sports\":\"5000\",\"bhojan-shala\":\"5000\",\"education\":\"20\",\"dharmik\":\"15\",\"it\":\"10\",\"gaas-charo-jeevdaya\":\"10\",\"kutra-ne-rotla\":\"10\",\"kabutar-ne-chana\":\"10\"}', 1, NULL, NULL, 'web', '2021-06-27 15:27:00', '172.16.58.3'),
(53, '', 'depa_recipt_CONTBBB97L.pdf', '600', 'chirag', '9664428534', '', '<EMAIL>', '', 'test', '123', '{\"general\":\"500\",\"medical\":\"50\",\"sports\":\"50\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 1, NULL, NULL, 'web', '2021-07-02 08:15:47', '172.16.31.10'),
(54, 'DPF0514', 'depa_recipt_QTGCNZCI8P.pdf', '1025500', 'praanvi', '9004190906', 'AEIPY4298N', '<EMAIL>', '', 'TEST', 'IITF20', '{\"general\":\"1000000\",\"medical\":\"5000\",\"sports\":\"20000\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"500\",\"kabutar-ne-chana\":\"0\"}', 1, NULL, NULL, 'web', '2021-07-02 08:35:41', '172.16.31.10'),
(55, 'DPF0514', NULL, '4400', 'omprakash', '9004190906', '', '<EMAIL>', '', 'Test', 'IITF21', '{\"general\":\"4000\",\"medical\":\"0\",\"sports\":\"100\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"100\",\"gaas-charo-jeevdaya\":\"100\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"100\"}', 2, NULL, 'test data', 'web', '2021-07-02 08:43:02', '172.16.31.10'),
(56, '', NULL, '50500', 'chirag', '9664428534', 'adhse1245a', '<EMAIL>', '', 'test', '12345', '{\"general\":\"50000\",\"medical\":\"500\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 2, NULL, 'test', 'web', '2021-07-02 16:02:22', '172.16.58.3'),
(57, '', 'depa_recipt_OJTXAUNO60.pdf', '500', 'chirag', '9664428534', '', '<EMAIL>', '', 'test', '12345', '{\"general\":\"500\",\"medical\":\"0\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 1, NULL, NULL, 'web', '2021-07-02 16:03:16', '172.16.58.3'),
(58, 'DPF0164', 'depa_recipt_SV3OJ5KKTA.pdf', '500', 'Harsh', '9028987834', '', '<EMAIL>', '35/741, Shramik CHS, <NAME>, Dr.A.B. Road, Century Bazar, Worli. Mumbai - 400030', 'General Daan', 'JKJH878hjgh', '{\"general\":\"500\",\"medical\":\"0\",\"sports\":\"0\",\"bhojan-shala\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"it\":\"0\",\"gaas-charo-jeevdaya\":\"0\",\"kutra-ne-rotla\":\"0\",\"kabutar-ne-chana\":\"0\"}', 1, NULL, NULL, 'web', '2021-07-03 06:21:49', '172.16.31.10'),
(59, '', NULL, '3050', 'JK Family', '9028984783', '', 'harsh<EMAIL>', '18, Laxmi Niwas, 2nd floor, B.T. Road, near Prabhadevi Rly St, Mumbai - 13', 'Testig Address', 'JKGuyutu5765', '[\"550\"]', 0, NULL, NULL, 'web', '2021-07-16 12:05:25', '172.16.17.32'),
(60, 'TRE4545', 'depa_recipt_7BJ3NKW0Q8.pdf', '1010520', 'om prakash', '9004190906', 'aeipy4298n', '<EMAIL>', 'dadar', 'test', 'bmnnmmm', '[\"455\"]', 1, NULL, NULL, 'web', '2021-07-26 07:02:57', '192.168.127.12'),
(61, 'DPF01245', NULL, '3100', '<NAME>', '9028984783', '', '<EMAIL>', 'Worli', 'Testing', 'KGJ67676', '[\"600\"]', 2, NULL, 'test', 'web', '2021-07-29 18:18:38', '192.168.127.12'),
(62, 'DPF0514', 'depa_recipt_FJZWN3DYUP.pdf', '115000', 'om prakash', '9004190906', 'AEIPY4298N', '<EMAIL>', 'B-15, 5B, 1st Floor, Royal Industrial Estate,', 'Test', 'IITF20', '{\"general\":\"5000\",\"medical\":\"10000\",\"sports\":\"25000\",\"education\":\"25000\",\"dharmik\":\"25000\",\"jeevadaya\":\"25000\"}', 1, NULL, NULL, 'web', '2021-07-30 11:21:51', '192.168.127.12'),
(63, 'HGHHJG', NULL, '51035', 'HARSH', '9028984783', 'bgppc1874q', '<EMAIL>', 'WORLI', 'HGGFHGF', 'BNVYHR667NBV5646', '{\"general\":\"24787\",\"medical\":\"6567\",\"sports\":\"12181\",\"education\":\"7500\",\"dharmik\":\"0\",\"jeevadaya\":\"0\"}', 0, NULL, NULL, 'web', '2021-07-31 13:15:45', '192.168.127.12'),
(64, 'DPF0517', 'depa_recipt_Y2R4XHJEK3.pdf', '1500', 'Chirag', '9028984783', '', '<EMAIL>', 'Mumbai', 'Testinga', 'JHJ7867JHU87', '{\"general\":\"500\",\"medical\":\"500\",\"sports\":\"500\",\"education\":\"0\",\"dharmik\":\"0\",\"jeevadaya\":\"0\"}', 1, NULL, NULL, 'web', '2021-07-31 16:59:15', '172.16.58.3'),
(65, 'DPF0514', NULL, '15000', 'om', '9004190906', '', 'omprakashb', 'kandivali', 'Test', 'iiitf50', '{\"general\":\"5000\",\"medical\":\"5000\",\"sports\":\"5000\",\"education\":\"0\",\"dharmik\":\"0\",\"jeevadaya\":\"0\"}', 2, NULL, 'test', 'web', '2021-08-09 11:20:05', '192.168.3.11'),
(66, 'DPF0514', 'depa_recipt_7RPQC47WQD.pdf', '600', 'om prakash', '9004190906', '', '<EMAIL>', 'kandivali', 'test', 'IITF51', '{\"general\":\"100\",\"medical\":\"100\",\"sports\":\"100\",\"education\":\"100\",\"dharmik\":\"100\",\"jeevadaya\":\"100\"}', 1, NULL, NULL, 'web', '2021-08-09 11:27:00', '192.168.3.11'),
(67, 'DPF0514', 'depa_recipt_5VPVQLL5XH.pdf', '300', 'om', '9004190906', '', '<EMAIL>', 'fdfd', 'test', 'iiitf53', '{\"general\":\"100\",\"medical\":\"100\",\"sports\":\"100\",\"education\":\"0\",\"dharmik\":\"0\",\"jeevadaya\":\"0\"}', 1, NULL, NULL, 'web', '2021-08-10 08:22:45', '192.168.127.12'),
(68, 'DPF0514', 'depa_recipt_29KK3LRBZN.pdf', '400', 'omprakash', '9004190906', '', '<EMAIL>', '<NAME>', 'Test', 'IITF54', '{\"general\":\"100\",\"medical\":\"100\",\"sports\":\"100\",\"education\":\"0\",\"dharmik\":\"100\",\"jeevadaya\":\"0\"}', 1, NULL, NULL, 'web', '2021-08-10 09:09:21', '192.168.127.12'),
(69, 'DPF0514', NULL, '200', 'satya', '9004190906', '', '<EMAIL>', 'cotton green', 'test', 'IITF55', '{\"general\":\"100\",\"medical\":\"100\",\"sports\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"jeevadaya\":\"0\"}', 2, NULL, 'test', 'web', '2021-08-10 09:18:41', '192.168.127.12'),
(70, 'DPF0514', 'depa_recipt_DE4BSQ2EDV.pdf', '5800', 'om', '7020491668', '', '<EMAIL>', 'B-15, 5B, 1st Floor, Royal Industrial Estate,', 'Test', 'IITF57', '{\"general\":\"5000\",\"medical\":\"100\",\"sports\":\"100\",\"education\":\"50\",\"dharmik\":\"50\",\"jeevadaya\":\"500\"}', 1, NULL, NULL, 'web', '2021-08-11 09:15:09', '192.168.127.12'),
(71, 'DPF0514', NULL, '100', 'om', '9004190906', '', '<EMAIL>', 'B-15, 5B, 1st Floor, Royal Industrial Estate,', 'test', 'IITF59', '{\"general\":\"100\",\"medical\":\"0\",\"sports\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"jeevadaya\":\"0\"}', 2, NULL, 'test', 'web', '2021-08-11 09:20:58', '192.168.127.12'),
(72, 'DPF0514', 'depa_recipt_R7DLBEQ77S.pdf', '15000', 'praanvi', '9004190906', '', '<EMAIL>', 'B-15, 5B, 1st Floor, Royal Industrial Estate,', 'test', 'IITF58', '{\"general\":\"5000\",\"medical\":\"0\",\"sports\":\"5000\",\"education\":\"0\",\"dharmik\":\"5000\",\"jeevadaya\":\"0\"}', 1, NULL, NULL, 'web', '2021-08-12 09:14:20', '192.168.127.12'),
(73, 'Tttt', NULL, '5100', 'Om', '9004190906', '', '<EMAIL> ', 'Test', 'Test', 'Ttty', '{\"general\":\"100\",\"medical\":\"5000\",\"sports\":\"0\",\"education\":\"0\",\"dharmik\":\"0\",\"jeevadaya\":\"0\"}', 0, NULL, NULL, 'web', '2021-08-13 18:56:57', '192.168.127.12'),
(74, 'DPF0514', 'depa_recipt_I1A6TNE2E7.pdf', '3100', 'Om', '9004190906', '', '<EMAIL> ', 'Thane', 'Test', 'TTF601', '{\"general\":\"500\",\"medical\":\"500\",\"sports\":\"500\",\"education\":\"500\",\"dharmik\":\"500\",\"jeevadaya\":\"600\"}', 1, NULL, NULL, 'web', '2021-08-23 06:36:36', '172.16.58.3');
-- --------------------------------------------------------
--
-- Table structure for table `master_donation_category`
--
CREATE TABLE `master_donation_category` (
`id` int(11) NOT NULL,
`donationcategory` text CHARACTER SET utf8 NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_donation_category`
--
INSERT INTO `master_donation_category` (`id`, `donationcategory`, `deleted`) VALUES
(1, 'General', 0),
(2, 'Medical', 0),
(3, 'Sports', 0),
(4, '<NAME>', 1),
(5, 'Education', 0),
(6, 'Dharmik', 0),
(7, 'IT', 1),
(8, 'Jeevadaya', 0),
(9, '<NAME>', 1),
(10, '<NAME>', 1),
(11, 'Test 123', 1);
-- --------------------------------------------------------
--
-- Table structure for table `master_donors`
--
CREATE TABLE `master_donors` (
`id` int(11) NOT NULL,
`donor_title` varchar(50) DEFAULT NULL,
`donor_image` varchar(50) DEFAULT NULL,
`category` varchar(15) NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_donors`
--
INSERT INTO `master_donors` (`id`, `donor_title`, `donor_image`, `category`, `deleted`) VALUES
(1, '<NAME>', 'b8360e24b399ddac106e5633890e1d4e.jpg', 'main', 0),
(2, 'Donor Second', '5ed1765d6c85ab75bbb3ded7ea605a32.jpg', 'main', 1),
(3, 'Donor 3', '994563ad66dd366739f5542447994a22.jpg', 'main', 1),
(4, 'Test 1', '8272e1b4c424367ac91bc9632448517d.jpg', 'main', 1),
(5, 'Om Prakash 1', '4688dbac9064f23e11791b1b351ff477.png', 'sports', 1),
(6, 'Test ', '0fee058a303611427a6c26cdd79c1fd2.jpg', 'sports', 1),
(7, 'test', '579b595f5f3876dec048a3d19acd9fbb.png', 'main', 1),
(8, 'sdsad', '43623210f8c587655044fb4bec344ab8.png', 'main', 0),
(9, 'asdasd', '3bd82974818f613aa288d3e9490e7a9d.png', 'main', 1),
(10, 'asdasd', '323b56e363c1e10a6d0f915c02bbd9cc.png', 'main', 1),
(11, 'xyz', '944c5d362ecd900198db149aa9a07fc1.png', 'sports', 1),
(12, 'xyz', 'e81bf0a3b4e2b862f757915c426db407.png', 'sports', 1),
(13, 'xyz', 'a44e6b00b5648350eec3bf27654556aa.png', 'sports', 1),
(14, 'xyz', '19280fa0791a4ee1ed1f9eee3f1b16bd.png', 'sports', 1),
(15, 'sadasd', '38c2c43aab5cc8687648e8df4ab88f09.png', 'main', 1),
(16, 'asdasdasdasd', 'e8446a1130a2fe76bf13232eff60febb.png', 'sports', 1),
(17, 'chirag', '66441fc32bd2ad9c85becc66bd3ac1a8.jpg', 'main', 1),
(18, 'PSD Donor Card', '043e91965b0ac109f3fc9ce903aa7b8e.jpg', 'main', 1),
(19, 'test1', '77d64397d011ac7e6843d7cd8b74297f.jpg', 'main', 1),
(20, 'temt', '9f1a7f52c6b1b4a60079ee656ae2b4e2.jpg', 'main', 1),
(21, 'the animator', 'd03c23b03843f6c7594c819c1967d59c.jpg', 'main', 0),
(22, 'test om', '0d03f9023b8672fda8529a6482bf650c.png', 'main', 0);
-- --------------------------------------------------------
--
-- Table structure for table `master_education`
--
CREATE TABLE `master_education` (
`id` int(11) NOT NULL,
`education` varchar(55) NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_education`
--
INSERT INTO `master_education` (`id`, `education`, `deleted`) VALUES
(1, 'Other', 0),
(2, 'Graduate', 0),
(3, 'Post Graduate', 0),
(4, 'Pre & Primary School', 0),
(6, 'Under Graduate', 0),
(8, '1st Std', 0),
(9, '2nd Std', 0),
(10, '3rd Std', 0),
(11, '4th Std', 0),
(12, '5th Std', 0),
(13, '6th Std', 0),
(14, '7th Std', 0),
(15, '8th Std', 0),
(16, '9th Std', 0),
(17, 'S.S.C', 0),
(19, 'H.S.C', 0),
(20, 'Animation', 0),
(21, 'Automobile Eng.', 0),
(23, 'B. Optometrist', 0),
(24, 'B.A.', 0),
(25, 'B.A.A.', 0),
(26, 'B.A.F', 0),
(27, 'B.A.M.S.', 0),
(28, 'B.AD', 0),
(29, 'B.Arch', 0),
(30, 'B.B.I.', 0),
(31, 'B.C.A', 0),
(33, 'B.Com.', 0),
(34, 'B.D.S. Dentist', 0),
(35, 'B.E.', 0),
(36, 'B.E. (Auto Mobile)', 0),
(37, 'B.E. (Chemical)', 0),
(38, 'B.E. (Civil)', 0),
(39, 'B.E. (Comp)', 0),
(41, 'B.E. (Electronics)', 0),
(42, 'B.E. (I.T.)', 0),
(43, 'B.E. (Mech)', 0),
(44, 'B.E. (Prod.)', 0),
(45, 'B.E. (Textile)', 0),
(47, 'B.E.M.S.', 0),
(48, 'B.Ed.', 0),
(49, 'B.F.A.', 0),
(50, 'B.F.M.', 0),
(51, 'B.H.M.S.', 0),
(52, 'B.H.S.S.', 0),
(53, 'B.M.', 0),
(54, 'B.M.L.T.', 0),
(55, 'B.M.M.', 0),
(56, 'B.M.S.', 0),
(57, 'B.P.T.H.', 0),
(58, 'B.Pharm.', 0),
(59, 'B.sc ( Chem )', 0),
(60, 'B.Sc.', 0),
(61, 'B.Sc. (Agri.)', 0),
(62, 'B.Sc. (Bio Tech.)', 0),
(63, 'B.Sc. (Computer)', 0),
(64, 'B.Sc. (Home Science)', 0),
(65, 'B.Sc. (Hons)', 0),
(66, 'B.Tech.', 0),
(67, 'Banking & Insurance', 0),
(68, 'Bio-Infometics', 0),
(70, '<NAME>.', 0),
(71, 'C.A.', 0),
(72, 'C.F.A.', 0),
(74, 'C.S.', 0),
(75, 'Commercial Artist', 0),
(76, 'Commercial French', 0),
(77, 'CPS(Diabetology)', 0),
(78, '<NAME>.', 0),
(79, 'D.B.M.', 0),
(81, 'D.E.E.', 0),
(82, 'D.Ed', 0),
(84, 'D.F.A.', 0),
(85, 'D.H.B.', 0),
(86, 'D.H.M.S.', 0),
(87, 'D.L.L.M.', 0),
(88, 'D.M.E', 0),
(89, 'D.M.L.T.', 0),
(90, 'D.M.M.', 0),
(91, 'D.O.M.S.', 0),
(92, 'D.Pharm.', 0),
(93, 'Dental Surgeon', 0),
(94, 'DFM', 0),
(95, 'Diploma (Home Science)', 0),
(96, 'Diploma ( Finance )', 0),
(97, 'Diploma (Architech)', 0),
(98, 'Diploma (Auto)', 0),
(99, 'Diploma (Civil)', 0),
(100, 'Diploma (Comp)', 0),
(101, 'Diploma (Electronics)', 0),
(102, 'Diploma (Mech)', 0),
(103, 'Diploma (Pharm)', 0),
(104, 'Diploma Chemical Test', 0),
(105, 'Diploma in Gemnology', 0),
(106, 'DIploma in Nursing', 0),
(107, 'Doctor', 0),
(108, 'ECCED', 0),
(109, '<NAME>', 0),
(110, 'F.C.A.', 0),
(111, 'F.C.G.R', 0),
(112, 'F.C.S.', 0),
(117, 'Fashion Designer', 0),
(118, 'G.C.D.', 0),
(119, 'G.C.E.H.', 0),
(120, 'G.F.A.M.', 0),
(121, 'H.<NAME>', 0),
(122, 'Home Science', 0),
(123, '<NAME>.', 0),
(124, 'I.A.T.A.', 0),
(125, 'I.C.E.H.', 0),
(126, 'IBM', 0),
(127, 'ICWA', 0),
(129, 'IITC - INC', 0),
(131, 'Inter CA', 0),
(134, 'Interior decoration', 0),
(135, 'J.D.D', 0),
(137, 'L.C.E.H.', 0),
(138, 'L.L.B.', 0),
(139, 'L.L.M.', 0),
(140, '<NAME>', 0),
(141, '<NAME>', 0),
(142, '<NAME>', 0),
(143, '<NAME>.', 0),
(144, 'M.A.', 0),
(145, 'M.A.I.O.T.', 0),
(148, 'M.B.A.', 0),
(149, 'M.B.B.S.', 0),
(150, 'M.C.A.', 0),
(151, 'M.C.M.', 0),
(152, 'M.C.P.S', 0),
(153, 'M.C.S.E', 0),
(154, 'M.Ch.', 0),
(155, 'M.Com.', 0),
(156, 'M.D.', 0),
(157, 'M.D. (Path.)', 0),
(158, 'M.D.D.G.', 0),
(159, 'M.D.S.', 0),
(160, 'M.D.S. (Oral Surgeon)', 0),
(161, 'M.M.S.', 0),
(162, 'M.P.A.', 0),
(163, 'M.R.C.psych', 0),
(166, 'M.S.', 0),
(167, 'M.S. (Infotec)', 0),
(168, 'M.S. (Ortho)', 0),
(169, 'M.S. (Pro Man & Arc.)', 0),
(170, 'M.S.W.', 0),
(172, 'M.Tech.', 0),
(173, 'Master int. Desiner', 0),
(179, 'Network Eng.', 0),
(180, 'Nursery', 0),
(181, 'O. T.', 0),
(182, 'Opthomatrist', 0),
(183, 'P.G.D.B.A. (H.R.)', 0),
(184, 'P.G.D.B.A.(Marketing)', 0),
(185, 'P.G.D.C.A', 0),
(186, 'P.G.D.G.C', 0),
(187, 'P.G.D.M.L.T. (Pathology)', 0),
(188, 'P.G.D.S.T.', 0),
(189, 'P.Gd.', 0),
(190, 'P.T.S.', 0),
(191, 'PGDM (Finance)', 0),
(193, 'Ph.D.', 0),
(194, 'Physiothertist', 0),
(195, 'Pilot', 0),
(196, 'Play Group', 0),
(197, 'Psychologist', 0),
(198, 'R.E.D.M.', 0),
(207, 'Textile Technology', 0),
(215, 'Electric Engg.', 0),
(217, 'F.Y.J.C.', 0),
(228, 'M.I.S. (U.S.A.)', 0),
(234, 'FYBBI.', 0),
(236, 'Sr. Kg.', 0),
(237, 'Jr. Kg.', 0),
(239, 'B.B.A. / ECCED', 0),
(240, 'P.T.C.', 0),
(241, 'S.S.S.', 0),
(245, 'Mech. Engg.', 0),
(251, 'P.G.D./B.A.', 0),
(252, 'M.E.(USA)', 0),
(255, 'Arts', 0),
(277, 'P.G.D. Dietetics', 0),
(278, 'Mass Media', 0),
(279, 'omp', 1),
(280, 'ttt1', 1);
-- --------------------------------------------------------
--
-- Table structure for table `master_event`
--
CREATE TABLE `master_event` (
`id` int(11) NOT NULL,
`title` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
`image` varchar(50) DEFAULT NULL,
`description` text CHARACTER SET utf8 NOT NULL,
`event_date` date NOT NULL,
`link` varchar(255) CHARACTER SET utf8 NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_event`
--
INSERT INTO `master_event` (`id`, `title`, `image`, `description`, `event_date`, `link`, `deleted`) VALUES
(1, 'Seminar', '2129e291753b71ba88637b1465b84a75.jpeg', 'Seminar & Lecture', '2020-03-15', 'blank', 1),
(2, 'job', 'ca7215631c8cd6778bf7d82851ada522.jpg', 'job serch', '2020-07-09', 'www.theanimator.in', 1),
(3, 'જરૂરિયાતમંદ પરિવારોને મેડીકલેમ સહાય આપવા બાબત', 'b5000017f336e90ba7b0488cd9b31fb4.jpeg', 'શ્રી ડેપા જૈન મહાજન ટ્રસ્ટ', '2020-07-01', '#', 0),
(4, 'મગજના ઘસારા ને અટકાવો (મગજની સ્વસ્થતા) અંગે વેબીના', 'b31510af087698fc8f622d6251d5da2b.jpeg', 'શ્રી ડેપા જૈન મહાજન ટ્રસ્ટ દ્વારા સંચાલિત અને ડેપા ગ્રેડ્સ ફોરમ દ્વારા આયોજિત\r\nમગજના ઘસારા ને અટકાવો (મગજની સ્વસ્થતા) અંગે વેબીનાર..\r\nશ્રી ડેપા ગ્રેડ્સ ફોરમ દ્વારા રવિવાર તા. ૨૬-૭-૨૦૨૦ સમય સાંજે ૩ થી ૫ દરમ્યાન zoom પર વેબીનાર નું આયોજન કરવામાં આવેલ છે. \r\n\r\nઅમુક ઉંમર વીતી ગયા પછી માણસ નામ, સરનામું વગેરે ભુલવા લાગે છે અને આપણું મગજ પેહલાં ની જેમ તેજીથી કામ નથી કરતું. પુરતી સંભાળ ન રાખવાથી આપણને મગજની બીમારી પણ થાય છે.\r\n\r\nતો ચાલો આપણે સમજીએ કે આપણે આપણા મગજને કેવી રીતે સ્વસ્થ રાખી શકીએ.\r\n\r\nવેબીનારમાં,\r\n-મગજના ઘસારા ને કેવી રીતે અટકાવવો, \r\n-મગજને કેવી રીતે ફિટ રાખવું, \r\n-મગજને તંદુરસ્ત રાખવા કયા પ્રકાર નો ખોરાક લેવો \r\n-મગજ ની કસરત થાય એવી ગેમ્સ વગેરે વિષય ઉપર જાણીતા ગેમ થેરેપીસ્ટ અને ફિજોલોજિસ્ટ મિતલ સાલિયા વિસ્તૃત સમજણ આપશે.\r\nમહત્વની જાણકારી મેળવવા સૌએ હાજરી આપવા નીચે આપેલ ગ્રુપ માં જોડાવા વિનંતિ.\r\n\r\nઆ વેબીનાર ફકત ડેપા ગામવાસીઓ અને નીયાની બહેનો માટેજ છે જેની ખાસ નોંધ લેવી.\r\n\r\nzoom વેબીનાર વિશે વધુ માહિતી માટે સંપર્ક:\r\n', '2020-07-26', 'https://chat.whatsapp.com/Bc6PrTxjNLk15GplYqCy9M', 0),
(5, 'Test ', 'c3291a7ebe414fc3e4010e73a7ba48d6.jpg', 'dfdsgdfgdfgdfg', '2021-03-10', 'https://www.google.com/', 1),
(6, 'test 1', '6adc13e50f67f98e85b08dafce53622d.jpg', 'fdsfdsf', '2021-03-09', 'https://www.google.com/', 1),
(7, 'COVID-19 vaccine announcement', '3c7f3595718e398eed67c742834cf808.jpg', 'It was welcome news in the midst of growing concerns about the coronavirus pandemic, which has sickened more than 50 million people and killed over a million worldwide — including nearly 250,000 in the United States. <NAME>, director of the National Institute of Allergy and Infectious Diseases, called the results “extraordinary.”\r\n\r\nIf Pfizer receives authorization from the Food and Drug Administration for its vaccine, as is widely expected, it could potentially begin vaccinating millions of Americans before the end of the year.', '2021-03-20', 'https://news.usc.edu/178722/pfizer-covid-19-vaccine-questions-concerns-usc-experts/', 0),
(8, 'COVID-19 vaccine announcement', '139a759c7898e8d12e1edba720425695.jpg', 'Ethical issues could complicate development of other vaccines\r\n“While the data details are not clear at this time, there is no way not to celebrate this as a monumental achievement and a great first step forward towards controlling this devastating pandemic,” said <NAME>, an infectious disease expert at the Keck School of Medicine of USC and investigator of an Operation Warp Speed vaccine clinical trial. “If the 90% efficacy estimate is corroborated, the efficacy of this vaccine will be among the highest when compared to other very successful vaccines.”', '2021-03-20', 'https://news.usc.edu/178722/pfizer-covid-19-vaccine-questions-concerns-usc-experts/', 1),
(9, 'COVID', 'e09b17787004b5553b49908a60c09579.jpg', 'hi', '2021-06-29', 'www.theanimator.in', 1),
(10, 'Father Day1', 'b9e6bc10035f3321420ad50f50cfbb5e.jpg', 'Father Day1Father Day1,\r\nFather Day1, Father Day1', '2021-06-24', '#', 1),
(11, 'test', '684eb5068d22320906c939a34e7825af.jpg', 'testing', '2021-06-26', 'www.theanimator.in', 1),
(12, 'sd', 'cb2ec0e9122684a4a4a096d1d9a268a1.JPG', 'dd', '2021-06-28', '#', 1),
(13, 'Cricket tournament', '8f260599ea19655b838643db0774e2a8.jpeg', 'Cricket tournament', '2021-06-29', '#', 0),
(14, 'camping', '49509967b87366a913d85dc23fcae14b.jpg', 'Definition in Gujarati: તંબુમાં રહીને રજા ગાળવાની પ્રવૃત્તિ.\r\nExamples in English:\r\n• We are going for camping on my birthday.\r\n', '2021-07-04', 'https://www.multibhashi.com/camping-meaning-in-gujarati/', 1),
(15, 'Camping Event', 'e37158da897d25a5dd88c1a720f017ff.jpg', 'camping તંબુમાં રહીને રજાના દિવસો ગુજારવા\r\nતંબુમાં રહીને રજાના દિવસો ગુજારવા\r\n\r\ncamping = તંબુમાં રહીને રજાના દિવસો ગુજારવા\r\nDefinition in English: the activity of spending a holiday living in a tent. \r\nDefinition in Gujarati: તંબુમાં રહીને રજા ગાળવાની પ્રવૃત્તિ.\r\nExamples in English:\r\n• We are going for camping on my birthday.\r\nExamples in Gujarati:\r\n• અમે મારા જન્મદિવસ પર કેમ્પિંગ માટે જઈ રહ્યા છીએ.\r\n', '2021-07-04', 'https://www.multibhashi.com/camping-meaning-in-gujarati/', 0),
(16, 'test om', '88c5fc06fa4efaf63f95578195838640.jpg', 'sdgdfgdfgdfgdfgdfgdfgdfgdfgdfg', '2021-07-25', 'www.theanimator.in', 1),
(17, 'test 30mb', '702ca95eddc9d0485bfdb1092a8fc9e1.jpg', 'test 30mb test 30mb test 30mb test 30mb test 30mb test 30mb test 30mb test 30mb test 30mb test 30mb test 30mb test 30mb test 30mb test 30mb ', '2021-07-29', 'http://deepafarsan.in/depa_oldbk/helpus_detail/8', 1),
(18, 'test M', '1ca480e66c4fc31a5df1bba384dc8dd1.jpg', 'dsgdfsgdfgdfgdfgdfg', '2021-07-30', 'www.theanimator.in', 1),
(19, 'Test omp', '2737bd14ca11da941687ec06ff9acbfc.jpg', 'the animator', '2021-08-10', 'www.theanimator.in', 1),
(20, 'happy independence day 2021', 'f9832592db7d0e76611a3039c13dc314.jpg', 'happy independence day 2021 gssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss', '2021-08-10', '#', 1),
(21, 'happy independence day 2021', 'd08d8402e1a9cbcc445798c7d939e1d2.jpg', 'happy independence day 2021 vzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzadsbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbv', '2021-08-12', '#', 1),
(22, 'om', '3acca0469c11b8cf75078b5ac5e7765a.jpg', 'It was welcome news in the midst of growing concerns about the coronavirus pandemic, which has sickened more than 50 million people and killed over a million worldwide — including nearly 250,000 in the United States. <NAME>, director of the National Institute of Allergy and Infectious Diseases, called the results “extraordinary.” If Pfizer receives authorization from the Food and Drug Administration for its vaccine, as is widely expected, it could potentially begin vaccinating millions of Americans before the end of the year.', '2021-08-12', '#', 1),
(23, 'happy independence day 2021', '6b78681a9e7eafa1758b49852c88b11d.jpg', 'ndependence Day is marked as the occasion to celebrate the countless sacrifices and struggles our freedom fighters have made to make India independent from British rule. It is observed as a national holiday with a flag hoisting ceremony, parade, and singing the national anthem with patriotic spirit. It was on August 15, 1947 that India was freed from British colonialism by gaining independence.', '2021-08-11', '#', 0),
(24, 'Sample New Testing', '4acda49517c2a8f2e7915890146b4406.png', 'The news report is used to inform the civilians about what is happening around the world and for that thing a proper structure is followed for the easy understanding and Newspaper Reports is used for this purpose. Also referred as inverted pyramid, this format is available in our website free of cost.', '2021-08-12', 'https://www.sampletemplates.com/business-templates/news-report-template.html', 0),
(25, 'test tm', 'efcdba6470def9fa8b01f019283f26ec.jpg', 'dfasfadsf', '2021-08-11', '#', 1),
(26, 'Gokulastami', 'fc945bd89e4fe5eca0733da2be8cb53e.png', 'Happy <NAME>', '2021-08-31', 'http://theanimator.in', 0);
-- --------------------------------------------------------
--
-- Table structure for table `master_gallery`
--
CREATE TABLE `master_gallery` (
`id` int(11) NOT NULL,
`title` varchar(255) CHARACTER SET utf8 NOT NULL,
`gdrive_link` text NOT NULL,
`slug` varchar(255) CHARACTER SET utf8 NOT NULL,
`thumbnail` varchar(255) NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0',
`added_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_gallery`
--
INSERT INTO `master_gallery` (`id`, `title`, `gdrive_link`, `slug`, `thumbnail`, `deleted`, `added_on`) VALUES
(1, 'Test Title', '', 'test-title', '202003220549407.jpg', 1, '2020-03-22 05:49:41'),
(2, 'Gallery One', '', 'gallery-one', '202003220608157.jpg', 1, '2020-03-22 18:08:16'),
(4, 'Gallery Two', '', 'gallery-two', '202003230111558.jpg', 1, '2020-03-23 13:11:56'),
(5, '<NAME>', '', 'gaam-darsan', '20200708040533.JPG', 1, '2020-03-26 10:51:32'),
(6, 'Seminar', '', 'seminar', '202005020606274.jpeg', 1, '2020-05-02 06:06:28'),
(13, 'New Gallery', '', 'new-gallery', '202007091011408.jpg', 1, '2020-07-09 10:11:41'),
(14, 'test', '', 'test', '202007101246143.jpg', 1, '2020-07-10 12:46:15'),
(15, 'Testing No 1', '', 'testing-no-1', '202007130548473.jpg', 1, '2020-07-13 05:48:47'),
(16, 'Testing gallery', '', 'testing-gallery', '202007130604284.jpg', 1, '2020-07-13 06:04:28'),
(17, '<NAME>', '', 'depa-gaam', '20200725050143.JPG', 1, '2020-07-25 17:01:45'),
(18, 'Cricket tournament', '', 'cricket-tournament', '202007291225112.jpeg', 0, '2020-07-29 00:25:12'),
(19, 'Depa Grads Forum (02/06/2019)', '', 'depa-grads-forum-02062019', '2020072912420813.jpeg', 0, '2020-07-29 00:42:09'),
(20, 'Edu-Seminar', '', 'edu-seminar', '202103110805391.jpg', 0, '2020-08-12 15:10:12'),
(21, 'OM Test', '', 'om-test', '202103101156563.jpg', 1, '2021-03-10 11:56:56'),
(22, 'ghjhhkj', '', 'ghjhhkj', '202103120655501.jpg', 1, '2021-03-12 06:55:50'),
(23, 'testdfdgdg', '', 'testdfdgdg', '202106220132352.jpg', 1, '2021-06-22 08:02:35'),
(24, 'happy fathers day', '', 'happy-fathers-day', '20210622013823.jpg', 1, '2021-06-22 08:08:23'),
(25, 'fatherssssssssssss', '', 'fatherssssssssssss', '2021062201391310.jpg', 1, '2021-06-22 08:09:13'),
(26, 'demo', '', 'demo', '202106251210453.jpg', 1, '2021-06-25 06:40:45'),
(27, 'Vital Firm', '', 'vital-firm', '202106250715186.jpg', 1, '2021-06-25 13:45:18'),
(28, 'a', '', 'a', '202106260221322.jpg', 1, '2021-06-26 08:51:32'),
(29, 'bc', '', 'bc', '20210626022235.png', 1, '2021-06-26 08:52:35'),
(30, 'Cricket @2', '', 'cricket-2', '202106270933594.jpeg', 0, '2021-06-27 16:03:59'),
(31, 'Panjo Depa gamje ek Jalak', '', 'panjo-depa-gamje-ek-jalak', '202107031149114.JPG', 1, '2021-07-03 06:19:11'),
(32, '<NAME>', '', 'depa-gaam-ni-jalak', '202107030537384.JPG', 0, '2021-07-03 12:07:38'),
(33, 'test gdrive link', 'https://www.youtube.com/watch?v=fbWkDQw8oL4', 'test-gdrive-link', '202107250359122.jpg', 0, '2021-07-25 10:29:12'),
(34, 'dvvxcv', '', 'dvvxcv', '202107260245078.jpeg', 1, '2021-07-26 09:15:07'),
(35, 'Test Om Prakash', '', 'test-om-prakash', '202108090708045.jpg', 0, '2021-08-09 13:38:04'),
(36, 'test om', '', 'test-om', '202108120248133.jpg', 1, '2021-08-12 09:18:13');
-- --------------------------------------------------------
--
-- Table structure for table `master_help_us`
--
CREATE TABLE `master_help_us` (
`id` int(255) NOT NULL,
`family_no` varchar(10) NOT NULL,
`member_no` varchar(20) NOT NULL,
`title` varchar(100) NOT NULL,
`contact_person` varchar(50) NOT NULL,
`contact_number` varchar(12) NOT NULL,
`details` text NOT NULL,
`help_for` varchar(100) NOT NULL,
`status` int(10) NOT NULL,
`created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`deleted` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `master_help_us`
--
INSERT INTO `master_help_us` (`id`, `family_no`, `member_no`, `title`, `contact_person`, `contact_number`, `details`, `help_for`, `status`, `created_date`, `deleted`) VALUES
(1, 'DPF0539', 'DPF0539-01', 'title 1', 'ajay', '9876543210', 'help pls urjent', 'corona', 2, '2021-07-24 15:41:16', 0),
(2, 'DPF0539', 'DPF0539-01', 'i need help in code', 'sahil', '9876543210', 'php is frontend', 'coding', 1, '2021-07-22 10:11:39', 0),
(3, 'DPF0539', 'DPF0539-01', 'asdasd', 'asdas', '1234567980', 'asdasd', '2', 1, '2021-07-22 12:39:57', 0),
(4, 'DPF0539', 'DPF0539-01', 'asdasd', 'asdasd', '4567891230', 'asdasd', '3', 2, '2021-07-22 12:32:00', 0),
(5, 'DPF0514', 'DPF0514-01', 'test', 'test', '1234568970', 'test', 'other', 1, '2021-08-12 08:25:02', 1),
(6, 'DPF0514', 'DPF0514-01', 'test m', 'om prakash', '9004190906', 'test form', '2', 1, '2021-07-29 12:26:30', 1),
(7, 'DPF0514', 'DPF0514-01', 'test m2', 'om prakash', '9004190906', 'hngfhnjgfnjghfmghmmbvnmbvnmbvnmbvnvbmnbvnbbcvncvnncvncvncvncvncvncvncvncvncvnbcvnvcnbcvncbvncvn', '3', 2, '2021-07-29 12:22:57', 1),
(8, 'DPF0514', 'DPF0514-01', 'test images', 'AJAY', '1235469870', 'asdasdasd', '1', 1, '2021-08-12 08:24:54', 1),
(9, 'DPF0514', 'DPF0514-01', 'om prakash', 'om prakash', '9004190906', 'test m', '1', 1, '2021-08-12 08:25:12', 1),
(10, 'DPF0517', 'DPF0517-01', 'Property On Sell', 'Harsh', '9028984783', 'Property On Sell; Property On Sell;\r\nProperty On Sell; Property On Sell;\r\nProperty On Sell; Property On Sell;\r\nProperty On Sell; Property On Sell;\r\nProperty On Sell; Property On Sell;\r\nProperty On Sell; Property On Sell;\r\nProperty On Sell; Property On Sell;', '1', 1, '2021-07-31 05:56:52', 0),
(11, 'DPF0514', 'DPF0514-01', 'test images', 'AJAY', '1235469870', 'deg5t6hy bgn yui 7bbhyn 7n', '3', 1, '2021-08-12 08:25:30', 1),
(12, 'DPF0514', 'DPF0514-01', 'Education Process In INDIA', 'AJAY', '1235469870', 'Education is the process of facilitating learning, or the acquisition of knowledge, skills, values, morals, beliefs, and habits. Educational methods include teaching, training, storytelling, discussion and directed research.', 'Education', 1, '2021-08-12 08:25:21', 1),
(13, 'DPF0514', 'DPF0514-01', 'test images test images test images test images test images', 'ASASAS', '1235469870', 'In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content. Lorem ipsum may be used as a placeholder before final copy is available.', 'Medical', 0, '2021-08-12 08:24:43', 1),
(14, 'DPF0514', 'DPF0514-01', 'test', 'om', '9004190906', 'test', 'Property', 1, '2021-08-12 08:24:35', 1),
(15, 'DPF0514', 'DPF0514-01', 'om <NAME>', 'om prakash', '9004190906', 'dsvvzvxczvxcxzcvzvxzvxzdadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadada', 'Education', 1, '2021-08-11 10:07:10', 1),
(16, 'DPF0514', 'DPF0514-01', 'test m', 'om prakash', '9004190906', 'In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design, In publishing and graphic design,', 'Property', 1, '2021-08-12 08:21:14', 1),
(17, 'DPF0514', 'DPF0514-01', 'sad', 'asd', '1234568790', 'asdasdasdasd', 'Property', 0, '2021-08-12 08:24:24', 1),
(39, '1', 'help_by', 'tyt', '1', '1234567890', '1', '1', 0, '2021-08-11 16:30:48', 0),
(40, '1', 'help_by', 'ttt', '1', '1234567890', '1', '1', 0, '2021-08-11 16:32:26', 0),
(41, 'DPF0514', 'DPF0514-01', 'Test Help', 'om prakash', '9004190906', 'The Animator started in 2007 by Mr. <NAME>, an entrepreneur possessing humongous business perception; The Animator has grown by leaps and bounds since inception. We are running since last 10 Years in the market with innovative and exceptional compelling solution for the clients. Along with IT Solutions we serve in Web Designing and Development, Mobile Application, Software Development, Animation, Graphic Designing, IT Outsourcing, SEO and Digital Marketing.', 'Education', 1, '2021-08-12 08:23:34', 0),
(42, 'DPF0514', 'DPF0514-01', 'Title', 'ContactPersonName', '0123456789', 'detailsdetailsdetailsdetailsdetailsdetailsdetails', 'Medical', 0, '2021-08-12 18:41:12', 0),
(43, 'DPF0514', 'DPF0514-01', 'Titlefghj', 'om', '9004190906', 'dgjklll hjklll hkll', 'Education', 0, '2021-08-13 19:04:47', 0),
(44, 'DPF0514', 'DPF0514-01', 'Titlefghj', 'om', '9004190906', 'dgjklll hjklll hkll', 'Education', 0, '2021-08-13 19:06:16', 0),
(45, 'DPF0514', 'DPF0514-01', 'Title', 'om', '9004190906', 'app test', 'Education', 0, '2021-08-14 04:16:10', 0),
(46, 'DPF0517', 'DPF0517-01', 'Covid Relief Center', 'om prakash', '9004190906', 'We need Oxygen Bed for a Critical Covid Paitent, On Immediate Basis ', 'Medical', 1, '2021-08-14 08:03:34', 0),
(47, 'DPF0517', 'DPF0517-01', 'Khetar ', 'Harsh', '9028984783', 'Khetar To sell -- 3.5 Acre Plot', 'Property', 1, '2021-08-14 13:16:34', 0),
(48, 'DPF0514', 'DPF0514-01', 'Title', 'ContactPersonName', '0123456789', 'detailsdetailsdetailsdetailsdetailsdetailsdetails', 'Property', 0, '2021-08-15 15:50:18', 0),
(49, 'DPF0514', 'DPF0514-01', 'ddd', 'ContactPersonName', '0123456789', 'detailsdetailsdetailsdetailsdetailsdetailsdetails', 'Property', 0, '2021-08-19 11:39:57', 0),
(50, 'DPF0514', 'DPF0514-01', 'test omp', 'om prakash', '9004190906', 'village omp', 'Education', 1, '2021-08-23 09:23:55', 1);
-- --------------------------------------------------------
--
-- Table structure for table `master_job`
--
CREATE TABLE `master_job` (
`id` int(11) NOT NULL,
`memid` int(11) NOT NULL,
`firm_name` varchar(55) NOT NULL,
`designation` varchar(155) NOT NULL,
`contact_person` varchar(155) DEFAULT NULL,
`contact_number` varchar(15) NOT NULL,
`contact_email` varchar(55) DEFAULT NULL,
`start_date` date DEFAULT NULL,
`end_date` date DEFAULT NULL,
`expiry_date` date DEFAULT NULL,
`can_reason` text NOT NULL,
`openings` int(11) DEFAULT NULL,
`salary_range_start` int(11) DEFAULT NULL,
`salary_range_end` int(11) DEFAULT NULL,
`location` varchar(155) NOT NULL,
`experience` varchar(15) DEFAULT NULL,
`description` text,
`status` int(11) NOT NULL DEFAULT '0' COMMENT '0 pending, 1 Approved, 2 Reject',
`created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`deleted` tinyint(1) NOT NULL DEFAULT '0',
`uploaded_by` varchar(55) DEFAULT NULL,
`ip` varchar(55) NOT NULL,
`client` varchar(15) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_job`
--
INSERT INTO `master_job` (`id`, `memid`, `firm_name`, `designation`, `contact_person`, `contact_number`, `contact_email`, `start_date`, `end_date`, `expiry_date`, `can_reason`, `openings`, `salary_range_start`, `salary_range_end`, `location`, `experience`, `description`, `status`, `created_date`, `deleted`, `uploaded_by`, `ip`, `client`) VALUES
(1, 1, 'IT', 'fsedf', 'Sheikh', '9004865982', '<EMAIL>', '2020-04-23', '2020-05-31', NULL, 'test deepak\r\n', 34, 15000, 25000, 'fdsf', '5+ years', 'test', 2, '2020-04-13 09:18:24', 1, 'Admin', '::1', 'web'),
(3, 1, '<NAME>', 'Sales Man', '<NAME>', '1234567890', '<EMAIL>', '2020-04-01', '2020-07-01', NULL, '', 2, 12000, 15000, 'Mulund', '2+ Years', NULL, 1, '2020-04-28 08:15:30', 0, NULL, '1.2.3.4', 'app'),
(4, 13, 'Praanvi Enterprises', 'Test', 'om prakash', '9004190906', '<EMAIL>', '2021-03-12', '2021-03-25', NULL, '', 2, 20000, 25000, 'Mumbai', '5', 'Test', 1, '2021-03-12 07:40:08', 0, 'Admin', '172.16.31.10', 'web'),
(5, 1, 'testing job', 'testing desg', 'deepak', '9702043716', '<EMAIL>', '2021-06-10', '2021-06-30', NULL, '', 1, 10000, 15000, 'xyz place', '5 - 6 years ', 'This is for testing purpose', 1, '2021-06-09 19:04:11', 1, 'Admin', '::1', 'web'),
(6, 1, 'xyz', 'abc', 'deepak', '1234567890', '<EMAIL>', '2021-06-10', '2021-06-30', NULL, '', 1, 10000, 15000, 'abcxyz', '1 - 2 years', 'Testing', 1, '2021-06-10 07:50:44', 1, 'Admin', '::1', 'web'),
(7, 1, 'HJ', 'Owner', 'Harsh', '9289844565', '<EMAIL>', '2021-06-22', '2021-06-30', NULL, '\r\n<div style=', 5, 25000, 35000, 'Mumbai', '5', 'JGHGH GHFGHF ', 1, '2021-06-25 13:52:38', 0, 'Admin', '192.168.127.12', 'web'),
(8, 1397, 'ajay ajay', 'ajay ajay', '1234569870', '1234568790', '<EMAIL>', '2021-01-01', '2021-10-10', NULL, '', 10, 100, 10000, 'Mumbai', 'asdsa dasd asd ', 'adasda23d13a21d32as1d32a1sd', 0, '2021-07-03 07:05:56', 1, 'om bachchalal bachchalal', '172.16.31.10', 'web'),
(9, 469, '<NAME>', 'Salesperson', 'HR', '9028984783', '<EMAIL>', '2021-07-07', '2021-07-20', NULL, '', 4, 8000, 45000, 'mumbai', '0 to 5yrs', 'kjhyt jhguytt ', 1, '2021-07-03 07:07:59', 1, '<NAME>', '172.16.31.10', 'web'),
(10, 1397, 'MMT', 'manager', 'om', '9004190906', '<EMAIL>', '2021-07-26', '2021-08-30', NULL, '', 2, 10000, 15000, 'mumbai', '2', 'mmmm', 1, '2021-07-26 07:17:12', 1, 'om bachchalal bachchalal', '192.168.127.12', 'web'),
(11, 1397, 'Animator', 'Developer', 'OM Sir', '1234568790', '<EMAIL>', '2021-07-15', '2021-07-25', NULL, '', 15, 10000, 150000, 'Mumbai', '2+ Years', 'test test test', 1, '2021-07-26 10:53:45', 0, 'om bachchalal bachchalal', '192.168.127.12', 'web'),
(12, 1397, 'MMA', 'manager', 'om Prakash', '9004190906', '<EMAIL>', '2021-08-09', '2021-08-14', NULL, '', 2, 40000, 60000, 'mumba', '10', 'test', 1, '2021-08-09 13:10:07', 0, 'om bachchalal bachchalal', '192.168.3.11', 'web'),
(13, 1397, 'ajay', 'developer', 'ajay', '8983680321', '<EMAIL>', '2021-08-11', '2021-08-12', NULL, '', 2, 10000, 50000, 'mumbai', '2', 'test', 1, '2021-08-10 11:31:25', 1, 'om bachchalal bachchalal', '192.168.127.12', 'web'),
(16, 1397, 'fdfsf', 'fsdf', 'fsdfsdf', '8983680321', '<EMAIL>', '2021-08-10', '2021-08-15', NULL, '', 2, 10, 10, 'sdfsdf', '2', 'test', 1, '2021-08-10 11:47:35', 1, 'om bachchalal bachchalal', '192.168.127.12', 'web'),
(17, 1397, 'The Animator', 'Manager', 'omprakash', '9004190906', '<EMAIL>', '2021-08-10', '2021-09-10', NULL, '', 2, 20000, 50000, 'Mumbai', '5 years', 'Test', 1, '2021-08-10 12:40:18', 0, 'om bachchalal bachchalal', '192.168.127.12', 'web'),
(19, 1, 'AJAY', 'Developer', '<NAME>', '1234568790', '<EMAIL>', '2021-10-10', '2022-10-10', NULL, '', 2, 20000, 25000, 'Mumbai', '2', 'n publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content. Lorem ipsum may be used as a placeholder before final copy is available.', 1, '2021-08-11 12:20:54', 0, 'Admin', '192.168.127.12', 'web'),
(20, 1397, 'The Animator', 'Manager', '<NAME>', '9004190906', '<EMAIL>', '2021-08-12', '2021-09-10', NULL, '', 2, 20000, 40000, 'mumbai', '2', 'The Animator started in 2007 by Mr. <NAME>, an entrepreneur possessing humongous business perception; The Animator has grown by leaps and bounds since inception. We are running since last 10 Years in the market with innovative and exceptional compelling solution for the clients. Along with IT Solutions we serve in Web Designing and Development, Mobile Application, Software Development, Animation, Graphic Designing, IT Outsourcing, SEO and Digital Marketing.', 1, '2021-08-12 05:06:12', 1, 'om bachchalal bachchalal', '192.168.127.12', 'web'),
(22, 1397, 'Android App ', 'bssb', 'bsbsb', '1236547890', '<EMAIL>', '2021-08-17', '2021-08-29', NULL, '', 100, 123, 123456, 'vshsh shshhs shhsbs shsh', '3+ yeses', 'gdhhshshhs Android ', 1, '2021-08-17 12:37:21', 0, 'om bachchalal bachchalal', '0', 'app'),
(23, 1397, 'omp', 'manager', 'om', '9004190906', '<EMAIL>', '2021-08-23', '2021-09-10', NULL, '', 2, 20000, 50000, 'mumbai', '2 years', 'test omp', 1, '2021-08-23 08:10:39', 0, 'om bachchalal bachchalal', '0', 'app'),
(24, 1397, 'gjk', 'manager', 'hgbm', '9004190906', '<EMAIL>', '2021-08-28', '2021-08-30', NULL, '', 2, 55555, 888888, 'mghk', '2', 'dgjk', 1, '2021-08-28 14:55:06', 0, '<NAME>', '0', 'app');
-- --------------------------------------------------------
--
-- Table structure for table `master_log`
--
CREATE TABLE `master_log` (
`log_id` int(11) NOT NULL,
`userid` int(11) NOT NULL,
`login_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`ip` varchar(55) NOT NULL,
`logintype` varchar(10) NOT NULL,
`client` varchar(10) NOT NULL DEFAULT 'Web'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_log`
--
INSERT INTO `master_log` (`log_id`, `userid`, `login_time`, `ip`, `logintype`, `client`) VALUES
(1, 1, '2020-03-13 12:26:28', '::1', 'admin', 'Web'),
(2, 1, '2020-03-13 12:43:33', '::1', 'admin', 'Web'),
(3, 1, '2020-03-13 13:10:53', '::1', 'admin', 'Web'),
(4, 1, '2020-03-18 16:29:58', '::1', 'admin', 'Web'),
(5, 1, '2020-03-18 18:24:33', '::1', 'admin', 'Web'),
(6, 1, '2020-03-19 11:12:05', '::1', 'admin', 'Web'),
(7, 1, '2020-03-19 16:36:23', '::1', 'admin', 'Web'),
(8, 1, '2020-03-19 14:05:36', '192.168.127.12', 'admin', 'Web'),
(9, 1, '2020-03-21 07:08:11', '172.16.31.10', 'admin', 'Web'),
(10, 1, '2020-03-21 07:13:23', '192.168.3.11', 'admin', 'Web'),
(11, 1, '2020-03-21 17:26:09', '172.16.31.10', 'admin', 'Web'),
(12, 1, '2020-03-22 05:47:00', '172.16.31.10', 'admin', 'Web'),
(13, 1, '2020-03-22 06:02:41', '172.16.31.10', 'admin', 'Web'),
(14, 1, '2020-03-22 15:23:27', '172.16.31.10', 'admin', 'Web'),
(15, 1, '2020-03-22 18:06:59', '172.16.31.10', 'admin', 'Web'),
(16, 1, '2020-03-23 09:52:00', '192.168.127.12', 'admin', 'Web'),
(17, 1, '2020-03-23 12:45:38', '172.16.31.10', 'admin', 'Web'),
(18, 1, '2020-03-23 12:52:05', '172.16.31.10', 'admin', 'Web'),
(19, 1, '2020-03-25 07:13:38', '172.16.58.3', 'admin', 'Web'),
(20, 1, '2020-03-26 10:37:51', '172.16.31.10', 'admin', 'Web'),
(21, 1, '2020-04-09 07:32:18', '172.16.58.3', 'admin', 'Web'),
(22, 1, '2020-04-09 07:32:26', '192.168.3.11', 'admin', 'Web'),
(23, 1, '2020-04-09 07:33:28', '172.16.17.32', 'admin', 'Web'),
(24, 1, '2020-04-10 13:57:59', '172.16.17.32', 'admin', 'Web'),
(25, 1, '2020-04-10 15:28:31', '172.16.17.32', 'admin', 'Web'),
(26, 1, '2020-04-10 16:38:02', '172.16.17.32', 'admin', 'Web'),
(27, 1, '2020-04-13 18:29:45', '172.16.31.10', 'admin', 'Web'),
(28, 1, '2020-04-18 07:06:06', '192.168.3.11', 'admin', 'Web'),
(29, 1, '2020-04-29 03:49:34', '192.168.127.12', 'admin', 'Web'),
(30, 1, '2020-04-30 11:05:03', '192.168.3.11', 'admin', 'Web'),
(31, 1, '2020-04-30 20:10:32', '192.168.3.11', 'admin', 'Web'),
(32, 1, '2020-05-01 11:13:38', '192.168.3.11', 'admin', 'Web'),
(33, 1, '2020-05-01 11:37:10', '192.168.3.11', 'admin', 'Web'),
(34, 1, '2020-05-01 12:25:18', '172.16.58.3', 'admin', 'Web'),
(35, 1, '2020-05-01 12:35:24', '192.168.3.11', 'admin', 'Web'),
(36, 1, '2020-05-01 14:59:20', '192.168.3.11', 'admin', 'Web'),
(37, 1, '2020-05-01 19:23:39', '192.168.3.11', 'admin', 'Web'),
(38, 1, '2020-05-01 19:54:44', '172.16.58.3', 'admin', 'Web'),
(39, 1, '2020-05-02 05:30:10', '192.168.127.12', 'admin', 'Web'),
(40, 1, '2020-05-02 10:01:18', '192.168.3.11', 'admin', 'Web'),
(41, 1, '2020-05-02 10:58:31', '192.168.3.11', 'admin', 'Web'),
(42, 1, '2020-05-03 04:55:49', '172.16.17.32', 'admin', 'Web'),
(43, 1, '2020-05-04 08:37:45', '192.168.127.12', 'admin', 'Web'),
(44, 1, '2020-05-05 18:08:58', '192.168.3.11', 'admin', 'Web'),
(45, 1, '2020-05-05 18:13:25', '172.16.58.3', 'admin', 'Web'),
(46, 3, '2020-06-04 15:07:25', '172.16.17.32', 'normal', 'cient'),
(47, 3, '2020-06-04 15:09:01', '172.16.31.10', 'normal', 'cient'),
(48, 3, '2020-06-04 15:10:01', '123453', 'normal', 'web'),
(49, 3, '2020-06-04 17:40:29', '172.16.17.32', 'normal', 'cient'),
(50, 1, '2020-06-04 18:51:57', '172.16.31.10', 'admin', 'Web'),
(51, 3, '2020-06-04 19:50:08', '172.16.31.10', 'normal', 'cient'),
(52, 3, '2020-06-05 12:14:35', '192.168.3.11', 'normal', 'cient'),
(53, 1, '2020-06-05 12:25:13', '192.168.3.11', 'admin', 'Web'),
(54, 3, '2020-06-05 12:26:10', '192.168.3.11', 'normal', 'cient'),
(55, 1, '2020-06-05 13:30:30', '4192.168.3.11', 'admin', 'Web'),
(56, 1, '2020-06-06 05:17:50', '172.16.17.32', 'admin', 'Web'),
(57, 3, '2020-06-06 07:45:03', '172.16.17.32', 'normal', 'cient'),
(58, 3, '2020-06-06 08:13:01', '192.168.3.11', 'normal', 'cient'),
(59, 3, '2020-06-06 12:32:49', '192.168.127.12', 'normal', 'cient'),
(60, 3, '2020-06-07 07:51:21', '192.168.127.12', 'normal', 'cient'),
(61, 3, '2020-06-07 07:52:59', '123453', 'normal', 'web'),
(62, 3, '2020-06-07 08:19:35', '123453', 'normal', 'web'),
(63, 1, '2020-06-07 09:07:12', '192.168.3.11', 'admin', 'Web'),
(64, 3, '2020-06-07 09:38:57', '1.2.3.4', 'normal', 'app'),
(65, 3, '2020-06-07 09:50:44', '1.2.3.4', 'normal', 'app'),
(66, 3, '2020-06-07 10:01:00', '1.2.3.4', 'normal', 'app'),
(67, 3, '2020-06-07 10:06:44', '1.2.3.4', 'normal', 'app'),
(68, 3, '2020-06-07 10:08:02', '192.168.3.11', 'normal', 'cient'),
(69, 3, '2020-06-07 10:08:13', '1.2.3.4', 'normal', 'app'),
(70, 3, '2020-06-07 10:08:43', '1.2.3.4', 'normal', 'app'),
(71, 3, '2020-06-07 10:17:57', '1.2.3.4', 'normal', 'app'),
(72, 3, '2020-06-07 10:17:57', '1.2.3.4', 'normal', 'app'),
(73, 3, '2020-06-07 10:19:21', '1.2.3.4', 'normal', 'app'),
(74, 3, '2020-06-07 10:23:11', '1.2.3.4', 'normal', 'app'),
(75, 3, '2020-06-07 10:25:45', '1.2.3.4', 'normal', 'app'),
(76, 3, '2020-06-07 10:27:05', '1.2.3.4', 'normal', 'app'),
(77, 3, '2020-06-07 10:28:08', '1.2.3.4', 'normal', 'app'),
(78, 3, '2020-06-07 10:33:16', '1.2.3.4', 'normal', 'app'),
(79, 3, '2020-06-07 11:25:38', '192.168.127.12', 'normal', 'cient'),
(80, 3, '2020-06-07 11:56:27', '172.16.17.32', 'normal', 'cient'),
(81, 3, '2020-06-08 15:04:55', '192.168.0.104', 'normal', 'Xiaomi Red'),
(82, 3, '2020-06-08 15:05:56', '192.168.0.104', 'normal', 'Xiaomi Red'),
(83, 3, '2020-06-08 15:11:46', '192.168.0.104', 'normal', 'Xiaomi Red'),
(84, 3, '2020-06-08 15:25:13', '192.168.0.104', 'normal', 'Xiaomi Red'),
(85, 3, '2020-06-08 15:25:13', '192.168.0.104', 'normal', 'Xiaomi Red'),
(86, 3, '2020-06-08 15:26:11', '192.168.0.104', 'normal', 'Xiaomi Red'),
(87, 3, '2020-06-08 16:36:17', 'fe80::15e8:18b0%rmnet4', 'normal', 'samsung SM'),
(88, 3, '2020-06-08 16:38:49', 'fe80::15e8:18b0%rmnet4', 'normal', 'samsung SM'),
(89, 3, '2020-06-08 17:32:13', '192.168.3.11', 'normal', 'cient'),
(90, 3, '2020-06-09 08:10:36', '192.168.0.100', 'normal', 'Xiaomi Red'),
(91, 3, '2020-06-09 08:11:00', '192.168.0.100', 'normal', 'Xiaomi Red'),
(92, 3, '2020-06-09 08:11:36', '192.168.0.100', 'normal', 'Xiaomi Red'),
(93, 3, '2020-06-09 08:13:32', '192.168.0.100', 'normal', 'Xiaomi Red'),
(94, 3, '2020-06-09 08:18:13', '192.168.0.100', 'normal', 'Xiaomi Red'),
(95, 3, '2020-06-09 08:19:16', '192.168.0.100', 'normal', 'Xiaomi Red'),
(96, 3, '2020-06-09 08:20:28', '192.168.0.100', 'normal', 'Xiaomi Red'),
(97, 3, '2020-06-09 08:26:55', '192.168.0.100', 'normal', 'Xiaomi Red'),
(98, 3, '2020-06-09 08:28:08', '192.168.0.100', 'normal', 'Xiaomi Red'),
(99, 3, '2020-06-09 08:28:16', '192.168.0.100', 'normal', 'Xiaomi Red'),
(100, 3, '2020-06-09 10:29:45', '192.168.0.100', 'normal', 'Xiaomi Red'),
(101, 3, '2020-06-09 10:35:21', '192.168.0.100', 'normal', 'Xiaomi Red'),
(102, 3, '2020-06-09 10:38:18', '192.168.0.100', 'normal', 'Xiaomi Red'),
(103, 3, '2020-06-09 10:38:26', '192.168.0.100', 'normal', 'Xiaomi Red'),
(104, 3, '2020-06-09 10:40:55', '192.168.0.100', 'normal', 'Xiaomi Red'),
(105, 3, '2020-06-09 10:44:39', '192.168.0.100', 'normal', 'Xiaomi Red'),
(106, 3, '2020-06-09 10:45:32', '192.168.0.100', 'normal', 'Xiaomi Red'),
(107, 3, '2020-06-10 14:31:26', '172.16.31.10', 'normal', 'cient'),
(108, 3, '2020-06-10 16:46:20', '192.168.3.11', 'normal', 'cient'),
(109, 3, '2020-06-10 17:34:59', '192.168.3.11', 'normal', 'cient'),
(110, 3, '2020-06-11 04:27:35', '172.16.58.3', 'normal', 'cient'),
(111, 3, '2020-06-11 05:43:51', '192.168.3.11', 'normal', 'cient'),
(112, 1, '2020-06-16 17:21:49', '172.16.31.10', 'admin', 'Web'),
(113, 3, '2020-07-01 09:53:32', '192.168.127.12', 'normal', 'cient'),
(114, 3, '2020-07-01 13:42:10', 'fe80::78e4:47ff:fe17:f238%dummy0', 'normal', 'Xiaomi Red'),
(115, 3, '2020-07-01 13:42:11', 'fe80::78e4:47ff:fe17:f238%dummy0', 'normal', 'Xiaomi Red'),
(116, 3, '2020-07-01 13:42:31', 'fe80::78e4:47ff:fe17:f238%dummy0', 'normal', 'Xiaomi Red'),
(117, 3, '2020-07-01 16:17:12', 'fe80::78e4:47ff:fe17:f238%dummy0', 'normal', 'Xiaomi Red'),
(118, 3, '2020-07-01 16:29:50', 'fe80::78e4:47ff:fe17:f238%dummy0', 'normal', 'Xiaomi Red'),
(119, 3, '2020-07-01 17:26:47', 'fe80::78e4:47ff:fe17:f238%dummy0', 'normal', 'Xiaomi Red'),
(120, 3, '2020-07-01 17:44:41', 'fe80::78e4:47ff:fe17:f238%dummy0', 'normal', 'Xiaomi Red'),
(121, 3, '2020-07-02 04:27:34', '192.168.127.12', 'normal', 'cient'),
(122, 3, '2020-07-02 07:51:32', '192.168.127.12', 'normal', 'cient'),
(123, 3, '2020-07-02 20:56:22', '192.168.127.12', 'normal', 'cient'),
(124, 1, '2020-07-07 15:52:11', '192.168.3.11', 'admin', 'Web'),
(125, 1, '2020-07-08 15:50:15', '172.16.58.3', 'admin', 'Web'),
(126, 1, '2020-07-08 16:30:23', '172.16.58.3', 'admin', 'Web'),
(127, 1, '2020-07-08 17:31:16', '172.16.58.3', 'admin', 'Web'),
(128, 1, '2020-07-09 10:10:35', '192.168.3.11', 'admin', 'Web'),
(129, 1, '2020-07-09 17:07:09', '192.168.3.11', 'admin', 'Web'),
(130, 1, '2020-07-09 17:16:02', '172.16.31.10', 'admin', 'Web'),
(131, 1, '2020-07-10 12:44:08', '172.16.58.3', 'admin', 'Web'),
(132, 1, '2020-07-10 12:50:37', '172.16.58.3', 'admin', 'Web'),
(133, 1, '2020-07-10 13:56:08', '172.16.58.3', 'admin', 'Web'),
(134, 1, '2020-07-10 14:15:38', '172.16.58.3', 'admin', 'Web'),
(135, 3, '2020-07-10 14:23:15', '172.16.58.3', 'normal', 'cient'),
(136, 1, '2020-07-12 15:09:55', '172.16.58.3', 'admin', 'Web'),
(137, 1, '2020-07-13 05:45:56', '172.16.17.32', 'admin', 'Web'),
(138, 1, '2020-07-16 19:43:30', '172.16.31.10', 'admin', 'Web'),
(139, 1, '2020-07-25 16:53:34', '172.16.17.32', 'admin', 'Web'),
(140, 1, '2020-07-26 07:41:48', '172.16.17.32', 'admin', 'Web'),
(141, 1, '2020-07-27 14:29:54', '172.16.58.3', 'admin', 'Web'),
(142, 533, '2020-07-28 10:38:16', '172.16.17.32', 'normal', 'cient'),
(143, 3, '2020-07-28 11:29:57', 'fe80::22ae:40a5%rmnet4', 'normal', 'samsung SM'),
(144, 1, '2020-07-29 00:19:54', '172.16.31.10', 'admin', 'Web'),
(145, 3, '2020-07-29 11:23:28', '172.16.17.32', 'normal', 'cient'),
(146, 13, '2020-07-31 10:52:07', '172.16.17.32', 'normal', 'cient'),
(147, 13, '2020-07-31 13:54:20', '192.168.127.12', 'normal', 'cient'),
(148, 13, '2020-07-31 19:56:22', 'fe80::fe6:e0ac%rmnet4', 'normal', 'samsung SM'),
(149, 13, '2020-07-31 19:56:24', 'fe80::fe6:e0ac%rmnet4', 'normal', 'samsung SM'),
(150, 13, '2020-08-01 20:29:27', '192.168.127.12', 'normal', 'cient'),
(151, 13, '2020-08-02 05:15:05', '172.16.17.32', 'normal', 'cient'),
(152, 13, '2020-08-02 05:20:20', '192.168.3.11', 'normal', 'cient'),
(153, 13, '2020-08-02 14:24:42', '172.16.17.32', 'normal', 'cient'),
(154, 13, '2020-08-02 14:48:49', '172.16.17.32', 'normal', 'cient'),
(155, 1394, '2020-08-05 05:48:39', '192.168.127.12', 'normal', 'cient'),
(156, 1394, '2020-08-05 05:50:48', '192.168.127.12', 'normal', 'cient'),
(157, 1394, '2020-08-05 05:55:03', '192.168.127.12', 'normal', 'cient'),
(158, 1394, '2020-08-05 05:58:04', '192.168.127.12', 'normal', 'cient'),
(159, 13, '2020-08-05 06:05:06', '172.16.17.32', 'normal', 'cient'),
(160, 1, '2020-08-06 09:15:17', '172.16.17.32', 'admin', 'Web'),
(161, 1394, '2020-08-06 12:17:07', '172.16.17.32', 'normal', 'cient'),
(162, 1394, '2020-08-06 13:49:24', 'fe80::5069:b9ff:fea2:dafd%dummy0', 'normal', 'OnePlus ON'),
(163, 13, '2020-08-07 07:45:10', '172.16.17.32', 'normal', 'cient'),
(164, 13, '2020-08-07 07:50:43', '172.16.17.32', 'normal', 'cient'),
(165, 1394, '2020-08-07 09:46:39', '192.168.1.163', 'normal', 'OnePlus ON'),
(166, 1, '2020-08-07 14:36:02', '172.16.17.32', 'admin', 'Web'),
(167, 1394, '2020-08-07 17:19:55', '192.168.0.106', 'normal', 'OnePlus ON'),
(168, 1, '2020-08-07 19:00:18', '172.16.31.10', 'admin', 'Web'),
(169, 1, '2020-08-08 04:12:32', '172.16.17.32', 'admin', 'Web'),
(170, 1, '2020-08-08 08:50:04', '172.16.17.32', 'admin', 'Web'),
(171, 13, '2020-08-08 09:37:14', '172.16.31.10', 'normal', 'cient'),
(172, 1174, '2020-08-08 17:30:11', '172.16.58.3', 'normal', 'cient'),
(173, 13, '2020-08-09 06:53:47', '192.168.3.11', 'normal', 'cient'),
(174, 1174, '2020-08-09 10:09:34', '172.16.31.10', 'normal', 'cient'),
(175, 1, '2020-08-09 10:37:28', '172.16.31.10', 'admin', 'Web'),
(176, 1174, '2020-08-09 10:48:24', '172.16.31.10', 'normal', 'cient'),
(177, 1174, '2020-08-09 14:30:10', '192.168.0.101', 'normal', 'vivo vivo '),
(178, 1, '2020-08-12 11:49:27', '172.16.17.32', 'admin', 'Web'),
(179, 13, '2020-08-13 14:02:53', '127.0.0.659', 'normal', 'Harsh-Post'),
(180, 1174, '2020-08-13 16:16:01', '172.16.17.32', 'normal', 'cient'),
(181, 1174, '2020-08-13 16:16:31', '127.0.0.659', 'normal', 'Harsh-Post'),
(182, 1174, '2020-08-13 18:46:59', 'fe80::b8eb:3cff:fe3f:36f9%dummy0', 'normal', 'Xiaomi Red'),
(183, 1174, '2020-08-13 18:47:00', 'fe80::b8eb:3cff:fe3f:36f9%dummy0', 'normal', 'Xiaomi Red'),
(184, 1174, '2020-08-13 18:47:22', 'fe80::b8eb:3cff:fe3f:36f9%dummy0', 'normal', 'Xiaomi Red'),
(185, 13, '2020-08-14 03:51:00', '172.16.31.10', 'normal', 'cient'),
(186, 1174, '2020-08-14 07:10:45', 'fe80::28e1:c8a5%rmnet4', 'normal', 'samsung SM'),
(187, 13, '2020-08-15 08:22:42', '172.16.17.32', 'normal', 'cient'),
(188, 1, '2020-08-15 09:19:31', '172.16.17.32', 'admin', 'Web'),
(189, 1174, '2020-08-15 10:49:57', '172.16.17.32', 'normal', 'cient'),
(190, 13, '2020-08-29 10:20:55', '192.168.127.12', 'normal', 'cient'),
(191, 13, '2020-09-14 09:23:33', '192.168.127.12', 'normal', 'cient'),
(192, 13, '2020-09-17 18:19:08', 'fe80::4c5e:6eff:fe8d:e8e0%dummy0', 'normal', 'OnePlus ON'),
(193, 13, '2020-09-17 18:19:54', 'fe80::4c5e:6eff:fe8d:e8e0%dummy0', 'normal', 'OnePlus ON'),
(194, 1, '2020-09-17 19:01:51', '172.16.58.3', 'admin', 'Web'),
(195, 13, '2020-09-26 06:01:37', '192.168.0.101', 'normal', 'Xiaomi Red'),
(196, 13, '2020-09-26 06:49:33', '192.168.127.12', 'normal', 'cient'),
(197, 13, '2020-09-29 17:00:55', '1.2.3.4', 'normal', 'app'),
(198, 13, '2020-09-30 13:58:00', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(199, 13, '2020-10-01 05:02:01', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(200, 13, '2020-10-01 05:02:01', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(201, 13, '2020-10-01 05:02:02', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(202, 13, '2020-10-01 05:02:03', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(203, 13, '2020-10-01 05:02:04', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(204, 13, '2020-10-01 05:02:04', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(205, 13, '2020-10-01 05:02:05', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(206, 13, '2020-10-01 05:02:06', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(207, 13, '2020-10-01 05:02:07', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(208, 13, '2020-10-01 06:44:04', '1.2.3.4', 'normal', 'app'),
(209, 13, '2020-10-01 06:44:26', '1.2.3.4', 'normal', 'App'),
(210, 13, '2020-10-01 07:34:37', '172.16.58.3', 'normal', 'APP'),
(211, 13, '2020-10-01 11:40:30', '192.168.43.19', 'normal', 'xiaomi Red'),
(212, 13, '2020-10-01 12:32:02', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(213, 13, '2020-10-02 04:31:22', '172.16.31.10', 'normal', 'cient'),
(214, 13, '2020-10-02 04:55:14', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(215, 13, '2020-10-02 05:01:38', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(216, 13, '2020-10-02 05:02:30', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(217, 13, '2020-10-02 05:20:56', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(218, 13, '2020-10-02 06:20:43', 'fefc00:db20:35b:7399::5:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(219, 13, '2020-10-02 06:21:15', 'fefc00:db20:35b:7399::5:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(220, 13, '2020-10-02 06:22:59', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(221, 13, '2020-10-02 06:27:09', 'fefc00:db20:35b:7399::5:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(222, 13, '2020-10-02 06:44:07', 'fefc00:db20:35b:7399::5:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(223, 13, '2020-10-02 06:59:29', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(224, 13, '2020-10-02 07:03:52', 'fefc00:db20:35b:7399::5:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(225, 13, '2020-10-02 08:33:04', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(226, 13, '2020-10-02 08:33:51', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(227, 13, '2020-10-02 08:37:27', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(228, 13, '2020-10-02 08:42:44', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(229, 13, '2020-10-02 08:49:03', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(230, 13, '2020-10-02 08:59:35', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(231, 13, '2020-10-02 09:09:08', 'fefc00:db20:35b:7399::5:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(232, 13, '2020-10-02 09:12:54', 'fe8fdf8:f53e:61e4::18:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(233, 13, '2020-10-02 09:19:18', 'fefc00:db20:35b:7399::5:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(234, 13, '2020-10-02 09:42:08', '172.16.31.10', 'normal', 'cient'),
(235, 13, '2020-10-02 09:58:33', 'fe80::8a4a:9205%rmnet4', 'normal', 'samsung SM'),
(236, 13, '2020-10-02 10:59:17', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(237, 13, '2020-10-02 11:00:35', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(238, 13, '2020-10-02 11:00:36', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(239, 13, '2020-10-02 11:05:22', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(240, 13, '2020-10-02 11:13:46', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(241, 13, '2020-10-02 11:18:32', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(242, 13, '2020-10-02 11:20:58', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(243, 13, '2020-10-02 11:34:58', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(244, 13, '2020-10-02 13:17:15', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(245, 13, '2020-10-02 13:17:16', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(246, 13, '2020-10-02 13:25:13', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(247, 13, '2020-10-02 13:29:16', 'fe80::8a4a:9205%rmnet4', 'normal', 'samsung SM'),
(248, 13, '2020-10-02 13:31:35', 'fe80::d0e0:3eff:fec8:33b7%dummy0', 'normal', 'OnePlus ON'),
(249, 13, '2020-10-02 13:32:27', 'fe80::d0e0:3eff:fec8:33b7%dummy0', 'normal', 'OnePlus ON'),
(250, 13, '2020-10-02 16:36:17', '172.16.31.10', 'normal', 'cient'),
(251, 13, '2020-10-02 16:37:53', '192.168.0.102', 'normal', 'xiaomi Red'),
(252, 13, '2020-10-02 16:39:12', '192.168.0.102', 'normal', 'xiaomi Red'),
(253, 13, '2020-10-02 16:43:13', '192.168.0.102', 'normal', 'xiaomi Red'),
(254, 13, '2020-10-02 16:55:55', '192.168.0.102', 'normal', 'xiaomi Red'),
(255, 13, '2020-10-02 18:02:24', '192.168.0.103', 'normal', 'xiaomi Red'),
(256, 13, '2020-10-02 18:02:25', '192.168.0.103', 'normal', 'xiaomi Red'),
(257, 13, '2020-10-03 05:11:57', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(258, 13, '2020-10-03 05:16:01', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(259, 13, '2020-10-03 06:53:43', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(260, 13, '2020-10-03 06:53:44', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(261, 13, '2020-10-03 06:59:41', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(262, 13, '2020-10-03 07:01:45', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(263, 13, '2020-10-03 07:17:13', '172.16.17.32', 'normal', 'cient'),
(264, 13, '2020-10-03 07:39:52', '192.168.0.102', 'normal', 'xiaomi Red'),
(265, 13, '2020-10-03 09:53:53', '172.16.17.32', 'normal', 'cient'),
(266, 13, '2020-10-03 12:53:09', '192.168.0.103', 'normal', 'xiaomi Red'),
(267, 13, '2020-10-03 15:36:18', '192.168.0.103', 'normal', 'xiaomi Red'),
(268, 13, '2020-10-03 15:43:20', '4192.168.3.11', 'normal', 'cient'),
(269, 13, '2020-10-04 11:59:31', '172.16.31.10', 'normal', 'cient'),
(270, 13, '2020-10-04 13:05:59', '192.168.3.11', 'normal', 'cient'),
(271, 1, '2020-10-04 14:44:47', '172.16.31.10', 'admin', 'Web'),
(272, 1217, '2020-10-04 15:12:17', '172.16.31.10', 'normal', 'cient'),
(273, 1174, '2020-10-04 16:13:25', '172.16.31.10', 'normal', 'cient'),
(274, 1174, '2020-10-04 16:59:05', '192.168.1.100', 'normal', 'samsung SM'),
(275, 1174, '2020-10-04 18:01:25', '192.168.0.101', 'normal', 'vivo vivo '),
(276, 1, '2020-10-05 06:10:27', '172.16.58.3', 'admin', 'Web'),
(277, 13, '2020-10-06 06:46:58', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(278, 13, '2020-10-06 09:00:52', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(279, 13, '2020-10-06 09:08:15', '192.168.127.12', 'normal', 'cient'),
(280, 13, '2020-10-07 05:35:51', '192.168.0.101', 'normal', 'xiaomi Red'),
(281, 1174, '2020-10-10 04:02:29', 'fe80::2806:98a1%rmnet4', 'normal', 'samsung SM'),
(282, 1174, '2020-10-10 04:14:01', 'fe80::2806:98a1%rmnet4', 'normal', 'samsung SM'),
(283, 13, '2020-10-10 07:04:50', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(284, 13, '2020-10-10 08:20:25', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(285, 1, '2020-10-10 08:46:45', '172.16.58.3', 'admin', 'Web'),
(286, 1, '2020-10-11 10:59:37', '192.168.127.12', 'admin', 'Web'),
(287, 13, '2020-10-11 11:23:50', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(288, 13, '2020-10-11 11:26:35', 'fe80::4876:f4ff:fef7:dc25%dummy0', 'normal', 'xiaomi Red'),
(289, 13, '2020-10-11 13:31:12', '192.168.127.12', 'normal', 'cient'),
(290, 13, '2020-10-11 14:04:03', '192.168.0.100', 'normal', 'xiaomi Red'),
(291, 1174, '2020-10-12 04:47:35', '172.16.17.32', 'normal', 'cient'),
(292, 1174, '2020-10-14 15:35:45', '192.168.3.11', 'normal', 'cient'),
(293, 13, '2020-10-15 09:25:00', 'fe80::d8e4:42ff:fed3:2ab5%dummy0', 'normal', 'xiaomi Red'),
(294, 13, '2020-10-17 01:28:05', '192.168.127.12', 'normal', 'cient'),
(295, 13, '2020-10-19 10:43:45', '192.168.127.12', 'normal', 'cient'),
(296, 13, '2020-10-19 10:45:35', '1.2.3.4', 'normal', 'app'),
(297, 13, '2020-10-19 11:14:35', '192.168.0.100', 'normal', 'xiaomi Red'),
(298, 13, '2020-10-29 05:37:39', 'fe80::c010:eeff:fe02:a590%dummy0', 'normal', 'xiaomi Red'),
(299, 13, '2020-10-30 05:57:20', 'fe80::c010:eeff:fe02:a590%dummy0', 'normal', 'xiaomi Red'),
(300, 13, '2020-10-30 07:21:14', '192.168.3.11', 'normal', 'cient'),
(301, 13, '2020-10-30 09:07:30', 'fe80::c010:eeff:fe02:a590%dummy0', 'normal', 'xiaomi Red'),
(302, 13, '2020-10-30 11:12:52', 'fe80::10f4:20b1%rmnet4', 'normal', 'samsung SM'),
(303, 1, '2020-10-31 15:20:33', '192.168.127.12', 'admin', 'Web'),
(304, 13, '2020-11-12 05:15:24', 'fe80::6836:b3ff:fe71:11b9%dummy0', 'normal', 'xiaomi Red'),
(305, 13, '2020-11-12 14:04:15', '172.16.58.3', 'normal', 'cient'),
(306, 1, '2020-11-12 14:16:05', '172.16.58.3', 'admin', 'Web'),
(307, 13, '2020-11-12 14:32:21', 'fe80::e38:b8b1%rmnet4', 'normal', 'samsung SM'),
(308, 1, '2020-12-22 06:56:06', '172.16.58.3', 'admin', 'Web'),
(309, 13, '2020-12-22 06:57:04', '172.16.58.3', 'normal', 'cient'),
(310, 13, '2020-12-31 08:25:28', '192.168.127.12', 'normal', 'cient'),
(311, 1, '2021-01-02 12:29:48', '192.168.127.12', 'admin', 'Web'),
(312, 1, '2021-01-05 04:54:25', '192.168.127.12', 'admin', 'Web'),
(313, 1, '2021-01-05 10:22:48', '192.168.127.12', 'admin', 'Web'),
(314, 1, '2021-01-23 04:50:38', '192.168.127.12', 'admin', 'Web'),
(315, 1, '2021-01-24 05:18:04', '172.16.31.10', 'admin', 'Web'),
(316, 1, '2021-02-01 10:19:13', '172.16.17.32', 'admin', 'Web'),
(317, 1, '2021-02-01 10:22:28', '172.16.17.32', 'admin', 'Web'),
(318, 13, '2021-02-01 10:28:49', '172.16.17.32', 'normal', 'cient'),
(319, 13, '2021-03-07 09:19:28', '172.16.58.3', 'normal', 'cient'),
(320, 1, '2021-03-08 06:46:30', '172.16.31.10', 'admin', 'Web'),
(321, 13, '2021-03-08 06:59:22', '172.16.31.10', 'normal', 'cient'),
(322, 1, '2021-03-09 11:43:32', '172.16.58.3', 'admin', 'Web'),
(323, 1, '2021-03-09 12:35:27', '192.168.127.12', 'admin', 'Web'),
(324, 13, '2021-03-10 09:32:12', '172.16.31.10', 'normal', 'cient'),
(325, 1, '2021-03-10 10:17:28', '172.16.31.10', 'admin', 'Web'),
(326, 1, '2021-03-10 10:34:25', '172.16.31.10', 'admin', 'Web'),
(327, 1, '2021-03-10 11:22:03', '172.16.58.3', 'admin', 'Web'),
(328, 13, '2021-03-10 12:40:11', '192.168.2.101', 'normal', 'xiaomi Red'),
(329, 13, '2021-03-10 12:42:29', '10.0.2.16', 'normal', 'google sdk'),
(330, 1, '2021-03-11 06:02:12', '192.168.3.11', 'admin', 'Web'),
(331, 1, '2021-03-11 07:27:24', '172.16.31.10', 'admin', 'Web'),
(332, 1, '2021-03-11 07:47:25', '172.16.17.32', 'admin', 'Web'),
(333, 1, '2021-03-11 07:49:26', '172.16.31.10', 'admin', 'Web'),
(334, 13, '2021-03-11 10:00:08', '10.0.2.16', 'normal', 'google sdk'),
(335, 13, '2021-03-11 10:32:39', '172.16.31.10', 'normal', 'cient'),
(336, 1, '2021-03-11 11:11:58', '172.16.31.10', 'admin', 'Web'),
(337, 13, '2021-03-11 11:34:08', '172.16.31.10', 'normal', 'cient'),
(338, 13, '2021-03-11 11:44:46', '172.16.31.10', 'normal', 'cient'),
(339, 13, '2021-03-11 11:58:13', '172.16.31.10', 'normal', 'cient'),
(340, 13, '2021-03-11 12:30:41', '172.16.31.10', 'normal', 'cient'),
(341, 13, '2021-03-11 12:48:26', '172.16.31.10', 'normal', 'cient'),
(342, 1, '2021-03-11 13:40:31', '172.16.31.10', 'admin', 'Web'),
(343, 13, '2021-03-11 16:59:07', '10.0.2.16', 'normal', 'google sdk'),
(344, 1, '2021-03-11 20:00:42', '192.168.127.12', 'admin', 'Web'),
(345, 1, '2021-03-12 05:05:37', '172.16.31.10', 'admin', 'Web'),
(346, 13, '2021-03-12 05:42:23', '192.168.127.12', 'normal', 'cient'),
(347, 13, '2021-03-12 05:44:17', '192.168.2.101', 'normal', 'xiaomi Red'),
(348, 13, '2021-03-12 06:12:38', '172.16.31.10', 'normal', 'cient'),
(349, 13, '2021-03-12 06:47:05', '172.16.58.3', 'normal', 'cient'),
(350, 13, '2021-03-12 07:11:21', '172.16.31.10', 'normal', 'cient'),
(351, 13, '2021-03-12 07:12:44', '192.168.2.101', 'normal', 'xiaomi Red'),
(352, 1, '2021-03-12 08:18:17', '192.168.127.12', 'admin', 'Web'),
(353, 13, '2021-03-12 10:54:31', '172.16.31.10', 'normal', 'cient'),
(354, 1, '2021-03-12 10:59:19', '172.16.58.3', 'admin', 'Web'),
(355, 13, '2021-03-12 11:02:52', '172.16.58.3', 'normal', 'cient'),
(356, 13, '2021-03-12 11:07:21', '172.16.31.10', 'normal', 'cient'),
(357, 13, '2021-03-12 11:15:35', '192.168.127.12', 'normal', 'cient'),
(358, 13, '2021-03-12 11:36:36', '172.16.31.10', 'normal', 'cient'),
(359, 1, '2021-03-12 11:52:07', '172.16.58.3', 'admin', 'Web'),
(360, 1, '2021-03-12 14:06:01', '172.16.17.32', 'admin', 'Web'),
(361, 13, '2021-03-12 14:07:03', '172.16.58.3', 'normal', 'cient'),
(362, 1, '2021-03-12 14:24:23', '172.16.17.32', 'admin', 'Web'),
(363, 13, '2021-03-12 16:12:50', '192.168.31.212', 'normal', 'xiaomi Red'),
(364, 1, '2021-03-13 03:44:53', '192.168.127.12', 'admin', 'Web'),
(365, 13, '2021-03-13 04:39:07', '192.168.127.12', 'normal', 'cient'),
(366, 1406, '2021-03-13 04:55:10', '192.168.127.12', 'normal', 'cient'),
(367, 13, '2021-03-13 05:43:33', '172.16.31.10', 'normal', 'cient'),
(368, 1397, '2021-03-13 06:28:10', '172.16.31.10', 'normal', 'cient'),
(369, 13, '2021-03-13 06:43:53', '192.168.2.101', 'normal', 'xiaomi Red'),
(370, 1, '2021-03-13 06:48:45', '172.16.31.10', 'admin', 'Web'),
(371, 1406, '2021-03-13 06:51:15', '192.168.127.12', 'normal', 'cient'),
(372, 1398, '2021-03-13 07:01:29', '172.16.31.10', 'normal', 'cient'),
(373, 1397, '2021-03-13 07:09:36', '192.168.127.12', 'normal', 'cient'),
(374, 1, '2021-03-13 07:12:05', '172.16.31.10', 'admin', 'Web'),
(375, 1398, '2021-03-13 07:12:32', '172.16.31.10', 'normal', 'cient'),
(376, 1, '2021-03-13 07:14:42', '172.16.31.10', 'admin', 'Web'),
(377, 1398, '2021-03-13 07:20:38', '172.16.31.10', 'normal', 'cient'),
(378, 1, '2021-03-13 07:26:43', '172.16.31.10', 'admin', 'Web'),
(379, 1397, '2021-03-13 07:35:22', '172.16.31.10', 'normal', 'cient'),
(380, 1, '2021-03-13 07:56:22', '192.168.127.12', 'admin', 'Web'),
(381, 1, '2021-03-13 08:59:22', '172.16.31.10', 'admin', 'Web'),
(382, 1397, '2021-03-13 09:14:22', '172.16.31.10', 'normal', 'cient'),
(383, 1, '2021-03-13 09:31:24', '172.16.31.10', 'admin', 'Web'),
(384, 13, '2021-03-13 09:32:21', '172.16.31.10', 'normal', 'cient'),
(385, 1397, '2021-03-13 10:20:16', '172.16.31.10', 'normal', 'cient'),
(386, 1397, '2021-03-13 10:27:26', '172.16.31.10', 'normal', 'cient'),
(387, 1, '2021-03-13 11:21:31', '192.168.127.12', 'admin', 'Web'),
(388, 13, '2021-03-13 11:25:58', '10.0.2.16', 'normal', 'google sdk'),
(389, 1397, '2021-03-13 11:27:58', '10.0.2.16', 'normal', 'google sdk'),
(390, 1397, '2021-03-13 13:14:10', '172.16.31.10', 'normal', 'cient'),
(391, 1397, '2021-03-15 06:21:29', '192.168.2.101', 'normal', 'xiaomi Red'),
(392, 13, '2021-03-16 13:45:13', '172.16.31.10', 'normal', 'cient'),
(393, 1397, '2021-03-16 13:47:00', '172.16.31.10', 'normal', 'cient'),
(394, 1397, '2021-03-16 13:52:02', '172.16.31.10', 'normal', 'cient'),
(395, 13, '2021-03-17 11:51:15', '192.168.127.12', 'normal', 'cient'),
(396, 1, '2021-03-17 11:51:24', '192.168.127.12', 'admin', 'Web'),
(397, 1397, '2021-03-17 13:46:53', '172.16.31.10', 'normal', 'cient'),
(398, 1, '2021-03-18 07:07:08', '172.16.31.10', 'admin', 'Web'),
(399, 13, '2021-03-18 17:39:28', '172.16.58.3', 'normal', 'cient'),
(400, 1397, '2021-03-18 17:52:28', '172.16.58.3', 'normal', 'cient'),
(401, 1, '2021-03-18 17:56:10', '172.16.58.3', 'admin', 'Web'),
(402, 1397, '2021-03-19 08:19:37', '172.16.31.10', 'normal', 'cient'),
(403, 1398, '2021-03-19 08:27:21', '172.16.31.10', 'normal', 'cient'),
(404, 13, '2021-03-19 08:30:29', '192.168.127.12', 'normal', 'cient'),
(405, 13, '2021-03-19 11:15:23', '192.168.127.12', 'normal', 'cient'),
(406, 1397, '2021-03-19 13:10:22', '172.16.31.10', 'normal', 'cient'),
(407, 1, '2021-03-19 13:17:49', '172.16.31.10', 'admin', 'Web'),
(408, 1397, '2021-03-19 13:20:14', '172.16.31.10', 'normal', 'cient'),
(409, 1397, '2021-03-20 06:47:57', '172.16.31.10', 'normal', 'cient'),
(410, 1397, '2021-03-20 13:01:34', '172.16.31.10', 'normal', 'cient'),
(411, 1, '2021-03-20 13:08:31', '172.16.31.10', 'admin', 'Web'),
(412, 1397, '2021-03-20 17:15:42', '10.0.2.16', 'normal', 'google sdk'),
(413, 1397, '2021-03-21 05:32:33', '172.16.31.10', 'normal', 'cient'),
(414, 1, '2021-03-21 05:40:31', '172.16.31.10', 'admin', 'Web'),
(415, 1397, '2021-03-21 07:37:01', '192.168.2.101', 'normal', 'xiaomi Red'),
(416, 1397, '2021-03-21 07:37:05', '172.16.31.10', 'normal', 'cient'),
(417, 1, '2021-03-21 09:37:45', '172.16.31.10', 'admin', 'Web'),
(418, 1397, '2021-03-21 09:49:06', '172.16.31.10', 'normal', 'cient'),
(419, 1217, '2021-03-21 12:06:13', '172.16.31.10', 'normal', 'cient'),
(420, 1, '2021-03-22 15:34:33', '172.16.31.10', 'admin', 'Web'),
(421, 1, '2021-03-23 04:51:51', '172.16.17.32', 'admin', 'Web'),
(422, 1397, '2021-03-23 09:56:06', '172.16.31.10', 'normal', 'cient'),
(423, 1, '2021-03-23 11:58:14', '172.16.31.10', 'admin', 'Web'),
(424, 13, '2021-03-23 15:39:18', '172.16.17.32', 'normal', 'cient'),
(425, 13, '2021-03-24 00:33:10', '192.168.127.12', 'normal', 'cient'),
(426, 13, '2021-03-24 08:44:15', '172.16.17.32', 'normal', 'cient'),
(427, 1397, '2021-03-25 03:59:39', '192.168.127.12', 'normal', 'cient'),
(428, 1, '2021-03-25 05:18:21', '192.168.127.12', 'admin', 'Web'),
(429, 1397, '2021-03-25 05:22:31', '192.168.127.12', 'normal', 'cient'),
(430, 1, '2021-03-25 05:36:09', '192.168.127.12', 'admin', 'Web'),
(431, 1397, '2021-03-25 07:13:06', '192.168.2.101', 'normal', 'xiaomi Red'),
(432, 13, '2021-03-25 08:22:04', '192.168.127.12', 'normal', 'cient'),
(433, 1, '2021-03-25 10:23:41', '192.168.127.12', 'admin', 'Web'),
(434, 1397, '2021-03-25 12:28:31', '192.168.127.12', 'normal', 'cient'),
(435, 1397, '2021-03-25 12:40:39', '192.168.127.12', 'normal', 'cient'),
(436, 1, '2021-03-25 15:32:48', '192.168.127.12', 'admin', 'Web'),
(437, 1397, '2021-03-25 17:03:05', '192.168.127.12', 'normal', 'cient'),
(438, 1397, '2021-03-25 17:28:00', '192.168.0.103', 'normal', 'OPPO CPH22'),
(439, 1397, '2021-03-25 17:44:15', '192.168.127.12', 'normal', 'cient'),
(440, 13, '2021-03-25 18:04:23', '192.168.1.100', 'normal', 'samsung SM'),
(441, 13, '2021-03-25 18:04:25', '192.168.1.100', 'normal', 'samsung SM'),
(442, 1397, '2021-03-25 18:09:32', '192.168.127.12', 'normal', 'cient'),
(443, 1397, '2021-03-25 19:58:45', '172.16.58.3', 'normal', 'cient'),
(444, 1397, '2021-03-26 03:14:27', '172.16.17.32', 'normal', 'cient'),
(445, 1397, '2021-03-26 04:58:32', '192.168.127.12', 'normal', 'cient'),
(446, 1397, '2021-03-26 05:44:31', '192.168.127.12', 'normal', 'cient'),
(447, 1, '2021-03-26 09:40:48', '192.168.3.11', 'admin', 'Web'),
(448, 14, '2021-03-26 09:43:15', '192.168.3.11', 'normal', 'cient'),
(449, 14, '2021-03-26 09:44:00', '192.168.3.11', 'normal', 'cient'),
(450, 1397, '2021-03-26 10:01:19', '172.16.31.10', 'normal', 'cient'),
(451, 1397, '2021-03-26 15:33:29', '10.0.2.16', 'normal', 'google sdk'),
(452, 1397, '2021-03-27 13:15:26', '10.0.2.16', 'normal', 'google sdk'),
(453, 1397, '2021-03-29 05:21:48', '192.168.127.12', 'normal', 'cient'),
(454, 1397, '2021-03-29 05:36:35', 'fe80::a4fe:91ff:fe44:3e6e%dummy0', 'normal', 'OPPO CPH22'),
(455, 1397, '2021-04-05 08:54:31', '10.0.2.16', 'normal', 'google sdk'),
(456, 1, '2021-06-09 11:59:50', '::1', 'admin', 'Web'),
(457, 1397, '2021-06-09 12:01:39', '::1', 'normal', 'cient'),
(458, 1397, '2021-06-09 12:03:46', '::1', 'normal', 'cient'),
(459, 1397, '2021-06-09 20:19:35', '::1', 'normal', 'cient'),
(460, 1, '2021-06-09 20:33:28', '::1', 'admin', 'Web'),
(461, 1397, '2021-06-09 20:36:17', '::1', 'normal', 'cient'),
(462, 1, '2021-06-09 20:39:35', '::1', 'admin', 'Web'),
(463, 1, '2021-06-10 12:58:28', '::1', 'admin', 'Web'),
(464, 1397, '2021-06-10 13:22:22', '::1', 'normal', 'cient'),
(465, 1, '2021-06-11 11:11:44', '::1', 'admin', 'Web'),
(466, 1, '2021-06-11 11:15:11', '::1', 'admin', 'Web'),
(467, 1, '2021-06-11 11:15:26', '::1', 'admin', 'Web'),
(468, 1397, '2021-06-11 11:21:03', '::1', 'normal', 'cient'),
(469, 1, '2021-06-11 11:29:10', '::1', 'admin', 'Web'),
(470, 1, '2021-06-11 11:56:40', '::1', 'admin', 'Web'),
(471, 1397, '2021-06-11 11:57:27', '::1', 'normal', 'cient'),
(472, 1, '2021-06-11 12:00:47', '::1', 'admin', 'Web'),
(473, 1397, '2021-06-11 12:10:11', '::1', 'normal', 'cient'),
(474, 1, '2021-06-11 14:37:11', '::1', 'admin', 'Web'),
(475, 1397, '2021-06-11 14:42:20', '::1', 'normal', 'cient'),
(476, 1397, '2021-06-11 14:43:09', '::1', 'normal', 'cient'),
(477, 1, '2021-06-11 14:57:29', '::1', 'admin', 'Web'),
(478, 1397, '2021-06-11 15:00:19', '::1', 'normal', 'cient'),
(479, 1, '2021-06-11 17:36:12', '::1', 'admin', 'Web'),
(480, 1, '2021-06-12 08:51:42', '::1', 'admin', 'Web'),
(481, 1, '2021-06-12 08:51:45', '::1', 'admin', 'Web'),
(482, 1, '2021-06-12 08:51:46', '::1', 'admin', 'Web'),
(483, 1, '2021-06-12 08:51:46', '::1', 'admin', 'Web'),
(484, 1, '2021-06-12 08:51:46', '::1', 'admin', 'Web'),
(485, 1, '2021-06-12 08:51:47', '::1', 'admin', 'Web'),
(486, 1, '2021-06-12 08:53:29', '::1', 'admin', 'Web'),
(487, 1, '2021-06-12 08:53:30', '::1', 'admin', 'Web'),
(488, 1, '2021-06-12 08:53:30', '::1', 'admin', 'Web'),
(489, 1, '2021-06-12 09:01:48', '::1', 'admin', 'Web'),
(490, 1, '2021-06-12 09:01:49', '::1', 'admin', 'Web'),
(491, 1, '2021-06-12 09:10:13', '::1', 'admin', 'Web'),
(492, 1, '2021-06-12 09:10:14', '::1', 'admin', 'Web'),
(493, 1, '2021-06-12 09:10:15', '::1', 'admin', 'Web'),
(494, 1, '2021-06-12 09:10:15', '::1', 'admin', 'Web'),
(495, 1, '2021-06-12 09:10:15', '::1', 'admin', 'Web'),
(496, 1, '2021-06-12 09:10:15', '::1', 'admin', 'Web'),
(497, 1, '2021-06-12 09:10:16', '::1', 'admin', 'Web'),
(498, 1, '2021-06-12 09:10:16', '::1', 'admin', 'Web'),
(499, 1, '2021-06-12 09:10:16', '::1', 'admin', 'Web'),
(500, 1, '2021-06-12 09:10:16', '::1', 'admin', 'Web'),
(501, 1, '2021-06-12 09:42:40', '::1', 'admin', 'Web'),
(502, 2, '2021-06-13 01:21:59', '::1', 'admin', 'Web'),
(503, 1397, '2021-06-13 01:28:57', '::1', 'normal', 'cient'),
(504, 2, '2021-06-13 01:45:53', '::1', 'admin', 'Web'),
(505, 2, '2021-06-13 01:52:18', '::1', 'admin', 'Web'),
(506, 1397, '2021-06-13 21:14:05', '::1', 'normal', 'cient'),
(507, 2, '2021-06-13 21:14:39', '::1', 'admin', 'Web'),
(508, 1397, '2021-06-13 21:21:53', '::1', 'normal', 'cient'),
(509, 3, '2021-06-14 00:58:29', '::1', 'admin', 'Web'),
(510, 1397, '2021-06-14 01:55:01', '::1', 'normal', 'cient'),
(511, 2, '2021-06-14 10:12:04', '::1', 'admin', 'Web'),
(512, 3, '2021-06-14 13:43:29', '::1', 'admin', 'Web'),
(513, 1397, '2021-06-14 13:46:08', '::1', 'normal', 'cient'),
(514, 1, '2021-06-14 13:47:29', '::1', 'admin', 'Web'),
(515, 1397, '2021-06-14 16:32:32', '::1', 'normal', 'cient'),
(516, 3, '2021-06-14 17:32:42', '::1', 'admin', 'Web'),
(517, 1397, '2021-06-14 17:42:29', '::1', 'normal', 'cient'),
(518, 1, '2021-06-14 17:58:17', '::1', 'admin', 'Web'),
(519, 2, '2021-06-15 00:23:31', '::1', 'admin', 'Web'),
(520, 2, '2021-06-15 00:23:52', '::1', 'admin', 'Web'),
(521, 1397, '2021-06-15 16:26:49', '::1', 'normal', 'cient'),
(522, 1397, '2021-06-15 16:27:26', '::1', 'normal', 'cient'),
(523, 3, '2021-06-15 16:30:22', '::1', 'admin', 'Web'),
(524, 1415, '2021-06-15 16:31:52', '::1', 'normal', 'cient'),
(525, 3, '2021-06-15 16:32:35', '::1', 'admin', 'Web'),
(526, 3, '2021-06-15 16:48:44', '::1', 'admin', 'Web'),
(527, 1397, '2021-06-15 19:54:32', '::1', 'normal', 'cient'),
(528, 3, '2021-06-15 20:19:46', '::1', 'admin', 'Web'),
(529, 1415, '2021-06-15 20:26:49', '::1', 'normal', 'cient'),
(530, 3, '2021-06-15 20:29:08', '::1', 'admin', 'Web'),
(531, 3, '2021-06-15 21:10:45', '::1', 'admin', 'Web'),
(532, 3, '2021-06-15 21:13:13', '::1', 'admin', 'Web'),
(533, 1415, '2021-06-15 21:15:28', '::1', 'normal', 'cient'),
(534, 2, '2021-06-16 01:27:28', '::1', 'admin', 'Web'),
(535, 1415, '2021-06-16 02:02:14', '::1', 'normal', 'cient'),
(536, 2, '2021-06-16 02:06:30', '::1', 'admin', 'Web'),
(537, 1415, '2021-06-16 02:32:08', '::1', 'normal', 'cient'),
(538, 1415, '2021-06-16 02:39:53', '::1', 'normal', 'cient'),
(539, 3, '2021-06-16 02:48:32', '::1', 'admin', 'Web'),
(540, 1415, '2021-06-16 03:56:24', '::1', 'normal', 'cient'),
(541, 3, '2021-06-16 03:57:56', '::1', 'admin', 'Web'),
(542, 1415, '2021-06-16 04:19:45', '::1', 'normal', 'cient'),
(543, 3, '2021-06-16 04:21:28', '::1', 'admin', 'Web'),
(544, 1, '2021-06-16 11:12:29', '::1', 'admin', 'Web'),
(545, 1, '2021-06-16 16:21:27', '::1', 'admin', 'Web'),
(546, 1397, '2021-06-16 18:25:42', '::1', 'normal', 'cient'),
(547, 1, '2021-06-16 19:28:24', '::1', 'admin', 'Web'),
(548, 1, '2021-06-16 19:29:05', '::1', 'admin', 'Web'),
(549, 1397, '2021-06-16 19:58:04', '::1', 'normal', 'cient'),
(550, 1397, '2021-06-16 20:04:51', '::1', 'normal', 'cient'),
(551, 1397, '2021-06-16 20:10:05', '::1', 'normal', 'cient'),
(552, 1, '2021-06-16 23:08:58', '::1', 'admin', 'Web'),
(553, 1397, '2021-06-16 23:12:21', '::1', 'normal', 'cient'),
(554, 1397, '2021-06-16 23:19:48', '::1', 'normal', 'cient'),
(555, 1397, '2021-06-17 02:20:30', '::1', 'normal', 'cient'),
(556, 1, '2021-06-17 12:02:41', '::1', 'admin', 'Web'),
(557, 1397, '2021-06-17 12:07:20', '::1', 'normal', 'cient'),
(558, 1, '2021-06-17 12:07:46', '::1', 'admin', 'Web'),
(559, 1, '2021-06-17 11:19:48', '172.16.31.10', 'admin', 'Web'),
(560, 1, '2021-06-17 11:20:50', '172.16.31.10', 'admin', 'Web'),
(561, 1, '2021-06-17 11:25:31', '172.16.31.10', 'admin', 'Web'),
(562, 1397, '2021-06-17 11:50:05', '172.16.31.10', 'normal', 'cient'),
(563, 1, '2021-06-17 11:51:52', '172.16.31.10', 'admin', 'Web'),
(564, 1, '2021-06-17 12:59:17', '172.16.31.10', 'admin', 'Web'),
(565, 1397, '2021-06-17 13:01:46', '172.16.31.10', 'normal', 'cient'),
(566, 2, '2021-06-17 13:05:26', '172.16.31.10', 'admin', 'Web'),
(567, 1, '2021-06-17 13:41:50', '172.16.31.10', 'admin', 'Web'),
(568, 1, '2021-06-18 14:18:25', '172.16.31.10', 'admin', 'Web'),
(569, 1397, '2021-06-18 14:20:10', '172.16.31.10', 'normal', 'cient'),
(570, 1397, '2021-06-18 19:01:29', '172.16.31.10', 'normal', 'cient'),
(571, 1, '2021-06-18 19:07:00', '172.16.31.10', 'admin', 'Web'),
(572, 1397, '2021-06-18 20:14:08', '172.16.31.10', 'normal', 'cient'),
(573, 1397, '2021-06-19 02:45:56', '172.16.31.10', 'normal', 'cient'),
(574, 1397, '2021-06-19 04:55:23', '172.16.31.10', 'normal', 'cient'),
(575, 1, '2021-06-19 05:01:55', '172.16.31.10', 'admin', 'Web'),
(576, 1397, '2021-06-19 06:21:23', '172.16.31.10', 'normal', 'cient'),
(577, 1, '2021-06-19 06:45:32', '172.16.31.10', 'admin', 'Web'),
(578, 1, '2021-06-19 10:34:25', '172.16.31.10', 'admin', 'Web'),
(579, 1397, '2021-06-19 10:36:06', '172.16.31.10', 'normal', 'cient'),
(580, 1, '2021-06-19 10:41:38', '172.16.31.10', 'admin', 'Web'),
(581, 1397, '2021-06-19 11:42:26', '172.16.31.10', 'normal', 'cient'),
(582, 1397, '2021-06-19 12:18:43', '172.16.31.10', 'normal', 'cient'),
(583, 1, '2021-06-19 12:33:56', '172.16.31.10', 'admin', 'Web'),
(584, 1, '2021-06-19 13:50:07', '172.16.31.10', 'admin', 'Web'),
(585, 1, '2021-06-19 14:11:57', '172.16.31.10', 'admin', 'Web'),
(586, 1, '2021-06-20 13:08:25', '192.168.127.12', 'admin', 'Web'),
(587, 3, '2021-06-20 13:15:18', '192.168.127.12', 'admin', 'Web'),
(588, 1415, '2021-06-20 13:48:09', '192.168.127.12', 'normal', 'cient'),
(589, 1, '2021-06-20 15:31:16', '192.168.3.11', 'admin', 'Web'),
(590, 1397, '2021-06-20 21:20:01', '172.16.31.10', 'normal', 'cient'),
(591, 1, '2021-06-21 05:35:22', '172.16.31.10', 'admin', 'Web'),
(592, 1397, '2021-06-21 05:37:16', '172.16.31.10', 'normal', 'cient'),
(593, 1, '2021-06-21 06:59:00', '192.168.127.12', 'admin', 'Web'),
(594, 1397, '2021-06-21 07:13:13', '192.168.127.12', 'normal', 'cient'),
(595, 1397, '2021-06-21 09:53:40', '172.16.31.10', 'normal', 'cient'),
(596, 1, '2021-06-21 09:54:32', '172.16.31.10', 'admin', 'Web'),
(597, 1, '2021-06-21 11:30:21', '172.16.31.10', 'admin', 'Web'),
(598, 3, '2021-06-21 12:30:11', '192.168.3.11', 'admin', 'Web'),
(599, 1, '2021-06-22 06:15:58', '172.16.31.10', 'admin', 'Web'),
(600, 1, '2021-06-22 09:05:08', '172.16.17.32', 'admin', 'Web'),
(601, 3, '2021-06-24 10:40:47', '172.16.31.10', 'admin', 'Web'),
(602, 1415, '2021-06-24 12:58:45', '172.16.31.10', 'normal', 'cient'),
(603, 3, '2021-06-24 13:02:23', '172.16.31.10', 'admin', 'Web'),
(604, 3, '2021-06-25 05:59:55', '172.16.31.10', 'admin', 'Web'),
(605, 3, '2021-06-25 10:27:54', '192.168.127.12', 'admin', 'Web'),
(606, 1415, '2021-06-25 10:51:50', '192.168.127.12', 'normal', 'cient'),
(607, 1, '2021-06-25 11:36:02', '192.168.127.12', 'admin', 'Web'),
(608, 1397, '2021-06-25 11:47:54', '192.168.127.12', 'normal', 'cient'),
(609, 3, '2021-06-25 12:24:07', '192.168.127.12', 'admin', 'Web'),
(610, 1397, '2021-06-26 03:23:39', '172.16.17.32', 'normal', 'cient'),
(611, 1, '2021-06-26 03:28:40', '172.16.17.32', 'admin', 'Web'),
(612, 1397, '2021-06-26 04:18:20', '172.16.58.3', 'normal', 'cient'),
(613, 3, '2021-06-26 04:28:36', '172.16.58.3', 'admin', 'Web'),
(614, 1, '2021-06-26 04:51:38', '172.16.58.3', 'admin', 'Web'),
(615, 1, '2021-06-26 05:17:39', '192.168.127.12', 'admin', 'Web'),
(616, 1397, '2021-06-26 07:17:07', '192.168.3.11', 'normal', 'cient'),
(617, 1397, '2021-06-26 07:47:01', '192.168.127.12', 'normal', 'cient'),
(618, 1415, '2021-06-26 08:07:52', '172.16.31.10', 'normal', 'cient'),
(619, 1, '2021-06-26 08:17:46', '192.168.127.12', 'admin', 'Web'),
(620, 3, '2021-06-26 08:52:36', '172.16.58.3', 'admin', 'Web'),
(621, 1397, '2021-06-26 09:30:14', 'fe80::9c88:cff:fe2e:b460%dummy0', 'normal', 'OnePlus ON'),
(622, 1397, '2021-06-26 09:34:45', '192.168.127.12', 'normal', 'cient'),
(623, 1397, '2021-06-26 09:39:20', '10.0.2.16', 'normal', 'google And'),
(624, 3, '2021-06-26 09:39:55', '172.16.58.3', 'admin', 'Web'),
(625, 1415, '2021-06-26 09:53:42', '172.16.58.3', 'normal', 'cient'),
(626, 1, '2021-06-26 10:06:00', '192.168.127.12', 'admin', 'Web'),
(627, 3, '2021-06-26 10:21:22', '172.16.58.3', 'admin', 'Web'),
(628, 1415, '2021-06-26 10:39:14', '172.16.58.3', 'normal', 'cient'),
(629, 1427, '2021-06-26 12:36:41', '192.168.127.12', 'normal', 'cient'),
(630, 1, '2021-06-26 17:03:49', '172.16.17.32', 'admin', 'Web'),
(631, 1, '2021-06-27 03:19:23', '192.168.3.11', 'admin', 'Web'),
(632, 1, '2021-06-27 04:37:38', '172.16.17.32', 'admin', 'Web'),
(633, 1427, '2021-06-27 09:31:19', 'fe80::1d2e:8ac%rmnet0', 'normal', 'samsung SM'),
(634, 1, '2021-06-27 10:29:35', '172.16.58.3', 'admin', 'Web'),
(635, 1427, '2021-06-27 11:29:14', '172.16.58.3', 'normal', 'cient'),
(636, 1415, '2021-06-27 11:48:51', '172.16.17.32', 'normal', 'cient'),
(637, 1427, '2021-06-27 14:37:50', '172.16.58.3', 'normal', 'cient'),
(638, 1427, '2021-06-27 15:46:18', '172.16.58.3', 'normal', 'cient'),
(639, 1397, '2021-06-27 16:06:05', '172.16.58.3', 'normal', 'cient'),
(640, 1397, '2021-06-28 07:06:35', '172.16.58.3', 'normal', 'cient'),
(641, 1397, '2021-06-28 09:27:28', '192.168.2.115', 'normal', 'xiaomi Red'),
(642, 1397, '2021-06-28 11:23:31', '172.16.58.3', 'normal', 'cient'),
(643, 1, '2021-06-28 12:04:51', '172.16.58.3', 'admin', 'Web'),
(644, 1397, '2021-06-28 12:09:49', '172.16.58.3', 'normal', 'cient'),
(645, 1427, '2021-06-28 13:19:59', '192.168.2.114', 'normal', 'samsung SM'),
(646, 1, '2021-06-28 13:23:44', '172.16.58.3', 'admin', 'Web'),
(647, 1, '2021-06-28 15:43:31', '192.168.3.11', 'admin', 'Web'),
(648, 1427, '2021-06-29 06:23:09', '172.16.58.3', 'normal', 'cient'),
(649, 1397, '2021-06-29 07:22:58', '172.16.58.3', 'normal', 'cient'),
(650, 1427, '2021-06-29 07:27:54', 'fe80::1d2e:8ac%rmnet0', 'normal', 'samsung SM'),
(651, 1397, '2021-06-29 10:45:05', '172.16.31.10', 'normal', 'cient'),
(652, 1397, '2021-06-29 12:10:33', '192.168.3.11', 'normal', 'cient'),
(653, 1427, '2021-06-30 06:04:54', '172.16.31.10', 'normal', 'cient'),
(654, 1397, '2021-06-30 08:26:56', '172.16.31.10', 'normal', 'cient'),
(655, 1397, '2021-06-30 12:03:00', '172.16.31.10', 'normal', 'cient'),
(656, 1427, '2021-06-30 14:35:32', '172.16.31.10', 'normal', 'cient'),
(657, 1397, '2021-06-30 16:27:02', '192.168.0.104', 'normal', 'OPPO CPH22'),
(658, 1397, '2021-07-01 06:57:02', '192.168.2.115', 'normal', 'xiaomi Red'),
(659, 1397, '2021-07-01 08:12:48', '192.168.2.115', 'normal', 'xiaomi Red'),
(660, 1, '2021-07-01 09:22:56', '172.16.31.10', 'admin', 'Web'),
(661, 1397, '2021-07-01 09:35:46', 'fe80::2c72:77ff:fe3b:28c1%dummy0', 'normal', 'OPPO RMX18'),
(662, 1, '2021-07-01 09:45:12', '172.16.31.10', 'admin', 'Web'),
(663, 1397, '2021-07-01 11:14:35', '172.16.31.10', 'normal', 'cient'),
(664, 1397, '2021-07-01 13:03:09', '192.168.2.110', 'normal', 'OPPO CPH22'),
(665, 1397, '2021-07-01 13:32:29', '172.16.31.10', 'normal', 'cient'),
(666, 1415, '2021-07-01 13:39:06', '192.168.0.152', 'normal', 'Redmi Redm'),
(667, 1427, '2021-07-01 13:57:35', '172.16.31.10', 'normal', 'cient'),
(668, 1397, '2021-07-01 14:23:27', 'fe80::221f:90ac%rmnet0', 'normal', 'samsung SM'),
(669, 1397, '2021-07-01 18:10:10', '192.168.0.100', 'normal', 'OPPO CPH22'),
(670, 1397, '2021-07-02 06:16:43', '172.16.31.10', 'normal', 'cient'),
(671, 1397, '2021-07-02 07:12:27', '192.168.2.114', 'normal', 'samsung SM'),
(672, 1397, '2021-07-02 07:52:21', '172.16.31.10', 'normal', 'cient'),
(673, 1397, '2021-07-02 07:54:27', '172.16.31.10', 'normal', 'cient'),
(674, 1397, '2021-07-02 08:00:33', '172.16.31.10', 'normal', 'cient'),
(675, 1, '2021-07-02 08:08:54', '172.16.31.10', 'admin', 'Web'),
(676, 1, '2021-07-02 08:16:52', '172.16.31.10', 'admin', 'Web'),
(677, 1, '2021-07-02 08:22:13', '172.16.31.10', 'admin', 'Web'),
(678, 1397, '2021-07-02 08:30:31', '172.16.31.10', 'normal', 'cient'),
(679, 1427, '2021-07-02 10:32:09', '172.16.31.10', 'normal', 'cient'),
(680, 1, '2021-07-02 10:59:22', '172.16.31.10', 'admin', 'Web'),
(681, 469, '2021-07-02 11:02:10', '172.16.31.10', 'normal', 'cient'),
(682, 1, '2021-07-02 13:49:16', '172.16.58.3', 'admin', 'Web'),
(683, 469, '2021-07-02 13:50:30', '172.16.58.3', 'normal', 'cient'),
(684, 469, '2021-07-02 13:52:30', '172.16.58.3', 'normal', 'cient'),
(685, 1397, '2021-07-02 13:55:49', '172.16.58.3', 'normal', 'cient'),
(686, 1, '2021-07-02 13:57:32', '172.16.58.3', 'admin', 'Web'),
(687, 1397, '2021-07-02 14:03:56', '172.16.58.3', 'normal', 'cient'),
(688, 1, '2021-07-02 14:06:00', '172.16.58.3', 'admin', 'Web'),
(689, 469, '2021-07-02 14:09:33', '172.16.58.3', 'normal', 'cient'),
(690, 469, '2021-07-02 14:18:34', '172.16.58.3', 'normal', 'cient'),
(691, 1, '2021-07-02 14:19:52', '172.16.58.3', 'admin', 'Web'),
(692, 1397, '2021-07-02 14:23:08', '172.16.58.3', 'normal', 'cient'),
(693, 1, '2021-07-02 14:24:58', '172.16.58.3', 'admin', 'Web'),
(694, 1397, '2021-07-02 14:25:49', '172.16.58.3', 'normal', 'cient'),
(695, 1, '2021-07-02 14:28:28', '172.16.58.3', 'admin', 'Web'),
(696, 1, '2021-07-02 14:34:02', '172.16.58.3', 'admin', 'Web'),
(697, 1397, '2021-07-02 14:34:26', '172.16.58.3', 'normal', 'cient'),
(698, 469, '2021-07-02 14:47:47', '172.16.58.3', 'normal', 'cient'),
(699, 1397, '2021-07-02 16:06:12', '172.16.58.3', 'normal', 'cient'),
(700, 1, '2021-07-02 18:00:18', '172.16.58.3', 'admin', 'Web'),
(701, 1397, '2021-07-02 18:16:47', '172.16.58.3', 'normal', 'cient'),
(702, 1397, '2021-07-02 18:19:55', '172.16.58.3', 'normal', 'cient'),
(703, 1394, '2021-07-02 18:32:00', '172.16.58.3', 'normal', 'cient'),
(704, 1, '2021-07-02 18:41:56', '172.16.58.3', 'admin', 'Web'),
(705, 1397, '2021-07-02 18:57:53', '172.16.58.3', 'normal', 'cient'),
(706, 1397, '2021-07-02 19:03:44', '172.16.31.10', 'normal', 'cient'),
(707, 1, '2021-07-02 19:04:16', '172.16.31.10', 'admin', 'Web'),
(708, 1397, '2021-07-02 19:38:04', '172.16.58.3', 'normal', 'cient'),
(709, 1, '2021-07-02 19:40:23', '172.16.58.3', 'admin', 'Web'),
(710, 1397, '2021-07-02 21:12:42', '172.16.58.3', 'normal', 'cient'),
(711, 1, '2021-07-02 21:48:15', '172.16.58.3', 'admin', 'Web'),
(712, 656, '2021-07-03 05:36:06', '172.16.31.10', 'normal', 'cient'),
(713, 1397, '2021-07-03 05:40:15', '172.16.31.10', 'normal', 'cient'),
(714, 1, '2021-07-03 05:54:45', '172.16.31.10', 'admin', 'Web'),
(715, 1, '2021-07-03 06:18:47', '172.16.31.10', 'admin', 'Web'),
(716, 1394, '2021-07-03 06:25:13', '172.16.31.10', 'normal', 'cient'),
(717, 469, '2021-07-03 06:45:01', '172.16.31.10', 'normal', 'cient'),
(718, 1397, '2021-07-03 07:00:53', '172.16.31.10', 'normal', 'cient'),
(719, 1, '2021-07-03 09:28:09', '192.168.3.11', 'admin', 'Web'),
(720, 1427, '2021-07-03 10:52:07', '172.16.17.32', 'normal', 'cient'),
(721, 1, '2021-07-03 11:35:10', '172.16.31.10', 'admin', 'Web'),
(722, 469, '2021-07-03 12:23:27', '192.168.3.11', 'normal', 'cient'),
(723, 1394, '2021-07-03 12:40:30', '192.168.3.11', 'normal', 'cient'),
(724, 1394, '2021-07-03 12:46:42', '192.168.3.11', 'normal', 'cient'),
(725, 1415, '2021-07-03 14:40:25', '192.168.3.11', 'normal', 'cient'),
(726, 1, '2021-07-16 11:56:56', '172.16.17.32', 'admin', 'Web'),
(727, 1427, '2021-07-18 06:47:13', '192.168.127.12', 'normal', 'cient'),
(728, 1, '2021-07-22 11:07:08', '192.168.127.12', 'admin', 'Web'),
(729, 1397, '2021-07-24 15:37:05', '172.16.31.10', 'normal', 'cient'),
(730, 1, '2021-07-24 15:38:59', '172.16.31.10', 'admin', 'Web');
INSERT INTO `master_log` (`log_id`, `userid`, `login_time`, `ip`, `logintype`, `client`) VALUES
(731, 1397, '2021-07-24 17:03:48', '172.16.17.32', 'normal', 'cient'),
(732, 1397, '2021-07-24 18:21:42', '172.16.58.3', 'normal', 'cient'),
(733, 1, '2021-07-24 18:23:01', '172.16.58.3', 'admin', 'Web'),
(734, 1394, '2021-07-24 19:30:44', '172.16.58.3', 'normal', 'cient'),
(735, 1, '2021-07-24 21:13:22', '192.168.3.11', 'admin', 'Web'),
(736, 1, '2021-07-25 01:42:06', '172.16.58.3', 'admin', 'Web'),
(737, 1394, '2021-07-25 01:45:14', '172.16.58.3', 'normal', 'cient'),
(738, 1394, '2021-07-25 07:33:55', 'fe80::1207:b6ff:fe3e:aaba%wlan0', 'normal', 'samsung SM'),
(739, 1394, '2021-07-25 07:40:07', '192.168.3.11', 'normal', 'cient'),
(740, 1, '2021-07-25 10:22:45', '172.16.31.10', 'admin', 'Web'),
(741, 1397, '2021-07-26 06:03:53', '192.168.127.12', 'normal', 'cient'),
(742, 1, '2021-07-26 06:24:04', '192.168.127.12', 'admin', 'Web'),
(743, 1397, '2021-07-26 06:59:52', '192.168.127.12', 'normal', 'cient'),
(744, 1397, '2021-07-26 07:08:36', '192.168.127.12', 'normal', 'cient'),
(745, 1, '2021-07-26 08:41:12', '192.168.127.12', 'admin', 'Web'),
(746, 1397, '2021-07-26 08:47:23', '192.168.127.12', 'normal', 'cient'),
(747, 1, '2021-07-26 12:20:10', '192.168.127.12', 'admin', 'Web'),
(748, 1, '2021-07-26 12:56:13', '192.168.127.12', 'admin', 'Web'),
(749, 1397, '2021-07-26 13:22:20', '192.168.127.12', 'normal', 'cient'),
(750, 1397, '2021-07-29 12:20:42', '192.168.127.12', 'normal', 'cient'),
(751, 1, '2021-07-29 12:27:18', '192.168.127.12', 'admin', 'Web'),
(752, 1397, '2021-07-29 12:40:57', '192.168.127.12', 'normal', 'cient'),
(753, 1, '2021-07-29 12:41:31', '192.168.127.12', 'admin', 'Web'),
(754, 1397, '2021-07-29 12:52:05', '192.168.127.12', 'normal', 'cient'),
(755, 1397, '2021-07-29 13:16:00', '192.168.127.12', 'normal', 'cient'),
(756, 1, '2021-07-30 07:18:04', '192.168.127.12', 'admin', 'Web'),
(757, 1397, '2021-07-30 08:19:29', '192.168.127.12', 'normal', 'cient'),
(758, 1, '2021-07-30 09:44:31', '172.16.31.10', 'admin', 'Web'),
(759, 1397, '2021-07-30 11:05:33', '192.168.127.12', 'normal', 'cient'),
(760, 1397, '2021-07-30 11:08:44', '192.168.127.12', 'normal', 'cient'),
(761, 1, '2021-07-30 11:19:56', '192.168.127.12', 'admin', 'Web'),
(762, 1397, '2021-07-30 13:06:55', '192.168.127.12', 'normal', 'cient'),
(763, 1394, '2021-07-31 03:04:45', '172.16.17.32', 'normal', 'cient'),
(764, 1, '2021-07-31 05:50:14', '192.168.3.11', 'admin', 'Web'),
(765, 1394, '2021-07-31 05:53:02', '192.168.3.11', 'normal', 'cient'),
(766, 1, '2021-07-31 07:18:20', '192.168.127.12', 'admin', 'Web'),
(767, 1394, '2021-07-31 07:18:29', '192.168.127.12', 'normal', 'cient'),
(768, 1397, '2021-07-31 07:28:21', '192.168.127.12', 'normal', 'cient'),
(769, 1, '2021-07-31 13:22:37', '192.168.127.12', 'admin', 'Web'),
(770, 1397, '2021-07-31 13:27:32', '192.168.127.12', 'normal', 'cient'),
(771, 1397, '2021-07-31 13:39:29', '192.168.127.12', 'normal', 'cient'),
(772, 1, '2021-07-31 14:06:37', '192.168.127.12', 'admin', 'Web'),
(773, 1394, '2021-07-31 16:34:59', '172.16.58.3', 'normal', 'cient'),
(774, 1, '2021-07-31 16:41:53', '172.16.58.3', 'admin', 'Web'),
(775, 1394, '2021-07-31 17:14:12', '172.16.58.3', 'normal', 'cient'),
(776, 1, '2021-08-02 07:11:47', '192.168.127.12', 'admin', 'Web'),
(777, 1397, '2021-08-02 07:12:04', '192.168.127.12', 'normal', 'cient'),
(778, 1397, '2021-08-02 19:44:17', '172.16.17.32', 'normal', 'cient'),
(779, 1397, '2021-08-02 19:52:01', '172.16.17.32', 'normal', 'cient'),
(780, 1, '2021-08-03 09:05:33', '192.168.127.12', 'admin', 'Web'),
(781, 1, '2021-08-04 06:01:45', '192.168.127.12', 'admin', 'Web'),
(782, 1, '2021-08-04 06:04:43', '192.168.127.12', 'admin', 'Web'),
(783, 469, '2021-08-04 06:07:24', '192.168.127.12', 'normal', 'cient'),
(784, 13, '2021-08-04 06:11:29', '192.168.127.12', 'normal', 'cient'),
(785, 1397, '2021-08-04 09:00:53', '192.168.127.12', 'normal', 'cient'),
(786, 1397, '2021-08-04 09:01:27', '192.168.127.12', 'normal', 'cient'),
(787, 1397, '2021-08-04 09:02:42', '192.168.127.12', 'normal', 'cient'),
(788, 1, '2021-08-04 09:04:22', '192.168.127.12', 'admin', 'Web'),
(789, 1397, '2021-08-04 09:36:31', '192.168.127.12', 'normal', 'cient'),
(790, 1, '2021-08-04 09:39:11', '192.168.127.12', 'admin', 'Web'),
(791, 1397, '2021-08-04 09:40:10', '192.168.127.12', 'normal', 'cient'),
(792, 1394, '2021-08-04 10:10:22', '192.168.127.12', 'normal', 'cient'),
(793, 1, '2021-08-04 10:11:17', '192.168.127.12', 'admin', 'Web'),
(794, 1397, '2021-08-04 10:12:36', '192.168.127.12', 'normal', 'cient'),
(795, 1397, '2021-08-04 10:25:38', '192.168.127.12', 'normal', 'cient'),
(796, 1397, '2021-08-04 10:53:13', '192.168.127.12', 'normal', 'cient'),
(797, 1397, '2021-08-04 11:22:28', '10.0.2.16', 'normal', 'google sdk'),
(798, 1397, '2021-08-05 08:14:17', '192.168.127.12', 'normal', 'cient'),
(799, 1397, '2021-08-05 08:24:06', '192.168.2.115', 'normal', 'xiaomi Red'),
(800, 1394, '2021-08-05 14:25:42', '192.168.2.115', 'normal', 'xiaomi Red'),
(801, 1394, '2021-08-05 14:28:19', '192.168.2.115', 'normal', 'xiaomi Red'),
(802, 1427, '2021-08-05 14:32:00', '192.168.127.12', 'normal', 'cient'),
(803, 1, '2021-08-05 14:47:42', '192.168.127.12', 'admin', 'Web'),
(804, 1397, '2021-08-06 09:59:31', 'fe80::38d4:5dff:fed0:2e1d%dummy0', 'normal', 'xiaomi Red'),
(805, 1397, '2021-08-06 10:02:38', '192.168.127.12', 'normal', 'cient'),
(806, 1397, '2021-08-07 08:55:28', '192.168.127.12', 'normal', 'cient'),
(807, 1394, '2021-08-08 13:31:16', '192.168.2.110', 'normal', 'OPPO CPH22'),
(808, 1394, '2021-08-08 13:33:50', '192.168.2.110', 'normal', 'OPPO CPH22'),
(809, 1394, '2021-08-08 13:46:22', 'fe80::b5d:e0a5%rmnet0', 'normal', 'samsung SM'),
(810, 1394, '2021-08-08 13:49:01', '192.168.2.110', 'normal', 'OPPO CPH22'),
(811, 1397, '2021-08-09 08:50:32', '192.168.127.12', 'normal', 'cient'),
(812, 1397, '2021-08-09 09:23:53', '192.168.2.115', 'normal', 'xiaomi Red'),
(813, 1, '2021-08-09 10:46:46', '192.168.127.12', 'admin', 'Web'),
(814, 1394, '2021-08-09 11:10:06', '192.168.2.110', 'normal', 'OPPO CPH22'),
(815, 1, '2021-08-09 11:13:06', '192.168.3.11', 'admin', 'Web'),
(816, 1397, '2021-08-09 11:15:08', '192.168.3.11', 'normal', 'cient'),
(817, 1397, '2021-08-09 12:00:50', '192.168.127.12', 'normal', 'cient'),
(818, 1397, '2021-08-09 12:14:16', '192.168.2.115', 'normal', 'xiaomi Red'),
(819, 1397, '2021-08-09 13:12:37', '192.168.3.11', 'normal', 'cient'),
(820, 1397, '2021-08-09 14:01:18', '192.168.3.11', 'normal', 'cient'),
(821, 1397, '2021-08-10 08:20:29', '192.168.127.12', 'normal', 'cient'),
(822, 1, '2021-08-10 08:25:10', '192.168.127.12', 'admin', 'Web'),
(823, 1397, '2021-08-10 09:06:37', '192.168.127.12', 'normal', 'cient'),
(824, 1397, '2021-08-10 09:49:45', '192.168.127.12', 'normal', 'cient'),
(825, 1397, '2021-08-10 09:54:55', '192.168.127.12', 'normal', 'cient'),
(826, 1, '2021-08-10 11:52:33', '192.168.127.12', 'admin', 'Web'),
(827, 1397, '2021-08-10 13:01:54', '192.168.127.12', 'normal', 'cient'),
(828, 1397, '2021-08-10 13:33:23', '192.168.127.12', 'normal', 'cient'),
(829, 1397, '2021-08-11 06:01:38', '192.168.127.12', 'normal', 'cient'),
(830, 1, '2021-08-11 06:19:10', '192.168.127.12', 'admin', 'Web'),
(831, 1397, '2021-08-11 07:29:33', '192.168.127.12', 'normal', 'cient'),
(832, 1, '2021-08-11 12:16:59', '192.168.127.12', 'admin', 'Web'),
(833, 1397, '2021-08-11 12:29:51', '192.168.127.12', 'normal', 'cient'),
(834, 1397, '2021-08-11 13:01:41', '192.168.31.68', 'normal', 'xiaomi Red'),
(835, 1397, '2021-08-11 13:41:38', '192.168.0.100', 'normal', 'POCO M2006'),
(836, 1, '2021-08-11 15:35:33', '192.168.127.12', 'admin', 'Web'),
(837, 1397, '2021-08-12 05:02:27', '192.168.127.12', 'normal', 'cient'),
(838, 1, '2021-08-12 05:03:21', '192.168.127.12', 'admin', 'Web'),
(839, 1397, '2021-08-12 07:02:11', '10.0.2.16', 'normal', 'google sdk'),
(840, 1397, '2021-08-12 08:03:47', '192.168.127.12', 'normal', 'cient'),
(841, 1455, '2021-08-12 08:39:00', '192.168.127.12', 'normal', 'cient'),
(842, 1397, '2021-08-12 09:13:11', '192.168.127.12', 'normal', 'cient'),
(843, 1397, '2021-08-12 10:00:57', '192.168.127.12', 'normal', 'cient'),
(844, 1, '2021-08-12 10:33:50', '192.168.127.12', 'admin', 'Web'),
(845, 1, '2021-08-12 13:18:02', '192.168.127.12', 'admin', 'Web'),
(846, 1397, '2021-08-12 13:35:47', '192.168.127.12', 'normal', 'cient'),
(847, 1397, '2021-08-12 16:29:01', '10.0.2.16', 'normal', 'google sdk'),
(848, 1, '2021-08-12 17:53:09', '192.168.127.12', 'admin', 'Web'),
(849, 1397, '2021-08-12 17:59:32', '192.168.127.12', 'normal', 'cient'),
(850, 1397, '2021-08-13 05:45:59', '192.168.127.12', 'normal', 'cient'),
(851, 1, '2021-08-13 06:23:17', '192.168.127.12', 'admin', 'Web'),
(852, 1397, '2021-08-13 10:27:55', '192.168.127.12', 'normal', 'cient'),
(853, 1, '2021-08-13 13:17:49', '192.168.127.12', 'admin', 'Web'),
(854, 1456, '2021-08-13 13:21:16', '192.168.127.12', 'normal', 'cient'),
(855, 1397, '2021-08-13 13:43:48', '192.168.31.68', 'normal', 'xiaomi Red'),
(856, 1397, '2021-08-13 14:50:50', '192.168.127.12', 'normal', 'cient'),
(857, 1394, '2021-08-13 15:07:20', '192.168.127.12', 'normal', 'cient'),
(858, 1394, '2021-08-13 15:25:22', 'fe80::1:2:928d:2968%ccmni2', 'normal', 'POCO M2006'),
(859, 1397, '2021-08-13 15:55:59', 'fe80::1:2:928d:2968%ccmni2', 'normal', 'POCO M2006'),
(860, 1, '2021-08-13 16:47:00', '192.168.3.11', 'admin', 'Web'),
(861, 1397, '2021-08-13 18:57:36', 'fe80::c011:73ff:fe5a:9b1f%p2p0', 'normal', 'samsung SM'),
(862, 1427, '2021-08-14 01:50:13', 'fe80::1bab:b8a0%rmnet0', 'normal', 'samsung SM'),
(863, 1, '2021-08-14 02:05:49', '172.16.17.32', 'admin', 'Web'),
(864, 1397, '2021-08-14 05:06:31', 'fe80::c011:73ff:fe5a:9b1f%p2p0', 'normal', 'samsung SM'),
(865, 1, '2021-08-14 05:11:33', '192.168.127.12', 'admin', 'Web'),
(866, 1427, '2021-08-14 06:13:06', 'fe80::1bab:b8a0%rmnet0', 'normal', 'samsung SM'),
(867, 1427, '2021-08-14 06:13:08', 'fe80::1bab:b8a0%rmnet0', 'normal', 'samsung SM'),
(868, 1394, '2021-08-14 07:53:25', '192.168.127.12', 'normal', 'cient'),
(869, 1448, '2021-08-14 09:26:00', '192.168.127.12', 'normal', 'cient'),
(870, 1, '2021-08-14 12:13:17', '192.168.127.12', 'admin', 'Web'),
(871, 1394, '2021-08-14 12:21:28', '192.168.127.12', 'normal', 'cient'),
(872, 1, '2021-08-14 13:00:23', '192.168.127.12', 'admin', 'Web'),
(873, 1394, '2021-08-14 13:25:57', '192.168.127.12', 'normal', 'cient'),
(874, 989, '2021-08-14 13:30:44', '192.168.127.12', 'normal', 'cient'),
(875, 1, '2021-08-14 13:56:29', '192.168.127.12', 'admin', 'Web'),
(876, 1397, '2021-08-15 15:49:53', '192.168.31.68', 'normal', 'xiaomi Red'),
(877, 1, '2021-08-16 06:18:56', '192.168.127.12', 'admin', 'Web'),
(878, 1, '2021-08-16 06:40:51', '192.168.127.12', 'admin', 'Web'),
(879, 1397, '2021-08-16 06:51:01', '192.168.127.12', 'normal', 'cient'),
(880, 1, '2021-08-17 05:38:19', '172.16.58.3', 'admin', 'Web'),
(881, 1397, '2021-08-17 06:22:32', '172.16.58.3', 'normal', 'cient'),
(882, 1397, '2021-08-17 10:52:02', '192.168.127.12', 'normal', 'cient'),
(883, 1397, '2021-08-17 11:21:15', '172.16.58.3', 'normal', 'cient'),
(884, 1, '2021-08-17 12:38:24', '192.168.127.12', 'admin', 'Web'),
(885, 1397, '2021-08-18 10:08:43', '192.168.127.12', 'normal', 'cient'),
(886, 1, '2021-08-18 15:07:06', '192.168.127.12', 'admin', 'Web'),
(887, 1397, '2021-08-19 11:01:15', '192.168.0.106', 'normal', 'xiaomi Red'),
(888, 1397, '2021-08-19 11:34:03', 'fe80::c011:73ff:fe5a:9b1f%p2p0', 'normal', 'samsung SM'),
(889, 1397, '2021-08-19 11:34:51', '192.168.2.114', 'normal', 'samsung SM'),
(890, 1, '2021-08-19 11:37:37', '172.16.58.3', 'admin', 'Web'),
(891, 1397, '2021-08-19 12:07:42', '172.16.58.3', 'normal', 'cient'),
(892, 1397, '2021-08-19 12:32:41', '172.16.58.3', 'normal', 'cient'),
(893, 1397, '2021-08-19 13:13:42', '172.16.58.3', 'normal', 'cient'),
(894, 1397, '2021-08-20 06:52:40', '172.16.58.3', 'normal', 'cient'),
(895, 1, '2021-08-20 08:14:26', '172.16.58.3', 'admin', 'Web'),
(896, 1, '2021-08-20 08:18:34', '172.16.58.3', 'admin', 'Web'),
(897, 1397, '2021-08-20 08:23:43', '172.16.58.3', 'normal', 'cient'),
(898, 1397, '2021-08-21 11:17:02', '172.16.58.3', 'normal', 'cient'),
(899, 1397, '2021-08-23 03:22:24', 'fe80::c011:73ff:fe5a:9b1f%p2p0', 'normal', 'samsung SM'),
(900, 1397, '2021-08-23 04:40:36', 'fe80::c011:73ff:fe5a:9b1f%p2p0', 'normal', 'samsung SM'),
(901, 1, '2021-08-23 05:38:06', '172.16.58.3', 'admin', 'Web'),
(902, 1397, '2021-08-23 06:31:25', '172.16.58.3', 'normal', 'cient'),
(903, 1, '2021-08-23 06:39:53', '172.16.58.3', 'admin', 'Web'),
(904, 1, '2021-08-23 06:55:30', '172.16.58.3', 'admin', 'Web'),
(905, 1397, '2021-08-23 06:55:39', '172.16.58.3', 'normal', 'cient'),
(906, 1, '2021-08-23 07:09:49', '172.16.58.3', 'admin', 'Web'),
(907, 1397, '2021-08-23 07:17:00', '172.16.58.3', 'normal', 'cient'),
(908, 1, '2021-08-23 07:20:06', '172.16.58.3', 'admin', 'Web'),
(909, 1397, '2021-08-23 07:34:06', '172.16.58.3', 'normal', 'cient'),
(910, 1397, '2021-08-23 08:07:31', 'fe80::c011:73ff:fe5a:9b1f%p2p0', 'normal', 'samsung SM'),
(911, 1397, '2021-08-23 08:08:16', '172.16.58.3', 'normal', 'cient'),
(912, 1397, '2021-08-23 09:28:45', 'fe80::c011:73ff:fe5a:9b1f%p2p0', 'normal', 'samsung SM'),
(913, 1397, '2021-08-23 11:40:06', '172.16.58.3', 'normal', 'cient'),
(914, 1397, '2021-08-26 17:58:20', '192.168.0.103', 'normal', 'OPPO CPH22'),
(915, 1397, '2021-08-26 17:59:25', '172.16.58.3', 'normal', 'cient'),
(916, 1, '2021-08-26 18:52:54', '172.16.58.3', 'admin', 'Web'),
(917, 1, '2021-08-27 00:22:52', '192.168.127.12', 'admin', 'Web'),
(918, 1397, '2021-08-27 00:23:47', '192.168.127.12', 'normal', 'cient'),
(919, 1, '2021-08-27 06:52:49', '172.16.58.3', 'admin', 'Web'),
(920, 1397, '2021-08-27 06:54:32', '192.168.0.102', 'normal', 'OPPO CPH22'),
(921, 1397, '2021-08-27 08:00:33', 'fe80::c011:73ff:fe5a:9b1f%p2p0', 'normal', 'samsung SM'),
(922, 1397, '2021-08-27 08:37:10', '172.16.58.3', 'normal', 'cient'),
(923, 1, '2021-08-27 11:58:35', '192.168.127.12', 'admin', 'Web'),
(924, 1, '2021-08-28 02:35:02', '192.168.3.11', 'admin', 'Web'),
(925, 469, '2021-08-28 03:14:06', '192.168.3.11', 'normal', 'cient'),
(926, 1397, '2021-08-28 03:14:27', 'fe80::8ff:15ff:fe03:8671%dummy0', 'normal', 'OPPO CPH22'),
(927, 1397, '2021-08-28 04:50:23', 'fe80::c011:73ff:fe5a:9b1f%p2p0', 'normal', 'samsung SM'),
(928, 1397, '2021-08-28 04:50:25', 'fe80::c011:73ff:fe5a:9b1f%p2p0', 'normal', 'samsung SM'),
(929, 469, '2021-08-28 11:59:43', '172.16.58.3', 'normal', 'cient'),
(930, 1, '2021-08-28 12:09:28', '172.16.58.3', 'admin', 'Web'),
(931, 1397, '2021-08-28 12:41:56', 'fe80::8ff:15ff:fe03:8671%dummy0', 'normal', 'OPPO CPH22'),
(932, 469, '2021-08-28 12:46:13', '172.16.58.3', 'normal', 'cient'),
(933, 1397, '2021-08-28 13:10:10', 'fe80::8ff:15ff:fe03:8671%dummy0', 'normal', 'OPPO CPH22'),
(934, 1397, '2021-08-28 14:45:45', 'fe80::8ff:15ff:fe03:8671%dummy0', 'normal', 'OPPO CPH22'),
(935, 1397, '2021-08-28 14:45:46', 'fe80::8ff:15ff:fe03:8671%dummy0', 'normal', 'OPPO CPH22'),
(936, 1, '2021-08-28 14:55:52', '172.16.58.3', 'admin', 'Web'),
(937, 1, '2021-08-29 08:25:53', '172.16.58.3', 'admin', 'Web'),
(938, 1, '2021-09-02 07:39:17', '172.16.17.32', 'admin', 'Web'),
(939, 1397, '2021-09-09 12:06:48', '192.168.127.12', 'normal', 'cient'),
(940, 1397, '2021-09-09 16:30:31', '192.168.0.106', 'normal', 'xiaomi Red');
-- --------------------------------------------------------
--
-- Table structure for table `master_marital_status`
--
CREATE TABLE `master_marital_status` (
`id` int(11) NOT NULL,
`maritalstatus` varchar(55) NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_marital_status`
--
INSERT INTO `master_marital_status` (`id`, `maritalstatus`, `deleted`) VALUES
(1, 'Engaged', 0),
(2, 'Single', 0),
(3, 'Married', 0),
(4, 'Widow', 0),
(5, 'Divorced', 0),
(6, 'Marriageable', 0),
(7, 'Diksha', 0),
(8, 'tt1', 1),
(9, 'rrrr1', 1);
-- --------------------------------------------------------
--
-- Table structure for table `master_matrimonial`
--
CREATE TABLE `master_matrimonial` (
`matrimonial_id` int(255) NOT NULL,
`member_no` varchar(20) NOT NULL,
`family_no` varchar(20) NOT NULL,
`age` varchar(10) NOT NULL,
`weight` varchar(10) NOT NULL,
`rashi` varchar(100) NOT NULL,
`place` varchar(50) NOT NULL,
`material` varchar(100) NOT NULL,
`mother_name` varchar(100) NOT NULL,
`height` varchar(10) NOT NULL,
`kundali` varchar(50) NOT NULL,
`birth_time` time NOT NULL,
`dharmik` varchar(50) NOT NULL,
`contact` varchar(13) NOT NULL,
`deleted` int(1) NOT NULL DEFAULT '0',
`created_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`status` int(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `master_matrimonial`
--
INSERT INTO `master_matrimonial` (`matrimonial_id`, `member_no`, `family_no`, `age`, `weight`, `rashi`, `place`, `material`, `mother_name`, `height`, `kundali`, `birth_time`, `dharmik`, `contact`, `deleted`, `created_on`, `status`) VALUES
(6, 'DPF0517-03', 'DPF0517', '22', '85', '0', 'Mumbai', 'Ghodhara ', 'Chandan', '5.8', '0', '08:28:00', '0', '9004190906', 0, '2021-08-14 08:04:38', 1),
(7, 'DPF0517-01', 'DPF0517', '28', '72', '0', 'Mumbai', 'Wadala', 'M', '5.5', '0', '20:37:00', '0', '9664428534', 0, '2021-08-14 13:06:33', 1);
-- --------------------------------------------------------
--
-- Table structure for table `master_occupation`
--
CREATE TABLE `master_occupation` (
`id` int(11) NOT NULL,
`occupation` varchar(55) NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_occupation`
--
INSERT INTO `master_occupation` (`id`, `occupation`, `deleted`) VALUES
(1, 'Artist', 1),
(2, 'Business', 0),
(3, 'Commission Agent', 1),
(4, 'House-wife', 0),
(5, 'Not Specified', 0),
(6, 'Professional', 0),
(7, 'Retired', 0),
(8, 'Service', 0),
(9, 'Social Worker', 0),
(10, 'Student', 0),
(12, 'Medical Practice', 1),
(13, 'Architect', 1),
(15, 'Tax Consultant', 1),
(16, 'L.I.C. Agent, Tax Consultant Finance', 1),
(17, '<NAME>', 0),
(18, 'Video Editor / Graphic Designer', 1),
(19, 'Other', 0),
(20, 'omp', 1),
(21, 'eee', 1);
-- --------------------------------------------------------
--
-- Table structure for table `master_relation`
--
CREATE TABLE `master_relation` (
`id` int(11) NOT NULL,
`relation` varchar(50) NOT NULL,
`m_type` varchar(5) NOT NULL DEFAULT 'in',
`deleted` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_relation`
--
INSERT INTO `master_relation` (`id`, `relation`, `m_type`, `deleted`) VALUES
(2, 'Aunty', 'in', 0),
(3, 'Bhabhi', 'in', 0),
(4, 'Brother', '', 0),
(5, 'Brother In Law', '', 0),
(6, 'Daughter', 'out', 0),
(7, 'Daughter In Law', 'in', 0),
(8, 'Father', '', 0),
(9, 'Father in Law', '', 0),
(10, 'Grand Daughter', 'out', 0),
(11, 'Grand Daughter In Law', 'in', 0),
(12, 'Grand Father', '', 0),
(14, 'Grand Mother', 'in', 0),
(15, 'Grand Son', '', 0),
(16, 'Husband', '', 0),
(17, 'Mother', 'in', 0),
(18, 'Mother In Law', '', 0),
(19, 'Nephew', '', 0),
(20, 'Niece', 'in', 0),
(22, 'Self', 'in', 0),
(23, 'Sister', 'out', 0),
(24, 'Sister In Law', 'in', 0),
(25, 'Son', '', 0),
(26, 'Son In Law', '', 0),
(27, 'Uncle', '', 0),
(28, 'Wife', 'in', 0),
(30, 'Great Grand Daughter', 'out', 0),
(31, 'Grand Son in Law', '', 0),
(38, 'Great Grand Son', '', 0),
(39, 'Other', 'in', 0),
(40, 'tt1', 'in', 1),
(41, 'uuu', 'in', 1),
(42, 'test', 'in', 1);
-- --------------------------------------------------------
--
-- Table structure for table `master_sports`
--
CREATE TABLE `master_sports` (
`id` int(11) NOT NULL,
`sports` varchar(55) NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_sports`
--
INSERT INTO `master_sports` (`id`, `sports`, `deleted`) VALUES
(0, 'Other', 0),
(1, 'Cricket', 0),
(2, 'Basketball', 0),
(3, 'Football', 0),
(5, 'Volleyball', 0),
(6, 'Kabbadi', 0),
(7, 'Chess', 0),
(8, 'Carrom', 0),
(9, 'Athletics', 0),
(10, 'omp', 1),
(11, 'ggg', 1);
-- --------------------------------------------------------
--
-- Table structure for table `master_subscription`
--
CREATE TABLE `master_subscription` (
`id` int(11) NOT NULL,
`subscription` varchar(25) NOT NULL,
`months` varchar(15) NOT NULL,
`amount` int(11) NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_subscription`
--
INSERT INTO `master_subscription` (`id`, `subscription`, `months`, `amount`, `deleted`) VALUES
(1, 'Monthly', '+1 months', 300, 0),
(2, 'Quaterly', '+3 months', 600, 0),
(3, 'Half Yearly', '+6 months', 1500, 0),
(4, 'Yearly', '+12 months', 1800, 0);
-- --------------------------------------------------------
--
-- Table structure for table `master_surname`
--
CREATE TABLE `master_surname` (
`id` int(11) NOT NULL,
`surname` varchar(55) NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_surname`
--
INSERT INTO `master_surname` (`id`, `surname`, `deleted`) VALUES
(1, 'Aashar', 0),
(2, 'Aashariya', 0),
(3, 'Agrawal', 0),
(4, 'Ajani', 0),
(5, 'Arora', 0),
(6, 'Baliya', 0),
(7, 'Baru', 0),
(8, 'Bauwa', 0),
(9, 'Bhagat', 0),
(10, 'Bhalla', 0),
(11, 'Bhanushali', 0),
(12, 'Bharani', 0),
(13, 'Bhatt', 0),
(14, 'Bhavsar', 0),
(15, 'Bheda', 0),
(16, 'Bhimani', 0),
(17, 'Bhisra', 0),
(18, 'Boricha', 0),
(19, 'Bouwa', 0),
(20, 'Chandan', 0),
(21, 'Chandrani', 0),
(22, 'Chandruwa', 0),
(23, 'Charla', 0),
(24, 'Chawan', 0),
(25, 'Chhadva', 0),
(26, 'Chhatbar', 0),
(27, 'Chheda', 0),
(28, 'Chotaliya', 0),
(29, 'Chudasama', 0),
(30, 'Dagga', 0),
(31, 'Dama', 0),
(32, 'Damodar', 0),
(33, 'Dand', 0),
(34, 'Dedhia', 0),
(35, 'Dedhiya', 0),
(36, 'Desai', 0),
(37, 'Dhanani', 0),
(38, 'Dharamshi', 0),
(39, 'Dharod', 0),
(40, 'Dharshi', 0),
(41, 'Dhiravani', 0),
(42, 'Dhulla', 0),
(43, 'Dodhia', 0),
(44, 'Doshi', 0),
(45, 'Faria', 0),
(46, 'Furia', 0),
(47, 'Gada', 0),
(48, 'Gala', 0),
(49, 'Galia', 0),
(50, 'Ganatra', 0),
(51, 'Gandhi', 0),
(52, 'Gangar', 0),
(53, 'Ganpat', 0),
(54, 'Ghela', 0),
(55, 'Gindara', 0),
(56, 'Gogari', 0),
(57, 'Gogri', 0),
(58, 'Gor', 0),
(59, 'Gosar', 0),
(60, 'Gosrani', 0),
(61, 'Gupta', 0),
(62, 'Gutka', 0),
(63, 'Haria', 0),
(64, 'Henia', 0),
(65, 'Ishrani', 0),
(66, 'Jagani', 0),
(67, 'Jain', 0),
(68, 'Jarag', 0),
(69, 'Jariwala', 0),
(70, 'Joshi', 0),
(71, 'Kakka', 0),
(72, 'Kamath', 0),
(73, 'Kapadia', 0),
(74, 'Karani', 0),
(75, 'Karia', 0),
(76, 'Karndikar', 0),
(77, 'Karniya', 0),
(78, 'Kenia', 0),
(79, 'Kewalramani', 0),
(80, 'Khatri', 0),
(81, 'Khimsaria', 0),
(82, 'Khimshia', 0),
(83, 'Khokhani', 0),
(84, 'Khona', 0),
(85, 'Khuthia', 0),
(86, 'Khutia', 0),
(87, 'Koradia', 0),
(88, 'Korani', 0),
(89, 'Kothari', 0),
(90, 'Kripal', 0),
(91, 'Kulkarni', 0),
(92, 'Kurva', 0),
(93, 'Ladha', 0),
(94, 'Lakhani', 0),
(95, 'Lalan', 0),
(96, 'Lapasia', 0),
(97, 'Lodaya', 0),
(98, 'Mahadev', 0),
(99, 'Maishri', 0),
(100, 'Majethia', 0),
(101, 'Makda', 0),
(102, 'Malde', 0),
(103, 'Maliya', 0),
(104, 'Mamania', 0),
(105, 'Manek', 0),
(106, 'Maru', 0),
(107, 'Mehta', 0),
(108, 'Mekoni', 0),
(109, 'Mepani', 0),
(110, 'Mhatre', 0),
(111, 'Modi', 0),
(112, 'Momaya', 0),
(113, 'Mota', 0),
(114, 'Motta', 0),
(115, 'Other', 0),
(116, 'Nagda', 0),
(117, 'Nanavati', 0),
(118, 'Nandu', 0),
(119, 'Natali', 0),
(120, 'Nayak', 0),
(121, 'Nisar', 0),
(122, 'Pachan', 0),
(123, 'Padhare', 0),
(124, 'Palan', 0),
(125, 'Panchal', 0),
(126, 'Panchariya', 0),
(127, 'Pandya', 0),
(128, 'Parab', 0),
(129, 'Parikh', 0),
(130, 'Parmar', 0),
(131, 'Pasad', 0),
(132, 'Pasu', 0),
(133, 'Patel', 0),
(134, 'Pathrani', 0),
(135, 'Patil', 0),
(136, 'Patnakar', 0),
(137, 'Patni', 0),
(138, 'Pethad', 0),
(139, 'Pethani', 0),
(140, 'Pinto', 0),
(141, 'Poladia', 0),
(142, 'Popat', 0),
(143, 'Pujari', 0),
(144, 'Punj', 0),
(145, 'Punjara', 0),
(146, 'Rajgor', 0),
(147, 'Rambhia', 0),
(148, 'Ranka', 0),
(149, 'Rathod', 0),
(150, 'Raval', 0),
(151, 'Ruparel', 0),
(152, 'Sachde', 0),
(153, 'sadsakar', 0),
(154, 'Saiya', 0),
(155, 'Salia', 0),
(156, 'Sanghvi', 0),
(157, 'Sangoi', 0),
(158, 'Saniya', 0),
(159, 'Sathia', 0),
(160, 'Satiya', 0),
(161, 'Satra', 0),
(162, 'Satra(Shah)', 0),
(163, 'Savani', 0),
(164, 'Savla', 0),
(165, 'Sayani', 0),
(166, 'Sejpal', 0),
(167, 'Shah', 0),
(168, 'Shah (Mamania)', 0),
(169, 'Shah (Nagda)', 0),
(170, 'Shah(Chheda)', 0),
(171, 'Shah(Gada)', 0),
(172, 'Shah(Gala)', 0),
(173, 'Shahnand', 0),
(174, 'Sharma', 0),
(175, 'Shenoy', 0),
(176, 'Shethia', 0),
(177, 'Shikotra', 0),
(178, 'Shiyal', 0),
(179, 'Sing', 0),
(180, 'Solanki', 0),
(181, 'Somaiya', 0),
(182, 'Soni', 0),
(183, 'Tandon', 0),
(184, 'Tanna', 0),
(185, 'Thakkar', 0),
(186, 'Thanawala', 0),
(187, 'Trivedi', 0),
(188, 'Unwala', 0),
(189, 'Vadhan', 0),
(190, 'Vaithuk', 0),
(191, 'Vajani', 0),
(192, 'Varjan', 0),
(193, 'Vedant', 0),
(194, 'Vikam', 0),
(195, 'Vikamani', 0),
(196, 'Vikamshi', 0),
(197, 'Vikmani', 0),
(198, 'Vikram', 0),
(199, 'Vinchhivora', 0),
(200, 'Vinchi', 0),
(201, 'Vira', 0),
(202, 'Virani', 0),
(203, 'Visaria', 0),
(204, 'Vishrani', 0),
(205, 'Vora', 0),
(206, 'Yelmame', 0),
(207, 'Zala', 0),
(208, 'Zaveri', 0),
(214, 'Chhadwa', 0),
(215, 'Punjab', 0),
(216, 'Rambhiya', 0),
(217, 'Nautiyal', 0),
(218, 'Nadu', 0),
(219, 'Vichhivora', 0),
(220, 'Bole', 0),
(221, 'Karkera', 0),
(222, 'Kasle', 0),
(223, 'Ghelani', 0),
(224, 'Rita', 0),
(225, 'Sethia', 0),
(226, 'Kathare', 0),
(227, 'Kamat', 0),
(228, 'Makwana', 0),
(229, 'Harshi', 0),
(230, 'Vataria', 0),
(231, 'Dandel', 0),
(232, 'Konkar', 0),
(233, 'Baua', 0),
(234, 'Sahare', 0),
(269, 'yadav', 1),
(270, 'yadav', 1);
-- --------------------------------------------------------
--
-- Table structure for table `master_videogallery`
--
CREATE TABLE `master_videogallery` (
`id` int(255) NOT NULL,
`title` varchar(200) NOT NULL,
`link` varchar(200) NOT NULL,
`status` int(1) NOT NULL DEFAULT '0',
`deleted` int(1) NOT NULL DEFAULT '0',
`created_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `master_videogallery`
--
INSERT INTO `master_videogallery` (`id`, `title`, `link`, `status`, `deleted`, `created_on`) VALUES
(1, 'test YT Video ok', 'https://www.youtube.com/watch?v=wxSbejzh3f0', 0, 1, '2021-07-25 10:23:12'),
(2, 'test updated', 'https://www.youtube.com/watch?v=wxSbejzh3f0', 0, 1, '2021-08-14 07:05:33'),
(3, 'sadsad update from admin', 'https://www.youtube.com/watch?v=JK8tO2lW06k', 0, 1, '2021-08-14 07:05:25'),
(4, 'cxcxcxzc', 'https://www.youtube.com/watch?v=vkBTEvxVImQ', 0, 1, '2021-07-26 09:13:50'),
(5, '<NAME> : 31/7/2021', 'https://youtu.be/ZS3nh4f189o', 0, 0, '2021-07-31 06:04:31'),
(6, 'The Animator', 'https://www.youtube.com/watch?v=tYnNrhFoalw', 0, 0, '2021-08-09 13:35:57'),
(7, 'vvxczv', 'https://www.youtube.com/watch?v=yBd1xlYoa2s', 0, 1, '2021-08-12 09:27:49'),
(8, 'Test Om', 'https://www.youtube.com/watch?v=gDiVrcteedw', 0, 1, '2021-08-12 13:25:35'),
(9, 'Sab ka sath Depa ka Vikas', 'https://www.youtube.com/watch?v=GxF-UlGRQq0', 0, 0, '2021-08-14 13:01:05');
-- --------------------------------------------------------
--
-- Table structure for table `master_village`
--
CREATE TABLE `master_village` (
`id` int(11) NOT NULL,
`village` varchar(55) NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `master_village`
--
INSERT INTO `master_village` (`id`, `village`, `deleted`) VALUES
(1, 'Aadhoi', 1),
(2, 'Amreli', 0),
(3, 'Anjar', 0),
(4, 'Bada', 0),
(5, 'Bagda', 0),
(6, 'Baiarudia', 0),
(7, 'Bambhdai', 0),
(8, 'Baroi', 1),
(9, 'Bayath', 1),
(10, 'Beraja', 1),
(11, 'Bhachau', 1),
(12, 'Bhadai', 1),
(13, 'Bhadreswar', 0),
(14, 'Bharapur', 0),
(15, 'Bharudiya', 0),
(16, 'Bhinsra', 0),
(17, 'Bhojay', 0),
(18, 'Bhorara', 0),
(19, 'Bhuj', 0),
(20, 'Bhujpur', 0),
(21, 'Bidada', 0),
(22, 'Changdai', 0),
(23, 'Chasra', 0),
(24, 'Chhasra', 0),
(25, 'Chiyasar', 0),
(26, 'Chundi', 0),
(27, 'Dedhia', 0),
(28, 'Depa', 0),
(29, 'Deshalpar', 0),
(30, 'Devpur', 0),
(31, 'Don', 0),
(32, 'Dumra', 0),
(33, 'Durgapur', 0),
(34, 'Faradri', 0),
(35, 'Gadhsisa', 0),
(36, 'Gagodar', 0),
(37, 'Gajod', 0),
(38, 'Gandhidham', 0),
(39, 'Gelda', 0),
(40, 'Ghanithar', 0),
(41, 'Godhra', 0),
(42, 'Gundala', 0),
(43, 'Halapur', 0),
(44, '<NAME>', 0),
(45, 'Jakhau', 0),
(46, 'Kakarva', 0),
(47, 'Kandagara', 0),
(48, 'Kapaya', 0),
(49, 'Karaghoga', 0),
(50, 'Kharua', 0),
(51, 'Khombdi', 0),
(52, 'Koday', 0),
(53, 'Kokliya', 0),
(54, '<NAME>', 0),
(55, '<NAME>', 0),
(56, 'Kothara', 0),
(57, 'Kundrodi', 0),
(58, 'Lakadiya', 0),
(59, 'Lakhapur', 0),
(60, 'Lathedi', 0),
(61, 'Layja', 0),
(62, 'Luni', 0),
(63, 'Makda', 0),
(64, 'Mandvi', 0),
(65, 'Manfara', 0),
(66, '<NAME>', 0),
(67, 'Mapar', 0),
(68, 'Merrau', 0),
(69, 'Mokha', 0),
(70, '<NAME>', 0),
(71, '<NAME>', 0),
(72, 'moth', 0),
(73, 'Mothara', 0),
(74, '<NAME>', 0),
(75, '<NAME>', 0),
(76, '<NAME>', 0),
(77, 'Mundra', 0),
(78, 'NA', 0),
(79, 'Nagalpur', 0),
(80, 'Nagrecha', 0),
(81, 'Naliya', 0),
(82, '<NAME>', 0),
(83, '<NAME>', 0),
(84, 'Nandasar', 0),
(85, '<NAME>', 0),
(86, 'Naranpur', 0),
(87, 'Naredi', 0),
(88, 'Navavas', 0),
(89, 'Navinaar', 0),
(90, 'Not in Kutch', 0),
(91, '<NAME>', 0),
(92, 'Patri', 0),
(93, 'Pragpur', 0),
(94, 'Pratapur', 0),
(95, 'Pundi', 0),
(96, 'Radhanjar', 0),
(97, 'Ramaniya', 0),
(98, '<NAME>', 0),
(99, '<NAME>', 0),
(100, '<NAME>', 0),
(101, 'Rav', 0),
(102, 'Rayan', 0),
(103, 'Sabhrai', 0),
(104, 'Sadau', 0),
(105, 'Samaghoga', 0),
(106, 'Samkhiyari', 0),
(107, 'Sangamner', 0),
(108, 'Sanosara', 0),
(109, 'Sherdi', 0),
(110, 'Suthari', 0),
(111, 'Suvai', 0),
(112, 'Talvana', 0),
(113, 'Thoriyari', 0),
(114, 'Toda', 0),
(115, 'Tragdi', 0),
(116, 'Trambo', 0),
(117, 'Tumbdi', 0),
(118, 'Tunda', 0),
(119, 'Undoth', 0),
(120, 'Vadala', 0),
(121, 'Vandh', 0),
(122, 'Vanki', 0),
(123, 'Vanoi', 0),
(124, 'Varadiya', 0),
(125, 'Varandi', 0),
(126, 'Varshamedi', 0),
(127, 'Vidh', 0),
(128, 'Vinjan', 0),
(129, '1', 1),
(130, 'ttm', 1),
(131, 'ttm', 1),
(132, 'bbb', 1);
-- --------------------------------------------------------
--
-- Table structure for table `matrimonial_requests`
--
CREATE TABLE `matrimonial_requests` (
`id` int(255) NOT NULL,
`member_no` varchar(20) NOT NULL,
`name` varchar(100) NOT NULL,
`email` varchar(100) NOT NULL,
`phone` varchar(10) NOT NULL,
`client` varchar(20) NOT NULL,
`ip` varchar(20) NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`deleted` int(1) NOT NULL DEFAULT '0',
`status` int(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `matrimonial_requests`
--
INSERT INTO `matrimonial_requests` (`id`, `member_no`, `name`, `email`, `phone`, `client`, `ip`, `created`, `deleted`, `status`) VALUES
(1, 'DPF0514-03', 'AJAY', '<EMAIL>', '1234567890', 'web', '::1', '2021-07-29 12:34:18', 0, 1),
(2, 'DPF0514-03', 'AJAY', '<EMAIL>', '1235469870', 'web', '::1', '2021-07-27 11:25:40', 0, 1),
(3, 'DPF0514-03', 'asd', 'asd@asd.asd', '1478523690', 'web', '::1', '2021-07-27 11:25:24', 0, 2),
(4, 'DPF0514-03', 'OM Sir', 'om<EMAIL>', '1234569870', 'web', '::1', '2021-07-29 12:33:46', 1, 1),
(5, 'DPF0514-03', 'AJAY FROM ONLINE', '<EMAIL>', '1234568970', 'web', '192.168.127.12', '2021-07-29 12:34:28', 0, 1),
(6, 'DPF0514-03', 'asdasd 123', '<EMAIL>', '7894562310', 'web', '192.168.127.12', '2021-07-29 12:33:54', 0, 1),
(7, 'DPF0514-03', 'asdasd', '<EMAIL>', '7412589630', 'web', '192.168.127.12', '2021-07-29 12:34:05', 0, 2),
(8, 'DPF0514-03', 'om prakash', '<EMAIL>', '9004190906', 'web', '192.168.127.12', '2021-08-12 08:30:18', 1, 1),
(9, 'DPF0514-03', '<NAME>', '<EMAIL>', '9664428534', 'web', '192.168.3.11', '2021-07-31 05:51:52', 0, 1),
(10, 'DPF0514-10', '<NAME>', '<EMAIL>', '7788994455', 'web', '192.168.127.12', '2021-08-02 09:52:40', 0, 0),
(11, 'DPF0514-10', 'Ajay From App', '<EMAIL>', '9876543210', 'android', '7629892d41824050', '2021-08-07 08:43:42', 0, 0),
(12, 'DPF0514-03', 'helpus', '<EMAIL>', '1235469870', 'web', '192.168.127.12', '2021-08-07 08:45:30', 0, 0),
(13, 'DPF0514-03', 'ggxd', '<EMAIL>', '1234567890', 'android', '7629892d41824050', '2021-08-12 08:31:30', 1, 0),
(14, 'DPF0514-03', '<NAME>', '<EMAIL>', '7020491668', 'web', '192.168.127.12', '2021-08-12 08:31:14', 0, 1),
(15, 'DPF0514-03', 'om', '<EMAIL>', '9004190906', 'android', '44fe11c9badb4f5d', '2021-08-23 08:03:44', 0, 1),
(16, 'DPF0517-01', 'Harsh', '<EMAIL>', '9028984783', 'web', '192.168.127.12', '2021-08-14 13:08:28', 0, 1),
(17, 'DPF0514-17', 'om', '<EMAIL>', '9004190906', 'android', '44fe11c9badb4f5d', '2021-08-27 00:31:58', 1, 1),
(18, 'DPF0517-01', '<NAME>', '<EMAIL>', '9664428534', 'web', '192.168.127.12', '2021-08-27 00:27:55', 0, 0),
(19, 'DPF0517-01', 'chirag', '<EMAIL>', '9664428534', 'android', '9c06affaab3b6148', '2021-08-27 00:29:22', 0, 0),
(20, 'DPF0517-01', 'chirag', '<EMAIL>', '9664428534', 'android', '9c06affaab3b6148', '2021-08-27 00:31:32', 0, 0),
(21, 'DPF0517-01', 'chirag', '<EMAIL>', '9664428534', 'android', '40dc10302198fd36', '2021-08-28 04:44:36', 0, 0),
(22, 'DPF0517-03', 'om', '<EMAIL>', '9004190906', 'android', '40dc10302198fd36', '2021-08-28 14:03:43', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `saadri`
--
CREATE TABLE `saadri` (
`id` int(11) NOT NULL,
`fullname` varchar(80) NOT NULL,
`family_no` varchar(45) NOT NULL,
`family_id` int(11) NOT NULL,
`family_person` int(11) NOT NULL,
`date` date NOT NULL,
`image` varchar(255) NOT NULL,
`deleted` bigint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `saadri`
--
INSERT INTO `saadri` (`id`, `fullname`, `family_no`, `family_id`, `family_person`, `date`, `image`, `deleted`) VALUES
(1, '<NAME>', 'DPF0038', 185, 147, '2021-06-24', 'f5fdca3a4b4195deeccffb3d3a788659.png', 1),
(2, '<NAME>', 'DPF0325', 476, 1289, '2021-06-24', 'ae78229768760e3bb475ca507d924242.png', 1),
(3, '<NAME>', 'DPF0210', 361, 837, '2021-06-24', '5b1fe14926988c7208ac5dfafb43a34e.jpg', 1),
(4, '<NAME>', 'DPF0017', 164, 76, '2021-06-29', 'b3c36ef283e84b31ea6b982340f77153.jpg', 1),
(5, '<NAME>', 'DPF0308', 459, 1222, '2021-06-25', '409e3c8e471e729c1b28ab52f9c1214f.jpg', 1),
(6, '<NAME>', 'DPF0517', 517, 1394, '2021-06-27', '7a6d55770f894c500784e524152ba1c0.PNG', 1),
(7, '<NAME>', 'DPF0517', 517, 1394, '2021-06-27', '692dc9e8c32825011721a93e308555de.png', 1),
(8, '<NAME>', 'DPF0514', 514, 1411, '2021-06-29', 'aa98dc8e468fcb6d103c3fced1f402b5.png', 1),
(9, '<NAME>', 'DPF0526', 526, 1426, '2021-06-28', '76661cda3dd3ce3174e4f1fd9023cd02.png', 0),
(10, '<NAME>', 'DPF0527', 527, 1430, '2021-07-02', '8beb1e82c69668bb69b509efddd79af5.jpg', 0);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `family_business`
--
ALTER TABLE `family_business`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `family_business_contact`
--
ALTER TABLE `family_business_contact`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `family_contact`
--
ALTER TABLE `family_contact`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `family_marriage`
--
ALTER TABLE `family_marriage`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `family_master`
--
ALTER TABLE `family_master`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `family_member`
--
ALTER TABLE `family_member`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `gallery_image`
--
ALTER TABLE `gallery_image`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `keys`
--
ALTER TABLE `keys`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `map_b2b_image`
--
ALTER TABLE `map_b2b_image`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `map_blog_img`
--
ALTER TABLE `map_blog_img`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `map_helpus_image`
--
ALTER TABLE `map_helpus_image`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `maran_nondh`
--
ALTER TABLE `maran_nondh`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_admin`
--
ALTER TABLE `master_admin`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_admin_log`
--
ALTER TABLE `master_admin_log`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_area`
--
ALTER TABLE `master_area`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_b2b`
--
ALTER TABLE `master_b2b`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_blog`
--
ALTER TABLE `master_blog`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_bloodgroup`
--
ALTER TABLE `master_bloodgroup`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_bulk_email`
--
ALTER TABLE `master_bulk_email`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_bulk_sms`
--
ALTER TABLE `master_bulk_sms`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_business_category`
--
ALTER TABLE `master_business_category`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_dharmik_knowledge`
--
ALTER TABLE `master_dharmik_knowledge`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_donation`
--
ALTER TABLE `master_donation`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_donation_category`
--
ALTER TABLE `master_donation_category`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_donors`
--
ALTER TABLE `master_donors`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_education`
--
ALTER TABLE `master_education`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_event`
--
ALTER TABLE `master_event`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_gallery`
--
ALTER TABLE `master_gallery`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_help_us`
--
ALTER TABLE `master_help_us`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_job`
--
ALTER TABLE `master_job`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_log`
--
ALTER TABLE `master_log`
ADD PRIMARY KEY (`log_id`);
--
-- Indexes for table `master_marital_status`
--
ALTER TABLE `master_marital_status`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_matrimonial`
--
ALTER TABLE `master_matrimonial`
ADD PRIMARY KEY (`matrimonial_id`);
--
-- Indexes for table `master_occupation`
--
ALTER TABLE `master_occupation`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_relation`
--
ALTER TABLE `master_relation`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_sports`
--
ALTER TABLE `master_sports`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_subscription`
--
ALTER TABLE `master_subscription`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_surname`
--
ALTER TABLE `master_surname`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_videogallery`
--
ALTER TABLE `master_videogallery`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `master_village`
--
ALTER TABLE `master_village`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `matrimonial_requests`
--
ALTER TABLE `matrimonial_requests`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `saadri`
--
ALTER TABLE `saadri`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `family_business`
--
ALTER TABLE `family_business`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=284;
--
-- AUTO_INCREMENT for table `family_business_contact`
--
ALTER TABLE `family_business_contact`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=290;
--
-- AUTO_INCREMENT for table `family_contact`
--
ALTER TABLE `family_contact`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=345;
--
-- AUTO_INCREMENT for table `family_marriage`
--
ALTER TABLE `family_marriage`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=752;
--
-- AUTO_INCREMENT for table `family_master`
--
ALTER TABLE `family_master`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=541;
--
-- AUTO_INCREMENT for table `family_member`
--
ALTER TABLE `family_member`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1457;
--
-- AUTO_INCREMENT for table `gallery_image`
--
ALTER TABLE `gallery_image`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=171;
--
-- AUTO_INCREMENT for table `keys`
--
ALTER TABLE `keys`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `map_b2b_image`
--
ALTER TABLE `map_b2b_image`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144;
--
-- AUTO_INCREMENT for table `map_blog_img`
--
ALTER TABLE `map_blog_img`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=60;
--
-- AUTO_INCREMENT for table `map_helpus_image`
--
ALTER TABLE `map_helpus_image`
MODIFY `id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=53;
--
-- AUTO_INCREMENT for table `maran_nondh`
--
ALTER TABLE `maran_nondh`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `master_admin`
--
ALTER TABLE `master_admin`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `master_admin_log`
--
ALTER TABLE `master_admin_log`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=55;
--
-- AUTO_INCREMENT for table `master_area`
--
ALTER TABLE `master_area`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=66;
--
-- AUTO_INCREMENT for table `master_b2b`
--
ALTER TABLE `master_b2b`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=71;
--
-- AUTO_INCREMENT for table `master_blog`
--
ALTER TABLE `master_blog`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=44;
--
-- AUTO_INCREMENT for table `master_bloodgroup`
--
ALTER TABLE `master_bloodgroup`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT for table `master_bulk_email`
--
ALTER TABLE `master_bulk_email`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `master_bulk_sms`
--
ALTER TABLE `master_bulk_sms`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `master_business_category`
--
ALTER TABLE `master_business_category`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=46;
--
-- AUTO_INCREMENT for table `master_dharmik_knowledge`
--
ALTER TABLE `master_dharmik_knowledge`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `master_donation`
--
ALTER TABLE `master_donation`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=75;
--
-- AUTO_INCREMENT for table `master_donation_category`
--
ALTER TABLE `master_donation_category`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
--
-- AUTO_INCREMENT for table `master_donors`
--
ALTER TABLE `master_donors`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23;
--
-- AUTO_INCREMENT for table `master_education`
--
ALTER TABLE `master_education`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=281;
--
-- AUTO_INCREMENT for table `master_event`
--
ALTER TABLE `master_event`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=27;
--
-- AUTO_INCREMENT for table `master_gallery`
--
ALTER TABLE `master_gallery`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=37;
--
-- AUTO_INCREMENT for table `master_help_us`
--
ALTER TABLE `master_help_us`
MODIFY `id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
--
-- AUTO_INCREMENT for table `master_job`
--
ALTER TABLE `master_job`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;
--
-- AUTO_INCREMENT for table `master_log`
--
ALTER TABLE `master_log`
MODIFY `log_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=941;
--
-- AUTO_INCREMENT for table `master_marital_status`
--
ALTER TABLE `master_marital_status`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `master_matrimonial`
--
ALTER TABLE `master_matrimonial`
MODIFY `matrimonial_id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
--
-- AUTO_INCREMENT for table `master_occupation`
--
ALTER TABLE `master_occupation`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;
--
-- AUTO_INCREMENT for table `master_relation`
--
ALTER TABLE `master_relation`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=43;
--
-- AUTO_INCREMENT for table `master_sports`
--
ALTER TABLE `master_sports`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
--
-- AUTO_INCREMENT for table `master_subscription`
--
ALTER TABLE `master_subscription`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `master_surname`
--
ALTER TABLE `master_surname`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=271;
--
-- AUTO_INCREMENT for table `master_videogallery`
--
ALTER TABLE `master_videogallery`
MODIFY `id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `master_village`
--
ALTER TABLE `master_village`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=133;
--
-- AUTO_INCREMENT for table `matrimonial_requests`
--
ALTER TABLE `matrimonial_requests`
MODIFY `id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23;
--
-- AUTO_INCREMENT for table `saadri`
--
ALTER TABLE `saadri`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;
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>cozum_masasivt.sql
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for problems
-- ----------------------------
DROP TABLE IF EXISTS `problems`;
CREATE TABLE `problems` (
`ProbID` int(11) NOT NULL AUTO_INCREMENT,
`problem` text CHARACTER SET utf8mb4 COLLATE utf8mb4_turkish_ci,
`date` datetime(0) DEFAULT NULL,
PRIMARY KEY (`ProbID`) USING BTREE
) ENGINE = MyISAM AUTO_INCREMENT = 71 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_turkish_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of problems
-- ----------------------------
INSERT INTO `problems` VALUES (10, 'Ornek problem.', '2017-08-25 15:50:07');
-- ----------------------------
-- Table structure for remarks
-- ----------------------------
DROP TABLE IF EXISTS `remarks`;
CREATE TABLE `remarks` (
`RemarkID` int(11) NOT NULL AUTO_INCREMENT,
`remark` text CHARACTER SET utf8mb4 COLLATE utf8mb4_turkish_ci,
`ProbID` int(11) NOT NULL,
PRIMARY KEY (`RemarkID`) USING BTREE
) ENGINE = MyISAM AUTO_INCREMENT = 6 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_turkish_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of remarks
-- ----------------------------
INSERT INTO `remarks` VALUES (5, 'Ornek not.', 10);
-- ----------------------------
-- Table structure for solutions
-- ----------------------------
DROP TABLE IF EXISTS `solutions`;
CREATE TABLE `solutions` (
`SolutionID` int(11) NOT NULL AUTO_INCREMENT,
`solution` text CHARACTER SET utf8mb4 COLLATE utf8mb4_turkish_ci,
`ProbID` int(11) NOT NULL,
PRIMARY KEY (`SolutionID`) USING BTREE
) ENGINE = MyISAM AUTO_INCREMENT = 38 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_turkish_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of solutions
-- ----------------------------
INSERT INTO `solutions` VALUES (30, 'Ornek cozum.', 10);
-- ----------------------------
-- Table structure for tagproblems
-- ----------------------------
DROP TABLE IF EXISTS `tagproblems`;
CREATE TABLE `tagproblems` (
`TagProbID` int(11) NOT NULL AUTO_INCREMENT,
`TagID` int(255) NOT NULL,
`ProbID` int(255) NOT NULL,
PRIMARY KEY (`TagProbID`) USING BTREE
) ENGINE = MyISAM AUTO_INCREMENT = 23 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_turkish_ci ROW_FORMAT = Fixed;
-- ----------------------------
-- Records of tagproblems
-- ----------------------------
INSERT INTO `tagproblems` VALUES (22, 12, 10);
-- ----------------------------
-- Table structure for tags
-- ----------------------------
DROP TABLE IF EXISTS `tags`;
CREATE TABLE `tags` (
`TagID` int(11) NOT NULL AUTO_INCREMENT,
`tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_turkish_ci DEFAULT NULL,
PRIMARY KEY (`TagID`) USING BTREE
) ENGINE = MyISAM AUTO_INCREMENT = 31 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_turkish_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of tags
-- ----------------------------
INSERT INTO `tags` VALUES (12, 'Ornek etiket.');
SET FOREIGN_KEY_CHECKS = 1;
|
<filename>scripts/user_root.sql
-- CREACIÓN DE UN USUARIO
CREATE USER digitalpaco_admin PASSWORD '<PASSWORD>';
|
/*
Navicat MySQL Data Transfer
Source Server : AWS
Source Server Version : 50556
Source Host : 192.168.127.12:3306
Source Database : calendariobtl
Target Server Type : MYSQL
Target Server Version : 50556
File Encoding : 65001
Date: 2017-11-23 11:55:12
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `events`
-- ----------------------------
DROP TABLE IF EXISTS `events`;
CREATE TABLE `events` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_moneda` int(11) unsigned DEFAULT NULL,
`title` varchar(255) NOT NULL,
`color` varchar(7) DEFAULT NULL,
`start` datetime NOT NULL,
`end` datetime DEFAULT NULL,
`place` varchar(80) DEFAULT NULL,
`note` text,
`id_marca` int(11) DEFAULT NULL,
`file_pdf` varchar(80) DEFAULT NULL,
`file_xlsx` varchar(80) DEFAULT NULL,
`monto` decimal(20,3) DEFAULT NULL,
`img` varchar(160) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of events
-- ----------------------------
INSERT INTO `events` VALUES ('4', null, 'Casa Cor MINI Owners Casa Cor', '#000', '2017-10-04 00:00:00', '2017-10-05 00:00:00', '', '', '4', null, null, null, null);
INSERT INTO `events` VALUES ('5', null, 'Concierto <NAME>', '#adadad', '2017-09-30 00:00:00', '2017-10-01 00:00:00', 'Conmebol', 'Activación', '5', null, null, null, null);
INSERT INTO `events` VALUES ('6', null, 'Opening CasaCor', '#A82B30', '2017-10-03 00:00:00', '2017-10-04 00:00:00', 'Casa Cor', '17 hs.', '12', null, null, null, null);
INSERT INTO `events` VALUES ('7', null, 'Conferencia de Prensa CasaCor', '#A82B30', '2017-09-27 00:00:00', '2017-09-28 00:00:00', 'Casa Cor', '10 am', '12', null, null, null, null);
INSERT INTO `events` VALUES ('8', null, 'Day Trip', '#0071c5', '2017-09-30 00:00:00', '2017-10-01 00:00:00', 'Arroyos y Esteros', '', '3', null, null, null, null);
INSERT INTO `events` VALUES ('9', null, 'Curso de Manejo Off Road', '#0071c5', '2017-09-23 00:00:00', '2017-09-24 00:00:00', 'Rakiura', '', '3', null, null, null, null);
INSERT INTO `events` VALUES ('10', null, 'Curso de Mecánica Básica - G650GS', '#0071c5', '2017-09-16 00:00:00', '2017-09-17 00:00:00', 'Showroom', '', '3', null, null, null, null);
INSERT INTO `events` VALUES ('11', null, 'Concierto especial de Luis Álvarez.', '#f78587', '2017-10-27 00:00:00', '2017-10-28 00:00:00', '', '', '10', null, null, null, null);
INSERT INTO `events` VALUES ('16', null, 'Resistance Road to Ultra', '#adadad', '2017-10-06 00:00:00', '2017-10-07 00:00:00', 'Puerto de Asunción', 'RENEGADE', '5', null, null, null, null);
INSERT INTO `events` VALUES ('17', null, 'Beatbrations <NAME>', '#000', '2017-10-14 00:00:00', '2017-10-15 00:00:00', 'Puerto de Asunción', '', '4', null, null, null, null);
INSERT INTO `events` VALUES ('18', null, 'Casa Cor BMW Riders', '#0071c5', '2017-10-11 00:00:00', '2017-10-12 00:00:00', 'Casa Cor', '', '3', null, null, null, null);
INSERT INTO `events` VALUES ('19', null, 'Casa Cor MINI Arquitectos', '#000', '2017-11-02 00:00:00', '2017-11-03 00:00:00', 'Casa Cor', '', '4', null, null, null, null);
INSERT INTO `events` VALUES ('20', null, 'Soy Latino', '#FF0000', '2017-10-07 00:00:00', '2017-10-08 00:00:00', 'Club Olimpia', '', '1', null, null, null, null);
INSERT INTO `events` VALUES ('21', null, 'Fiesta Nacional de Corea', '#FF0000', '2017-10-19 00:00:00', '2017-10-20 00:00:00', 'Asociación de Jubilados bancarios', '', '1', null, null, null, null);
INSERT INTO `events` VALUES ('22', null, 'Feria de los lazos ARP', '#A82B30', '2017-10-23 00:00:00', '2017-10-24 00:00:00', 'Expo MRA', 'Jeep, Mazda, Chevrolet, Nissan', '12', null, null, null, null);
INSERT INTO `events` VALUES ('28', null, 'Il Divo', '#adadad', '2017-10-24 00:00:00', '2017-10-25 00:00:00', 'Conmebol', 'Renegade y Grand Cherokee', '5', '28_', '28_', null, null);
INSERT INTO `events` VALUES ('29', null, 'Feria Coopeduc VCA', '#FF0000', '2017-10-27 00:00:00', '2017-10-28 00:00:00', 'Parque del Guaira Villarrica', 'Kia - Jeep - Mazda', '1', '29_', '29_', null, null);
INSERT INTO `events` VALUES ('30', null, 'Alianza Caja Bancaria', '#A82B30', '2017-11-03 00:00:00', '2017-11-04 00:00:00', 'Jubilados Bancarios', 'Jeep - Kia - Mazda - Chevrolet - Nissan', '12', '30_', '30_', null, null);
INSERT INTO `events` VALUES ('32', null, 'Road trip Club Renegade', '#adadad', '2017-10-28 00:00:00', '2017-10-29 00:00:00', 'Mbatovi', '', '5', '32_', '32_', null, null);
INSERT INTO `events` VALUES ('33', null, 'Feria Garden', '#A82B30', '2017-11-10 00:00:00', '2017-11-20 00:00:00', 'Shopping del Sol', '1o al 19 de Noviembre', '12', '33_', '33_', null, null);
INSERT INTO `events` VALUES ('37', null, 'Conferencia Vendele a la mente y no a la gente', '#adadad', '2017-11-07 00:00:00', '2017-11-08 00:00:00', 'BCP', '', '5', null, null, null, null);
INSERT INTO `events` VALUES ('39', null, 'Noche Blanca', '#000', '2017-11-09 00:00:00', '2017-11-10 00:00:00', 'Dazzler', '', '4', null, null, null, null);
INSERT INTO `events` VALUES ('40', null, 'Postventa: Skill Cup Asesores y Técnicos KIA', '#FF0000', '2017-11-04 00:00:00', '2017-11-05 00:00:00', 'Taller De la Victoria', '', '1', null, null, null, null);
INSERT INTO `events` VALUES ('41', null, 'Postventa: Skill Cup Asesores y Técnicos KIA', '#FF0000', '2017-11-18 00:00:00', '2017-11-19 00:00:00', 'Taller De la Victoria', '', '1', null, null, null, null);
INSERT INTO `events` VALUES ('42', null, 'Day Trip - Quinta Coratei Misiones', '#0071c5', '2017-11-18 00:00:00', '2017-11-19 00:00:00', '', '', '3', null, null, null, null);
INSERT INTO `events` VALUES ('43', null, 'Day Trip - Quinta Coratei Misiones', '#0071c5', '2017-11-19 00:00:00', '2017-11-20 00:00:00', '', '', '3', null, null, null, null);
INSERT INTO `events` VALUES ('44', null, 'Curso de Manejo Off Road - Rakiura', '#0071c5', '2017-11-25 00:00:00', '2017-11-26 00:00:00', '', '', '3', null, null, null, null);
INSERT INTO `events` VALUES ('45', null, 'Lunch Motorrad - Rakiura', '#0071c5', '2017-11-26 00:00:00', '2017-11-27 00:00:00', '', '', '3', null, null, null, null);
INSERT INTO `events` VALUES ('46', null, 'Convencion de Jueces', '#adadad', '2017-11-18 00:00:00', '2017-11-19 00:00:00', 'Yacht y Golf Club', 'Montaje viernes de mañana', '5', null, null, null, null);
INSERT INTO `events` VALUES ('47', null, 'Agrodinamica', '#FF0000', '2017-11-28 00:00:00', '2017-11-29 00:00:00', 'Obligado', 'Todas las marcas', '1', null, null, null, null);
INSERT INTO `events` VALUES ('48', '2', 'Deco Walk', '#000', '2017-11-23 00:00:00', '2017-11-24 00:00:00', 'Tte Vera y Senador Long', '', '4', null, null, '1000.000', null);
-- ----------------------------
-- Table structure for `marcas`
-- ----------------------------
DROP TABLE IF EXISTS `marcas`;
CREATE TABLE `marcas` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`descripcion` varchar(30) DEFAULT NULL,
`color` varchar(30) DEFAULT NULL,
`estado` int(1) DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of marcas
-- ----------------------------
INSERT INTO `marcas` VALUES ('1', 'Kia', '#FF0000', '1');
INSERT INTO `marcas` VALUES ('2', 'Chevrolet', '#CCA74E', '1');
INSERT INTO `marcas` VALUES ('3', 'BMW Motorrad', '#0071c5', '1');
INSERT INTO `marcas` VALUES ('4', 'MINI', '#000', '1');
INSERT INTO `marcas` VALUES ('5', 'Jeep', '#adadad', '1');
INSERT INTO `marcas` VALUES ('6', 'Dodge', '#701919', '1');
INSERT INTO `marcas` VALUES ('7', 'RAM', '#FFD700', '1');
INSERT INTO `marcas` VALUES ('8', 'Chrysler', '#13b0c1', '1');
INSERT INTO `marcas` VALUES ('9', 'Mazda', '#5e13c1', '1');
INSERT INTO `marcas` VALUES ('10', 'Nissan', '#f78587', '1');
INSERT INTO `marcas` VALUES ('11', 'Usados', '#FF8C00', '1');
INSERT INTO `marcas` VALUES ('12', 'Institucional', '#A82B30', '1');
-- ----------------------------
-- Table structure for `moneda`
-- ----------------------------
DROP TABLE IF EXISTS `moneda`;
CREATE TABLE `moneda` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`descripcion` varchar(60) DEFAULT NULL,
`simbolo` varchar(10) DEFAULT NULL,
`estado` int(1) DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of moneda
-- ----------------------------
INSERT INTO `moneda` VALUES ('1', 'Guaraní', 'Gs.', '1');
INSERT INTO `moneda` VALUES ('2', 'Dolar', '$', '1');
-- ----------------------------
-- Table structure for `usuarios`
-- ----------------------------
DROP TABLE IF EXISTS `usuarios`;
CREATE TABLE `usuarios` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nombre` varchar(30) DEFAULT NULL,
`email` varchar(80) DEFAULT NULL,
`contrasena` varchar(120) DEFAULT NULL,
`estado` int(1) DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of usuarios
-- ----------------------------
INSERT INTO `usuarios` VALUES ('1', '<NAME>', '<EMAIL>', '4530ad981d5c02d9cb0456c360fae460803922f556c56022e1dc0187c16ced50', '1');
INSERT INTO `usuarios` VALUES ('2', '<NAME>', '<EMAIL>', '4530ad981d5c02d9cb0456c360fae460803922f556c56022e1dc0187c16ced50', '1');
INSERT INTO `usuarios` VALUES ('3', '<NAME>', '<EMAIL>', '4530ad981d5c02d9cb0456c360fae460803922f556c56022e1dc0187c16ced50', '1');
INSERT INTO `usuarios` VALUES ('4', '<NAME>', '<EMAIL>', '4530ad981d5c02d9cb0456c360fae460803922f556c56022e1dc0187c16ced50', '1');
INSERT INTO `usuarios` VALUES ('5', '<NAME>', '<EMAIL>', '4530ad981d5c02d9cb0456c360fae460803922f556c56022e1dc0187c16ced50', '1');
INSERT INTO `usuarios` VALUES ('6', '<NAME>', '<EMAIL>', '4530ad981d5c02d9cb0456c360fae460803922f556c56022e1dc0187c16ced50', '1');
INSERT INTO `usuarios` VALUES ('7', '<NAME>', '<EMAIL>', '4530ad981d5c02d9cb0456c360fae460803922f556c56022e1dc0187c16ced50', '1');
INSERT INTO `usuarios` VALUES ('8', '<NAME>', '<EMAIL>', '4530ad981d5c02d9cb0456c360fae460803922f556c56022e1dc0187c16ced50', '1');
INSERT INTO `usuarios` VALUES ('9', '<NAME>', '<EMAIL>', '4530ad981d5c02d9cb0456c360fae460803922f556c56022e1dc0187c16ced50', '1');
INSERT INTO `usuarios` VALUES ('10', '<NAME>', '<EMAIL>', '4530ad981d5c02d9cb0456c360fae460803922f556c56022e1dc0187c16ced50', '1');
INSERT INTO `usuarios` VALUES ('11', '<NAME>', '<EMAIL>', '4530ad981d5c02d9cb0456c360fae460803922f556c56022e1dc0187c16ced50', '1');
INSERT INTO `usuarios` VALUES ('12', '<NAME>', '<EMAIL>', '4530ad981d5c02d9cb0456c360fae460803922f556c56022e1dc0187c16ced50', '1');
INSERT INTO `usuarios` VALUES ('13', '<NAME>', '<EMAIL>', '4530ad981d5c02d9cb0456c360fae460803922f556c56022e1dc0187c16ced50', '1');
INSERT INTO `usuarios` VALUES ('14', '<NAME>', '<EMAIL>', '4530ad981d5c02d9cb0456c360fae460803922f556c56022e1dc0187c16ced50', '1');
INSERT INTO `usuarios` VALUES ('15', '<NAME>', '<EMAIL>', '4530ad981d5c02d9cb0456c360fae460803922f556c56022e1dc0187c16ced50', '1');
INSERT INTO `usuarios` VALUES ('16', '<NAME>', '<EMAIL>', '4530ad981d5c02d9cb0456c360fae460803922f556c56022e1dc0187c16ced50', '1');
|
create definer = root@`%` procedure update_cat(IN new_cat int, IN current_cat int)
begin
delete from categorytree
where child_id in (select del.child_id from (select kid_all.child_id, kid_all.parent_id, kid_all.depth from (select parent_id as up from categorytree where child_id = current_cat and depth > 0) under_parent
join (select kids.child_id, kid_con.parent_id, kid_con.depth from (select child_id from categorytree where parent_id = current_cat and depth > 0) as kids
join categorytree as kid_con on kids.child_id = kid_con.child_id ) as kid_all on under_parent.up = kid_all.parent_id
union all
select child_id, parent_id, depth from categorytree where child_id = current_cat and depth > 0 ) as del)
and parent_id in (select del.parent_id from (select kid_all.child_id, kid_all.parent_id, kid_all.depth from (select parent_id as up from categorytree where child_id = current_cat and depth > 0) under_parent
join (select kids.child_id, kid_con.parent_id, kid_con.depth from (select child_id from categorytree where parent_id = current_cat and depth > 0) as kids
join categorytree as kid_con on kids.child_id = kid_con.child_id ) as kid_all on under_parent.up = kid_all.parent_id
union all
select child_id, parent_id, depth from categorytree where child_id = current_cat and depth > 0 ) as del);
INSERT INTO categorytree(parent_id, child_id, depth)
select x.parent_id, y.child_id, x.depth+y.depth+1 from (select * from categorytree where child_id = new_cat) x
join (select * from categorytree where parent_id = current_cat) y;
end;
|
<filename>benchmark/HashTags/queries-vectorwise-disabled/27.sql
--SELECT SUM(CAST("HashTags_1"."Calculation_8730311124516700" AS BIGINT)) AS "sum:Calculation_8730311124516700:ok", SUM(CAST("HashTags_1"."Calculation_8800311124604793" AS BIGINT)) AS "sum:Calculation_8800311124604793:ok", SUM(CAST("HashTags_1"."Contains: AGT (copy 2)" AS BIGINT)) AS "sum:Contains: AGT (copy 2):ok", SUM(CAST("HashTags_1"."Contains: AGT (copy 3)" AS BIGINT)) AS "sum:Contains: AGT (copy 3):ok", SUM(CAST("HashTags_1"."Contains: AGT (copy)" AS BIGINT)) AS "sum:Contains: AGT (copy):ok", SUM(CAST("HashTags_1"."Contains: BiggestLoser (copy)" AS BIGINT)) AS "sum:Contains: BiggestLoser (copy):ok", SUM(CAST("HashTags_1"."Contains: ChicagoPD (copy 2)" AS BIGINT)) AS "sum:Contains: ChicagoPD (copy 2):ok", SUM(CAST("HashTags_1"."Contains: ChicagoPD (copy 3)" AS BIGINT)) AS "sum:Contains: ChicagoPD (copy 3):ok", SUM(CAST("HashTags_1"."Contains: ChicagoPD (copy 4)" AS BIGINT)) AS "sum:Contains: ChicagoPD (copy 4):ok", SUM(CAST("HashTags_1"."Contains: ChicagoPD (copy)" AS BIGINT)) AS "sum:Contains: ChicagoPD (copy):ok", SUM(CAST("HashTags_1"."Contains: Days (copy)" AS BIGINT)) AS "sum:Contains: Days (copy):ok", SUM(CAST("HashTags_1"."Contains: GetOutAlive (copy)" AS BIGINT)) AS "sum:Contains: GetOutAlive (copy):ok", SUM(CAST("HashTags_1"."Contains: Olympics (copy)" AS BIGINT)) AS "sum:Contains: Olympics (copy):ok", SUM(CAST("HashTags_1"."Contains: Parenthood (copy)" AS BIGINT)) AS "sum:Contains: Parenthood (copy):ok", SUM(CAST("HashTags_1"."Contains: SNL (copy)" AS BIGINT)) AS "sum:Contains: SNL (copy):ok", SUM(CAST("HashTags_1"."Contains: TheVoice (copy)" AS BIGINT)) AS "sum:Contains: TheVoice (copy):ok", SUM(CAST("HashTags_1"."Contains: TheWinnerIs (copy)" AS BIGINT)) AS "sum:Contains: TheWinnerIs (copy):ok", SUM(CAST("HashTags_1"."Contains: aboutaboy (copy 2)" AS BIGINT)) AS "sum:Contains: aboutaboy (copy 2):ok", SUM(CAST("HashTags_1"."Contains: aboutaboy (copy)" AS BIGINT)) AS "sum:Contains: aboutaboy (copy):ok", SUM(CAST("HashTags_1"."Contains: believe (copy)" AS BIGINT)) AS "sum:Contains: believe (copy):ok", SUM(CAST("HashTags_1"."Contains: crisis (copy)" AS BIGINT)) AS "sum:Contains: crisis (copy):ok", SUM(CAST("HashTags_1"."Contains: crossinglines (copy 2)" AS BIGINT)) AS "sum:Contains: crossinglines (copy 2):ok", SUM(CAST("HashTags_1"."Contains: crossinglines (copy 3)" AS BIGINT)) AS "sum:Contains: crossinglines (copy 3):ok", SUM(CAST("HashTags_1"."Contains: crossinglines (copy 4)" AS BIGINT)) AS "sum:Contains: crossinglines (copy 4):ok", SUM(CAST("HashTags_1"."Contains: crossinglines (copy)" AS BIGINT)) AS "sum:Contains: crossinglines (copy):ok", SUM(CAST("HashTags_1"."Contains: dracula (copy 2)" AS BIGINT)) AS "sum:Contains: dracula (copy 2):ok", SUM(CAST("HashTags_1"."Contains: dracula (copy 3)" AS BIGINT)) AS "sum:Contains: dracula (copy 3):ok", SUM(CAST("HashTags_1"."Contains: dracula (copy)" AS BIGINT)) AS "sum:Contains: dracula (copy):ok", SUM(CAST("HashTags_1"."Contains: foodfighters (copy 2)" AS BIGINT)) AS "sum:Contains: foodfighters (copy 2):ok", SUM(CAST("HashTags_1"."Contains: foodfighters (copy)" AS BIGINT)) AS "sum:Contains: foodfighters (copy):ok", SUM(CAST("HashTags_1"."Contains: growingupfisher (copy 2)" AS BIGINT)) AS "sum:Contains: growingupfisher (copy 2):ok", SUM(CAST("HashTags_1"."Contains: growingupfisher (copy)" AS BIGINT)) AS "sum:Contains: growingupfisher (copy):ok", SUM(CAST("HashTags_1"."Contains: ironside (copy 2)" AS BIGINT)) AS "sum:Contains: ironside (copy 2):ok", SUM(CAST("HashTags_1"."Contains: ironside (copy)" AS BIGINT)) AS "sum:Contains: ironside (copy):ok", SUM(CAST("HashTags_1"."Contains: msq (copy 2)" AS BIGINT)) AS "sum:Contains: msq (copy 2):ok", SUM(CAST("HashTags_1"."Contains: msq (copy 3)" AS BIGINT)) AS "sum:Contains: msq (copy 3):ok", SUM(CAST("HashTags_1"."Contains: msq (copy)" AS BIGINT)) AS "sum:Contains: msq (copy):ok", SUM(CAST("HashTags_1"."Contains: revolution (copy)" AS BIGINT)) AS "sum:Contains: revolution (copy):ok", SUM(CAST("HashTags_1"."Contains: sstw (copy 2)" AS BIGINT)) AS "sum:Contains: sstw (copy 2):ok", SUM(CAST("HashTags_1"."Contains: sstw (copy 3)" AS BIGINT)) AS "sum:Contains: sstw (copy 3):ok", SUM(CAST("HashTags_1"."Contains: sstw (copy)" AS BIGINT)) AS "sum:Contains: sstw (copy):ok", SUM(CAST("HashTags_1"."Contains: theblacklist (copy)" AS BIGINT)) AS "sum:Contains: theblacklist (copy):ok", SUM(CAST("HashTags_1"."Contains: wttf (copy 2)" AS BIGINT)) AS "sum:Contains: wttf (copy 2):ok", SUM(CAST("HashTags_1"."Contains: wttf (copy 3)" AS BIGINT)) AS "sum:Contains: wttf (copy 3):ok", SUM(CAST("HashTags_1"."Contains: wttf (copy)" AS BIGINT)) AS "sum:Contains: wttf (copy):ok" FROM "HashTags_1" HAVING (COUNT(1) > 0);
|
SELECT * FROM app_user WHERE id = $1;
|
CREATE OR REPLACE VIEW view_agents_workers AS
SELECT W.id, W.created, A.active AND W.active AND J.active AS active, W.lastping, W.agentid, A.name as agentname, A.netname,
W.jobid, J.name as jobname, W.version,
(SELECT concat_with_semicolon_agg(A.code)
FROM agents_workers_access WA
JOIN jobs_access A ON A.id = WA.accessID
WHERE WA.workerid = W.id) as accesscodes
FROM agents_workers W
JOIN agents A ON A.id = W.agentid
JOIN jobs J ON J.id = W.jobid
ORDER BY id;
CREATE OR REPLACE VIEW view_tasks AS
SELECT
T.id as taskid,
T.jobid, J.name as jobname, J.code as jobcode,
JA.code AS accesscode,
T.processed, T.processing, T.processed_with_errors,
T.agentid, A.name as agentname,
T.workerid, T.accessid,
T.created,T.starttime,T.stoptime,
CASE WHEN T.processing THEN now() - T.starttime ELSE T.stoptime - T.starttime END as duration,
CASE WHEN T.processed THEN 'Processed' WHEN T.processing THEN 'Processing' ELSE 'Pending' END as status,
T.taskkey,T.params
FROM tasks T
JOIN jobs J ON J.id = T.jobid
LEFT JOIN agents A ON A.id = T.agentid
LEFT JOIN jobs_access JA ON JA.jobid = T.jobid AND JA.id = T.accessid;
CREATE OR REPLACE VIEW view_agents_log AS
SELECT
L.id, L.created,
L.agentid, A.name as agentname,
L.log_type, LT.name as log_type_dsc,
L.message,
L.jobid, J.name as jobname, L.taskid, T.taskkey, L.workerid
FROM agents_log L
LEFT JOIN agents A ON A.id = L.agentid
LEFT JOIN agents_log_types LT ON L.log_type = LT.id
LEFT JOIN jobs J ON L.jobid = J.id
LEFT JOIN tasks T on L.taskid = T.id;
CREATE OR REPLACE VIEW view_jobs_log AS
SELECT
L.id, L.created,
L.log_type, LT.name as log_type_dsc,
L.message,
L.jobid, J.name as jobname
FROM jobs_log L
LEFT JOIN jobs_log_types LT ON L.log_type = LT.id
LEFT JOIN jobs J ON L.jobid = J.id;
CREATE OR REPLACE VIEW view_jobs_cron AS
SELECT
C.id, C.created, C.active, C.description, C.daysofweek, C.dayofmonth, C.starttime,
C.jobid, J.name as jobname,
C.accessid, JA.code AS accesscode,
C.last_run, C.last_taskid,
C.taskkey,C.params
FROM jobs_cron C
JOIN jobs J ON J.id = C.jobid
LEFT JOIN jobs_access JA ON JA.jobid = C.jobid AND JA.id = C.accessid;
|
<reponame>TsvetanMilanov/TelerikAcademyHW
SELECT e.FirstName, e.LastName, ISNULL(CONVERT(nvarchar(50), e.ManagerID), '(no manager)') AS Manager
FROM Employees e |
<reponame>dvsa/poc-new-selenium
select veh.registration
from vehicle veh, mot_test_current mtc, mot_test_current_rfr_map rfr
where veh.registration is not null
and mtc.vehicle_id = veh.id
and mtc.prs_mot_test_id is null -- only shows tests that do not have a Pass after Rectification at Station
and mtc.id = rfr.mot_test_id
and rfr.rfr_type_id=1 -- Advisory reason for Reason for Rejection
and rfr.failure_dangerous=1 -- shows results for tests that fail for a dangerous reason
and mtc.status_id=6 -- MOT test passed
and mtc.completed_date < str_to_date('20/05/2018', '%d/%m/%Y') -- select vehicles which where tested before the EU Road Worthiness changes
limit 1 |
<reponame>baktistr/myassist_hackidea
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jun 24, 2020 at 05:48 PM
-- Server version: 10.4.11-MariaDB
-- PHP Version: 7.4.6
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: `hackidea`
--
-- --------------------------------------------------------
--
-- Table structure for table `kode_witel`
--
CREATE TABLE `kode_witel` (
`id_witel` int(11) NOT NULL,
`witel` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `kode_witel`
--
INSERT INTO `kode_witel` (`id_witel`, `witel`) VALUES
(1, 'Aceh'),
(4, 'Babel'),
(50, 'Balikpapan'),
(22, 'Bandung Barat'),
(12, 'Banten'),
(19, 'Bekasi'),
(2, 'Bengkulu'),
(20, 'Bogor'),
(23, 'Cirebon'),
(34, 'Denpasar'),
(53, 'Gorontalo'),
(14, 'Jakbar'),
(15, 'Jakpus'),
(16, 'Jaksel'),
(17, 'Jaktim'),
(18, 'Jakut'),
(3, 'Jambi'),
(36, 'Jember'),
(47, 'Kalbar'),
(48, 'Kalsel'),
(52, 'Kaltara'),
(49, 'Kalteng'),
(24, 'Karawang'),
(37, 'Kediri'),
(28, 'Kudus'),
(6, 'Lampung'),
(38, 'Madiun'),
(39, 'Madura'),
(29, 'Magelang'),
(57, 'Makassar'),
(40, 'Malang'),
(54, 'Maluku'),
(10, 'Medan'),
(45, 'NTB'),
(46, 'NTT'),
(55, 'Papua'),
(56, '<NAME>'),
(41, 'Pasuruan'),
(30, 'Pekalongan'),
(31, 'Purwokerto'),
(7, 'Ridar'),
(5, 'Rikep'),
(51, 'Samarinda'),
(32, 'Semarang'),
(42, 'Sidoarjo'),
(35, 'Singaraja'),
(33, 'Solo'),
(25, 'Sukabumi'),
(58, 'Sulselbar'),
(21, 'Bandung'),
(59, 'Sulteng'),
(60, 'Sultra'),
(61, 'Sulut & Malut'),
(8, 'Sumbar'),
(9, 'Sumsel'),
(11, 'Sumut'),
(43, '<NAME>'),
(44, '<NAME>'),
(13, 'Tangerang'),
(26, 'Tasikmalaya'),
(27, 'Yogyakarta');
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
<reponame>jerichosiahaya/rsa-web<gh_stars>1-10
INSERT INTO mobil(id, model, noMesin, noRangka, deliveryDate) VALUES
(1,'AGYA','-','MHKA4GA5JHJ009598','2018-01-24'),
(2,'CALYA ','-','MHKA6GJ6JHJ063260','2018-02-06'),
(3,'AVANZA','-','MHKM5FA4JHK036062','2018-01-29'),
(4,'AVANZA','-','MHKM5EA3JHK090520','2018-02-09'),
(5,'INNOVA','-','MHFJW8EM4H2342830','2018-02-13'),
(6,'AGYA ','-','MHKA4GA5JHJ010182','2017-08-11'),
(7,'AVANZA ','-','MHKM5FA4JHK031662','2017-09-11'),
(8,'INNOVA','-','MHFGW8EM7H1015693','2017-09-11'),
(9,'AGYA','-','MHKA4DA3JHJ114659','2017-10-11'),
(10,'AVANZA','-','MHKM5FA4JHK033856','2017-10-11'),
(11,'AVANZA','-','MHKM5FA4JHK031704','2017-10-11'),
(12,'RUSH','-','MHFE2CJ3JHK134922','2017-11-13'),
(13,'AVANZA','-','MHKM5FA4JHK030436','2017-11-14'),
(14,'HILUX','-','MR0EW8BB6H0205319','2017-11-14'),
(15,'AVANZA','-','MHKM5EA4JHK022593','2017-11-16'),
(16,'CALYA','-','MHKA6GK6JHJ019714','2017-11-18'),
(17,'AVANZA','-','MHKM5EA3JHK068269','2017-11-20'),
(18,'INNOVA','-','MHFJW8EM0H2341710','2017-11-22'),
(19,'RUSH','-','MHFE2CJ3JHK128717','2017-11-23'),
(20,'CALYA','-','MHKA6GJ6JHJ060171','2017-11-23'),
(21,'HILUX','-','MR0HB3CD5H0332090','2017-11-23'),
(22,'AVANZA','-','MHKM5FA4JHK034933','2017-11-24'),
(23,'AGYA','-','MHKA4GB5JHJ005308','2017-11-25'),
(24,'AVANZA','-','MHKM5EA3JHK075688','2017-11-25'),
(25,'AVANZA','-','MHKM5EA3JHK073118','2017-11-25'),
(26,'RUSH','-','MHFE2CJ3JHK135429','2017-11-28'),
(27,'AGYA','-','MHKA4GB5JHJ004682','2017-11-30'),
(28,'CALYA ','-','MHKA6GJ6JHJ059912','2017-12-01'),
(29,'INNOVA','-','MHFJW8EM7H2337783','2017-12-02'),
(30,'INNOVA','-','MHFJW8EMXH2325563','2017-12-03'),
(31,'AVANZA','-','MHKM5EA3JHK070487','2017-12-04'),
(32,'INNOVA','-','MHFJW8EM6H2339931','2017-08-12'),
(33,'HILUX','-','MR0KS8CD1H1104956','2017-09-12'),
(34,'YARIS ','-','MHFK29F33H2014553','2017-11-12'),
(35,'CALYA','-','MHKA6GJ6JHJ061517','2017-12-12'),
(36,'AVANZA','-','MHKM5EA3JHK073429','2017-12-12'),
(37,'HILUX','-','MR0KB8CD3H1116459','2017-12-15'),
(38,'AVANZA','-','MHKM5EA2JHK029421','2017-12-18'),
(39,'AVANZA','-','MHKM5EA3JHK088604','2017-12-19'),
(40,'AVANZA','-','MHKM5FB4JHK013767','2017-12-20'),
(41,'AVANZA','-','MHKM5FA4JHK034781','2017-12-21'),
(42,'AGYA','-','MHKA4GA5JHJ004712','2017-12-19'),
(43,'CALYA','-','MHKA6GJ6JHJ060886','2017-12-20'),
(44,'YARIS','-','MHFK29F39H2016968','2017-12-20'),
(45,'AGYA','-','MHKA4GA5JHJ010195','2017-12-21'),
(46,'AVANZA','-','MHKM5EA3JHK065819','2017-12-21'),
(47,'AVANZA','-','MHKM5EA3JHK067577','2017-12-21'),
(48,'AVANZA','-','MHKM5FA4JHK035473','2017-12-21'),
(49,'INNOVA','-','MHFJW8EM1H2339707','2017-12-21'),
(50,'RUSH','-','MHFE2CJ3JHK129814','2017-12-21'),
(51,'AVANZA ','-','MHKM5FA4JHK035167','2017-12-22'),
(52,'RUSH','-','MHFE2CK3JHK046507','2017-12-22'),
(53,'AVANZA ','-','MHKM5EA3JHK089354','2017-12-22'),
(54,'AVANZA','-','MHKM5FA4JHK034873','2017-12-23'),
(55,'AVANZA','-','MHKM5FA4JHK035393','2017-12-23'),
(56,'INNOVA','-','MHFJW8EM6H2342344','2017-12-23'),
(57,'AGYA','-','MHKA4GB5JHJ005581','2017-12-28'),
(58,'AGYA','-','MHKA4GA5JHJ002431','2017-12-28'),
(59,'AVANZA','-','MHKM5FA4JHK035522','2017-12-28'),
(60,'AVANZA ','-','MHKM5FA4JHK035954','2017-12-28'),
(61,'INNOVA','-','MHFJW8EMXH2337034','2017-12-28'),
(62,'AGYA','-','MHKA4GB5JHJ005263','2017-12-29'),
(63,'AVANZA','-','MHKM5EA3JHK072440','2017-12-29'),
(64,'AVANZA ','-','MHKM5FA3JHK004959','2017-12-29'),
(65,'AVANZA','-','MHKM5FA4JHK035442','2017-12-29'),
(66,'HILUX','-','MR0HB3CD5H0332106','2017-12-29'),
(67,'AVANZA','-','MHKM5EA3JHK068026','2017-12-30'),
(68,'AVANZA','-','MHKM5EA3JHK089539','2017-12-30'),
(69,'AVANZA','-','MHKM5EA3JHK068773','2017-12-30'),
(70,'AVANZA','-','MHKM5EA4JHK021396','2017-12-30'),
(71,'AVANZA','-','MHKM5FA3JHK004997','2017-12-30'),
(72,'CALYA','-','MHKA6GJ6JHJ061599','2017-12-30'),
(73,'CALYA','-','MHKA6GJ6JHJ060109','2017-12-30'),
(74,'HILUX','-','MR0HB3CD8H0332164','2017-12-30'),
(75,'FORTUNER','-','MHFHB3FS0H0035189','2017-12-20'),
(76,'RUSH','-','MHFE2CJ3JHK130441','21/12/17'),
(77,'AVANZA','-','MHKM5EA3JHK068419','2017-12-30'),
(78,'AVANZA 1.3 VELOZ M/T','-','MHKM5EA4JKK032572','2019-12-04'),
(79,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JKJ001879','2019-12-05'),
(80,'CALYA 1.2 G A/T','-','MHKA6GK6JKJ058216','2019-12-06'),
(81,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK059741','2019-12-07'),
(82,'CALYA 1.2 G M/T','-','MHKA6GJ6JKJ123005','2019-12-12'),
(83,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JKK039688','2019-12-12'),
(84,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JKK041291','2019-12-12'),
(85,'CALYA 1.2 G M/T','-','MHKA6GJ6JKJ131528','2019-12-13'),
(86,'AVANZA 1.3 G M/T','-','MHKM5EA3JKK156631','2019-12-16'),
(87,'AVANZA 1.5 VELOZ A/T','-','MHKM5FB4JKK024816','2019-12-16'),
(88,'INNOVA BENSIN G M/T','-','MHFJW8EM9K2374342','2019-12-16'),
(89,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JKK038815','2019-12-16'),
(90,'HILUX DOUBLE CABIN 2.4 DIESEL G M/T','-','MR0KB8CD9K1123018','2019-12-17'),
(91,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JKJ000646','2019-12-17'),
(92,'HILUX DOUBLE CABIN 2.4 DIESEL G M/T','-','MR0KB8CD4K1122293','2019-12-17'),
(93,'HILUX PICK UP 2.5 DIESEL M/T','-','MR0ES8BB8K0065258','2019-12-18'),
(94,'HILUX PICK UP 2.0 BENSIN STD M/T','-','MR0EW8BBXK0208358','2019-12-18'),
(95,'AVANZA 1.3 G M/T','-','MHKM5EA3JKK157755','2019-12-19'),
(96,'AVANZA 1.5 VELOZ A/T','-','MHKM5FA4JKK058685','2019-12-19'),
(97,'HILUX PICK UP 2.0 BENSIN STD M/T','-','MR0EW8BB7K0208396','2019-12-19'),
(98,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK059787','2019-12-20'),
(99,'AVANZA 1.3 G M/T','-','MHKM5EA3JKK152679','2019-12-21'),
(100,'AVANZA 1.3 G M/T','-','MHKM5EA3JKK156634','2019-12-21'),
(101,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK059737','2019-12-21'),
(102,'CALYA 1.2 G M/T','-','MHKA6GJ6JKJ122868','2019-12-21'),
(103,'YARIS S CVT TRD','-','MHFK23F33J2054327','2019-12-21'),
(104,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK060663','2019-12-23'),
(105,'CALYA 1.2 G A/T','-','MHKA6GK6JKJ058916','2019-12-23'),
(106,'AGYA 1.2 G M/T TRD','-','MHKA4GA5JKJ041127','2019-12-24'),
(107,'AVANZA 1.3 G M/T','-','MHKM5EA3JKK157129','2019-12-24'),
(108,'CALYA 1.2 G M/T','-','MHKA6GJ6JKJ130049','2019-12-24'),
(109,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK060953','2019-12-28'),
(110,'HILUX DOUBLE CABIN 2.4 DIESEL V A/T','-','MR0HB3CD1K0333731','2019-12-28'),
(111,'AGYA 1.2 G A/T TRD','-','MHKA4GB5JKJ030951','2019-12-30'),
(112,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JKJ005228','2019-12-30'),
(113,'AVANZA 1.3 G M/T','-','MHKM5EA3JKK159291','2019-12-31'),
(114,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK060005','2019-12-31'),
(115,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK060133','2019-12-31'),
(116,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK060609','2019-12-31'),
(117,'CALYA 1.2 G M/T','-','MHKA6GJ6JKJ133361','2019-12-31'),
(118,'HILUX DOUBLE CABIN 2.4 DIESEL G M/T','-','MR0KB8CD8K1209534','2019-12-31'),
(119,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK057652','2019-11-05'),
(120,'RUSH 1.5 TRD Sportivo A/T','-','MHKE8FB3JKK025242','2019-11-05'),
(121,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JKK030717','2019-11-07'),
(122,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK058433','2019-11-08'),
(123,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JKK040757','2019-11-14'),
(124,'RUSH 1.5TRD Sportivo A/T','-','MHKE8FB3JKK036978','2019-11-15'),
(125,'INNOVA BENSIN','-','MHFJW8EM5K2371762','2019-11-20'),
(126,'CALYA 1.2','-','MHKA6GJ6JKJ122119','2019-11-21'),
(127,'INNOVA BENSIN','-','MHFJW8EM4K2372496','2019-11-21'),
(128,'HILUX DOUBLE CABIN 2.4 DIESEL','-','MR0KB8CD1J1120239','2019-11-22'),
(129,'RUSH 1.5','-','MHKE8FB3JKJ002203','2019-11-22'),
(130,'CALYA 1.2','-','MHKA6GJ6JKJ125778','2019-11-23'),
(131,'AGYA 1.2','-','MHKA4GA5JKJ039782','2019-11-26'),
(132,'AVANZA 1.3','-','MHKM5EA3JKK136022','2019-11-27'),
(133,'AGYA 1.2','-','MHKA4GA5JJJ015334','2019-11-28'),
(134,'FORTUNER 4X4 DIESEL','-','MHFHB3FS8K0036372','2019-11-28'),
(135,'HILUX DOUBLE CABIN 2.4 DIESEL','-','MR0KB8CD1K1122283','2019-11-28'),
(136,'RUSH 1.5','-','MHKE8FB3JKK028895','2019-11-28'),
(137,'AVANZA 1.5','-','MHKM5FA4JKK059605','2019-11-29'),
(138,'HIACE COMMUTER','-','JTFSS22P1K0187803','2019-11-29'),
(139,'HILUX DOUBLE CABIN 2.4 DIESEL','-','MR0KB8CD8K1122314','2019-11-29'),
(140,'YARIS S','-','MHFK23F39K2073742','2019-11-29'),
(141,'AVANZA 1.3 G M/T','-','MHKM5EA3JKK155699','2019-11-30'),
(142,'CALYA 1.2 G M/T','-','MHKA6GJ6JKJ107268','2019-10-09'),
(143,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JKJ000166','2019-10-09'),
(144,'AVANZA 1.3 G M/T','-','MHKM5EA3JKK135178','2019-10-12'),
(145,'FORTUNER 4X2 DIESEL VRZ A/T TRD','-','MHFGB8GS4K0897717','2019-10-12'),
(146,'AGYA 1.2 G M/T TRD','-','MHKA4GA5JKJ037976','2019-10-22'),
(147,'INNOVA BENSIN G M/T','-','MHFJW8EM4K2369758','2019-10-22'),
(148,'INNOVA BENSIN G M/T','-','MHFJW8EM5K2365847','2019-10-25'),
(149,'INNOVA BENSIN G M/T','-','MHFJW8EM5K2367968','2019-10-25'),
(150,'INNOVA BENSIN G M/T','-','MHFJW8EM1K2372584','2019-10-25'),
(151,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK055557','2019-10-29'),
(152,'AVANZA 1.5 VELOZ A/T','-','MHKM5FB4JKK025953','2019-10-30'),
(153,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK055846','2019-10-30'),
(154,'INNOVA BENSIN G M/T','-','MHFJW8EM3K2372330','2019-10-30'),
(155,'YARIS S CVT TRD','-','MHFK23F3XJ2050551','2019-10-30'),
(156,'CALYA 1.2 G M/T','-','MHKA6GJ6JKJ105708','2019-10-31'),
(157,'VOXY A/T','-','JT7X2RB80K7015333','2019-09-02'),
(158,'HILUX PICK UP 2.0 BENSIN STD M/T','-','MR0EW8BB8K0207791','2019-09-05'),
(159,'AGYA 1.2 G M/T TRD','-','MHKA4GA5JKJ032855','2019-09-05'),
(160,'CALYA 1.2 G M/T','-','MHKA6GJ6JKJ122467','2019-09-06'),
(161,'AVANZA','-','MHKM5EA3JKK146851','2019-09-10'),
(162,'AVANZA','-','MHKM5FA4JKK055824','2019-09-11'),
(163,'INNOVA','-','MHFJW8EM7K2371004','2019-09-11'),
(164,'RUSH','-','MHKE8FA3JKK033038','2019-09-13'),
(165,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK055668','2019-09-18'),
(166,'AGYA 1.2 G M/T TRD','-','MHKA4GA5JKJ032210','2019-09-19'),
(167,'AVANZA 1.3 G M/T','-','MHKM5EA3JKK138932','2019-09-19'),
(168,'AVANZA 1.3 G M/T','-','MHKM5EA3JKK133550','2019-09-20'),
(169,'HILUX DOUBLE CABIN 2.4 DIESEL G M/T','-','MR0KB8CD8J1120030','2019-09-21'),
(170,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JKK038157','2019-09-25'),
(171,'AGYA 1.2 G M/T TRD','-','MHKA4GA5JKJ031178','2019-09-26'),
(172,'INNOVA DIESEL VENTURER A/T','-','MHFAB3EM4K0013840','2019-09-28'),
(173,'SIENTA 1.5 V CVT','-','MHFZ28H3XJ0056919','2019-09-28'),
(174,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK055125','2019-09-30'),
(175,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK054825','2019-08-02'),
(176,'INNOVA BENSIN G M/T','-','MHFJW8EM4K2370926','2019-08-03'),
(177,'RUSH 1.5 TRD Sportivo A/T','-','MHKE8FB3JKK027780','2019-08-06'),
(178,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK054577','2019-08-10'),
(179,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JKK032514','2019-08-13'),
(180,'AVANZA 1.3 G M/T','-','MHKM5EA3JKK129926','2019-08-14'),
(181,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JKK031999','2019-08-14'),
(182,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK053647','2019-08-15'),
(183,'HILUX EXTRA CABIN 4X4 E M/T','-','MR0DB8CC7K4170594','2019-08-22'),
(184,'RUSH 1.5 TRD Sportivo A/T','-','MHKE8FB3JKK028045','2019-08-22'),
(185,'RUSH 1.5 TRD Sportivo A/T','-','MHKE8FB3JKK028421','2019-08-23'),
(186,'AGYA 1.2 G A/T TRD','-','MHKA4GB5JKJ026402','2019-08-27'),
(187,'INNOVA BENSIN G M/T','-','MHFJW8EM5K2369204','2019-08-28'),
(188,'RUSH 1.5 TRD Sportivo A/T','-','MHKE8FB3JJK011076','2019-08-28'),
(189,'AGYA ','-','MHKA4GA5JKJ034091','2019-07-04'),
(190,'YARIS','-','MHFK23F39K2056617','2019-07-04'),
(191,'RUSH ','-','MHKE8FA3JKK034181','2019-07-18'),
(192,'RUSH ','-','MHKE8FA3JKK032876','2019-07-19'),
(193,'CALYA ','-','MHKA6GJ6JKJ111996','2019-07-22'),
(194,'FORTUNER','-','MHFGB8GS0J0886471','2019-07-22'),
(195,'AGYA 1.2 G A/T TRD','-','MHKA4GB5JKJ025576','2019-07-27'),
(196,'HILUX PICK UP 2.0 BENSIN STD M/T','-','MR0EW8BB2K0207978','2019-07-27'),
(197,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK054786','2019-07-29'),
(198,'AVANZA 1.3 G M/T','-','MHKM5EA3JKK140657','2019-07-30'),
(199,'HILUX DOUBLE CABIN 2.4 DIESEL G M/T','-','MR0KB8CD6J1207912','2019-07-30'),
(200,'INNOVA G M/T','-','MHFJW8EMXK2369764','2019-07-30'),
(201,'AVANZA 1.3 G M/T','-','MHKM5EA3JKK141542','2019-07-31'),
(202,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK054602','2019-07-31'),
(203,'CALYA 1.2 G AT','-','MHKA6GK6JKJ051451','2019-07-31'),
(204,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JKK034707','2019-07-31'),
(205,'AGYA','-','MHKA4GA5JKJ029910','2019-06-04'),
(206,'AVANZA ','-','MHKM5FA4JKK053075','2019-06-11'),
(207,'AVANZA ','-','MHKM5FA4JKK053760','2019-06-13'),
(208,'RUSH ','-','MHKE8FB3JKK025587','2019-06-13'),
(209,'AGYA','-','MHKA4GA5JKJ033219','2019-06-14'),
(210,'CALYA','-','MHKA6GJ6JKJ109652','2019-06-14'),
(211,'CALYA ','-','MHKA6GJ6JKJ104811','2019-06-18'),
(212,'RUSH ','-','MHKE8FB3JKK027311','2019-06-18'),
(213,'CALYA ','-','MHKA6GJ6JKJ110969','2019-06-19'),
(214,'AVANZA ','-','MHKM5EA3JKK138331','2019-06-20'),
(215,'CALYA ','-','MHKA6GJ6JKJ113263','2019-06-21'),
(216,'AVANZA','-','MHKM5FA4JKK050966','2019-06-22'),
(217,'AVANZA ','-','MHKM5FA4JKK053926','2019-06-22'),
(218,'CALYA ','-','MHKA6GK6JJJ045870','2019-06-22'),
(219,'CALYA ','-','MHKA6GJ6JKJ113827','2019-06-24'),
(220,'AGYA ','-','MHKA4GB5JKJ024499','2019-06-25'),
(221,'HILUX','-','MR0KB8CDXK1121309','2019-06-25'),
(222,'AGYA','-','MHKA4GB5JKJ024843','2019-06-27'),
(223,'YARIS','-','MHFK23F32K2055650','2019-06-27'),
(224,'AVANZA ','-','MHKM5FA4JKK054214','2019-06-28'),
(225,'RUSH ','-','MHKE8FB3JKK026018','2019-06-28'),
(226,'AGYA','-','MHKA4GA5JKJ032823','2019-06-29'),
(227,'AVANZA ','-','MHKM5EA3JKK138423','2019-06-29'),
(228,'AVANZA ','-','MHKM5FA4JKK054029','2019-06-29'),
(229,'AVANZA ','-','MHKM5FA4JKK054208','2019-06-29'),
(230,'CALYA ','-','MHKA6GJ6JKJ111169','2019-06-29'),
(231,'CALYA ','-','MHKA6GJ6JKJ111055','2019-06-29'),
(232,'INNOVA ','-','MHFJW8EM8K2370427','2019-06-30'),
(233,'AVANZA ','-','MHKM5EA3JKK135746','2019-05-07'),
(234,'AVANZA','-','MHKM5EA3JKK130415','2019-05-14'),
(235,'RUSH','-','MHKE8FA3JKK030491','2019-05-14'),
(236,'AVANZA ','-','MHKM5EA3JKK134685','2019-05-15'),
(237,'INNOVA','-','MHFJW8EM1K2369250','2019-05-15'),
(238,'INNOVA','-','MHFAW8EM2K0212726','2019-05-16'),
(239,'AVANZA','-','MHKM5EA3JKK132324','2019-05-17'),
(240,'AVANZA ','-','MHKM5FA4JKK051414','2019-05-20'),
(241,'CALYA','-','MHKA6GJ6JKJ107696','2019-05-20'),
(242,'CALYA ','-','MHKA6GJ6JKJ111211','2019-05-21'),
(243,'RUSH ','-','MHKE8FA3JKK031134','2019-05-23'),
(244,'AVANZA ','-','MHKM5FA4JKK052332','2019-05-24'),
(245,'RUSH ','-','MHKE8FB3JKK025992','2019-05-24'),
(246,'AVANZA ','-','MHKM5EA4JKK030360','2019-05-28'),
(247,'INNOVA ','-','MHFJW8EMXK2369392','2019-05-28'),
(248,'INNOVA ','-','MHFJW8EM1K2369345','2019-05-28'),
(249,'HILUX','-','MR0EW8BB0K0207980','2019-05-29'),
(250,'AVANZA','-','MHKM5EA3JKK134385','2019-05-31'),
(251,'AVANZA','-','MHKM5EA3JKK137396','2019-05-31'),
(252,'AVANZA ','-','MHKM5EA3JKK136235','2019-05-31'),
(253,'CALYA ','-','MHKA6GJ6JKJ103159','2019-05-31'),
(254,'CALYA ','-','MHKA6GJ6JKJ107611','2019-05-31'),
(255,'INNOVA','-','MHFJW8EM3K2370755','2019-05-31'),
(256,'RUSH','-','MHKE8FA3JKK027003','2019-05-31'),
(257,'CALYA ','-','MHKA6GJ6JKJ112581','2019-04-16'),
(258,'RUSH ','-','MHKE8FB3JKK024602','2019-04-16'),
(259,'RUSH ','-','MHKE8FA3JKK026573','2019-04-18'),
(260,'HILUX','-','MR0EW8BB7J0207585','2019-04-18'),
(261,'AGYA','-','MHKA4GA5JKJ030175','2019-04-24'),
(262,'AGYA','-','MHKA4GB5JKJ022975','2019-04-25'),
(263,'HILUX','-','MR0EW8BB9K0207685','2019-04-26'),
(264,'INNOVA','-','MHFGW8EM8K1026502','2019-04-26'),
(265,'RUSH','-','MHKE8FA3JKK028552','2019-04-26'),
(266,'AGYA','-','MHKA4GA5JKJ032156','2019-04-27'),
(267,'AVANZA','-','MHKM5EA3JKK134754','2019-04-30'),
(268,'AVANZA ','-','MHKM5FA4JKK050155','2019-04-30'),
(269,'INNOVA','-','MHFJW8EM4K2369033','2019-04-30'),
(270,'INNOVA ','-','MHFJW8EM9K2368993','2019-04-30'),
(271,'RUSH','-','MHKE8FA3JJK023037','2019-04-30'),
(272,'AVANZA','-','MHKM5EA3JKK129736','2019-03-08'),
(273,'INNOVA','-','MHFJW8EM9J2363291','2019-03-09'),
(274,'INNOVA','-','MHFJW8EM6K2366487','2019-03-14'),
(275,'AVANZA','-','MHKM5EA3JKK133463','2019-03-15'),
(276,'INNOVA','-','MHFGW8EM9K1025262','2019-03-16'),
(277,'AGYA','-','MHKA4GA5JJJ021776','2019-03-19'),
(278,'CALYA','-','MHKA6GK6JJJ045487','2019-03-21'),
(279,'AGYA','-','MHKA4GA5JKJ030756','2019-03-23'),
(280,'AVANZA ','-','MHKM5FA4JKK049988','2019-03-25'),
(281,'FORTUNER','-','MHFJB8GS4K1563414','2019-03-26'),
(282,'INNOVA','-','MHFJW8EM8K2368466','2019-03-26'),
(283,'RUSH','-','MHKE8FA3JKK025348','2019-03-26'),
(284,'AGYA','-','MHKA4GA5JJJ021862','2019-03-28'),
(285,'FORTUNER','-','MHFGX8GSXJ0504772','2019-03-28'),
(286,'RUSH','-','MHKE8FB3JKK022968','2019-03-28'),
(287,'HILUX','-','MR0KB8CD8J1119685','2019-03-29'),
(288,'HILUX','-','MR0EW8BB2J0207574','2019-03-29'),
(289,'AVANZA','-','MHKM5FA4JKK049683','2019-03-30'),
(290,'AGYA','-','MHKA4GA5JKJ030243','2019-03-30'),
(291,'HILUX','-','MR0EW8BB5J0207410','2019-03-30'),
(292,'YARIS','-','MHFK23F32J2040855','2019-03-30'),
(293,'INNOVA','-','MHFAW8EM4K0212372','2019-02-09'),
(294,'YARIS','-','MHFK23F30K2056277','2019-02-09'),
(295,'AVANZA','-','MHKM5EA3JJK127042','2019-02-11'),
(296,'AVANZA ','-','MHKM5FA4JKK048960','2019-02-11'),
(297,'RUSH ','-','MHKE8FA3JJK017120','2019-02-11'),
(298,'AVANZA ','-','MHKM5FA4JJK048679','2019-02-13'),
(299,'RUSH ','-','MHKE8FA2JJK005190','2019-02-13'),
(300,'AGYA ','-','MHKA4DA3JHJ114854','2019-02-14'),
(301,'AVANZA','-','MHKM5EA3JJK126910','2019-02-16'),
(302,'INNOVA','-','MHFJW8EM4K2365516','2019-02-16'),
(303,'AVANZA','-','MHKM5EA3JKK129697','2019-02-20'),
(304,'INNOVA','-','MHFJW8EM6K2366358','2019-02-20'),
(305,'RUSH','-','MHKE8FA2JJK003607','2019-02-22'),
(306,'AVANZA ','-','MHKM5FA4JKK049494','2019-02-25'),
(307,'CALYA ','-','MHKA6GJ6JKJ107226','2019-02-25'),
(308,'AVANZA ','-','MHKM5EA3JJK128252','2019-02-26'),
(309,'AGYA','-','MHKA4GA5JKJ029958','2019-02-27'),
(310,'AVANZA ','-','MHKM5FA4JKK049041','2019-02-27'),
(311,'CALYA ','-','MHKA6GJ6JJJ071831','2019-02-27'),
(312,'INNOVA ','-','MHFJW8EM4K2365693','2019-02-27'),
(313,'YARIS ','-','MHFK23F30J2053698','2019-02-27'),
(314,'AGYA ','-','MHKA4GB5JKJ020927','2019-02-28'),
(315,'AVANZA ','-','MHKM5EA3JKK133891','2019-02-28'),
(316,'CALYA ','-','MHKA6GJ6JKJ104528','2019-02-28'),
(317,'INNOVA ','-','MHFJW8EM9K2366435','2019-02-28'),
(318,'INNOVA','-','MHFGW8EMXJ1024314','2019-02-28'),
(319,'HILUX','-','MR0EW8BB2J0207297','2019-01-05'),
(320,'AGYA','-','MHKA4GB5JJJ018375','2019-01-10'),
(321,'AGYA','-','MHKA4GA5JJJ023097','2019-01-12'),
(322,'AVANZA ','-','MHKM5FA4JJK047985','2019-01-15'),
(323,'AVANZA ','-','MHKM5FA4JJK048126','2019-01-16'),
(324,'AGYA ','-','MHKA4GB5JJJ019936','2019-01-18'),
(325,'RUSH','-','MHKE8FA3JJK018043','2019-01-21'),
(326,'AGYA ','-','MHKA4GA5JJJ021422','2019-01-22'),
(327,'AVANZA ','-','MHKM5FA4JJK048027','2019-01-22'),
(328,'AVANZA ','-','MHKM5EA3JJK127876','2019-01-23'),
(329,'RUSH','-','MHKE8FA3JJK022286','2019-01-25'),
(330,'AGYA ','-','MHKA4GA5JJJ012365','2019-01-28'),
(331,'AVANZA ','-','MHKM5EA3JJK128218','2019-01-28'),
(332,'AVANZA ','-','MHKM5EA3JJK119034','2019-01-28'),
(333,'AVANZA ','-','MHKM5EA3JJK127923','2019-01-29'),
(334,'CALYA ','-','MHKA6GJ6JHJ061546','2019-01-29'),
(335,'YARIS ','-','MHFK23F38J2052704','2019-01-29'),
(336,'FORTUNER ','-','MHFGB8GS8J0885746','2019-01-30'),
(337,'AVANZA ','-','MHKM5EA3JJK128651','2019-01-31'),
(338,'CALYA ','-','MHKA6GJ6JJJ091244','2019-01-31'),
(339,'CALYA ','-','MHKA6GJ6JJJ091782','2019-01-31'),
(340,'HILUX','-','MR0EW8BB4J0207396','2019-01-31'),
(341,'INNOVA','-','MHFJW8EM2J2364640','2019-01-31'),
(342,'RUSH ','-','MHKE8FA3JJK016998','2019-01-31'),
(343,'RUSH ','-','MHKE8FA3JJK015532','2019-01-31'),
(344,'RUSH 1.5','3SZ - DFY8695','MHFE2CJ3JGK118268','2016-10-05'),
(345,'HILUX PICK UP 2.5 DIESEL','2KD - U906840','MR0ES8BB8G0061959','2016-10-06'),
(346,'<NAME>','1TR - A163158','MHFJW8EM6G2315272','2016-10-06'),
(347,'AVANZA 1.3','1NR - F166148','MHKM5EA3JGK026043','2016-10-11'),
(348,'AGYA 1.0','1KR - A278710','MHKA4DA3JGJ089518','2016-10-12'),
(349,'CALYA 1.2','3NR-H028324','MHKA6GJ6JGJ008159','2016-10-12'),
(350,'FORTUNER 4X4 DIESEL','2GD - C069903','MHFHB3FS3G0034469','2016-10-13'),
(351,'<NAME>','1NZ - Z445591','MHFKT9F34G6086270','2016-10-13'),
(352,'RUSH 1.5','3SZ - DFZ1600','MHFE2CJ3JGK118854','2016-10-14'),
(353,'CALYA 1.2','3NR - H024965','MHKA6GJ6JGJ006977','2016-10-15'),
(354,'RUSH 1.5','3SZ - DFZ2963','MHFE2CJ3JGK119044','2016-10-15'),
(355,'AVANZA 1.5','2NR - F567650','MHKM5FA4JGK019947','2016-10-19'),
(356,'AVANZA 1.3','1NR - F167751','MHKM5EA3JGK026521','2016-10-20'),
(357,'HILUX DOUBLE CABIN 2.5 DIESEL','2KD - U914984','MR0KS8CD1G1103188','2016-10-20'),
(358,'CALYA 1.2','3NR - H018274','MHKA6GK6JGJ004472','2016-10-20'),
(359,'AVANZA 1.5','2NR - F564696','MHKM5FA4JGK019268','2016-10-21'),
(360,'INNOVA BENSIN','1TR - A176615','MHFJW8EM0G2317065','2016-10-21'),
(361,'RUSH 1.5','3SZ - DFZ3030','MHFE2CJ3JGK119016','2016-10-21'),
(362,'AVANZA 1.5','2NR - F564812','MHKM5FA3JGK002795','2016-10-22'),
(363,'INNOVA BENSIN','1TR - A161077','MHFJW8EMXG2314934','2016-10-22'),
(364,'AVANZA 1.5','2NR - F565238','MHKM5FA4JGK019348','2016-10-22'),
(365,'INNOVA BENSIN','1TR - A147303','MHFGW8EM9G1007108','2016-10-22'),
(366,'AGYA 1.0','1KR - A311483','MHKA4DA3JGJ098519','2016-10-24'),
(367,'AVANZA 1.5','2NR - F566226','MHKM5FA3JGK002854','2016-10-24'),
(368,'<NAME>','1NZ - Z457918','MHFKT9F30G6088873','2016-10-24'),
(369,'RUSH 1.5','3SZ - DFZ4429','MHFE2CJ3JGK119424','2016-10-24'),
(370,'INNOVA BENSIN','1TR - A152114','MHFJW8EM5G2313903','2016-10-27'),
(371,'INNOVA BENSIN','1TR - A184252','MHFAW8EM0G0204180','2016-10-28'),
(372,'INNOVA BENSIN','1TR - A158202','MHFGW8EM0G1007630','2016-10-28'),
(373,'HILUX EXTRA CABIN 2.5 DIESEL','2KD - U808138','MR0DS8CC7F0230502','2016-10-29'),
(374,'AVANZA 1.3','1NR-F177474.','MHKM5EA3JGK029930.','2016-10-29'),
(375,'AVANZA 1.3','1NR - F174152','MHKM5EA3JGK028785','2016-10-31'),
(376,'AVANZA 1.5','2NR - F565010','MHKM5FA4JGK019337','2016-10-31'),
(377,'AVANZA 1.3','1NR - F174311','MHKM5EA3JGK028755','2016-10-31'),
(378,'AVANZA 1.5','2NR - F563200','MHKM5FA3JGK002732','2016-10-31'),
(379,'AVANZA 1.5','2NR-F568855.','MHKM5FA3JGK002933.','2016-10-31'),
(380,'CALYA 1.2','3NR-H039616','MHKA6GJ6JGJ012657','2016-10-31'),
(381,'AGYA 1.0','1KR - A306242','MHKA4DA3JGJ097023','2016-10-31'),
(382,'HILUX DOUBLE CABIN 2.5 DIESEL','2KD-U923813','MR0KS8CD1G1035216','2016-10-31'),
(383,'AVANZA 1.5','-','MHKM5FB4JGK008843','2016-11-01'),
(384,'AVANZA 1.5','-','MHKM5FA3JGK002829','2016-11-02'),
(385,'AVANZA 1.5','-','MHKM5FA4JGK020351','2016-11-02'),
(386,'AVANZA 1.3','-','MHKM5EA3JGK028752','2016-11-04'),
(387,'SIENTA 1.5','-','MHFZ28H33G0012608','2016-11-07'),
(388,'AGYA 1.0','-','MHKA4DB3JGJ064719','2016-11-08'),
(389,'AGYA 1.0','-','MHKA4DA3JGJ092473','2016-11-09'),
(390,'AVANZA 1.3','-','MHKM5EA4JGK014884','2016-11-11'),
(391,'INNOVA BENSIN','-','MHFJW8EM1G2320198','2016-11-12'),
(392,'CALYA 1.2','-','MHKA6GJ6JGJ013980','2016-11-12'),
(393,'AVANZA 1.3','-','MHKM5EA3JGK028300','2016-11-12'),
(394,'CALYA 1.2','-','MHKA6GJ6JGJ012813','2016-11-12'),
(395,'AGYA 1.0','-','MHKA4DA3JGJ085996','2016-11-14'),
(396,'AGYA 1.0','-','MHKA4DA3JGJ089661','2016-11-17'),
(397,'INNOVA BENSIN','-','MHFGW8EM5G1006988','2016-11-21'),
(398,'AVANZA 1.3','-','MHKM5EA3JGK028895','2016-11-21'),
(399,'INNOVA BENSIN','-','MHFJW8EM0G2319866','2016-11-21'),
(400,'RUSH 1.5','-','MHFE2CJ3JGK119364','2016-11-22'),
(401,'FORTUNER 4X2 DIESEL','-','MHFGB8GS9G0821756','2016-11-23'),
(402,'RUSH 1.5','-','MHFE2CJ3JGK119464','2016-11-23'),
(403,'CALYA 1.2','-','MHKA6GJ6JGJ011492','2016-11-24'),
(404,'RUSH 1.5','-','MHFE2CK3JGK039587','2016-11-24'),
(405,'AVANZA 1.3','-','MHKM5EA3JGK032979','2016-11-24'),
(406,'INNOVA BENSIN','-','MHFGW8EM2G1007497','2016-11-25'),
(407,'CALYA 1.2','-','MHKA6GJ6JGJ016617','2016-11-26'),
(408,'AVANZA 1.3','-','MHKM5EA3JGK032671','2016-11-28'),
(409,'ETIOS E','-','MHFK39BT9G2029995','2016-11-29'),
(410,'AVANZA 1.3','-','MHKM5EA3JGK033440','2016-11-29'),
(411,'INNOVA BENSIN','-','MHFGW8EM7G1007365.','2016-11-29'),
(412,'AVANZA 1.5','-','MHKM5FA4JGK021520','2016-11-29'),
(413,'AVANZA 1.5','-','MHKM5FA3JGK002551','2016-11-30'),
(414,'AVANZA 1.3','-','MHKM5EA3JGK028350','2016-11-30'),
(415,'DYNA','-','MHFC1JU43G5143505','2016-12-05'),
(416,'RUSH','-','MHFE2CJ3JGK122012','2016-12-10'),
(417,'CALYA','-','MHKA6GJ6JGJ016187','2016-12-13'),
(418,'AGYA','-','MHKA4DA3JGJ086798','2016-12-13'),
(419,'FORTUNER','-','MHFGB8GS5G0828137','2016-12-14'),
(420,'AGYA','-','MHKA4DA3JGJ090248','2016-12-15'),
(421,'RUSH','-','MHFE2CJ2JGK056096','2016-12-17'),
(422,'AVANZA','-','MHKM5EA3JGK036240','2016-12-17'),
(423,'FORTUNER','-','MHFKB8FS9G0086191','2016-12-19'),
(424,'AGYA','-','MHKA4DA3JGJ093285','2016-12-20'),
(425,'DYNA','-','MHFC1JU43G5147107','2016-12-20'),
(426,'YARIS','-','MR054HY91C46XXXXX','2013-03-01'),
(427,'RUSH','-','MHFE2CJ3JGK124135','2016-12-21'),
(428,'CALYA ','-','MHKA6GJ6JGJ018374','2016-12-21'),
(429,'AVANZA','-','MHKM5EA3JGK034263','2016-12-21'),
(430,'AVANZA','-','MHKM5FA4JGK020935','2016-12-22'),
(431,'AVANZA','-','MHKM5EA3JGK037366','2016-12-23'),
(432,'AVANZA','-','MHKM5EA3JGK037842','2016-12-23'),
(433,'AVANZA','-','MHKM5EA3JGK036272','2016-12-23'),
(434,'AVANZA','-','MHKM5EA3JGK033490','2016-12-24'),
(435,'RUSH','-','MHFE2CJ3JGK123857','2016-12-28'),
(436,'RUSH','-','MHFE2CJ3JGK122423','2016-12-28'),
(437,'ETIOS','-','MHFK39BT1G2031269','2016-12-28'),
(438,'AVANZA','-','MHKM5EA3JGK041971','2016-12-30'),
(439,'AVANZA','-','MHKM5FA4JGK022252','2016-12-30'),
(440,'HILUX','-','MR0EW8BB5G0203446','2016-12-30'),
(441,'AVANZA','-','MHKM5FA4JGK022411','2016-12-31'),
(442,'RUSH','-','MHFE2CJ3JGK122580','2016-12-31'),
(443,'INNOVA','-','MHFJW8EM3G2322633','2016-12-31'),
(444,'AVANZA','-','MHKM5EA3JGK037677','2016-12-31'),
(445,'RUSH','-','MHFE2CJ3JGK122059','2016-12-31'),
(446,'AVANZA','-','MHKM5EA3JGK037552','2016-12-31'),
(447,'INNOVA','-','MHFJW8EM4G2321975','2016-12-31'),
(448,'CALYA 1.2 G M/T','-','MHKA6GJ6JKJ135230','2020-02-07'),
(449,'CALYA 1.2 G M/T','-','MHKA6GJ6JKJ133987','2020-02-11'),
(450,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLJ006481','2020-02-12'),
(451,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLK043660','2020-02-12'),
(452,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLJ006107','2020-02-13'),
(453,'DYNA 130 HT Hi FG P/S','-','MJEC1JU43J5167447','2020-02-14'),
(454,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK062214','2020-02-17'),
(455,'CALYA 1.2 G M/T','-','MHKA6GJ6JKJ129945','2020-02-17'),
(456,'AVANZA 1.3 VELOZ M/T','-','MHKM5EA4JKK034541','2020-02-19'),
(457,'CALYA 1.2 G M/T','-','MHKA6GJ6JKJ135353','2020-02-19'),
(458,'INNOVA BENSIN G M/T','-','MHFJW8EM3L2379862','2020-02-19'),
(459,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLK043863','2020-02-19'),
(460,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLJ007538','2020-02-22'),
(461,'AVANZA 1.3 G M/T','-','MHKM5EA3JLK162812','2020-02-24'),
(462,'HILUX PICK UP 2.5 DIESEL M/T','-','MR0ES8BB2K0065191','2020-02-24'),
(463,'INNOVA BENSIN G M/T','-','MHFJW8EM9L2379932','2020-02-25'),
(464,'HILUX DOUBLE CABIN 2.4 DIESEL V A/T','-','MR0HB3CD2L0333822','2020-02-27'),
(465,'INNOVA BENSIN G M/T','-','MHFJW8EM6L2379953','2020-02-28'),
(466,'INNOVA BENSIN VENTURER M/T','-','MHFAW8EM3L0214874','2020-02-28'),
(467,'AVANZA 1.3 G M/T','-','MHKM5EA3JLK164311','2020-02-29'),
(468,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK062330','2020-02-29'),
(469,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK062615','2020-02-29'),
(470,'INNOVA G A/T','-','MHFJW8EM3L2379599','2020-02-29'),
(471,'INNOVA BENSIN V M/T','-','MHFGW8EM0L1029959','2020-02-29'),
(472,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK062516','2020-03-06'),
(473,'AVANZA 1.3 G M/T','-','MHKM5EA3JLK165033','2020-03-07'),
(474,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLJ007817','2020-03-12'),
(475,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK062916','2020-03-13'),
(476,'CALYA 1.2 G A/T','-','MHKA6GK6JLJ602580','2020-03-13'),
(477,'YARIS S M/T TRD','-','MHFK23F34L2097657','2020-03-13'),
(478,'RUSH 1.5 TRD Sportivo A/T','-','MHKE8FB3JLJ006926','2020-03-14'),
(479,'RUSH 1.5 TRD Sportivo A/T','-','MHKE8FB3JLJ006887','2020-03-16'),
(480,'RUSH 1.5 TRD Sportivo A/T','-','MHKE8FB3JLJ006022','2020-03-16'),
(481,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLJ008359','2020-03-17'),
(482,'INNOVA BENSIN G M/T','-','MHFJW8EM6L2380875','2020-03-18'),
(483,'INNOVA BENSIN V M/T','-','MHFGW8EM7L1030199','2020-03-19'),
(484,'INNOVA BENSIN G M/T','-','MHFJW8EMXL2380068','2020-03-20'),
(485,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLJ008597','2020-03-20'),
(486,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK063386','2020-03-23'),
(487,'AVANZA 1.3 G M/T','-','MHKM5EA3JKK160464','2020-03-30'),
(488,'AVANZA 1.3 G M/T','-','MHKM5EA3JLK166726','2020-03-31'),
(489,'FORTUNER 4X2 DIESEL VRZ A/T TRD','-','MHFGB8GSXL0911878','2020-03-31'),
(490,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLJ008465','2020-04-02'),
(491,'CALYA 1.2 G M/T','-','MHKA6GJ6JLJ606453','2020-04-06'),
(492,'AGYA 1.2 G A/T TRD','-','MHKA4GB5JKJ029738','2020-04-09'),
(493,'RUSH 1.5 TRD Sportivo A/T','-','MHKE8FB3JKJ004934','2020-04-09'),
(494,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLJ008195','2020-04-11'),
(495,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK063373','2020-04-14'),
(496,'FORTUNER 4X2 DIESEL VRZ A/T','-','MHFGB8GS2L0908442','2020-04-16'),
(497,'AVANZA 1.3 G M/T','-','MHKM5EA3JLK165949','2020-04-17'),
(498,'INNOVA BENSIN V M/T','-','MHFGW8EM8L1030647','2020-04-17'),
(499,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK063600','2020-04-18'),
(500,'RUSH 1.5 TRD Sportivo A/T','-','MHKE8FB3JLJ008587','2020-04-21'),
(501,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLJ009700','2020-04-21'),
(502,'CALYA 1.2 G M/T','-','MHKA6GJ6JLJ605849','2020-04-29'),
(503,'HILUX DOUBLE CABIN 2.4 DIESEL G M/T','-','MR0KB8CD4L1210553','2020-04-29'),
(504,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLJ009403','2020-04-30'),
(505,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLK044436','2020-05-05'),
(506,'AVANZA 1.3 VELOZ A/T','-','MHKM5EB4JKK012522','2020-05-06'),
(507,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK064217','2020-05-09'),
(508,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK064721','2020-05-11'),
(509,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK063417','2020-05-13'),
(510,'YARIS S M/T TRD','-','MHFK23F38L2106408','2020-05-16'),
(511,'YARIS S CVT TRD','-','MHFK23F36L2107458','2020-05-18'),
(512,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLJ009777','2020-05-19'),
(513,'AGYA 1.2 G M/T TRD','-','MHKA4GA5JLJ044773','2020-05-28'),
(514,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK063788','2020-06-08'),
(515,'CALYA 1.2 G A/T','-','MHKA6GK6JLJ602472','2020-06-17'),
(516,'AVANZA 1.3 G M/T','-','MHKM5EA3JLK167133','2020-06-19'),
(517,'CALYA 1.2 G M/T','-','MHKA6GJ6JLJ605968','2020-06-20'),
(518,'CALYA 1.2 G A/T','-','MHKA6GK6JLJ603456','2020-06-22'),
(519,'AGYA 1.2 G M/T TRD','-','MHKA4GA5JLJ045631','2020-06-23'),
(520,'CALYA 1.2 G M/T','-','MHKA6GJ6JLJ605783','2020-07-09'),
(521,'AGYA 1.2 G A/T TRD','-','MHKA4GB5JLJ033920','2020-07-21'),
(522,'INNOVA BENSIN V M/T','-','MHFGW8EM7L1030719','2020-07-21'),
(523,'CALYA 1.2 G M/T','-','MHKA6GJ6JLJ606894','2020-07-23'),
(524,'AVANZA 1.5 VELOZ A/T','-','MHKM5FB4JLK027523','2020-07-28'),
(525,'HILUX DOUBLE CABIN 2.4 DIESEL G M/T','-','MR0KB8CD4L1210570','2020-07-28'),
(526,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLK044782','2020-07-28'),
(527,'CALYA 1.2 G A/T','-','MHKA6GK6JLJ060535','2020-07-29'),
(528,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK062837','2020-08-08'),
(529,'AVANZA 1.3 VELOZ M/T','-','MHKM5EA4JLK036169','2020-08-14'),
(530,'FORTUNER 4X2 DIESEL VRZ A/T TRD','-','MHFGB8GSXL0913811','2020-08-14'),
(531,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK064862','2020-08-26'),
(532,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK064839','2020-08-26'),
(533,'AGYA 1.2 G M/T TRD','-','MHKA4GA5JLJ042665','2020-08-31'),
(534,'INNOVA BENSIN G M/T','-','MHFJW8EM6L2383422','2020-09-04'),
(535,'CALYA 1.2 G M/T','-','MHKA6GJ6JLJ606148','2020-09-10'),
(536,'AVANZA 1.3 G M/T','-','MHKM5EA3JLK166817','2020-09-11'),
(537,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK064159','2020-09-21'),
(538,'AVANZA 1.3 G M/T','-','MHKM5EA3JLK166956','2020-09-23'),
(539,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLJ010139','2020-09-23'),
(540,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLJ010234','2020-09-24'),
(541,'AVANZA 1.3 G M/T','-','MHKM5EA3JLK166304','2020-09-30'),
(542,'AVANZA 1.3 G M/T','-','MHKM5EA3JLK166734','2020-09-30'),
(543,'AGYA 1.2 ','-','MHKA4GA5JLJ046932','2020-10-09'),
(544,'CALYA 1.2 ','-','MHKA6GJ6JLJ608674','2020-10-09'),
(545,'FORTUNER 4X2 DIESEL VRZ A/T','-','MHFGB8GS2L0914550','2020-10-12'),
(546,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLJ012951','2020-10-24'),
(547,'RUSH 1.5 TRD Sportivo A/T','-','MHKE8FB3JLJ011104','2020-10-27'),
(548,'CALYA 1.2','-','MHKA6GJ6JLJ608942','2020-10-30'),
(549,'RUSH 1.5','-','MHKE8FB3JLJ011808','2020-11-04'),
(550,'AGYA 1.2','-','MHKA4GB5JLJ035618','2020-11-05'),
(551,'AVANZA 1.3','-','MHKM5EA3JLK172785','2020-11-10'),
(552,'INNOVA BENSIN','-','MHFJW8EM6L2384117','2020-11-11'),
(553,'CALYA 1.2','-','MHKA6GK6JLJ604396','2020-11-12'),
(554,'INNOVA BENSIN','-','MHFAW8EM8L0215356','2020-11-12'),
(555,'RUSH 1.5','-','MHKE8FA3JLJ013027','2020-11-12'),
(556,'CALYA 1.2','-','MHKA6GJ6JLJ610487','2020-11-13'),
(557,'AGYA 1.2','-','MHKA4GA5JLJ048216','2020-11-17'),
(558,'CALYA 1.2','-','MHKA6GJ6JLJ610711','2020-11-17'),
(559,'AVANZA 1.3','-','MHKM5EA3JLK172558','2020-11-19'),
(560,'RUSH 1.5','-','MHKE8FA3JLJ013049','2020-11-20'),
(561,'RUSH 1.5','-','MHKE8FA3JLK046852','2020-11-21'),
(562,'RUSH 1.5','-','MHKE8FA3JLK047014','2020-11-23'),
(563,'AGYA 1.2','-','MHKA4GB5JLJ035575','2020-11-24'),
(564,'HILUX DOUBLE CABIN 2.4 DIESEL','-','MR0KB8CD5L1124734','2020-11-24'),
(565,'INNOVA BENSIN','-','MHFJW8EM1L2384106','2020-11-24'),
(566,'AVANZA 1.3','-','MHKM5EA4JLK037356','2020-11-25'),
(567,'AVANZA 1.5','-','MHKM5FA4JLK066117','2020-11-25'),
(568,'FORTUNER 4X2 DIESEL','-','MHFAB8GSXL0473126','2020-11-25'),
(569,'HILUX PICK UP 2.4 DIESEL','-','MR0EB8BB0L0050805','2020-11-25'),
(570,'AVANZA 1.3','-','MHKM5EA3JLK172656','2020-11-27'),
(571,'HILUX DOUBLE CABIN 2.4 DIESEL','-','MR0KB8CD2L1211863','2020-11-27'),
(572,'HILUX PICK UP 2.0 BENSIN','-','MR0CW8BB2L0044368','2020-11-27'),
(573,'AVANZA 1.5','-','MHKM5FA4JLK066247','2020-11-30'),
(574,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLJ014419','2020-12-02'),
(575,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK066231','2020-12-03'),
(576,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK066168','2020-12-03'),
(577,'RUSH 1.5 TRD Sportivo A/T','-','MHKE8FB3JLJ012695','2020-12-04'),
(578,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLJ014460','2020-12-04'),
(579,'HILUX PICK UP 2.0 BENSIN','-','MR0CW8BB8L0044164','2020-12-07'),
(580,'RUSH 1.5','-','MHKE8FA3JLJ014456','2020-12-08'),
(581,'CALYA 1.2','-','MHKA6GJ6JLJ610688','2020-12-10'),
(582,'AGYA 1.2','-','MHKA4GA5JLJ047403','2020-12-11'),
(583,'AVANZA 1.3','-','MHKM5EA3JLK172655','2020-12-11'),
(584,'HILUX PICK UP 2.4 DIESEL','-','MR0CB8BB8L0022693','2020-12-11'),
(585,'HILUX DOUBLE CABIN 2.4 DIESEL','-','MR0BB3CD4L0001127','2020-12-12'),
(586,'RUSH 1.5','-','MHKE8FA3JLJ014437','2020-12-15'),
(587,'CALYA 1.2','-','MHKA6GJ6JLJ612449','2020-12-16'),
(588,'INNOVA BENSIN','-','MHFJW8EM2L2384924','2020-12-16'),
(589,'AVANZA 1.3','-','MHKM5EA4JLK037486','2020-12-17'),
(590,'AVANZA 1.5','-','MHKM5FA4JLK066530','2020-12-17'),
(591,'AGYA 1.2','-','MHKA4GA5JLJ047346','2020-12-18'),
(592,'FORTUNER 4X2 DIESEL','-','MHFGB8GS4L0915098','2020-12-18'),
(593,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK066338','2020-12-21'),
(594,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK066347','2020-12-21'),
(595,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK066500','2020-12-21'),
(596,'AGYA 1.2 G M/T TRD','-','MHKA4GA5JLJ047288','2020-12-22'),
(597,'HILUX DOUBLE CABIN 2.4 DIESEL G M/T','-','MR0KB8CD6L1124869','2020-12-22'),
(598,'HILUX DOUBLE CABIN 2.4 DIESEL G M/T','-','MR0KB8CD4L1211850','2020-12-22'),
(599,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK066305','2020-12-23'),
(600,'CALYA 1.2 E M/T','-','MHKA6GJ3JLJ603078','2020-12-23'),
(601,'INNOVA BENSIN G M/T','-','MHFJW8EM1L2385014','2020-12-23'),
(602,'INNOVA BENSIN VENTURER A/T','-','MHFAW3EMXL0001343','2020-12-23'),
(603,'AGYA 1.2 G M/T TRD','-','MHKA4GA5JLJ048329','2020-12-24'),
(604,'AVANZA 1.3 G A/T','-','MHKM5EB3JLK030359','2020-12-24'),
(605,'AVANZA 1.3 G M/T','-','MHKM5EA3JLK172653','2020-12-28'),
(606,'HIACE COMMUTER M/T','-','JTFSS22P8L0193146','2020-12-28'),
(607,'AGYA 1.2 G A/T TRD','-','MHKA4GB5JLJ036074','2020-12-29'),
(608,'CALYA 1.2 G M/T','-','MHKA6GJ6JLJ609100','2020-12-29'),
(609,'CALYA 1.2 G M/T','-','MHKA6GJ6JLJ610651','2020-12-29'),
(610,'HILUX PICK UP 2.4 DIESEL STD M/T','-','MR0CB8BB2L0022754','2020-12-29'),
(611,'RUSH 1.5 TRD Sportivo A/T','-','MHKE8FB3JLJ014167','2020-12-30'),
(612,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLJ016393','2020-12-31'),
(613,'AVANZA 1.3 G M/T','-','MHKM5EA3JKK159007','2020-01-04'),
(614,'INNOVA BENSIN V M/T','-','MHFGW8EM0K1027448','2020-01-04'),
(615,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK060905','2020-01-08'),
(616,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK060662','2020-01-09'),
(617,'CALYA 1.2 G A/T','-','MHKA6GK6JKJ059098','2020-01-09'),
(618,'CALYA 1.2 G M/T','-','MHKA6GJ6JKJ134225','2020-01-09'),
(619,'FORTUNER 4X2 DIESEL VRZ A/T','-','MHFGB8GS5L0907365','2020-01-09'),
(620,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK061469','2020-01-14'),
(621,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JLK043542','2020-01-16'),
(622,'AGYA 1.2 G M/T TRD','-','MHKA4GA5JKJ041746','2020-01-20'),
(623,'AVANZA 1.5 VELOZ A/T','-','MHKM5FB4JLK027612','2020-01-20'),
(624,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JKJ005153','2020-01-20'),
(625,'AGYA 1.2 G A/T TRD','-','MHKA4GB5JKJ030506','2020-01-21'),
(626,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK061618','2020-01-21'),
(627,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK060150','2020-01-21'),
(628,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JKJ005261','2020-01-21'),
(629,'YARIS S CVT TRD','-','MHFK23F30K2079171','2020-01-22'),
(630,'AVANZA 1.3 G M/T','-','MHKM5EA3JKK161002','2020-01-24'),
(631,'AVANZA 1.3 G A/T','-','MHKM5EB3JKK027883','2020-01-27'),
(632,'CALYA 1.2 G M/T','-','MHKA6GJ6JKJ134095','2020-01-27'),
(633,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JKK061152','2020-01-28'),
(634,'AGYA 1.2 G M/T TRD','-','MHKA4GA5JKJ041680','2020-01-29'),
(635,'RUSH 1.5 TRD Sportivo M/T','-','MHKE8FA3JKJ005544','2020-01-29'),
(636,'AVANZA 1.5 VELOZ M/T','-','MHKM5FA4JLK062042','2020-01-30'),
(637,'AGYA 1.2 G M/T TRD','-','MHKA4GA5JLJ045275','2020-08-24'),
(638,'AVANZA 1.3 G M/T','-','MHKM5EA3JLK166456','2020-09-15'),
(639,'CALYA 1.2 G A/T','-','MHKA6GK6JKJ059032','2020-01-09'),
(640,'AVANZA ','-','MHKM1CA4JCK0XXXXX','2013-02-01'),
(641,'HILUX','-','MR0EW8BB9H0203855','2017-08-31'),
(642,'CALYA 1.2','3NRH061619','MHKA6GJ6JGJ021638','2017-01-10'),
(643,'AVANZA 1.3 G M/T','-','MHKM5EA3JKK160474','2020-01-31'),
(644,'INNOVA BENSIN G M/T','-','MHFJW8EM4L2380373','2020-03-17'),
(645,'HILUX PICK UP 2.4 DIESEL STD M/T','-','MHKE8FA3JLJ013052','2020-10-28'),
(646,'AVANZA 1.3','1NRF369819','MHKM5EA3JJK093841','2018-02-27'),
(647,'AVANZA 1.3 G M/T','-','MHKM5EA3JKK154436','2019-12-06');
|
-- phpMyAdmin SQL Dump
-- version 4.5.0.2
-- http://www.phpmyadmin.net
--
-- Host: localhost:3306
-- Generation Time: Nov 12, 2015 at 06:09 AM
-- Server version: 5.5.46-0ubuntu0.14.04.2
-- PHP Version: 5.5.30
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `playground`
--
CREATE USER 'admin'@'localhost' IDENTIFIED BY 'admin';
CREATE USER 'admin'@'%' IDENTIFIED BY 'admin';
GRANT ALL PRIVILEGES ON *.* TO 'admin'@'%' IDENTIFIED BY 'admin' WITH GRANT OPTION;
CREATE DATABASE IF NOT EXISTS `jactivity2` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
USE `jactivity2`;
-- --------------------------------------------------------
CREATE TABLE `deviceorientation` (
`id` varchar(200) NOT NULL,
`timestamp` varchar(200) NOT NULL,
`useragent` varchar(200) NOT NULL,
`label` varchar(200) NOT NULL,
`beta` varchar(200) NOT NULL,
`gamma` varchar(200) NOT NULL,
`alpha` varchar(200) NOT NULL,
`absolute` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `devicemotion` (
`id` varchar(200) NOT NULL,
`timestamp` varchar(200) NOT NULL,
`useragent` varchar(200) NOT NULL,
`label` varchar(200) NOT NULL,
`accelerationX` varchar(200) NOT NULL,
`accelerationY` varchar(200) NOT NULL,
`accelerationZ` varchar(200) NOT NULL,
`accelerationIncludingGravityX` varchar(200) NOT NULL,
`accelerationIncludingGravityY` varchar(200) NOT NULL,
`accelerationIncludingGravityZ` varchar(200) NOT NULL,
`rotationRateBeta` varchar(200) NOT NULL,
`rotationRateGamma` varchar(200) NOT NULL,
`rotationRateAlpha` varchar(200) NOT NULL,
`interval` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Table structure for table `features`
--
CREATE TABLE `features` (
`feature` varchar(200) NOT NULL,
`name` varchar(200) NOT NULL,
`description` text NOT NULL,
`icon` varchar(200) NOT NULL,
`script` varchar(300) NOT NULL,
`html` varchar(300) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `labels`
--
CREATE TABLE `labels` (
`label` varchar(100) NOT NULL,
`name` varchar(100) NOT NULL,
`description` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `features`
--
ALTER TABLE `features`
ADD PRIMARY KEY (`feature`);
--
-- Indexes for table `labels`
--
ALTER TABLE `labels`
ADD PRIMARY KEY (`label`);
/*!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 setting(id, name, value)
VALUES (nextval('setting_seq'), 'MAILING_TEMPLATE',
'Witajcie<br/><br/><br/>
Varia:<br/>
- trwają Call 4 Papers na następujące konferencje: <br/>
-- <a href="http://2016.geecon.org/">GeeCON</a> (do 19 lutego),<br/>
-- <a href="http://2016.4developers.org.pl/">4Developers</a> (do 22 lutego)<br/>
-- <a href="http://devcrowd.pl/">DevCrowd</a> (do 1 marca)<br/>
-- <a href="http://warsaw.gr8days.pl/#/">Gr8Day Warsaw</a><br/>
-- <a href="http://chamberconf.pl/">ChamberConf</a><br/> (do 14 lutego)
Zachęcam do wysyłania zgłoszeń i dzielenia się wiedzą :)<br/><br/>
- bloguj regularnie i wygraj m.in. legendarne krzesło <b>Aeron</b>, równie legendarną klawiaturę <b>Das Keyboard</b> albo konsolę XBox! O co chodzi?<br/>
Jeden z bardziej znanych programistów ze świata .Net-a <NAME> ogłasza konkurs, który polega na regularnym blogowaniu o swoim (już istniejącym lub dopiero startującym)
projekcie open source. Więcej szczegółów oraz pełna lista nagród na stronie <a href="http://www.maciejaniserowicz.com/daj-sie-poznac/"><NAME> 2016</a>. Zachęcam do udziału!
<br/><br/><br/>
Poniżej lista nowych postów z ostatnich $days$ dni.<br/><br/>
$if(newPosts)$
Wpisy programistów:<br/>
$newPosts: {post|
- <a href="$post.url$">$post.title$</a> by $post.authorLabel$<br/>
}$
<br/>
<br/>
$endif$
$if(newPostsFromCompanies)$
Wpisy z blogów firmowych:<br/>
$newPostsFromCompanies: {post|
- <a href="$post.url$">$post.title$</a> by $post.authorLabel$<br/>
}$
<br/>
<br/>
$endif$
$if(blogsWithHomePage)$
Nowo dodane blogi: <br/>
$blogsWithHomePage.keys: { key |
- <a href="$blogsWithHomePage.(key)$">$key.author$</a><br/>
}$
$endif$
-- <br/>
Miłej lektury,<br/>
<NAME>, JVM Bloggers v. 0.5.0<br/>
<a href="https://github.com/tdziurko/jvm-bloggers/">Fork me on GitHub</a><br/>'); |
-- file:create_index.sql ln:113 expect:true
CREATE TABLE kd_point_tbl AS SELECT * FROM quad_point_tbl
|
-- file:privileges.sql ln:986 expect:true
DROP SCHEMA testns4 CASCADE
|
<filename>data/sql/views.sql
BEGIN TRANSACTION;
CREATE VIEW IF NOT EXISTS stock AS SELECT id, name, category, amount FROM products WHERE deprecated = 0 OR amount != 0;
CREATE VIEW IF NOT EXISTS purchaseprices AS SELECT product, SUM(price * amount) / SUM(amount) AS price FROM restock GROUP BY product;
CREATE VIEW IF NOT EXISTS invoice AS
SELECT user, timestamp, id AS productid, name AS productname,
CASE
WHEN user < 0 THEN
(SELECT SUM(price * amount) / SUM(amount)
FROM restock
WHERE restock.product = id AND restock.timestamp <= sales.timestamp
)
else
(SELECT
CASE
WHEN user=0 THEN guestprice
else memberprice
END
FROM prices
WHERE product = id AND valid_from <= timestamp
ORDER BY valid_from DESC LIMIT 1)
END AS price
FROM sales INNER JOIN products ON sales.product = products.id
ORDER BY timestamp;
CREATE VIEW IF NOT EXISTS current_cashbox_status AS
SELECT (
(
SELECT SUM(
(
SELECT guestprice
FROM prices
WHERE product = s.product AND valid_from <= s.timestamp
ORDER BY valid_from DESC LIMIT 1
)
) FROM sales s WHERE user = 0
)
+
(
SELECT SUM(amount) FROM cashbox_diff
)
) AS amount;
COMMIT;
|
alter table company alter column vita TYPE text |
XQUERY
let $a := 534
let $b := "Hello There"
return <data>{ ($a, $b) }</data> |
/*
Navicat MySQL Data Transfer
Source Server : localhost_3306
Source Server Version : 50548
Source Host : 127.0.0.1:3306
Source Database : male_ambry
Target Server Type : MYSQL
Target Server Version : 50548
File Encoding : 65001
Date: 2016-11-23 16:36:43
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `thumbs_match`
-- ----------------------------
DROP TABLE IF EXISTS `thumbs_match`;
CREATE TABLE `thumbs_match` (
`tmid` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '搭配缩略图id',
`mid` bigint(20) NOT NULL COMMENT '搭配id',
`thumbnail` varchar(255) COLLATE utf8_bin NOT NULL COMMENT '缩略图',
`thumb_url` varchar(255) COLLATE utf8_bin NOT NULL COMMENT '保留字段,图片来源链接',
PRIMARY KEY (`tmid`)
) ENGINE=InnoDB AUTO_INCREMENT=168 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Records of thumbs_match
-- ----------------------------
INSERT INTO `thumbs_match` VALUES ('1', '1', 'https://gd4.alicdn.com/imgextra/i1/2562423560/TB2oi7rap15V1Bjy1XbXXaNcVXa_!!2562423560.jpg', 'http://detail.tmall.com/item.htm?id=538140711939');
INSERT INTO `thumbs_match` VALUES ('2', '1', 'https://gd4.alicdn.com/imgextra/i4/55139032/TB2ZPkKhFXXXXa8XpXXXXXXXXXX_!!55139032.jpg', 'http://detail.tmall.com/item.htm?id=524716010508');
INSERT INTO `thumbs_match` VALUES ('3', '1', 'https://img.alicdn.com/bao/uploaded/i1/TB1OHxQHXXXXXXBXXXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=43333115411');
INSERT INTO `thumbs_match` VALUES ('4', '2', 'https://img.alicdn.com/imgextra/i1/1693687552/TB2DPYkaNvzQeBjSZPfXXbWGFXa_!!1693687552.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538502717893');
INSERT INTO `thumbs_match` VALUES ('5', '2', 'https://gd4.alicdn.com/imgextra/i1/92867844/TB2XMSjangc61BjSZFzXXXH2FXa_!!92867844.jpg', 'http://detail.tmall.com/item.htm?id=539817595691');
INSERT INTO `thumbs_match` VALUES ('6', '2', 'https://img.alicdn.com/imgextra/i1/2949987675/TB2.U6MXFYC11BjSspfXXXcPFXa_!!2949987675.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538695635563');
INSERT INTO `thumbs_match` VALUES ('7', '3', 'https://img.alicdn.com/bao/uploaded/i1/TB115dBOXXXXXXlXFXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=41984139637');
INSERT INTO `thumbs_match` VALUES ('8', '3', 'https://img.alicdn.com/bao/uploaded/i3/TB1mfgJKVXXXXcUapXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=536421046009');
INSERT INTO `thumbs_match` VALUES ('9', '3', 'https://gd4.alicdn.com/imgextra/i4/667688202/TB2K_78Xqi5V1BjSspaXXbrApXa_!!667688202.jpg', 'http://detail.tmall.com/item.htm?id=537072175076');
INSERT INTO `thumbs_match` VALUES ('10', '4', 'https://img.alicdn.com/bao/uploaded/i2/TB1k3SJNFXXXXXzXXXXXXXXXXXX_!!2-item_pic.png_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=539635272849');
INSERT INTO `thumbs_match` VALUES ('11', '4', 'https://gd2.alicdn.com/imgextra/i2/844877955/TB2ovj.tFXXXXbIXpXXXXXXXXXX_!!844877955.jpg', 'http://detail.tmall.com/item.htm?id=536480320334');
INSERT INTO `thumbs_match` VALUES ('12', '4', 'https://gd4.alicdn.com/imgextra/i1/1899031811/TB2l.E2qXXXXXXcXpXXXXXXXXXX_!!1899031811.jpg', 'http://detail.tmall.com/item.htm?id=532608330626');
INSERT INTO `thumbs_match` VALUES ('13', '5', 'https://img.alicdn.com/imgextra/i1/1970867054/TB23yFEaTPC11Bjy1zcXXbTrVXa_!!1970867054.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=539338695362');
INSERT INTO `thumbs_match` VALUES ('14', '5', 'https://img.alicdn.com/bao/uploaded/i1/TB1xZMTKFXXXXX_aXXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538317444490');
INSERT INTO `thumbs_match` VALUES ('15', '5', 'https://gd2.alicdn.com/imgextra/i3/1047442112/TB2isT6bRLzQeBjSZFDXXc5MXXa_!!1047442112.jpg', 'http://detail.tmall.com/item.htm?id=40387766770');
INSERT INTO `thumbs_match` VALUES ('16', '6', 'https://img.alicdn.com/bao/uploaded/i4/TB1TynqNFXXXXatXpXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=539784611373');
INSERT INTO `thumbs_match` VALUES ('17', '6', 'https://img.alicdn.com/bao/uploaded/i3/TB1PvLcNFXXXXbqXFXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=539783276395');
INSERT INTO `thumbs_match` VALUES ('18', '6', 'https://gd4.alicdn.com/imgextra/i4/0/TB1oHyQLpXXXXXDXFXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=537281588434');
INSERT INTO `thumbs_match` VALUES ('19', '7', 'https://img.alicdn.com/bao/uploaded/i4/TB1JsJDOXXXXXc3apXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=540477270952');
INSERT INTO `thumbs_match` VALUES ('20', '7', 'https://gd1.alicdn.com/imgextra/i4/1865789389/TB2KWQOXhaK.eBjSZFAXXczFXXa_!!1865789389.jpg', 'http://detail.tmall.com/item.htm?id=539423316343');
INSERT INTO `thumbs_match` VALUES ('21', '7', 'https://gd2.alicdn.com/imgextra/i2/2639280927/TB2JN4dnXXXXXanXpXXXXXXXXXX_!!2639280927.jpg', 'http://detail.tmall.com/item.htm?id=529735535399');
INSERT INTO `thumbs_match` VALUES ('22', '8', 'https://img.alicdn.com/bao/uploaded/i2/TB1Gf06NVXXXXbYXpXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538666301323');
INSERT INTO `thumbs_match` VALUES ('23', '8', 'https://gd2.alicdn.com/imgextra/i1/2594671088/TB2PWQ1XbnA11Bjy0FjXXapoFXa_!!2594671088.jpg', 'http://detail.tmall.com/item.htm?id=538495451698');
INSERT INTO `thumbs_match` VALUES ('24', '8', 'https://img.alicdn.com/bao/uploaded/i3/TB1qT7KMVXXXXc3XpXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538525822141');
INSERT INTO `thumbs_match` VALUES ('25', '9', 'https://img.alicdn.com/imgextra/i1/TB1B4fUNXXXXXbvapXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538346379786');
INSERT INTO `thumbs_match` VALUES ('26', '9', 'https://gd3.alicdn.com/imgextra/i2/0/TB1IehdIpXXXXbMXXXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=42612320285');
INSERT INTO `thumbs_match` VALUES ('27', '9', 'https://img.alicdn.com/bao/uploaded/i8/TB1kGauNFXXXXafaXXXYXGcGpXX_M2.SS2_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=539703219013');
INSERT INTO `thumbs_match` VALUES ('28', '10', 'https://gd1.alicdn.com/imgextra/i2/378378925/TB20EFdblaM.eBjSZFMXXcypVXa_!!378378925.jpg', 'http://detail.tmall.com/item.htm?id=523367346088');
INSERT INTO `thumbs_match` VALUES ('29', '10', 'https://img.alicdn.com/bao/uploaded/i1/TB1E_C3LpXXXXaiXVXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=536697975830');
INSERT INTO `thumbs_match` VALUES ('30', '11', 'https://gd2.alicdn.com/imgextra/i3/57709795/TB2XqO9XNuI.eBjy0FdXXXgbVXa_!!57709795.jpg', 'http://detail.tmall.com/item.htm?id=540214697649');
INSERT INTO `thumbs_match` VALUES ('31', '11', 'https://img.alicdn.com/bao/uploaded/i1/TB1nNoHNpXXXXbgXFXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=539392196198');
INSERT INTO `thumbs_match` VALUES ('32', '11', 'https://gd3.alicdn.com/imgextra/i4/57709795/TB2Hlaxb4vzQeBjSZFxXXXLBpXa_!!57709795.jpg', 'http://detail.tmall.com/item.htm?id=539093170185');
INSERT INTO `thumbs_match` VALUES ('33', '12', 'https://gd4.alicdn.com/imgextra/i3/57709795/TB2o3Vxab3c61BjSZFMXXbxIVXa_!!57709795.jpg', 'http://detail.tmall.com/item.htm?id=539779785113');
INSERT INTO `thumbs_match` VALUES ('34', '12', 'https://gd4.alicdn.com/imgextra/i2/715022986/TB2YReaX9Zb61BjSZFqXXcWVVXa_!!715022986.jpg', 'http://detail.tmall.com/item.htm?id=539704115845');
INSERT INTO `thumbs_match` VALUES ('35', '12', 'https://img.alicdn.com/imgextra/i3/2167941789/TB2woFwXZeK.eBjSszgXXczFpXa_!!2167941789.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538320824829');
INSERT INTO `thumbs_match` VALUES ('36', '13', 'https://gd1.alicdn.com/imgextra/i1/44212870/TB2jSDaXoWO.eBjSZPcXXbopVXa_!!44212870.jpg', 'http://detail.tmall.com/item.htm?id=539742119179');
INSERT INTO `thumbs_match` VALUES ('37', '13', 'https://gd4.alicdn.com/imgextra/i4/44212870/TB2_S_YXb1J.eBjSspnXXbUeXXa_!!44212870.jpg', 'http://detail.tmall.com/item.htm?id=539682809373');
INSERT INTO `thumbs_match` VALUES ('38', '13', 'https://gd3.alicdn.com/imgextra/i1/71098849/TB2mCzMbwCN.eBjSZFoXXXj0FXa_!!71098849.jpg', 'http://detail.tmall.com/item.htm?id=539594956485');
INSERT INTO `thumbs_match` VALUES ('39', '14', 'https://gd2.alicdn.com/imgextra/i3/0/TB1cKhLNXXXXXb_XpXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=537964007100');
INSERT INTO `thumbs_match` VALUES ('40', '14', 'https://gd1.alicdn.com/imgextra/i1/0/TB16yAVNXXXXXbLXFXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=536255378150');
INSERT INTO `thumbs_match` VALUES ('41', '14', 'https://gd4.alicdn.com/imgextra/i4/0/TB1oHyQLpXXXXXDXFXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=537281588434');
INSERT INTO `thumbs_match` VALUES ('42', '15', 'https://img.alicdn.com/bao/uploaded/i3/TB1isZGLXXXXXatXXXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=536661198245');
INSERT INTO `thumbs_match` VALUES ('43', '15', 'https://gd1.alicdn.com/imgextra/i3/0/TB1NoryNXXXXXcXXpXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=538305033004');
INSERT INTO `thumbs_match` VALUES ('44', '15', 'https://gd3.alicdn.com/imgextra/i3/667219840/TB21QTfiVXXXXbMXpXXXXXXXXXX_!!667219840.jpg', 'http://detail.tmall.com/item.htm?id=521645004188');
INSERT INTO `thumbs_match` VALUES ('45', '16', 'https://img.alicdn.com/bao/uploaded/i3/TB1iCnxNpXXXXaPXpXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=539068740316');
INSERT INTO `thumbs_match` VALUES ('46', '16', 'https://img.alicdn.com/bao/uploaded/i4/TB1ltlIKpXXXXbeXpXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=533305801752');
INSERT INTO `thumbs_match` VALUES ('47', '16', 'https://img.alicdn.com/bao/uploaded/i2/TB1vvc5NVXXXXcNXFXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=539111253625');
INSERT INTO `thumbs_match` VALUES ('48', '17', 'https://img.alicdn.com/bao/uploaded/i1/TB1aklBOXXXXXauXFXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538265813280');
INSERT INTO `thumbs_match` VALUES ('49', '17', 'https://img.alicdn.com/bao/uploaded/i4/TB1wadPOXXXXXbLaXXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=539468098058');
INSERT INTO `thumbs_match` VALUES ('50', '17', 'https://gd1.alicdn.com/imgextra/i4/0/TB1eJrtNpXXXXcoapXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=539044875365');
INSERT INTO `thumbs_match` VALUES ('51', '18', 'https://gd2.alicdn.com/imgextra/i4/400110809/TB2m6ZEuXXXXXaUXpXXXXXXXXXX_!!400110809.jpg', 'http://detail.tmall.com/item.htm?id=536830499601');
INSERT INTO `thumbs_match` VALUES ('52', '18', 'https://gd1.alicdn.com/imgextra/i2/TB1UZ1FMVXXXXa9aXXXYXGcGpXX_M2.SS2', 'http://detail.tmall.com/item.htm?id=537412584664');
INSERT INTO `thumbs_match` VALUES ('53', '18', 'https://img.alicdn.com/bao/uploaded/i3/TB1Fdx3OXXXXXcjXFXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=536088539065');
INSERT INTO `thumbs_match` VALUES ('54', '19', 'https://img.alicdn.com/bao/uploaded/i3/TB1iERBNpXXXXctXVXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538759256800');
INSERT INTO `thumbs_match` VALUES ('55', '19', 'https://img.alicdn.com/bao/uploaded/i1/TB11tf7NFXXXXa1XpXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=539907076134');
INSERT INTO `thumbs_match` VALUES ('56', '19', 'https://gd1.alicdn.com/imgextra/i2/0/TB1_CROIXXXXXcsXXXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=42732090444');
INSERT INTO `thumbs_match` VALUES ('57', '20', 'https://img.alicdn.com/bao/uploaded/i4/TB1T62hLXXXXXcPXFXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=536540865997');
INSERT INTO `thumbs_match` VALUES ('58', '20', 'https://gd1.alicdn.com/imgextra/i1/2558263954/TB2JdBFaF15V1Bjy1XaXXaPqVXa_!!2558263954.jpg', 'http://detail.tmall.com/item.htm?id=538362121448');
INSERT INTO `thumbs_match` VALUES ('59', '20', 'https://gd1.alicdn.com/imgextra/i4/0/TB1gb_FJFXXXXcaXXXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=531648645762');
INSERT INTO `thumbs_match` VALUES ('60', '21', 'https://img.alicdn.com/bao/uploaded/i4/TB1fjHnNpXXXXXSXFXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538896782196');
INSERT INTO `thumbs_match` VALUES ('61', '21', 'https://gd2.alicdn.com/imgextra/i4/2159627598/TB2BWgfpFXXXXbBXXXXXXXXXXXX_!!2159627598.jpg', 'http://detail.tmall.com/item.htm?id=42160594874');
INSERT INTO `thumbs_match` VALUES ('62', '21', 'https://img.alicdn.com/bao/uploaded/i7/TB1sI90KVXXXXXaXVXXYXGcGpXX_M2.SS2_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=534690191693');
INSERT INTO `thumbs_match` VALUES ('63', '22', 'https://gd1.alicdn.com/imgextra/i2/0/TB14PoiNXXXXXbKXXXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=538584392630');
INSERT INTO `thumbs_match` VALUES ('64', '22', 'https://gd3.alicdn.com/imgextra/i4/683509927/TB2uwBTaljC11BjSszdXXbGFpXa_!!683509927.jpg', 'http://detail.tmall.com/item.htm?id=536977570430');
INSERT INTO `thumbs_match` VALUES ('65', '22', 'https://img.alicdn.com/imgextra/i1/729197408/TB2bXzhXNvzQeBjSZFMXXcVfFXa_!!729197408.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=537459405862');
INSERT INTO `thumbs_match` VALUES ('66', '23', 'https://gd1.alicdn.com/imgextra/i3/0/TB1aJnpJXXXXXXwapXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=536516166064');
INSERT INTO `thumbs_match` VALUES ('67', '23', 'https://gd2.alicdn.com/imgextra/i3/420232415/TB2bMoyXCkc61BjSZFCXXc_7VXa_!!420232415.jpg', 'http://detail.tmall.com/item.htm?id=537460222583');
INSERT INTO `thumbs_match` VALUES ('68', '23', 'https://gd1.alicdn.com/imgextra/i2/0/TB1Y_oBLXXXXXbPXXXXXXXXXXXX_!!0-item_pic.jpg_400x400.jpg', 'http://detail.tmall.com/item.htm?id=525913194778');
INSERT INTO `thumbs_match` VALUES ('69', '24', 'https://gd1.alicdn.com/imgextra/i2/325882749/TB2D83nrVXXXXbOXpXXXXXXXXXX_!!325882749.jpg', 'http://detail.tmall.com/item.htm?id=533916973990');
INSERT INTO `thumbs_match` VALUES ('70', '24', 'https://img.alicdn.com/bao/uploaded/i4/TB1PMAMNFXXXXcPapXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=537037738481');
INSERT INTO `thumbs_match` VALUES ('71', '24', 'https://gd1.alicdn.com/imgextra/i1/0/TB1tkOfJpXXXXccXpXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=526238884650');
INSERT INTO `thumbs_match` VALUES ('72', '25', 'https://gd3.alicdn.com/imgextra/i2/828274096/TB2veREa2SM.eBjSZFNXXbgYpXa_!!828274096.jpg', 'http://detail.tmall.com/item.htm?id=523147032927');
INSERT INTO `thumbs_match` VALUES ('73', '25', 'https://gd2.alicdn.com/imgextra/i1/2879325477/TB2Od73tpXXXXXRXpXXXXXXXXXX_!!2879325477.jpg', 'http://detail.tmall.com/item.htm?id=535631976964');
INSERT INTO `thumbs_match` VALUES ('74', '25', 'https://gd3.alicdn.com/imgextra/i1/0/TB1HaSWLpXXXXXNaXXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=536741777460');
INSERT INTO `thumbs_match` VALUES ('75', '26', 'https://gd1.alicdn.com/imgextra/i4/764795750/TB21ZJtaheK.eBjSZFuXXcT4FXa_!!764795750.jpg', 'http://detail.tmall.com/item.htm?id=521261862263');
INSERT INTO `thumbs_match` VALUES ('76', '26', 'https://gd1.alicdn.com/imgextra/i2/2783598558/TB2DDiebrOJ.eBjy1XaXXbNupXa_!!2783598558.jpg', 'http://detail.tmall.com/item.htm?id=534599302408');
INSERT INTO `thumbs_match` VALUES ('77', '26', 'https://gd2.alicdn.com/imgextra/i3/2665990226/TB2wiRapXXXXXcyXpXXXXXXXXXX_!!2665990226.jpg', 'http://detail.tmall.com/item.htm?id=531921652524');
INSERT INTO `thumbs_match` VALUES ('78', '27', 'https://img.alicdn.com/bao/uploaded/i2/TB1q8kzNFXXXXc5XpXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=537919292315');
INSERT INTO `thumbs_match` VALUES ('79', '27', 'https://img.alicdn.com/bao/uploaded/i4/TB1nnZBNXXXXXb0XFXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538397999166');
INSERT INTO `thumbs_match` VALUES ('80', '27', 'https://gd1.alicdn.com/imgextra/i1/1018237492/TB2siAOnpXXXXX.XpXXXXXXXXXX_!!1018237492.jpg', 'http://detail.tmall.com/item.htm?id=530154354376');
INSERT INTO `thumbs_match` VALUES ('81', '28', 'https://img.alicdn.com/bao/uploaded/i3/TB1t18xOXXXXXXYaFXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=523839364884');
INSERT INTO `thumbs_match` VALUES ('82', '28', 'https://img.alicdn.com/bao/uploaded/i4/TB1WgdKOXXXXXcdaXXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=18655533204');
INSERT INTO `thumbs_match` VALUES ('83', '28', 'https://gd3.alicdn.com/imgextra/i3/0/TB117bvJVXXXXXmXFXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=525530407280');
INSERT INTO `thumbs_match` VALUES ('84', '29', 'https://img.alicdn.com/bao/uploaded/i4/TB1EcNFNpXXXXbyXFXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538660258785');
INSERT INTO `thumbs_match` VALUES ('85', '29', 'https://gd4.alicdn.com/imgextra/i1/2600027327/TB2iTLnbB9J.eBjy0FoXXXyvpXa_!!2600027327.jpg', 'http://detail.tmall.com/item.htm?id=537128154352');
INSERT INTO `thumbs_match` VALUES ('86', '29', 'https://gd2.alicdn.com/imgextra/i4/0/TB1h9acLXXXXXcxXFXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=536975716294');
INSERT INTO `thumbs_match` VALUES ('87', '30', 'https://gd3.alicdn.com/imgextra/i3/TB1d5DzMVXXXXX9XXXXYXGcGpXX_M2.SS2', 'http://detail.tmall.com/item.htm?id=537535488055');
INSERT INTO `thumbs_match` VALUES ('88', '30', 'https://gd3.alicdn.com/imgextra/i3/TB1d5DzMVXXXXX9XXXXYXGcGpXX_M2.SS2', 'http://detail.tmall.com/item.htm?id=523336763734');
INSERT INTO `thumbs_match` VALUES ('89', '30', 'https://gd4.alicdn.com/imgextra/i2/862634703/TB2MNd4XbbC11BjSszbXXXRbpXa_!!862634703.jpg', 'http://detail.tmall.com/item.htm?id=537669763537');
INSERT INTO `thumbs_match` VALUES ('90', '31', 'https://img.alicdn.com/bao/uploaded/i3/TB1iERBNpXXXXctXVXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538759256800');
INSERT INTO `thumbs_match` VALUES ('91', '31', 'https://img.alicdn.com/bao/uploaded/i1/TB11tf7NFXXXXa1XpXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=539907076134');
INSERT INTO `thumbs_match` VALUES ('92', '31', 'https://gd1.alicdn.com/imgextra/i2/0/TB1_CROIXXXXXcsXXXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=42732090444');
INSERT INTO `thumbs_match` VALUES ('93', '32', 'https://img.alicdn.com/bao/uploaded/i1/TB1ChxoNpXXXXbXXpXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=537246943134');
INSERT INTO `thumbs_match` VALUES ('94', '32', 'https://img.alicdn.com/bao/uploaded/i1/TB14AVFOXXXXXXBXpXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=527490233175');
INSERT INTO `thumbs_match` VALUES ('95', '32', 'https://img.alicdn.com/bao/uploaded/i5/TB1Ip02NpXXXXaGXpXXYXGcGpXX_M2.SS2_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538678618513');
INSERT INTO `thumbs_match` VALUES ('96', '33', 'https://img.alicdn.com/bao/uploaded/i3/TB1k2RJOXXXXXcSXpXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=19741354676');
INSERT INTO `thumbs_match` VALUES ('97', '33', 'https://img.alicdn.com/bao/uploaded/i8/TB1VqU1MVXXXXXpXFXXYXGcGpXX_M2.SS2_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=537755206675');
INSERT INTO `thumbs_match` VALUES ('98', '33', 'https://img.alicdn.com/bao/uploaded/i1/TB1Rg4YNpXXXXa_XVXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538477039349');
INSERT INTO `thumbs_match` VALUES ('99', '34', 'https://gd4.alicdn.com/imgextra/i1/0/TB1.DQyNXXXXXaRapXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=536196841543');
INSERT INTO `thumbs_match` VALUES ('100', '34', 'https://gd3.alicdn.com/imgextra/i3/0/TB1zuLhMVXXXXbPXXXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=537801487384');
INSERT INTO `thumbs_match` VALUES ('101', '34', 'https://gd3.alicdn.com/imgextra/i1/80222557/TB2XMYCXIrC11Bjy1zjXXcduVXa_!!80222557.jpg', 'http://detail.tmall.com/item.htm?id=537748116909');
INSERT INTO `thumbs_match` VALUES ('102', '35', 'https://gd1.alicdn.com/imgextra/i1/0/TB15lvvLVXXXXaSXpXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=536263121928');
INSERT INTO `thumbs_match` VALUES ('103', '35', 'https://img.alicdn.com/bao/uploaded/i2/TB1txCkNFXXXXXgaXXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538972243194');
INSERT INTO `thumbs_match` VALUES ('104', '35', 'https://gd1.alicdn.com/imgextra/i1/0/TB1g2u9LVXXXXazXpXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=530932139395');
INSERT INTO `thumbs_match` VALUES ('105', '36', 'https://gd1.alicdn.com/imgextra/i3/0/TB1x.uzKVXXXXXCapXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=538520471497');
INSERT INTO `thumbs_match` VALUES ('106', '36', 'https://gd2.alicdn.com/imgextra/i1/0/TB1KU5SJpXXXXa.aXXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=521821098906');
INSERT INTO `thumbs_match` VALUES ('107', '36', 'https://img.alicdn.com/bao/uploaded/i2/TB1niKXKXXXXXbxXpXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=522166594674');
INSERT INTO `thumbs_match` VALUES ('108', '37', 'https://gd3.alicdn.com/imgextra/i1/2952208969/TB24y65XNfxQeBjSsppXXXeoFXa_!!2952208969.jpg', 'http://detail.tmall.com/item.htm?id=537158834023');
INSERT INTO `thumbs_match` VALUES ('109', '37', 'https://gd3.alicdn.com/imgextra/i4/2093558244/TB2M279sFXXXXbiXXXXXXXXXXXX_!!2093558244.jpg', 'http://detail.tmall.com/item.htm?id=535521395705');
INSERT INTO `thumbs_match` VALUES ('110', '37', 'https://img.alicdn.com/imgextra/i3/1643354123/TB2cL0Taqm5V1BjSspoXXa8VXXa_!!1643354123.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538268793187');
INSERT INTO `thumbs_match` VALUES ('111', '38', 'https://gd4.alicdn.com/imgextra/i4/52305958/TB2yP05XO2A11Bjy0FdXXbPwVXa_!!52305958.jpg', 'http://detail.tmall.com/item.htm?id=538767705928');
INSERT INTO `thumbs_match` VALUES ('112', '38', 'https://gd4.alicdn.com/imgextra/i2/387033519/TB2vUbYtXXXXXbdXpXXXXXXXXXX_!!387033519.jpg', 'http://detail.tmall.com/item.htm?id=535908743930');
INSERT INTO `thumbs_match` VALUES ('113', '38', 'https://gd1.alicdn.com/imgextra/i3/2008745432/TB2c1I5aqnyQeBjSsphXXXiuVXa_!!2008745432.jpg', 'http://detail.tmall.com/item.htm?id=529750359921');
INSERT INTO `thumbs_match` VALUES ('114', '39', 'https://img.alicdn.com/bao/uploaded/i3/TB1fjtEOXXXXXaIXFXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=539648664054');
INSERT INTO `thumbs_match` VALUES ('115', '39', 'https://gd3.alicdn.com/imgextra/i2/0/TB1mIzWJpXXXXbUXXXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=522051399689');
INSERT INTO `thumbs_match` VALUES ('116', '39', 'https://img.alicdn.com/imgextra/i3/2635727369/TB2OOPPa1rAQeBjSZFrXXbSvFXa_!!2635727369.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538017255696');
INSERT INTO `thumbs_match` VALUES ('117', '40', 'https://gd1.alicdn.com/imgextra/i2/0/TB1LHu3KFXXXXaZXVXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=524769629628');
INSERT INTO `thumbs_match` VALUES ('118', '40', 'https://gd4.alicdn.com/imgextra/i1/373624515/TB2wgyDbsaK.eBjSspjXXXL.XXa_!!373624515.jpg', 'http://detail.tmall.com/item.htm?id=538030953633');
INSERT INTO `thumbs_match` VALUES ('119', '40', 'https://gd3.alicdn.com/imgextra/i2/TB1WwyxLXXXXXcSaXXXYXGcGpXX_M2.SS2', 'http://detail.tmall.com/item.htm?id=43890990908');
INSERT INTO `thumbs_match` VALUES ('120', '41', 'https://img.alicdn.com/bao/uploaded/i1/TB1N2iFNFXXXXa1XpXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538678442347');
INSERT INTO `thumbs_match` VALUES ('121', '41', 'https://gd1.alicdn.com/imgextra/i1/783856955/TB2ykn5sVXXXXXGXpXXXXXXXXXX_!!783856955.jpg', 'http://detail.tmall.com/item.htm?id=535831244298');
INSERT INTO `thumbs_match` VALUES ('122', '41', 'https://img.alicdn.com/bao/uploaded/i4/TB1CzdBKFXXXXXQXVXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=534306662422');
INSERT INTO `thumbs_match` VALUES ('123', '42', 'https://gd1.alicdn.com/imgextra/i2/768266868/TB2ln8Qaae5V1Bjy1zjXXa08VXa_!!768266868.jpg', 'http://detail.tmall.com/item.htm?id=537329141887');
INSERT INTO `thumbs_match` VALUES ('124', '42', 'https://gd3.alicdn.com/imgextra/i2/768266868/TB21QyTpXXXXXXqXpXXXXXXXXXX_!!768266868.jpg', 'http://detail.tmall.com/item.htm?id=531947238248');
INSERT INTO `thumbs_match` VALUES ('125', '42', 'https://gd4.alicdn.com/imgextra/i4/739468334/TB2jE8IXxoa61Bjy0FaXXcHwpXa_!!739468334.jpg', 'http://detail.tmall.com/item.htm?id=521376032406');
INSERT INTO `thumbs_match` VALUES ('126', '43', 'https://gd3.alicdn.com/imgextra/i1/2460603829/TB2rhGFaGi5V1BjSspnXXa.3XXa_!!2460603829.jpg', 'http://detail.tmall.com/item.htm?id=538291566998');
INSERT INTO `thumbs_match` VALUES ('127', '43', 'https://gd3.alicdn.com/imgextra/i3/1092567625/TB2xFBQspXXXXXoXXXXXXXXXXXX_!!1092567625.jpg', 'http://detail.tmall.com/item.htm?id=534788951457');
INSERT INTO `thumbs_match` VALUES ('128', '43', 'https://gd4.alicdn.com/imgextra/i2/235066697/TB2IG1BXc3X61BjSszdXXXoAVXa_!!235066697.jpg', 'http://detail.tmall.com/item.htm?id=538361149493');
INSERT INTO `thumbs_match` VALUES ('129', '44', 'https://gd2.alicdn.com/imgextra/i4/1027622206/TB2AfLduXXXXXbuXXXXXXXXXXXX_!!1027622206.jpg', 'http://detail.tmall.com/item.htm?id=521648824160');
INSERT INTO `thumbs_match` VALUES ('130', '44', 'https://gd4.alicdn.com/imgextra/i2/10488217/TB2B6xhXhAb61BjSZFBXXc9pFXa_!!10488217.jpg', 'http://detail.tmall.com/item.htm?id=524013422635');
INSERT INTO `thumbs_match` VALUES ('131', '44', 'https://img.alicdn.com/bao/uploaded/i3/TB1Q0NaMXXXXXc_XVXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=528538507343');
INSERT INTO `thumbs_match` VALUES ('132', '45', 'https://img.alicdn.com/imgextra/i3/TB1SeZDKVXXXXbXaXXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=536029741756');
INSERT INTO `thumbs_match` VALUES ('133', '45', 'https://gd1.alicdn.com/imgextra/i2/768266868/TB20JO5aVOP.eBjSZFHXXXQnpXa_!!768266868.jpg', 'http://detail.tmall.com/item.htm?id=531993296800');
INSERT INTO `thumbs_match` VALUES ('134', '45', 'https://img.alicdn.com/bao/uploaded/i4/TB1OLpHLpXXXXXSapXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=536802699688');
INSERT INTO `thumbs_match` VALUES ('135', '46', 'https://img.alicdn.com/bao/uploaded/i4/TB1qnFrKFXXXXctXFXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=534293017052');
INSERT INTO `thumbs_match` VALUES ('136', '46', 'https://gd4.alicdn.com/imgextra/i3/1663092773/TB2DpVFX6fyQeBjy0FpXXcXCFXa_!!1663092773.jpg', 'http://detail.tmall.com/item.htm?id=537292665217');
INSERT INTO `thumbs_match` VALUES ('137', '46', 'https://img.alicdn.com/bao/uploaded/i3/TB1XzGLLXXXXXbIapXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=534620112000');
INSERT INTO `thumbs_match` VALUES ('138', '47', 'https://gd3.alicdn.com/imgextra/i3/0/TB1XIE.MVXXXXXbXpXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=537705963816');
INSERT INTO `thumbs_match` VALUES ('139', '47', 'https://gd3.alicdn.com/imgextra/i4/2467387817/TB2nEeCaF15V1Bjy1XbXXaNcVXa_!!2467387817.jpg', 'http://detail.tmall.com/item.htm?id=538382105091');
INSERT INTO `thumbs_match` VALUES ('140', '47', 'https://gd3.alicdn.com/imgextra/i4/2514062072/TB2i3Z8mpXXXXanXpXXXXXXXXXX_!!2514062072.jpg', 'http://detail.tmall.com/item.htm?id=529467613810');
INSERT INTO `thumbs_match` VALUES ('141', '48', 'https://img.alicdn.com/bao/uploaded/i2/TB1Gf06NVXXXXbYXpXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538666301323');
INSERT INTO `thumbs_match` VALUES ('142', '48', 'https://gd4.alicdn.com/imgextra/i1/2594671088/TB2PWQ1XbnA11Bjy0FjXXapoFXa_!!2594671088.jpg', 'http://detail.tmall.com/item.htm?id=538495451698');
INSERT INTO `thumbs_match` VALUES ('143', '48', 'https://img.alicdn.com/bao/uploaded/i3/TB1qT7KMVXXXXc3XpXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538525822141');
INSERT INTO `thumbs_match` VALUES ('144', '49', 'https://gd4.alicdn.com/imgextra/i3/57709795/TB2o3Vxab3c61BjSZFMXXbxIVXa_!!57709795.jpg', 'http://detail.tmall.com/item.htm?id=539779785113');
INSERT INTO `thumbs_match` VALUES ('145', '49', 'https://gd2.alicdn.com/imgextra/i2/715022986/TB2YReaX9Zb61BjSZFqXXcWVVXa_!!715022986.jpg', 'http://detail.tmall.com/item.htm?id=539704115845');
INSERT INTO `thumbs_match` VALUES ('146', '49', 'https://img.alicdn.com/imgextra/i3/2167941789/TB2woFwXZeK.eBjSszgXXczFpXa_!!2167941789.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538320824829');
INSERT INTO `thumbs_match` VALUES ('147', '50', 'https://gd2.alicdn.com/imgextra/i2/75160289/TB2JJjoalLzQeBjSZFoXXc5gFXa_!!75160289.jpg', 'http://detail.tmall.com/item.htm?id=537964007100');
INSERT INTO `thumbs_match` VALUES ('148', '50', 'https://gd1.alicdn.com/imgextra/i1/0/TB16yAVNXXXXXbLXFXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=536255378150');
INSERT INTO `thumbs_match` VALUES ('149', '50', 'https://gd2.alicdn.com/imgextra/i2/75160289/TB2IGpyXBPzQeBjSZFlXXccIVXa_!!75160289.jpg', 'http://detail.tmall.com/item.htm?id=537281588434');
INSERT INTO `thumbs_match` VALUES ('150', '51', 'https://gd2.alicdn.com/imgextra/i3/0/TB1NoryNXXXXXcXXpXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=538305033004');
INSERT INTO `thumbs_match` VALUES ('151', '51', 'https://gd1.alicdn.com/imgextra/i3/667219840/TB21QTfiVXXXXbMXpXXXXXXXXXX_!!667219840.jpg', 'http://detail.tmall.com/item.htm?id=521645004188');
INSERT INTO `thumbs_match` VALUES ('152', '51', 'https://img.alicdn.com/bao/uploaded/i3/TB1isZGLXXXXXatXXXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=536661198245');
INSERT INTO `thumbs_match` VALUES ('153', '52', 'https://gd3.alicdn.com/imgextra/i3/394201073/TB2p6NGaWnyQeBjSsphXXXiuVXa_!!394201073.jpg', 'http://detail.tmall.com/item.htm?id=537750648148');
INSERT INTO `thumbs_match` VALUES ('154', '52', 'https://gd1.alicdn.com/imgextra/i3/736615031/TB2LnM8lXXXXXaxXXXXXXXXXXXX_!!736615031.jpg', 'http://detail.tmall.com/item.htm?id=527874323952');
INSERT INTO `thumbs_match` VALUES ('155', '52', 'https://gd4.alicdn.com/imgextra/i2/2509951728/TB20W38uXXXXXbuXXXXXXXXXXXX_!!2509951728.jpg', 'http://detail.tmall.com/item.htm?id=536837971007');
INSERT INTO `thumbs_match` VALUES ('156', '53', 'https://img.alicdn.com/bao/uploaded/i2/TB1K0D5NXXXXXbzXFXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=538291471579');
INSERT INTO `thumbs_match` VALUES ('157', '53', 'https://img.alicdn.com/bao/uploaded/i1/TB1dQsFNVXXXXXzXXXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=531677274458');
INSERT INTO `thumbs_match` VALUES ('158', '53', 'https://img.alicdn.com/bao/uploaded/i1/TB1dQsFNVXXXXXzXXXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=521815914688');
INSERT INTO `thumbs_match` VALUES ('159', '54', 'https://img.alicdn.com/bao/uploaded/i4/TB1PKxDOXXXXXXhaVXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=522103987268');
INSERT INTO `thumbs_match` VALUES ('160', '54', 'https://gd3.alicdn.com/imgextra/i2/0/TB1ldscHpXXXXcGXpXXXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=44548196381');
INSERT INTO `thumbs_match` VALUES ('161', '54', 'https://img.alicdn.com/imgextra/i3/2104941057/TB2lbhAfXXXXXbSXXXXXXXXXXXX_!!2104941057.png_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=521815914688');
INSERT INTO `thumbs_match` VALUES ('162', '55', 'https://img.alicdn.com/bao/uploaded/i3/TB1R4qANFXXXXXPXpXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=20946267555');
INSERT INTO `thumbs_match` VALUES ('163', '55', 'https://gd4.alicdn.com/imgextra/i2/60209246/TB2tcm6mpXXXXbpXXXXXXXXXXXX_!!60209246.jpg', 'http://detail.tmall.com/item.htm?id=522869860051');
INSERT INTO `thumbs_match` VALUES ('164', '55', 'https://img.alicdn.com/bao/uploaded/i3/TB1ybEcIpXXXXcxXpXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=42219887660');
INSERT INTO `thumbs_match` VALUES ('165', '56', 'https://img.alicdn.com/bao/uploaded/i4/TB11fBcJpXXXXbwXFXXXXXXXXXX_!!0-item_pic.jpg_430x430q90.jpg', 'http://detail.tmall.com/item.htm?id=521321398010');
INSERT INTO `thumbs_match` VALUES ('166', '56', 'https://gd2.alicdn.com/imgextra/i3/658159234/TB2g53Iaqm5V1BjSspjXXcGFpXa_!!658159234.jpg', 'http://detail.tmall.com/item.htm?id=536379609189');
INSERT INTO `thumbs_match` VALUES ('167', '56', 'https://gd3.alicdn.com/imgextra/i4/0/T1dR9uFqleXXXXXXXX_!!0-item_pic.jpg', 'http://detail.tmall.com/item.htm?id=532134930407');
|
<reponame>Fanqie22/microcloud
/*
Navicat Premium Data Transfer
Source Server : root
Source Server Type : MySQL
Source Server Version : 50724
Source Host : localhost:3306
Source Schema : microclouds
Target Server Type : MySQL
Target Server Version : 50724
File Encoding : 65001
Date: 23/12/2018 23:44:27
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for area
-- ----------------------------
DROP TABLE IF EXISTS `area`;
CREATE TABLE `area` (
`id` int(11) NOT NULL COMMENT '自增id',
`area_code` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '区域的编码',
`area_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '区域的名字',
`city_code` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '区域对应的的城市',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of area
-- ----------------------------
INSERT INTO `area` VALUES (1, '110101', '东城区', '110100');
INSERT INTO `area` VALUES (2, '110102', '西城区', '110100');
INSERT INTO `area` VALUES (3, '110103', '崇文区', '110100');
INSERT INTO `area` VALUES (4, '110104', '宣武区', '110100');
INSERT INTO `area` VALUES (5, '110105', '朝阳区', '110100');
INSERT INTO `area` VALUES (6, '110106', '丰台区', '110100');
INSERT INTO `area` VALUES (7, '110107', '石景山区', '110100');
INSERT INTO `area` VALUES (8, '110108', '海淀区', '110100');
INSERT INTO `area` VALUES (9, '110109', '门头沟区', '110100');
INSERT INTO `area` VALUES (10, '110111', '房山区', '110100');
INSERT INTO `area` VALUES (11, '110112', '通州区', '110100');
INSERT INTO `area` VALUES (12, '110113', '顺义区', '110100');
INSERT INTO `area` VALUES (13, '110114', '昌平区', '110100');
INSERT INTO `area` VALUES (14, '110115', '大兴区', '110100');
INSERT INTO `area` VALUES (15, '110116', '怀柔区', '110100');
INSERT INTO `area` VALUES (16, '110117', '平谷区', '110100');
INSERT INTO `area` VALUES (17, '110228', '密云县', '110200');
INSERT INTO `area` VALUES (18, '110229', '延庆县', '110200');
INSERT INTO `area` VALUES (19, '120101', '和平区', '120100');
INSERT INTO `area` VALUES (20, '120102', '河东区', '120100');
INSERT INTO `area` VALUES (21, '120103', '河西区', '120100');
INSERT INTO `area` VALUES (22, '120104', '南开区', '120100');
INSERT INTO `area` VALUES (23, '120105', '河北区', '120100');
INSERT INTO `area` VALUES (24, '120106', '红桥区', '120100');
INSERT INTO `area` VALUES (25, '120107', '塘沽区', '120100');
INSERT INTO `area` VALUES (26, '120108', '汉沽区', '120100');
INSERT INTO `area` VALUES (27, '120109', '大港区', '120100');
INSERT INTO `area` VALUES (28, '120110', '东丽区', '120100');
INSERT INTO `area` VALUES (29, '120111', '西青区', '120100');
INSERT INTO `area` VALUES (30, '120112', '津南区', '120100');
INSERT INTO `area` VALUES (31, '120113', '北辰区', '120100');
INSERT INTO `area` VALUES (32, '120114', '武清区', '120100');
INSERT INTO `area` VALUES (33, '120115', '宝坻区', '120100');
INSERT INTO `area` VALUES (34, '120221', '宁河县', '120200');
INSERT INTO `area` VALUES (35, '120223', '静海县', '120200');
INSERT INTO `area` VALUES (36, '120225', '蓟 县', '120200');
INSERT INTO `area` VALUES (37, '130101', '市辖区', '130100');
INSERT INTO `area` VALUES (38, '130102', '长安区', '130100');
INSERT INTO `area` VALUES (39, '130103', '桥东区', '130100');
INSERT INTO `area` VALUES (40, '130104', '桥西区', '130100');
INSERT INTO `area` VALUES (41, '130105', '新华区', '130100');
INSERT INTO `area` VALUES (42, '130107', '井陉矿区', '130100');
INSERT INTO `area` VALUES (43, '130108', '裕华区', '130100');
INSERT INTO `area` VALUES (44, '130121', '井陉县', '130100');
INSERT INTO `area` VALUES (45, '130123', '正定县', '130100');
INSERT INTO `area` VALUES (46, '130124', '栾城县', '130100');
INSERT INTO `area` VALUES (47, '130125', '行唐县', '130100');
INSERT INTO `area` VALUES (48, '130126', '灵寿县', '130100');
INSERT INTO `area` VALUES (49, '130127', '高邑县', '130100');
INSERT INTO `area` VALUES (50, '130128', '深泽县', '130100');
INSERT INTO `area` VALUES (51, '130129', '赞皇县', '130100');
INSERT INTO `area` VALUES (52, '130130', '无极县', '130100');
INSERT INTO `area` VALUES (53, '130131', '平山县', '130100');
INSERT INTO `area` VALUES (54, '130132', '元氏县', '130100');
INSERT INTO `area` VALUES (55, '130133', '赵 县', '130100');
INSERT INTO `area` VALUES (56, '130181', '辛集市', '130100');
INSERT INTO `area` VALUES (57, '130182', '藁城市', '130100');
INSERT INTO `area` VALUES (58, '130183', '晋州市', '130100');
INSERT INTO `area` VALUES (59, '130184', '新乐市', '130100');
INSERT INTO `area` VALUES (60, '130185', '鹿泉市', '130100');
INSERT INTO `area` VALUES (61, '130201', '市辖区', '130200');
INSERT INTO `area` VALUES (62, '130202', '路南区', '130200');
INSERT INTO `area` VALUES (63, '130203', '路北区', '130200');
INSERT INTO `area` VALUES (64, '130204', '古冶区', '130200');
INSERT INTO `area` VALUES (65, '130205', '开平区', '130200');
INSERT INTO `area` VALUES (66, '130207', '丰南区', '130200');
INSERT INTO `area` VALUES (67, '130208', '丰润区', '130200');
INSERT INTO `area` VALUES (68, '130223', '滦 县', '130200');
INSERT INTO `area` VALUES (69, '130224', '滦南县', '130200');
INSERT INTO `area` VALUES (70, '130225', '乐亭县', '130200');
INSERT INTO `area` VALUES (71, '130227', '迁西县', '130200');
INSERT INTO `area` VALUES (72, '130229', '玉田县', '130200');
INSERT INTO `area` VALUES (73, '130230', '唐海县', '130200');
INSERT INTO `area` VALUES (74, '130281', '遵化市', '130200');
INSERT INTO `area` VALUES (75, '130283', '迁安市', '130200');
INSERT INTO `area` VALUES (76, '130301', '市辖区', '130300');
INSERT INTO `area` VALUES (77, '130302', '海港区', '130300');
INSERT INTO `area` VALUES (78, '130303', '山海关区', '130300');
INSERT INTO `area` VALUES (79, '130304', '北戴河区', '130300');
INSERT INTO `area` VALUES (80, '130321', '青龙满族自治县', '130300');
INSERT INTO `area` VALUES (81, '130322', '昌黎县', '130300');
INSERT INTO `area` VALUES (82, '130323', '抚宁县', '130300');
INSERT INTO `area` VALUES (83, '130324', '卢龙县', '130300');
INSERT INTO `area` VALUES (84, '130401', '市辖区', '130400');
INSERT INTO `area` VALUES (85, '130402', '邯山区', '130400');
INSERT INTO `area` VALUES (86, '130403', '丛台区', '130400');
INSERT INTO `area` VALUES (87, '130404', '复兴区', '130400');
INSERT INTO `area` VALUES (88, '130406', '峰峰矿区', '130400');
INSERT INTO `area` VALUES (89, '130421', '邯郸县', '130400');
INSERT INTO `area` VALUES (90, '130423', '临漳县', '130400');
INSERT INTO `area` VALUES (91, '130424', '成安县', '130400');
INSERT INTO `area` VALUES (92, '130425', '大名县', '130400');
INSERT INTO `area` VALUES (93, '130426', '涉 县', '130400');
INSERT INTO `area` VALUES (94, '130427', '磁 县', '130400');
INSERT INTO `area` VALUES (95, '130428', '肥乡县', '130400');
INSERT INTO `area` VALUES (96, '130429', '永年县', '130400');
INSERT INTO `area` VALUES (97, '130430', '邱 县', '130400');
INSERT INTO `area` VALUES (98, '130431', '鸡泽县', '130400');
INSERT INTO `area` VALUES (99, '130432', '广平县', '130400');
INSERT INTO `area` VALUES (100, '130433', '馆陶县', '130400');
INSERT INTO `area` VALUES (101, '130434', '魏 县', '130400');
INSERT INTO `area` VALUES (102, '130435', '曲周县', '130400');
INSERT INTO `area` VALUES (103, '130481', '武安市', '130400');
INSERT INTO `area` VALUES (104, '130501', '市辖区', '130500');
INSERT INTO `area` VALUES (105, '130502', '桥东区', '130500');
INSERT INTO `area` VALUES (106, '130503', '桥西区', '130500');
INSERT INTO `area` VALUES (107, '130521', '邢台县', '130500');
INSERT INTO `area` VALUES (108, '130522', '临城县', '130500');
INSERT INTO `area` VALUES (109, '130523', '内丘县', '130500');
INSERT INTO `area` VALUES (110, '130524', '柏乡县', '130500');
INSERT INTO `area` VALUES (111, '130525', '隆尧县', '130500');
INSERT INTO `area` VALUES (112, '130526', '任 县', '130500');
INSERT INTO `area` VALUES (113, '130527', '南和县', '130500');
INSERT INTO `area` VALUES (114, '130528', '宁晋县', '130500');
INSERT INTO `area` VALUES (115, '130529', '巨鹿县', '130500');
INSERT INTO `area` VALUES (116, '130530', '新河县', '130500');
INSERT INTO `area` VALUES (117, '130531', '广宗县', '130500');
INSERT INTO `area` VALUES (118, '130532', '平乡县', '130500');
INSERT INTO `area` VALUES (119, '130533', '威 县', '130500');
INSERT INTO `area` VALUES (120, '130534', '清河县', '130500');
INSERT INTO `area` VALUES (121, '130535', '临西县', '130500');
INSERT INTO `area` VALUES (122, '130581', '南宫市', '130500');
INSERT INTO `area` VALUES (123, '130582', '沙河市', '130500');
INSERT INTO `area` VALUES (124, '130601', '市辖区', '130600');
INSERT INTO `area` VALUES (125, '130602', '新市区', '130600');
INSERT INTO `area` VALUES (126, '130603', '北市区', '130600');
INSERT INTO `area` VALUES (127, '130604', '南市区', '130600');
INSERT INTO `area` VALUES (128, '130621', '满城县', '130600');
INSERT INTO `area` VALUES (129, '130622', '清苑县', '130600');
INSERT INTO `area` VALUES (130, '130623', '涞水县', '130600');
INSERT INTO `area` VALUES (131, '130624', '阜平县', '130600');
INSERT INTO `area` VALUES (132, '130625', '徐水县', '130600');
INSERT INTO `area` VALUES (133, '130626', '定兴县', '130600');
INSERT INTO `area` VALUES (134, '130627', '唐 县', '130600');
INSERT INTO `area` VALUES (135, '130628', '高阳县', '130600');
INSERT INTO `area` VALUES (136, '130629', '容城县', '130600');
INSERT INTO `area` VALUES (137, '130630', '涞源县', '130600');
INSERT INTO `area` VALUES (138, '130631', '望都县', '130600');
INSERT INTO `area` VALUES (139, '130632', '安新县', '130600');
INSERT INTO `area` VALUES (140, '130633', '易 县', '130600');
INSERT INTO `area` VALUES (141, '130634', '曲阳县', '130600');
INSERT INTO `area` VALUES (142, '130635', '蠡 县', '130600');
INSERT INTO `area` VALUES (143, '130636', '顺平县', '130600');
INSERT INTO `area` VALUES (144, '130637', '博野县', '130600');
INSERT INTO `area` VALUES (145, '130638', '雄 县', '130600');
INSERT INTO `area` VALUES (146, '130681', '涿州市', '130600');
INSERT INTO `area` VALUES (147, '130682', '定州市', '130600');
INSERT INTO `area` VALUES (148, '130683', '安国市', '130600');
INSERT INTO `area` VALUES (149, '130684', '高碑店市', '130600');
INSERT INTO `area` VALUES (150, '130701', '市辖区', '130700');
INSERT INTO `area` VALUES (151, '130702', '桥东区', '130700');
INSERT INTO `area` VALUES (152, '130703', '桥西区', '130700');
INSERT INTO `area` VALUES (153, '130705', '宣化区', '130700');
INSERT INTO `area` VALUES (154, '130706', '下花园区', '130700');
INSERT INTO `area` VALUES (155, '130721', '宣化县', '130700');
INSERT INTO `area` VALUES (156, '130722', '张北县', '130700');
INSERT INTO `area` VALUES (157, '130723', '康保县', '130700');
INSERT INTO `area` VALUES (158, '130724', '沽源县', '130700');
INSERT INTO `area` VALUES (159, '130725', '尚义县', '130700');
INSERT INTO `area` VALUES (160, '130726', '蔚 县', '130700');
INSERT INTO `area` VALUES (161, '130727', '阳原县', '130700');
INSERT INTO `area` VALUES (162, '130728', '怀安县', '130700');
INSERT INTO `area` VALUES (163, '130729', '万全县', '130700');
INSERT INTO `area` VALUES (164, '130730', '怀来县', '130700');
INSERT INTO `area` VALUES (165, '130731', '涿鹿县', '130700');
INSERT INTO `area` VALUES (166, '130732', '赤城县', '130700');
INSERT INTO `area` VALUES (167, '130733', '崇礼县', '130700');
INSERT INTO `area` VALUES (168, '130801', '市辖区', '130800');
INSERT INTO `area` VALUES (169, '130802', '双桥区', '130800');
INSERT INTO `area` VALUES (170, '130803', '双滦区', '130800');
INSERT INTO `area` VALUES (171, '130804', '鹰手营子矿区', '130800');
INSERT INTO `area` VALUES (172, '130821', '承德县', '130800');
INSERT INTO `area` VALUES (173, '130822', '兴隆县', '130800');
INSERT INTO `area` VALUES (174, '130823', '平泉县', '130800');
INSERT INTO `area` VALUES (175, '130824', '滦平县', '130800');
INSERT INTO `area` VALUES (176, '130825', '隆化县', '130800');
INSERT INTO `area` VALUES (177, '130826', '丰宁满族自治县', '130800');
INSERT INTO `area` VALUES (178, '130827', '宽城满族自治县', '130800');
INSERT INTO `area` VALUES (179, '130828', '围场满族蒙古族自治县', '130800');
INSERT INTO `area` VALUES (180, '130901', '市辖区', '130900');
INSERT INTO `area` VALUES (181, '130902', '新华区', '130900');
INSERT INTO `area` VALUES (182, '130903', '运河区', '130900');
INSERT INTO `area` VALUES (183, '130921', '沧 县', '130900');
INSERT INTO `area` VALUES (184, '130922', '青 县', '130900');
INSERT INTO `area` VALUES (185, '130923', '东光县', '130900');
INSERT INTO `area` VALUES (186, '130924', '海兴县', '130900');
INSERT INTO `area` VALUES (187, '130925', '盐山县', '130900');
INSERT INTO `area` VALUES (188, '130926', '肃宁县', '130900');
INSERT INTO `area` VALUES (189, '130927', '南皮县', '130900');
INSERT INTO `area` VALUES (190, '130928', '吴桥县', '130900');
INSERT INTO `area` VALUES (191, '130929', '献 县', '130900');
INSERT INTO `area` VALUES (192, '130930', '孟村回族自治县', '130900');
INSERT INTO `area` VALUES (193, '130981', '泊头市', '130900');
INSERT INTO `area` VALUES (194, '130982', '任丘市', '130900');
INSERT INTO `area` VALUES (195, '130983', '黄骅市', '130900');
INSERT INTO `area` VALUES (196, '130984', '河间市', '130900');
INSERT INTO `area` VALUES (197, '131001', '市辖区', '131000');
INSERT INTO `area` VALUES (198, '131002', '安次区', '131000');
INSERT INTO `area` VALUES (199, '131003', '广阳区', '131000');
INSERT INTO `area` VALUES (200, '131022', '固安县', '131000');
INSERT INTO `area` VALUES (201, '131023', '永清县', '131000');
INSERT INTO `area` VALUES (202, '131024', '香河县', '131000');
INSERT INTO `area` VALUES (203, '131025', '大城县', '131000');
INSERT INTO `area` VALUES (204, '131026', '文安县', '131000');
INSERT INTO `area` VALUES (205, '131028', '大厂回族自治县', '131000');
INSERT INTO `area` VALUES (206, '131081', '霸州市', '131000');
INSERT INTO `area` VALUES (207, '131082', '三河市', '131000');
INSERT INTO `area` VALUES (208, '131101', '市辖区', '131100');
INSERT INTO `area` VALUES (209, '131102', '桃城区', '131100');
INSERT INTO `area` VALUES (210, '131121', '枣强县', '131100');
INSERT INTO `area` VALUES (211, '131122', '武邑县', '131100');
INSERT INTO `area` VALUES (212, '131123', '武强县', '131100');
INSERT INTO `area` VALUES (213, '131124', '饶阳县', '131100');
INSERT INTO `area` VALUES (214, '131125', '安平县', '131100');
INSERT INTO `area` VALUES (215, '131126', '故城县', '131100');
INSERT INTO `area` VALUES (216, '131127', '景 县', '131100');
INSERT INTO `area` VALUES (217, '131128', '阜城县', '131100');
INSERT INTO `area` VALUES (218, '131181', '冀州市', '131100');
INSERT INTO `area` VALUES (219, '131182', '深州市', '131100');
INSERT INTO `area` VALUES (220, '140101', '市辖区', '140100');
INSERT INTO `area` VALUES (221, '140105', '小店区', '140100');
INSERT INTO `area` VALUES (222, '140106', '迎泽区', '140100');
INSERT INTO `area` VALUES (223, '140107', '杏花岭区', '140100');
INSERT INTO `area` VALUES (224, '140108', '尖草坪区', '140100');
INSERT INTO `area` VALUES (225, '140109', '万柏林区', '140100');
INSERT INTO `area` VALUES (226, '140110', '晋源区', '140100');
INSERT INTO `area` VALUES (227, '140121', '清徐县', '140100');
INSERT INTO `area` VALUES (228, '140122', '阳曲县', '140100');
INSERT INTO `area` VALUES (229, '140123', '娄烦县', '140100');
INSERT INTO `area` VALUES (230, '140181', '古交市', '140100');
INSERT INTO `area` VALUES (231, '140201', '市辖区', '140200');
INSERT INTO `area` VALUES (232, '140202', '城 区', '140200');
INSERT INTO `area` VALUES (233, '140203', '矿 区', '140200');
INSERT INTO `area` VALUES (234, '140211', '南郊区', '140200');
INSERT INTO `area` VALUES (235, '140212', '新荣区', '140200');
INSERT INTO `area` VALUES (236, '140221', '阳高县', '140200');
INSERT INTO `area` VALUES (237, '140222', '天镇县', '140200');
INSERT INTO `area` VALUES (238, '140223', '广灵县', '140200');
INSERT INTO `area` VALUES (239, '140224', '灵丘县', '140200');
INSERT INTO `area` VALUES (240, '140225', '浑源县', '140200');
INSERT INTO `area` VALUES (241, '140226', '左云县', '140200');
INSERT INTO `area` VALUES (242, '140227', '大同县', '140200');
INSERT INTO `area` VALUES (243, '140301', '市辖区', '140300');
INSERT INTO `area` VALUES (244, '140302', '城 区', '140300');
INSERT INTO `area` VALUES (245, '140303', '矿 区', '140300');
INSERT INTO `area` VALUES (246, '140311', '郊 区', '140300');
INSERT INTO `area` VALUES (247, '140321', '平定县', '140300');
INSERT INTO `area` VALUES (248, '140322', '盂 县', '140300');
INSERT INTO `area` VALUES (249, '140401', '市辖区', '140400');
INSERT INTO `area` VALUES (250, '140402', '城 区', '140400');
INSERT INTO `area` VALUES (251, '140411', '郊 区', '140400');
INSERT INTO `area` VALUES (252, '140421', '长治县', '140400');
INSERT INTO `area` VALUES (253, '140423', '襄垣县', '140400');
INSERT INTO `area` VALUES (254, '140424', '屯留县', '140400');
INSERT INTO `area` VALUES (255, '140425', '平顺县', '140400');
INSERT INTO `area` VALUES (256, '140426', '黎城县', '140400');
INSERT INTO `area` VALUES (257, '140427', '壶关县', '140400');
INSERT INTO `area` VALUES (258, '140428', '长子县', '140400');
INSERT INTO `area` VALUES (259, '140429', '武乡县', '140400');
INSERT INTO `area` VALUES (260, '140430', '沁 县', '140400');
INSERT INTO `area` VALUES (261, '140431', '沁源县', '140400');
INSERT INTO `area` VALUES (262, '140481', '潞城市', '140400');
INSERT INTO `area` VALUES (263, '140501', '市辖区', '140500');
INSERT INTO `area` VALUES (264, '140502', '城 区', '140500');
INSERT INTO `area` VALUES (265, '140521', '沁水县', '140500');
INSERT INTO `area` VALUES (266, '140522', '阳城县', '140500');
INSERT INTO `area` VALUES (267, '140524', '陵川县', '140500');
INSERT INTO `area` VALUES (268, '140525', '泽州县', '140500');
INSERT INTO `area` VALUES (269, '140581', '高平市', '140500');
INSERT INTO `area` VALUES (270, '140601', '市辖区', '140600');
INSERT INTO `area` VALUES (271, '140602', '朔城区', '140600');
INSERT INTO `area` VALUES (272, '140603', '平鲁区', '140600');
INSERT INTO `area` VALUES (273, '140621', '山阴县', '140600');
INSERT INTO `area` VALUES (274, '140622', '应 县', '140600');
INSERT INTO `area` VALUES (275, '140623', '右玉县', '140600');
INSERT INTO `area` VALUES (276, '140624', '怀仁县', '140600');
INSERT INTO `area` VALUES (277, '140701', '市辖区', '140700');
INSERT INTO `area` VALUES (278, '140702', '榆次区', '140700');
INSERT INTO `area` VALUES (279, '140721', '榆社县', '140700');
INSERT INTO `area` VALUES (280, '140722', '左权县', '140700');
INSERT INTO `area` VALUES (281, '140723', '和顺县', '140700');
INSERT INTO `area` VALUES (282, '140724', '昔阳县', '140700');
INSERT INTO `area` VALUES (283, '140725', '寿阳县', '140700');
INSERT INTO `area` VALUES (284, '140726', '太谷县', '140700');
INSERT INTO `area` VALUES (285, '140727', '祁 县', '140700');
INSERT INTO `area` VALUES (286, '140728', '平遥县', '140700');
INSERT INTO `area` VALUES (287, '140729', '灵石县', '140700');
INSERT INTO `area` VALUES (288, '140781', '介休市', '140700');
INSERT INTO `area` VALUES (289, '140801', '市辖区', '140800');
INSERT INTO `area` VALUES (290, '140802', '盐湖区', '140800');
INSERT INTO `area` VALUES (291, '140821', '临猗县', '140800');
INSERT INTO `area` VALUES (292, '140822', '万荣县', '140800');
INSERT INTO `area` VALUES (293, '140823', '闻喜县', '140800');
INSERT INTO `area` VALUES (294, '140824', '稷山县', '140800');
INSERT INTO `area` VALUES (295, '140825', '新绛县', '140800');
INSERT INTO `area` VALUES (296, '140826', '绛 县', '140800');
INSERT INTO `area` VALUES (297, '140827', '垣曲县', '140800');
INSERT INTO `area` VALUES (298, '140828', '夏 县', '140800');
INSERT INTO `area` VALUES (299, '140829', '平陆县', '140800');
INSERT INTO `area` VALUES (300, '140830', '芮城县', '140800');
INSERT INTO `area` VALUES (301, '140881', '永济市', '140800');
INSERT INTO `area` VALUES (302, '140882', '河津市', '140800');
INSERT INTO `area` VALUES (303, '140901', '市辖区', '140900');
INSERT INTO `area` VALUES (304, '140902', '忻府区', '140900');
INSERT INTO `area` VALUES (305, '140921', '定襄县', '140900');
INSERT INTO `area` VALUES (306, '140922', '五台县', '140900');
INSERT INTO `area` VALUES (307, '140923', '代 县', '140900');
INSERT INTO `area` VALUES (308, '140924', '繁峙县', '140900');
INSERT INTO `area` VALUES (309, '140925', '宁武县', '140900');
INSERT INTO `area` VALUES (310, '140926', '静乐县', '140900');
INSERT INTO `area` VALUES (311, '140927', '神池县', '140900');
INSERT INTO `area` VALUES (312, '140928', '五寨县', '140900');
INSERT INTO `area` VALUES (313, '140929', '岢岚县', '140900');
INSERT INTO `area` VALUES (314, '140930', '河曲县', '140900');
INSERT INTO `area` VALUES (315, '140931', '保德县', '140900');
INSERT INTO `area` VALUES (316, '140932', '偏关县', '140900');
INSERT INTO `area` VALUES (317, '140981', '原平市', '140900');
INSERT INTO `area` VALUES (318, '141001', '市辖区', '141000');
INSERT INTO `area` VALUES (319, '141002', '尧都区', '141000');
INSERT INTO `area` VALUES (320, '141021', '曲沃县', '141000');
INSERT INTO `area` VALUES (321, '141022', '翼城县', '141000');
INSERT INTO `area` VALUES (322, '141023', '襄汾县', '141000');
INSERT INTO `area` VALUES (323, '141024', '洪洞县', '141000');
INSERT INTO `area` VALUES (324, '141025', '古 县', '141000');
INSERT INTO `area` VALUES (325, '141026', '安泽县', '141000');
INSERT INTO `area` VALUES (326, '141027', '浮山县', '141000');
INSERT INTO `area` VALUES (327, '141028', '吉 县', '141000');
INSERT INTO `area` VALUES (328, '141029', '乡宁县', '141000');
INSERT INTO `area` VALUES (329, '141030', '大宁县', '141000');
INSERT INTO `area` VALUES (330, '141031', '隰 县', '141000');
INSERT INTO `area` VALUES (331, '141032', '永和县', '141000');
INSERT INTO `area` VALUES (332, '141033', '蒲 县', '141000');
INSERT INTO `area` VALUES (333, '141034', '汾西县', '141000');
INSERT INTO `area` VALUES (334, '141081', '侯马市', '141000');
INSERT INTO `area` VALUES (335, '141082', '霍州市', '141000');
INSERT INTO `area` VALUES (336, '141101', '市辖区', '141100');
INSERT INTO `area` VALUES (337, '141102', '离石区', '141100');
INSERT INTO `area` VALUES (338, '141121', '文水县', '141100');
INSERT INTO `area` VALUES (339, '141122', '交城县', '141100');
INSERT INTO `area` VALUES (340, '141123', '兴 县', '141100');
INSERT INTO `area` VALUES (341, '141124', '临 县', '141100');
INSERT INTO `area` VALUES (342, '141125', '柳林县', '141100');
INSERT INTO `area` VALUES (343, '141126', '石楼县', '141100');
INSERT INTO `area` VALUES (344, '141127', '岚 县', '141100');
INSERT INTO `area` VALUES (345, '141128', '方山县', '141100');
INSERT INTO `area` VALUES (346, '141129', '中阳县', '141100');
INSERT INTO `area` VALUES (347, '141130', '交口县', '141100');
INSERT INTO `area` VALUES (348, '141181', '孝义市', '141100');
INSERT INTO `area` VALUES (349, '141182', '汾阳市', '141100');
INSERT INTO `area` VALUES (350, '150101', '市辖区', '150100');
INSERT INTO `area` VALUES (351, '150102', '新城区', '150100');
INSERT INTO `area` VALUES (352, '150103', '回民区', '150100');
INSERT INTO `area` VALUES (353, '150104', '玉泉区', '150100');
INSERT INTO `area` VALUES (354, '150105', '赛罕区', '150100');
INSERT INTO `area` VALUES (355, '150121', '土默特左旗', '150100');
INSERT INTO `area` VALUES (356, '150122', '托克托县', '150100');
INSERT INTO `area` VALUES (357, '150123', '和林格尔县', '150100');
INSERT INTO `area` VALUES (358, '150124', '清水河县', '150100');
INSERT INTO `area` VALUES (359, '150125', '武川县', '150100');
INSERT INTO `area` VALUES (360, '150201', '市辖区', '150200');
INSERT INTO `area` VALUES (361, '150202', '东河区', '150200');
INSERT INTO `area` VALUES (362, '150203', '昆都仑区', '150200');
INSERT INTO `area` VALUES (363, '150204', '青山区', '150200');
INSERT INTO `area` VALUES (364, '150205', '石拐区', '150200');
INSERT INTO `area` VALUES (365, '150206', '白云矿区', '150200');
INSERT INTO `area` VALUES (366, '150207', '九原区', '150200');
INSERT INTO `area` VALUES (367, '150221', '土默特右旗', '150200');
INSERT INTO `area` VALUES (368, '150222', '固阳县', '150200');
INSERT INTO `area` VALUES (369, '150223', '达尔罕茂明安联合旗', '150200');
INSERT INTO `area` VALUES (370, '150301', '市辖区', '150300');
INSERT INTO `area` VALUES (371, '150302', '海勃湾区', '150300');
INSERT INTO `area` VALUES (372, '150303', '海南区', '150300');
INSERT INTO `area` VALUES (373, '150304', '乌达区', '150300');
INSERT INTO `area` VALUES (374, '150401', '市辖区', '150400');
INSERT INTO `area` VALUES (375, '150402', '红山区', '150400');
INSERT INTO `area` VALUES (376, '150403', '元宝山区', '150400');
INSERT INTO `area` VALUES (377, '150404', '松山区', '150400');
INSERT INTO `area` VALUES (378, '150421', '阿鲁科尔沁旗', '150400');
INSERT INTO `area` VALUES (379, '150422', '巴林左旗', '150400');
INSERT INTO `area` VALUES (380, '150423', '巴林右旗', '150400');
INSERT INTO `area` VALUES (381, '150424', '林西县', '150400');
INSERT INTO `area` VALUES (382, '150425', '克什克腾旗', '150400');
INSERT INTO `area` VALUES (383, '150426', '翁牛特旗', '150400');
INSERT INTO `area` VALUES (384, '150428', '喀喇沁旗', '150400');
INSERT INTO `area` VALUES (385, '150429', '宁城县', '150400');
INSERT INTO `area` VALUES (386, '150430', '敖汉旗', '150400');
INSERT INTO `area` VALUES (387, '150501', '市辖区', '150500');
INSERT INTO `area` VALUES (388, '150502', '科尔沁区', '150500');
INSERT INTO `area` VALUES (389, '150521', '科尔沁左翼中旗', '150500');
INSERT INTO `area` VALUES (390, '150522', '科尔沁左翼后旗', '150500');
INSERT INTO `area` VALUES (391, '150523', '开鲁县', '150500');
INSERT INTO `area` VALUES (392, '150524', '库伦旗', '150500');
INSERT INTO `area` VALUES (393, '150525', '奈曼旗', '150500');
INSERT INTO `area` VALUES (394, '150526', '扎鲁特旗', '150500');
INSERT INTO `area` VALUES (395, '150581', '霍林郭勒市', '150500');
INSERT INTO `area` VALUES (396, '150602', '东胜区', '150600');
INSERT INTO `area` VALUES (397, '150621', '达拉特旗', '150600');
INSERT INTO `area` VALUES (398, '150622', '准格尔旗', '150600');
INSERT INTO `area` VALUES (399, '150623', '鄂托克前旗', '150600');
INSERT INTO `area` VALUES (400, '150624', '鄂托克旗', '150600');
INSERT INTO `area` VALUES (401, '150625', '杭锦旗', '150600');
INSERT INTO `area` VALUES (402, '150626', '乌审旗', '150600');
INSERT INTO `area` VALUES (403, '150627', '伊金霍洛旗', '150600');
INSERT INTO `area` VALUES (404, '150701', '市辖区', '150700');
INSERT INTO `area` VALUES (405, '150702', '海拉尔区', '150700');
INSERT INTO `area` VALUES (406, '150721', '阿荣旗', '150700');
INSERT INTO `area` VALUES (407, '150722', '莫力达瓦达斡尔族自治旗', '150700');
INSERT INTO `area` VALUES (408, '150723', '鄂伦春自治旗', '150700');
INSERT INTO `area` VALUES (409, '150724', '鄂温克族自治旗', '150700');
INSERT INTO `area` VALUES (410, '150725', '陈巴尔虎旗', '150700');
INSERT INTO `area` VALUES (411, '150726', '新巴尔虎左旗', '150700');
INSERT INTO `area` VALUES (412, '150727', '新巴尔虎右旗', '150700');
INSERT INTO `area` VALUES (413, '150781', '满洲里市', '150700');
INSERT INTO `area` VALUES (414, '150782', '牙克石市', '150700');
INSERT INTO `area` VALUES (415, '150783', '扎兰屯市', '150700');
INSERT INTO `area` VALUES (416, '150784', '额尔古纳市', '150700');
INSERT INTO `area` VALUES (417, '150785', '根河市', '150700');
INSERT INTO `area` VALUES (418, '150801', '市辖区', '150800');
INSERT INTO `area` VALUES (419, '150802', '临河区', '150800');
INSERT INTO `area` VALUES (420, '150821', '五原县', '150800');
INSERT INTO `area` VALUES (421, '150822', '磴口县', '150800');
INSERT INTO `area` VALUES (422, '150823', '乌拉特前旗', '150800');
INSERT INTO `area` VALUES (423, '150824', '乌拉特中旗', '150800');
INSERT INTO `area` VALUES (424, '150825', '乌拉特后旗', '150800');
INSERT INTO `area` VALUES (425, '150826', '杭锦后旗', '150800');
INSERT INTO `area` VALUES (426, '150901', '市辖区', '150900');
INSERT INTO `area` VALUES (427, '150902', '集宁区', '150900');
INSERT INTO `area` VALUES (428, '150921', '卓资县', '150900');
INSERT INTO `area` VALUES (429, '150922', '化德县', '150900');
INSERT INTO `area` VALUES (430, '150923', '商都县', '150900');
INSERT INTO `area` VALUES (431, '150924', '兴和县', '150900');
INSERT INTO `area` VALUES (432, '150925', '凉城县', '150900');
INSERT INTO `area` VALUES (433, '150926', '察哈尔右翼前旗', '150900');
INSERT INTO `area` VALUES (434, '150927', '察哈尔右翼中旗', '150900');
INSERT INTO `area` VALUES (435, '150928', '察哈尔右翼后旗', '150900');
INSERT INTO `area` VALUES (436, '150929', '四子王旗', '150900');
INSERT INTO `area` VALUES (437, '150981', '丰镇市', '150900');
INSERT INTO `area` VALUES (438, '152201', '乌兰浩特市', '152200');
INSERT INTO `area` VALUES (439, '152202', '阿尔山市', '152200');
INSERT INTO `area` VALUES (440, '152221', '科尔沁右翼前旗', '152200');
INSERT INTO `area` VALUES (441, '152222', '科尔沁右翼中旗', '152200');
INSERT INTO `area` VALUES (442, '152223', '扎赉特旗', '152200');
INSERT INTO `area` VALUES (443, '152224', '突泉县', '152200');
INSERT INTO `area` VALUES (444, '152501', '二连浩特市', '152500');
INSERT INTO `area` VALUES (445, '152502', '锡林浩特市', '152500');
INSERT INTO `area` VALUES (446, '152522', '阿巴嘎旗', '152500');
INSERT INTO `area` VALUES (447, '152523', '苏尼特左旗', '152500');
INSERT INTO `area` VALUES (448, '152524', '苏尼特右旗', '152500');
INSERT INTO `area` VALUES (449, '152525', '东乌珠穆沁旗', '152500');
INSERT INTO `area` VALUES (450, '152526', '西乌珠穆沁旗', '152500');
INSERT INTO `area` VALUES (451, '152527', '太仆寺旗', '152500');
INSERT INTO `area` VALUES (452, '152528', '镶黄旗', '152500');
INSERT INTO `area` VALUES (453, '152529', '正镶白旗', '152500');
INSERT INTO `area` VALUES (454, '152530', '正蓝旗', '152500');
INSERT INTO `area` VALUES (455, '152531', '多伦县', '152500');
INSERT INTO `area` VALUES (456, '152921', '阿拉善左旗', '152900');
INSERT INTO `area` VALUES (457, '152922', '阿拉善右旗', '152900');
INSERT INTO `area` VALUES (458, '152923', '额济纳旗', '152900');
INSERT INTO `area` VALUES (459, '210101', '市辖区', '210100');
INSERT INTO `area` VALUES (460, '210102', '和平区', '210100');
INSERT INTO `area` VALUES (461, '210103', '沈河区', '210100');
INSERT INTO `area` VALUES (462, '210104', '大东区', '210100');
INSERT INTO `area` VALUES (463, '210105', '皇姑区', '210100');
INSERT INTO `area` VALUES (464, '210106', '铁西区', '210100');
INSERT INTO `area` VALUES (465, '210111', '苏家屯区', '210100');
INSERT INTO `area` VALUES (466, '210112', '东陵区', '210100');
INSERT INTO `area` VALUES (467, '210113', '新城子区', '210100');
INSERT INTO `area` VALUES (468, '210114', '于洪区', '210100');
INSERT INTO `area` VALUES (469, '210122', '辽中县', '210100');
INSERT INTO `area` VALUES (470, '210123', '康平县', '210100');
INSERT INTO `area` VALUES (471, '210124', '法库县', '210100');
INSERT INTO `area` VALUES (472, '210181', '新民市', '210100');
INSERT INTO `area` VALUES (473, '210201', '市辖区', '210200');
INSERT INTO `area` VALUES (474, '210202', '中山区', '210200');
INSERT INTO `area` VALUES (475, '210203', '西岗区', '210200');
INSERT INTO `area` VALUES (476, '210204', '沙河口区', '210200');
INSERT INTO `area` VALUES (477, '210211', '甘井子区', '210200');
INSERT INTO `area` VALUES (478, '210212', '旅顺口区', '210200');
INSERT INTO `area` VALUES (479, '210213', '金州区', '210200');
INSERT INTO `area` VALUES (480, '210224', '长海县', '210200');
INSERT INTO `area` VALUES (481, '210281', '瓦房店市', '210200');
INSERT INTO `area` VALUES (482, '210282', '普兰店市', '210200');
INSERT INTO `area` VALUES (483, '210283', '庄河市', '210200');
INSERT INTO `area` VALUES (484, '210301', '市辖区', '210300');
INSERT INTO `area` VALUES (485, '210302', '铁东区', '210300');
INSERT INTO `area` VALUES (486, '210303', '铁西区', '210300');
INSERT INTO `area` VALUES (487, '210304', '立山区', '210300');
INSERT INTO `area` VALUES (488, '210311', '千山区', '210300');
INSERT INTO `area` VALUES (489, '210321', '台安县', '210300');
INSERT INTO `area` VALUES (490, '210323', '岫岩满族自治县', '210300');
INSERT INTO `area` VALUES (491, '210381', '海城市', '210300');
INSERT INTO `area` VALUES (492, '210401', '市辖区', '210400');
INSERT INTO `area` VALUES (493, '210402', '新抚区', '210400');
INSERT INTO `area` VALUES (494, '210403', '东洲区', '210400');
INSERT INTO `area` VALUES (495, '210404', '望花区', '210400');
INSERT INTO `area` VALUES (496, '210411', '顺城区', '210400');
INSERT INTO `area` VALUES (497, '210421', '抚顺县', '210400');
INSERT INTO `area` VALUES (498, '210422', '新宾满族自治县', '210400');
INSERT INTO `area` VALUES (499, '210423', '清原满族自治县', '210400');
INSERT INTO `area` VALUES (500, '210501', '市辖区', '210500');
INSERT INTO `area` VALUES (501, '210502', '平山区', '210500');
INSERT INTO `area` VALUES (502, '210503', '溪湖区', '210500');
INSERT INTO `area` VALUES (503, '210504', '明山区', '210500');
INSERT INTO `area` VALUES (504, '210505', '南芬区', '210500');
INSERT INTO `area` VALUES (505, '210521', '本溪满族自治县', '210500');
INSERT INTO `area` VALUES (506, '210522', '桓仁满族自治县', '210500');
INSERT INTO `area` VALUES (507, '210601', '市辖区', '210600');
INSERT INTO `area` VALUES (508, '210602', '元宝区', '210600');
INSERT INTO `area` VALUES (509, '210603', '振兴区', '210600');
INSERT INTO `area` VALUES (510, '210604', '振安区', '210600');
INSERT INTO `area` VALUES (511, '210624', '宽甸满族自治县', '210600');
INSERT INTO `area` VALUES (512, '210681', '东港市', '210600');
INSERT INTO `area` VALUES (513, '210682', '凤城市', '210600');
INSERT INTO `area` VALUES (514, '210701', '市辖区', '210700');
INSERT INTO `area` VALUES (515, '210702', '古塔区', '210700');
INSERT INTO `area` VALUES (516, '210703', '凌河区', '210700');
INSERT INTO `area` VALUES (517, '210711', '太和区', '210700');
INSERT INTO `area` VALUES (518, '210726', '黑山县', '210700');
INSERT INTO `area` VALUES (519, '210727', '义 县', '210700');
INSERT INTO `area` VALUES (520, '210781', '凌海市', '210700');
INSERT INTO `area` VALUES (521, '210782', '北宁市', '210700');
INSERT INTO `area` VALUES (522, '210801', '市辖区', '210800');
INSERT INTO `area` VALUES (523, '210802', '站前区', '210800');
INSERT INTO `area` VALUES (524, '210803', '西市区', '210800');
INSERT INTO `area` VALUES (525, '210804', '鲅鱼圈区', '210800');
INSERT INTO `area` VALUES (526, '210811', '老边区', '210800');
INSERT INTO `area` VALUES (527, '210881', '盖州市', '210800');
INSERT INTO `area` VALUES (528, '210882', '大石桥市', '210800');
INSERT INTO `area` VALUES (529, '210901', '市辖区', '210900');
INSERT INTO `area` VALUES (530, '210902', '海州区', '210900');
INSERT INTO `area` VALUES (531, '210903', '新邱区', '210900');
INSERT INTO `area` VALUES (532, '210904', '太平区', '210900');
INSERT INTO `area` VALUES (533, '210905', '清河门区', '210900');
INSERT INTO `area` VALUES (534, '210911', '细河区', '210900');
INSERT INTO `area` VALUES (535, '210921', '阜新蒙古族自治县', '210900');
INSERT INTO `area` VALUES (536, '210922', '彰武县', '210900');
INSERT INTO `area` VALUES (537, '211001', '市辖区', '211000');
INSERT INTO `area` VALUES (538, '211002', '白塔区', '211000');
INSERT INTO `area` VALUES (539, '211003', '文圣区', '211000');
INSERT INTO `area` VALUES (540, '211004', '宏伟区', '211000');
INSERT INTO `area` VALUES (541, '211005', '弓长岭区', '211000');
INSERT INTO `area` VALUES (542, '211011', '太子河区', '211000');
INSERT INTO `area` VALUES (543, '211021', '辽阳县', '211000');
INSERT INTO `area` VALUES (544, '211081', '灯塔市', '211000');
INSERT INTO `area` VALUES (545, '211101', '市辖区', '211100');
INSERT INTO `area` VALUES (546, '211102', '双台子区', '211100');
INSERT INTO `area` VALUES (547, '211103', '兴隆台区', '211100');
INSERT INTO `area` VALUES (548, '211121', '大洼县', '211100');
INSERT INTO `area` VALUES (549, '211122', '盘山县', '211100');
INSERT INTO `area` VALUES (550, '211201', '市辖区', '211200');
INSERT INTO `area` VALUES (551, '211202', '银州区', '211200');
INSERT INTO `area` VALUES (552, '211204', '清河区', '211200');
INSERT INTO `area` VALUES (553, '211221', '铁岭县', '211200');
INSERT INTO `area` VALUES (554, '211223', '西丰县', '211200');
INSERT INTO `area` VALUES (555, '211224', '昌图县', '211200');
INSERT INTO `area` VALUES (556, '211281', '调兵山市', '211200');
INSERT INTO `area` VALUES (557, '211282', '开原市', '211200');
INSERT INTO `area` VALUES (558, '211301', '市辖区', '211300');
INSERT INTO `area` VALUES (559, '211302', '双塔区', '211300');
INSERT INTO `area` VALUES (560, '211303', '龙城区', '211300');
INSERT INTO `area` VALUES (561, '211321', '朝阳县', '211300');
INSERT INTO `area` VALUES (562, '211322', '建平县', '211300');
INSERT INTO `area` VALUES (563, '211324', '喀喇沁左翼蒙古族自治县', '211300');
INSERT INTO `area` VALUES (564, '211381', '北票市', '211300');
INSERT INTO `area` VALUES (565, '211382', '凌源市', '211300');
INSERT INTO `area` VALUES (566, '211401', '市辖区', '211400');
INSERT INTO `area` VALUES (567, '211402', '连山区', '211400');
INSERT INTO `area` VALUES (568, '211403', '龙港区', '211400');
INSERT INTO `area` VALUES (569, '211404', '南票区', '211400');
INSERT INTO `area` VALUES (570, '211421', '绥中县', '211400');
INSERT INTO `area` VALUES (571, '211422', '建昌县', '211400');
INSERT INTO `area` VALUES (572, '211481', '兴城市', '211400');
INSERT INTO `area` VALUES (573, '220101', '市辖区', '220100');
INSERT INTO `area` VALUES (574, '220102', '南关区', '220100');
INSERT INTO `area` VALUES (575, '220103', '宽城区', '220100');
INSERT INTO `area` VALUES (576, '220104', '朝阳区', '220100');
INSERT INTO `area` VALUES (577, '220105', '二道区', '220100');
INSERT INTO `area` VALUES (578, '220106', '绿园区', '220100');
INSERT INTO `area` VALUES (579, '220112', '双阳区', '220100');
INSERT INTO `area` VALUES (580, '220122', '农安县', '220100');
INSERT INTO `area` VALUES (581, '220181', '九台市', '220100');
INSERT INTO `area` VALUES (582, '220182', '榆树市', '220100');
INSERT INTO `area` VALUES (583, '220183', '德惠市', '220100');
INSERT INTO `area` VALUES (584, '220201', '市辖区', '220200');
INSERT INTO `area` VALUES (585, '220202', '昌邑区', '220200');
INSERT INTO `area` VALUES (586, '220203', '龙潭区', '220200');
INSERT INTO `area` VALUES (587, '220204', '船营区', '220200');
INSERT INTO `area` VALUES (588, '220211', '丰满区', '220200');
INSERT INTO `area` VALUES (589, '220221', '永吉县', '220200');
INSERT INTO `area` VALUES (590, '220281', '蛟河市', '220200');
INSERT INTO `area` VALUES (591, '220282', '桦甸市', '220200');
INSERT INTO `area` VALUES (592, '220283', '舒兰市', '220200');
INSERT INTO `area` VALUES (593, '220284', '磐石市', '220200');
INSERT INTO `area` VALUES (594, '220301', '市辖区', '220300');
INSERT INTO `area` VALUES (595, '220302', '铁西区', '220300');
INSERT INTO `area` VALUES (596, '220303', '铁东区', '220300');
INSERT INTO `area` VALUES (597, '220322', '梨树县', '220300');
INSERT INTO `area` VALUES (598, '220323', '伊通满族自治县', '220300');
INSERT INTO `area` VALUES (599, '220381', '公主岭市', '220300');
INSERT INTO `area` VALUES (600, '220382', '双辽市', '220300');
INSERT INTO `area` VALUES (601, '220401', '市辖区', '220400');
INSERT INTO `area` VALUES (602, '220402', '龙山区', '220400');
INSERT INTO `area` VALUES (603, '220403', '西安区', '220400');
INSERT INTO `area` VALUES (604, '220421', '东丰县', '220400');
INSERT INTO `area` VALUES (605, '220422', '东辽县', '220400');
INSERT INTO `area` VALUES (606, '220501', '市辖区', '220500');
INSERT INTO `area` VALUES (607, '220502', '东昌区', '220500');
INSERT INTO `area` VALUES (608, '220503', '二道江区', '220500');
INSERT INTO `area` VALUES (609, '220521', '通化县', '220500');
INSERT INTO `area` VALUES (610, '220523', '辉南县', '220500');
INSERT INTO `area` VALUES (611, '220524', '柳河县', '220500');
INSERT INTO `area` VALUES (612, '220581', '梅河口市', '220500');
INSERT INTO `area` VALUES (613, '220582', '集安市', '220500');
INSERT INTO `area` VALUES (614, '220601', '市辖区', '220600');
INSERT INTO `area` VALUES (615, '220602', '八道江区', '220600');
INSERT INTO `area` VALUES (616, '220621', '抚松县', '220600');
INSERT INTO `area` VALUES (617, '220622', '靖宇县', '220600');
INSERT INTO `area` VALUES (618, '220623', '长白朝鲜族自治县', '220600');
INSERT INTO `area` VALUES (619, '220625', '江源县', '220600');
INSERT INTO `area` VALUES (620, '220681', '临江市', '220600');
INSERT INTO `area` VALUES (621, '220701', '市辖区', '220700');
INSERT INTO `area` VALUES (622, '220702', '宁江区', '220700');
INSERT INTO `area` VALUES (623, '220721', '前郭尔罗斯蒙古族自治县', '220700');
INSERT INTO `area` VALUES (624, '220722', '长岭县', '220700');
INSERT INTO `area` VALUES (625, '220723', '乾安县', '220700');
INSERT INTO `area` VALUES (626, '220724', '扶余县', '220700');
INSERT INTO `area` VALUES (627, '220801', '市辖区', '220800');
INSERT INTO `area` VALUES (628, '220802', '洮北区', '220800');
INSERT INTO `area` VALUES (629, '220821', '镇赉县', '220800');
INSERT INTO `area` VALUES (630, '220822', '通榆县', '220800');
INSERT INTO `area` VALUES (631, '220881', '洮南市', '220800');
INSERT INTO `area` VALUES (632, '220882', '大安市', '220800');
INSERT INTO `area` VALUES (633, '222401', '延吉市', '222400');
INSERT INTO `area` VALUES (634, '222402', '图们市', '222400');
INSERT INTO `area` VALUES (635, '222403', '敦化市', '222400');
INSERT INTO `area` VALUES (636, '222404', '珲春市', '222400');
INSERT INTO `area` VALUES (637, '222405', '龙井市', '222400');
INSERT INTO `area` VALUES (638, '222406', '和龙市', '222400');
INSERT INTO `area` VALUES (639, '222424', '汪清县', '222400');
INSERT INTO `area` VALUES (640, '222426', '安图县', '222400');
INSERT INTO `area` VALUES (641, '230101', '市辖区', '230100');
INSERT INTO `area` VALUES (642, '230102', '道里区', '230100');
INSERT INTO `area` VALUES (643, '230103', '南岗区', '230100');
INSERT INTO `area` VALUES (644, '230104', '道外区', '230100');
INSERT INTO `area` VALUES (645, '230106', '香坊区', '230100');
INSERT INTO `area` VALUES (646, '230107', '动力区', '230100');
INSERT INTO `area` VALUES (647, '230108', '平房区', '230100');
INSERT INTO `area` VALUES (648, '230109', '松北区', '230100');
INSERT INTO `area` VALUES (649, '230111', '呼兰区', '230100');
INSERT INTO `area` VALUES (650, '230123', '依兰县', '230100');
INSERT INTO `area` VALUES (651, '230124', '方正县', '230100');
INSERT INTO `area` VALUES (652, '230125', '宾 县', '230100');
INSERT INTO `area` VALUES (653, '230126', '巴彦县', '230100');
INSERT INTO `area` VALUES (654, '230127', '木兰县', '230100');
INSERT INTO `area` VALUES (655, '230128', '通河县', '230100');
INSERT INTO `area` VALUES (656, '230129', '延寿县', '230100');
INSERT INTO `area` VALUES (657, '230181', '阿城市', '230100');
INSERT INTO `area` VALUES (658, '230182', '双城市', '230100');
INSERT INTO `area` VALUES (659, '230183', '尚志市', '230100');
INSERT INTO `area` VALUES (660, '230184', '五常市', '230100');
INSERT INTO `area` VALUES (661, '230201', '市辖区', '230200');
INSERT INTO `area` VALUES (662, '230202', '龙沙区', '230200');
INSERT INTO `area` VALUES (663, '230203', '建华区', '230200');
INSERT INTO `area` VALUES (664, '230204', '铁锋区', '230200');
INSERT INTO `area` VALUES (665, '230205', '昂昂溪区', '230200');
INSERT INTO `area` VALUES (666, '230206', '富拉尔基区', '230200');
INSERT INTO `area` VALUES (667, '230207', '碾子山区', '230200');
INSERT INTO `area` VALUES (668, '230208', '梅里斯达斡尔族区', '230200');
INSERT INTO `area` VALUES (669, '230221', '龙江县', '230200');
INSERT INTO `area` VALUES (670, '230223', '依安县', '230200');
INSERT INTO `area` VALUES (671, '230224', '泰来县', '230200');
INSERT INTO `area` VALUES (672, '230225', '甘南县', '230200');
INSERT INTO `area` VALUES (673, '230227', '富裕县', '230200');
INSERT INTO `area` VALUES (674, '230229', '克山县', '230200');
INSERT INTO `area` VALUES (675, '230230', '克东县', '230200');
INSERT INTO `area` VALUES (676, '230231', '拜泉县', '230200');
INSERT INTO `area` VALUES (677, '230281', '讷河市', '230200');
INSERT INTO `area` VALUES (678, '230301', '市辖区', '230300');
INSERT INTO `area` VALUES (679, '230302', '鸡冠区', '230300');
INSERT INTO `area` VALUES (680, '230303', '恒山区', '230300');
INSERT INTO `area` VALUES (681, '230304', '滴道区', '230300');
INSERT INTO `area` VALUES (682, '230305', '梨树区', '230300');
INSERT INTO `area` VALUES (683, '230306', '城子河区', '230300');
INSERT INTO `area` VALUES (684, '230307', '麻山区', '230300');
INSERT INTO `area` VALUES (685, '230321', '鸡东县', '230300');
INSERT INTO `area` VALUES (686, '230381', '虎林市', '230300');
INSERT INTO `area` VALUES (687, '230382', '密山市', '230300');
INSERT INTO `area` VALUES (688, '230401', '市辖区', '230400');
INSERT INTO `area` VALUES (689, '230402', '向阳区', '230400');
INSERT INTO `area` VALUES (690, '230403', '工农区', '230400');
INSERT INTO `area` VALUES (691, '230404', '南山区', '230400');
INSERT INTO `area` VALUES (692, '230405', '兴安区', '230400');
INSERT INTO `area` VALUES (693, '230406', '东山区', '230400');
INSERT INTO `area` VALUES (694, '230407', '兴山区', '230400');
INSERT INTO `area` VALUES (695, '230421', '萝北县', '230400');
INSERT INTO `area` VALUES (696, '230422', '绥滨县', '230400');
INSERT INTO `area` VALUES (697, '230501', '市辖区', '230500');
INSERT INTO `area` VALUES (698, '230502', '尖山区', '230500');
INSERT INTO `area` VALUES (699, '230503', '岭东区', '230500');
INSERT INTO `area` VALUES (700, '230505', '四方台区', '230500');
INSERT INTO `area` VALUES (701, '230506', '宝山区', '230500');
INSERT INTO `area` VALUES (702, '230521', '集贤县', '230500');
INSERT INTO `area` VALUES (703, '230522', '友谊县', '230500');
INSERT INTO `area` VALUES (704, '230523', '宝清县', '230500');
INSERT INTO `area` VALUES (705, '230524', '饶河县', '230500');
INSERT INTO `area` VALUES (706, '230601', '市辖区', '230600');
INSERT INTO `area` VALUES (707, '230602', '萨尔图区', '230600');
INSERT INTO `area` VALUES (708, '230603', '龙凤区', '230600');
INSERT INTO `area` VALUES (709, '230604', '让胡路区', '230600');
INSERT INTO `area` VALUES (710, '230605', '红岗区', '230600');
INSERT INTO `area` VALUES (711, '230606', '大同区', '230600');
INSERT INTO `area` VALUES (712, '230621', '肇州县', '230600');
INSERT INTO `area` VALUES (713, '230622', '肇源县', '230600');
INSERT INTO `area` VALUES (714, '230623', '林甸县', '230600');
INSERT INTO `area` VALUES (715, '230624', '杜尔伯特蒙古族自治县', '230600');
INSERT INTO `area` VALUES (716, '230701', '市辖区', '230700');
INSERT INTO `area` VALUES (717, '230702', '伊春区', '230700');
INSERT INTO `area` VALUES (718, '230703', '南岔区', '230700');
INSERT INTO `area` VALUES (719, '230704', '友好区', '230700');
INSERT INTO `area` VALUES (720, '230705', '西林区', '230700');
INSERT INTO `area` VALUES (721, '230706', '翠峦区', '230700');
INSERT INTO `area` VALUES (722, '230707', '新青区', '230700');
INSERT INTO `area` VALUES (723, '230708', '美溪区', '230700');
INSERT INTO `area` VALUES (724, '230709', '金山屯区', '230700');
INSERT INTO `area` VALUES (725, '230710', '五营区', '230700');
INSERT INTO `area` VALUES (726, '230711', '乌马河区', '230700');
INSERT INTO `area` VALUES (727, '230712', '汤旺河区', '230700');
INSERT INTO `area` VALUES (728, '230713', '带岭区', '230700');
INSERT INTO `area` VALUES (729, '230714', '乌伊岭区', '230700');
INSERT INTO `area` VALUES (730, '230715', '红星区', '230700');
INSERT INTO `area` VALUES (731, '230716', '上甘岭区', '230700');
INSERT INTO `area` VALUES (732, '230722', '嘉荫县', '230700');
INSERT INTO `area` VALUES (733, '230781', '铁力市', '230700');
INSERT INTO `area` VALUES (734, '230801', '市辖区', '230800');
INSERT INTO `area` VALUES (735, '230802', '永红区', '230800');
INSERT INTO `area` VALUES (736, '230803', '向阳区', '230800');
INSERT INTO `area` VALUES (737, '230804', '前进区', '230800');
INSERT INTO `area` VALUES (738, '230805', '东风区', '230800');
INSERT INTO `area` VALUES (739, '230811', '郊 区', '230800');
INSERT INTO `area` VALUES (740, '230822', '桦南县', '230800');
INSERT INTO `area` VALUES (741, '230826', '桦川县', '230800');
INSERT INTO `area` VALUES (742, '230828', '汤原县', '230800');
INSERT INTO `area` VALUES (743, '230833', '抚远县', '230800');
INSERT INTO `area` VALUES (744, '230881', '同江市', '230800');
INSERT INTO `area` VALUES (745, '230882', '富锦市', '230800');
INSERT INTO `area` VALUES (746, '230901', '市辖区', '230900');
INSERT INTO `area` VALUES (747, '230902', '新兴区', '230900');
INSERT INTO `area` VALUES (748, '230903', '桃山区', '230900');
INSERT INTO `area` VALUES (749, '230904', '茄子河区', '230900');
INSERT INTO `area` VALUES (750, '230921', '勃利县', '230900');
INSERT INTO `area` VALUES (751, '231001', '市辖区', '231000');
INSERT INTO `area` VALUES (752, '231002', '东安区', '231000');
INSERT INTO `area` VALUES (753, '231003', '阳明区', '231000');
INSERT INTO `area` VALUES (754, '231004', '爱民区', '231000');
INSERT INTO `area` VALUES (755, '231005', '西安区', '231000');
INSERT INTO `area` VALUES (756, '231024', '东宁县', '231000');
INSERT INTO `area` VALUES (757, '231025', '林口县', '231000');
INSERT INTO `area` VALUES (758, '231081', '绥芬河市', '231000');
INSERT INTO `area` VALUES (759, '231083', '海林市', '231000');
INSERT INTO `area` VALUES (760, '231084', '宁安市', '231000');
INSERT INTO `area` VALUES (761, '231085', '穆棱市', '231000');
INSERT INTO `area` VALUES (762, '231101', '市辖区', '231100');
INSERT INTO `area` VALUES (763, '231102', '爱辉区', '231100');
INSERT INTO `area` VALUES (764, '231121', '嫩江县', '231100');
INSERT INTO `area` VALUES (765, '231123', '逊克县', '231100');
INSERT INTO `area` VALUES (766, '231124', '孙吴县', '231100');
INSERT INTO `area` VALUES (767, '231181', '北安市', '231100');
INSERT INTO `area` VALUES (768, '231182', '五大连池市', '231100');
INSERT INTO `area` VALUES (769, '231201', '市辖区', '231200');
INSERT INTO `area` VALUES (770, '231202', '北林区', '231200');
INSERT INTO `area` VALUES (771, '231221', '望奎县', '231200');
INSERT INTO `area` VALUES (772, '231222', '兰西县', '231200');
INSERT INTO `area` VALUES (773, '231223', '青冈县', '231200');
INSERT INTO `area` VALUES (774, '231224', '庆安县', '231200');
INSERT INTO `area` VALUES (775, '231225', '明水县', '231200');
INSERT INTO `area` VALUES (776, '231226', '绥棱县', '231200');
INSERT INTO `area` VALUES (777, '231281', '安达市', '231200');
INSERT INTO `area` VALUES (778, '231282', '肇东市', '231200');
INSERT INTO `area` VALUES (779, '231283', '海伦市', '231200');
INSERT INTO `area` VALUES (780, '232721', '呼玛县', '232700');
INSERT INTO `area` VALUES (781, '232722', '塔河县', '232700');
INSERT INTO `area` VALUES (782, '232723', '漠河县', '232700');
INSERT INTO `area` VALUES (783, '310101', '黄浦区', '310100');
INSERT INTO `area` VALUES (784, '310103', '卢湾区', '310100');
INSERT INTO `area` VALUES (785, '310104', '徐汇区', '310100');
INSERT INTO `area` VALUES (786, '310105', '长宁区', '310100');
INSERT INTO `area` VALUES (787, '310106', '静安区', '310100');
INSERT INTO `area` VALUES (788, '310107', '普陀区', '310100');
INSERT INTO `area` VALUES (789, '310108', '闸北区', '310100');
INSERT INTO `area` VALUES (790, '310109', '虹口区', '310100');
INSERT INTO `area` VALUES (791, '310110', '杨浦区', '310100');
INSERT INTO `area` VALUES (792, '310112', '闵行区', '310100');
INSERT INTO `area` VALUES (793, '310113', '宝山区', '310100');
INSERT INTO `area` VALUES (794, '310114', '嘉定区', '310100');
INSERT INTO `area` VALUES (795, '310115', '浦东新区', '310100');
INSERT INTO `area` VALUES (796, '310116', '金山区', '310100');
INSERT INTO `area` VALUES (797, '310117', '松江区', '310100');
INSERT INTO `area` VALUES (798, '310118', '青浦区', '310100');
INSERT INTO `area` VALUES (799, '310119', '南汇区', '310100');
INSERT INTO `area` VALUES (800, '310120', '奉贤区', '310100');
INSERT INTO `area` VALUES (801, '310230', '崇明县', '310200');
INSERT INTO `area` VALUES (802, '320101', '市辖区', '320100');
INSERT INTO `area` VALUES (803, '320102', '玄武区', '320100');
INSERT INTO `area` VALUES (804, '320103', '白下区', '320100');
INSERT INTO `area` VALUES (805, '320104', '秦淮区', '320100');
INSERT INTO `area` VALUES (806, '320105', '建邺区', '320100');
INSERT INTO `area` VALUES (807, '320106', '鼓楼区', '320100');
INSERT INTO `area` VALUES (808, '320107', '下关区', '320100');
INSERT INTO `area` VALUES (809, '320111', '浦口区', '320100');
INSERT INTO `area` VALUES (810, '320113', '栖霞区', '320100');
INSERT INTO `area` VALUES (811, '320114', '雨花台区', '320100');
INSERT INTO `area` VALUES (812, '320115', '江宁区', '320100');
INSERT INTO `area` VALUES (813, '320116', '六合区', '320100');
INSERT INTO `area` VALUES (814, '320124', '溧水县', '320100');
INSERT INTO `area` VALUES (815, '320125', '高淳县', '320100');
INSERT INTO `area` VALUES (816, '320201', '市辖区', '320200');
INSERT INTO `area` VALUES (817, '320202', '崇安区', '320200');
INSERT INTO `area` VALUES (818, '320203', '南长区', '320200');
INSERT INTO `area` VALUES (819, '320204', '北塘区', '320200');
INSERT INTO `area` VALUES (820, '320205', '锡山区', '320200');
INSERT INTO `area` VALUES (821, '320206', '惠山区', '320200');
INSERT INTO `area` VALUES (822, '320211', '滨湖区', '320200');
INSERT INTO `area` VALUES (823, '320281', '江阴市', '320200');
INSERT INTO `area` VALUES (824, '320282', '宜兴市', '320200');
INSERT INTO `area` VALUES (825, '320301', '市辖区', '320300');
INSERT INTO `area` VALUES (826, '320302', '鼓楼区', '320300');
INSERT INTO `area` VALUES (827, '320303', '云龙区', '320300');
INSERT INTO `area` VALUES (828, '320304', '九里区', '320300');
INSERT INTO `area` VALUES (829, '320305', '贾汪区', '320300');
INSERT INTO `area` VALUES (830, '320311', '泉山区', '320300');
INSERT INTO `area` VALUES (831, '320321', '丰 县', '320300');
INSERT INTO `area` VALUES (832, '320322', '沛 县', '320300');
INSERT INTO `area` VALUES (833, '320323', '铜山县', '320300');
INSERT INTO `area` VALUES (834, '320324', '睢宁县', '320300');
INSERT INTO `area` VALUES (835, '320381', '新沂市', '320300');
INSERT INTO `area` VALUES (836, '320382', '邳州市', '320300');
INSERT INTO `area` VALUES (837, '320401', '市辖区', '320400');
INSERT INTO `area` VALUES (838, '320402', '天宁区', '320400');
INSERT INTO `area` VALUES (839, '320404', '钟楼区', '320400');
INSERT INTO `area` VALUES (840, '320405', '戚墅堰区', '320400');
INSERT INTO `area` VALUES (841, '320411', '新北区', '320400');
INSERT INTO `area` VALUES (842, '320412', '武进区', '320400');
INSERT INTO `area` VALUES (843, '320481', '溧阳市', '320400');
INSERT INTO `area` VALUES (844, '320482', '金坛市', '320400');
INSERT INTO `area` VALUES (845, '320501', '市辖区', '320500');
INSERT INTO `area` VALUES (846, '320502', '沧浪区', '320500');
INSERT INTO `area` VALUES (847, '320503', '平江区', '320500');
INSERT INTO `area` VALUES (848, '320504', '金阊区', '320500');
INSERT INTO `area` VALUES (849, '320505', '虎丘区', '320500');
INSERT INTO `area` VALUES (850, '320506', '吴中区', '320500');
INSERT INTO `area` VALUES (851, '320507', '相城区', '320500');
INSERT INTO `area` VALUES (852, '320581', '常熟市', '320500');
INSERT INTO `area` VALUES (853, '320582', '张家港市', '320500');
INSERT INTO `area` VALUES (854, '320583', '昆山市', '320500');
INSERT INTO `area` VALUES (855, '320584', '吴江市', '320500');
INSERT INTO `area` VALUES (856, '320585', '太仓市', '320500');
INSERT INTO `area` VALUES (857, '320601', '市辖区', '320600');
INSERT INTO `area` VALUES (858, '320602', '崇川区', '320600');
INSERT INTO `area` VALUES (859, '320611', '港闸区', '320600');
INSERT INTO `area` VALUES (860, '320621', '海安县', '320600');
INSERT INTO `area` VALUES (861, '320623', '如东县', '320600');
INSERT INTO `area` VALUES (862, '320681', '启东市', '320600');
INSERT INTO `area` VALUES (863, '320682', '如皋市', '320600');
INSERT INTO `area` VALUES (864, '320683', '通州市', '320600');
INSERT INTO `area` VALUES (865, '320684', '海门市', '320600');
INSERT INTO `area` VALUES (866, '320701', '市辖区', '320700');
INSERT INTO `area` VALUES (867, '320703', '连云区', '320700');
INSERT INTO `area` VALUES (868, '320705', '新浦区', '320700');
INSERT INTO `area` VALUES (869, '320706', '海州区', '320700');
INSERT INTO `area` VALUES (870, '320721', '赣榆县', '320700');
INSERT INTO `area` VALUES (871, '320722', '东海县', '320700');
INSERT INTO `area` VALUES (872, '320723', '灌云县', '320700');
INSERT INTO `area` VALUES (873, '320724', '灌南县', '320700');
INSERT INTO `area` VALUES (874, '320801', '市辖区', '320800');
INSERT INTO `area` VALUES (875, '320802', '清河区', '320800');
INSERT INTO `area` VALUES (876, '320803', '楚州区', '320800');
INSERT INTO `area` VALUES (877, '320804', '淮阴区', '320800');
INSERT INTO `area` VALUES (878, '320811', '清浦区', '320800');
INSERT INTO `area` VALUES (879, '320826', '涟水县', '320800');
INSERT INTO `area` VALUES (880, '320829', '洪泽县', '320800');
INSERT INTO `area` VALUES (881, '320830', '盱眙县', '320800');
INSERT INTO `area` VALUES (882, '320831', '金湖县', '320800');
INSERT INTO `area` VALUES (883, '320901', '市辖区', '320900');
INSERT INTO `area` VALUES (884, '320902', '亭湖区', '320900');
INSERT INTO `area` VALUES (885, '320903', '盐都区', '320900');
INSERT INTO `area` VALUES (886, '320921', '响水县', '320900');
INSERT INTO `area` VALUES (887, '320922', '滨海县', '320900');
INSERT INTO `area` VALUES (888, '320923', '阜宁县', '320900');
INSERT INTO `area` VALUES (889, '320924', '射阳县', '320900');
INSERT INTO `area` VALUES (890, '320925', '建湖县', '320900');
INSERT INTO `area` VALUES (891, '320981', '东台市', '320900');
INSERT INTO `area` VALUES (892, '320982', '大丰市', '320900');
INSERT INTO `area` VALUES (893, '321001', '市辖区', '321000');
INSERT INTO `area` VALUES (894, '321002', '广陵区', '321000');
INSERT INTO `area` VALUES (895, '321003', '邗江区', '321000');
INSERT INTO `area` VALUES (896, '321011', '郊 区', '321000');
INSERT INTO `area` VALUES (897, '321023', '宝应县', '321000');
INSERT INTO `area` VALUES (898, '321081', '仪征市', '321000');
INSERT INTO `area` VALUES (899, '321084', '高邮市', '321000');
INSERT INTO `area` VALUES (900, '321088', '江都市', '321000');
INSERT INTO `area` VALUES (901, '321101', '市辖区', '321100');
INSERT INTO `area` VALUES (902, '321102', '京口区', '321100');
INSERT INTO `area` VALUES (903, '321111', '润州区', '321100');
INSERT INTO `area` VALUES (904, '321112', '丹徒区', '321100');
INSERT INTO `area` VALUES (905, '321181', '丹阳市', '321100');
INSERT INTO `area` VALUES (906, '321182', '扬中市', '321100');
INSERT INTO `area` VALUES (907, '321183', '句容市', '321100');
INSERT INTO `area` VALUES (908, '321201', '市辖区', '321200');
INSERT INTO `area` VALUES (909, '321202', '海陵区', '321200');
INSERT INTO `area` VALUES (910, '321203', '高港区', '321200');
INSERT INTO `area` VALUES (911, '321281', '兴化市', '321200');
INSERT INTO `area` VALUES (912, '321282', '靖江市', '321200');
INSERT INTO `area` VALUES (913, '321283', '泰兴市', '321200');
INSERT INTO `area` VALUES (914, '321284', '姜堰市', '321200');
INSERT INTO `area` VALUES (915, '321301', '市辖区', '321300');
INSERT INTO `area` VALUES (916, '321302', '宿城区', '321300');
INSERT INTO `area` VALUES (917, '321311', '宿豫区', '321300');
INSERT INTO `area` VALUES (918, '321322', '沭阳县', '321300');
INSERT INTO `area` VALUES (919, '321323', '泗阳县', '321300');
INSERT INTO `area` VALUES (920, '321324', '泗洪县', '321300');
INSERT INTO `area` VALUES (921, '330101', '市辖区', '330100');
INSERT INTO `area` VALUES (922, '330102', '上城区', '330100');
INSERT INTO `area` VALUES (923, '330103', '下城区', '330100');
INSERT INTO `area` VALUES (924, '330104', '江干区', '330100');
INSERT INTO `area` VALUES (925, '330105', '拱墅区', '330100');
INSERT INTO `area` VALUES (926, '330106', '西湖区', '330100');
INSERT INTO `area` VALUES (927, '330108', '滨江区', '330100');
INSERT INTO `area` VALUES (928, '330109', '萧山区', '330100');
INSERT INTO `area` VALUES (929, '330110', '余杭区', '330100');
INSERT INTO `area` VALUES (930, '330122', '桐庐县', '330100');
INSERT INTO `area` VALUES (931, '330127', '淳安县', '330100');
INSERT INTO `area` VALUES (932, '330182', '建德市', '330100');
INSERT INTO `area` VALUES (933, '330183', '富阳市', '330100');
INSERT INTO `area` VALUES (934, '330185', '临安市', '330100');
INSERT INTO `area` VALUES (935, '330201', '市辖区', '330200');
INSERT INTO `area` VALUES (936, '330203', '海曙区', '330200');
INSERT INTO `area` VALUES (937, '330204', '江东区', '330200');
INSERT INTO `area` VALUES (938, '330205', '江北区', '330200');
INSERT INTO `area` VALUES (939, '330206', '北仑区', '330200');
INSERT INTO `area` VALUES (940, '330211', '镇海区', '330200');
INSERT INTO `area` VALUES (941, '330212', '鄞州区', '330200');
INSERT INTO `area` VALUES (942, '330225', '象山县', '330200');
INSERT INTO `area` VALUES (943, '330226', '宁海县', '330200');
INSERT INTO `area` VALUES (944, '330281', '余姚市', '330200');
INSERT INTO `area` VALUES (945, '330282', '慈溪市', '330200');
INSERT INTO `area` VALUES (946, '330283', '奉化市', '330200');
INSERT INTO `area` VALUES (947, '330301', '市辖区', '330300');
INSERT INTO `area` VALUES (948, '330302', '鹿城区', '330300');
INSERT INTO `area` VALUES (949, '330303', '龙湾区', '330300');
INSERT INTO `area` VALUES (950, '330304', '瓯海区', '330300');
INSERT INTO `area` VALUES (951, '330322', '洞头县', '330300');
INSERT INTO `area` VALUES (952, '330324', '永嘉县', '330300');
INSERT INTO `area` VALUES (953, '330326', '平阳县', '330300');
INSERT INTO `area` VALUES (954, '330327', '苍南县', '330300');
INSERT INTO `area` VALUES (955, '330328', '文成县', '330300');
INSERT INTO `area` VALUES (956, '330329', '泰顺县', '330300');
INSERT INTO `area` VALUES (957, '330381', '瑞安市', '330300');
INSERT INTO `area` VALUES (958, '330382', '乐清市', '330300');
INSERT INTO `area` VALUES (959, '330401', '市辖区', '330400');
INSERT INTO `area` VALUES (960, '330402', '秀城区', '330400');
INSERT INTO `area` VALUES (961, '330411', '秀洲区', '330400');
INSERT INTO `area` VALUES (962, '330421', '嘉善县', '330400');
INSERT INTO `area` VALUES (963, '330424', '海盐县', '330400');
INSERT INTO `area` VALUES (964, '330481', '海宁市', '330400');
INSERT INTO `area` VALUES (965, '330482', '平湖市', '330400');
INSERT INTO `area` VALUES (966, '330483', '桐乡市', '330400');
INSERT INTO `area` VALUES (967, '330501', '市辖区', '330500');
INSERT INTO `area` VALUES (968, '330502', '吴兴区', '330500');
INSERT INTO `area` VALUES (969, '330503', '南浔区', '330500');
INSERT INTO `area` VALUES (970, '330521', '德清县', '330500');
INSERT INTO `area` VALUES (971, '330522', '长兴县', '330500');
INSERT INTO `area` VALUES (972, '330523', '安吉县', '330500');
INSERT INTO `area` VALUES (973, '330601', '市辖区', '330600');
INSERT INTO `area` VALUES (974, '330602', '越城区', '330600');
INSERT INTO `area` VALUES (975, '330621', '绍兴县', '330600');
INSERT INTO `area` VALUES (976, '330624', '新昌县', '330600');
INSERT INTO `area` VALUES (977, '330681', '诸暨市', '330600');
INSERT INTO `area` VALUES (978, '330682', '上虞市', '330600');
INSERT INTO `area` VALUES (979, '330683', '嵊州市', '330600');
INSERT INTO `area` VALUES (980, '330701', '市辖区', '330700');
INSERT INTO `area` VALUES (981, '330702', '婺城区', '330700');
INSERT INTO `area` VALUES (982, '330703', '金东区', '330700');
INSERT INTO `area` VALUES (983, '330723', '武义县', '330700');
INSERT INTO `area` VALUES (984, '330726', '浦江县', '330700');
INSERT INTO `area` VALUES (985, '330727', '磐安县', '330700');
INSERT INTO `area` VALUES (986, '330781', '兰溪市', '330700');
INSERT INTO `area` VALUES (987, '330782', '义乌市', '330700');
INSERT INTO `area` VALUES (988, '330783', '东阳市', '330700');
INSERT INTO `area` VALUES (989, '330784', '永康市', '330700');
INSERT INTO `area` VALUES (990, '330801', '市辖区', '330800');
INSERT INTO `area` VALUES (991, '330802', '柯城区', '330800');
INSERT INTO `area` VALUES (992, '330803', '衢江区', '330800');
INSERT INTO `area` VALUES (993, '330822', '常山县', '330800');
INSERT INTO `area` VALUES (994, '330824', '开化县', '330800');
INSERT INTO `area` VALUES (995, '330825', '龙游县', '330800');
INSERT INTO `area` VALUES (996, '330881', '江山市', '330800');
INSERT INTO `area` VALUES (997, '330901', '市辖区', '330900');
INSERT INTO `area` VALUES (998, '330902', '定海区', '330900');
INSERT INTO `area` VALUES (999, '330903', '普陀区', '330900');
INSERT INTO `area` VALUES (1000, '330921', '岱山县', '330900');
INSERT INTO `area` VALUES (1001, '330922', '嵊泗县', '330900');
INSERT INTO `area` VALUES (1002, '331001', '市辖区', '331000');
INSERT INTO `area` VALUES (1003, '331002', '椒江区', '331000');
INSERT INTO `area` VALUES (1004, '331003', '黄岩区', '331000');
INSERT INTO `area` VALUES (1005, '331004', '路桥区', '331000');
INSERT INTO `area` VALUES (1006, '331021', '玉环县', '331000');
INSERT INTO `area` VALUES (1007, '331022', '三门县', '331000');
INSERT INTO `area` VALUES (1008, '331023', '天台县', '331000');
INSERT INTO `area` VALUES (1009, '331024', '仙居县', '331000');
INSERT INTO `area` VALUES (1010, '331081', '温岭市', '331000');
INSERT INTO `area` VALUES (1011, '331082', '临海市', '331000');
INSERT INTO `area` VALUES (1012, '331101', '市辖区', '331100');
INSERT INTO `area` VALUES (1013, '331102', '莲都区', '331100');
INSERT INTO `area` VALUES (1014, '331121', '青田县', '331100');
INSERT INTO `area` VALUES (1015, '331122', '缙云县', '331100');
INSERT INTO `area` VALUES (1016, '331123', '遂昌县', '331100');
INSERT INTO `area` VALUES (1017, '331124', '松阳县', '331100');
INSERT INTO `area` VALUES (1018, '331125', '云和县', '331100');
INSERT INTO `area` VALUES (1019, '331126', '庆元县', '331100');
INSERT INTO `area` VALUES (1020, '331127', '景宁畲族自治县', '331100');
INSERT INTO `area` VALUES (1021, '331181', '龙泉市', '331100');
INSERT INTO `area` VALUES (1022, '340101', '市辖区', '340100');
INSERT INTO `area` VALUES (1023, '340102', '瑶海区', '340100');
INSERT INTO `area` VALUES (1024, '340103', '庐阳区', '340100');
INSERT INTO `area` VALUES (1025, '340104', '蜀山区', '340100');
INSERT INTO `area` VALUES (1026, '340111', '包河区', '340100');
INSERT INTO `area` VALUES (1027, '340121', '长丰县', '340100');
INSERT INTO `area` VALUES (1028, '340122', '肥东县', '340100');
INSERT INTO `area` VALUES (1029, '340123', '肥西县', '340100');
INSERT INTO `area` VALUES (1030, '340201', '市辖区', '340200');
INSERT INTO `area` VALUES (1031, '340202', '镜湖区', '340200');
INSERT INTO `area` VALUES (1032, '340203', '马塘区', '340200');
INSERT INTO `area` VALUES (1033, '340204', '新芜区', '340200');
INSERT INTO `area` VALUES (1034, '340207', '鸠江区', '340200');
INSERT INTO `area` VALUES (1035, '340221', '芜湖县', '340200');
INSERT INTO `area` VALUES (1036, '340222', '繁昌县', '340200');
INSERT INTO `area` VALUES (1037, '340223', '南陵县', '340200');
INSERT INTO `area` VALUES (1038, '340301', '市辖区', '340300');
INSERT INTO `area` VALUES (1039, '340302', '龙子湖区', '340300');
INSERT INTO `area` VALUES (1040, '340303', '蚌山区', '340300');
INSERT INTO `area` VALUES (1041, '340304', '禹会区', '340300');
INSERT INTO `area` VALUES (1042, '340311', '淮上区', '340300');
INSERT INTO `area` VALUES (1043, '340321', '怀远县', '340300');
INSERT INTO `area` VALUES (1044, '340322', '五河县', '340300');
INSERT INTO `area` VALUES (1045, '340323', '固镇县', '340300');
INSERT INTO `area` VALUES (1046, '340401', '市辖区', '340400');
INSERT INTO `area` VALUES (1047, '340402', '大通区', '340400');
INSERT INTO `area` VALUES (1048, '340403', '田家庵区', '340400');
INSERT INTO `area` VALUES (1049, '340404', '谢家集区', '340400');
INSERT INTO `area` VALUES (1050, '340405', '八公山区', '340400');
INSERT INTO `area` VALUES (1051, '340406', '潘集区', '340400');
INSERT INTO `area` VALUES (1052, '340421', '凤台县', '340400');
INSERT INTO `area` VALUES (1053, '340501', '市辖区', '340500');
INSERT INTO `area` VALUES (1054, '340502', '金家庄区', '340500');
INSERT INTO `area` VALUES (1055, '340503', '花山区', '340500');
INSERT INTO `area` VALUES (1056, '340504', '雨山区', '340500');
INSERT INTO `area` VALUES (1057, '340521', '当涂县', '340500');
INSERT INTO `area` VALUES (1058, '340601', '市辖区', '340600');
INSERT INTO `area` VALUES (1059, '340602', '杜集区', '340600');
INSERT INTO `area` VALUES (1060, '340603', '相山区', '340600');
INSERT INTO `area` VALUES (1061, '340604', '烈山区', '340600');
INSERT INTO `area` VALUES (1062, '340621', '濉溪县', '340600');
INSERT INTO `area` VALUES (1063, '340701', '市辖区', '340700');
INSERT INTO `area` VALUES (1064, '340702', '铜官山区', '340700');
INSERT INTO `area` VALUES (1065, '340703', '狮子山区', '340700');
INSERT INTO `area` VALUES (1066, '340711', '郊 区', '340700');
INSERT INTO `area` VALUES (1067, '340721', '铜陵县', '340700');
INSERT INTO `area` VALUES (1068, '340801', '市辖区', '340800');
INSERT INTO `area` VALUES (1069, '340802', '迎江区', '340800');
INSERT INTO `area` VALUES (1070, '340803', '大观区', '340800');
INSERT INTO `area` VALUES (1071, '340811', '郊 区', '340800');
INSERT INTO `area` VALUES (1072, '340822', '怀宁县', '340800');
INSERT INTO `area` VALUES (1073, '340823', '枞阳县', '340800');
INSERT INTO `area` VALUES (1074, '340824', '潜山县', '340800');
INSERT INTO `area` VALUES (1075, '340825', '太湖县', '340800');
INSERT INTO `area` VALUES (1076, '340826', '宿松县', '340800');
INSERT INTO `area` VALUES (1077, '340827', '望江县', '340800');
INSERT INTO `area` VALUES (1078, '340828', '岳西县', '340800');
INSERT INTO `area` VALUES (1079, '340881', '桐城市', '340800');
INSERT INTO `area` VALUES (1080, '341001', '市辖区', '341000');
INSERT INTO `area` VALUES (1081, '341002', '屯溪区', '341000');
INSERT INTO `area` VALUES (1082, '341003', '黄山区', '341000');
INSERT INTO `area` VALUES (1083, '341004', '徽州区', '341000');
INSERT INTO `area` VALUES (1084, '341021', '歙 县', '341000');
INSERT INTO `area` VALUES (1085, '341022', '休宁县', '341000');
INSERT INTO `area` VALUES (1086, '341023', '黟 县', '341000');
INSERT INTO `area` VALUES (1087, '341024', '祁门县', '341000');
INSERT INTO `area` VALUES (1088, '341101', '市辖区', '341100');
INSERT INTO `area` VALUES (1089, '341102', '琅琊区', '341100');
INSERT INTO `area` VALUES (1090, '341103', '南谯区', '341100');
INSERT INTO `area` VALUES (1091, '341122', '来安县', '341100');
INSERT INTO `area` VALUES (1092, '341124', '全椒县', '341100');
INSERT INTO `area` VALUES (1093, '341125', '定远县', '341100');
INSERT INTO `area` VALUES (1094, '341126', '凤阳县', '341100');
INSERT INTO `area` VALUES (1095, '341181', '天长市', '341100');
INSERT INTO `area` VALUES (1096, '341182', '明光市', '341100');
INSERT INTO `area` VALUES (1097, '341201', '市辖区', '341200');
INSERT INTO `area` VALUES (1098, '341202', '颍州区', '341200');
INSERT INTO `area` VALUES (1099, '341203', '颍东区', '341200');
INSERT INTO `area` VALUES (1100, '341204', '颍泉区', '341200');
INSERT INTO `area` VALUES (1101, '341221', '临泉县', '341200');
INSERT INTO `area` VALUES (1102, '341222', '太和县', '341200');
INSERT INTO `area` VALUES (1103, '341225', '阜南县', '341200');
INSERT INTO `area` VALUES (1104, '341226', '颍上县', '341200');
INSERT INTO `area` VALUES (1105, '341282', '界首市', '341200');
INSERT INTO `area` VALUES (1106, '341301', '市辖区', '341300');
INSERT INTO `area` VALUES (1107, '341302', '墉桥区', '341300');
INSERT INTO `area` VALUES (1108, '341321', '砀山县', '341300');
INSERT INTO `area` VALUES (1109, '341322', '萧 县', '341300');
INSERT INTO `area` VALUES (1110, '341323', '灵璧县', '341300');
INSERT INTO `area` VALUES (1111, '341324', '泗 县', '341300');
INSERT INTO `area` VALUES (1112, '341401', '市辖区', '341400');
INSERT INTO `area` VALUES (1113, '341402', '居巢区', '341400');
INSERT INTO `area` VALUES (1114, '341421', '庐江县', '341400');
INSERT INTO `area` VALUES (1115, '341422', '无为县', '341400');
INSERT INTO `area` VALUES (1116, '341423', '含山县', '341400');
INSERT INTO `area` VALUES (1117, '341424', '和 县', '341400');
INSERT INTO `area` VALUES (1118, '341501', '市辖区', '341500');
INSERT INTO `area` VALUES (1119, '341502', '金安区', '341500');
INSERT INTO `area` VALUES (1120, '341503', '裕安区', '341500');
INSERT INTO `area` VALUES (1121, '341521', '寿 县', '341500');
INSERT INTO `area` VALUES (1122, '341522', '霍邱县', '341500');
INSERT INTO `area` VALUES (1123, '341523', '舒城县', '341500');
INSERT INTO `area` VALUES (1124, '341524', '金寨县', '341500');
INSERT INTO `area` VALUES (1125, '341525', '霍山县', '341500');
INSERT INTO `area` VALUES (1126, '341601', '市辖区', '341600');
INSERT INTO `area` VALUES (1127, '341602', '谯城区', '341600');
INSERT INTO `area` VALUES (1128, '341621', '涡阳县', '341600');
INSERT INTO `area` VALUES (1129, '341622', '蒙城县', '341600');
INSERT INTO `area` VALUES (1130, '341623', '利辛县', '341600');
INSERT INTO `area` VALUES (1131, '341701', '市辖区', '341700');
INSERT INTO `area` VALUES (1132, '341702', '贵池区', '341700');
INSERT INTO `area` VALUES (1133, '341721', '东至县', '341700');
INSERT INTO `area` VALUES (1134, '341722', '石台县', '341700');
INSERT INTO `area` VALUES (1135, '341723', '青阳县', '341700');
INSERT INTO `area` VALUES (1136, '341801', '市辖区', '341800');
INSERT INTO `area` VALUES (1137, '341802', '宣州区', '341800');
INSERT INTO `area` VALUES (1138, '341821', '郎溪县', '341800');
INSERT INTO `area` VALUES (1139, '341822', '广德县', '341800');
INSERT INTO `area` VALUES (1140, '341823', '泾 县', '341800');
INSERT INTO `area` VALUES (1141, '341824', '绩溪县', '341800');
INSERT INTO `area` VALUES (1142, '341825', '旌德县', '341800');
INSERT INTO `area` VALUES (1143, '341881', '宁国市', '341800');
INSERT INTO `area` VALUES (1144, '350101', '市辖区', '350100');
INSERT INTO `area` VALUES (1145, '350102', '鼓楼区', '350100');
INSERT INTO `area` VALUES (1146, '350103', '台江区', '350100');
INSERT INTO `area` VALUES (1147, '350104', '仓山区', '350100');
INSERT INTO `area` VALUES (1148, '350105', '马尾区', '350100');
INSERT INTO `area` VALUES (1149, '350111', '晋安区', '350100');
INSERT INTO `area` VALUES (1150, '350121', '闽侯县', '350100');
INSERT INTO `area` VALUES (1151, '350122', '连江县', '350100');
INSERT INTO `area` VALUES (1152, '350123', '罗源县', '350100');
INSERT INTO `area` VALUES (1153, '350124', '闽清县', '350100');
INSERT INTO `area` VALUES (1154, '350125', '永泰县', '350100');
INSERT INTO `area` VALUES (1155, '350128', '平潭县', '350100');
INSERT INTO `area` VALUES (1156, '350181', '福清市', '350100');
INSERT INTO `area` VALUES (1157, '350182', '长乐市', '350100');
INSERT INTO `area` VALUES (1158, '350201', '市辖区', '350200');
INSERT INTO `area` VALUES (1159, '350203', '思明区', '350200');
INSERT INTO `area` VALUES (1160, '350205', '海沧区', '350200');
INSERT INTO `area` VALUES (1161, '350206', '湖里区', '350200');
INSERT INTO `area` VALUES (1162, '350211', '集美区', '350200');
INSERT INTO `area` VALUES (1163, '350212', '同安区', '350200');
INSERT INTO `area` VALUES (1164, '350213', '翔安区', '350200');
INSERT INTO `area` VALUES (1165, '350301', '市辖区', '350300');
INSERT INTO `area` VALUES (1166, '350302', '城厢区', '350300');
INSERT INTO `area` VALUES (1167, '350303', '涵江区', '350300');
INSERT INTO `area` VALUES (1168, '350304', '荔城区', '350300');
INSERT INTO `area` VALUES (1169, '350305', '秀屿区', '350300');
INSERT INTO `area` VALUES (1170, '350322', '仙游县', '350300');
INSERT INTO `area` VALUES (1171, '350401', '市辖区', '350400');
INSERT INTO `area` VALUES (1172, '350402', '梅列区', '350400');
INSERT INTO `area` VALUES (1173, '350403', '三元区', '350400');
INSERT INTO `area` VALUES (1174, '350421', '明溪县', '350400');
INSERT INTO `area` VALUES (1175, '350423', '清流县', '350400');
INSERT INTO `area` VALUES (1176, '350424', '宁化县', '350400');
INSERT INTO `area` VALUES (1177, '350425', '大田县', '350400');
INSERT INTO `area` VALUES (1178, '350426', '尤溪县', '350400');
INSERT INTO `area` VALUES (1179, '350427', '沙 县', '350400');
INSERT INTO `area` VALUES (1180, '350428', '将乐县', '350400');
INSERT INTO `area` VALUES (1181, '350429', '泰宁县', '350400');
INSERT INTO `area` VALUES (1182, '350430', '建宁县', '350400');
INSERT INTO `area` VALUES (1183, '350481', '永安市', '350400');
INSERT INTO `area` VALUES (1184, '350501', '市辖区', '350500');
INSERT INTO `area` VALUES (1185, '350502', '鲤城区', '350500');
INSERT INTO `area` VALUES (1186, '350503', '丰泽区', '350500');
INSERT INTO `area` VALUES (1187, '350504', '洛江区', '350500');
INSERT INTO `area` VALUES (1188, '350505', '泉港区', '350500');
INSERT INTO `area` VALUES (1189, '350521', '惠安县', '350500');
INSERT INTO `area` VALUES (1190, '350524', '安溪县', '350500');
INSERT INTO `area` VALUES (1191, '350525', '永春县', '350500');
INSERT INTO `area` VALUES (1192, '350526', '德化县', '350500');
INSERT INTO `area` VALUES (1193, '350527', '金门县', '350500');
INSERT INTO `area` VALUES (1194, '350581', '石狮市', '350500');
INSERT INTO `area` VALUES (1195, '350582', '晋江市', '350500');
INSERT INTO `area` VALUES (1196, '350583', '南安市', '350500');
INSERT INTO `area` VALUES (1197, '350601', '市辖区', '350600');
INSERT INTO `area` VALUES (1198, '350602', '芗城区', '350600');
INSERT INTO `area` VALUES (1199, '350603', '龙文区', '350600');
INSERT INTO `area` VALUES (1200, '350622', '云霄县', '350600');
INSERT INTO `area` VALUES (1201, '350623', '漳浦县', '350600');
INSERT INTO `area` VALUES (1202, '350624', '诏安县', '350600');
INSERT INTO `area` VALUES (1203, '350625', '长泰县', '350600');
INSERT INTO `area` VALUES (1204, '350626', '东山县', '350600');
INSERT INTO `area` VALUES (1205, '350627', '南靖县', '350600');
INSERT INTO `area` VALUES (1206, '350628', '平和县', '350600');
INSERT INTO `area` VALUES (1207, '350629', '华安县', '350600');
INSERT INTO `area` VALUES (1208, '350681', '龙海市', '350600');
INSERT INTO `area` VALUES (1209, '350701', '市辖区', '350700');
INSERT INTO `area` VALUES (1210, '350702', '延平区', '350700');
INSERT INTO `area` VALUES (1211, '350721', '顺昌县', '350700');
INSERT INTO `area` VALUES (1212, '350722', '浦城县', '350700');
INSERT INTO `area` VALUES (1213, '350723', '光泽县', '350700');
INSERT INTO `area` VALUES (1214, '350724', '松溪县', '350700');
INSERT INTO `area` VALUES (1215, '350725', '政和县', '350700');
INSERT INTO `area` VALUES (1216, '350781', '邵武市', '350700');
INSERT INTO `area` VALUES (1217, '350782', '武夷山市', '350700');
INSERT INTO `area` VALUES (1218, '350783', '建瓯市', '350700');
INSERT INTO `area` VALUES (1219, '350784', '建阳市', '350700');
INSERT INTO `area` VALUES (1220, '350801', '市辖区', '350800');
INSERT INTO `area` VALUES (1221, '350802', '新罗区', '350800');
INSERT INTO `area` VALUES (1222, '350821', '长汀县', '350800');
INSERT INTO `area` VALUES (1223, '350822', '永定县', '350800');
INSERT INTO `area` VALUES (1224, '350823', '上杭县', '350800');
INSERT INTO `area` VALUES (1225, '350824', '武平县', '350800');
INSERT INTO `area` VALUES (1226, '350825', '连城县', '350800');
INSERT INTO `area` VALUES (1227, '350881', '漳平市', '350800');
INSERT INTO `area` VALUES (1228, '350901', '市辖区', '350900');
INSERT INTO `area` VALUES (1229, '350902', '蕉城区', '350900');
INSERT INTO `area` VALUES (1230, '350921', '霞浦县', '350900');
INSERT INTO `area` VALUES (1231, '350922', '古田县', '350900');
INSERT INTO `area` VALUES (1232, '350923', '屏南县', '350900');
INSERT INTO `area` VALUES (1233, '350924', '寿宁县', '350900');
INSERT INTO `area` VALUES (1234, '350925', '周宁县', '350900');
INSERT INTO `area` VALUES (1235, '350926', '柘荣县', '350900');
INSERT INTO `area` VALUES (1236, '350981', '福安市', '350900');
INSERT INTO `area` VALUES (1237, '350982', '福鼎市', '350900');
INSERT INTO `area` VALUES (1238, '360101', '市辖区', '360100');
INSERT INTO `area` VALUES (1239, '360102', '东湖区', '360100');
INSERT INTO `area` VALUES (1240, '360103', '西湖区', '360100');
INSERT INTO `area` VALUES (1241, '360104', '青云谱区', '360100');
INSERT INTO `area` VALUES (1242, '360105', '湾里区', '360100');
INSERT INTO `area` VALUES (1243, '360111', '青山湖区', '360100');
INSERT INTO `area` VALUES (1244, '360121', '南昌县', '360100');
INSERT INTO `area` VALUES (1245, '360122', '新建县', '360100');
INSERT INTO `area` VALUES (1246, '360123', '安义县', '360100');
INSERT INTO `area` VALUES (1247, '360124', '进贤县', '360100');
INSERT INTO `area` VALUES (1248, '360201', '市辖区', '360200');
INSERT INTO `area` VALUES (1249, '360202', '昌江区', '360200');
INSERT INTO `area` VALUES (1250, '360203', '珠山区', '360200');
INSERT INTO `area` VALUES (1251, '360222', '浮梁县', '360200');
INSERT INTO `area` VALUES (1252, '360281', '乐平市', '360200');
INSERT INTO `area` VALUES (1253, '360301', '市辖区', '360300');
INSERT INTO `area` VALUES (1254, '360302', '安源区', '360300');
INSERT INTO `area` VALUES (1255, '360313', '湘东区', '360300');
INSERT INTO `area` VALUES (1256, '360321', '莲花县', '360300');
INSERT INTO `area` VALUES (1257, '360322', '上栗县', '360300');
INSERT INTO `area` VALUES (1258, '360323', '芦溪县', '360300');
INSERT INTO `area` VALUES (1259, '360401', '市辖区', '360400');
INSERT INTO `area` VALUES (1260, '360402', '庐山区', '360400');
INSERT INTO `area` VALUES (1261, '360403', '浔阳区', '360400');
INSERT INTO `area` VALUES (1262, '360421', '九江县', '360400');
INSERT INTO `area` VALUES (1263, '360423', '武宁县', '360400');
INSERT INTO `area` VALUES (1264, '360424', '修水县', '360400');
INSERT INTO `area` VALUES (1265, '360425', '永修县', '360400');
INSERT INTO `area` VALUES (1266, '360426', '德安县', '360400');
INSERT INTO `area` VALUES (1267, '360427', '星子县', '360400');
INSERT INTO `area` VALUES (1268, '360428', '都昌县', '360400');
INSERT INTO `area` VALUES (1269, '360429', '湖口县', '360400');
INSERT INTO `area` VALUES (1270, '360430', '彭泽县', '360400');
INSERT INTO `area` VALUES (1271, '360481', '瑞昌市', '360400');
INSERT INTO `area` VALUES (1272, '360501', '市辖区', '360500');
INSERT INTO `area` VALUES (1273, '360502', '渝水区', '360500');
INSERT INTO `area` VALUES (1274, '360521', '分宜县', '360500');
INSERT INTO `area` VALUES (1275, '360601', '市辖区', '360600');
INSERT INTO `area` VALUES (1276, '360602', '月湖区', '360600');
INSERT INTO `area` VALUES (1277, '360622', '余江县', '360600');
INSERT INTO `area` VALUES (1278, '360681', '贵溪市', '360600');
INSERT INTO `area` VALUES (1279, '360701', '市辖区', '360700');
INSERT INTO `area` VALUES (1280, '360702', '章贡区', '360700');
INSERT INTO `area` VALUES (1281, '360721', '赣 县', '360700');
INSERT INTO `area` VALUES (1282, '360722', '信丰县', '360700');
INSERT INTO `area` VALUES (1283, '360723', '大余县', '360700');
INSERT INTO `area` VALUES (1284, '360724', '上犹县', '360700');
INSERT INTO `area` VALUES (1285, '360725', '崇义县', '360700');
INSERT INTO `area` VALUES (1286, '360726', '安远县', '360700');
INSERT INTO `area` VALUES (1287, '360727', '龙南县', '360700');
INSERT INTO `area` VALUES (1288, '360728', '定南县', '360700');
INSERT INTO `area` VALUES (1289, '360729', '全南县', '360700');
INSERT INTO `area` VALUES (1290, '360730', '宁都县', '360700');
INSERT INTO `area` VALUES (1291, '360731', '于都县', '360700');
INSERT INTO `area` VALUES (1292, '360732', '兴国县', '360700');
INSERT INTO `area` VALUES (1293, '360733', '会昌县', '360700');
INSERT INTO `area` VALUES (1294, '360734', '寻乌县', '360700');
INSERT INTO `area` VALUES (1295, '360735', '石城县', '360700');
INSERT INTO `area` VALUES (1296, '360781', '瑞金市', '360700');
INSERT INTO `area` VALUES (1297, '360782', '南康市', '360700');
INSERT INTO `area` VALUES (1298, '360801', '市辖区', '360800');
INSERT INTO `area` VALUES (1299, '360802', '吉州区', '360800');
INSERT INTO `area` VALUES (1300, '360803', '青原区', '360800');
INSERT INTO `area` VALUES (1301, '360821', '吉安县', '360800');
INSERT INTO `area` VALUES (1302, '360822', '吉水县', '360800');
INSERT INTO `area` VALUES (1303, '360823', '峡江县', '360800');
INSERT INTO `area` VALUES (1304, '360824', '新干县', '360800');
INSERT INTO `area` VALUES (1305, '360825', '永丰县', '360800');
INSERT INTO `area` VALUES (1306, '360826', '泰和县', '360800');
INSERT INTO `area` VALUES (1307, '360827', '遂川县', '360800');
INSERT INTO `area` VALUES (1308, '360828', '万安县', '360800');
INSERT INTO `area` VALUES (1309, '360829', '安福县', '360800');
INSERT INTO `area` VALUES (1310, '360830', '永新县', '360800');
INSERT INTO `area` VALUES (1311, '360881', '井冈山市', '360800');
INSERT INTO `area` VALUES (1312, '360901', '市辖区', '360900');
INSERT INTO `area` VALUES (1313, '360902', '袁州区', '360900');
INSERT INTO `area` VALUES (1314, '360921', '奉新县', '360900');
INSERT INTO `area` VALUES (1315, '360922', '万载县', '360900');
INSERT INTO `area` VALUES (1316, '360923', '上高县', '360900');
INSERT INTO `area` VALUES (1317, '360924', '宜丰县', '360900');
INSERT INTO `area` VALUES (1318, '360925', '靖安县', '360900');
INSERT INTO `area` VALUES (1319, '360926', '铜鼓县', '360900');
INSERT INTO `area` VALUES (1320, '360981', '丰城市', '360900');
INSERT INTO `area` VALUES (1321, '360982', '樟树市', '360900');
INSERT INTO `area` VALUES (1322, '360983', '高安市', '360900');
INSERT INTO `area` VALUES (1323, '361001', '市辖区', '361000');
INSERT INTO `area` VALUES (1324, '361002', '临川区', '361000');
INSERT INTO `area` VALUES (1325, '361021', '南城县', '361000');
INSERT INTO `area` VALUES (1326, '361022', '黎川县', '361000');
INSERT INTO `area` VALUES (1327, '361023', '南丰县', '361000');
INSERT INTO `area` VALUES (1328, '361024', '崇仁县', '361000');
INSERT INTO `area` VALUES (1329, '361025', '乐安县', '361000');
INSERT INTO `area` VALUES (1330, '361026', '宜黄县', '361000');
INSERT INTO `area` VALUES (1331, '361027', '金溪县', '361000');
INSERT INTO `area` VALUES (1332, '361028', '资溪县', '361000');
INSERT INTO `area` VALUES (1333, '361029', '东乡县', '361000');
INSERT INTO `area` VALUES (1334, '361030', '广昌县', '361000');
INSERT INTO `area` VALUES (1335, '361101', '市辖区', '361100');
INSERT INTO `area` VALUES (1336, '361102', '信州区', '361100');
INSERT INTO `area` VALUES (1337, '361121', '上饶县', '361100');
INSERT INTO `area` VALUES (1338, '361122', '广丰县', '361100');
INSERT INTO `area` VALUES (1339, '361123', '玉山县', '361100');
INSERT INTO `area` VALUES (1340, '361124', '铅山县', '361100');
INSERT INTO `area` VALUES (1341, '361125', '横峰县', '361100');
INSERT INTO `area` VALUES (1342, '361126', '弋阳县', '361100');
INSERT INTO `area` VALUES (1343, '361127', '余干县', '361100');
INSERT INTO `area` VALUES (1344, '361128', '鄱阳县', '361100');
INSERT INTO `area` VALUES (1345, '361129', '万年县', '361100');
INSERT INTO `area` VALUES (1346, '361130', '婺源县', '361100');
INSERT INTO `area` VALUES (1347, '361181', '德兴市', '361100');
INSERT INTO `area` VALUES (1348, '370101', '市辖区', '370100');
INSERT INTO `area` VALUES (1349, '370102', '历下区', '370100');
INSERT INTO `area` VALUES (1350, '370103', '市中区', '370100');
INSERT INTO `area` VALUES (1351, '370104', '槐荫区', '370100');
INSERT INTO `area` VALUES (1352, '370105', '天桥区', '370100');
INSERT INTO `area` VALUES (1353, '370112', '历城区', '370100');
INSERT INTO `area` VALUES (1354, '370113', '长清区', '370100');
INSERT INTO `area` VALUES (1355, '370124', '平阴县', '370100');
INSERT INTO `area` VALUES (1356, '370125', '济阳县', '370100');
INSERT INTO `area` VALUES (1357, '370126', '商河县', '370100');
INSERT INTO `area` VALUES (1358, '370181', '章丘市', '370100');
INSERT INTO `area` VALUES (1359, '370201', '市辖区', '370200');
INSERT INTO `area` VALUES (1360, '370202', '市南区', '370200');
INSERT INTO `area` VALUES (1361, '370203', '市北区', '370200');
INSERT INTO `area` VALUES (1362, '370205', '四方区', '370200');
INSERT INTO `area` VALUES (1363, '370211', '黄岛区', '370200');
INSERT INTO `area` VALUES (1364, '370212', '崂山区', '370200');
INSERT INTO `area` VALUES (1365, '370213', '李沧区', '370200');
INSERT INTO `area` VALUES (1366, '370214', '城阳区', '370200');
INSERT INTO `area` VALUES (1367, '370281', '胶州市', '370200');
INSERT INTO `area` VALUES (1368, '370282', '即墨市', '370200');
INSERT INTO `area` VALUES (1369, '370283', '平度市', '370200');
INSERT INTO `area` VALUES (1370, '370284', '胶南市', '370200');
INSERT INTO `area` VALUES (1371, '370285', '莱西市', '370200');
INSERT INTO `area` VALUES (1372, '370301', '市辖区', '370300');
INSERT INTO `area` VALUES (1373, '370302', '淄川区', '370300');
INSERT INTO `area` VALUES (1374, '370303', '张店区', '370300');
INSERT INTO `area` VALUES (1375, '370304', '博山区', '370300');
INSERT INTO `area` VALUES (1376, '370305', '临淄区', '370300');
INSERT INTO `area` VALUES (1377, '370306', '周村区', '370300');
INSERT INTO `area` VALUES (1378, '370321', '桓台县', '370300');
INSERT INTO `area` VALUES (1379, '370322', '高青县', '370300');
INSERT INTO `area` VALUES (1380, '370323', '沂源县', '370300');
INSERT INTO `area` VALUES (1381, '370401', '市辖区', '370400');
INSERT INTO `area` VALUES (1382, '370402', '市中区', '370400');
INSERT INTO `area` VALUES (1383, '370403', '薛城区', '370400');
INSERT INTO `area` VALUES (1384, '370404', '峄城区', '370400');
INSERT INTO `area` VALUES (1385, '370405', '台儿庄区', '370400');
INSERT INTO `area` VALUES (1386, '370406', '山亭区', '370400');
INSERT INTO `area` VALUES (1387, '370481', '滕州市', '370400');
INSERT INTO `area` VALUES (1388, '370501', '市辖区', '370500');
INSERT INTO `area` VALUES (1389, '370502', '东营区', '370500');
INSERT INTO `area` VALUES (1390, '370503', '河口区', '370500');
INSERT INTO `area` VALUES (1391, '370521', '垦利县', '370500');
INSERT INTO `area` VALUES (1392, '370522', '利津县', '370500');
INSERT INTO `area` VALUES (1393, '370523', '广饶县', '370500');
INSERT INTO `area` VALUES (1394, '370601', '市辖区', '370600');
INSERT INTO `area` VALUES (1395, '370602', '芝罘区', '370600');
INSERT INTO `area` VALUES (1396, '370611', '福山区', '370600');
INSERT INTO `area` VALUES (1397, '370612', '牟平区', '370600');
INSERT INTO `area` VALUES (1398, '370613', '莱山区', '370600');
INSERT INTO `area` VALUES (1399, '370634', '长岛县', '370600');
INSERT INTO `area` VALUES (1400, '370681', '龙口市', '370600');
INSERT INTO `area` VALUES (1401, '370682', '莱阳市', '370600');
INSERT INTO `area` VALUES (1402, '370683', '莱州市', '370600');
INSERT INTO `area` VALUES (1403, '370684', '蓬莱市', '370600');
INSERT INTO `area` VALUES (1404, '370685', '招远市', '370600');
INSERT INTO `area` VALUES (1405, '370686', '栖霞市', '370600');
INSERT INTO `area` VALUES (1406, '370687', '海阳市', '370600');
INSERT INTO `area` VALUES (1407, '370701', '市辖区', '370700');
INSERT INTO `area` VALUES (1408, '370702', '潍城区', '370700');
INSERT INTO `area` VALUES (1409, '370703', '寒亭区', '370700');
INSERT INTO `area` VALUES (1410, '370704', '坊子区', '370700');
INSERT INTO `area` VALUES (1411, '370705', '奎文区', '370700');
INSERT INTO `area` VALUES (1412, '370724', '临朐县', '370700');
INSERT INTO `area` VALUES (1413, '370725', '昌乐县', '370700');
INSERT INTO `area` VALUES (1414, '370781', '青州市', '370700');
INSERT INTO `area` VALUES (1415, '370782', '诸城市', '370700');
INSERT INTO `area` VALUES (1416, '370783', '寿光市', '370700');
INSERT INTO `area` VALUES (1417, '370784', '安丘市', '370700');
INSERT INTO `area` VALUES (1418, '370785', '高密市', '370700');
INSERT INTO `area` VALUES (1419, '370786', '昌邑市', '370700');
INSERT INTO `area` VALUES (1420, '370801', '市辖区', '370800');
INSERT INTO `area` VALUES (1421, '370802', '市中区', '370800');
INSERT INTO `area` VALUES (1422, '370811', '任城区', '370800');
INSERT INTO `area` VALUES (1423, '370826', '微山县', '370800');
INSERT INTO `area` VALUES (1424, '370827', '鱼台县', '370800');
INSERT INTO `area` VALUES (1425, '370828', '金乡县', '370800');
INSERT INTO `area` VALUES (1426, '370829', '嘉祥县', '370800');
INSERT INTO `area` VALUES (1427, '370830', '汶上县', '370800');
INSERT INTO `area` VALUES (1428, '370831', '泗水县', '370800');
INSERT INTO `area` VALUES (1429, '370832', '梁山县', '370800');
INSERT INTO `area` VALUES (1430, '370881', '曲阜市', '370800');
INSERT INTO `area` VALUES (1431, '370882', '兖州市', '370800');
INSERT INTO `area` VALUES (1432, '370883', '邹城市', '370800');
INSERT INTO `area` VALUES (1433, '370901', '市辖区', '370900');
INSERT INTO `area` VALUES (1434, '370902', '泰山区', '370900');
INSERT INTO `area` VALUES (1435, '370903', '岱岳区', '370900');
INSERT INTO `area` VALUES (1436, '370921', '宁阳县', '370900');
INSERT INTO `area` VALUES (1437, '370923', '东平县', '370900');
INSERT INTO `area` VALUES (1438, '370982', '新泰市', '370900');
INSERT INTO `area` VALUES (1439, '370983', '肥城市', '370900');
INSERT INTO `area` VALUES (1440, '371001', '市辖区', '371000');
INSERT INTO `area` VALUES (1441, '371002', '环翠区', '371000');
INSERT INTO `area` VALUES (1442, '371081', '文登市', '371000');
INSERT INTO `area` VALUES (1443, '371082', '荣成市', '371000');
INSERT INTO `area` VALUES (1444, '371083', '乳山市', '371000');
INSERT INTO `area` VALUES (1445, '371101', '市辖区', '371100');
INSERT INTO `area` VALUES (1446, '371102', '东港区', '371100');
INSERT INTO `area` VALUES (1447, '371103', '岚山区', '371100');
INSERT INTO `area` VALUES (1448, '371121', '五莲县', '371100');
INSERT INTO `area` VALUES (1449, '371122', '莒 县', '371100');
INSERT INTO `area` VALUES (1450, '371201', '市辖区', '371200');
INSERT INTO `area` VALUES (1451, '371202', '莱城区', '371200');
INSERT INTO `area` VALUES (1452, '371203', '钢城区', '371200');
INSERT INTO `area` VALUES (1453, '371301', '市辖区', '371300');
INSERT INTO `area` VALUES (1454, '371302', '兰山区', '371300');
INSERT INTO `area` VALUES (1455, '371311', '罗庄区', '371300');
INSERT INTO `area` VALUES (1456, '371312', '河东区', '371300');
INSERT INTO `area` VALUES (1457, '371321', '沂南县', '371300');
INSERT INTO `area` VALUES (1458, '371322', '郯城县', '371300');
INSERT INTO `area` VALUES (1459, '371323', '沂水县', '371300');
INSERT INTO `area` VALUES (1460, '371324', '苍山县', '371300');
INSERT INTO `area` VALUES (1461, '371325', '费 县', '371300');
INSERT INTO `area` VALUES (1462, '371326', '平邑县', '371300');
INSERT INTO `area` VALUES (1463, '371327', '莒南县', '371300');
INSERT INTO `area` VALUES (1464, '371328', '蒙阴县', '371300');
INSERT INTO `area` VALUES (1465, '371329', '临沭县', '371300');
INSERT INTO `area` VALUES (1466, '371401', '市辖区', '371400');
INSERT INTO `area` VALUES (1467, '371402', '德城区', '371400');
INSERT INTO `area` VALUES (1468, '371421', '陵 县', '371400');
INSERT INTO `area` VALUES (1469, '371422', '宁津县', '371400');
INSERT INTO `area` VALUES (1470, '371423', '庆云县', '371400');
INSERT INTO `area` VALUES (1471, '371424', '临邑县', '371400');
INSERT INTO `area` VALUES (1472, '371425', '齐河县', '371400');
INSERT INTO `area` VALUES (1473, '371426', '平原县', '371400');
INSERT INTO `area` VALUES (1474, '371427', '夏津县', '371400');
INSERT INTO `area` VALUES (1475, '371428', '武城县', '371400');
INSERT INTO `area` VALUES (1476, '371481', '乐陵市', '371400');
INSERT INTO `area` VALUES (1477, '371482', '禹城市', '371400');
INSERT INTO `area` VALUES (1478, '371501', '市辖区', '371500');
INSERT INTO `area` VALUES (1479, '371502', '东昌府区', '371500');
INSERT INTO `area` VALUES (1480, '371521', '阳谷县', '371500');
INSERT INTO `area` VALUES (1481, '371522', '莘 县', '371500');
INSERT INTO `area` VALUES (1482, '371523', '茌平县', '371500');
INSERT INTO `area` VALUES (1483, '371524', '东阿县', '371500');
INSERT INTO `area` VALUES (1484, '371525', '冠 县', '371500');
INSERT INTO `area` VALUES (1485, '371526', '高唐县', '371500');
INSERT INTO `area` VALUES (1486, '371581', '临清市', '371500');
INSERT INTO `area` VALUES (1487, '371601', '市辖区', '371600');
INSERT INTO `area` VALUES (1488, '371602', '滨城区', '371600');
INSERT INTO `area` VALUES (1489, '371621', '惠民县', '371600');
INSERT INTO `area` VALUES (1490, '371622', '阳信县', '371600');
INSERT INTO `area` VALUES (1491, '371623', '无棣县', '371600');
INSERT INTO `area` VALUES (1492, '371624', '沾化县', '371600');
INSERT INTO `area` VALUES (1493, '371625', '博兴县', '371600');
INSERT INTO `area` VALUES (1494, '371626', '邹平县', '371600');
INSERT INTO `area` VALUES (1495, '371701', '市辖区', '371700');
INSERT INTO `area` VALUES (1496, '371702', '牡丹区', '371700');
INSERT INTO `area` VALUES (1497, '371721', '曹 县', '371700');
INSERT INTO `area` VALUES (1498, '371722', '单 县', '371700');
INSERT INTO `area` VALUES (1499, '371723', '成武县', '371700');
INSERT INTO `area` VALUES (1500, '371724', '巨野县', '371700');
INSERT INTO `area` VALUES (1501, '371725', '郓城县', '371700');
INSERT INTO `area` VALUES (1502, '371726', '鄄城县', '371700');
INSERT INTO `area` VALUES (1503, '371727', '定陶县', '371700');
INSERT INTO `area` VALUES (1504, '371728', '东明县', '371700');
INSERT INTO `area` VALUES (1505, '410101', '市辖区', '410100');
INSERT INTO `area` VALUES (1506, '410102', '中原区', '410100');
INSERT INTO `area` VALUES (1507, '410103', '二七区', '410100');
INSERT INTO `area` VALUES (1508, '410104', '管城回族区', '410100');
INSERT INTO `area` VALUES (1509, '410105', '金水区', '410100');
INSERT INTO `area` VALUES (1510, '410106', '上街区', '410100');
INSERT INTO `area` VALUES (1511, '410108', '邙山区', '410100');
INSERT INTO `area` VALUES (1512, '410122', '中牟县', '410100');
INSERT INTO `area` VALUES (1513, '410181', '巩义市', '410100');
INSERT INTO `area` VALUES (1514, '410182', '荥阳市', '410100');
INSERT INTO `area` VALUES (1515, '410183', '新密市', '410100');
INSERT INTO `area` VALUES (1516, '410184', '新郑市', '410100');
INSERT INTO `area` VALUES (1517, '410185', '登封市', '410100');
INSERT INTO `area` VALUES (1518, '410201', '市辖区', '410200');
INSERT INTO `area` VALUES (1519, '410202', '龙亭区', '410200');
INSERT INTO `area` VALUES (1520, '410203', '顺河回族区', '410200');
INSERT INTO `area` VALUES (1521, '410204', '鼓楼区', '410200');
INSERT INTO `area` VALUES (1522, '410205', '南关区', '410200');
INSERT INTO `area` VALUES (1523, '410211', '郊 区', '410200');
INSERT INTO `area` VALUES (1524, '410221', '杞 县', '410200');
INSERT INTO `area` VALUES (1525, '410222', '通许县', '410200');
INSERT INTO `area` VALUES (1526, '410223', '尉氏县', '410200');
INSERT INTO `area` VALUES (1527, '410224', '开封县', '410200');
INSERT INTO `area` VALUES (1528, '410225', '兰考县', '410200');
INSERT INTO `area` VALUES (1529, '410301', '市辖区', '410300');
INSERT INTO `area` VALUES (1530, '410302', '老城区', '410300');
INSERT INTO `area` VALUES (1531, '410303', '西工区', '410300');
INSERT INTO `area` VALUES (1532, '410304', '廛河回族区', '410300');
INSERT INTO `area` VALUES (1533, '410305', '涧西区', '410300');
INSERT INTO `area` VALUES (1534, '410306', '吉利区', '410300');
INSERT INTO `area` VALUES (1535, '410307', '洛龙区', '410300');
INSERT INTO `area` VALUES (1536, '410322', '孟津县', '410300');
INSERT INTO `area` VALUES (1537, '410323', '新安县', '410300');
INSERT INTO `area` VALUES (1538, '410324', '栾川县', '410300');
INSERT INTO `area` VALUES (1539, '410325', '嵩 县', '410300');
INSERT INTO `area` VALUES (1540, '410326', '汝阳县', '410300');
INSERT INTO `area` VALUES (1541, '410327', '宜阳县', '410300');
INSERT INTO `area` VALUES (1542, '410328', '洛宁县', '410300');
INSERT INTO `area` VALUES (1543, '410329', '伊川县', '410300');
INSERT INTO `area` VALUES (1544, '410381', '偃师市', '410300');
INSERT INTO `area` VALUES (1545, '410401', '市辖区', '410400');
INSERT INTO `area` VALUES (1546, '410402', '新华区', '410400');
INSERT INTO `area` VALUES (1547, '410403', '卫东区', '410400');
INSERT INTO `area` VALUES (1548, '410404', '石龙区', '410400');
INSERT INTO `area` VALUES (1549, '410411', '湛河区', '410400');
INSERT INTO `area` VALUES (1550, '410421', '宝丰县', '410400');
INSERT INTO `area` VALUES (1551, '410422', '叶 县', '410400');
INSERT INTO `area` VALUES (1552, '410423', '鲁山县', '410400');
INSERT INTO `area` VALUES (1553, '410425', '郏 县', '410400');
INSERT INTO `area` VALUES (1554, '410481', '舞钢市', '410400');
INSERT INTO `area` VALUES (1555, '410482', '汝州市', '410400');
INSERT INTO `area` VALUES (1556, '410501', '市辖区', '410500');
INSERT INTO `area` VALUES (1557, '410502', '文峰区', '410500');
INSERT INTO `area` VALUES (1558, '410503', '北关区', '410500');
INSERT INTO `area` VALUES (1559, '410505', '殷都区', '410500');
INSERT INTO `area` VALUES (1560, '410506', '龙安区', '410500');
INSERT INTO `area` VALUES (1561, '410522', '安阳县', '410500');
INSERT INTO `area` VALUES (1562, '410523', '汤阴县', '410500');
INSERT INTO `area` VALUES (1563, '410526', '滑 县', '410500');
INSERT INTO `area` VALUES (1564, '410527', '内黄县', '410500');
INSERT INTO `area` VALUES (1565, '410581', '林州市', '410500');
INSERT INTO `area` VALUES (1566, '410601', '市辖区', '410600');
INSERT INTO `area` VALUES (1567, '410602', '鹤山区', '410600');
INSERT INTO `area` VALUES (1568, '410603', '山城区', '410600');
INSERT INTO `area` VALUES (1569, '410611', '淇滨区', '410600');
INSERT INTO `area` VALUES (1570, '410621', '浚 县', '410600');
INSERT INTO `area` VALUES (1571, '410622', '淇 县', '410600');
INSERT INTO `area` VALUES (1572, '410701', '市辖区', '410700');
INSERT INTO `area` VALUES (1573, '410702', '红旗区', '410700');
INSERT INTO `area` VALUES (1574, '410703', '卫滨区', '410700');
INSERT INTO `area` VALUES (1575, '410704', '凤泉区', '410700');
INSERT INTO `area` VALUES (1576, '410711', '牧野区', '410700');
INSERT INTO `area` VALUES (1577, '410721', '新乡县', '410700');
INSERT INTO `area` VALUES (1578, '410724', '获嘉县', '410700');
INSERT INTO `area` VALUES (1579, '410725', '原阳县', '410700');
INSERT INTO `area` VALUES (1580, '410726', '延津县', '410700');
INSERT INTO `area` VALUES (1581, '410727', '封丘县', '410700');
INSERT INTO `area` VALUES (1582, '410728', '长垣县', '410700');
INSERT INTO `area` VALUES (1583, '410781', '卫辉市', '410700');
INSERT INTO `area` VALUES (1584, '410782', '辉县市', '410700');
INSERT INTO `area` VALUES (1585, '410801', '市辖区', '410800');
INSERT INTO `area` VALUES (1586, '410802', '解放区', '410800');
INSERT INTO `area` VALUES (1587, '410803', '中站区', '410800');
INSERT INTO `area` VALUES (1588, '410804', '马村区', '410800');
INSERT INTO `area` VALUES (1589, '410811', '山阳区', '410800');
INSERT INTO `area` VALUES (1590, '410821', '修武县', '410800');
INSERT INTO `area` VALUES (1591, '410822', '博爱县', '410800');
INSERT INTO `area` VALUES (1592, '410823', '武陟县', '410800');
INSERT INTO `area` VALUES (1593, '410825', '温 县', '410800');
INSERT INTO `area` VALUES (1594, '410881', '济源市', '410800');
INSERT INTO `area` VALUES (1595, '410882', '沁阳市', '410800');
INSERT INTO `area` VALUES (1596, '410883', '孟州市', '410800');
INSERT INTO `area` VALUES (1597, '410901', '市辖区', '410900');
INSERT INTO `area` VALUES (1598, '410902', '华龙区', '410900');
INSERT INTO `area` VALUES (1599, '410922', '清丰县', '410900');
INSERT INTO `area` VALUES (1600, '410923', '南乐县', '410900');
INSERT INTO `area` VALUES (1601, '410926', '范 县', '410900');
INSERT INTO `area` VALUES (1602, '410927', '台前县', '410900');
INSERT INTO `area` VALUES (1603, '410928', '濮阳县', '410900');
INSERT INTO `area` VALUES (1604, '411001', '市辖区', '411000');
INSERT INTO `area` VALUES (1605, '411002', '魏都区', '411000');
INSERT INTO `area` VALUES (1606, '411023', '许昌县', '411000');
INSERT INTO `area` VALUES (1607, '411024', '鄢陵县', '411000');
INSERT INTO `area` VALUES (1608, '411025', '襄城县', '411000');
INSERT INTO `area` VALUES (1609, '411081', '禹州市', '411000');
INSERT INTO `area` VALUES (1610, '411082', '长葛市', '411000');
INSERT INTO `area` VALUES (1611, '411101', '市辖区', '411100');
INSERT INTO `area` VALUES (1612, '411102', '源汇区', '411100');
INSERT INTO `area` VALUES (1613, '411103', '郾城区', '411100');
INSERT INTO `area` VALUES (1614, '411104', '召陵区', '411100');
INSERT INTO `area` VALUES (1615, '411121', '舞阳县', '411100');
INSERT INTO `area` VALUES (1616, '411122', '临颍县', '411100');
INSERT INTO `area` VALUES (1617, '411201', '市辖区', '411200');
INSERT INTO `area` VALUES (1618, '411202', '湖滨区', '411200');
INSERT INTO `area` VALUES (1619, '411221', '渑池县', '411200');
INSERT INTO `area` VALUES (1620, '411222', '陕 县', '411200');
INSERT INTO `area` VALUES (1621, '411224', '卢氏县', '411200');
INSERT INTO `area` VALUES (1622, '411281', '义马市', '411200');
INSERT INTO `area` VALUES (1623, '411282', '灵宝市', '411200');
INSERT INTO `area` VALUES (1624, '411301', '市辖区', '411300');
INSERT INTO `area` VALUES (1625, '411302', '宛城区', '411300');
INSERT INTO `area` VALUES (1626, '411303', '卧龙区', '411300');
INSERT INTO `area` VALUES (1627, '411321', '南召县', '411300');
INSERT INTO `area` VALUES (1628, '411322', '方城县', '411300');
INSERT INTO `area` VALUES (1629, '411323', '西峡县', '411300');
INSERT INTO `area` VALUES (1630, '411324', '镇平县', '411300');
INSERT INTO `area` VALUES (1631, '411325', '内乡县', '411300');
INSERT INTO `area` VALUES (1632, '411326', '淅川县', '411300');
INSERT INTO `area` VALUES (1633, '411327', '社旗县', '411300');
INSERT INTO `area` VALUES (1634, '411328', '唐河县', '411300');
INSERT INTO `area` VALUES (1635, '411329', '新野县', '411300');
INSERT INTO `area` VALUES (1636, '411330', '桐柏县', '411300');
INSERT INTO `area` VALUES (1637, '411381', '邓州市', '411300');
INSERT INTO `area` VALUES (1638, '411401', '市辖区', '411400');
INSERT INTO `area` VALUES (1639, '411402', '梁园区', '411400');
INSERT INTO `area` VALUES (1640, '411403', '睢阳区', '411400');
INSERT INTO `area` VALUES (1641, '411421', '民权县', '411400');
INSERT INTO `area` VALUES (1642, '411422', '睢 县', '411400');
INSERT INTO `area` VALUES (1643, '411423', '宁陵县', '411400');
INSERT INTO `area` VALUES (1644, '411424', '柘城县', '411400');
INSERT INTO `area` VALUES (1645, '411425', '虞城县', '411400');
INSERT INTO `area` VALUES (1646, '411426', '夏邑县', '411400');
INSERT INTO `area` VALUES (1647, '411481', '永城市', '411400');
INSERT INTO `area` VALUES (1648, '411501', '市辖区', '411500');
INSERT INTO `area` VALUES (1649, '411502', '师河区', '411500');
INSERT INTO `area` VALUES (1650, '411503', '平桥区', '411500');
INSERT INTO `area` VALUES (1651, '411521', '罗山县', '411500');
INSERT INTO `area` VALUES (1652, '411522', '光山县', '411500');
INSERT INTO `area` VALUES (1653, '411523', '新 县', '411500');
INSERT INTO `area` VALUES (1654, '411524', '商城县', '411500');
INSERT INTO `area` VALUES (1655, '411525', '固始县', '411500');
INSERT INTO `area` VALUES (1656, '411526', '潢川县', '411500');
INSERT INTO `area` VALUES (1657, '411527', '淮滨县', '411500');
INSERT INTO `area` VALUES (1658, '411528', '息 县', '411500');
INSERT INTO `area` VALUES (1659, '411601', '市辖区', '411600');
INSERT INTO `area` VALUES (1660, '411602', '川汇区', '411600');
INSERT INTO `area` VALUES (1661, '411621', '扶沟县', '411600');
INSERT INTO `area` VALUES (1662, '411622', '西华县', '411600');
INSERT INTO `area` VALUES (1663, '411623', '商水县', '411600');
INSERT INTO `area` VALUES (1664, '411624', '沈丘县', '411600');
INSERT INTO `area` VALUES (1665, '411625', '郸城县', '411600');
INSERT INTO `area` VALUES (1666, '411626', '淮阳县', '411600');
INSERT INTO `area` VALUES (1667, '411627', '太康县', '411600');
INSERT INTO `area` VALUES (1668, '411628', '鹿邑县', '411600');
INSERT INTO `area` VALUES (1669, '411681', '项城市', '411600');
INSERT INTO `area` VALUES (1670, '411701', '市辖区', '411700');
INSERT INTO `area` VALUES (1671, '411702', '驿城区', '411700');
INSERT INTO `area` VALUES (1672, '411721', '西平县', '411700');
INSERT INTO `area` VALUES (1673, '411722', '上蔡县', '411700');
INSERT INTO `area` VALUES (1674, '411723', '平舆县', '411700');
INSERT INTO `area` VALUES (1675, '411724', '正阳县', '411700');
INSERT INTO `area` VALUES (1676, '411725', '确山县', '411700');
INSERT INTO `area` VALUES (1677, '411726', '泌阳县', '411700');
INSERT INTO `area` VALUES (1678, '411727', '汝南县', '411700');
INSERT INTO `area` VALUES (1679, '411728', '遂平县', '411700');
INSERT INTO `area` VALUES (1680, '411729', '新蔡县', '411700');
INSERT INTO `area` VALUES (1681, '420101', '市辖区', '420100');
INSERT INTO `area` VALUES (1682, '420102', '江岸区', '420100');
INSERT INTO `area` VALUES (1683, '420103', '江汉区', '420100');
INSERT INTO `area` VALUES (1684, '420104', '乔口区', '420100');
INSERT INTO `area` VALUES (1685, '420105', '汉阳区', '420100');
INSERT INTO `area` VALUES (1686, '420106', '武昌区', '420100');
INSERT INTO `area` VALUES (1687, '420107', '青山区', '420100');
INSERT INTO `area` VALUES (1688, '420111', '洪山区', '420100');
INSERT INTO `area` VALUES (1689, '420112', '东西湖区', '420100');
INSERT INTO `area` VALUES (1690, '420113', '汉南区', '420100');
INSERT INTO `area` VALUES (1691, '420114', '蔡甸区', '420100');
INSERT INTO `area` VALUES (1692, '420115', '江夏区', '420100');
INSERT INTO `area` VALUES (1693, '420116', '黄陂区', '420100');
INSERT INTO `area` VALUES (1694, '420117', '新洲区', '420100');
INSERT INTO `area` VALUES (1695, '420201', '市辖区', '420200');
INSERT INTO `area` VALUES (1696, '420202', '黄石港区', '420200');
INSERT INTO `area` VALUES (1697, '420203', '西塞山区', '420200');
INSERT INTO `area` VALUES (1698, '420204', '下陆区', '420200');
INSERT INTO `area` VALUES (1699, '420205', '铁山区', '420200');
INSERT INTO `area` VALUES (1700, '420222', '阳新县', '420200');
INSERT INTO `area` VALUES (1701, '420281', '大冶市', '420200');
INSERT INTO `area` VALUES (1702, '420301', '市辖区', '420300');
INSERT INTO `area` VALUES (1703, '420302', '茅箭区', '420300');
INSERT INTO `area` VALUES (1704, '420303', '张湾区', '420300');
INSERT INTO `area` VALUES (1705, '420321', '郧 县', '420300');
INSERT INTO `area` VALUES (1706, '420322', '郧西县', '420300');
INSERT INTO `area` VALUES (1707, '420323', '竹山县', '420300');
INSERT INTO `area` VALUES (1708, '420324', '竹溪县', '420300');
INSERT INTO `area` VALUES (1709, '420325', '房 县', '420300');
INSERT INTO `area` VALUES (1710, '420381', '丹江口市', '420300');
INSERT INTO `area` VALUES (1711, '420501', '市辖区', '420500');
INSERT INTO `area` VALUES (1712, '420502', '西陵区', '420500');
INSERT INTO `area` VALUES (1713, '420503', '伍家岗区', '420500');
INSERT INTO `area` VALUES (1714, '420504', '点军区', '420500');
INSERT INTO `area` VALUES (1715, '420505', '猇亭区', '420500');
INSERT INTO `area` VALUES (1716, '420506', '夷陵区', '420500');
INSERT INTO `area` VALUES (1717, '420525', '远安县', '420500');
INSERT INTO `area` VALUES (1718, '420526', '兴山县', '420500');
INSERT INTO `area` VALUES (1719, '420527', '秭归县', '420500');
INSERT INTO `area` VALUES (1720, '420528', '长阳土家族自治县', '420500');
INSERT INTO `area` VALUES (1721, '420529', '五峰土家族自治县', '420500');
INSERT INTO `area` VALUES (1722, '420581', '宜都市', '420500');
INSERT INTO `area` VALUES (1723, '420582', '当阳市', '420500');
INSERT INTO `area` VALUES (1724, '420583', '枝江市', '420500');
INSERT INTO `area` VALUES (1725, '420601', '市辖区', '420600');
INSERT INTO `area` VALUES (1726, '420602', '襄城区', '420600');
INSERT INTO `area` VALUES (1727, '420606', '樊城区', '420600');
INSERT INTO `area` VALUES (1728, '420607', '襄阳区', '420600');
INSERT INTO `area` VALUES (1729, '420624', '南漳县', '420600');
INSERT INTO `area` VALUES (1730, '420625', '谷城县', '420600');
INSERT INTO `area` VALUES (1731, '420626', '保康县', '420600');
INSERT INTO `area` VALUES (1732, '420682', '老河口市', '420600');
INSERT INTO `area` VALUES (1733, '420683', '枣阳市', '420600');
INSERT INTO `area` VALUES (1734, '420684', '宜城市', '420600');
INSERT INTO `area` VALUES (1735, '420701', '市辖区', '420700');
INSERT INTO `area` VALUES (1736, '420702', '梁子湖区', '420700');
INSERT INTO `area` VALUES (1737, '420703', '华容区', '420700');
INSERT INTO `area` VALUES (1738, '420704', '鄂城区', '420700');
INSERT INTO `area` VALUES (1739, '420801', '市辖区', '420800');
INSERT INTO `area` VALUES (1740, '420802', '东宝区', '420800');
INSERT INTO `area` VALUES (1741, '420804', '掇刀区', '420800');
INSERT INTO `area` VALUES (1742, '420821', '京山县', '420800');
INSERT INTO `area` VALUES (1743, '420822', '沙洋县', '420800');
INSERT INTO `area` VALUES (1744, '420881', '钟祥市', '420800');
INSERT INTO `area` VALUES (1745, '420901', '市辖区', '420900');
INSERT INTO `area` VALUES (1746, '420902', '孝南区', '420900');
INSERT INTO `area` VALUES (1747, '420921', '孝昌县', '420900');
INSERT INTO `area` VALUES (1748, '420922', '大悟县', '420900');
INSERT INTO `area` VALUES (1749, '420923', '云梦县', '420900');
INSERT INTO `area` VALUES (1750, '420981', '应城市', '420900');
INSERT INTO `area` VALUES (1751, '420982', '安陆市', '420900');
INSERT INTO `area` VALUES (1752, '420984', '汉川市', '420900');
INSERT INTO `area` VALUES (1753, '421001', '市辖区', '421000');
INSERT INTO `area` VALUES (1754, '421002', '沙市区', '421000');
INSERT INTO `area` VALUES (1755, '421003', '荆州区', '421000');
INSERT INTO `area` VALUES (1756, '421022', '公安县', '421000');
INSERT INTO `area` VALUES (1757, '421023', '监利县', '421000');
INSERT INTO `area` VALUES (1758, '421024', '江陵县', '421000');
INSERT INTO `area` VALUES (1759, '421081', '石首市', '421000');
INSERT INTO `area` VALUES (1760, '421083', '洪湖市', '421000');
INSERT INTO `area` VALUES (1761, '421087', '松滋市', '421000');
INSERT INTO `area` VALUES (1762, '421101', '市辖区', '421100');
INSERT INTO `area` VALUES (1763, '421102', '黄州区', '421100');
INSERT INTO `area` VALUES (1764, '421121', '团风县', '421100');
INSERT INTO `area` VALUES (1765, '421122', '红安县', '421100');
INSERT INTO `area` VALUES (1766, '421123', '罗田县', '421100');
INSERT INTO `area` VALUES (1767, '421124', '英山县', '421100');
INSERT INTO `area` VALUES (1768, '421125', '浠水县', '421100');
INSERT INTO `area` VALUES (1769, '421126', '蕲春县', '421100');
INSERT INTO `area` VALUES (1770, '421127', '黄梅县', '421100');
INSERT INTO `area` VALUES (1771, '421181', '麻城市', '421100');
INSERT INTO `area` VALUES (1772, '421182', '武穴市', '421100');
INSERT INTO `area` VALUES (1773, '421201', '市辖区', '421200');
INSERT INTO `area` VALUES (1774, '421202', '咸安区', '421200');
INSERT INTO `area` VALUES (1775, '421221', '嘉鱼县', '421200');
INSERT INTO `area` VALUES (1776, '421222', '通城县', '421200');
INSERT INTO `area` VALUES (1777, '421223', '崇阳县', '421200');
INSERT INTO `area` VALUES (1778, '421224', '通山县', '421200');
INSERT INTO `area` VALUES (1779, '421281', '赤壁市', '421200');
INSERT INTO `area` VALUES (1780, '421301', '市辖区', '421300');
INSERT INTO `area` VALUES (1781, '421302', '曾都区', '421300');
INSERT INTO `area` VALUES (1782, '421381', '广水市', '421300');
INSERT INTO `area` VALUES (1783, '422801', '恩施市', '422800');
INSERT INTO `area` VALUES (1784, '422802', '利川市', '422800');
INSERT INTO `area` VALUES (1785, '422822', '建始县', '422800');
INSERT INTO `area` VALUES (1786, '422823', '巴东县', '422800');
INSERT INTO `area` VALUES (1787, '422825', '宣恩县', '422800');
INSERT INTO `area` VALUES (1788, '422826', '咸丰县', '422800');
INSERT INTO `area` VALUES (1789, '422827', '来凤县', '422800');
INSERT INTO `area` VALUES (1790, '422828', '鹤峰县', '422800');
INSERT INTO `area` VALUES (1791, '429004', '仙桃市', '429000');
INSERT INTO `area` VALUES (1792, '429005', '潜江市', '429000');
INSERT INTO `area` VALUES (1793, '429006', '天门市', '429000');
INSERT INTO `area` VALUES (1794, '429021', '神农架林区', '429000');
INSERT INTO `area` VALUES (1795, '430101', '市辖区', '430100');
INSERT INTO `area` VALUES (1796, '430102', '芙蓉区', '430100');
INSERT INTO `area` VALUES (1797, '430103', '天心区', '430100');
INSERT INTO `area` VALUES (1798, '430104', '岳麓区', '430100');
INSERT INTO `area` VALUES (1799, '430105', '开福区', '430100');
INSERT INTO `area` VALUES (1800, '430111', '雨花区', '430100');
INSERT INTO `area` VALUES (1801, '430121', '长沙县', '430100');
INSERT INTO `area` VALUES (1802, '430122', '望城县', '430100');
INSERT INTO `area` VALUES (1803, '430124', '宁乡县', '430100');
INSERT INTO `area` VALUES (1804, '430181', '浏阳市', '430100');
INSERT INTO `area` VALUES (1805, '430201', '市辖区', '430200');
INSERT INTO `area` VALUES (1806, '430202', '荷塘区', '430200');
INSERT INTO `area` VALUES (1807, '430203', '芦淞区', '430200');
INSERT INTO `area` VALUES (1808, '430204', '石峰区', '430200');
INSERT INTO `area` VALUES (1809, '430211', '天元区', '430200');
INSERT INTO `area` VALUES (1810, '430221', '株洲县', '430200');
INSERT INTO `area` VALUES (1811, '430223', '攸 县', '430200');
INSERT INTO `area` VALUES (1812, '430224', '茶陵县', '430200');
INSERT INTO `area` VALUES (1813, '430225', '炎陵县', '430200');
INSERT INTO `area` VALUES (1814, '430281', '醴陵市', '430200');
INSERT INTO `area` VALUES (1815, '430301', '市辖区', '430300');
INSERT INTO `area` VALUES (1816, '430302', '雨湖区', '430300');
INSERT INTO `area` VALUES (1817, '430304', '岳塘区', '430300');
INSERT INTO `area` VALUES (1818, '430321', '湘潭县', '430300');
INSERT INTO `area` VALUES (1819, '430381', '湘乡市', '430300');
INSERT INTO `area` VALUES (1820, '430382', '韶山市', '430300');
INSERT INTO `area` VALUES (1821, '430401', '市辖区', '430400');
INSERT INTO `area` VALUES (1822, '430405', '珠晖区', '430400');
INSERT INTO `area` VALUES (1823, '430406', '雁峰区', '430400');
INSERT INTO `area` VALUES (1824, '430407', '石鼓区', '430400');
INSERT INTO `area` VALUES (1825, '430408', '蒸湘区', '430400');
INSERT INTO `area` VALUES (1826, '430412', '南岳区', '430400');
INSERT INTO `area` VALUES (1827, '430421', '衡阳县', '430400');
INSERT INTO `area` VALUES (1828, '430422', '衡南县', '430400');
INSERT INTO `area` VALUES (1829, '430423', '衡山县', '430400');
INSERT INTO `area` VALUES (1830, '430424', '衡东县', '430400');
INSERT INTO `area` VALUES (1831, '430426', '祁东县', '430400');
INSERT INTO `area` VALUES (1832, '430481', '耒阳市', '430400');
INSERT INTO `area` VALUES (1833, '430482', '常宁市', '430400');
INSERT INTO `area` VALUES (1834, '430501', '市辖区', '430500');
INSERT INTO `area` VALUES (1835, '430502', '双清区', '430500');
INSERT INTO `area` VALUES (1836, '430503', '大祥区', '430500');
INSERT INTO `area` VALUES (1837, '430511', '北塔区', '430500');
INSERT INTO `area` VALUES (1838, '430521', '邵东县', '430500');
INSERT INTO `area` VALUES (1839, '430522', '新邵县', '430500');
INSERT INTO `area` VALUES (1840, '430523', '邵阳县', '430500');
INSERT INTO `area` VALUES (1841, '430524', '隆回县', '430500');
INSERT INTO `area` VALUES (1842, '430525', '洞口县', '430500');
INSERT INTO `area` VALUES (1843, '430527', '绥宁县', '430500');
INSERT INTO `area` VALUES (1844, '430528', '新宁县', '430500');
INSERT INTO `area` VALUES (1845, '430529', '城步苗族自治县', '430500');
INSERT INTO `area` VALUES (1846, '430581', '武冈市', '430500');
INSERT INTO `area` VALUES (1847, '430601', '市辖区', '430600');
INSERT INTO `area` VALUES (1848, '430602', '岳阳楼区', '430600');
INSERT INTO `area` VALUES (1849, '430603', '云溪区', '430600');
INSERT INTO `area` VALUES (1850, '430611', '君山区', '430600');
INSERT INTO `area` VALUES (1851, '430621', '岳阳县', '430600');
INSERT INTO `area` VALUES (1852, '430623', '华容县', '430600');
INSERT INTO `area` VALUES (1853, '430624', '湘阴县', '430600');
INSERT INTO `area` VALUES (1854, '430626', '平江县', '430600');
INSERT INTO `area` VALUES (1855, '430681', '汨罗市', '430600');
INSERT INTO `area` VALUES (1856, '430682', '临湘市', '430600');
INSERT INTO `area` VALUES (1857, '430701', '市辖区', '430700');
INSERT INTO `area` VALUES (1858, '430702', '武陵区', '430700');
INSERT INTO `area` VALUES (1859, '430703', '鼎城区', '430700');
INSERT INTO `area` VALUES (1860, '430721', '安乡县', '430700');
INSERT INTO `area` VALUES (1861, '430722', '汉寿县', '430700');
INSERT INTO `area` VALUES (1862, '430723', '澧 县', '430700');
INSERT INTO `area` VALUES (1863, '430724', '临澧县', '430700');
INSERT INTO `area` VALUES (1864, '430725', '桃源县', '430700');
INSERT INTO `area` VALUES (1865, '430726', '石门县', '430700');
INSERT INTO `area` VALUES (1866, '430781', '津市市', '430700');
INSERT INTO `area` VALUES (1867, '430801', '市辖区', '430800');
INSERT INTO `area` VALUES (1868, '430802', '永定区', '430800');
INSERT INTO `area` VALUES (1869, '430811', '武陵源区', '430800');
INSERT INTO `area` VALUES (1870, '430821', '慈利县', '430800');
INSERT INTO `area` VALUES (1871, '430822', '桑植县', '430800');
INSERT INTO `area` VALUES (1872, '430901', '市辖区', '430900');
INSERT INTO `area` VALUES (1873, '430902', '资阳区', '430900');
INSERT INTO `area` VALUES (1874, '430903', '赫山区', '430900');
INSERT INTO `area` VALUES (1875, '430921', '南 县', '430900');
INSERT INTO `area` VALUES (1876, '430922', '桃江县', '430900');
INSERT INTO `area` VALUES (1877, '430923', '安化县', '430900');
INSERT INTO `area` VALUES (1878, '430981', '沅江市', '430900');
INSERT INTO `area` VALUES (1879, '431001', '市辖区', '431000');
INSERT INTO `area` VALUES (1880, '431002', '北湖区', '431000');
INSERT INTO `area` VALUES (1881, '431003', '苏仙区', '431000');
INSERT INTO `area` VALUES (1882, '431021', '桂阳县', '431000');
INSERT INTO `area` VALUES (1883, '431022', '宜章县', '431000');
INSERT INTO `area` VALUES (1884, '431023', '永兴县', '431000');
INSERT INTO `area` VALUES (1885, '431024', '嘉禾县', '431000');
INSERT INTO `area` VALUES (1886, '431025', '临武县', '431000');
INSERT INTO `area` VALUES (1887, '431026', '汝城县', '431000');
INSERT INTO `area` VALUES (1888, '431027', '桂东县', '431000');
INSERT INTO `area` VALUES (1889, '431028', '安仁县', '431000');
INSERT INTO `area` VALUES (1890, '431081', '资兴市', '431000');
INSERT INTO `area` VALUES (1891, '431101', '市辖区', '431100');
INSERT INTO `area` VALUES (1892, '431102', '芝山区', '431100');
INSERT INTO `area` VALUES (1893, '431103', '冷水滩区', '431100');
INSERT INTO `area` VALUES (1894, '431121', '祁阳县', '431100');
INSERT INTO `area` VALUES (1895, '431122', '东安县', '431100');
INSERT INTO `area` VALUES (1896, '431123', '双牌县', '431100');
INSERT INTO `area` VALUES (1897, '431124', '道 县', '431100');
INSERT INTO `area` VALUES (1898, '431125', '江永县', '431100');
INSERT INTO `area` VALUES (1899, '431126', '宁远县', '431100');
INSERT INTO `area` VALUES (1900, '431127', '蓝山县', '431100');
INSERT INTO `area` VALUES (1901, '431128', '新田县', '431100');
INSERT INTO `area` VALUES (1902, '431129', '江华瑶族自治县', '431100');
INSERT INTO `area` VALUES (1903, '431201', '市辖区', '431200');
INSERT INTO `area` VALUES (1904, '431202', '鹤城区', '431200');
INSERT INTO `area` VALUES (1905, '431221', '中方县', '431200');
INSERT INTO `area` VALUES (1906, '431222', '沅陵县', '431200');
INSERT INTO `area` VALUES (1907, '431223', '辰溪县', '431200');
INSERT INTO `area` VALUES (1908, '431224', '溆浦县', '431200');
INSERT INTO `area` VALUES (1909, '431225', '会同县', '431200');
INSERT INTO `area` VALUES (1910, '431226', '麻阳苗族自治县', '431200');
INSERT INTO `area` VALUES (1911, '431227', '新晃侗族自治县', '431200');
INSERT INTO `area` VALUES (1912, '431228', '芷江侗族自治县', '431200');
INSERT INTO `area` VALUES (1913, '431229', '靖州苗族侗族自治县', '431200');
INSERT INTO `area` VALUES (1914, '431230', '通道侗族自治县', '431200');
INSERT INTO `area` VALUES (1915, '431281', '洪江市', '431200');
INSERT INTO `area` VALUES (1916, '431301', '市辖区', '431300');
INSERT INTO `area` VALUES (1917, '431302', '娄星区', '431300');
INSERT INTO `area` VALUES (1918, '431321', '双峰县', '431300');
INSERT INTO `area` VALUES (1919, '431322', '新化县', '431300');
INSERT INTO `area` VALUES (1920, '431381', '冷水江市', '431300');
INSERT INTO `area` VALUES (1921, '431382', '涟源市', '431300');
INSERT INTO `area` VALUES (1922, '433101', '吉首市', '433100');
INSERT INTO `area` VALUES (1923, '433122', '泸溪县', '433100');
INSERT INTO `area` VALUES (1924, '433123', '凤凰县', '433100');
INSERT INTO `area` VALUES (1925, '433124', '花垣县', '433100');
INSERT INTO `area` VALUES (1926, '433125', '保靖县', '433100');
INSERT INTO `area` VALUES (1927, '433126', '古丈县', '433100');
INSERT INTO `area` VALUES (1928, '433127', '永顺县', '433100');
INSERT INTO `area` VALUES (1929, '433130', '龙山县', '433100');
INSERT INTO `area` VALUES (1930, '440101', '市辖区', '440100');
INSERT INTO `area` VALUES (1931, '440102', '东山区', '440100');
INSERT INTO `area` VALUES (1932, '440103', '荔湾区', '440100');
INSERT INTO `area` VALUES (1933, '440104', '越秀区', '440100');
INSERT INTO `area` VALUES (1934, '440105', '海珠区', '440100');
INSERT INTO `area` VALUES (1935, '440106', '天河区', '440100');
INSERT INTO `area` VALUES (1936, '440107', '芳村区', '440100');
INSERT INTO `area` VALUES (1937, '440111', '白云区', '440100');
INSERT INTO `area` VALUES (1938, '440112', '黄埔区', '440100');
INSERT INTO `area` VALUES (1939, '440113', '番禺区', '440100');
INSERT INTO `area` VALUES (1940, '440114', '花都区', '440100');
INSERT INTO `area` VALUES (1941, '440183', '增城市', '440100');
INSERT INTO `area` VALUES (1942, '440184', '从化市', '440100');
INSERT INTO `area` VALUES (1943, '440201', '市辖区', '440200');
INSERT INTO `area` VALUES (1944, '440203', '武江区', '440200');
INSERT INTO `area` VALUES (1945, '440204', '浈江区', '440200');
INSERT INTO `area` VALUES (1946, '440205', '曲江区', '440200');
INSERT INTO `area` VALUES (1947, '440222', '始兴县', '440200');
INSERT INTO `area` VALUES (1948, '440224', '仁化县', '440200');
INSERT INTO `area` VALUES (1949, '440229', '翁源县', '440200');
INSERT INTO `area` VALUES (1950, '440232', '乳源瑶族自治县', '440200');
INSERT INTO `area` VALUES (1951, '440233', '新丰县', '440200');
INSERT INTO `area` VALUES (1952, '440281', '乐昌市', '440200');
INSERT INTO `area` VALUES (1953, '440282', '南雄市', '440200');
INSERT INTO `area` VALUES (1954, '440301', '市辖区', '440300');
INSERT INTO `area` VALUES (1955, '440303', '罗湖区', '440300');
INSERT INTO `area` VALUES (1956, '440304', '福田区', '440300');
INSERT INTO `area` VALUES (1957, '440305', '南山区', '440300');
INSERT INTO `area` VALUES (1958, '440306', '宝安区', '440300');
INSERT INTO `area` VALUES (1959, '440307', '龙岗区', '440300');
INSERT INTO `area` VALUES (1960, '440308', '盐田区', '440300');
INSERT INTO `area` VALUES (1961, '440401', '市辖区', '440400');
INSERT INTO `area` VALUES (1962, '440402', '香洲区', '440400');
INSERT INTO `area` VALUES (1963, '440403', '斗门区', '440400');
INSERT INTO `area` VALUES (1964, '440404', '金湾区', '440400');
INSERT INTO `area` VALUES (1965, '440501', '市辖区', '440500');
INSERT INTO `area` VALUES (1966, '440507', '龙湖区', '440500');
INSERT INTO `area` VALUES (1967, '440511', '金平区', '440500');
INSERT INTO `area` VALUES (1968, '440512', '濠江区', '440500');
INSERT INTO `area` VALUES (1969, '440513', '潮阳区', '440500');
INSERT INTO `area` VALUES (1970, '440514', '潮南区', '440500');
INSERT INTO `area` VALUES (1971, '440515', '澄海区', '440500');
INSERT INTO `area` VALUES (1972, '440523', '南澳县', '440500');
INSERT INTO `area` VALUES (1973, '440601', '市辖区', '440600');
INSERT INTO `area` VALUES (1974, '440604', '禅城区', '440600');
INSERT INTO `area` VALUES (1975, '440605', '南海区', '440600');
INSERT INTO `area` VALUES (1976, '440606', '顺德区', '440600');
INSERT INTO `area` VALUES (1977, '440607', '三水区', '440600');
INSERT INTO `area` VALUES (1978, '440608', '高明区', '440600');
INSERT INTO `area` VALUES (1979, '440701', '市辖区', '440700');
INSERT INTO `area` VALUES (1980, '440703', '蓬江区', '440700');
INSERT INTO `area` VALUES (1981, '440704', '江海区', '440700');
INSERT INTO `area` VALUES (1982, '440705', '新会区', '440700');
INSERT INTO `area` VALUES (1983, '440781', '台山市', '440700');
INSERT INTO `area` VALUES (1984, '440783', '开平市', '440700');
INSERT INTO `area` VALUES (1985, '440784', '鹤山市', '440700');
INSERT INTO `area` VALUES (1986, '440785', '恩平市', '440700');
INSERT INTO `area` VALUES (1987, '440801', '市辖区', '440800');
INSERT INTO `area` VALUES (1988, '440802', '赤坎区', '440800');
INSERT INTO `area` VALUES (1989, '440803', '霞山区', '440800');
INSERT INTO `area` VALUES (1990, '440804', '坡头区', '440800');
INSERT INTO `area` VALUES (1991, '440811', '麻章区', '440800');
INSERT INTO `area` VALUES (1992, '440823', '遂溪县', '440800');
INSERT INTO `area` VALUES (1993, '440825', '徐闻县', '440800');
INSERT INTO `area` VALUES (1994, '440881', '廉江市', '440800');
INSERT INTO `area` VALUES (1995, '440882', '雷州市', '440800');
INSERT INTO `area` VALUES (1996, '440883', '吴川市', '440800');
INSERT INTO `area` VALUES (1997, '440901', '市辖区', '440900');
INSERT INTO `area` VALUES (1998, '440902', '茂南区', '440900');
INSERT INTO `area` VALUES (1999, '440903', '茂港区', '440900');
INSERT INTO `area` VALUES (2000, '440923', '电白县', '440900');
INSERT INTO `area` VALUES (2001, '440981', '高州市', '440900');
INSERT INTO `area` VALUES (2002, '440982', '化州市', '440900');
INSERT INTO `area` VALUES (2003, '440983', '信宜市', '440900');
INSERT INTO `area` VALUES (2004, '441201', '市辖区', '441200');
INSERT INTO `area` VALUES (2005, '441202', '端州区', '441200');
INSERT INTO `area` VALUES (2006, '441203', '鼎湖区', '441200');
INSERT INTO `area` VALUES (2007, '441223', '广宁县', '441200');
INSERT INTO `area` VALUES (2008, '441224', '怀集县', '441200');
INSERT INTO `area` VALUES (2009, '441225', '封开县', '441200');
INSERT INTO `area` VALUES (2010, '441226', '德庆县', '441200');
INSERT INTO `area` VALUES (2011, '441283', '高要市', '441200');
INSERT INTO `area` VALUES (2012, '441284', '四会市', '441200');
INSERT INTO `area` VALUES (2013, '441301', '市辖区', '441300');
INSERT INTO `area` VALUES (2014, '441302', '惠城区', '441300');
INSERT INTO `area` VALUES (2015, '441303', '惠阳区', '441300');
INSERT INTO `area` VALUES (2016, '441322', '博罗县', '441300');
INSERT INTO `area` VALUES (2017, '441323', '惠东县', '441300');
INSERT INTO `area` VALUES (2018, '441324', '龙门县', '441300');
INSERT INTO `area` VALUES (2019, '441401', '市辖区', '441400');
INSERT INTO `area` VALUES (2020, '441402', '梅江区', '441400');
INSERT INTO `area` VALUES (2021, '441421', '梅 县', '441400');
INSERT INTO `area` VALUES (2022, '441422', '大埔县', '441400');
INSERT INTO `area` VALUES (2023, '441423', '丰顺县', '441400');
INSERT INTO `area` VALUES (2024, '441424', '五华县', '441400');
INSERT INTO `area` VALUES (2025, '441426', '平远县', '441400');
INSERT INTO `area` VALUES (2026, '441427', '蕉岭县', '441400');
INSERT INTO `area` VALUES (2027, '441481', '兴宁市', '441400');
INSERT INTO `area` VALUES (2028, '441501', '市辖区', '441500');
INSERT INTO `area` VALUES (2029, '441502', '城 区', '441500');
INSERT INTO `area` VALUES (2030, '441521', '海丰县', '441500');
INSERT INTO `area` VALUES (2031, '441523', '陆河县', '441500');
INSERT INTO `area` VALUES (2032, '441581', '陆丰市', '441500');
INSERT INTO `area` VALUES (2033, '441601', '市辖区', '441600');
INSERT INTO `area` VALUES (2034, '441602', '源城区', '441600');
INSERT INTO `area` VALUES (2035, '441621', '紫金县', '441600');
INSERT INTO `area` VALUES (2036, '441622', '龙川县', '441600');
INSERT INTO `area` VALUES (2037, '441623', '连平县', '441600');
INSERT INTO `area` VALUES (2038, '441624', '和平县', '441600');
INSERT INTO `area` VALUES (2039, '441625', '东源县', '441600');
INSERT INTO `area` VALUES (2040, '441701', '市辖区', '441700');
INSERT INTO `area` VALUES (2041, '441702', '江城区', '441700');
INSERT INTO `area` VALUES (2042, '441721', '阳西县', '441700');
INSERT INTO `area` VALUES (2043, '441723', '阳东县', '441700');
INSERT INTO `area` VALUES (2044, '441781', '阳春市', '441700');
INSERT INTO `area` VALUES (2045, '441801', '市辖区', '441800');
INSERT INTO `area` VALUES (2046, '441802', '清城区', '441800');
INSERT INTO `area` VALUES (2047, '441821', '佛冈县', '441800');
INSERT INTO `area` VALUES (2048, '441823', '阳山县', '441800');
INSERT INTO `area` VALUES (2049, '441825', '连山壮族瑶族自治县', '441800');
INSERT INTO `area` VALUES (2050, '441826', '连南瑶族自治县', '441800');
INSERT INTO `area` VALUES (2051, '441827', '清新县', '441800');
INSERT INTO `area` VALUES (2052, '441881', '英德市', '441800');
INSERT INTO `area` VALUES (2053, '441882', '连州市', '441800');
INSERT INTO `area` VALUES (2054, '445101', '市辖区', '445100');
INSERT INTO `area` VALUES (2055, '445102', '湘桥区', '445100');
INSERT INTO `area` VALUES (2056, '445121', '潮安县', '445100');
INSERT INTO `area` VALUES (2057, '445122', '饶平县', '445100');
INSERT INTO `area` VALUES (2058, '445201', '市辖区', '445200');
INSERT INTO `area` VALUES (2059, '445202', '榕城区', '445200');
INSERT INTO `area` VALUES (2060, '445221', '揭东县', '445200');
INSERT INTO `area` VALUES (2061, '445222', '揭西县', '445200');
INSERT INTO `area` VALUES (2062, '445224', '惠来县', '445200');
INSERT INTO `area` VALUES (2063, '445281', '普宁市', '445200');
INSERT INTO `area` VALUES (2064, '445301', '市辖区', '445300');
INSERT INTO `area` VALUES (2065, '445302', '云城区', '445300');
INSERT INTO `area` VALUES (2066, '445321', '新兴县', '445300');
INSERT INTO `area` VALUES (2067, '445322', '郁南县', '445300');
INSERT INTO `area` VALUES (2068, '445323', '云安县', '445300');
INSERT INTO `area` VALUES (2069, '445381', '罗定市', '445300');
INSERT INTO `area` VALUES (2070, '450101', '市辖区', '450100');
INSERT INTO `area` VALUES (2071, '450102', '兴宁区', '450100');
INSERT INTO `area` VALUES (2072, '450103', '青秀区', '450100');
INSERT INTO `area` VALUES (2073, '450105', '江南区', '450100');
INSERT INTO `area` VALUES (2074, '450107', '西乡塘区', '450100');
INSERT INTO `area` VALUES (2075, '450108', '良庆区', '450100');
INSERT INTO `area` VALUES (2076, '450109', '邕宁区', '450100');
INSERT INTO `area` VALUES (2077, '450122', '武鸣县', '450100');
INSERT INTO `area` VALUES (2078, '450123', '隆安县', '450100');
INSERT INTO `area` VALUES (2079, '450124', '马山县', '450100');
INSERT INTO `area` VALUES (2080, '450125', '上林县', '450100');
INSERT INTO `area` VALUES (2081, '450126', '宾阳县', '450100');
INSERT INTO `area` VALUES (2082, '450127', '横 县', '450100');
INSERT INTO `area` VALUES (2083, '450201', '市辖区', '450200');
INSERT INTO `area` VALUES (2084, '450202', '城中区', '450200');
INSERT INTO `area` VALUES (2085, '450203', '鱼峰区', '450200');
INSERT INTO `area` VALUES (2086, '450204', '柳南区', '450200');
INSERT INTO `area` VALUES (2087, '450205', '柳北区', '450200');
INSERT INTO `area` VALUES (2088, '450221', '柳江县', '450200');
INSERT INTO `area` VALUES (2089, '450222', '柳城县', '450200');
INSERT INTO `area` VALUES (2090, '450223', '鹿寨县', '450200');
INSERT INTO `area` VALUES (2091, '450224', '融安县', '450200');
INSERT INTO `area` VALUES (2092, '450225', '融水苗族自治县', '450200');
INSERT INTO `area` VALUES (2093, '450226', '三江侗族自治县', '450200');
INSERT INTO `area` VALUES (2094, '450301', '市辖区', '450300');
INSERT INTO `area` VALUES (2095, '450302', '秀峰区', '450300');
INSERT INTO `area` VALUES (2096, '450303', '叠彩区', '450300');
INSERT INTO `area` VALUES (2097, '450304', '象山区', '450300');
INSERT INTO `area` VALUES (2098, '450305', '七星区', '450300');
INSERT INTO `area` VALUES (2099, '450311', '雁山区', '450300');
INSERT INTO `area` VALUES (2100, '450321', '阳朔县', '450300');
INSERT INTO `area` VALUES (2101, '450322', '临桂县', '450300');
INSERT INTO `area` VALUES (2102, '450323', '灵川县', '450300');
INSERT INTO `area` VALUES (2103, '450324', '全州县', '450300');
INSERT INTO `area` VALUES (2104, '450325', '兴安县', '450300');
INSERT INTO `area` VALUES (2105, '450326', '永福县', '450300');
INSERT INTO `area` VALUES (2106, '450327', '灌阳县', '450300');
INSERT INTO `area` VALUES (2107, '450328', '龙胜各族自治县', '450300');
INSERT INTO `area` VALUES (2108, '450329', '资源县', '450300');
INSERT INTO `area` VALUES (2109, '450330', '平乐县', '450300');
INSERT INTO `area` VALUES (2110, '450331', '荔蒲县', '450300');
INSERT INTO `area` VALUES (2111, '450332', '恭城瑶族自治县', '450300');
INSERT INTO `area` VALUES (2112, '450401', '市辖区', '450400');
INSERT INTO `area` VALUES (2113, '450403', '万秀区', '450400');
INSERT INTO `area` VALUES (2114, '450404', '蝶山区', '450400');
INSERT INTO `area` VALUES (2115, '450405', '长洲区', '450400');
INSERT INTO `area` VALUES (2116, '450421', '苍梧县', '450400');
INSERT INTO `area` VALUES (2117, '450422', '藤 县', '450400');
INSERT INTO `area` VALUES (2118, '450423', '蒙山县', '450400');
INSERT INTO `area` VALUES (2119, '450481', '岑溪市', '450400');
INSERT INTO `area` VALUES (2120, '450501', '市辖区', '450500');
INSERT INTO `area` VALUES (2121, '450502', '海城区', '450500');
INSERT INTO `area` VALUES (2122, '450503', '银海区', '450500');
INSERT INTO `area` VALUES (2123, '450512', '铁山港区', '450500');
INSERT INTO `area` VALUES (2124, '450521', '合浦县', '450500');
INSERT INTO `area` VALUES (2125, '450601', '市辖区', '450600');
INSERT INTO `area` VALUES (2126, '450602', '港口区', '450600');
INSERT INTO `area` VALUES (2127, '450603', '防城区', '450600');
INSERT INTO `area` VALUES (2128, '450621', '上思县', '450600');
INSERT INTO `area` VALUES (2129, '450681', '东兴市', '450600');
INSERT INTO `area` VALUES (2130, '450701', '市辖区', '450700');
INSERT INTO `area` VALUES (2131, '450702', '钦南区', '450700');
INSERT INTO `area` VALUES (2132, '450703', '钦北区', '450700');
INSERT INTO `area` VALUES (2133, '450721', '灵山县', '450700');
INSERT INTO `area` VALUES (2134, '450722', '浦北县', '450700');
INSERT INTO `area` VALUES (2135, '450801', '市辖区', '450800');
INSERT INTO `area` VALUES (2136, '450802', '港北区', '450800');
INSERT INTO `area` VALUES (2137, '450803', '港南区', '450800');
INSERT INTO `area` VALUES (2138, '450804', '覃塘区', '450800');
INSERT INTO `area` VALUES (2139, '450821', '平南县', '450800');
INSERT INTO `area` VALUES (2140, '450881', '桂平市', '450800');
INSERT INTO `area` VALUES (2141, '450901', '市辖区', '450900');
INSERT INTO `area` VALUES (2142, '450902', '玉州区', '450900');
INSERT INTO `area` VALUES (2143, '450921', '容 县', '450900');
INSERT INTO `area` VALUES (2144, '450922', '陆川县', '450900');
INSERT INTO `area` VALUES (2145, '450923', '博白县', '450900');
INSERT INTO `area` VALUES (2146, '450924', '兴业县', '450900');
INSERT INTO `area` VALUES (2147, '450981', '北流市', '450900');
INSERT INTO `area` VALUES (2148, '451001', '市辖区', '451000');
INSERT INTO `area` VALUES (2149, '451002', '右江区', '451000');
INSERT INTO `area` VALUES (2150, '451021', '田阳县', '451000');
INSERT INTO `area` VALUES (2151, '451022', '田东县', '451000');
INSERT INTO `area` VALUES (2152, '451023', '平果县', '451000');
INSERT INTO `area` VALUES (2153, '451024', '德保县', '451000');
INSERT INTO `area` VALUES (2154, '451025', '靖西县', '451000');
INSERT INTO `area` VALUES (2155, '451026', '那坡县', '451000');
INSERT INTO `area` VALUES (2156, '451027', '凌云县', '451000');
INSERT INTO `area` VALUES (2157, '451028', '乐业县', '451000');
INSERT INTO `area` VALUES (2158, '451029', '田林县', '451000');
INSERT INTO `area` VALUES (2159, '451030', '西林县', '451000');
INSERT INTO `area` VALUES (2160, '451031', '隆林各族自治县', '451000');
INSERT INTO `area` VALUES (2161, '451101', '市辖区', '451100');
INSERT INTO `area` VALUES (2162, '451102', '八步区', '451100');
INSERT INTO `area` VALUES (2163, '451121', '昭平县', '451100');
INSERT INTO `area` VALUES (2164, '451122', '钟山县', '451100');
INSERT INTO `area` VALUES (2165, '451123', '富川瑶族自治县', '451100');
INSERT INTO `area` VALUES (2166, '451201', '市辖区', '451200');
INSERT INTO `area` VALUES (2167, '451202', '金城江区', '451200');
INSERT INTO `area` VALUES (2168, '451221', '南丹县', '451200');
INSERT INTO `area` VALUES (2169, '451222', '天峨县', '451200');
INSERT INTO `area` VALUES (2170, '451223', '凤山县', '451200');
INSERT INTO `area` VALUES (2171, '451224', '东兰县', '451200');
INSERT INTO `area` VALUES (2172, '451225', '罗城仫佬族自治县', '451200');
INSERT INTO `area` VALUES (2173, '451226', '环江毛南族自治县', '451200');
INSERT INTO `area` VALUES (2174, '451227', '巴马瑶族自治县', '451200');
INSERT INTO `area` VALUES (2175, '451228', '都安瑶族自治县', '451200');
INSERT INTO `area` VALUES (2176, '451229', '大化瑶族自治县', '451200');
INSERT INTO `area` VALUES (2177, '451281', '宜州市', '451200');
INSERT INTO `area` VALUES (2178, '451301', '市辖区', '451300');
INSERT INTO `area` VALUES (2179, '451302', '兴宾区', '451300');
INSERT INTO `area` VALUES (2180, '451321', '忻城县', '451300');
INSERT INTO `area` VALUES (2181, '451322', '象州县', '451300');
INSERT INTO `area` VALUES (2182, '451323', '武宣县', '451300');
INSERT INTO `area` VALUES (2183, '451324', '金秀瑶族自治县', '451300');
INSERT INTO `area` VALUES (2184, '451381', '合山市', '451300');
INSERT INTO `area` VALUES (2185, '451401', '市辖区', '451400');
INSERT INTO `area` VALUES (2186, '451402', '江洲区', '451400');
INSERT INTO `area` VALUES (2187, '451421', '扶绥县', '451400');
INSERT INTO `area` VALUES (2188, '451422', '宁明县', '451400');
INSERT INTO `area` VALUES (2189, '451423', '龙州县', '451400');
INSERT INTO `area` VALUES (2190, '451424', '大新县', '451400');
INSERT INTO `area` VALUES (2191, '451425', '天等县', '451400');
INSERT INTO `area` VALUES (2192, '451481', '凭祥市', '451400');
INSERT INTO `area` VALUES (2193, '460101', '市辖区', '460100');
INSERT INTO `area` VALUES (2194, '460105', '秀英区', '460100');
INSERT INTO `area` VALUES (2195, '460106', '龙华区', '460100');
INSERT INTO `area` VALUES (2196, '460107', '琼山区', '460100');
INSERT INTO `area` VALUES (2197, '460108', '美兰区', '460100');
INSERT INTO `area` VALUES (2198, '460201', '市辖区', '460200');
INSERT INTO `area` VALUES (2199, '469001', '五指山市', '469000');
INSERT INTO `area` VALUES (2200, '469002', '琼海市', '469000');
INSERT INTO `area` VALUES (2201, '469003', '儋州市', '469000');
INSERT INTO `area` VALUES (2202, '469005', '文昌市', '469000');
INSERT INTO `area` VALUES (2203, '469006', '万宁市', '469000');
INSERT INTO `area` VALUES (2204, '469007', '东方市', '469000');
INSERT INTO `area` VALUES (2205, '469025', '定安县', '469000');
INSERT INTO `area` VALUES (2206, '469026', '屯昌县', '469000');
INSERT INTO `area` VALUES (2207, '469027', '澄迈县', '469000');
INSERT INTO `area` VALUES (2208, '469028', '临高县', '469000');
INSERT INTO `area` VALUES (2209, '469030', '白沙黎族自治县', '469000');
INSERT INTO `area` VALUES (2210, '469031', '昌江黎族自治县', '469000');
INSERT INTO `area` VALUES (2211, '469033', '乐东黎族自治县', '469000');
INSERT INTO `area` VALUES (2212, '469034', '陵水黎族自治县', '469000');
INSERT INTO `area` VALUES (2213, '469035', '保亭黎族苗族自治县', '469000');
INSERT INTO `area` VALUES (2214, '469036', '琼中黎族苗族自治县', '469000');
INSERT INTO `area` VALUES (2215, '469037', '西沙群岛', '469000');
INSERT INTO `area` VALUES (2216, '469038', '南沙群岛', '469000');
INSERT INTO `area` VALUES (2217, '469039', '中沙群岛的岛礁及其海域', '469000');
INSERT INTO `area` VALUES (2218, '500101', '万州区', '500100');
INSERT INTO `area` VALUES (2219, '500102', '涪陵区', '500100');
INSERT INTO `area` VALUES (2220, '500103', '渝中区', '500100');
INSERT INTO `area` VALUES (2221, '500104', '大渡口区', '500100');
INSERT INTO `area` VALUES (2222, '500105', '江北区', '500100');
INSERT INTO `area` VALUES (2223, '500106', '沙坪坝区', '500100');
INSERT INTO `area` VALUES (2224, '500107', '九龙坡区', '500100');
INSERT INTO `area` VALUES (2225, '500108', '南岸区', '500100');
INSERT INTO `area` VALUES (2226, '500109', '北碚区', '500100');
INSERT INTO `area` VALUES (2227, '500110', '万盛区', '500100');
INSERT INTO `area` VALUES (2228, '500111', '双桥区', '500100');
INSERT INTO `area` VALUES (2229, '500112', '渝北区', '500100');
INSERT INTO `area` VALUES (2230, '500113', '巴南区', '500100');
INSERT INTO `area` VALUES (2231, '500114', '黔江区', '500100');
INSERT INTO `area` VALUES (2232, '500115', '长寿区', '500100');
INSERT INTO `area` VALUES (2233, '500222', '綦江县', '500200');
INSERT INTO `area` VALUES (2234, '500223', '潼南县', '500200');
INSERT INTO `area` VALUES (2235, '500224', '铜梁县', '500200');
INSERT INTO `area` VALUES (2236, '500225', '大足县', '500200');
INSERT INTO `area` VALUES (2237, '500226', '荣昌县', '500200');
INSERT INTO `area` VALUES (2238, '500227', '璧山县', '500200');
INSERT INTO `area` VALUES (2239, '500228', '梁平县', '500200');
INSERT INTO `area` VALUES (2240, '500229', '城口县', '500200');
INSERT INTO `area` VALUES (2241, '500230', '丰都县', '500200');
INSERT INTO `area` VALUES (2242, '500231', '垫江县', '500200');
INSERT INTO `area` VALUES (2243, '500232', '武隆县', '500200');
INSERT INTO `area` VALUES (2244, '500233', '忠 县', '500200');
INSERT INTO `area` VALUES (2245, '500234', '开 县', '500200');
INSERT INTO `area` VALUES (2246, '500235', '云阳县', '500200');
INSERT INTO `area` VALUES (2247, '500236', '奉节县', '500200');
INSERT INTO `area` VALUES (2248, '500237', '巫山县', '500200');
INSERT INTO `area` VALUES (2249, '500238', '巫溪县', '500200');
INSERT INTO `area` VALUES (2250, '500240', '石柱土家族自治县', '500200');
INSERT INTO `area` VALUES (2251, '500241', '秀山土家族苗族自治县', '500200');
INSERT INTO `area` VALUES (2252, '500242', '酉阳土家族苗族自治县', '500200');
INSERT INTO `area` VALUES (2253, '500243', '彭水苗族土家族自治县', '500200');
INSERT INTO `area` VALUES (2254, '500381', '江津市', '500300');
INSERT INTO `area` VALUES (2255, '500382', '合川市', '500300');
INSERT INTO `area` VALUES (2256, '500383', '永川市', '500300');
INSERT INTO `area` VALUES (2257, '500384', '南川市', '500300');
INSERT INTO `area` VALUES (2258, '510101', '市辖区', '510100');
INSERT INTO `area` VALUES (2259, '510104', '锦江区', '510100');
INSERT INTO `area` VALUES (2260, '510105', '青羊区', '510100');
INSERT INTO `area` VALUES (2261, '510106', '金牛区', '510100');
INSERT INTO `area` VALUES (2262, '510107', '武侯区', '510100');
INSERT INTO `area` VALUES (2263, '510108', '成华区', '510100');
INSERT INTO `area` VALUES (2264, '510112', '龙泉驿区', '510100');
INSERT INTO `area` VALUES (2265, '510113', '青白江区', '510100');
INSERT INTO `area` VALUES (2266, '510114', '新都区', '510100');
INSERT INTO `area` VALUES (2267, '510115', '温江县', '510100');
INSERT INTO `area` VALUES (2268, '510121', '金堂县', '510100');
INSERT INTO `area` VALUES (2269, '510122', '双流县', '510100');
INSERT INTO `area` VALUES (2270, '510124', '郫 县', '510100');
INSERT INTO `area` VALUES (2271, '510129', '大邑县', '510100');
INSERT INTO `area` VALUES (2272, '510131', '蒲江县', '510100');
INSERT INTO `area` VALUES (2273, '510132', '新津县', '510100');
INSERT INTO `area` VALUES (2274, '510181', '都江堰市', '510100');
INSERT INTO `area` VALUES (2275, '510182', '彭州市', '510100');
INSERT INTO `area` VALUES (2276, '510183', '邛崃市', '510100');
INSERT INTO `area` VALUES (2277, '510184', '崇州市', '510100');
INSERT INTO `area` VALUES (2278, '510301', '市辖区', '510300');
INSERT INTO `area` VALUES (2279, '510302', '自流井区', '510300');
INSERT INTO `area` VALUES (2280, '510303', '贡井区', '510300');
INSERT INTO `area` VALUES (2281, '510304', '大安区', '510300');
INSERT INTO `area` VALUES (2282, '510311', '沿滩区', '510300');
INSERT INTO `area` VALUES (2283, '510321', '荣 县', '510300');
INSERT INTO `area` VALUES (2284, '510322', '富顺县', '510300');
INSERT INTO `area` VALUES (2285, '510401', '市辖区', '510400');
INSERT INTO `area` VALUES (2286, '510402', '东 区', '510400');
INSERT INTO `area` VALUES (2287, '510403', '西 区', '510400');
INSERT INTO `area` VALUES (2288, '510411', '仁和区', '510400');
INSERT INTO `area` VALUES (2289, '510421', '米易县', '510400');
INSERT INTO `area` VALUES (2290, '510422', '盐边县', '510400');
INSERT INTO `area` VALUES (2291, '510501', '市辖区', '510500');
INSERT INTO `area` VALUES (2292, '510502', '江阳区', '510500');
INSERT INTO `area` VALUES (2293, '510503', '纳溪区', '510500');
INSERT INTO `area` VALUES (2294, '510504', '龙马潭区', '510500');
INSERT INTO `area` VALUES (2295, '510521', '泸 县', '510500');
INSERT INTO `area` VALUES (2296, '510522', '合江县', '510500');
INSERT INTO `area` VALUES (2297, '510524', '叙永县', '510500');
INSERT INTO `area` VALUES (2298, '510525', '古蔺县', '510500');
INSERT INTO `area` VALUES (2299, '510601', '市辖区', '510600');
INSERT INTO `area` VALUES (2300, '510603', '旌阳区', '510600');
INSERT INTO `area` VALUES (2301, '510623', '中江县', '510600');
INSERT INTO `area` VALUES (2302, '510626', '罗江县', '510600');
INSERT INTO `area` VALUES (2303, '510681', '广汉市', '510600');
INSERT INTO `area` VALUES (2304, '510682', '什邡市', '510600');
INSERT INTO `area` VALUES (2305, '510683', '绵竹市', '510600');
INSERT INTO `area` VALUES (2306, '510701', '市辖区', '510700');
INSERT INTO `area` VALUES (2307, '510703', '涪城区', '510700');
INSERT INTO `area` VALUES (2308, '510704', '游仙区', '510700');
INSERT INTO `area` VALUES (2309, '510722', '三台县', '510700');
INSERT INTO `area` VALUES (2310, '510723', '盐亭县', '510700');
INSERT INTO `area` VALUES (2311, '510724', '安 县', '510700');
INSERT INTO `area` VALUES (2312, '510725', '梓潼县', '510700');
INSERT INTO `area` VALUES (2313, '510726', '北川羌族自治县', '510700');
INSERT INTO `area` VALUES (2314, '510727', '平武县', '510700');
INSERT INTO `area` VALUES (2315, '510781', '江油市', '510700');
INSERT INTO `area` VALUES (2316, '510801', '市辖区', '510800');
INSERT INTO `area` VALUES (2317, '510802', '市中区', '510800');
INSERT INTO `area` VALUES (2318, '510811', '元坝区', '510800');
INSERT INTO `area` VALUES (2319, '510812', '朝天区', '510800');
INSERT INTO `area` VALUES (2320, '510821', '旺苍县', '510800');
INSERT INTO `area` VALUES (2321, '510822', '青川县', '510800');
INSERT INTO `area` VALUES (2322, '510823', '剑阁县', '510800');
INSERT INTO `area` VALUES (2323, '510824', '苍溪县', '510800');
INSERT INTO `area` VALUES (2324, '510901', '市辖区', '510900');
INSERT INTO `area` VALUES (2325, '510903', '船山区', '510900');
INSERT INTO `area` VALUES (2326, '510904', '安居区', '510900');
INSERT INTO `area` VALUES (2327, '510921', '蓬溪县', '510900');
INSERT INTO `area` VALUES (2328, '510922', '射洪县', '510900');
INSERT INTO `area` VALUES (2329, '510923', '大英县', '510900');
INSERT INTO `area` VALUES (2330, '511001', '市辖区', '511000');
INSERT INTO `area` VALUES (2331, '511002', '市中区', '511000');
INSERT INTO `area` VALUES (2332, '511011', '东兴区', '511000');
INSERT INTO `area` VALUES (2333, '511024', '威远县', '511000');
INSERT INTO `area` VALUES (2334, '511025', '资中县', '511000');
INSERT INTO `area` VALUES (2335, '511028', '隆昌县', '511000');
INSERT INTO `area` VALUES (2336, '511101', '市辖区', '511100');
INSERT INTO `area` VALUES (2337, '511102', '市中区', '511100');
INSERT INTO `area` VALUES (2338, '511111', '沙湾区', '511100');
INSERT INTO `area` VALUES (2339, '511112', '五通桥区', '511100');
INSERT INTO `area` VALUES (2340, '511113', '金口河区', '511100');
INSERT INTO `area` VALUES (2341, '511123', '犍为县', '511100');
INSERT INTO `area` VALUES (2342, '511124', '井研县', '511100');
INSERT INTO `area` VALUES (2343, '511126', '夹江县', '511100');
INSERT INTO `area` VALUES (2344, '511129', '沐川县', '511100');
INSERT INTO `area` VALUES (2345, '511132', '峨边彝族自治县', '511100');
INSERT INTO `area` VALUES (2346, '511133', '马边彝族自治县', '511100');
INSERT INTO `area` VALUES (2347, '511181', '峨眉山市', '511100');
INSERT INTO `area` VALUES (2348, '511301', '市辖区', '511300');
INSERT INTO `area` VALUES (2349, '511302', '顺庆区', '511300');
INSERT INTO `area` VALUES (2350, '511303', '高坪区', '511300');
INSERT INTO `area` VALUES (2351, '511304', '嘉陵区', '511300');
INSERT INTO `area` VALUES (2352, '511321', '南部县', '511300');
INSERT INTO `area` VALUES (2353, '511322', '营山县', '511300');
INSERT INTO `area` VALUES (2354, '511323', '蓬安县', '511300');
INSERT INTO `area` VALUES (2355, '511324', '仪陇县', '511300');
INSERT INTO `area` VALUES (2356, '511325', '西充县', '511300');
INSERT INTO `area` VALUES (2357, '511381', '阆中市', '511300');
INSERT INTO `area` VALUES (2358, '511401', '市辖区', '511400');
INSERT INTO `area` VALUES (2359, '511402', '东坡区', '511400');
INSERT INTO `area` VALUES (2360, '511421', '仁寿县', '511400');
INSERT INTO `area` VALUES (2361, '511422', '彭山县', '511400');
INSERT INTO `area` VALUES (2362, '511423', '洪雅县', '511400');
INSERT INTO `area` VALUES (2363, '511424', '丹棱县', '511400');
INSERT INTO `area` VALUES (2364, '511425', '青神县', '511400');
INSERT INTO `area` VALUES (2365, '511501', '市辖区', '511500');
INSERT INTO `area` VALUES (2366, '511502', '翠屏区', '511500');
INSERT INTO `area` VALUES (2367, '511521', '宜宾县', '511500');
INSERT INTO `area` VALUES (2368, '511522', '南溪县', '511500');
INSERT INTO `area` VALUES (2369, '511523', '江安县', '511500');
INSERT INTO `area` VALUES (2370, '511524', '长宁县', '511500');
INSERT INTO `area` VALUES (2371, '511525', '高 县', '511500');
INSERT INTO `area` VALUES (2372, '511526', '珙 县', '511500');
INSERT INTO `area` VALUES (2373, '511527', '筠连县', '511500');
INSERT INTO `area` VALUES (2374, '511528', '兴文县', '511500');
INSERT INTO `area` VALUES (2375, '511529', '屏山县', '511500');
INSERT INTO `area` VALUES (2376, '511601', '市辖区', '511600');
INSERT INTO `area` VALUES (2377, '511602', '广安区', '511600');
INSERT INTO `area` VALUES (2378, '511621', '岳池县', '511600');
INSERT INTO `area` VALUES (2379, '511622', '武胜县', '511600');
INSERT INTO `area` VALUES (2380, '511623', '邻水县', '511600');
INSERT INTO `area` VALUES (2381, '511681', '华莹市', '511600');
INSERT INTO `area` VALUES (2382, '511701', '市辖区', '511700');
INSERT INTO `area` VALUES (2383, '511702', '通川区', '511700');
INSERT INTO `area` VALUES (2384, '511721', '达 县', '511700');
INSERT INTO `area` VALUES (2385, '511722', '宣汉县', '511700');
INSERT INTO `area` VALUES (2386, '511723', '开江县', '511700');
INSERT INTO `area` VALUES (2387, '511724', '大竹县', '511700');
INSERT INTO `area` VALUES (2388, '511725', '渠 县', '511700');
INSERT INTO `area` VALUES (2389, '511781', '万源市', '511700');
INSERT INTO `area` VALUES (2390, '511801', '市辖区', '511800');
INSERT INTO `area` VALUES (2391, '511802', '雨城区', '511800');
INSERT INTO `area` VALUES (2392, '511821', '名山县', '511800');
INSERT INTO `area` VALUES (2393, '511822', '荥经县', '511800');
INSERT INTO `area` VALUES (2394, '511823', '汉源县', '511800');
INSERT INTO `area` VALUES (2395, '511824', '石棉县', '511800');
INSERT INTO `area` VALUES (2396, '511825', '天全县', '511800');
INSERT INTO `area` VALUES (2397, '511826', '芦山县', '511800');
INSERT INTO `area` VALUES (2398, '511827', '宝兴县', '511800');
INSERT INTO `area` VALUES (2399, '511901', '市辖区', '511900');
INSERT INTO `area` VALUES (2400, '511902', '巴州区', '511900');
INSERT INTO `area` VALUES (2401, '511921', '通江县', '511900');
INSERT INTO `area` VALUES (2402, '511922', '南江县', '511900');
INSERT INTO `area` VALUES (2403, '511923', '平昌县', '511900');
INSERT INTO `area` VALUES (2404, '512001', '市辖区', '512000');
INSERT INTO `area` VALUES (2405, '512002', '雁江区', '512000');
INSERT INTO `area` VALUES (2406, '512021', '安岳县', '512000');
INSERT INTO `area` VALUES (2407, '512022', '乐至县', '512000');
INSERT INTO `area` VALUES (2408, '512081', '简阳市', '512000');
INSERT INTO `area` VALUES (2409, '513221', '汶川县', '513200');
INSERT INTO `area` VALUES (2410, '513222', '理 县', '513200');
INSERT INTO `area` VALUES (2411, '513223', '茂 县', '513200');
INSERT INTO `area` VALUES (2412, '513224', '松潘县', '513200');
INSERT INTO `area` VALUES (2413, '513225', '九寨沟县', '513200');
INSERT INTO `area` VALUES (2414, '513226', '金川县', '513200');
INSERT INTO `area` VALUES (2415, '513227', '小金县', '513200');
INSERT INTO `area` VALUES (2416, '513228', '黑水县', '513200');
INSERT INTO `area` VALUES (2417, '513229', '马尔康县', '513200');
INSERT INTO `area` VALUES (2418, '513230', '壤塘县', '513200');
INSERT INTO `area` VALUES (2419, '513231', '阿坝县', '513200');
INSERT INTO `area` VALUES (2420, '513232', '若尔盖县', '513200');
INSERT INTO `area` VALUES (2421, '513233', '红原县', '513200');
INSERT INTO `area` VALUES (2422, '513321', '康定县', '513300');
INSERT INTO `area` VALUES (2423, '513322', '泸定县', '513300');
INSERT INTO `area` VALUES (2424, '513323', '丹巴县', '513300');
INSERT INTO `area` VALUES (2425, '513324', '九龙县', '513300');
INSERT INTO `area` VALUES (2426, '513325', '雅江县', '513300');
INSERT INTO `area` VALUES (2427, '513326', '道孚县', '513300');
INSERT INTO `area` VALUES (2428, '513327', '炉霍县', '513300');
INSERT INTO `area` VALUES (2429, '513328', '甘孜县', '513300');
INSERT INTO `area` VALUES (2430, '513329', '新龙县', '513300');
INSERT INTO `area` VALUES (2431, '513330', '德格县', '513300');
INSERT INTO `area` VALUES (2432, '513331', '白玉县', '513300');
INSERT INTO `area` VALUES (2433, '513332', '石渠县', '513300');
INSERT INTO `area` VALUES (2434, '513333', '色达县', '513300');
INSERT INTO `area` VALUES (2435, '513334', '理塘县', '513300');
INSERT INTO `area` VALUES (2436, '513335', '巴塘县', '513300');
INSERT INTO `area` VALUES (2437, '513336', '乡城县', '513300');
INSERT INTO `area` VALUES (2438, '513337', '稻城县', '513300');
INSERT INTO `area` VALUES (2439, '513338', '得荣县', '513300');
INSERT INTO `area` VALUES (2440, '513401', '西昌市', '513400');
INSERT INTO `area` VALUES (2441, '513422', '木里藏族自治县', '513400');
INSERT INTO `area` VALUES (2442, '513423', '盐源县', '513400');
INSERT INTO `area` VALUES (2443, '513424', '德昌县', '513400');
INSERT INTO `area` VALUES (2444, '513425', '会理县', '513400');
INSERT INTO `area` VALUES (2445, '513426', '会东县', '513400');
INSERT INTO `area` VALUES (2446, '513427', '宁南县', '513400');
INSERT INTO `area` VALUES (2447, '513428', '普格县', '513400');
INSERT INTO `area` VALUES (2448, '513429', '布拖县', '513400');
INSERT INTO `area` VALUES (2449, '513430', '金阳县', '513400');
INSERT INTO `area` VALUES (2450, '513431', '昭觉县', '513400');
INSERT INTO `area` VALUES (2451, '513432', '喜德县', '513400');
INSERT INTO `area` VALUES (2452, '513433', '冕宁县', '513400');
INSERT INTO `area` VALUES (2453, '513434', '越西县', '513400');
INSERT INTO `area` VALUES (2454, '513435', '甘洛县', '513400');
INSERT INTO `area` VALUES (2455, '513436', '美姑县', '513400');
INSERT INTO `area` VALUES (2456, '513437', '雷波县', '513400');
INSERT INTO `area` VALUES (2457, '520101', '市辖区', '520100');
INSERT INTO `area` VALUES (2458, '520102', '南明区', '520100');
INSERT INTO `area` VALUES (2459, '520103', '云岩区', '520100');
INSERT INTO `area` VALUES (2460, '520111', '花溪区', '520100');
INSERT INTO `area` VALUES (2461, '520112', '乌当区', '520100');
INSERT INTO `area` VALUES (2462, '520113', '白云区', '520100');
INSERT INTO `area` VALUES (2463, '520114', '小河区', '520100');
INSERT INTO `area` VALUES (2464, '520121', '开阳县', '520100');
INSERT INTO `area` VALUES (2465, '520122', '息烽县', '520100');
INSERT INTO `area` VALUES (2466, '520123', '修文县', '520100');
INSERT INTO `area` VALUES (2467, '520181', '清镇市', '520100');
INSERT INTO `area` VALUES (2468, '520201', '钟山区', '520200');
INSERT INTO `area` VALUES (2469, '520203', '六枝特区', '520200');
INSERT INTO `area` VALUES (2470, '520221', '水城县', '520200');
INSERT INTO `area` VALUES (2471, '520222', '盘 县', '520200');
INSERT INTO `area` VALUES (2472, '520301', '市辖区', '520300');
INSERT INTO `area` VALUES (2473, '520302', '红花岗区', '520300');
INSERT INTO `area` VALUES (2474, '520303', '汇川区', '520300');
INSERT INTO `area` VALUES (2475, '520321', '遵义县', '520300');
INSERT INTO `area` VALUES (2476, '520322', '桐梓县', '520300');
INSERT INTO `area` VALUES (2477, '520323', '绥阳县', '520300');
INSERT INTO `area` VALUES (2478, '520324', '正安县', '520300');
INSERT INTO `area` VALUES (2479, '520325', '道真仡佬族苗族自治县', '520300');
INSERT INTO `area` VALUES (2480, '520326', '务川仡佬族苗族自治县', '520300');
INSERT INTO `area` VALUES (2481, '520327', '凤冈县', '520300');
INSERT INTO `area` VALUES (2482, '520328', '湄潭县', '520300');
INSERT INTO `area` VALUES (2483, '520329', '余庆县', '520300');
INSERT INTO `area` VALUES (2484, '520330', '习水县', '520300');
INSERT INTO `area` VALUES (2485, '520381', '赤水市', '520300');
INSERT INTO `area` VALUES (2486, '520382', '仁怀市', '520300');
INSERT INTO `area` VALUES (2487, '520401', '市辖区', '520400');
INSERT INTO `area` VALUES (2488, '520402', '西秀区', '520400');
INSERT INTO `area` VALUES (2489, '520421', '平坝县', '520400');
INSERT INTO `area` VALUES (2490, '520422', '普定县', '520400');
INSERT INTO `area` VALUES (2491, '520423', '镇宁布依族苗族自治县', '520400');
INSERT INTO `area` VALUES (2492, '520424', '关岭布依族苗族自治县', '520400');
INSERT INTO `area` VALUES (2493, '520425', '紫云苗族布依族自治县', '520400');
INSERT INTO `area` VALUES (2494, '522201', '铜仁市', '522200');
INSERT INTO `area` VALUES (2495, '522222', '江口县', '522200');
INSERT INTO `area` VALUES (2496, '522223', '玉屏侗族自治县', '522200');
INSERT INTO `area` VALUES (2497, '522224', '石阡县', '522200');
INSERT INTO `area` VALUES (2498, '522225', '思南县', '522200');
INSERT INTO `area` VALUES (2499, '522226', '印江土家族苗族自治县', '522200');
INSERT INTO `area` VALUES (2500, '522227', '德江县', '522200');
INSERT INTO `area` VALUES (2501, '522228', '沿河土家族自治县', '522200');
INSERT INTO `area` VALUES (2502, '522229', '松桃苗族自治县', '522200');
INSERT INTO `area` VALUES (2503, '522230', '万山特区', '522200');
INSERT INTO `area` VALUES (2504, '522301', '兴义市', '522300');
INSERT INTO `area` VALUES (2505, '522322', '兴仁县', '522300');
INSERT INTO `area` VALUES (2506, '522323', '普安县', '522300');
INSERT INTO `area` VALUES (2507, '522324', '晴隆县', '522300');
INSERT INTO `area` VALUES (2508, '522325', '贞丰县', '522300');
INSERT INTO `area` VALUES (2509, '522326', '望谟县', '522300');
INSERT INTO `area` VALUES (2510, '522327', '册亨县', '522300');
INSERT INTO `area` VALUES (2511, '522328', '安龙县', '522300');
INSERT INTO `area` VALUES (2512, '522401', '毕节市', '522400');
INSERT INTO `area` VALUES (2513, '522422', '大方县', '522400');
INSERT INTO `area` VALUES (2514, '522423', '黔西县', '522400');
INSERT INTO `area` VALUES (2515, '522424', '金沙县', '522400');
INSERT INTO `area` VALUES (2516, '522425', '织金县', '522400');
INSERT INTO `area` VALUES (2517, '522426', '纳雍县', '522400');
INSERT INTO `area` VALUES (2518, '522427', '威宁彝族回族苗族自治县', '522400');
INSERT INTO `area` VALUES (2519, '522428', '赫章县', '522400');
INSERT INTO `area` VALUES (2520, '522601', '凯里市', '522600');
INSERT INTO `area` VALUES (2521, '522622', '黄平县', '522600');
INSERT INTO `area` VALUES (2522, '522623', '施秉县', '522600');
INSERT INTO `area` VALUES (2523, '522624', '三穗县', '522600');
INSERT INTO `area` VALUES (2524, '522625', '镇远县', '522600');
INSERT INTO `area` VALUES (2525, '522626', '岑巩县', '522600');
INSERT INTO `area` VALUES (2526, '522627', '天柱县', '522600');
INSERT INTO `area` VALUES (2527, '522628', '锦屏县', '522600');
INSERT INTO `area` VALUES (2528, '522629', '剑河县', '522600');
INSERT INTO `area` VALUES (2529, '522630', '台江县', '522600');
INSERT INTO `area` VALUES (2530, '522631', '黎平县', '522600');
INSERT INTO `area` VALUES (2531, '522632', '榕江县', '522600');
INSERT INTO `area` VALUES (2532, '522633', '从江县', '522600');
INSERT INTO `area` VALUES (2533, '522634', '雷山县', '522600');
INSERT INTO `area` VALUES (2534, '522635', '麻江县', '522600');
INSERT INTO `area` VALUES (2535, '522636', '丹寨县', '522600');
INSERT INTO `area` VALUES (2536, '522701', '都匀市', '522700');
INSERT INTO `area` VALUES (2537, '522702', '福泉市', '522700');
INSERT INTO `area` VALUES (2538, '522722', '荔波县', '522700');
INSERT INTO `area` VALUES (2539, '522723', '贵定县', '522700');
INSERT INTO `area` VALUES (2540, '522725', '瓮安县', '522700');
INSERT INTO `area` VALUES (2541, '522726', '独山县', '522700');
INSERT INTO `area` VALUES (2542, '522727', '平塘县', '522700');
INSERT INTO `area` VALUES (2543, '522728', '罗甸县', '522700');
INSERT INTO `area` VALUES (2544, '522729', '长顺县', '522700');
INSERT INTO `area` VALUES (2545, '522730', '龙里县', '522700');
INSERT INTO `area` VALUES (2546, '522731', '惠水县', '522700');
INSERT INTO `area` VALUES (2547, '522732', '三都水族自治县', '522700');
INSERT INTO `area` VALUES (2548, '530101', '市辖区', '530100');
INSERT INTO `area` VALUES (2549, '530102', '五华区', '530100');
INSERT INTO `area` VALUES (2550, '530103', '盘龙区', '530100');
INSERT INTO `area` VALUES (2551, '530111', '官渡区', '530100');
INSERT INTO `area` VALUES (2552, '530112', '西山区', '530100');
INSERT INTO `area` VALUES (2553, '530113', '东川区', '530100');
INSERT INTO `area` VALUES (2554, '530121', '呈贡县', '530100');
INSERT INTO `area` VALUES (2555, '530122', '晋宁县', '530100');
INSERT INTO `area` VALUES (2556, '530124', '富民县', '530100');
INSERT INTO `area` VALUES (2557, '530125', '宜良县', '530100');
INSERT INTO `area` VALUES (2558, '530126', '石林彝族自治县', '530100');
INSERT INTO `area` VALUES (2559, '530127', '嵩明县', '530100');
INSERT INTO `area` VALUES (2560, '530128', '禄劝彝族苗族自治县', '530100');
INSERT INTO `area` VALUES (2561, '530129', '寻甸回族彝族自治县', '530100');
INSERT INTO `area` VALUES (2562, '530181', '安宁市', '530100');
INSERT INTO `area` VALUES (2563, '530301', '市辖区', '530300');
INSERT INTO `area` VALUES (2564, '530302', '麒麟区', '530300');
INSERT INTO `area` VALUES (2565, '530321', '马龙县', '530300');
INSERT INTO `area` VALUES (2566, '530322', '陆良县', '530300');
INSERT INTO `area` VALUES (2567, '530323', '师宗县', '530300');
INSERT INTO `area` VALUES (2568, '530324', '罗平县', '530300');
INSERT INTO `area` VALUES (2569, '530325', '富源县', '530300');
INSERT INTO `area` VALUES (2570, '530326', '会泽县', '530300');
INSERT INTO `area` VALUES (2571, '530328', '沾益县', '530300');
INSERT INTO `area` VALUES (2572, '530381', '宣威市', '530300');
INSERT INTO `area` VALUES (2573, '530401', '市辖区', '530400');
INSERT INTO `area` VALUES (2574, '530402', '红塔区', '530400');
INSERT INTO `area` VALUES (2575, '530421', '江川县', '530400');
INSERT INTO `area` VALUES (2576, '530422', '澄江县', '530400');
INSERT INTO `area` VALUES (2577, '530423', '通海县', '530400');
INSERT INTO `area` VALUES (2578, '530424', '华宁县', '530400');
INSERT INTO `area` VALUES (2579, '530425', '易门县', '530400');
INSERT INTO `area` VALUES (2580, '530426', '峨山彝族自治县', '530400');
INSERT INTO `area` VALUES (2581, '530427', '新平彝族傣族自治县', '530400');
INSERT INTO `area` VALUES (2582, '530428', '元江哈尼族彝族傣族自治县', '530400');
INSERT INTO `area` VALUES (2583, '530501', '市辖区', '530500');
INSERT INTO `area` VALUES (2584, '530502', '隆阳区', '530500');
INSERT INTO `area` VALUES (2585, '530521', '施甸县', '530500');
INSERT INTO `area` VALUES (2586, '530522', '腾冲县', '530500');
INSERT INTO `area` VALUES (2587, '530523', '龙陵县', '530500');
INSERT INTO `area` VALUES (2588, '530524', '昌宁县', '530500');
INSERT INTO `area` VALUES (2589, '530601', '市辖区', '530600');
INSERT INTO `area` VALUES (2590, '530602', '昭阳区', '530600');
INSERT INTO `area` VALUES (2591, '530621', '鲁甸县', '530600');
INSERT INTO `area` VALUES (2592, '530622', '巧家县', '530600');
INSERT INTO `area` VALUES (2593, '530623', '盐津县', '530600');
INSERT INTO `area` VALUES (2594, '530624', '大关县', '530600');
INSERT INTO `area` VALUES (2595, '530625', '永善县', '530600');
INSERT INTO `area` VALUES (2596, '530626', '绥江县', '530600');
INSERT INTO `area` VALUES (2597, '530627', '镇雄县', '530600');
INSERT INTO `area` VALUES (2598, '530628', '彝良县', '530600');
INSERT INTO `area` VALUES (2599, '530629', '威信县', '530600');
INSERT INTO `area` VALUES (2600, '530630', '水富县', '530600');
INSERT INTO `area` VALUES (2601, '530701', '市辖区', '530700');
INSERT INTO `area` VALUES (2602, '530702', '古城区', '530700');
INSERT INTO `area` VALUES (2603, '530721', '玉龙纳西族自治县', '530700');
INSERT INTO `area` VALUES (2604, '530722', '永胜县', '530700');
INSERT INTO `area` VALUES (2605, '530723', '华坪县', '530700');
INSERT INTO `area` VALUES (2606, '530724', '宁蒗彝族自治县', '530700');
INSERT INTO `area` VALUES (2607, '530801', '市辖区', '530800');
INSERT INTO `area` VALUES (2608, '530802', '翠云区', '530800');
INSERT INTO `area` VALUES (2609, '530821', '普洱哈尼族彝族自治县', '530800');
INSERT INTO `area` VALUES (2610, '530822', '墨江哈尼族自治县', '530800');
INSERT INTO `area` VALUES (2611, '530823', '景东彝族自治县', '530800');
INSERT INTO `area` VALUES (2612, '530824', '景谷傣族彝族自治县', '530800');
INSERT INTO `area` VALUES (2613, '530825', '镇沅彝族哈尼族拉祜族自治县', '530800');
INSERT INTO `area` VALUES (2614, '530826', '江城哈尼族彝族自治县', '530800');
INSERT INTO `area` VALUES (2615, '530827', '孟连傣族拉祜族佤族自治县', '530800');
INSERT INTO `area` VALUES (2616, '530828', '澜沧拉祜族自治县', '530800');
INSERT INTO `area` VALUES (2617, '530829', '西盟佤族自治县', '530800');
INSERT INTO `area` VALUES (2618, '530901', '市辖区', '530900');
INSERT INTO `area` VALUES (2619, '530902', '临翔区', '530900');
INSERT INTO `area` VALUES (2620, '530921', '凤庆县', '530900');
INSERT INTO `area` VALUES (2621, '530922', '云 县', '530900');
INSERT INTO `area` VALUES (2622, '530923', '永德县', '530900');
INSERT INTO `area` VALUES (2623, '530924', '镇康县', '530900');
INSERT INTO `area` VALUES (2624, '530925', '双江拉祜族佤族布朗族傣族自治县', '530900');
INSERT INTO `area` VALUES (2625, '530926', '耿马傣族佤族自治县', '530900');
INSERT INTO `area` VALUES (2626, '530927', '沧源佤族自治县', '530900');
INSERT INTO `area` VALUES (2627, '532301', '楚雄市', '532300');
INSERT INTO `area` VALUES (2628, '532322', '双柏县', '532300');
INSERT INTO `area` VALUES (2629, '532323', '牟定县', '532300');
INSERT INTO `area` VALUES (2630, '532324', '南华县', '532300');
INSERT INTO `area` VALUES (2631, '532325', '姚安县', '532300');
INSERT INTO `area` VALUES (2632, '532326', '大姚县', '532300');
INSERT INTO `area` VALUES (2633, '532327', '永仁县', '532300');
INSERT INTO `area` VALUES (2634, '532328', '元谋县', '532300');
INSERT INTO `area` VALUES (2635, '532329', '武定县', '532300');
INSERT INTO `area` VALUES (2636, '532331', '禄丰县', '532300');
INSERT INTO `area` VALUES (2637, '532501', '个旧市', '532500');
INSERT INTO `area` VALUES (2638, '532502', '开远市', '532500');
INSERT INTO `area` VALUES (2639, '532522', '蒙自县', '532500');
INSERT INTO `area` VALUES (2640, '532523', '屏边苗族自治县', '532500');
INSERT INTO `area` VALUES (2641, '532524', '建水县', '532500');
INSERT INTO `area` VALUES (2642, '532525', '石屏县', '532500');
INSERT INTO `area` VALUES (2643, '532526', '弥勒县', '532500');
INSERT INTO `area` VALUES (2644, '532527', '泸西县', '532500');
INSERT INTO `area` VALUES (2645, '532528', '元阳县', '532500');
INSERT INTO `area` VALUES (2646, '532529', '红河县', '532500');
INSERT INTO `area` VALUES (2647, '532530', '金平苗族瑶族傣族自治县', '532500');
INSERT INTO `area` VALUES (2648, '532531', '绿春县', '532500');
INSERT INTO `area` VALUES (2649, '532532', '河口瑶族自治县', '532500');
INSERT INTO `area` VALUES (2650, '532621', '文山县', '532600');
INSERT INTO `area` VALUES (2651, '532622', '砚山县', '532600');
INSERT INTO `area` VALUES (2652, '532623', '西畴县', '532600');
INSERT INTO `area` VALUES (2653, '532624', '麻栗坡县', '532600');
INSERT INTO `area` VALUES (2654, '532625', '马关县', '532600');
INSERT INTO `area` VALUES (2655, '532626', '丘北县', '532600');
INSERT INTO `area` VALUES (2656, '532627', '广南县', '532600');
INSERT INTO `area` VALUES (2657, '532628', '富宁县', '532600');
INSERT INTO `area` VALUES (2658, '532801', '景洪市', '532800');
INSERT INTO `area` VALUES (2659, '532822', '勐海县', '532800');
INSERT INTO `area` VALUES (2660, '532823', '勐腊县', '532800');
INSERT INTO `area` VALUES (2661, '532901', '大理市', '532900');
INSERT INTO `area` VALUES (2662, '532922', '漾濞彝族自治县', '532900');
INSERT INTO `area` VALUES (2663, '532923', '祥云县', '532900');
INSERT INTO `area` VALUES (2664, '532924', '宾川县', '532900');
INSERT INTO `area` VALUES (2665, '532925', '弥渡县', '532900');
INSERT INTO `area` VALUES (2666, '532926', '南涧彝族自治县', '532900');
INSERT INTO `area` VALUES (2667, '532927', '巍山彝族回族自治县', '532900');
INSERT INTO `area` VALUES (2668, '532928', '永平县', '532900');
INSERT INTO `area` VALUES (2669, '532929', '云龙县', '532900');
INSERT INTO `area` VALUES (2670, '532930', '洱源县', '532900');
INSERT INTO `area` VALUES (2671, '532931', '剑川县', '532900');
INSERT INTO `area` VALUES (2672, '532932', '鹤庆县', '532900');
INSERT INTO `area` VALUES (2673, '533102', '瑞丽市', '533100');
INSERT INTO `area` VALUES (2674, '533103', '潞西市', '533100');
INSERT INTO `area` VALUES (2675, '533122', '梁河县', '533100');
INSERT INTO `area` VALUES (2676, '533123', '盈江县', '533100');
INSERT INTO `area` VALUES (2677, '533124', '陇川县', '533100');
INSERT INTO `area` VALUES (2678, '533321', '泸水县', '533300');
INSERT INTO `area` VALUES (2679, '533323', '福贡县', '533300');
INSERT INTO `area` VALUES (2680, '533324', '贡山独龙族怒族自治县', '533300');
INSERT INTO `area` VALUES (2681, '533325', '兰坪白族普米族自治县', '533300');
INSERT INTO `area` VALUES (2682, '533421', '香格里拉县', '533400');
INSERT INTO `area` VALUES (2683, '533422', '德钦县', '533400');
INSERT INTO `area` VALUES (2684, '533423', '维西傈僳族自治县', '533400');
INSERT INTO `area` VALUES (2685, '540101', '市辖区', '540100');
INSERT INTO `area` VALUES (2686, '540102', '城关区', '540100');
INSERT INTO `area` VALUES (2687, '540121', '林周县', '540100');
INSERT INTO `area` VALUES (2688, '540122', '当雄县', '540100');
INSERT INTO `area` VALUES (2689, '540123', '尼木县', '540100');
INSERT INTO `area` VALUES (2690, '540124', '曲水县', '540100');
INSERT INTO `area` VALUES (2691, '540125', '堆龙德庆县', '540100');
INSERT INTO `area` VALUES (2692, '540126', '达孜县', '540100');
INSERT INTO `area` VALUES (2693, '540127', '墨竹工卡县', '540100');
INSERT INTO `area` VALUES (2694, '542121', '昌都县', '542100');
INSERT INTO `area` VALUES (2695, '542122', '江达县', '542100');
INSERT INTO `area` VALUES (2696, '542123', '贡觉县', '542100');
INSERT INTO `area` VALUES (2697, '542124', '类乌齐县', '542100');
INSERT INTO `area` VALUES (2698, '542125', '丁青县', '542100');
INSERT INTO `area` VALUES (2699, '542126', '察雅县', '542100');
INSERT INTO `area` VALUES (2700, '542127', '八宿县', '542100');
INSERT INTO `area` VALUES (2701, '542128', '左贡县', '542100');
INSERT INTO `area` VALUES (2702, '542129', '芒康县', '542100');
INSERT INTO `area` VALUES (2703, '542132', '洛隆县', '542100');
INSERT INTO `area` VALUES (2704, '542133', '边坝县', '542100');
INSERT INTO `area` VALUES (2705, '542221', '乃东县', '542200');
INSERT INTO `area` VALUES (2706, '542222', '扎囊县', '542200');
INSERT INTO `area` VALUES (2707, '542223', '贡嘎县', '542200');
INSERT INTO `area` VALUES (2708, '542224', '桑日县', '542200');
INSERT INTO `area` VALUES (2709, '542225', '琼结县', '542200');
INSERT INTO `area` VALUES (2710, '542226', '曲松县', '542200');
INSERT INTO `area` VALUES (2711, '542227', '措美县', '542200');
INSERT INTO `area` VALUES (2712, '542228', '洛扎县', '542200');
INSERT INTO `area` VALUES (2713, '542229', '加查县', '542200');
INSERT INTO `area` VALUES (2714, '542231', '隆子县', '542200');
INSERT INTO `area` VALUES (2715, '542232', '错那县', '542200');
INSERT INTO `area` VALUES (2716, '542233', '浪卡子县', '542200');
INSERT INTO `area` VALUES (2717, '542301', '日喀则市', '542300');
INSERT INTO `area` VALUES (2718, '542322', '南木林县', '542300');
INSERT INTO `area` VALUES (2719, '542323', '江孜县', '542300');
INSERT INTO `area` VALUES (2720, '542324', '定日县', '542300');
INSERT INTO `area` VALUES (2721, '542325', '萨迦县', '542300');
INSERT INTO `area` VALUES (2722, '542326', '拉孜县', '542300');
INSERT INTO `area` VALUES (2723, '542327', '昂仁县', '542300');
INSERT INTO `area` VALUES (2724, '542328', '谢通门县', '542300');
INSERT INTO `area` VALUES (2725, '542329', '白朗县', '542300');
INSERT INTO `area` VALUES (2726, '542330', '仁布县', '542300');
INSERT INTO `area` VALUES (2727, '542331', '康马县', '542300');
INSERT INTO `area` VALUES (2728, '542332', '定结县', '542300');
INSERT INTO `area` VALUES (2729, '542333', '仲巴县', '542300');
INSERT INTO `area` VALUES (2730, '542334', '亚东县', '542300');
INSERT INTO `area` VALUES (2731, '542335', '吉隆县', '542300');
INSERT INTO `area` VALUES (2732, '542336', '聂拉木县', '542300');
INSERT INTO `area` VALUES (2733, '542337', '萨嘎县', '542300');
INSERT INTO `area` VALUES (2734, '542338', '岗巴县', '542300');
INSERT INTO `area` VALUES (2735, '542421', '那曲县', '542400');
INSERT INTO `area` VALUES (2736, '542422', '嘉黎县', '542400');
INSERT INTO `area` VALUES (2737, '542423', '比如县', '542400');
INSERT INTO `area` VALUES (2738, '542424', '聂荣县', '542400');
INSERT INTO `area` VALUES (2739, '542425', '安多县', '542400');
INSERT INTO `area` VALUES (2740, '542426', '申扎县', '542400');
INSERT INTO `area` VALUES (2741, '542427', '索 县', '542400');
INSERT INTO `area` VALUES (2742, '542428', '班戈县', '542400');
INSERT INTO `area` VALUES (2743, '542429', '巴青县', '542400');
INSERT INTO `area` VALUES (2744, '542430', '尼玛县', '542400');
INSERT INTO `area` VALUES (2745, '542521', '普兰县', '542500');
INSERT INTO `area` VALUES (2746, '542522', '札达县', '542500');
INSERT INTO `area` VALUES (2747, '542523', '噶尔县', '542500');
INSERT INTO `area` VALUES (2748, '542524', '日土县', '542500');
INSERT INTO `area` VALUES (2749, '542525', '革吉县', '542500');
INSERT INTO `area` VALUES (2750, '542526', '改则县', '542500');
INSERT INTO `area` VALUES (2751, '542527', '措勤县', '542500');
INSERT INTO `area` VALUES (2752, '542621', '林芝县', '542600');
INSERT INTO `area` VALUES (2753, '542622', '工布江达县', '542600');
INSERT INTO `area` VALUES (2754, '542623', '米林县', '542600');
INSERT INTO `area` VALUES (2755, '542624', '墨脱县', '542600');
INSERT INTO `area` VALUES (2756, '542625', '波密县', '542600');
INSERT INTO `area` VALUES (2757, '542626', '察隅县', '542600');
INSERT INTO `area` VALUES (2758, '542627', '朗 县', '542600');
INSERT INTO `area` VALUES (2759, '610101', '市辖区', '610100');
INSERT INTO `area` VALUES (2760, '610102', '新城区', '610100');
INSERT INTO `area` VALUES (2761, '610103', '碑林区', '610100');
INSERT INTO `area` VALUES (2762, '610104', '莲湖区', '610100');
INSERT INTO `area` VALUES (2763, '610111', '灞桥区', '610100');
INSERT INTO `area` VALUES (2764, '610112', '未央区', '610100');
INSERT INTO `area` VALUES (2765, '610113', '雁塔区', '610100');
INSERT INTO `area` VALUES (2766, '610114', '阎良区', '610100');
INSERT INTO `area` VALUES (2767, '610115', '临潼区', '610100');
INSERT INTO `area` VALUES (2768, '610116', '长安区', '610100');
INSERT INTO `area` VALUES (2769, '610122', '蓝田县', '610100');
INSERT INTO `area` VALUES (2770, '610124', '周至县', '610100');
INSERT INTO `area` VALUES (2771, '610125', '户 县', '610100');
INSERT INTO `area` VALUES (2772, '610126', '高陵县', '610100');
INSERT INTO `area` VALUES (2773, '610201', '市辖区', '610200');
INSERT INTO `area` VALUES (2774, '610202', '王益区', '610200');
INSERT INTO `area` VALUES (2775, '610203', '印台区', '610200');
INSERT INTO `area` VALUES (2776, '610204', '耀州区', '610200');
INSERT INTO `area` VALUES (2777, '610222', '宜君县', '610200');
INSERT INTO `area` VALUES (2778, '610301', '市辖区', '610300');
INSERT INTO `area` VALUES (2779, '610302', '渭滨区', '610300');
INSERT INTO `area` VALUES (2780, '610303', '金台区', '610300');
INSERT INTO `area` VALUES (2781, '610304', '陈仓区', '610300');
INSERT INTO `area` VALUES (2782, '610322', '凤翔县', '610300');
INSERT INTO `area` VALUES (2783, '610323', '岐山县', '610300');
INSERT INTO `area` VALUES (2784, '610324', '扶风县', '610300');
INSERT INTO `area` VALUES (2785, '610326', '眉 县', '610300');
INSERT INTO `area` VALUES (2786, '610327', '陇 县', '610300');
INSERT INTO `area` VALUES (2787, '610328', '千阳县', '610300');
INSERT INTO `area` VALUES (2788, '610329', '麟游县', '610300');
INSERT INTO `area` VALUES (2789, '610330', '凤 县', '610300');
INSERT INTO `area` VALUES (2790, '610331', '太白县', '610300');
INSERT INTO `area` VALUES (2791, '610401', '市辖区', '610400');
INSERT INTO `area` VALUES (2792, '610402', '秦都区', '610400');
INSERT INTO `area` VALUES (2793, '610403', '杨凌区', '610400');
INSERT INTO `area` VALUES (2794, '610404', '渭城区', '610400');
INSERT INTO `area` VALUES (2795, '610422', '三原县', '610400');
INSERT INTO `area` VALUES (2796, '610423', '泾阳县', '610400');
INSERT INTO `area` VALUES (2797, '610424', '乾 县', '610400');
INSERT INTO `area` VALUES (2798, '610425', '礼泉县', '610400');
INSERT INTO `area` VALUES (2799, '610426', '永寿县', '610400');
INSERT INTO `area` VALUES (2800, '610427', '彬 县', '610400');
INSERT INTO `area` VALUES (2801, '610428', '长武县', '610400');
INSERT INTO `area` VALUES (2802, '610429', '旬邑县', '610400');
INSERT INTO `area` VALUES (2803, '610430', '淳化县', '610400');
INSERT INTO `area` VALUES (2804, '610431', '武功县', '610400');
INSERT INTO `area` VALUES (2805, '610481', '兴平市', '610400');
INSERT INTO `area` VALUES (2806, '610501', '市辖区', '610500');
INSERT INTO `area` VALUES (2807, '610502', '临渭区', '610500');
INSERT INTO `area` VALUES (2808, '610521', '华 县', '610500');
INSERT INTO `area` VALUES (2809, '610522', '潼关县', '610500');
INSERT INTO `area` VALUES (2810, '610523', '大荔县', '610500');
INSERT INTO `area` VALUES (2811, '610524', '合阳县', '610500');
INSERT INTO `area` VALUES (2812, '610525', '澄城县', '610500');
INSERT INTO `area` VALUES (2813, '610526', '蒲城县', '610500');
INSERT INTO `area` VALUES (2814, '610527', '白水县', '610500');
INSERT INTO `area` VALUES (2815, '610528', '富平县', '610500');
INSERT INTO `area` VALUES (2816, '610581', '韩城市', '610500');
INSERT INTO `area` VALUES (2817, '610582', '华阴市', '610500');
INSERT INTO `area` VALUES (2818, '610601', '市辖区', '610600');
INSERT INTO `area` VALUES (2819, '610602', '宝塔区', '610600');
INSERT INTO `area` VALUES (2820, '610621', '延长县', '610600');
INSERT INTO `area` VALUES (2821, '610622', '延川县', '610600');
INSERT INTO `area` VALUES (2822, '610623', '子长县', '610600');
INSERT INTO `area` VALUES (2823, '610624', '安塞县', '610600');
INSERT INTO `area` VALUES (2824, '610625', '志丹县', '610600');
INSERT INTO `area` VALUES (2825, '610626', '吴旗县', '610600');
INSERT INTO `area` VALUES (2826, '610627', '甘泉县', '610600');
INSERT INTO `area` VALUES (2827, '610628', '富 县', '610600');
INSERT INTO `area` VALUES (2828, '610629', '洛川县', '610600');
INSERT INTO `area` VALUES (2829, '610630', '宜川县', '610600');
INSERT INTO `area` VALUES (2830, '610631', '黄龙县', '610600');
INSERT INTO `area` VALUES (2831, '610632', '黄陵县', '610600');
INSERT INTO `area` VALUES (2832, '610701', '市辖区', '610700');
INSERT INTO `area` VALUES (2833, '610702', '汉台区', '610700');
INSERT INTO `area` VALUES (2834, '610721', '南郑县', '610700');
INSERT INTO `area` VALUES (2835, '610722', '城固县', '610700');
INSERT INTO `area` VALUES (2836, '610723', '洋 县', '610700');
INSERT INTO `area` VALUES (2837, '610724', '西乡县', '610700');
INSERT INTO `area` VALUES (2838, '610725', '勉 县', '610700');
INSERT INTO `area` VALUES (2839, '610726', '宁强县', '610700');
INSERT INTO `area` VALUES (2840, '610727', '略阳县', '610700');
INSERT INTO `area` VALUES (2841, '610728', '镇巴县', '610700');
INSERT INTO `area` VALUES (2842, '610729', '留坝县', '610700');
INSERT INTO `area` VALUES (2843, '610730', '佛坪县', '610700');
INSERT INTO `area` VALUES (2844, '610801', '市辖区', '610800');
INSERT INTO `area` VALUES (2845, '610802', '榆阳区', '610800');
INSERT INTO `area` VALUES (2846, '610821', '神木县', '610800');
INSERT INTO `area` VALUES (2847, '610822', '府谷县', '610800');
INSERT INTO `area` VALUES (2848, '610823', '横山县', '610800');
INSERT INTO `area` VALUES (2849, '610824', '靖边县', '610800');
INSERT INTO `area` VALUES (2850, '610825', '定边县', '610800');
INSERT INTO `area` VALUES (2851, '610826', '绥德县', '610800');
INSERT INTO `area` VALUES (2852, '610827', '米脂县', '610800');
INSERT INTO `area` VALUES (2853, '610828', '佳 县', '610800');
INSERT INTO `area` VALUES (2854, '610829', '吴堡县', '610800');
INSERT INTO `area` VALUES (2855, '610830', '清涧县', '610800');
INSERT INTO `area` VALUES (2856, '610831', '子洲县', '610800');
INSERT INTO `area` VALUES (2857, '610901', '市辖区', '610900');
INSERT INTO `area` VALUES (2858, '610902', '汉滨区', '610900');
INSERT INTO `area` VALUES (2859, '610921', '汉阴县', '610900');
INSERT INTO `area` VALUES (2860, '610922', '石泉县', '610900');
INSERT INTO `area` VALUES (2861, '610923', '宁陕县', '610900');
INSERT INTO `area` VALUES (2862, '610924', '紫阳县', '610900');
INSERT INTO `area` VALUES (2863, '610925', '岚皋县', '610900');
INSERT INTO `area` VALUES (2864, '610926', '平利县', '610900');
INSERT INTO `area` VALUES (2865, '610927', '镇坪县', '610900');
INSERT INTO `area` VALUES (2866, '610928', '旬阳县', '610900');
INSERT INTO `area` VALUES (2867, '610929', '白河县', '610900');
INSERT INTO `area` VALUES (2868, '611001', '市辖区', '611000');
INSERT INTO `area` VALUES (2869, '611002', '商州区', '611000');
INSERT INTO `area` VALUES (2870, '611021', '洛南县', '611000');
INSERT INTO `area` VALUES (2871, '611022', '丹凤县', '611000');
INSERT INTO `area` VALUES (2872, '611023', '商南县', '611000');
INSERT INTO `area` VALUES (2873, '611024', '山阳县', '611000');
INSERT INTO `area` VALUES (2874, '611025', '镇安县', '611000');
INSERT INTO `area` VALUES (2875, '611026', '柞水县', '611000');
INSERT INTO `area` VALUES (2876, '620101', '市辖区', '620100');
INSERT INTO `area` VALUES (2877, '620102', '城关区', '620100');
INSERT INTO `area` VALUES (2878, '620103', '七里河区', '620100');
INSERT INTO `area` VALUES (2879, '620104', '西固区', '620100');
INSERT INTO `area` VALUES (2880, '620105', '安宁区', '620100');
INSERT INTO `area` VALUES (2881, '620111', '红古区', '620100');
INSERT INTO `area` VALUES (2882, '620121', '永登县', '620100');
INSERT INTO `area` VALUES (2883, '620122', '皋兰县', '620100');
INSERT INTO `area` VALUES (2884, '620123', '榆中县', '620100');
INSERT INTO `area` VALUES (2885, '620201', '市辖区', '620200');
INSERT INTO `area` VALUES (2886, '620301', '市辖区', '620300');
INSERT INTO `area` VALUES (2887, '620302', '金川区', '620300');
INSERT INTO `area` VALUES (2888, '620321', '永昌县', '620300');
INSERT INTO `area` VALUES (2889, '620401', '市辖区', '620400');
INSERT INTO `area` VALUES (2890, '620402', '白银区', '620400');
INSERT INTO `area` VALUES (2891, '620403', '平川区', '620400');
INSERT INTO `area` VALUES (2892, '620421', '靖远县', '620400');
INSERT INTO `area` VALUES (2893, '620422', '会宁县', '620400');
INSERT INTO `area` VALUES (2894, '620423', '景泰县', '620400');
INSERT INTO `area` VALUES (2895, '620501', '市辖区', '620500');
INSERT INTO `area` VALUES (2896, '620502', '秦城区', '620500');
INSERT INTO `area` VALUES (2897, '620503', '北道区', '620500');
INSERT INTO `area` VALUES (2898, '620521', '清水县', '620500');
INSERT INTO `area` VALUES (2899, '620522', '秦安县', '620500');
INSERT INTO `area` VALUES (2900, '620523', '甘谷县', '620500');
INSERT INTO `area` VALUES (2901, '620524', '武山县', '620500');
INSERT INTO `area` VALUES (2902, '620525', '张家川回族自治县', '620500');
INSERT INTO `area` VALUES (2903, '620601', '市辖区', '620600');
INSERT INTO `area` VALUES (2904, '620602', '凉州区', '620600');
INSERT INTO `area` VALUES (2905, '620621', '民勤县', '620600');
INSERT INTO `area` VALUES (2906, '620622', '古浪县', '620600');
INSERT INTO `area` VALUES (2907, '620623', '天祝藏族自治县', '620600');
INSERT INTO `area` VALUES (2908, '620701', '市辖区', '620700');
INSERT INTO `area` VALUES (2909, '620702', '甘州区', '620700');
INSERT INTO `area` VALUES (2910, '620721', '肃南裕固族自治县', '620700');
INSERT INTO `area` VALUES (2911, '620722', '民乐县', '620700');
INSERT INTO `area` VALUES (2912, '620723', '临泽县', '620700');
INSERT INTO `area` VALUES (2913, '620724', '高台县', '620700');
INSERT INTO `area` VALUES (2914, '620725', '山丹县', '620700');
INSERT INTO `area` VALUES (2915, '620801', '市辖区', '620800');
INSERT INTO `area` VALUES (2916, '620802', '崆峒区', '620800');
INSERT INTO `area` VALUES (2917, '620821', '泾川县', '620800');
INSERT INTO `area` VALUES (2918, '620822', '灵台县', '620800');
INSERT INTO `area` VALUES (2919, '620823', '崇信县', '620800');
INSERT INTO `area` VALUES (2920, '620824', '华亭县', '620800');
INSERT INTO `area` VALUES (2921, '620825', '庄浪县', '620800');
INSERT INTO `area` VALUES (2922, '620826', '静宁县', '620800');
INSERT INTO `area` VALUES (2923, '620901', '市辖区', '620900');
INSERT INTO `area` VALUES (2924, '620902', '肃州区', '620900');
INSERT INTO `area` VALUES (2925, '620921', '金塔县', '620900');
INSERT INTO `area` VALUES (2926, '620922', '安西县', '620900');
INSERT INTO `area` VALUES (2927, '620923', '肃北蒙古族自治县', '620900');
INSERT INTO `area` VALUES (2928, '620924', '阿克塞哈萨克族自治县', '620900');
INSERT INTO `area` VALUES (2929, '620981', '玉门市', '620900');
INSERT INTO `area` VALUES (2930, '620982', '敦煌市', '620900');
INSERT INTO `area` VALUES (2931, '621001', '市辖区', '621000');
INSERT INTO `area` VALUES (2932, '621002', '西峰区', '621000');
INSERT INTO `area` VALUES (2933, '621021', '庆城县', '621000');
INSERT INTO `area` VALUES (2934, '621022', '环 县', '621000');
INSERT INTO `area` VALUES (2935, '621023', '华池县', '621000');
INSERT INTO `area` VALUES (2936, '621024', '合水县', '621000');
INSERT INTO `area` VALUES (2937, '621025', '正宁县', '621000');
INSERT INTO `area` VALUES (2938, '621026', '宁 县', '621000');
INSERT INTO `area` VALUES (2939, '621027', '镇原县', '621000');
INSERT INTO `area` VALUES (2940, '621101', '市辖区', '621100');
INSERT INTO `area` VALUES (2941, '621102', '安定区', '621100');
INSERT INTO `area` VALUES (2942, '621121', '通渭县', '621100');
INSERT INTO `area` VALUES (2943, '621122', '陇西县', '621100');
INSERT INTO `area` VALUES (2944, '621123', '渭源县', '621100');
INSERT INTO `area` VALUES (2945, '621124', '临洮县', '621100');
INSERT INTO `area` VALUES (2946, '621125', '漳 县', '621100');
INSERT INTO `area` VALUES (2947, '621126', '岷 县', '621100');
INSERT INTO `area` VALUES (2948, '621201', '市辖区', '621200');
INSERT INTO `area` VALUES (2949, '621202', '武都区', '621200');
INSERT INTO `area` VALUES (2950, '621221', '成 县', '621200');
INSERT INTO `area` VALUES (2951, '621222', '文 县', '621200');
INSERT INTO `area` VALUES (2952, '621223', '宕昌县', '621200');
INSERT INTO `area` VALUES (2953, '621224', '康 县', '621200');
INSERT INTO `area` VALUES (2954, '621225', '西和县', '621200');
INSERT INTO `area` VALUES (2955, '621226', '礼 县', '621200');
INSERT INTO `area` VALUES (2956, '621227', '徽 县', '621200');
INSERT INTO `area` VALUES (2957, '621228', '两当县', '621200');
INSERT INTO `area` VALUES (2958, '622901', '临夏市', '622900');
INSERT INTO `area` VALUES (2959, '622921', '临夏县', '622900');
INSERT INTO `area` VALUES (2960, '622922', '康乐县', '622900');
INSERT INTO `area` VALUES (2961, '622923', '永靖县', '622900');
INSERT INTO `area` VALUES (2962, '622924', '广河县', '622900');
INSERT INTO `area` VALUES (2963, '622925', '和政县', '622900');
INSERT INTO `area` VALUES (2964, '622926', '东乡族自治县', '622900');
INSERT INTO `area` VALUES (2965, '622927', '积石山保安族东乡族撒拉族自治县', '622900');
INSERT INTO `area` VALUES (2966, '623001', '合作市', '623000');
INSERT INTO `area` VALUES (2967, '623021', '临潭县', '623000');
INSERT INTO `area` VALUES (2968, '623022', '卓尼县', '623000');
INSERT INTO `area` VALUES (2969, '623023', '舟曲县', '623000');
INSERT INTO `area` VALUES (2970, '623024', '迭部县', '623000');
INSERT INTO `area` VALUES (2971, '623025', '玛曲县', '623000');
INSERT INTO `area` VALUES (2972, '623026', '碌曲县', '623000');
INSERT INTO `area` VALUES (2973, '623027', '夏河县', '623000');
INSERT INTO `area` VALUES (2974, '630101', '市辖区', '630100');
INSERT INTO `area` VALUES (2975, '630102', '城东区', '630100');
INSERT INTO `area` VALUES (2976, '630103', '城中区', '630100');
INSERT INTO `area` VALUES (2977, '630104', '城西区', '630100');
INSERT INTO `area` VALUES (2978, '630105', '城北区', '630100');
INSERT INTO `area` VALUES (2979, '630121', '大通回族土族自治县', '630100');
INSERT INTO `area` VALUES (2980, '630122', '湟中县', '630100');
INSERT INTO `area` VALUES (2981, '630123', '湟源县', '630100');
INSERT INTO `area` VALUES (2982, '632121', '平安县', '632100');
INSERT INTO `area` VALUES (2983, '632122', '民和回族土族自治县', '632100');
INSERT INTO `area` VALUES (2984, '632123', '乐都县', '632100');
INSERT INTO `area` VALUES (2985, '632126', '互助土族自治县', '632100');
INSERT INTO `area` VALUES (2986, '632127', '化隆回族自治县', '632100');
INSERT INTO `area` VALUES (2987, '632128', '循化撒拉族自治县', '632100');
INSERT INTO `area` VALUES (2988, '632221', '门源回族自治县', '632200');
INSERT INTO `area` VALUES (2989, '632222', '祁连县', '632200');
INSERT INTO `area` VALUES (2990, '632223', '海晏县', '632200');
INSERT INTO `area` VALUES (2991, '632224', '刚察县', '632200');
INSERT INTO `area` VALUES (2992, '632321', '同仁县', '632300');
INSERT INTO `area` VALUES (2993, '632322', '尖扎县', '632300');
INSERT INTO `area` VALUES (2994, '632323', '泽库县', '632300');
INSERT INTO `area` VALUES (2995, '632324', '河南蒙古族自治县', '632300');
INSERT INTO `area` VALUES (2996, '632521', '共和县', '632500');
INSERT INTO `area` VALUES (2997, '632522', '同德县', '632500');
INSERT INTO `area` VALUES (2998, '632523', '贵德县', '632500');
INSERT INTO `area` VALUES (2999, '632524', '兴海县', '632500');
INSERT INTO `area` VALUES (3000, '632525', '贵南县', '632500');
INSERT INTO `area` VALUES (3001, '632621', '玛沁县', '632600');
INSERT INTO `area` VALUES (3002, '632622', '班玛县', '632600');
INSERT INTO `area` VALUES (3003, '632623', '甘德县', '632600');
INSERT INTO `area` VALUES (3004, '632624', '达日县', '632600');
INSERT INTO `area` VALUES (3005, '632625', '久治县', '632600');
INSERT INTO `area` VALUES (3006, '632626', '玛多县', '632600');
INSERT INTO `area` VALUES (3007, '632721', '玉树县', '632700');
INSERT INTO `area` VALUES (3008, '632722', '杂多县', '632700');
INSERT INTO `area` VALUES (3009, '632723', '称多县', '632700');
INSERT INTO `area` VALUES (3010, '632724', '治多县', '632700');
INSERT INTO `area` VALUES (3011, '632725', '囊谦县', '632700');
INSERT INTO `area` VALUES (3012, '632726', '曲麻莱县', '632700');
INSERT INTO `area` VALUES (3013, '632801', '格尔木市', '632800');
INSERT INTO `area` VALUES (3014, '632802', '德令哈市', '632800');
INSERT INTO `area` VALUES (3015, '632821', '乌兰县', '632800');
INSERT INTO `area` VALUES (3016, '632822', '都兰县', '632800');
INSERT INTO `area` VALUES (3017, '632823', '天峻县', '632800');
INSERT INTO `area` VALUES (3018, '640101', '市辖区', '640100');
INSERT INTO `area` VALUES (3019, '640104', '兴庆区', '640100');
INSERT INTO `area` VALUES (3020, '640105', '西夏区', '640100');
INSERT INTO `area` VALUES (3021, '640106', '金凤区', '640100');
INSERT INTO `area` VALUES (3022, '640121', '永宁县', '640100');
INSERT INTO `area` VALUES (3023, '640122', '贺兰县', '640100');
INSERT INTO `area` VALUES (3024, '640181', '灵武市', '640100');
INSERT INTO `area` VALUES (3025, '640201', '市辖区', '640200');
INSERT INTO `area` VALUES (3026, '640202', '大武口区', '640200');
INSERT INTO `area` VALUES (3027, '640205', '惠农区', '640200');
INSERT INTO `area` VALUES (3028, '640221', '平罗县', '640200');
INSERT INTO `area` VALUES (3029, '640301', '市辖区', '640300');
INSERT INTO `area` VALUES (3030, '640302', '利通区', '640300');
INSERT INTO `area` VALUES (3031, '640323', '盐池县', '640300');
INSERT INTO `area` VALUES (3032, '640324', '同心县', '640300');
INSERT INTO `area` VALUES (3033, '640381', '青铜峡市', '640300');
INSERT INTO `area` VALUES (3034, '640401', '市辖区', '640400');
INSERT INTO `area` VALUES (3035, '640402', '原州区', '640400');
INSERT INTO `area` VALUES (3036, '640422', '西吉县', '640400');
INSERT INTO `area` VALUES (3037, '640423', '隆德县', '640400');
INSERT INTO `area` VALUES (3038, '640424', '泾源县', '640400');
INSERT INTO `area` VALUES (3039, '640425', '彭阳县', '640400');
INSERT INTO `area` VALUES (3040, '640501', '市辖区', '640500');
INSERT INTO `area` VALUES (3041, '640502', '沙坡头区', '640500');
INSERT INTO `area` VALUES (3042, '640521', '中宁县', '640500');
INSERT INTO `area` VALUES (3043, '640522', '海原县', '640400');
INSERT INTO `area` VALUES (3044, '650101', '市辖区', '650100');
INSERT INTO `area` VALUES (3045, '650102', '天山区', '650100');
INSERT INTO `area` VALUES (3046, '650103', '沙依巴克区', '650100');
INSERT INTO `area` VALUES (3047, '650104', '新市区', '650100');
INSERT INTO `area` VALUES (3048, '650105', '水磨沟区', '650100');
INSERT INTO `area` VALUES (3049, '650106', '头屯河区', '650100');
INSERT INTO `area` VALUES (3050, '650107', '达坂城区', '650100');
INSERT INTO `area` VALUES (3051, '650108', '东山区', '650100');
INSERT INTO `area` VALUES (3052, '650121', '乌鲁木齐县', '650100');
INSERT INTO `area` VALUES (3053, '650201', '市辖区', '650200');
INSERT INTO `area` VALUES (3054, '650202', '独山子区', '650200');
INSERT INTO `area` VALUES (3055, '650203', '克拉玛依区', '650200');
INSERT INTO `area` VALUES (3056, '650204', '白碱滩区', '650200');
INSERT INTO `area` VALUES (3057, '650205', '乌尔禾区', '650200');
INSERT INTO `area` VALUES (3058, '652101', '吐鲁番市', '652100');
INSERT INTO `area` VALUES (3059, '652122', '鄯善县', '652100');
INSERT INTO `area` VALUES (3060, '652123', '托克逊县', '652100');
INSERT INTO `area` VALUES (3061, '652201', '哈密市', '652200');
INSERT INTO `area` VALUES (3062, '652222', '巴里坤哈萨克自治县', '652200');
INSERT INTO `area` VALUES (3063, '652223', '伊吾县', '652200');
INSERT INTO `area` VALUES (3064, '652301', '昌吉市', '652300');
INSERT INTO `area` VALUES (3065, '652302', '阜康市', '652300');
INSERT INTO `area` VALUES (3066, '652303', '米泉市', '652300');
INSERT INTO `area` VALUES (3067, '652323', '呼图壁县', '652300');
INSERT INTO `area` VALUES (3068, '652324', '玛纳斯县', '652300');
INSERT INTO `area` VALUES (3069, '652325', '奇台县', '652300');
INSERT INTO `area` VALUES (3070, '652327', '吉木萨尔县', '652300');
INSERT INTO `area` VALUES (3071, '652328', '木垒哈萨克自治县', '652300');
INSERT INTO `area` VALUES (3072, '652701', '博乐市', '652700');
INSERT INTO `area` VALUES (3073, '652722', '精河县', '652700');
INSERT INTO `area` VALUES (3074, '652723', '温泉县', '652700');
INSERT INTO `area` VALUES (3075, '652801', '库尔勒市', '652800');
INSERT INTO `area` VALUES (3076, '652822', '轮台县', '652800');
INSERT INTO `area` VALUES (3077, '652823', '尉犁县', '652800');
INSERT INTO `area` VALUES (3078, '652824', '若羌县', '652800');
INSERT INTO `area` VALUES (3079, '652825', '且末县', '652800');
INSERT INTO `area` VALUES (3080, '652826', '焉耆回族自治县', '652800');
INSERT INTO `area` VALUES (3081, '652827', '和静县', '652800');
INSERT INTO `area` VALUES (3082, '652828', '和硕县', '652800');
INSERT INTO `area` VALUES (3083, '652829', '博湖县', '652800');
INSERT INTO `area` VALUES (3084, '652901', '阿克苏市', '652900');
INSERT INTO `area` VALUES (3085, '652922', '温宿县', '652900');
INSERT INTO `area` VALUES (3086, '652923', '库车县', '652900');
INSERT INTO `area` VALUES (3087, '652924', '沙雅县', '652900');
INSERT INTO `area` VALUES (3088, '652925', '新和县', '652900');
INSERT INTO `area` VALUES (3089, '652926', '拜城县', '652900');
INSERT INTO `area` VALUES (3090, '652927', '乌什县', '652900');
INSERT INTO `area` VALUES (3091, '652928', '阿瓦提县', '652900');
INSERT INTO `area` VALUES (3092, '652929', '柯坪县', '652900');
INSERT INTO `area` VALUES (3093, '653001', '阿图什市', '653000');
INSERT INTO `area` VALUES (3094, '653022', '阿克陶县', '653000');
INSERT INTO `area` VALUES (3095, '653023', '阿合奇县', '653000');
INSERT INTO `area` VALUES (3096, '653024', '乌恰县', '653000');
INSERT INTO `area` VALUES (3097, '653101', '喀什市', '653100');
INSERT INTO `area` VALUES (3098, '653121', '疏附县', '653100');
INSERT INTO `area` VALUES (3099, '653122', '疏勒县', '653100');
INSERT INTO `area` VALUES (3100, '653123', '英吉沙县', '653100');
INSERT INTO `area` VALUES (3101, '653124', '泽普县', '653100');
INSERT INTO `area` VALUES (3102, '653125', '莎车县', '653100');
INSERT INTO `area` VALUES (3103, '653126', '叶城县', '653100');
INSERT INTO `area` VALUES (3104, '653127', '麦盖提县', '653100');
INSERT INTO `area` VALUES (3105, '653128', '岳普湖县', '653100');
INSERT INTO `area` VALUES (3106, '653129', '伽师县', '653100');
INSERT INTO `area` VALUES (3107, '653130', '巴楚县', '653100');
INSERT INTO `area` VALUES (3108, '653131', '塔什库尔干塔吉克自治县', '653100');
INSERT INTO `area` VALUES (3109, '653201', '和田市', '653200');
INSERT INTO `area` VALUES (3110, '653221', '和田县', '653200');
INSERT INTO `area` VALUES (3111, '653222', '墨玉县', '653200');
INSERT INTO `area` VALUES (3112, '653223', '皮山县', '653200');
INSERT INTO `area` VALUES (3113, '653224', '洛浦县', '653200');
INSERT INTO `area` VALUES (3114, '653225', '策勒县', '653200');
INSERT INTO `area` VALUES (3115, '653226', '于田县', '653200');
INSERT INTO `area` VALUES (3116, '653227', '民丰县', '653200');
INSERT INTO `area` VALUES (3117, '654002', '伊宁市', '654000');
INSERT INTO `area` VALUES (3118, '654003', '奎屯市', '654000');
INSERT INTO `area` VALUES (3119, '654021', '伊宁县', '654000');
INSERT INTO `area` VALUES (3120, '654022', '察布查尔锡伯自治县', '654000');
INSERT INTO `area` VALUES (3121, '654023', '霍城县', '654000');
INSERT INTO `area` VALUES (3122, '654024', '巩留县', '654000');
INSERT INTO `area` VALUES (3123, '654025', '新源县', '654000');
INSERT INTO `area` VALUES (3124, '654026', '昭苏县', '654000');
INSERT INTO `area` VALUES (3125, '654027', '特克斯县', '654000');
INSERT INTO `area` VALUES (3126, '654028', '尼勒克县', '654000');
INSERT INTO `area` VALUES (3127, '654201', '塔城市', '654200');
INSERT INTO `area` VALUES (3128, '654202', '乌苏市', '654200');
INSERT INTO `area` VALUES (3129, '654221', '额敏县', '654200');
INSERT INTO `area` VALUES (3130, '654223', '沙湾县', '654200');
INSERT INTO `area` VALUES (3131, '654224', '托里县', '654200');
INSERT INTO `area` VALUES (3132, '654225', '裕民县', '654200');
INSERT INTO `area` VALUES (3133, '654226', '和布克赛尔蒙古自治县', '654200');
INSERT INTO `area` VALUES (3134, '654301', '阿勒泰市', '654300');
INSERT INTO `area` VALUES (3135, '654321', '布尔津县', '654300');
INSERT INTO `area` VALUES (3136, '654322', '富蕴县', '654300');
INSERT INTO `area` VALUES (3137, '654323', '福海县', '654300');
INSERT INTO `area` VALUES (3138, '654324', '哈巴河县', '654300');
INSERT INTO `area` VALUES (3139, '654325', '青河县', '654300');
INSERT INTO `area` VALUES (3140, '654326', '吉木乃县', '654300');
INSERT INTO `area` VALUES (3141, '659001', '石河子市', '659000');
INSERT INTO `area` VALUES (3142, '659002', '阿拉尔市', '659000');
INSERT INTO `area` VALUES (3143, '659003', '图木舒克市', '659000');
INSERT INTO `area` VALUES (3144, '659004', '五家渠市', '659000');
SET FOREIGN_KEY_CHECKS = 1;
|
-- MariaDB dump 10.17 Distrib 10.4.13-MariaDB, for Linux (x86_64)
--
-- Host: localhost Database: douban
-- ------------------------------------------------------
-- Server version 10.4.13-MariaDB
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `comment`
--
DROP TABLE IF EXISTS `comment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `comment` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`content` varchar(1000) DEFAULT NULL,
`star` int(11) DEFAULT NULL,
`film_id` int(11) NOT NULL,
`votes` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `comment_film_id_fk` (`film_id`),
CONSTRAINT `comment_film_id_fk` FOREIGN KEY (`film_id`) REFERENCES `film` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=219936 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `film`
--
DROP TABLE IF EXISTS `film`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `film` (
`id` int(11) NOT NULL,
`name` varchar(100) DEFAULT NULL,
`director` varchar(200) DEFAULT NULL,
`screenwriter` varchar(200) DEFAULT NULL,
`type` varchar(100) DEFAULT NULL,
`actor` varchar(400) DEFAULT NULL,
`country` varchar(200) DEFAULT NULL,
`score` float DEFAULT NULL,
`compare` float DEFAULT NULL,
`votes` int(11) DEFAULT NULL,
`year` year(4) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `film_name_uindex` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2020-07-04 23:05:08
|
BEGIN;
ALTER TABLE changeset_specs ADD COLUMN head_ref text DEFAULT NULL;
ALTER TABLE changeset_specs ADD COLUMN title text DEFAULT NULL;
ALTER TABLE changeset_specs ADD COLUMN external_id text DEFAULT NULL;
CREATE INDEX changeset_specs_external_id ON changeset_specs (external_id);
CREATE INDEX changeset_specs_head_ref ON changeset_specs (head_ref);
CREATE INDEX changeset_specs_title ON changeset_specs (title);
UPDATE changeset_specs SET head_ref = changeset_specs.spec->>'headRef'::text WHERE changeset_specs.spec->>'externalID'::text IS NULL;
UPDATE changeset_specs SET title = changeset_specs.spec->>'title'::text;
UPDATE changeset_specs SET external_id = changeset_specs.spec->>'externalID'::text;
-- These are the same views as before, except that they now use the new
-- columns, which is why we need to re-create them.
DROP VIEW IF EXISTS branch_changeset_specs_and_changesets;
CREATE VIEW branch_changeset_specs_and_changesets AS (
SELECT
changeset_specs.id AS changeset_spec_id,
COALESCE(changesets.id, 0::bigint) AS changeset_id,
changeset_specs.repo_id,
changeset_specs.campaign_spec_id,
changesets.owned_by_campaign_id AS owner_campaign_id,
repo.name AS repo_name,
changeset_specs.title AS changeset_name
FROM changeset_specs
LEFT JOIN
changesets
ON
changesets.repo_id = changeset_specs.repo_id
AND
changesets.current_spec_id IS NOT NULL
AND
EXISTS (
SELECT 1
FROM changeset_specs changeset_specs_1
WHERE
changeset_specs_1.id = changesets.current_spec_id
AND
changeset_specs_1.head_ref = changeset_specs.head_ref
)
JOIN
repo
ON
changeset_specs.repo_id = repo.id
WHERE
changeset_specs.external_id IS NULL
AND
repo.deleted_at IS NULL
);
DROP VIEW IF EXISTS tracking_changeset_specs_and_changesets;
CREATE VIEW tracking_changeset_specs_and_changesets AS (
SELECT
changeset_specs.id AS changeset_spec_id,
COALESCE(changesets.id, 0::bigint) AS changeset_id,
changeset_specs.repo_id,
changeset_specs.campaign_spec_id,
repo.name AS repo_name,
COALESCE(changesets.metadata ->> 'Title'::text, changesets.metadata ->> 'title'::text) AS changeset_name
FROM
changeset_specs
LEFT JOIN
changesets
ON
changesets.repo_id = changeset_specs.repo_id
AND
changesets.external_id = changeset_specs.external_id
JOIN
repo
ON
changeset_specs.repo_id = repo.id
WHERE
changeset_specs.external_id IS NOT NULL
AND
repo.deleted_at IS NULL
);
COMMIT;
|
proc $sc_$cpu_fm_fileinfodisplay (filename, crcVal, expResult)
;==============================================================================
;
; Purpose: The purpose of this procedure is to perform the file info
; cmd and then write the contents of the packet to the log.
;
; Waring: It is advised that before running a fresh procedure that calls this
; to initialize the telemetry points P08Bscnt, P18Bscnt, & P28Bscnt
; to 0 so that a previous proc run does not interfere with whether
; the packet is viewed as stale or not
;
; History:
; Date Name Description
; 07/31/08 <NAME> Initial development of this proc.
; 02/28/11 <NAME> Added variables for App name and ram directory
; 05/09/12 <NAME> Added check of ChildCMDPC and ChildCMDEC
; 01/19/17 <NAME> Added print of File permissions
;==============================================================================
if (%nargs < 2) then
crcVal = 0
expResult = "Pass"
elseif (%nargs = 2) then
expResult = "Pass"
endif
local cmdctr
local errcnt
local seqCount
local writeToLog = 1
local actualResult
;****************************************
; start of sub-proc
;****************************************
; grab the current sequence counter for the info packet
; CPU1 is the default
seqCount = P08Bscnt
write " Packet Sequence Counter before cmd = ", seqCount
cmdctr = $SC_$CPU_FM_CMDPC + 1
errcnt = $SC_$CPU_FM_CMDEC + 1
local childCmdCtr = $SC_$CPU_FM_CHILDCMDPC + 1
/$SC_$CPU_FM_FileInfo File=filename CRC_Method=crcVal
wait until (($SC_$CPU_FM_CMDPC = cmdctr) OR ($SC_$CPU_FM_CMDEC = errcnt))
if ($SC_$CPU_FM_CMDPC = cmdctr) then
actualResult = "Pass"
if (expResult = "Pass") then
write "<*> Passed - File Info command accepted."
;; Check if the ChildCMDPC incremented
if ($SC_$CPU_FM_CHILDCMDPC = childCmdCtr) then
write "<*> Passed - Child CMDPC incremented as expected."
else
write "<!> Failed - Child CMDPC did not increment. Expected '",childCmdCtr,"'; Got '", $SC_$CPU_FM_CHILDCMDPC,"'"
endif
else
write "<!> Failed - File Info command rejected when success was expected."
endif
else
actualResult = "Fail"
if (expResult = "Fail") then
write "<*> Passed - File Info command rejected as expected."
else
write "<!> Failed - File Info command accepted when failure was expected."
endif
endif
if (actualResult = "Pass") then
; Write contents of the packet to the log
write "Contents of the File Info Packet:"
local newSeqCount = P08Bscnt
if (seqCount = newSeqCount) then
write "<?> WARNING - Info Packet not received"
writeToLog = 0
endif
write ""
write " Sequence Counter = ", newSeqCount
if (writeToLog = 1) then
write " File Name = ", $SC_$CPU_FM_InfoFileName
write " File Status = ", P@$SC_$CPU_FM_FileStatus
write " File Size = ", $SC_$CPU_FM_InfoFileSize
write " Compute CRC Flag = ", $SC_$CPU_FM_ComputeCRC
write " CRC = ", $SC_$CPU_FM_CRC
write " last Mod Time = ", $SC_$CPU_FM_ModTime
write " Permissions = ", $SC_$CPU_FM_Perms
write ""
endif
endif
ENDPROC
|
CREATE OR REPLACE FUNCTION f_mb_prj_title_update (
in_projectid varchar(64),
in_titleid varchar(64),
in_titlename varchar(255),
in_titlelogo text,
OUT retcode integer, OUT retvalue text)
RETURNS record
LANGUAGE plpgsql
AS $function$
/*
* 函数说明:更新项目标题。
* 参数:按要求填写参数
* * 返回:
* retcode: 小于0,失败;==0成功
* retvalue:返回成功或失败的信息
* 备注:外部程序调用必须判断retcode的返回值进行处理
*/
declare
-- 入参说明
-- 程序变量说明
v_createdtime TIMESTAMP DEFAULT Now();
v_modifiedtime TIMESTAMP DEFAULT Now();
begin
if (trim(in_projectid) = '' or trim(in_titleid) = '' or trim(in_titlename) = '') then
retcode := -6;
retvalue := '{"error_msg":"field value is null or empty"}';
return;
end if;
--更新
select now() into v_modifiedtime;
update t_mb_prj_title set
titlename = in_titlename,
titlelogo = in_titlelogo,
modifiedtime = v_modifiedtime
where projectid = in_projectid
and titleid = in_titleid;
-- 处理返回结果
retcode := 0;
retvalue := '{"error_msg":"success"}';
end
$function$
|
<gh_stars>1000+
-- Licensed to the Apache Software Foundation (ASF) under one
-- or more contributor license agreements. See the NOTICE file
-- distributed with this work for additional information
-- regarding copyright ownership. The ASF licenses this file
-- to you 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.
select *
from (select avg(ss_list_price) B1_LP
,count(ss_list_price) B1_CNT
,count(distinct ss_list_price) B1_CNTD
from store_sales
where ss_quantity between 0 and 5
and (ss_list_price between 11 and 11+10
or ss_coupon_amt between 460 and 460+1000
or ss_wholesale_cost between 14 and 14+20)) B1,
(select avg(ss_list_price) B2_LP
,count(ss_list_price) B2_CNT
,count(distinct ss_list_price) B2_CNTD
from store_sales
where ss_quantity between 6 and 10
and (ss_list_price between 91 and 91+10
or ss_coupon_amt between 1430 and 1430+1000
or ss_wholesale_cost between 32 and 32+20)) B2,
(select avg(ss_list_price) B3_LP
,count(ss_list_price) B3_CNT
,count(distinct ss_list_price) B3_CNTD
from store_sales
where ss_quantity between 11 and 15
and (ss_list_price between 66 and 66+10
or ss_coupon_amt between 920 and 920+1000
or ss_wholesale_cost between 4 and 4+20)) B3,
(select avg(ss_list_price) B4_LP
,count(ss_list_price) B4_CNT
,count(distinct ss_list_price) B4_CNTD
from store_sales
where ss_quantity between 16 and 20
and (ss_list_price between 142 and 142+10
or ss_coupon_amt between 3054 and 3054+1000
or ss_wholesale_cost between 80 and 80+20)) B4,
(select avg(ss_list_price) B5_LP
,count(ss_list_price) B5_CNT
,count(distinct ss_list_price) B5_CNTD
from store_sales
where ss_quantity between 21 and 25
and (ss_list_price between 135 and 135+10
or ss_coupon_amt between 14180 and 14180+1000
or ss_wholesale_cost between 38 and 38+20)) B5,
(select avg(ss_list_price) B6_LP
,count(ss_list_price) B6_CNT
,count(distinct ss_list_price) B6_CNTD
from store_sales
where ss_quantity between 26 and 30
and (ss_list_price between 28 and 28+10
or ss_coupon_amt between 2513 and 2513+1000
or ss_wholesale_cost between 42 and 42+20)) B6
limit 100
|
<filename>gpMgmt/bin/gppylib/test/behave/mgmt_utils/steps/data/gptransfer_verify/function_verify.sql
\df
select proname,pronamespace, proowner,prolang,proisagg,prosecdef,proisstrict,proretset,provolatile,pronargs,prorettype,proiswin,proargtypes,prosrc from pg_proc where proname='add';
|
ALTER TABLE `users`
DROP COLUMN `notifycompat`,
DROP COLUMN `notifyevents`;
|
ALTER TABLE `users` ADD `locked` TINYINT(1) NOT NULL DEFAULT '0' AFTER `login_type`; |
-- Your SQL goes here
CREATE TABLE posts (
id SERIAL PRIMARY KEY,
title VARCHAR NOT NULL,
body TEXT NOT NULL,
published BOOLEAN NOT NULL DEFAULT 'f'
) |
REM ******************************************************************
REM Fecha : 08/05/2018
REM Realizado por : <NAME>
REM Base de Datos : FS_AUWEB_US
REM Script : Indexx
REM ******************************************************************
PROMPT MO_TROMO_IND.sql...
@@MO_TROMO_IND.sql
PROMPT US_TPUSR_IND.sql...
@@US_TPUSR_IND.sql
|
/*
Uno studente può effettuare una prenotazione per un appello di seduta di laurea se e solo se
l'appello di seduta di laurea per il quale ha eseguito la prenotazione afferisce al suo CdL,
se la somma dei CFU ottenuti con i seminari (al più 3), dei CFU ottenuti con il tirocinio (12),
dei CFU ottenuti con i bandi erasmus (al più 12) e quelli ottenuti con gli esami del CdL è maggiore
i 180 se si tratta di una triennale o 120 se si tratta di una magistrale. Inoltre,
uno studente può effettuare una prenotazione per un appello di seduta di laurea se e solo se ha
pagato tutte le tasse previste, la data di prenotazione è avvenuta nel range di date corretto, e ci sono
abbastanza posti rimanenti, se ha effettuato il tirocinio.
*/
CREATE OR REPLACE TRIGGER VERIFICA_PRENOTAZIONE_APPELLO_LAUREA
BEFORE INSERT OR UPDATE ON prenotazione_appello_seduta FOR EACH ROW
DECLARE
studentID prenotazione_appello_seduta.matricola_studente % TYPE := :NEW.matricola_studente;
insertedCourseID studente.codice_corso % TYPE := :NEW.codice_corso;
studentCourseID studente.codice_corso % TYPE;
studentID_payment prenotazione_appello_seduta.matricola_studente % TYPE;
studentID_temp prenotazione_appello_seduta.matricola_studente % TYPE;
CFU_seminari seminario.CFU % TYPE := 0;
CFU_tirocini tirocinio.CFU % TYPE := 0;
CFU_esamiSuperati Number(3, 0) := 0;
CFU_bandiErasmus bando_erasmus.CFU % TYPE := 0;
nPostiPrenotati appello_laurea.max_iscrizioni % TYPE := 0;
tuplaAppello appello_laurea % ROWTYPE;
dataPrenotazione prenotazione_appello_seduta.data_prenotazione % TYPE := :NEW.data_prenotazione;
tipoLaurea corso_laurea.tipo % TYPE := 0;
notEnough_CFU EXCEPTION;
invalidCourseID EXCEPTION;
unpaidTaxes EXCEPTION;
invalidBookingDate EXCEPTION;
postiMancanti EXCEPTION;
BEGIN
-- verifica correttezza CdL
--prelevo il CdL effettivo dello studente caricato nel db
SELECT studente.codice_corso INTO studentCourseID
FROM studente
WHERE studente.matricola_studente = studentID;
--verifico che corrisponda col CdL inserito
IF studentCourseID != insertedCourseID THEN
RAISE invalidCourseID;
END IF;
-- conteggio CFU seminari
-- somma dei cfu dei seminari a cui ha partecipato tale studente
SELECT studente.matricola_studente, SUM(seminario.CFU) INTO studentID_temp, CFU_seminari
FROM (
-- recupero gli studenti che hanno partecipato a seminari e per tale seminari recupero il numero di CFU corrispondente
(STUDENTE LEFT JOIN partecipa_seminario ON STUDENTE.matricola_studente = partecipa_seminario.matricola_studente)
LEFT JOIN seminario ON partecipa_seminario.data_seminario = seminario.data_seminario
AND partecipa_seminario.tesserino_docente = seminario.tesserino_docente
)
WHERE studente.matricola_studente = studentID
GROUP BY studente.matricola_studente;
-- se non ha partecipato ad alcun seminario, assegno 0 a tale conteggio
IF (CFU_seminari IS NULL) THEN
CFU_seminari := 0;
END IF;
-- limito il numero di CFU per i seminari a 3 se eventualmente ha assistito a più seminari ottenendo più CFU dei massimi consentiti
IF (CFU_seminari > 3) THEN
CFU_seminari := 3;
END IF;
-- conteggio CFU tirocini
-- prelevo il numero dei cfu del tirocinio a cui ha partecipato tale studente, se vi ha partecipato.
SELECT tirocinio.matricola_studente, tirocinio.CFU INTO studentID_temp, CFU_tirocini
FROM tirocinio
WHERE tirocinio.matricola_studente = studentID;
-- si suppone che il massimo numero di CFU ottenibili da tirocini sia 12 (vedi traccia trigger)
IF CFU_tirocini > 12 THEN
CFU_tirocini := 12;
END IF;
-- conteggio CFU Erasmus
-- somma dei CFU conseguiti dalle esperienze Erasmus a cui ha partecipato tale studente
SELECT studente.matricola_studente, SUM(bando_erasmus.CFU) INTO studentID_temp, CFU_bandiErasmus
FROM (
-- recupero gli studenti che hanno partecipato ad erasmus e per tale erasmus recupero il numero di CFU corrispondente
studente LEFT JOIN assegnazione_erasmus ON STUDENTE.matricola_studente = assegnazione_erasmus.matricola_studente)
LEFT JOIN bando_erasmus ON assegnazione_erasmus.numero_bando_erasmus = bando_erasmus.numero_bando_erasmus
WHERE studente.matricola_studente = studentID
GROUP BY studente.matricola_studente;
-- se non ha partecipato ad alcun erasmus, assegno 0 a tale conteggio
IF (CFU_bandiErasmus IS NULL) THEN
CFU_bandiErasmus := 0;
END IF;
-- si suppone max 12 cfu per erasmus in totale
IF CFU_bandiErasmus > 12 THEN
CFU_bandiErasmus := 12;
END IF;
-- conteggio CFU esami superati
-- somma dei CFU conseguiti al superamento di esami
SELECT studente.matricola_studente, SUM(edizione_insegnamento.CFU) INTO studentID_temp, CFU_esamiSuperati
FROM ((
-- recupero gli esami superati, i relativi appelli e le relative edizioni dell'insegnamento per prelevare il numero di CFU corrispondente
(studente LEFT JOIN esame_superato ON studente.matricola_studente = esame_superato.matricola_studente)
LEFT JOIN appello ON esame_superato.data_esame = appello.data_appello
AND esame_superato.anno_accademico = appello.anno_accademico
AND esame_superato.codice_insegnamento = appello.codice_insegnamento)
LEFT JOIN
edizione_insegnamento ON edizione_insegnamento.anno_accademico = appello.anno_accademico
AND edizione_insegnamento.codice_insegnamento = appello.codice_insegnamento
)
WHERE studente.matricola_studente = studentID
GROUP BY studente.matricola_studente;
-- se non ha superato alcun esame, assegno 0 a tale conteggio
IF (CFU_esamiSuperati IS NULL) THEN
CFU_esamiSuperati := 0;
END IF;
-- verifica tipo seduta laurea
-- prelevo il tipo di laurea di tale studente
SELECT corso_laurea.tipo INTO tipoLaurea
FROM studente JOIN corso_laurea ON studente.codice_corso = corso_laurea.codice_corso
WHERE studente.matricola_studente = studentID;
-- verifica il tipo del corso di laurea al quale è iscritto lo studente e se può prenotarsi per un appello
-- di seduta di laurea del proprio corso
-- se la laurea di tale studente è triennale, la somma deve essere pari a 180
IF LOWER(tipoLaurea) = 'triennale' THEN
IF (CFU_esamiSuperati + CFU_tirocini + CFU_seminari + CFU_bandiErasmus) < 180 THEN
RAISE notEnough_CFU;
END IF;
-- se la laurea di tale studente è magistrale, la somma deve essere pari a 120
ELSIF LOWER(tipoLaurea) = 'magistrale' THEN
IF (CFU_esamiSuperati + CFU_tirocini + CFU_seminari + CFU_bandiErasmus) < 120 THEN
RAISE notEnough_CFU;
END IF;
END IF;
-- verifica pagamento di tutte le tasse:
-- non esistono tasse non pagate dallo studente
SELECT studente.matricola_studente INTO studentID_payment
FROM studente LEFT JOIN tassa ON studente.matricola_studente = tassa.matricola_studente
WHERE ( NOT EXISTS (
-- recupero le tasse non pagate
SELECT *
FROM tassa
WHERE tassa.matricola_studente = studentID AND
tassa.data_pagamento IS NULL
)
) AND studente.matricola_studente = studentID
GROUP BY studente.matricola_studente;
-- se vi sono tasse non pagate, tale studente non può prenotarsi
IF (studentID_payment IS NULL) THEN
RAISE unpaidTaxes;
END IF;
-- prelievo appello a cui tale studente vuole prenotarsi
SELECT appello_laurea.data_appello, appello_laurea.codice_corso, appello_laurea.inizio_iscrizioni, appello_laurea.fine_iscrizioni, appello_laurea.tipo, appello_laurea.max_iscrizioni INTO tuplaAppello
FROM appello_laurea
WHERE appello_laurea.codice_corso = :NEW.codice_corso
AND appello_laurea.data_appello =:NEW.data_appello;
-- verifico se la data di prenotazione è compresa tra l'inizio e la fine del periodo di iscrizione dell'appello
IF (tuplaAppello.inizio_iscrizioni > dataPrenotazione OR tuplaAppello.fine_iscrizioni < dataPrenotazione) THEN
RAISE invalidBookingDate;
END IF;
-- verifica posti
-- conto il numero di persone già prenotate a tale appello
SELECT NVL(cont, 0)
INTO nPostiPrenotati
FROM
((SELECT cont
FROM
(
-- recupero il numero di prenotazioni per tale appello
SELECT appello_laurea.data_appello, appello_laurea.codice_corso, COUNT(*) as cont
FROM appello_laurea JOIN prenotazione_appello_seduta
ON appello_laurea.codice_corso = prenotazione_appello_seduta.codice_corso
AND appello_laurea.data_appello = prenotazione_appello_seduta.data_appello
GROUP BY appello_laurea.data_appello, appello_laurea.codice_corso
HAVING appello_laurea.data_appello = tuplaAppello.data_appello
AND appello_laurea.codice_corso = tuplaAppello.codice_corso
))
UNION ALL SELECT 0 FROM DUAL
)
WHERE ROWNUM = 1;
-- verifico che ci siano posti disponibili per tale appello
IF (nPostiPrenotati >= tuplaAppello.max_iscrizioni) THEN
RAISE postiMancanti;
END IF;
EXCEPTION
WHEN notEnough_CFU THEN
raise_application_error(-20010, 'Non e'' possibile effettuare la prenotazione. Non hai raggiunto abbastanza CFU!');
WHEN NO_DATA_FOUND THEN
raise_application_error(-20011, 'Non e'' stato possibile completare l''operazione di prenotazione.');
WHEN invalidCourseID THEN
raise_application_error(-20012, 'Codice di Corso di Laurea non valido');
WHEN unpaidTaxes THEN
raise_application_error(-20013, 'Sono presenti delle tasse non pagate. Non puoi laurearti!');
WHEN invalidBookingDate THEN
raise_application_error(-20014, 'Data prenotazione non valida!');
WHEN postiMancanti THEN
raise_application_error(-20015, 'Posti Mancanti!');
END;
|
<reponame>georgidelchev/CSharp-Databases<gh_stars>10-100
CREATE TABLE People
(
Id INT IDENTITY(1, 1) PRIMARY KEY,
[Name] NVARCHAR(200) NOT NULL,
Picture VARBINARY(MAX),
Height DECIMAL(3,2),
[Weight] DECIMAL(5,2),
Gender CHAR(1) NOT NULL,
Birthdate DATE NOT NULL,
Biography NVARCHAR(MAX)
)
INSERT INTO People([Name], Picture, Height, [Weight], Gender, Birthdate, Biography)
VALUES ('Ivan', 2000, 1.80, 130.00, 'm', '1992-10-10', 'Just a boey.'),
('Dimitar', 1000, 1.90, 110.00, 'm', '1993-05-10', 'Just a boey.'),
('Siana', NULL, 1.76, 146.00, 'f', '1992-10-10', 'Just a girl.'),
('Nikol', 1550, 1.55, 145.00, 'f', '1999-11-07', 'Just a girl.'),
('Stavri', 1250, 1.76, 190.00, 'm', '1922-10-11', 'Just a boey.');
|
<gh_stars>1-10
CREATE TABLE guilds
(id BIGINT PRIMARY KEY, mod_roles BIGINT[], admin_roles BIGINT[],
ticket_category BIGINT, ticket_log_channel BIGINT, support_roles BIGINT[],
ticket_ban_role BIGINT, ticket_index INT, chain_break_role BIGINT,
private_commands BOOLEAN, force_slash BOOLEAN, incident_index INT DEFAULT 1,
mute_role BIGINT, mute_threshold INT DEFAULT 0, ban_threshold INT DEFAULT 0,
bad_words TEXT[] DEFAULT '{}', bad_words_warn_duration BIGINT DEFAULT 0,
townless_message BIGINT, townless_channel BIGINT, trivia_roles BIGINT[]);
CREATE TABLE users
(id BIGINT PRIMARY KEY, trusted BOOLEAN, dad_mode BOOLEAN, mc_uuid TEXT);
CREATE TABLE channels
(id BIGINT PRIMARY KEY, guild_id BIGINT, chain TEXT,
chain_length INTEGER, log_type TEXT, last_chain BIGINT,
chain_forever TEXT);
CREATE TABLE rules
(name TEXT, guild_id BIGINT, punishment TEXT, description TEXT);
CREATE TABLE incidents
(guild BIGINT, id INT, moderator BIGINT, users BIGINT[], comment TEXT, expires BIGINT, type_ INT, time_ BIGINT, active BOOLEAN, ref TEXT);
CREATE TABLE mutes
(guild BIGINT, member BIGINT, incidents JSON[] DEFAULT '{}', threshold_muted BOOLEAN DEFAULT FALSE, perm_incidents INT[] DEFAULT '{}', threshold_banned BOOLEAN DEFAULT FALSE);
ALTER TABLE mutes ADD CONSTRAINT mutes_pkey PRIMARY KEY (guild, member);
CREATE TABLE embeds
(id BIGINT PRIMARY KEY, guild BIGINT, colour INT);
CREATE TABLE trivia
(id BIGINT, guild BIGINT, member BIGINT, correct BOOLEAN, answer TEXT);
ALTER TABLE trivia ADD CONSTRAINT trivia_pkey PRIMARY KEY (id, member);
|
<filename>api/migrations/sqls/20160618074947-ping-down.sql
DROP TABLE dailyReportPing;
|
CREATE TABLE mv_comment_comment_tag AS (SELECT c_id, c_creationdate, c_locationip, c_browserused, c_content, c_length, c_creatorid, c_locationid, c_replyof_post, c_replyof_comment, mt_messageid, mt_tagid FROM comment JOIN comment_tag ON c_id=mt_messageid);
CREATE TABLE mv_comment_tag_tag AS (SELECT mt_messageid, mt_tagid, t_tagid, t_name, t_url, t_tagclassid FROM comment_tag JOIN tag ON mt_tagid=t_tagid);
CREATE TABLE mv_person_place AS (SELECT p_personid, p_firstname, p_lastname, p_gender, p_birthday, p_creationdate, p_locationip, p_browserused, p_placeid, pl_placeid, pl_name, pl_url, pl_type, pl_containerplaceid FROM person JOIN place ON p_placeid = pl_placeid);
CREATE TABLE mv_person_comment AS (SELECT p_personid, p_firstname, p_lastname, p_gender, p_birthday, p_creationdate, p_locationip, p_browserused, p_placeid, c_id, c_creationdate, c_locationip, c_browserused, c_content, c_length, c_creatorid, c_locationid, c_replyof_post, c_replyof_comment FROM person JOIN comment ON c_creatorid = p_personid);
CREATE TABLE mv_comment_place AS (SELECT c_id, c_creationdate, c_locationip, c_browserused, c_content, c_length, c_creatorid, c_locationid, c_replyof_post, c_replyof_comment, pl_placeid, pl_name, pl_url, pl_type, pl_containerplaceid FROM comment JOIN place ON c_locationid=pl_placeid);
CREATE TABLE mv_comment_comment AS (SELECT m1.c_id as m1_c_id, m1.c_creationdate as m1_c_creationdate, m1.c_locationip as m1_c_locationip, m1.c_browserused as m1_c_browserused, m1.c_content as m1_c_content, m1.c_length as m1_c_length, m1.c_creatorid as m1_c_creatorid, m1.c_locationid as m1_c_locationid, m1.c_replyof_post as m1_c_replyof_post, m1.c_replyof_comment as m1_c_replyof_comment, m2.c_id as m2_c_id, m2.c_creationdate as m2_c_creationdate, m2.c_locationip as m2_c_locationip, m2.c_browserused as m2_c_browserused, m2.c_content as m2_c_content, m2.c_length as m2_c_length, m2.c_creatorid as m2_c_creatorid, m2.c_locationid as m2_c_locationid, m2.c_replyof_post as m2_c_replyof_post, m2.c_replyof_comment as m2_c_replyof_comment FROM comment m1 JOIN comment m2 ON m2.c_replyof_comment = m1.c_id);
CREATE TABLE mv_comment_post AS (SELECT c_id, c_creationdate, c_locationip, c_browserused, c_content, c_length, c_creatorid, c_locationid, c_replyof_post, c_replyof_comment, ps_id, ps_imagefile, ps_creationdate, ps_locationip, ps_browserused, ps_language, ps_content, ps_length, ps_creatorid, ps_forumid, ps_locationid FROM comment JOIN post ON c_replyof_post = ps_id);
CREATE TABLE mv_person_post AS (SELECT ps_id, ps_imagefile, ps_creationdate, ps_locationip, ps_browserused, ps_language, ps_content, ps_length, ps_creatorid, ps_forumid, ps_locationid, p_personid, p_firstname, p_lastname, p_gender, p_birthday, p_creationdate, p_locationip, p_browserused, p_placeid FROM person JOIN post ON p_personid = ps_creatorid);
CREATE TABLE mv_post_place AS (SELECT ps_id, ps_imagefile, ps_creationdate, ps_locationip, ps_browserused, ps_language, ps_content, ps_length, ps_creatorid, ps_forumid, ps_locationid, pl_placeid, pl_name, pl_url, pl_type, pl_containerplaceid FROM post JOIN place ON ps_locationid=pl_placeid);
CREATE TABLE mv_post_forum AS (SELECT ps_id, ps_imagefile, ps_creationdate, ps_locationip, ps_browserused, ps_language, ps_content, ps_length, ps_creatorid, ps_forumid, ps_locationid, f_forumid, f_title, f_creationdate, f_moderatorid FROM post JOIN forum ON ps_forumid=f_forumid);
CREATE TABLE mv_organisation_place AS (SELECT o_organisationid, o_type, o_name, o_url, o_placeid, pl_placeid, pl_name, pl_url, pl_type, pl_containerplaceid FROM organisation JOIN place ON o_placeid=pl_placeid);
CREATE TABLE mv_person_forum AS (SELECT p_personid, p_firstname, p_lastname, p_gender, p_birthday, p_creationdate, p_locationip, p_browserused, p_placeid, f_forumid, f_title, f_creationdate, f_moderatorid FROM person JOIN forum ON f_moderatorid = p_personid);
CREATE TABLE mv_person_pc AS (SELECT pc_personid, pc_organisationid, pc_workfrom, p_personid, p_firstname, p_lastname, p_gender, p_birthday, p_creationdate, p_locationip, p_browserused, p_placeid FROM person JOIN person_company ON p_personid=pc_personid);
CREATE TABLE mv_pc_company AS (SELECT pc_personid, pc_organisationid, pc_workfrom, o_organisationid, o_type, o_name, o_url, o_placeid FROM person_company JOIN organisation ON pc_organisationid=o_organisationid);
CREATE TABLE mv_fp_person AS (SELECT p_personid, p_firstname, p_lastname, p_gender, p_birthday, p_creationdate, p_locationip, p_browserused, p_placeid, fp_forumid, fp_personid, fp_joindate FROM forum_person JOIN person ON fp_personid = p_personid);
CREATE TABLE mv_forum_fp AS (SELECT fp_forumid, fp_personid, fp_joindate, f_forumid, f_title, f_creationdate, f_moderatorid FROM forum JOIN forum_person ON f_forumid=fp_personid);
CREATE TABLE mv_post_pst AS (SELECT ps_id, ps_imagefile, ps_creationdate, ps_locationip, ps_browserused, ps_language, ps_content, ps_length, ps_creatorid, ps_forumid, ps_locationid, mt_messageid, mt_tagid FROM post_tag JOIN post ON ps_id = mt_messageid);
CREATE TABLE mv_pst_tag AS (SELECT mt_messageid, mt_tagid, t_tagid, t_name, t_url, t_tagclassid FROM post_tag JOIN tag ON mt_tagid=t_tagid);
CREATE TABLE mv_pt_tag AS (SELECT pt_personid, pt_tagid, t_tagid, t_name, t_url, t_tagclassid FROM person_tag JOIN tag ON pt_tagid=t_tagid);
CREATE TABLE mv_person_pt AS (SELECT pt_personid, pt_tagid, p_personid, p_firstname, p_lastname, p_gender, p_birthday, p_creationdate, p_locationip, p_browserused, p_placeid FROM person JOIN person_tag ON pt_personid=p_personid);
CREATE TABLE mv_forum_ft AS (SELECT ft_forumid, ft_tagid, f_forumid, f_title, f_creationdate, f_moderatorid FROM forum JOIN forum_tag ON ft_forumid=f_forumid);
CREATE TABLE mv_ft_tag AS (SELECT ft_forumid, ft_tagid, t_tagid, t_name, t_url, t_tagclassid FROM forum_tag JOIN tag ON ft_tagid=t_tagid);
CREATE TABLE mv_person_lc AS (SELECT l_personid, l_messageid, l_creationdate, p_personid, p_firstname, p_lastname, p_gender, p_birthday, p_creationdate, p_locationip, p_browserused, p_placeid FROM person JOIN likes_comment ON p_personid=l_personid);
CREATE TABLE mv_lc_comment AS (SELECT l_personid, l_messageid, l_creationdate, c_id, c_creationdate, c_locationip, c_browserused, c_content, c_length, c_creatorid, c_locationid, c_replyof_post, c_replyof_comment FROM likes_comment JOIN comment ON l_messageid=c_id);
CREATE TABLE mv_person_lp AS (SELECT l_personid, l_messageid, l_creationdate, p_personid, p_firstname, p_lastname, p_gender, p_birthday, p_creationdate, p_locationip, p_browserused, p_placeid FROM person JOIN likes_post ON p_personid=l_personid);
CREATE TABLE mv_lp_post AS (SELECT l_personid, l_messageid, l_creationdate, ps_id, ps_imagefile, ps_creationdate, ps_locationip, ps_browserused, ps_language, ps_content, ps_length, ps_creatorid, ps_forumid, ps_locationid FROM likes_post JOIN post ON l_messageid=ps_id);
CREATE TABLE mv_person_knows AS (SELECT p_personid, p_firstname, p_lastname, p_gender, p_birthday, p_creationdate, p_locationip, p_browserused, p_placeid, k_person1id, k_person2id, k_creationdate FROM person JOIN knows ON p_personid = k_person1id);
CREATE TABLE mv_knows_person AS (SELECT k_person1id, k_person2id, k_creationdate, p_personid, p_firstname, p_lastname, p_gender, p_birthday, p_creationdate, p_locationip, p_browserused, p_placeid FROM knows JOIN person ON k_person2id=p_personid);
CREATE TABLE mv_person_pu AS (SELECT pu_personid, pu_organisationid, pu_classyear, p_personid, p_firstname, p_lastname, p_gender, p_birthday, p_creationdate, p_locationip, p_browserused, p_placeid FROM person JOIN person_university ON p_personid=pu_personid);
CREATE TABLE mv_pu_university AS (SELECT pu_personid, pu_organisationid, pu_classyear, o_organisationid, o_type, o_name, o_url, o_placeid FROM person_university JOIN organisation ON pu_organisationid=o_organisationid); |
-- file:join.sql ln:675 expect:true
create index on tidv (idv)
|
-- /packages/acs-workflow/sql/postgresql/workflow-package-body.sql
-- create or replace package body workflow
-- function create_workflow
create or replace function workflow__create_workflow (varchar,varchar,varchar,varchar,varchar,varchar)
returns varchar as $$
declare
create_workflow__workflow_key alias for $1;
create_workflow__pretty_name alias for $2;
create_workflow__pretty_plural alias for $3; -- default null
create_workflow__description alias for $4; -- default null
create_workflow__table_name alias for $5;
create_workflow__id_column alias for $6; -- default 'case_id'
v_num_rows integer;
v_workflow_key varchar;
begin
select count(*) into v_num_rows from pg_class
where relname = lower(create_workflow__table_name);
if v_num_rows = 0 then
raise EXCEPTION '-20000: The table "%"must be created before calling workflow.create_workflow.', create_workflow__table_name;
end if;
if substr(create_workflow__workflow_key, length(create_workflow__workflow_key) - 2, 3) != '_wf' then
v_workflow_key := create_workflow__workflow_key || '_wf';
else
v_workflow_key := create_workflow__workflow_key;
end if;
PERFORM acs_object_type__create_type (
v_workflow_key,
create_workflow__pretty_name,
create_workflow__pretty_plural,
'workflow',
create_workflow__table_name,
create_workflow__id_column,
null,
'f',
null,
null
);
insert into wf_workflows (
workflow_key, description
) values (
v_workflow_key, create_workflow__description
);
return v_workflow_key;
end;$$ language 'plpgsql';
/* Note: The workflow-specific cases table must be dropped before calling this proc */
create or replace function workflow__drop_workflow (varchar)
returns integer as $$
declare
drop_workflow__workflow_key alias for $1;
v_table_name varchar;
v_num_rows integer;
attribute_rec record;
begin
select table_name into v_table_name from acs_object_types
where object_type = drop_workflow__workflow_key;
select case when count(*) = 0 then 0 else 1 end into v_num_rows from pg_class
where relname = lower(v_table_name);
if v_num_rows > 0 then
raise EXCEPTION '-20000: The table "%" must be dropped before calling workflow__drop_workflow.', v_table_name;
end if;
select case when count(*) = 0 then 0 else 1 end into v_num_rows from wf_cases
where workflow_key = drop_workflow__workflow_key;
if v_num_rows > 0 then
raise EXCEPTION '-20000: You must delete all cases of workflow "%" before dropping the workflow definition.', drop_workflow__workflow_key;
end if;
/* Delete all the auxillary stuff */
delete from wf_context_task_panels where workflow_key = drop_workflow__workflow_key;
delete from wf_context_assignments where workflow_key = drop_workflow__workflow_key;
delete from wf_context_role_info where workflow_key = drop_workflow__workflow_key;
delete from wf_context_transition_info where workflow_key = drop_workflow__workflow_key;
delete from wf_context_workflow_info where workflow_key = drop_workflow__workflow_key;
delete from wf_arcs where workflow_key = drop_workflow__workflow_key;
delete from wf_places where workflow_key = drop_workflow__workflow_key;
delete from wf_transition_role_assign_map where workflow_key = drop_workflow__workflow_key;
delete from wf_transitions where workflow_key = drop_workflow__workflow_key;
delete from wf_roles where workflow_key = drop_workflow__workflow_key;
/* Drop all attributes */
for attribute_rec in
select attribute_id, attribute_name
from acs_attributes
where object_type = drop_workflow__workflow_key
LOOP
/* there is no on delete cascade, so we have to manually
* delete all the values
*/
delete from acs_attribute_values where attribute_id = attribute_rec.attribute_id;
PERFORM workflow__drop_attribute (
drop_workflow__workflow_key,
attribute_rec.attribute_name
);
end loop;
/* Delete the workflow */
delete from wf_workflows where workflow_key = drop_workflow__workflow_key;
PERFORM acs_object_type__drop_type (
drop_workflow__workflow_key,
'f'
);
return 0;
end;$$ language 'plpgsql';
-- procedure delete_cases
create or replace function workflow__delete_cases (varchar)
returns integer as $$
declare
delete_cases__workflow_key alias for $1;
case_rec record;
begin
for case_rec in
select case_id
from wf_cases
where workflow_key = delete_cases__workflow_key
LOOP
PERFORM workflow_case__delete(case_rec.case_id);
end loop;
return 0;
end;$$ language 'plpgsql';
-- function create_attribute
create or replace function workflow__create_attribute (varchar,varchar,varchar,varchar,varchar,varchar,varchar,varchar,integer,integer,integer,varchar)
returns integer as $$
declare
create_attribute__workflow_key alias for $1;
create_attribute__attribute_name alias for $2;
create_attribute__datatype alias for $3;
create_attribute__pretty_name alias for $4;
create_attribute__pretty_plural alias for $5; -- default null
create_attribute__table_name alias for $6; -- default null
create_attribute__column_name alias for $7; -- default null
create_attribute__default_value alias for $8; -- default null
create_attribute__min_n_values alias for $9; -- default 1
create_attribute__max_n_values alias for $10; -- default 1
create_attribute__sort_order alias for $11; -- default null
create_attribute__storage alias for $12; -- default 'generic'
v_attribute_id integer;
begin
v_attribute_id := acs_attribute__create_attribute(
create_attribute__workflow_key,
create_attribute__attribute_name,
create_attribute__datatype,
create_attribute__pretty_name,
create_attribute__pretty_plural,
create_attribute__table_name,
create_attribute__column_name,
create_attribute__default_value,
create_attribute__min_n_values,
create_attribute__max_n_values,
create_attribute__sort_order,
create_attribute__storage,
'f'
);
return v_attribute_id;
end;$$ language 'plpgsql';
-- procedure drop_attribute
create or replace function workflow__drop_attribute (varchar,varchar)
returns integer as $$
declare
drop_attribute__workflow_key alias for $1;
drop_attribute__attribute_name alias for $2;
v_attribute_id integer;
begin
select attribute_id into v_attribute_id
from acs_attributes
where object_type = drop_attribute__workflow_key
and attribute_name = drop_attribute__attribute_name;
PERFORM acs_attribute__drop_attribute (
drop_attribute__workflow_key,
drop_attribute__attribute_name
);
return 0;
end;$$ language 'plpgsql';
-- procedure add_place
create or replace function workflow__add_place (varchar,varchar,varchar,integer)
returns integer as $$
declare
add_place__workflow_key alias for $1;
add_place__place_key alias for $2;
add_place__place_name alias for $3;
add_place__sort_order alias for $4;
v_sort_order integer;
begin
if add_place__sort_order is null then
select coalesce(max(sort_order)+1, 1)
into v_sort_order
from wf_places
where workflow_key = add_place__workflow_key;
else
v_sort_order := add_place__sort_order;
end if;
insert into wf_places (workflow_key, place_key, place_name, sort_order)
values (add_place__workflow_key, add_place__place_key,add_place__place_name, add_place__sort_order);
return 0;
end;$$ language 'plpgsql';
-- procedure delete_place
create or replace function workflow__delete_place (varchar,varchar)
returns integer as $$
declare
delete_place__workflow_key alias for $1;
delete_place__place_key alias for $2;
begin
delete from wf_places
where workflow_key = delete_place__workflow_key
and place_key = delete_place__place_key;
return 0;
end;$$ language 'plpgsql';
-- procedure add_role
create or replace function workflow__add_role (varchar,varchar,varchar,integer)
returns integer as $$
declare
add_role__workflow_key alias for $1;
add_role__role_key alias for $2;
add_role__role_name alias for $3;
add_role__sort_order alias for $4;
v_sort_order integer;
begin
if add_role__sort_order is null then
select coalesce(max(sort_order)+1, 1)
into v_sort_order
from wf_roles
where workflow_key = add_role__workflow_key;
else
v_sort_order := add_role__sort_order;
end if;
insert into wf_roles (
workflow_key, role_key, role_name, sort_order
) values (
add_role__workflow_key, add_role__role_key, add_role__role_name, v_sort_order
);
return 0;
end;$$ language 'plpgsql';
-- procedure move_role_up
create or replace function workflow__move_role_up (varchar,varchar)
returns integer as $$
declare
move_role_up__workflow_key alias for $1;
move_role_up__role_key alias for $2;
v_this_sort_order integer;
v_prior_sort_order integer;
begin
select sort_order into v_this_sort_order
from wf_roles
where workflow_key = move_role_up__workflow_key
and role_key = move_role_up__role_key;
select max(sort_order) into v_prior_sort_order
from wf_roles
where workflow_key = move_role_up__workflow_key
and sort_order < v_this_sort_order;
if not found then
/* already at top of sort order */
return 0;
end if;
/* switch the sort orders around */
update wf_roles
set sort_order = (case when role_key=move_role_up__role_key then v_prior_sort_order else v_this_sort_order end)
where workflow_key = move_role_up__workflow_key
and sort_order in (v_this_sort_order, v_prior_sort_order);
return 0;
end;$$ language 'plpgsql';
-- procedure move_role_down
create or replace function workflow__move_role_down (varchar,varchar)
returns integer as $$
declare
move_role_down__workflow_key alias for $1;
move_role_down__role_key alias for $2;
v_this_sort_order integer;
v_next_sort_order integer;
begin
select sort_order
into v_this_sort_order
from wf_roles
where workflow_key = move_role_down__workflow_key
and role_key = move_role_down__role_key;
select min(sort_order)
into v_next_sort_order
from wf_roles
where workflow_key = move_role_down__workflow_key
and sort_order > v_this_sort_order;
if not found then
/* already at bottom of sort order */
return 0;
end if;
/* switch the sort orders around */
update wf_roles
set sort_order = (case when role_key=move_role_down__role_key then v_next_sort_order else v_this_sort_order end)
where workflow_key = move_role_down__workflow_key
and sort_order in (v_this_sort_order, v_next_sort_order);
return 0;
end;$$ language 'plpgsql';
-- procedure delete_role
create or replace function workflow__delete_role (varchar,varchar)
returns integer as $$
declare
delete_role__workflow_key alias for $1;
delete_role__role_key alias for $2;
begin
/* First, remove all references to this role from transitions */
update wf_transitions
set role_key = null
where workflow_key = delete_role__workflow_key
and role_key = delete_role__role_key;
delete from wf_roles
where workflow_key = delete_role__workflow_key
and role_key = delete_role__role_key;
return 0;
end;$$ language 'plpgsql';
-- procedure add_transition
create or replace function workflow__add_transition (varchar,varchar,varchar,varchar,integer,varchar)
returns integer as $$
declare
add_transition__workflow_key alias for $1;
add_transition__transition_key alias for $2;
add_transition__transition_name alias for $3;
add_transition__role_key alias for $4;
add_transition__sort_order alias for $5;
add_transition__trigger_type alias for $6; -- default 'user'
v_sort_order integer;
begin
if add_transition__sort_order is null then
select coalesce(max(sort_order)+1, 1)
into v_sort_order
from wf_transitions
where workflow_key = add_transition__workflow_key;
else
v_sort_order := add_transition__sort_order;
end if;
insert into wf_transitions (
workflow_key,
transition_key,
transition_name,
role_key,
sort_order,
trigger_type
) values (
add_transition__workflow_key,
add_transition__transition_key,
add_transition__transition_name,
add_transition__role_key,
v_sort_order,
add_transition__trigger_type
);
return 0;
end;$$ language 'plpgsql';
-- procedure delete_transition
create or replace function workflow__delete_transition (varchar,varchar)
returns integer as $$
declare
delete_transition__workflow_key alias for $1;
delete_transition__transition_key alias for $2;
begin
delete from wf_transitions
where workflow_key = delete_transition__workflow_key
and transition_key = delete_transition__transition_key;
return 0;
end;$$ language 'plpgsql';
-- procedure add_arc
create or replace function workflow__add_arc (varchar,varchar,varchar,varchar,varchar,varchar,varchar)
returns integer as $$
declare
add_arc__workflow_key alias for $1;
add_arc__transition_key alias for $2;
add_arc__place_key alias for $3;
add_arc__direction alias for $4;
add_arc__guard_callback alias for $5; -- default null
add_arc__guard_custom_arg alias for $6; -- default null
add_arc__guard_description alias for $7; -- default null
begin
insert into wf_arcs (workflow_key, transition_key, place_key, direction,
guard_callback, guard_custom_arg, guard_description)
values (add_arc__workflow_key, add_arc__transition_key, add_arc__place_key, add_arc__direction,
add_arc__guard_callback, add_arc__guard_custom_arg, add_arc__guard_description);
return 0;
end;$$ language 'plpgsql';
-- procedure add_arc
create or replace function workflow__add_arc (varchar,varchar,varchar,varchar,varchar,varchar)
returns integer as $$
declare
add_arc__workflow_key alias for $1;
add_arc__from_transition_key alias for $2;
add_arc__to_place_key alias for $3;
add_arc__guard_callback alias for $4;
add_arc__guard_custom_arg alias for $5;
add_arc__guard_description alias for $6;
begin
perform workflow__add_arc (
add_arc__workflow_key,
add_arc__from_transition_key,
add_arc__to_place_key,
'out',
add_arc__guard_callback,
add_arc__guard_custom_arg,
add_arc__guard_description
);
return 0;
end;$$ language 'plpgsql';
-- procedure add_arc
create or replace function workflow__add_arc (varchar,varchar,varchar)
returns integer as $$
declare
add_arc__workflow_key alias for $1;
add_arc__from_place_key alias for $2;
add_arc__to_transition_key alias for $3;
begin
perform workflow__add_arc(
add_arc__workflow_key,
add_arc__to_transition_key,
add_arc__from_place_key,
'in',
null,
null,
null
);
return 0;
end;$$ language 'plpgsql';
-- procedure delete_arc
create or replace function workflow__delete_arc (varchar,varchar,varchar,varchar)
returns integer as $$
declare
delete_arc__workflow_key alias for $1;
delete_arc__transition_key alias for $2;
delete_arc__place_key alias for $3;
delete_arc__direction alias for $4;
begin
delete from wf_arcs
where workflow_key = delete_arc__workflow_key
and transition_key = delete_arc__transition_key
and place_key = delete_arc__place_key
and direction = delete_arc__direction;
return 0;
end;$$ language 'plpgsql';
-- procedure add_trans_attribute_map
create or replace function workflow__add_trans_attribute_map (varchar,varchar,integer,integer)
returns integer as $$
declare
p_workflow_key alias for $1;
p_transition_key alias for $2;
p_attribute_id alias for $3;
p_sort_order alias for $4;
v_num_rows integer;
v_sort_order integer;
begin
select count(*)
into v_num_rows
from wf_transition_attribute_map
where workflow_key = p_workflow_key
and transition_key = p_transition_key
and attribute_id = p_attribute_id;
if v_num_rows > 0 then
return 0;
end if;
if p_sort_order is null then
select coalesce(max(sort_order)+1, 1)
into v_sort_order
from wf_transition_attribute_map
where workflow_key = p_workflow_key
and transition_key = p_transition_key;
else
v_sort_order := p_sort_order;
end if;
insert into wf_transition_attribute_map (
workflow_key,
transition_key,
attribute_id,
sort_order
) values (
p_workflow_key,
p_transition_key,
p_attribute_id,
v_sort_order
);
return 0;
end;$$ language 'plpgsql';
-- procedure add_trans_attribute_map
create or replace function workflow__add_trans_attribute_map (varchar,varchar,varchar,integer)
returns integer as $$
declare
p_workflow_key alias for $1;
p_transition_key alias for $2;
p_attribute_name alias for $3;
p_sort_order alias for $4;
v_attribute_id integer;
begin
select attribute_id
into v_attribute_id
from acs_attributes
where object_type = p_workflow_key
and attribute_name = p_attribute_name;
perform workflow__add_trans_attribute_map (
p_workflow_key,
p_transition_key,
v_attribute_id,
p_sort_order
);
return 0;
end;$$ language 'plpgsql';
-- procedure delete_trans_attribute_map
create or replace function workflow__delete_trans_attribute_map (varchar,varchar,integer)
returns integer as $$
declare
p_workflow_key alias for $1;
p_transition_key alias for $2;
p_attribute_id alias for $3;
begin
delete
from wf_transition_attribute_map
where workflow_key = p_workflow_key
and transition_key = p_transition_key
and attribute_id = p_attribute_id;
return 0;
end;$$ language 'plpgsql';
-- procedure delete_trans_attribute_map
create or replace function workflow__delete_trans_attribute_map (varchar,varchar,varchar)
returns integer as $$
declare
p_workflow_key alias for $1;
p_transition_key alias for $2;
p_attribute_name alias for $3;
v_attribute_id integer;
begin
select attribute_id
into v_attribute_id
from acs_attributes
where object_type = p_workflow_key
and attribute_name = p_attribute_name;
delete from wf_transition_attribute_map
where workflow_key = p_workflow_key
and transition_key = p_transition_key
and attribute_id = v_attribute_id;
return 0;
end;$$ language 'plpgsql';
-- procedure add_trans_role_assign_map
create or replace function workflow__add_trans_role_assign_map (varchar,varchar,varchar)
returns integer as $$
declare
p_workflow_key alias for $1;
p_transition_key alias for $2;
p_assign_role_key alias for $3;
v_num_rows integer;
begin
select count(*)
into v_num_rows
from wf_transition_role_assign_map
where workflow_key = p_workflow_key
and transition_key = p_transition_key
and assign_role_key = p_assign_role_key;
if v_num_rows = 0 then
insert into wf_transition_role_assign_map (
workflow_key,
transition_key,
assign_role_key
) values (
p_workflow_key,
p_transition_key,
p_assign_role_key
);
end if;
return 0;
end;$$ language 'plpgsql';
-- procedure delete_trans_role_assign_map
create or replace function workflow__delete_trans_role_assign_map (varchar,varchar,varchar)
returns integer as $$
declare
p_workflow_key alias for $1;
p_transition_key alias for $2;
p_assign_role_key alias for $3;
begin
delete from wf_transition_role_assign_map
where workflow_key = p_workflow_key
and transition_key = p_transition_key
and assign_role_key = p_assign_role_key;
return 0;
end;$$ language 'plpgsql';
create sequence workflow_session_id;
create table previous_place_list (
session_id integer,
rcnt integer,
constraint previous_place_list_pk
primary key (session_id, rcnt),
ky varchar(100)
);
create table target_place_list (
session_id integer,
rcnt integer,
constraint target_place_list_pk
primary key (session_id, rcnt),
ky varchar(100)
);
create table guard_list (
session_id integer,
rcnt integer,
constraint quard_list_pk
primary key (session_id, rcnt),
ky varchar(100)
);
create or replace function workflow__simple_p (varchar)
returns boolean as $$
declare
simple_p__workflow_key alias for $1;
v_session_id integer;
retval boolean;
begin
v_session_id := nextval('workflow_session_id');
retval := __workflow__simple_p(simple_p__workflow_key, v_session_id);
delete from previous_place_list where session_id = v_session_id;
delete from target_place_list where session_id = v_session_id;
delete from guard_list where session_id = v_session_id;
return retval;
end;$$ language 'plpgsql';
-- function simple_p
create or replace function __workflow__simple_p (varchar,integer)
returns boolean as $$
declare
simple_p__workflow_key alias for $1;
v_session_id alias for $2;
-- previous_place_list t_place_table;
-- target_place_list t_place_table;
-- guard_list t_guard_table;
guard_list_1 varchar;
guard_list_2 varchar;
target_place_list_1 varchar;
target_place_list_2 varchar;
previous_place_list_i varchar;
v_row_count integer default 0;
v_count integer;
v_count2 integer;
v_place_key wf_places.place_key%TYPE;
v_end_place wf_places.place_key%TYPE;
v_transition_key wf_transitions.transition_key%TYPE;
v_rownum integer;
v_target record;
begin
/* Let us do some simple checks first */
/* Places with more than one arc out */
select count(*) into v_count
from wf_places p
where p.workflow_key = simple_p__workflow_key
and 1 < (select count(*)
from wf_arcs a
where a.workflow_key = p.workflow_key
and a.place_key = p.place_key
and direction = 'in');
raise notice 'query 1';
if v_count > 0 then
return 'f';
end if;
/* Transitions with more than one arc in */
select count(*) into v_count
from wf_transitions t
where t.workflow_key = simple_p__workflow_key
and 1 < (select count(*)
from wf_arcs a
where a.workflow_key = t.workflow_key
and a.transition_key = t.transition_key
and direction = 'in');
raise notice 'query 2';
if v_count > 0 then
return 'f';
end if;
/* Transitions with more than two arcs out */
select count(*) into v_count
from wf_transitions t
where t.workflow_key = simple_p__workflow_key
and 2 < (select count(*)
from wf_arcs a
where a.workflow_key = t.workflow_key
and a.transition_key = t.transition_key
and direction = 'out');
raise notice 'query 3';
if v_count > 0 then
return 'f';
end if;
/* Now we do the more complicated checks.
* We keep a list of visited places because I could not think
* of a nicer way that was not susceptable to infinite loops.
*/
v_place_key := 'start';
v_end_place := 'end';
loop
exit when v_place_key = v_end_place;
-- previous_place_list(v_row_count) := v_place_key;
insert into previous_place_list
(session_id,rcnt,ky)
values
(v_session_id,v_row_count,v_place_key);
raise notice 'query 4';
select distinct transition_key into v_transition_key
from wf_arcs
where workflow_key = simple_p__workflow_key
and place_key = v_place_key
and direction = 'in';
raise notice 'query 5';
select count(*) into v_count
from wf_arcs
where workflow_key = simple_p__workflow_key
and transition_key = v_transition_key
and direction = 'out';
raise notice 'query 6';
if v_count = 1 then
select distinct place_key into v_place_key
from wf_arcs
where workflow_key = simple_p__workflow_key
and transition_key = v_transition_key
and direction = 'out';
raise notice 'query 7';
else if v_count = 0 then
/* deadend! */
return 'f';
else
/* better be two based on our earlier test */
v_rownum := 1;
for v_target in
select place_key,guard_callback
from wf_arcs
where workflow_key = simple_p__workflow_key
and transition_key = v_transition_key
and direction = 'out'
LOOP
-- target_place_list(v_target.rownum) := v_target.place_key;
raise notice 'query 8';
insert into target_place_list (session_id,rcnt,ky)
values (v_session_id,v_rownum,v_target.place_key);
raise notice 'query 9';
-- guard_list(v_target.rownum) := v_target.guard_callback;
insert into guard_list (session_id,rcnt,ky)
values (v_session_id,v_rownum,v_target.guard_callback);
v_rownum := v_rownum + 1;
raise notice 'query 10';
end loop;
/* Check that the guard functions are the negation of each other
* by looking for the magic entry "#" (exactly once)
*/
select ky into guard_list_1 from guard_list
where session_id = v_session_id and rcnt = 1;
raise notice 'query 11';
select ky into guard_list_2 from guard_list
where session_id = v_session_id and rcnt = 2;
raise notice 'query 12';
if ((guard_list_1 != '#' and guard_list_2 != '#') or
(guard_list_1 = '#' and guard_list_2 = '#')) then
return 'f';
end if;
/* Check that exactly one of the targets is in the previous list */
v_count2 := 0;
select ky into target_place_list_1 from target_place_list
where session_id = v_session_id and rcnt = 1;
raise notice 'query 13';
select ky into target_place_list_2 from target_place_list
where session_id = v_session_id and rcnt = 2;
raise notice 'query 14';
for i in 0..v_row_count LOOP
select ky into previous_place_list_i
from previous_place_list where session_id = v_session_id
and rcnt = i;
if target_place_list_1 = previous_place_list_i then
v_count2 := v_count2 + 1;
v_place_key := target_place_list_2;
end if;
if target_place_list_2 = previous_place_list_i then
v_count2 := v_count2 + 1;
v_place_key := target_place_list_1;
end if;
end loop;
raise notice 'query 15';
if v_count2 != 1 then
return 'f';
end if;
end if; end if;
v_row_count := v_row_count + 1;
end loop;
/* if we got here, it must be okay */
return 't';
end;$$ language 'plpgsql';
|
<filename>inst/sql/sql_server/analyses/118.sql
-- 118 Number of observation period records with invalid person_id
select 118 as analysis_id,
cast(null as varchar(255)) as stratum_1, cast(null as varchar(255)) as stratum_2, cast(null as varchar(255)) as stratum_3, cast(null as varchar(255)) as stratum_4, cast(null as varchar(255)) as stratum_5,
COUNT_BIG(op1.PERSON_ID) as count_value
into @scratchDatabaseSchema@schemaDelim@tempAchillesPrefix_118
from
@cdmDatabaseSchema.observation_period op1
left join @cdmDatabaseSchema.person p1
on p1.person_id = op1.person_id
where p1.person_id is null
;
|
call p_insertStudents("William", "Dice",
"779 Lebanon Rd.", "Frisco", "TX", "75034",
"william.dice", "williamdice"); |
<filename>conf/evolutions/default/8.sql
# ---
# --- !Ups
CREATE INDEX ix_store_user_email ON store_user (email);
# --- !Downs
|
<reponame>bcodell/thesis-dbt<filename>macros/utils/timestamp_utils.sql
{# Copied from dbt-utils v0.8.0 with some minor formatting changes #}
{%- macro type_timestamp() -%}
{{ return(adapter.dispatch('type_timestamp', 'thesis_dbt')()) }}
{%- endmacro -%}
{%- macro default__type_timestamp() -%}
timestamp
{%- endmacro -%}
{%- macro snowflake__type_timestamp() -%}
timestamp_ntz
{%- endmacro -%}
{%- macro current_timestamp() -%}
{{ return(adapter.dispatch('current_timestamp', 'thesis_dbt')()) }}
{%- endmacro -%}
{%- macro default__current_timestamp() -%}
current_timestamp::{{thesis_dbt.type_timestamp()}}
{%- endmacro -%}
{%- macro redshift__current_timestamp() -%}
getdate()
{%- endmacro -%}
{%- macro bigquery__current_timestamp() -%}
current_timestamp
{%- endmacro -%}
{%- macro early_timestamp() -%}
{{ return(adapter.dispatch('early_timestamp', 'thesis_dbt')()) }}
{%- endmacro -%}
{%- macro default__early_timestamp() -%}
cast('100-01-01' as {{thesis_dbt.type_timestamp()}})
{%- endmacro -%}
|
<filename>vpc/service/db/migrations/39_gc_tombstone.up.sql
alter table assignments
add gc_tombstone timestamp;
|
-- УВЕДОМЛЕНИЯ --
INSERT INTO cld.notifications_log (uuid, dt_update, payload) VALUES
('46da5a45-8bfe-4418-a583-c5b2c48122d5', CURRENT_TIMESTAMP(2),
'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.');
INSERT INTO cld.notifications_log (uuid, dt_update, payload) VALUES
('d3782406-7098-4f55-89e4-aad10fcce18d', CURRENT_TIMESTAMP(2),
'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.');
INSERT INTO cld.notifications_log (uuid, dt_update, payload) VALUES
('e1d2c315-9a83-41aa-bb01-932b8ee21121', CURRENT_TIMESTAMP(2),
'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.');
INSERT INTO cld.notifications_log (uuid, dt_update, payload) VALUES
('2d9a3b23-3df4-41ea-b513-1b99b9a5236e', CURRENT_TIMESTAMP(2),
'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.');
INSERT INTO cld.notifications_log (uuid, dt_update, payload) VALUES
('55da6eaa-5f44-4f4a-a824-ba219aa2674a', CURRENT_TIMESTAMP(2),
'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.');
INSERT INTO cld.notifications_log (uuid, dt_update, payload) VALUES
('f370a3d8-7959-49f0-895e-5797d275c5be', CURRENT_TIMESTAMP(2),
'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.!');
INSERT INTO cld.notifications_log (uuid, dt_update, payload) VALUES
('922f85b5-034c-42c9-8893-c3194b089fca', CURRENT_TIMESTAMP(2),
'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.');
-- УПРАВЛЯЮЩИЕ --
INSERT INTO cld.rulers (uuid, dt_update, last_name, first_name, middle_name, payload) VALUES
('9b405c7a-be79-4c7b-9314-dfdbe0177d83', CURRENT_TIMESTAMP(2), 'Пчёлкин', 'Михаил', 'Константинович',
'8 (925) 249-85-22; Дата рождения - 27 апреля 1987 года');
INSERT INTO cld.rulers (uuid, dt_update, last_name, first_name, middle_name, payload) VALUES
('c767cbff-06be-4c7a-807d-7bcf4632337d', CURRENT_TIMESTAMP(2), 'Морозова', 'Станислава', 'Олеговна',
'8 (958) 944-75-92; Дата рождения - 13 ноября 1968 года; Любимый цвет - Зелёный');
INSERT INTO cld.rulers (uuid, dt_update, last_name, first_name, middle_name, payload) VALUES
('60833b32-b75a-44ce-8a59-918e29aadf8f', CURRENT_TIMESTAMP(2), 'Егорова', 'Наталья', 'Яковлевна',
'8 (963) 436-90-25; Дата рождения - 18 марта 1965 года; Любимый цвет - Жёлтый');
-- ОРГАНИЗАЦИИ --
INSERT INTO cld.organisations (uuid, dt_update, title, address, telephone, contacts) VALUES
('808493b6-4745-46a0-bad9-521e71c12c68', CURRENT_TIMESTAMP(2), 'Рога и Копыта', 'ул. Великих Предпринимателей 27к1',
'8 (034) 455-55-55', 'email: <EMAIL>');
INSERT INTO cld.organisations (uuid, dt_update, title, address, telephone, contacts) VALUES
('57408e4b-6b52-42d6-9022-1ea9618714c7', CURRENT_TIMESTAMP(2), 'KPAN', 'ул. Программистов 14',
'8 (034) 666-66-66', 'email: <EMAIL>');
-- ГРУППЫ --
INSERT INTO cld.groups (uuid, dt_update, title, specialization, qualification, description, number, hours, ruler_id, issue_year, issue_month, stage)
VALUES
('1d5caa06-6fe9-46b7-92a3-6360ba867ac8', CURRENT_TIMESTAMP(2), 'Техники-сантехники', 'Экономическая деятельность',
'Технология разработки сантехнического обеспечения',
'Техники сантехники. Такая группа когда то была.', '143ТС', 120,
1, 2019, 9, 'FIRST');
INSERT INTO cld.groups (uuid, dt_update, title, specialization, qualification, description, number, hours, ruler_id, issue_year, issue_month, stage)
VALUES
('1655a2ad-e7b8-47a0-a17a-949dd1627493', CURRENT_TIMESTAMP(2), 'Мехатроники', 'Изобретение приборов',
'Технология разработки изобретения механизмов',
'Техники приборостроители. Такая группа когда то была.', '101ИП',
333, 2, 2019, 9, 'FIRST');
INSERT INTO cld.groups (uuid, dt_update, title, specialization, qualification, description, number, hours, ruler_id, issue_year, issue_month, stage)
VALUES
('f9da9b76-6ed1-4199-ad3b-eefedaaf8f84', CURRENT_TIMESTAMP(2), 'Космонавты', 'Полеты на марс',
'Технология прибытия в иные миры',
'Техники исследовтели. Такая группа когда то была.', '007МИ',
10000, 3, 2019, 9, 'SECOND');
-- ПРИКАЗЫ --
INSERT INTO cld.orders (uuid, dt_update, profession, starts, number, payload) VALUES
('f1ce86ae-89db-4cb9-b96e-8c7cab4c3317', CURRENT_TIMESTAMP(2), 'Инженер программист', CURRENT_TIMESTAMP(2),
'2223345hg', 'Принятие на работу');
-- ВЫПУСКНИКИ --
INSERT INTO cld.students (uuid, dt_update, last_name, middle_name, first_name, telephone, address, group_id) VALUES
('29a57449-a0f9-46ba-b903-357267b360fc', CURRENT_TIMESTAMP(2), 'Арсеньев', 'Ферапонт', 'Денисович',
'8 (936) 628-63-32',
'187341, г. Пограничный, ул. Вагонников 3-я, дом 63, квартира 283', 1);
INSERT INTO cld.students (uuid, dt_update, last_name, middle_name, first_name, telephone, address, group_id) VALUES
('57349ae5-5bc2-4fb6-8082-a37c5f8f044a', CURRENT_TIMESTAMP(2), 'Вихирева', 'Лилия', 'Викторовна',
'8 (906) 584-32-68',
'197762, г. Павловск, ул. Герцена, дом 21, квартира 234', 2);
INSERT INTO cld.students (uuid, dt_update, last_name, middle_name, first_name, telephone, address, group_id) VALUES
('7af5a85f-8512-4fcc-9355-532a78a3935d', CURRENT_TIMESTAMP(2), 'Андронова', 'Лариса', 'Владиславовна',
'8 (935) 273-13-22',
'150515, г. Грязи, ул. Академическая, дом 55, квартира 53', 1);
INSERT INTO cld.students (uuid, dt_update, last_name, middle_name, first_name, telephone, address, group_id) VALUES
('53cef394-6484-48e5-93f4-4e53a54ab9ab', CURRENT_TIMESTAMP(2), 'Сидоров', 'Боголюб', 'Вениаминович',
'8 (920) 503-61-20',
'393388, г. Нехаевский, ул. <NAME>, дом 25, квартира 46', 1);
INSERT INTO cld.students (uuid, dt_update, last_name, middle_name, first_name, telephone, address, group_id) VALUES
('b1f9964f-4b6b-4e7c-b80b-a173ae592e5a', CURRENT_TIMESTAMP(2), 'Фролов', 'Исай', 'Сергеевич',
'8 (965) 907-49-55',
'368262, г. Плюсса, ул. Барклая, дом 71, квартира 190', 3);
-- РАСПРЕДЕЛЕНИЕ --
INSERT INTO cld.allocation (uuid, dt_update, organisation_id, student_id, order_id, confirmations)
VALUES ('7ee16dd5-5b51-42a8-994b-b3da13b7f9f6', current_timestamp(2), 1, 1, 1,
ARRAY ['', '', '', '', '', '', '', '', '', '']);
INSERT INTO cld.allocation (uuid, dt_update, organisation_id, student_id, order_id, confirmations)
VALUES ('6ca78147-1a30-497c-8d15-6fd0d35e1137', current_timestamp(2), 1, 2, 1,
ARRAY ['Работает', '', '', '', '', '', '', '', '', '']);
INSERT INTO cld.allocation (uuid, dt_update, organisation_id, student_id, order_id, confirmations, archive)
VALUES ('e22dbe92-0169-4bc2-86dc-9c76590b21e3', current_timestamp(2), 2, 3, 1,
ARRAY ['Работает', 'Работает', 'Работает', 'Работает', 'Работает', 'Работает', 'Работает', 'Работает', 'Работает', 'Работает'],
TRUE);
INSERT INTO cld.allocation (uuid, dt_update, organisation_id, student_id, order_id, confirmations)
VALUES ('50d22dec-4d7f-43d9-84d2-c0bd15b29981', current_timestamp(2), 2, 5, 1,
ARRAY ['', '', '', '', '', '', '', '', '', '']); |
-- Put upgrade SQL here
ALTER TABLE cloud_code_route ALTER COLUMN backend_url DROP DEFAULT;
|
<filename>packages/app/migrations/1610646236116_alter_table_public_module_version_drop_column_author_email/down.sql<gh_stars>1000+
ALTER TABLE "public"."module_version" ADD COLUMN "author_email" text;
ALTER TABLE "public"."module_version" ALTER COLUMN "author_email" DROP NOT NULL;
|
\o xml_explain_temp.txt
set explain_perf_mode=pretty;
explain performance
SELECT Party_Id, Zone_Num, Asset_Max_Belong_Org_Num FROM(SELECT
T1.Party_Id
,T1.Zone_Num
,T1.Asset_Max_Belong_Org_Num
,ROW_NUMBER() OVER(PARTITION BY T1.Party_Id) AS QUA_ROW_NUM_1
FROM TMP_CUST_ASSET_SUM_1 T1 group by 1,2,3
)AA WHERE QUA_ROW_NUM_1 <= 1
;
explain analyze
SELECT Party_Id, Zone_Num, Asset_Max_Belong_Org_Num FROM(SELECT
T1.Party_Id
,T1.Zone_Num
,T1.Asset_Max_Belong_Org_Num
,ROW_NUMBER() OVER(PARTITION BY T1.Party_Id) AS QUA_ROW_NUM_1
FROM TMP_CUST_ASSET_SUM_1 T1 group by 1,2,3
)AA WHERE QUA_ROW_NUM_1 <= 1
;
reset explain_perf_mode;
explain (analyze on, detail on, costs off, format xml)
SELECT Party_Id, Zone_Num, Asset_Max_Belong_Org_Num FROM(SELECT
T1.Party_Id
,T1.Zone_Num
,T1.Asset_Max_Belong_Org_Num
,ROW_NUMBER() OVER(PARTITION BY T1.Party_Id) AS QUA_ROW_NUM_1
FROM TMP_CUST_ASSET_SUM_1 T1 group by 1,2,3
)AA WHERE QUA_ROW_NUM_1 <= 1
;
\o
\! rm xml_explain_temp.txt
explain (analyze on, costs off)
SELECT Party_Id, Zone_Num, Asset_Max_Belong_Org_Num FROM(SELECT
T1.Party_Id
,T1.Zone_Num
,T1.Asset_Max_Belong_Org_Num
,ROW_NUMBER() OVER(PARTITION BY T1.Party_Id) AS QUA_ROW_NUM_1
FROM TMP_CUST_ASSET_SUM_1 T1 group by 1,2,3
)AA WHERE QUA_ROW_NUM_1 <= 1
;
SELECT Party_Id, Zone_Num, Asset_Max_Belong_Org_Num FROM(SELECT
T1.Party_Id
,T1.Zone_Num
,T1.Asset_Max_Belong_Org_Num
,ROW_NUMBER() OVER(PARTITION BY T1.Party_Id) AS QUA_ROW_NUM_1
FROM TMP_CUST_ASSET_SUM_1 T1 group by 1,2,3
)AA WHERE QUA_ROW_NUM_1 <= 1 limit 1
;
set enable_compress_spill = off;
\o xml_explain_temp.txt
SELECT Party_Id, Zone_Num, Asset_Max_Belong_Org_Num FROM(SELECT
T1.Party_Id
,T1.Zone_Num
,T1.Asset_Max_Belong_Org_Num
,ROW_NUMBER() OVER(PARTITION BY T1.Party_Id) AS QUA_ROW_NUM_1
FROM TMP_CUST_ASSET_SUM_1 T1 group by 1,2,3
)AA WHERE QUA_ROW_NUM_1 <= 1 limit 1
;
\o
\! rm xml_explain_temp.txt
reset enable_compress_spill;
select count(*) from TMP_ASSET_MAX_BELONG;
drop table TMP_ASSET_MAX_BELONG;
|
<reponame>rbev/azure-data-services-go-fast-codebase<gh_stars>0
/*-----------------------------------------------------------------------
Copyright (c) Microsoft Corporation.
Licensed under the MIT license.
-----------------------------------------------------------------------*/
/*
EXECUTE [ETL].[usp_StagingTable_Load] '{"TargetTable": "TaskMaster"}','dbo'
*/
CREATE PROCEDURE dbo.[usp_StagingTable_Load]
(
@TaskConfig VARCHAR(MAX)
,@TaskSchema VARCHAR(MAX)
)
AS
BEGIN TRY
BEGIN TRANSACTION
DECLARE
@SchemaDrift CHAR(1)
,@TargetTable VARCHAR(100)
,@HistoryTargetTable VARCHAR(110)
,@TargetTempTable VARCHAR(100)
,@LoadType VARCHAR(50)
,@AlterSQL NVARCHAR(MAX) = ''
,@DeleteSQL NVARCHAR(MAX) = ''
,@UpdateSQL NVARCHAR(MAX) = ''
,@InsertSQL NVARCHAR(MAX) = ''
,@InsertSQLMain NVARCHAR(MAX) = ''
,@InsertSQLWhere NVARCHAR(MAX) = ''
,@AlterHistorySQL NVARCHAR(MAX) = ''
,@SourceFileFormat VARCHAR(50)
,@ErrorMessage VARCHAR(500)
,@TaskInstanceID VARCHAR(50)
,@AutoSchemaDetection CHAR(1)
,@IncludeSQLDataLineage CHAR(1)
,@HistoryTable VARCHAR(50)
,@UseSQLCDC VARCHAR(50)
,@TargetCDCTempTable VARCHAR(255)
-- Get TaskConfig Target connection stage variables
SELECT
@SchemaDrift = JSON_VALUE(TaskConfig.[value], '$.AllowSchemaDrift')
,@TargetTable = JSON_VALUE(TaskConfig.[value], '$.TargetTable')
,@HistoryTargetTable = CONCAT(LEFT(@TargetTable, LEN(@TargetTable) - 1 ), '_history]')
,@TargetTempTable = JSON_VALUE(TaskConfig.[value], '$.TargetTempTable')
,@LoadType = JSON_VALUE(TaskConfig.[value], '$.LoadType')
,@TaskInstanceID = JSON_VALUE(TaskConfig.[value], '$.TaskInstanceID')
,@IncludeSQLDataLineage = JSON_VALUE(TaskConfig.[value], '$.IncludeSQLDataLineage')
,@HistoryTable = JSON_VALUE(TaskConfig.[value], '$.HistoryTable')
FROM
OPENJSON(@TaskConfig) TaskConfig
WHERE
JSON_VALUE(TaskConfig.[value], '$.ConnectionStage') = 'Target'
-- Get CDC temp table
SET @TargetCDCTempTable = PARSENAME(@TargetTempTable,2) + '.' + PARSENAME(@TargetTempTable,1) + '_cdc'
-- Get TaskConfig Source connection stage variables
SELECT
@SourceFileFormat = JSON_VALUE(TaskConfig.[value], '$.SourceFileFormat') -- Check if we are doing a file load
,@AutoSchemaDetection = JSON_VALUE(TaskConfig.[value], '$.AutoSchemaDetection') -- Check if we have auto schema detection from the source
,@UseSQLCDC = JSON_VALUE(TaskConfig.[value], '$.UseSQLCDC')
FROM
OPENJSON(@TaskConfig) TaskConfig
WHERE
JSON_VALUE(TaskConfig.[value], '$.ConnectionStage') = 'Source'
--Throw a custom error if we don't have any column level metadata for the table
IF ISNULL(@TaskSchema, '') = ''
BEGIN
SET @ErrorMessage = 'No column metadata available for table ' + @TargetTable + '. Please check source database permissions'
-- Raise the error
RAISERROR (@ErrorMessage, 16, 1);
END
-- Get the source and target schemas
DROP TABLE IF EXISTS #TargetSchema
SELECT
ISNULL(TargetTable.OriginalColumnName, TempTable.OriginalColumnName) AS OriginalColumnName
,ISNULL(TargetTable.TargetColumnName, TempTable.TempColumnName) AS TargetColumnName
,CASE
WHEN TargetTable.OriginalColumnName IS NULL AND TempTable.TempColumnName <> 'ETL_Operation'
THEN 'Add'
WHEN TempTable.OriginalColumnName IS NULL AND NOT(@IncludeSQLDataLineage = 'Y' AND TargetTable.OriginalColumnName LIKE 'ADS!_%' ESCAPE '!')
THEN 'Delete'
WHEN ISNULL(TempTable.TempColumnName, '') <> 'ETL_Operation'
THEN 'Update'
END AS ColumnAction
,TempTable.TempColumnName
,TempTable.NewColumnName
,TempTable.TargetDataType
,TargetTable.KeyColumn
,TargetTable.AllowNull
INTO
#TargetSchema
FROM
(
SELECT
Col.OriginalColumnName
,C.COLUMN_NAME AS TargetColumnName
,CASE
WHEN IC.IndexColumnName IS NOT NULL
THEN 'Y'
ELSE 'N'
END AS KeyColumn
,CASE C.IS_NULLABLE
WHEN 'YES'
THEN 'Y'
WHEN 'NO'
THEN 'N'
END AS AllowNull
FROM
INFORMATION_SCHEMA.[COLUMNS] C
CROSS APPLY OPENJSON(@TaskSchema) TaskSchema
CROSS APPLY
(
SELECT
JSON_VALUE(TaskSchema.[value], '$.OriginalColumnName') AS OriginalColumnName
,JSON_VALUE(TaskSchema.[value], '$.TransformedColumnName') AS TransformedColumnName
) Col
LEFT OUTER JOIN
(
SELECT
SCHEMA_NAME(T.[schema_id]) AS TABLE_SCHEMA
,T.[name] AS TABLE_NAME
,C.[name] AS IndexColumnName
FROM
sys.tables T
INNER JOIN sys.indexes I ON T.[object_id] = I.[object_id]
INNER JOIN sys.index_columns IC ON I.[object_id] = IC.[object_id]
AND I.index_id = IC.index_id
INNER JOIN sys.[columns] C ON T.[object_id] = C.[object_id]
AND IC.column_id = C.column_id
WHERE
I.is_unique = 1
) IC ON C.TABLE_SCHEMA = IC.TABLE_SCHEMA
AND C.TABLE_NAME = IC.TABLE_NAME
AND C.COLUMN_NAME = IC.IndexColumnName
WHERE
C.TABLE_SCHEMA = PARSENAME(@TargetTable, 2)
AND C.TABLE_NAME = PARSENAME(@TargetTable, 1)
AND C.COLUMN_NAME = Col.OriginalColumnName
UNION ALL
--Get the ADS data lineage columns
SELECT
C.COLUMN_NAME AS OriginalColumnName
,C.COLUMN_NAME AS TargetColumnName
,'N' AS KeyColumn
,CASE C.IS_NULLABLE
WHEN 'YES'
THEN 'Y'
WHEN 'NO'
THEN 'N'
END AS AllowNull
FROM
INFORMATION_SCHEMA.[COLUMNS] C
WHERE
C.TABLE_SCHEMA = PARSENAME(@TargetTable, 2)
AND C.TABLE_NAME = PARSENAME(@TargetTable, 1)
AND C.COLUMN_NAME LIKE 'ADS!_%' ESCAPE '!'
) TargetTable
FULL OUTER JOIN
(
SELECT
Col.OriginalColumnName
,C.COLUMN_NAME AS TempColumnName
,JSON_VALUE(TaskSchema.[value], '$.SQLDataType') AS TargetDataType
,CASE
WHEN @AutoSchemaDetection = 'Y'
THEN Col.OriginalColumnName
ELSE Col.TransformedColumnName
END AS NewColumnName
FROM
INFORMATION_SCHEMA.[COLUMNS] C
CROSS APPLY OPENJSON(@TaskSchema) TaskSchema
CROSS APPLY
(
SELECT
JSON_VALUE(TaskSchema.[value], '$.OriginalColumnName') AS OriginalColumnName
,JSON_VALUE(TaskSchema.[value], '$.TransformedColumnName') AS TransformedColumnName
) Col
WHERE
C.TABLE_SCHEMA = PARSENAME(@TargetTempTable, 2)
AND C.TABLE_NAME = PARSENAME(@TargetTempTable, 1)
AND C.COLUMN_NAME = Col.TransformedColumnName
UNION ALL
-- Get the ETL_Operation Column
SELECT
C.COLUMN_NAME AS OriginalColumnName
,C.COLUMN_NAME AS TempColumnName
,'' AS TargetDataType
,'' AS NewColumnName
FROM
INFORMATION_SCHEMA.[COLUMNS] C
WHERE
C.TABLE_SCHEMA = PARSENAME(@TargetTempTable, 2)
AND C.TABLE_NAME = PARSENAME(@TargetTempTable, 1)
AND C.COLUMN_NAME = 'ETL_Operation'
) TempTable ON TargetTable.OriginalColumnName = TempTable.OriginalColumnName
IF @HistoryTable = 'True'
BEGIN
-- Create HistoryTargetSchema table
DROP TABLE IF EXISTS #HistoryTargetSchema
SELECT
ISNULL(HistoryTargetTable.OriginalColumnName, HistoryTempTable.OriginalColumnName) AS OriginalColumnName
,ISNULL(HistoryTargetTable.TargetColumnName, HistoryTempTable.TempColumnName) AS TargetColumnName
,CASE
WHEN HistoryTargetTable.OriginalColumnName IS NULL AND HistoryTempTable.TempColumnName <> 'ETL_Operation'
THEN 'Add'
WHEN HistoryTempTable.OriginalColumnName IS NULL AND NOT(HistoryTargetTable.OriginalColumnName LIKE 'ADS!_%' ESCAPE '!' OR HistoryTargetTable.OriginalColumnName LIKE '__$%')
THEN 'Delete'
ELSE 'Update'
END AS ColumnAction
,ISNULL(HistoryTargetTable.TempColumnName, HistoryTempTable.TempColumnName) AS TempColumnName
,HistoryTempTable.NewColumnName
,ISNULL(HistoryTargetTable.TargetDataType, HistoryTempTable.TargetDataType) AS TargetDataType
,HistoryTargetTable.KeyColumn
,HistoryTargetTable.AllowNull
INTO
#HistoryTargetSchema
FROM
(
SELECT
Col.OriginalColumnName
,C.COLUMN_NAME AS TargetColumnName
,NULL AS TempColumnName
,NULL AS TargetDataType
,CASE
WHEN IC.IndexColumnName IS NOT NULL
THEN 'Y'
ELSE 'N'
END AS KeyColumn
,CASE C.IS_NULLABLE
WHEN 'YES'
THEN 'Y'
WHEN 'NO'
THEN 'N'
END AS AllowNull
FROM
INFORMATION_SCHEMA.[COLUMNS] C
CROSS APPLY OPENJSON(@TaskSchema) TaskSchema
CROSS APPLY
(
SELECT
JSON_VALUE(TaskSchema.[value], '$.OriginalColumnName') AS OriginalColumnName
,JSON_VALUE(TaskSchema.[value], '$.TransformedColumnName') AS TransformedColumnName
) Col
LEFT OUTER JOIN
(
SELECT
SCHEMA_NAME(T.[schema_id]) AS TABLE_SCHEMA
,T.[name] AS TABLE_NAME
,C.[name] AS IndexColumnName
FROM
sys.tables T
INNER JOIN sys.indexes I ON T.[object_id] = I.[object_id]
INNER JOIN sys.index_columns IC ON I.[object_id] = IC.[object_id]
AND I.index_id = IC.index_id
INNER JOIN sys.[columns] C ON T.[object_id] = C.[object_id]
AND IC.column_id = C.column_id
WHERE
I.is_unique = 1
) IC ON C.TABLE_SCHEMA = IC.TABLE_SCHEMA
AND C.TABLE_NAME = IC.TABLE_NAME
AND C.COLUMN_NAME = IC.IndexColumnName
WHERE
C.TABLE_SCHEMA = PARSENAME(@HistoryTargetTable, 2)
AND C.TABLE_NAME = PARSENAME(@HistoryTargetTable, 1)
AND C.COLUMN_NAME = Col.OriginalColumnName
UNION ALL
--Get the ADS data lineage columns
SELECT
C.COLUMN_NAME AS OriginalColumnName
,C.COLUMN_NAME AS TargetColumnName
,NULL AS TempColumnName
,NULL AS TargetDataType
,'N' AS KeyColumn
,CASE C.IS_NULLABLE
WHEN 'YES'
THEN 'Y'
WHEN 'NO'
THEN 'N'
END AS AllowNull
FROM
INFORMATION_SCHEMA.[COLUMNS] C
WHERE
C.TABLE_SCHEMA = PARSENAME(@HistoryTargetTable, 2)
AND C.TABLE_NAME = PARSENAME(@HistoryTargetTable, 1)
AND C.COLUMN_NAME LIKE 'ADS!_%' ESCAPE '!'
UNION ALL
--Get the CDC columns
SELECT
C.COLUMN_NAME AS OriginalColumnName
,C.COLUMN_NAME AS TargetColumnName
,C.COLUMN_NAME AS TempColumnName
,CASE WHEN C.CHARACTER_MAXIMUM_LENGTH IS NOT NULL THEN C.DATA_TYPE + '(' + CASE WHEN C.CHARACTER_MAXIMUM_LENGTH = -1 THEN 'max' ELSE CAST(C.CHARACTER_MAXIMUM_LENGTH AS VARCHAR(MAX)) END + ')' WHEN C.DATA_TYPE = 'datetimeoffset' THEN C.DATA_TYPE + '(' + CAST(C.DATETIME_PRECISION AS VARCHAR(MAX)) + ')' ELSE C.DATA_TYPE END AS TargetDataType
,'N' AS KeyColumn
,CASE C.IS_NULLABLE
WHEN 'YES'
THEN 'Y'
WHEN 'NO'
THEN 'N'
END AS AllowNull
FROM
INFORMATION_SCHEMA.[COLUMNS] C
WHERE
C.TABLE_SCHEMA = PARSENAME(@HistoryTargetTable, 2)
AND C.TABLE_NAME = PARSENAME(@HistoryTargetTable, 1)
AND C.COLUMN_NAME LIKE '__$%'
) HistoryTargetTable
FULL OUTER JOIN
(
SELECT
Col.OriginalColumnName
,C.COLUMN_NAME AS TempColumnName
,JSON_VALUE(TaskSchema.[value], '$.SQLDataType') AS TargetDataType
,CASE
WHEN @AutoSchemaDetection = 'Y'
THEN Col.OriginalColumnName
ELSE Col.TransformedColumnName
END AS NewColumnName
FROM
INFORMATION_SCHEMA.[COLUMNS] C
CROSS APPLY OPENJSON(@TaskSchema) TaskSchema
CROSS APPLY
(
SELECT
JSON_VALUE(TaskSchema.[value], '$.OriginalColumnName') AS OriginalColumnName
,JSON_VALUE(TaskSchema.[value], '$.TransformedColumnName') AS TransformedColumnName
) Col
WHERE
C.TABLE_SCHEMA = PARSENAME(CASE WHEN @UseSQLCDC = 'True' THEN @TargetCDCTempTable ELSE @TargetTempTable END, 2)
AND C.TABLE_NAME = PARSENAME(CASE WHEN @UseSQLCDC = 'True' THEN @TargetCDCTempTable ELSE @TargetTempTable END, 1)
AND C.COLUMN_NAME = Col.TransformedColumnName
UNION ALL
-- Get the ETL_Operation Column
SELECT
C.COLUMN_NAME AS OriginalColumnName
,C.COLUMN_NAME AS TempColumnName
,'varchar(255)' AS TargetDataType
,'' AS NewColumnName
FROM
INFORMATION_SCHEMA.[COLUMNS] C
WHERE
C.TABLE_SCHEMA = PARSENAME(CASE WHEN @UseSQLCDC = 'True' THEN @TargetCDCTempTable ELSE @TargetTempTable END, 2)
AND C.TABLE_NAME = PARSENAME(CASE WHEN @UseSQLCDC = 'True' THEN @TargetCDCTempTable ELSE @TargetTempTable END, 1)
AND C.COLUMN_NAME = 'ETL_Operation'
) HistoryTempTable ON HistoryTargetTable.OriginalColumnName = HistoryTempTable.OriginalColumnName
END
--PRINT @UseSQLCDC
--PRINT @TargetCDCTempTable
--SELECT * FROM #HistoryTargetSchema
--RETURN
-- Fail the ETL if schema drift is not allowed and schema has changed
IF @SchemaDrift = 'N'
BEGIN
IF EXISTS (SELECT 1 FROM #TargetSchema TS WHERE TS.ColumnAction = 'Add')
BEGIN
SELECT
@ErrorMessage = 'Schema drift not allowed and column/s added/renamed in ' + @TargetTable + ': ' + STRING_AGG(TS.NewColumnName, ',')
FROM
#TargetSchema TS
WHERE
TS.ColumnAction = 'Add'
-- Raise the error
RAISERROR (@ErrorMessage, 16, 1);
END
END
-- If schema drift is allowed, add any missing columns to the target table
ELSE IF @SchemaDrift = 'Y'
BEGIN
SELECT
@AlterSQL = 'ALTER TABLE ' + @TargetTable + ' ADD ' + STRING_AGG('[' + TS.NewColumnName + '] ' + TS.TargetDataType, ',') + ';'
FROM
#TargetSchema TS
WHERE
TS.ColumnAction = 'Add'
--EXEC sys.sp_executesql @AlterSQL
Print @AlterSQL
IF @HistoryTable = 'True'
BEGIN
SELECT
@AlterHistorySQL = 'ALTER TABLE ' + @HistoryTargetTable + ' ADD ' + STRING_AGG('[' + TS.NewColumnName + '] ' + TS.TargetDataType, ',') + ';'
FROM
#HistoryTargetSchema TS
WHERE
TS.ColumnAction = 'Add'
--EXEC sys.sp_executesql @AlterHistorySQL
PRINT @AlterHistorySQL
END
END
-- If data lineage is enabled and the columns don't exist, then add them
IF @IncludeSQLDataLineage = 'Y' AND NOT EXISTS(SELECT 1 FROM #TargetSchema TS WHERE TS.OriginalColumnName LIKE 'ADS!_%' ESCAPE '!')
BEGIN
SELECT
@AlterSQL = 'ALTER TABLE ' + @TargetTable + ' ADD [ADS_DateCreated] DATETIMEOFFSET,[ADS_TaskInstanceID] INT'
--EXEC sys.sp_executesql @AlterSQL
PRINT @AlterSQL
-- Insert the column metadata into the #TargetSchema table
INSERT INTO #TargetSchema
(
OriginalColumnName
,TargetColumnName
,ColumnAction
,TempColumnName
,TargetDataType
,KeyColumn
,AllowNull
)
SELECT
'ADS_DateCreated'
,'ADS_DateCreated'
,'Update'
,NULL
,'DATETIMEOFFSET'
,'N'
,'Y'
UNION ALL
SELECT
'ADS_TaskInstanceID'
,'ADS_TaskInstanceID'
,'Update'
,NULL
,'INT'
,'N'
,'Y'
END
-- Load the data
-- Generate the SQL insert statement
DECLARE
@ETLColumnExists BIT = ISNULL((SELECT 1 FROM #TargetSchema TS WHERE TS.TempColumnName = 'ETL_Operation'), 0)
IF @AutoSchemaDetection = 'N'
BEGIN
-- Do type casts for manual schema specification
SELECT
@InsertSQLMain = 'INSERT INTO ' + CAST(@TargetTable AS NVARCHAR(MAX)) + '(' + STRING_AGG('[' + CAST(TS.TargetColumnName AS NVARCHAR(MAX)) + ']', ',') +
') SELECT ' + STRING_AGG( + CASE
WHEN @IncludeSQLDataLineage = 'Y' AND TS.TargetColumnName = 'ADS_DateCreated'
THEN 'SYSUTCDATETIME()'
WHEN @IncludeSQLDataLineage = 'Y' AND TS.TargetColumnName = 'ADS_TaskInstanceID'
THEN @TaskInstanceID
WHEN TS.TargetDataType LIKE '%date%'
THEN 'TRY_CAST([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] AS ' + CAST(TS.TargetDataType AS NVARCHAR(MAX)) + ')'
--Added to remove scientific notation issues
WHEN TS.TargetDataType LIKE '%decimal%' OR TS.TargetDataType LIKE '%numeric%'
THEN 'CASE WHEN TRY_CAST([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] AS ' + CAST(TS.TargetDataType AS NVARCHAR(MAX)) + ') IS NULL AND [' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] IS NOT NULL THEN CAST(CAST([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] AS FLOAT) AS ' + CAST(TS.TargetDataType AS NVARCHAR(MAX)) + ') ELSE [' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] END'
WHEN TS.TargetDataType = 'geography'
THEN 'geography::STGeomFromText([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '], 4326)'
WHEN TS.TargetDataType = 'geometry'
THEN 'geometry::STGeomFromText([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '], 4326)'
WHEN TS.TargetDataType ='hierarchyid'
THEN 'TRY_CAST([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] AS ' + CAST(TS.TargetDataType AS NVARCHAR(MAX)) + ')'
WHEN TS.TargetDataType NOT LIKE '%char%'
THEN 'TRY_CAST([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] AS ' + CAST(TS.TargetDataType AS NVARCHAR(MAX)) + ')'
ELSE '[' + TS.TempColumnName + ']'
END , ',') + ' FROM ' + CAST(@TargetTempTable AS NVARCHAR(MAX)) + CASE WHEN @ETLColumnExists = 1 THEN ' WHERE [ETL_Operation] <> ''Delete''' ELSE '' END
FROM
#TargetSchema TS
WHERE
TS.ColumnAction IN('Update','Add')
END
ELSE
BEGIN
SELECT
@InsertSQLMain = 'INSERT INTO ' + CAST(@TargetTable AS NVARCHAR(MAX)) + '(' + STRING_AGG('[' + CAST(TargetCol.TargetColumnName AS NVARCHAR(MAX)) + ']', ',') +
') SELECT ' + STRING_AGG( + CASE
WHEN @IncludeSQLDataLineage = 'Y' AND TargetCol.TargetColumnName = 'ADS_DateCreated'
THEN 'SYSUTCDATETIME()'
WHEN @IncludeSQLDataLineage = 'Y' AND TargetCol.TargetColumnName = 'ADS_TaskInstanceID'
THEN @TaskInstanceID
WHEN TS.TargetDataType LIKE '%date%'
THEN 'TRY_CAST([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] AS ' + CAST(TS.TargetDataType AS NVARCHAR(MAX)) + ')'
--Added to remove scientific notation issues
WHEN TS.TargetDataType LIKE '%decimal%' OR TS.TargetDataType LIKE '%numeric%'
THEN 'CASE WHEN TRY_CAST([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] AS ' + CAST(TS.TargetDataType AS NVARCHAR(MAX)) + ') IS NULL AND [' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] IS NOT NULL THEN CAST(CAST([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] AS FLOAT) AS ' + CAST(TS.TargetDataType AS NVARCHAR(MAX)) + ') ELSE [' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] END'
WHEN TS.TargetDataType = 'geography'
THEN 'geography::STGeomFromText([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '], 4326)'
WHEN TS.TargetDataType = 'geometry'
THEN 'geometry::STGeomFromText([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '], 4326)'
WHEN TS.TargetDataType ='hierarchyid'
THEN 'TRY_CAST([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] AS ' + CAST(TS.TargetDataType AS NVARCHAR(MAX)) + ')'
ELSE '[' + TS.TempColumnName + ']'
END , ',') + ' FROM ' + CAST(@TargetTempTable AS NVARCHAR(MAX)) + CASE WHEN @ETLColumnExists = 1 THEN ' WHERE [ETL_Operation] <> ''Delete''' ELSE '' END
FROM
#TargetSchema TS
CROSS APPLY
(
SELECT
CASE
WHEN TS.ColumnAction = 'Add'
THEN TS.NewColumnName
ELSE TS.TargetColumnName
END AS TargetColumnName
) TargetCol
WHERE
TS.ColumnAction IN('Update','Add')
END
-- Add WHERE clause to exclude invalid dates where columns don't allow nulls
IF EXISTS(SELECT 1 FROM #TargetSchema TS WHERE TS.AllowNull = 'N' AND TS.TargetDataType LIKE 'date%')
BEGIN
SELECT
@InsertSQLWhere = CASE WHEN @ETLColumnExists = 1 THEN ' AND ' ELSE ' WHERE ' END +
STRING_AGG(
CASE
WHEN TS.TargetDataType LIKE 'date%'
THEN 'TRY_CAST([' + TS.TempColumnName + '] AS ' + TS.TargetDataType + ') IS NOT NULL'
ELSE ''
END , ' AND ')
FROM
#TargetSchema TS
WHERE
TS.AllowNull = 'N'
AND TS.TargetDataType LIKE 'date%'
END
SET @InsertSQL = @InsertSQLMain + @InsertSQLWhere
-- Do a full load if there is no primary key or unique index or this is the first load for a table
IF NOT EXISTS (SELECT 1 FROM #TargetSchema TS WHERE TS.KeyColumn = 'Y')
OR (NOT EXISTS (SELECT 1 FROM #TargetSchema TS WHERE TS.TempColumnName = 'ETL_Operation') AND @LoadType = 'Full')
BEGIN
EXEC('TRUNCATE TABLE ' + @TargetTable)
--EXEC sys.sp_executesql @InsertSQL
PRINT @InsertSQL
END
ELSE
-- There is a key and an ETL operation so do Insert, Update and Delete
BEGIN
-- Delete missing data
SELECT
@DeleteSQL = 'DELETE T FROM ' + @TargetTempTable + ' S INNER JOIN ' + @TargetTable + ' T ON ' +
STRING_AGG(
CASE
WHEN TS.AllowNull = 'Y'
THEN
CASE
WHEN TS.TargetDataType IN('decimal', 'numeric')
THEN 'COALESCE(S.[' + TS.TempColumnName + '], CAST(0 AS DECIMAL(36,12)) = COALESCE(T.[' + TS.TargetColumnName + '], CAST(0 AS DECIMAL(36,12))'
WHEN TS.TargetDataType LIKE '%int%' OR TS.TargetDataType LIKE '%money%' OR TS.TargetDataType IN('real', 'float')
THEN 'COALESCE(S.[' + TS.TempColumnName + '], 0) = COALESCE(T.[' + TS.TargetColumnName + '], 0)'
WHEN TS.TargetDataType LIKE 'date%'
THEN 'COALESCE(TRY_CAST(S.[' + TS.TempColumnName + '] AS ' + TS.TargetDataType + '), '''') = COALESCE(TRY_CAST(T.[' + TS.TargetColumnName + '] AS ' + TS.TargetDataType + '), '''')'
ELSE 'COALESCE(S.[' + TS.TempColumnName + '], '''') = COALESCE(T.[' + TS.TargetColumnName + '], '''')'
END
ELSE 'S.[' + TS.TempColumnName + '] = T.[' + TS.TargetColumnName + ']'
END, ' AND ')
FROM
#TargetSchema TS
WHERE
TS.KeyColumn = 'Y'
-- Don't do updates as they are slow, rather do a delete and insert
-- Remove changed data
--EXEC sys.sp_executesql @DeleteSQL
PRINT @DeleteSQL
-- Insert new data
--EXEC sys.sp_executesql @InsertSQL
PRINT @InsertSQL
END
-- Insert to the history table if HistoryTable is enabled
IF @HistoryTable = 'True'
BEGIN
-- Generate history table insert sql statement
IF @AutoSchemaDetection = 'N'
BEGIN
-- Do type casts for manual schema specification
SELECT
@InsertSQLMain = 'INSERT INTO ' + CAST(@HistoryTargetTable AS NVARCHAR(MAX)) + '(' + STRING_AGG('[' + CAST(TS.TargetColumnName AS NVARCHAR(MAX)) + ']', ',') +
') SELECT ' + STRING_AGG( + CASE
WHEN TS.TargetColumnName = 'ADS_DateCreated'
THEN 'SYSUTCDATETIME()'
WHEN TS.TargetColumnName = 'ADS_TaskInstanceID'
THEN @TaskInstanceID
WHEN TS.TargetDataType LIKE '%date%'
THEN 'TRY_CAST([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] AS ' + CAST(TS.TargetDataType AS NVARCHAR(MAX)) + ')'
--Added to remove scientific notation issues
WHEN TS.TargetDataType LIKE '%decimal%' OR TS.TargetDataType LIKE '%numeric%'
THEN 'CASE WHEN TRY_CAST([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] AS ' + CAST(TS.TargetDataType AS NVARCHAR(MAX)) + ') IS NULL AND [' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] IS NOT NULL THEN CAST(CAST([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] AS FLOAT) AS ' + CAST(TS.TargetDataType AS NVARCHAR(MAX)) + ') ELSE [' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] END'
WHEN TS.TargetDataType = 'geography'
THEN 'geography::STGeomFromText([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '], 4326)'
WHEN TS.TargetDataType = 'geometry'
THEN 'geometry::STGeomFromText([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '], 4326)'
WHEN TS.TargetDataType ='hierarchyid'
THEN 'TRY_CAST([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] AS ' + CAST(TS.TargetDataType AS NVARCHAR(MAX)) + ')'
WHEN TS.TargetDataType NOT LIKE '%char%'
THEN 'TRY_CAST([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] AS ' + CAST(TS.TargetDataType AS NVARCHAR(MAX)) + ')'
ELSE '[' + TS.TempColumnName + ']'
END , ',') + ' FROM ' + CAST(CASE WHEN @UseSQLCDC = 'True' THEN @TargetCDCTempTable ELSE @TargetTempTable END AS NVARCHAR(MAX))
FROM
#HistoryTargetSchema TS
WHERE
TS.ColumnAction IN('Update','Add')
END
ELSE
BEGIN
--SELECT * FROM #HistoryTargetSchema
--RETURN
SELECT
@InsertSQLMain = 'INSERT INTO ' + CAST(@HistoryTargetTable AS NVARCHAR(MAX)) + '(' + STRING_AGG('[' + CAST(TargetCol.TargetColumnName AS NVARCHAR(MAX)) + ']', ',') +
') SELECT ' + STRING_AGG( + CASE
WHEN TargetCol.TargetColumnName = 'ADS_DateCreated'
THEN 'SYSUTCDATETIME()'
WHEN TargetCol.TargetColumnName = 'ADS_TaskInstanceID'
THEN @TaskInstanceID
WHEN TS.TargetDataType LIKE '%date%'
THEN 'TRY_CAST([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] AS ' + CAST(TS.TargetDataType AS NVARCHAR(MAX)) + ')'
--Added to remove scientific notation issues
WHEN TS.TargetDataType LIKE '%decimal%' OR TS.TargetDataType LIKE '%numeric%'
THEN 'CASE WHEN TRY_CAST([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] AS ' + CAST(TS.TargetDataType AS NVARCHAR(MAX)) + ') IS NULL AND [' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] IS NOT NULL THEN CAST(CAST([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] AS FLOAT) AS ' + CAST(TS.TargetDataType AS NVARCHAR(MAX)) + ') ELSE [' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] END'
WHEN TS.TargetDataType = 'geography'
THEN 'geography::STGeomFromText([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '], 4326)'
WHEN TS.TargetDataType = 'geometry'
THEN 'geometry::STGeomFromText([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '], 4326)'
WHEN TS.TargetDataType ='hierarchyid'
THEN 'TRY_CAST([' + CAST(TS.TempColumnName AS NVARCHAR(MAX)) + '] AS ' + CAST(TS.TargetDataType AS NVARCHAR(MAX)) + ')'
ELSE '[' + TS.TempColumnName + ']'
END , ',') + ' FROM ' + CAST(CASE WHEN @UseSQLCDC = 'True' THEN @TargetCDCTempTable ELSE @TargetTempTable END AS NVARCHAR(MAX))
FROM
#HistoryTargetSchema TS
CROSS APPLY
(
SELECT
CASE
WHEN TS.ColumnAction = 'Add'
THEN TS.NewColumnName
ELSE TS.TargetColumnName
END AS TargetColumnName
) TargetCol
WHERE
TS.ColumnAction IN('Update','Add')
END
IF EXISTS(SELECT 1 FROM #HistoryTargetSchema TS WHERE TS.AllowNull = 'N' AND TS.TargetDataType LIKE 'date%')
BEGIN
SELECT
@InsertSQLWhere = ' WHERE ' +
STRING_AGG(
CASE
WHEN TS.TargetDataType LIKE 'date%'
THEN 'TRY_CAST([' + TS.TempColumnName + '] AS ' + TS.TargetDataType + ') IS NOT NULL'
ELSE ''
END , ' AND ')
FROM
#HistoryTargetSchema TS
WHERE
TS.AllowNull = 'N'
AND TS.TargetDataType LIKE 'date%'
END
SET @InsertSQL = @InsertSQLMain + @InsertSQLWhere
--PRINT @InsertSQL
--RETURN
-- Delete task instance Id that exist in history table
SET @DeleteSQL = 'DELETE FROM ' + @HistoryTargetTable + ' WHERE ADS_TaskInstanceID = ' + @TaskInstanceID
--EXEC sys.sp_executesql @DeleteSQL
PRINT @DeleteSQL
-- Execute insert sql statement
--EXEC sys.sp_executesql @InsertSQL
PRINT @InsertSQL
END
COMMIT TRANSACTION
END TRY
BEGIN CATCH
ROLLBACK TRANSACTION
DECLARE @Error VARCHAR(MAX)
SET @Error = ERROR_MESSAGE()
;
THROW 51000, @Error, 1
END CATCH
|
-- MySQL dump 10.13 Distrib 5.6.39, for Linux (x86_64)
--
-- Host: localhost Database: nestoiopetnesto
-- ------------------------------------------------------
-- Server version 5.6.39-cll-lve
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `grad`
--
DROP TABLE IF EXISTS `grad`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `grad` (
`Id` int(11) NOT NULL,
`Naziv` varchar(45) DEFAULT NULL,
PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `grad`
--
LOCK TABLES `grad` WRITE;
/*!40000 ALTER TABLE `grad` DISABLE KEYS */;
INSERT INTO `grad` (`Id`, `Naziv`) VALUES (1,'Zagreb'),(2,'Split'),(3,'Osijek'),(4,'Rijeka'),(5,'Karlovac'),(6,'Vukovar');
/*!40000 ALTER TABLE `grad` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `imovinskakartica`
--
DROP TABLE IF EXISTS `imovinskakartica`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `imovinskakartica` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`Placa` varchar(20) NOT NULL,
`Ustedevina` varchar(20) NOT NULL,
`osoba_FK` int(11) NOT NULL,
PRIMARY KEY (`Id`),
KEY `FK_ImovinskaKartica_Osoba` (`osoba_FK`),
CONSTRAINT `FK_ImovinskaKartica_Osoba` FOREIGN KEY (`osoba_FK`) REFERENCES `osoba` (`Id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `imovinskakartica`
--
LOCK TABLES `imovinskakartica` WRITE;
/*!40000 ALTER TABLE `imovinskakartica` DISABLE KEYS */;
INSERT INTO `imovinskakartica` (`Id`, `Placa`, `Ustedevina`, `osoba_FK`) VALUES (1,'15000','100K',7),(2,'15000','100K',8),(3,'18000','200K',9),(4,'18000','200K',21),(5,'16000','200K',16);
/*!40000 ALTER TABLE `imovinskakartica` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `nekretnina`
--
DROP TABLE IF EXISTS `nekretnina`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `nekretnina` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`Iznos` varchar(20) NOT NULL,
`KvadrMetar` varchar(20) NOT NULL,
`osoba_FK` int(11) NOT NULL,
`Grad_FK` int(11) DEFAULT NULL,
PRIMARY KEY (`Id`),
KEY `FK_Nekretnina_Osoba` (`osoba_FK`),
KEY `FK_Nekretnina_Grad_idx` (`Grad_FK`),
CONSTRAINT `FK_Nekretnina_Grad` FOREIGN KEY (`Grad_FK`) REFERENCES `grad` (`Id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `FK_Nekretnina_Osoba` FOREIGN KEY (`osoba_FK`) REFERENCES `osoba` (`Id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `nekretnina`
--
LOCK TABLES `nekretnina` WRITE;
/*!40000 ALTER TABLE `nekretnina` DISABLE KEYS */;
INSERT INTO `nekretnina` (`Id`, `Iznos`, `KvadrMetar`, `osoba_FK`, `Grad_FK`) VALUES (1,'100K','2000',7,1),(2,'200K','3000',8,1),(3,'250K','6000',17,2),(5,'400K','1700',23,2),(6,'420K','345',29,5),(7,'230K','2000',7,1),(8,'150K','3000',16,1);
/*!40000 ALTER TABLE `nekretnina` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `novac`
--
DROP TABLE IF EXISTS `novac`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `novac` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`Iznos` decimal(20,2) DEFAULT NULL,
`Svrha` longtext,
`SvrhaEng` longtext NOT NULL,
`Datum` date DEFAULT NULL,
`osoba_FK` int(11) NOT NULL,
PRIMARY KEY (`Id`),
KEY `FK_Novac_Osoba` (`osoba_FK`),
CONSTRAINT `FK_Novac_Osoba` FOREIGN KEY (`osoba_FK`) REFERENCES `osoba` (`Id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `novac`
--
LOCK TABLES `novac` WRITE;
/*!40000 ALTER TABLE `novac` DISABLE KEYS */;
/*!40000 ALTER TABLE `novac` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `osoba`
--
DROP TABLE IF EXISTS `osoba`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `osoba` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`Ime` varchar(50) NOT NULL,
`Prezime` varchar(50) NOT NULL,
`datRod` date DEFAULT NULL,
`Biografija` longtext,
`Slika` varchar(100) DEFAULT NULL,
`stranka_FK` int(11) NOT NULL,
`Filtar` varchar(45) DEFAULT NULL,
PRIMARY KEY (`Id`),
KEY `FK_Osoba_Stranka` (`stranka_FK`),
CONSTRAINT `FK_Osoba_Stranka` FOREIGN KEY (`stranka_FK`) REFERENCES `stranka` (`Id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=80 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `osoba`
--
LOCK TABLES `osoba` WRITE;
/*!40000 ALTER TABLE `osoba` DISABLE KEYS */;
INSERT INTO `osoba` (`Id`, `Ime`, `Prezime`, `datRod`, `Biografija`, `Slika`, `stranka_FK`, `Filtar`) VALUES (7,'Andro ','Vlahušić','1960-05-17','<NAME> je liječnik specijalist interne medicine, endokrinolog i političar. Političku karijeru je započeo 1997. godine kao vijećnik u Dubrovačko-neretvanskoj županiji. Od 2000. do 2001. godine je bio zastupnik u Hrvatskom saboru, a kao član koalicijske stranke HNS od 2001. do 2003. godine bio je ministar zdravstva Republike Hrvatske. Nakon isteka mandata se vratio u Dubrovnik gdje je od 2006. do 2009. godine bio ravnatelj dubrovačke opće bolnice Dubrovnik. Na prvim neposrednim izborima za gradonačelnika Dubrovnika kandidirao se 2009., a nakon što je prošao prvi, osvojivši 42,91% glasova, u drugom je krugu pobijedio dotadašnju gradonačelnicu Dubravku Šuicu (39,11% glasova u prvom krugu) te postao prvi neposredno izabrani gradonačelnik Dubrovnika. Isti rezultat ostvario je i na slijedećim lokalnim izborima, 2013. godine, gdje je u prvom krugu osvojio 31,76% glasova, a u drugom krugu pobijedio HDZ-ovog kandidata Tea Andrića, koji je dobio 25,92% glasova u prvom krugu. 2013. godine biva biran za predsjednika dubrovačke podružnice HNS-a, a povlači se s mjesta predsjednika Županijske ogranizacije HNS-a Dubrovačko-neretvanske. Iste godine biva imenovan članom Predsjedništva Hrvatske narodne stranke - liberalnih demokata. Kao gradonačelnik Dubrovnika, povukao je mnoge kontroverzne poteze. Najviše se pisalo o aferi Šipan, za koju je 16.12.2014. i pravomoćno osuđen na 6 mjeseci uvjetno, uz rok kušnje od 3 godine, te o Dubrovačkom dogovoru, interesnom savezu stranaka nazivno suprotnih političkih orijentacija (HDZ, HNS, SDP) čiji je jedini cilj bio progurati apartmanski projekt UPU Srđ. No, ubrzo nakon ispunjanja cilja, nepomirljive razlike unutar te koalicije isplivavaju na površinu, te 5.12.2014. gradsko vijeće odbija prihvatiti predloženi proračun i time smjenjuje Vlahušića sa mjesta gradonačelnika. U drugom krugu izvanrednih izbora 22.03.2015, tijesnom pobjedom od 472 glasa ispred kandidata HDZa <NAME>, <NAME> je ponovo postao gradonačelnik Dubrovnika. Hoće li mandat odraditi do kraja, ovisit će o u međuvremenu novopokrenutoj istrazi USKOK-a. ',NULL,14,NULL),(8,'Anka','Mrak-Taritaš','1959-11-24','<NAME> - Taritaš rođena je 24. studenog 1959. u Bjelovaru gdje je završila osnovnu školu i opću gimnaziju. 1983.godine završavaArhitektonski fakultet u Zagrebu na kojem je i 2008. godine doktorirala na temu Analiza kvantifikacijskih pokazatelja planiranja turističkih zona unutar zaštićenog obalnog pojasa mora. Udana je i ima dvoje djece. U slobodno vrijeme bavi se skijanjem, jedrenjem i kuhanjem.',NULL,14,'cro'),(9,'Arsen','Bauk','1973-02-07','Rođen je 7. veljače 1973. u Supetru. Osnovnu školu završio je u Pučišćima na Braču, a srednju Matematičko informatički obrazovni centar (MIOC) u Splitu. Diplomirao je 1997. na Prirodoslovno matematičkom fakultetu u Zagrebu, profesor je matematike i informatike. Članom SDP-a postao je s osamnaest godina, 1991. Devedesetih je bio košarkaški sudac. Od 1992. do 1999. bio je član Udruge hrvatskih košarkaških sudaca. Od 1998. do 2000. bio je voditelj natjecanja, statističar u HAKL-u. S dolaskom SDP-a na vlast 2000. počinje uzlet u njegovoj političkoj karijeri. Značajnu ulogu u tome odigrao je njegov otac <NAME> koji je bio dobar prijatelj s Ivicom Račanom. U njegovoj vladi Bauk 2000. postaje najprije pomoćnik ministra za informacijsku i komunikacijsku tehnologiju Ministarstva obrane a tri godine kasnije u istom ministarstvu je pomoćnik za materijalne resurse. Članom Glavnog odbora SDP-a postao je 2004., a Izvršnog 2004. Obje dužnosti bile su s mandatom od četiri godine. 2007. je izabran za saborskog zastupnika. U Saboru je bio potpredsjednik Mandatno-imunitetnog povjerenstva i član Odbora za obranu. 2010. postao je predsjednik SDP-a Splitsko-dalmatinske županije. Nakon pobjede Kukuriku koalicije na izborima 2011. Izabran je za ministra uprave. Uoči izbora za Europski parlament smanjio je popis birača, koji je bio sporan jer je bio veći od aktualnog broja stanovnika u Hrvatskoj. Izbrisao je one koji nisu imali važeću osobnu iskaznicu. Živi u izvanbračnoj zajednici s kćerkom T<NAME>, odvjetnika koji brani Ratka Mačeka, nekadašnjeg glasnogovornika bivšeg premijera <NAME>a. I ona je štedljiva. Bauk je prijavio da se na njenom štednom računu nalazi 150 tisuća kuna. Osim svoje ušteđevine, prijavio je dionice HT-a u vrijednosti od 14.400 kuna te automobil Peugeot 307 iz 2004. Nema nekretnina u vlasništvu. „Uvijek sam živio kao prosječan građanin i tako sam se osjećao i osjećam se danas“, rekao je o svojoj štedljivosti pitajući se kako su neki drugi uspjeli toliko potrošiti. Kada je u ime Vlade zatražio stečaj Jandrankamena, bračkog kamenoloma, politički oponenti su mu prigovorili da to zahtijeva jer mu je otac na čelu konkurentskog kamenoloma, tvrtke „Kavadur“ koja bi imala koristi ako Jadrankamen nestane. Optužen je za izravni sukob interesa. Odgovorio je da nije bio u prilici „ni u čemu odlučivati“. U slobodno vrijeme, osim košarke igra šah, a opušta se uz glazbu.',NULL,8,'cro'),(16,'Milan','Bandić','1955-11-22','kasnije',NULL,21,'cro'),(17,'Jozo ','Radoš','1956-11-03',NULL,NULL,14,'eu'),(21,'Boris ','Lalovac','1976-11-16',NULL,NULL,8,NULL),(22,'Božidar','Kalmeta','1958-01-15',NULL,NULL,7,NULL),(23,'Branko ','Grčić','1964-04-16',NULL,NULL,8,NULL),(24,'Dragutin','Lesar','1956-03-04',NULL,NULL,9,NULL),(25,'Gordan','Jandroković','1967-08-02',NULL,NULL,7,'cro'),(26,'Gordan','Maras','1974-06-13',NULL,NULL,8,'cro'),(27,'Ivan','Jakovčić','1957-11-15',NULL,NULL,16,'eu'),(28,'Ivan','Šuker','1957-11-12',NULL,NULL,7,'cro'),(29,'Ivan','Vrdoljak','1972-06-22',NULL,NULL,14,NULL),(30,'Ivo','Josipović','1957-08-28',NULL,NULL,8,NULL),(31,'Kolinda','Grabar-Kitarović','1968-04-29',NULL,NULL,21,NULL),(32,'Mihael ','Zmajlović','1978-01-19',NULL,NULL,8,NULL),(33,'Mirando','Mrsić','1959-10-14',NULL,NULL,8,'cro'),(34,'Mirela','Holy','1971-12-15',NULL,NULL,10,NULL),(35,'Orsat','Miljenić','1968-09-15',NULL,NULL,8,'cro'),(36,'Radimir','Čačić','1949-05-11',NULL,NULL,14,'cro'),(37,'Ranko','OstojićRanko','1962-10-03',NULL,NULL,8,NULL),(38,'Siniša','Hajdaš-Dončić','1974-06-29',NULL,NULL,8,NULL),(39,'Siniša','Varga','1965-08-24',NULL,NULL,8,'cro'),(40,'Stjepan','Mesić','1934-12-24',NULL,NULL,21,NULL),(41,'Tihomir','Jakovina','1967-06-21',NULL,NULL,8,NULL),(42,'Vesna','Pusić','1953-04-25',NULL,NULL,14,NULL),(43,'Vojko','Obersnel','1957-03-25',NULL,NULL,8,NULL),(44,'Zoran','Milanović','1966-10-30',NULL,NULL,8,'cro'),(45,'Tomislav','Karamarko','1959-05-25',NULL,NULL,7,NULL),(46,'Ivana ','Maletić','1973-10-12',NULL,NULL,7,'eu'),(47,'Dubravka','Šuica','1957-05-20',NULL,NULL,7,'eu'),(48,'Andrej','Plenković','1970-04-08',NULL,NULL,7,'eu'),(49,'Davor','Stier','1972-01-06',NULL,NULL,7,'eu'),(50,'Tonino','Picula','1961-08-31',NULL,NULL,8,'eu'),(51,'Biljana','Borzan','1971-11-29',NULL,NULL,8,'eu'),(52,'Sandra','Petrović-Jakovina','1985-04-21',NULL,NULL,8,NULL),(53,'Ruža','Tomašić','1958-05-10',NULL,NULL,13,'eu'),(54,'Ingrid','Antičević-Marinović','1957-11-14',NULL,NULL,8,'cro'),(55,'Damir','Kajin','1957-08-28',NULL,NULL,21,NULL),(56,'Milorad','Pupovac','1955-11-05',NULL,NULL,17,'cro'),(57,'Željko','Jovanović','1965-11-26',NULL,NULL,8,'cro'),(58,'Ante','Kotromanović','1968-05-08',NULL,NULL,8,NULL),(59,'Slavko','Linić','1949-09-19',NULL,NULL,21,NULL),(60,'Nenad','Stazić','1957-07-13',NULL,NULL,8,'cro'),(61,'Željko','Reiner','1953-05-28',NULL,NULL,7,'cro'),(62,'Nansi','Tireli','1965-02-26',NULL,NULL,9,'cro'),(63,'Davorin','Mlakar','1958-12-30',NULL,NULL,7,'cro'),(64,'Darko','Milinović','1963-04-25',NULL,NULL,7,NULL),(65,'Marina','Lovrić-Merzel','1963-09-02',NULL,NULL,21,NULL),(66,'Jadranka','Kosor',NULL,NULL,NULL,21,NULL),(67,'Nikica','Gabrić',NULL,NULL,NULL,21,NULL),(68,'Branko','Hrg',NULL,NULL,NULL,12,NULL),(69,'Peđa','Grbin',NULL,NULL,NULL,8,'cro'),(70,'Dinko','Burić',NULL,NULL,NULL,11,NULL),(71,'Krešimir','Bubalo',NULL,NULL,NULL,11,NULL),(72,'Branko','Vukšić',NULL,NULL,NULL,21,NULL),(73,'Vesna','Škare-Ožbolt',NULL,NULL,NULL,21,NULL),(74,'Vedran','Mornar',NULL,NULL,NULL,21,NULL),(75,'Rajko','OstojićRajkoBivsiMinZdravlja',NULL,NULL,NULL,21,NULL),(76,'Željka','Antunović',NULL,NULL,NULL,8,NULL),(77,'Vladimir','Šeks',NULL,NULL,NULL,7,NULL),(78,'Davor','Škrlec',NULL,NULL,NULL,14,'eu'),(79,'Marijana','Petir',NULL,NULL,NULL,7,'eu');
/*!40000 ALTER TABLE `osoba` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `podaci`
--
DROP TABLE IF EXISTS `podaci`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `podaci` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`Datum` date DEFAULT NULL,
`osoba_FK` int(11) NOT NULL,
`radoviPostupciAktivnost` longtext,
`prijedloziPodrska` longtext,
`Naslov` longtext,
`Url` longtext,
`Optuznice` longtext,
`radoviPostupciAktivnostEng` longtext,
`prijedloziPodrskaEng` longtext,
`OptuzniceEng` longtext,
`net_tisk` tinyint(1) DEFAULT NULL,
PRIMARY KEY (`Id`),
KEY `FK_Podaci_Osoba` (`osoba_FK`),
CONSTRAINT `FK_Podaci_Osoba` FOREIGN KEY (`osoba_FK`) REFERENCES `osoba` (`Id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=220 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `podaci`
--
LOCK TABLES `podaci` WRITE;
/*!40000 ALTER TABLE `podaci` DISABLE KEYS */;
INSERT INTO `podaci` (`Id`, `Datum`, `osoba_FK`, `radoviPostupciAktivnost`, `prijedloziPodrska`, `Naslov`, `Url`, `Optuznice`, `radoviPostupciAktivnostEng`, `prijedloziPodrskaEng`, `OptuzniceEng`, `net_tisk`) VALUES (21,'2002-01-08',16,'Bespravna gradnja vikendice u Samoborskom gorju.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10108/sdp-ova-kontrola-stete',NULL,NULL,NULL,'',NULL),(22,'2002-01-08',16,'Lažiranje glasova u jutarnjem listu na natjecanju za osobu godine u gradu Zagrebu. Redakcija Jutarnjeg otkrila je da je 500 glasova poslano s iste adrese, a njih su organizirano, ali ne i samoinicijativno, slali članovi gradskog SDP-a.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10108/sdp-ova-kontrola-stete',NULL,NULL,NULL,'',NULL),(23,'2002-01-08',17,'Neorganiziranost i nepostojanje strategije upravljanja u sklopu MORH-a, odluke su subjektivne i najčešće polaze od određene uprave ili pojedinca. Neuspjeh u provođenju obrambene reforme. Kritika od strane britanskih vojnih stručnjaka o upravljanju MORH-a.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10104/rados-je-kriv-za-udaljavanje-od-nato-a',NULL,NULL,NULL,'',NULL),(24,'2002-02-05',17,'Objavljivanje transkripta razgovora Slobodana Miloševića snimljenih elektronskim prisluškivanjem hrvatskih tajnih službi od 1995. do 2000. godine.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10140/radosev-skandal-s-milosevicevim-transkriptima-zbog-afere-milosevic-rados-mora-dati-ostavku',NULL,NULL,NULL,'',NULL),(25,'2002-02-26',17,' Dopustio objavljivanje popisa približno deset tisuća kandidata za stambene kredite MORH-a i time razotkrio strogo čuvane osobne podatke zaposlenika MORH-a i Glavnog stožera koji rade u vojnim sigurnosnim i obavještajnim službama.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10089/ministar-obrane-jozo-rados-prouzrocio-novi-skandal',NULL,NULL,NULL,'',NULL),(27,'2002-03-19',42,'Pokušaj sakrivanja detalja vezanih za suradnju s Haškim sudom.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10119/petorka-odlucila-sakriti-sadrzaj-koalicijskog-sporazuma',NULL,NULL,NULL,'',NULL),(28,'2002-04-24',7,'Kretanje u reformu službe hitne pomoći (jedan od najvećih projekata Ministarstva zdravstva). Organizacija modela prema kojem bi u svakoj županiji postojao jedan dispečerski centar. Kupljeni novi automobili i aparati te nove softverske lutke.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10215/nuzna-je-velika-reforma-hitne-pomoci',NULL,NULL,NULL,'',NULL),(31,'2002-09-18',27,'Protivljenje SDP-ovom prijedlogu da cijela Hrvatska postane jedna izborna jedinica, bez posebnih lista za manjine i dijasporu.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10362/sdp-trazi-cijela-hrvatska-jedna-izborna-jedinica',NULL,NULL,NULL,'',NULL),(32,'2002-09-18',42,NULL,'Podrška SDP-ovom prijedlogu izbornog zakona o vladajućoj koaliciji (cijela Hrvatska kao jedna izborna jedinica).',NULL,'http://arhiva.nacional.hr/clanak/10362/sdp-trazi-cijela-hrvatska-jedna-izborna-jedinica',NULL,NULL,NULL,'',NULL),(33,'2002-10-02',40,'Zalaže se za izručenje <NAME> Međunarodnom kaznenom sudu.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10374/da-je-desnica-na-vlasti-izrucili-bi-bobetka-u-tjedan-dana',NULL,NULL,NULL,'',NULL),(34,'2002-07-17',17,'<NAME>ke skupine napustio konferenciju i razgledavao litvanske znamenitosti. Svoje prisustvo na konferenciji okarakterizirao je bespotrebnim i beskorisnim. Organizatori skupa bili su zaprepašteni takvom neozbiljnošću, a cijeli je skandal popraćen neugodnim komentarima sudionika i uklanjanjem hrvatskih državnih simbola s radnog stola konferencije.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10302/hrvatska-u-nato-ulazi-tek-2006-sa-srbijom-bih-albanijom-i-ukrajinom',NULL,NULL,NULL,'',NULL),(35,'2002-07-12',16,NULL,'Skupina članova SDP-a predvođena predsjednikom i potpredsjednikom zagrebačke organizacije socijaldemokrata Milanom Bandićem i Zdravkom Tomcem, odlučila je početkom jeseni zatražiti da stranačko vodstvo legalizira postojanje njihove frakcije pod imenom “Hrvatski socijaldemokrati”.',NULL,'http://arhiva.nacional.hr/clanak/10308/tomac-i-bandic-osnivaju-hrvatske-socijaldemokrate',NULL,NULL,NULL,'',NULL),(38,'2002-07-17',36,'Ministarstvo prostornog uređenja i zaštite okoliša zatvorilo gradilište autoceste Zagreb – Goričan, jednog od ključnih projekata Čačićeva ministarstva.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10310/ne-prestanu-li-opstrukcije-zabranit-cu-radove-na-svim-autocestama',NULL,NULL,NULL,'',NULL),(39,'2002-07-24',40,'Otkazivanje pokroviteljstva nad Sinjskom Alkom.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10312/igor-stimac-financirat-ce-alku',NULL,NULL,NULL,'',NULL),(40,'2002-08-21',17,NULL,'Neodgovornim ponašanjem (objavljivanje transkripta tajno snimljenih telefonskih razgovora srbijanskog predsjednika Slobodana Miloševića) zadao nepopravljiv udarac Hrvatskoj i njenoj obavještajnoj zajednici smatra bivši član vodstva SDP-a <NAME>',NULL,'http://arhiva.nacional.hr/clanak/10341/ni-durda-adlesic-ni-rados-ne-mogu-biti-na-celu-odbora',NULL,NULL,NULL,'',NULL),(41,'2003-02-05',59,'Nadzirao privatizaciju Sunčanog Hvara.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10502/racan-ce-smijeniti-pavu-zupan-ruskovic-i-kresimira-starcevica',NULL,NULL,NULL,'',NULL),(43,'2003-03-12',37,'Smijenio vlastite prijatelje Ser<NAME>ina, šefa splitske policije, te načelnike Ranka Britvića i Gorana Alača zbog prijava protiv kriminala i prekoračenja ovlasti.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10534/ostojic-smijenio-svoje-prijatelje-koje-je-sam-postavio',NULL,NULL,NULL,'',NULL),(44,'2002-12-11',7,'Odlučio poništiti legalno proveden i zaključen natječaj za izgradnju Klinike za ženske bolesti i porode KB Split.',NULL,NULL,'http://arhiva.nacional.hr/clanak/15445/vlahusic-ponistio-zakljuceni-natjecaj',NULL,NULL,NULL,'',NULL),(45,'2002-12-18',42,'Lobiranje u Copenhagenu za ulazak u Europsku uniju.',NULL,NULL,'http://arhiva.nacional.hr/clanak/15451/lobiranje-vesne-pusic',NULL,NULL,NULL,'',NULL),(46,'2002-12-24',59,'Prodao Večernji list Styriji za 24 milijuna DEM (Linićevi protivnici smatraju da je taj iznos premalen).',NULL,NULL,'http://arhiva.nacional.hr/clanak/10460/linicev-rijecki-lobi-vlada-hrvatskom',NULL,NULL,NULL,'',NULL),(47,'2002-12-24',59,'Potpisan (<NAME> i Slavko Linić) stand-by aranžman koji obvezuje Vladu da u sljedeća tri mjeseca proda 25 dionica Ine te 25 posto dionica Hrvatske poštanske banke. Potonja će preuzeti u vlasništvo Croatia banku i prepoloviti svoj portfelj u oko 1100 tvrtki u državnom vlasništvu.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10463/vlada-je-potpisala-stetan-sporazum-s-mmf-om-samo-zato-da-proda-inu',NULL,NULL,NULL,'',NULL),(48,'2002-11-13',42,'Spremna na suradnju s Haškim sudom. Ne protivi se slanju Hrvatskih generala na Haški sud, sve u cilju skorašnjeg pristupanja Hrvatske Europskoj uniji.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10418/ova-vlada-je-neodrziva-ideoloski-jaz-sdp-a-i-hss-a-je-nepremostiv',NULL,NULL,NULL,'',NULL),(49,'2002-04-02',59,'Jedan je od glavnih aktera u aferi \"Riječka banka\", u kojoj je RH oštećena za 100 milijuna eura.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10197/umjesto-1-kune-hrvatska-ce-nijemcima-morati-platiti-100-milijuna-eura',NULL,NULL,NULL,'',NULL),(51,'2002-11-20',76,'Umirovljenje 41 visokog časnika među kojima je čak 25 brigadira, generala i admirala zbog navodnog destabilizirnja vlasti. ',NULL,NULL,'http://arhiva.nacional.hr/clanak/10422/hv-preuzimaju-bivsi-hdz-ovci',NULL,NULL,NULL,'',NULL),(52,'2003-03-19',40,'Zajednička odluka s Račanom o nepodupiranju američke intervencije u Iraku.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10543/hrvatska-vlada-grubo-odbila-sad',NULL,NULL,NULL,'',NULL),(53,'2003-03-26',45,'Osnovana tvrtka Somoli d.o.o. (obavještajno-zaštitarski poslovi)',NULL,NULL,'http://arhiva.nacional.hr/clanak/15593/karamarko-osnovao-tvrtku-za-obavjestajne-procjene',NULL,NULL,NULL,'',NULL),(54,'2003-04-02',16,'Sazvan sastanak kako bi se riješilo pitanje legalizacije stambenog prostora Josipa Radeljaka (pronalazak zakonskog pokrića za postojeće nezakonitosti)',NULL,NULL,'http://arhiva.nacional.hr/clanak/15616/milan-bandic-spasitelj-josipa-radeljaka',NULL,NULL,NULL,'',NULL),(55,'2003-05-20',16,'Potpisao odluku koja postavlja <NAME>ća (osuđen na 18 mj. zatvora) za šefa turističke zajednice.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10588/velnic-je-dvije-godine-robijao-u-lepoglavi-zbog-pronevjere',NULL,NULL,NULL,'',NULL),(56,'2003-06-04',17,'Neprovedena zakonska rješenja i nepotpisivanje ugovora o dopunskom osiguranju s HZZO-om za zaposlenike MORH-a.',NULL,NULL,'http://arhiva.nacional.hr/clanak/15704/zaposlenici-dobili-dopunsko-osiguranje',NULL,NULL,NULL,'',NULL),(57,'2003-08-05',40,NULL,'Uz njegovu prisutnost otvoreno libijsko veleposlanstvo (dobri odnosi sa predsjednikom Gadafijem)',NULL,'http://arhiva.nacional.hr/clanak/10667/hrvatska-ekonomska-elita-u-libijskoj-ambasadi',NULL,NULL,NULL,'',NULL),(58,'2003-10-14',50,'Nedolazak na sastanak američkih izaslanika (Busheva administracija)',NULL,NULL,'http://arhiva.nacional.hr/clanak/10741/sest-grijeha-hrvatske-politike-prema-sad-u',NULL,NULL,NULL,'',NULL),(59,'2003-10-14',76,'Nakon prvog preleta američkog vojnog transportnog aviona, zabranila ponovni ulazak u hrvatski zračni prostor',NULL,NULL,'http://arhiva.nacional.hr/clanak/10741/sest-grijeha-hrvatske-politike-prema-sad-u',NULL,NULL,NULL,'',NULL),(60,'2003-07-02',59,'Doveo u pitanje pravovremeno otvaranje dionice autoceste Gornja ploča-Zadar 2. Na poziciju direktora Hrvatskih cesta doveo partijskog druga <NAME>',NULL,NULL,'http://arhiva.nacional.hr/clanak/10631/sukob-sdp-i-hns-a-ugrozio-uspjesan-zavrsetak-autoceste',NULL,NULL,NULL,'',NULL),(61,'2003-12-03',77,'Uz Bebića i Žužula postaje Sanaderova desna ruka (pružanje potpore u obračunu frakcija nakon izborne katastrofe 2000.)',NULL,NULL,'http://arhiva.nacional.hr/clanak/10798/sanaderov-politbiro-cine-vladimir-seks-luka-bebic-i-miomir-zuzul',NULL,NULL,NULL,'',NULL),(62,'2003-12-09',36,'Zalaže se za koaliranje HDZ-a, SDP-a, HSS-a i HNS-a.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10804/cacic-i-vesna-pusic-u-ratu-zbog-poraza',NULL,NULL,NULL,'',NULL),(63,'2003-07-08',16,'Bandić omogućio vlasniku Croatia bus-a stjecanje enormnog profita dajući mu gradsko zemljište u zamjenu za dvostruko jeftinije zemljište Croatia bus-a.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10642/dogadanje-naroda-u-croatia-busu-novi-udar-bandicevih-ljudi-na-vlastu-pavic',NULL,NULL,NULL,'',NULL),(64,'2003-12-16',22,'Novo lice na nacionalnoj političkoj sceni i kandidat za ministarstvo graditeljstva i javnih radova u Vladi.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10812/nastavit-cu-pos-i-dobre-caciceve-projekte',NULL,NULL,NULL,'',NULL),(65,'2003-07-08',16,'Bandić u alkoholiziranom stanju izazvao prometnu nesreću te pobjegao sa mjesta nesrećem, nakon čega je svoje mjesto gradonačelnika morao ustupiti Vlasti Pavić.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10642/dogadanje-naroda-u-croatia-busu-novi-udar-bandicevih-ljudi-na-vlastu-pavic',NULL,NULL,NULL,'',NULL),(66,'2015-07-15',16,'Interesna grupa unutar gradskog SDP-a koja pripada dominantnoj frakciji <NAME> pokušala je pogodovati kontroverznim poduzetnicima Tomislavu Horvatinčiću, Anti Žužulu i Mladenu Vedrišu.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10645/gup-pobjeda-racana-i-vlaste-pavic-nad-bandicevim-ljudima',NULL,NULL,NULL,'',NULL),(67,'2003-12-30',16,'Vozio u pijanom stanju, a kad su ga plicajci zaustavili pokušao ih je podmititi.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10828/sdp-ovci-zele-na-celu-stranke-bandica',NULL,NULL,NULL,'',NULL),(68,'2003-12-30',54,'Kao ministrica pravosuđa radila je više od prosjeka kako bi popravila stanje u hrvatskom sudstvu, no bezuspješno.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10830/nasmijesena-ministrica-vodi-seksovo-pravosude',NULL,NULL,NULL,'',NULL),(69,'2004-01-06',40,'Protivi se potpisivanju dokumenta kojim bi Američki vojnici dobili imunitet od međunarodnog suda za ratne zločine.',NULL,NULL,'http://arhiva.nacional.hr/clanak/10839/sanader-i-mesic-u-sukobu-zbog-amerike',NULL,NULL,NULL,'',NULL),(70,'2004-02-10',56,NULL,'Račan je bježao od suradnje s nama, a Sanader nam je ponudio suradnju. Osim toga, Ivicu Račana poznajem puno dulje i bolje, a Sanadera kraće i slabije. Račan je bio moj partijski drug, a Sanader nije.',NULL,'http://arhiva.nacional.hr/tiskano/arhiva/2004/3',NULL,NULL,NULL,'',NULL),(71,'2004-02-24',47,'Davanje ljetnikovca u dugogodišnju koncesiju',NULL,NULL,'http://arhiva.nacional.hr/clanak/10892/dubrovnik-zapustene-ljetnikovce-daje-na-stogodisnju-koncesiju',NULL,NULL,NULL,'',NULL),(72,'2004-03-09',40,NULL,'<NAME> protivi se slanju Hrvatskih vojnika u Irak, koji bi bili pod američkim zapovjedništvom.',NULL,'http://arhiva.nacional.hr/clanak/10912/racan-ce-se-pridruziti-sanaderu-protiv-mesica',NULL,NULL,NULL,'',NULL),(73,'2004-06-13',73,'Zalaže se za osnivanje suda koji će se baviti ratnim zločinima. ','Protivi se zakonu koji omogućuju kažnjavanje noviranra za klevetu.',NULL,'http://arhiva.nacional.hr/clanak/10925/vlada-rh-osniva-sud-za-ratne-zlocine',NULL,NULL,NULL,'',NULL),(74,'2004-05-04',16,'27.4.2004. u zagrebačkoj Gradskoj skupštini psovao je <NAME> nakon što se pokrenulo pitanje o slučaju \"Zagrepčanka\" (mediji objavili više članaka u kojima se tvrdi da je Bandić odgovoran što je grad izgubio 15 milijuna eura)',NULL,NULL,'http://arhiva.nacional.hr/clanak/10985/racan-ustuknuo-pred-bandicevim-divljastvom',NULL,NULL,NULL,'',NULL),(75,'2004-05-11',16,'Državno odvjetništvo pismeno upozorilo <NAME> na brojne sporne okolnosti u Ugovoru o kupoprodaji nekretnina, kojim je Bandić potrošio 30.000.000 maraka kako bi neposrednom pogodbom kupio “Zagrepčankin” industrijski kompleks bivše klaonice i stočne tržnice u Heinzelovoj ulici 68',NULL,NULL,'http://arhiva.nacional.hr/clanak/10993/pobuna-sdp-ovaca-protiv-bandiceva-zastitnika-racana',NULL,NULL,NULL,'',NULL),(76,'2004-06-15',76,'<NAME> Mesić omogućili uspon generalu <NAME> koji je poznat po svom nasilničkom ponašanju. Kruljac također ima kontakte u brodsko-posavskoj policiji koji mu omogućuju da njegovi postupci prolaze nekažnjeno.',NULL,NULL,'http://arhiva.nacional.hr/clanak/11027/mladen-kruljac-nasilnik-pod-zastitom-morh-a',NULL,NULL,NULL,'',NULL),(77,'2004-07-27',36,'Tvrtke čiji je <NAME> suvlasnik između 2000. i 2003. od države dobile poslove vrijedne više od 244.000.000 kuna.',NULL,NULL,'http://arhiva.nacional.hr/clanak/11071/cacic-od-2000-do-2003-dobio-250-mil-kuna-drzavnih-poslova',NULL,NULL,NULL,'',NULL),(78,'2004-07-27',44,'U samo nekoliko mjeseci postao je jedan od najvažnijih članova SDP-a što je rezultiralo njegovim izborom za člana Izvršnog odbora zaduženog za međunarodne odnose, ali i za suradnju s ostalim strankama.',NULL,NULL,'http://arhiva.nacional.hr/clanak/11074/racanov-strateg-za-diplomaciju-i-oporbenu-suradnju',NULL,NULL,NULL,'',NULL),(79,'2004-08-10',7,'<NAME> i njegovi suradnici nisu jedini koji su pomogli u Blaškićevu slučaju, ali su, po svemu sudeći, u njemu imali najznačajniju ulogu.',NULL,NULL,'http://arhiva.nacional.hr/clanak/11089/nobilu-je-ulagivanje-tudmanu-bilo-vaznije-od-obrane-blaskica',NULL,NULL,NULL,'',NULL),(80,'2004-08-17',40,'Hrvatski predsjednik cijelo se ljeto 2004. vozi jahtom \"Jadranka\" u vlasništvu Hrvatske ratne mornarice.',NULL,NULL,'http://arhiva.nacional.hr/clanak/11090/sef-hrm-a-umalo-utopio-mesica',NULL,NULL,NULL,'',NULL),(81,'2004-09-07',40,NULL,'U potpunosti stao u zaštitu Zdravku Kardumu (Hrvatski viceadmiral i bivši zapovjednik Hrvatske ratne mornarice)',NULL,'http://arhiva.nacional.hr/clanak/11110/hrm-nema-nijedan-ispravni-brod',NULL,NULL,NULL,'',NULL),(82,'2004-09-07',66,'Nakon što biva izviždana na Trgu bana Jelačića od strane 50 000 sudionika koji su dočekali rukometaše, odlazi u Ministarstvo te vrijeđa tajnicu',NULL,NULL,'http://arhiva.nacional.hr/clanak/15786/kosor-opet-napala-sluzbenice',NULL,NULL,NULL,'',NULL),(83,'2004-09-12',42,NULL,'Predlaze fitness dvoranu u sklopu sabora',NULL,'http://www.vecernji.hr/hrvatska/vi-biste-fitness-dvoranu-a-ja-samo-novi-bicikl-800855',NULL,NULL,NULL,'',NULL),(84,'2004-11-02',37,NULL,NULL,NULL,'http://arhiva.nacional.hr/clanak/15851/mup-podnio-kaznenu-prijavu-protiv-ranka-ostojica-zbog-nestanka-150000-e','Podnesena kaznena prijava protiv njega zbog sumnje na krađu 150.000 eura iz kase MUP-a.',NULL,NULL,'',NULL),(85,'2004-09-11',66,NULL,'Protivi legalizacije istospolnih brakova, 2013.god. više se ne protivi',NULL,'http://arhiva.nacional.hr/clanak/11190/pet-kandidata-u-jurisu-na-stipu-mesica',NULL,NULL,NULL,'',NULL),(86,'2004-11-09',66,NULL,'Protiv dekriminilizacije lakih i teški droga, \"Nema lakih i teških droga, svaka droga je opasna za mlade ljude. Protiv sam dekriminalizacije.\"',NULL,'http://arhiva.nacional.hr/clanak/11190/pet-kandidata-u-jurisu-na-stipu-mesica',NULL,NULL,NULL,'',NULL),(87,'2004-11-15',28,'Broj 1 na top listi političara nadzornih odbora: <NAME> (HDZ), 19.441 milijardi kuna godišnje FINA predsjednik nadzornog odbora, HŽ d.o.o. član nadzornog odbora, Ina d.d. predsjednik nadzornog odbora, Hrvatski fond za privatizaciju, član nadzornog odbora, Croatia osiguranje d.d.',NULL,NULL,'http://arhiva.nacional.hr/clanak/11197/200-kontrolora-hrvatske-privrede',NULL,NULL,NULL,'',NULL),(88,'2004-11-15',22,'Broj 2 na top listi političara nadzornih odbora: <NAME> (HDZ), 18.043 milijardi kuna godišnje Ina d.d., HŽ d.o.o.',NULL,NULL,'http://arhiva.nacional.hr/clanak/11197/200-kontrolora-hrvatske-privrede',NULL,NULL,NULL,'',NULL),(89,'2005-01-25',42,NULL,'Naljutila Ivicu Račan te Ivu Sanadera iniciranjem zahtjeva za osnivanje istražnog povjerenstva koje bi provjerilo kako je Sanader stekao respektabilnu imovinu',NULL,'http://arhiva.nacional.hr/clanak/11276/ivica-racan-mi-nije-razjasnio-dogovor-s-hdz-om',NULL,NULL,NULL,'',NULL),(91,'2005-03-15',40,'Spasio članstvo Hrvatske u NATO-u.',NULL,NULL,'http://arhiva.nacional.hr/clanak/11326/mesic-spasio-clanstvo-u-nato-u',NULL,NULL,NULL,'',NULL),(92,'2005-04-05',36,'21. na ljestvici najbogatijih Hrvata.',NULL,NULL,'http://arhiva.nacional.hr/clanak/11342/najbogatiji-2005',NULL,NULL,NULL,'',NULL),(93,'2005-04-12',37,'Protiv njega je podnesena kaznena prijava zbog sumnjivog trošenja novca u potrazi za generalom Gotovinom.',NULL,NULL,'http://arhiva.nacional.hr/clanak/11345/oscar-vera-pod-istragom-u-bih-zbog-250000-e',NULL,NULL,NULL,'',NULL),(94,'2005-05-10',40,'U razgovoru s ruskim predsjednikom Vladimirom Putinom zatražio helikoptere umjesto aviona.',NULL,NULL,'http://arhiva.nacional.hr/clanak/16094/umjesto-aviona-mesic-trazi-helikoptere',NULL,NULL,NULL,'',NULL),(95,'2005-05-17',16,'15. svibnja pobjeđuje na lokalnim izborima',NULL,NULL,'http://pages.citebite.com/a4h5l2j6y2xoi',NULL,NULL,NULL,'',NULL),(96,'2005-05-31',36,'15. svibnja postaje novi varaždinski župan.',NULL,NULL,'http://arhiva.nacional.hr/clanak/18591/hrvatska-je-hidrocefalus',NULL,NULL,NULL,'',NULL),(97,'2005-06-14',28,'Doveo Hrvatsku do potpune blokade državnih financija zbog ne postojanja novca u državnoj blagajni za podmirenje iznosa od 350 mil. € kredita',NULL,NULL,'http://arhiva.nacional.hr/clanak/18721/spekulanti-spasili-hrvatsku-od-bankrota',NULL,NULL,NULL,'',NULL),(98,'2005-06-27',36,NULL,'Tvrdi da će autocesta Zagreb-Split 2010.god financirati državu, \" Sjećate se i sami zlogukih glasova \'kako će to država otplatiti\', \'jadna Hrvatska\', \'generacije će plaćati\', sjećate se svih onih priča \'to je nemoguće\'. Ne samo da je bilo moguće, već od 2010. ulazimo u plus. To je vidljivo i iz prihoda koje već sad imamo\"',NULL,'http://arhiva.nacional.hr/clanak/18917/autocesta-isplativa-vec-2010',NULL,NULL,NULL,'',NULL),(99,'2005-07-18',40,'27.6.2005. objavljen intervju s njim u uglednom moskovskom magazinu \"Profil\".',NULL,NULL,'http://arhiva.nacional.hr/clanak/19379/mesic-u-ruskom-magazinu',NULL,NULL,NULL,'',NULL),(100,'2005-08-01',31,'Kao tadašnja ministrica vanjskih poslova boravila je u radnom posjetu SAD-u te održala predavanje na temu \"Hrvatska na križanju međunarodnih puteva\". Također, susrela se s nekoliko utjecajnih američkih kongresmena i senatora.',NULL,NULL,'http://arhiva.nacional.hr/clanak/19686/kolinda-grabar-kitarovic-u-americi',NULL,NULL,NULL,'',NULL),(101,'2005-11-14',16,'Na mjesto urednika i glavnog direktora Z1 postavio <NAME>ća.',NULL,NULL,'http://arhiva.nacional.hr/clanak/21567/bandic-potpuno-preuzeo-z1',NULL,NULL,NULL,'',NULL),(102,'2005-11-21',73,'2005. splitska odvjetnica <NAME>ta tereti Škare-Ožbolt za otuđenje 100.000 eura, no Sanader još ne pokreće postupak. ',NULL,NULL,'http://arhiva.nacional.hr/clanak/21681/premijer-zataskava-prijavu',NULL,NULL,NULL,'',NULL),(103,'2005-11-28',16,'Proslavio 50. rođendan u lokalu \"Kod Skendera\".',NULL,NULL,'http://arhiva.nacional.hr/clanak/21835/bandicevo-slavlje-u-skenderici',NULL,NULL,NULL,'',NULL),(104,'2005-12-06',73,NULL,'Postignut dogovor sa Sanaderom o gašenju Demokratskog centra ',NULL,'http://arhiva.nacional.hr/clanak/21907/saveznici-zbunjeni-spajanjem-dc-a-i-hdz-a',NULL,NULL,NULL,'',NULL),(105,'2005-12-12',24,'Daje intervju u kojem se izjašnjava za ukidanje saborskih mirovina.',NULL,NULL,'http://arhiva.nacional.hr/clanak/22019/sanaderu-treba-oduzeti-putovnicu-jer-radi-probleme',NULL,NULL,NULL,'',NULL),(106,'2006-01-09',31,'U povodu božićno-novogodišnjih blagdana, ministrica vanjskih poslova <NAME>-Kitarović promaknula je čak 120 domaćih diplomata',NULL,NULL,'http://arhiva.nacional.hr/clanak/22500/u-mvp-u-promaknut-pasalicev-covjek',NULL,NULL,NULL,'',NULL),(107,'2006-01-30',22,'Ponovno produžio ugovor o radu u Upravi za prognanike i izbjeglice s ispostavom u Petrinji, iako je doznao da su nedavno protiv Sužnjevića u Odjelu za terorizam i ratne zločine sisačke policije svjedočila dvojica bivših ratnih logoraša <NAME>ć i Sen<NAME>, a prije toga je njihovu priču da ih je Sužnjević maltretirao i ponižavao prikazala Nova TV',NULL,NULL,'http://arhiva.nacional.hr/clanak/22909/kalmeta-poslodavac-strpcevu-suradniku',NULL,NULL,NULL,'',NULL),(108,'2006-03-20',36,'20.ti najbogatiji hrvat, vrijednost: 48 mil.€',NULL,NULL,'http://arhiva.nacional.hr/clanak/23919/50-najbogatijih-hrvata',NULL,NULL,NULL,'',NULL),(109,'2006-04-24',40,'Nedavno dobio poziv od iranske diplomacije za posredovanje u pokušaju rješavanja spora između Irana i SAD-a.',NULL,NULL,'http://arhiva.nacional.hr/clanak/24729/iran-zeli-mesica-za-arbitra-u-sporu-s-sad-om',NULL,NULL,NULL,'',NULL),(110,'2006-07-17',40,'Pokretanje DružbAdria projekta (pitanje naftovoda).',NULL,NULL,'http://arhiva.nacional.hr/clanak/26464/hrvatskim-tvrtkama-zbog-mesicevih-veza-prednost-u-naftom-bogatom-kazahstanu',NULL,NULL,NULL,'',NULL),(111,'2006-07-31',22,'Prošlog tjedna održao sastanak o obnovi Starigrada- Paklenice.',NULL,NULL,'http://arhiva.nacional.hr/clanak/26785/kalmetina-inicijativa-za-starigrad',NULL,NULL,NULL,'',NULL),(112,'2006-08-07',40,'U dva mandata putovao 156 puta.',NULL,NULL,'http://arhiva.nacional.hr/clanak/26888/262-putovanja-mesica-i-sanadera',NULL,NULL,NULL,'',NULL),(113,'2006-08-07',73,'Piše zakon o maslinama.',NULL,NULL,'http://arhiva.nacional.hr/clanak/26910/vesna-skare-ozbolt-pise-zakon-o-maslinama',NULL,NULL,NULL,'',NULL),(114,'2006-09-18',36,'Započinje kampanju za premijera. ',NULL,NULL,'http://arhiva.nacional.hr/clanak/27761/cacic-kombijem-na-turneju-po-hrvatskoj',NULL,NULL,NULL,'',NULL),(115,'2006-10-09',16,'Njegov bratić postaje ambasador u Mađarskoj.',NULL,NULL,'http://arhiva.nacional.hr/clanak/28280/bandicev-bratic-postaje-ambasador-u-madarskoj',NULL,NULL,NULL,'',NULL),(116,'2006-11-27',28,'Građani ga smatraju idejnim tvorcem HDZ-ova zakona kojim Grad Zagreb ostaje bez prihoda iz poreza na dobit.',NULL,NULL,'http://arhiva.nacional.hr/clanak/29415/ivan-suker-sef-drzavnih-financija-na-dobitku-500-gradova',NULL,NULL,NULL,'',NULL),(117,'2006-12-19',31,'Kao ministrica, našla se u središtu pozornosti zbog tadašnjih afera s drogom koje potresaju Ministarstvo vanjskih poslova.',NULL,NULL,'http://arhiva.nacional.hr/clanak/29958/afere-s-drogom-dogodile-su-se-prije-mog-mandata',NULL,NULL,NULL,'',NULL),(118,'2007-01-23',36,'Prema istraživanju agencije Markot.tel vodi u kandidaturi za premijera.',NULL,NULL,'http://arhiva.nacional.hr/clanak/30842/cacic-vodi-u-premijerskoj-utrci-sdp-najjaca-stranka',NULL,NULL,NULL,'',NULL),(119,'2007-01-23',66,'Tadašnja predstojnica Vladina ureda za udruge <NAME> djelomično okrivljuje Jadranku Kosor za svoju smjenu.',NULL,NULL,'http://arhiva.nacional.hr/clanak/30836/jadranka-kosor-obmanula-je-premijera-i-javnost',NULL,NULL,NULL,'',NULL),(120,'2007-04-10',16,'Desetak hrvatskih kompanija koje svoja postojenja imaju na području Zagreba u sukobu s Bandićem zbog visokih naknada koje plaćaju.',NULL,NULL,'http://arhiva.nacional.hr/clanak/33256/pobuna-krupne-industrije-protiv-bandica',NULL,NULL,NULL,'',NULL),(121,'2007-04-17',44,'Novo lice na političkoj sceni- u studenome 2007. godine trebao bi s Ljubom Jurčićem biti glavni izazivač tadašnjoj Vladi.',NULL,NULL,'http://arhiva.nacional.hr/clanak/33501/zoran-milanovic-uspon-racanova-nasljednika',NULL,NULL,NULL,'',NULL),(122,'2007-04-24',44,'Oponenti iz SDP-a plasiraju lažne optužbe o njegovoj srpskoj nacionalnosti.',NULL,NULL,'http://arhiva.nacional.hr/clanak/33756/lazne-optuzbe-da-je-milanovic-srbin',NULL,NULL,NULL,'',NULL),(123,'2007-04-24',76,'Nakon Milanovićeve objave kandidature za predsjenika SDP-a (20.4.2007.) lobira za potporu članstva, no još uvijek nema kandidature.',NULL,NULL,'http://arhiva.nacional.hr/clanak/33750/antunovic-arlovic-alijansa-protiv-milanovica',NULL,NULL,NULL,'',NULL),(124,'2007-05-22',44,'Na Forumu mladih SDP-a raspravljao s kolegom kandidatom za šefa SDP-a, Milanom Bandićem.',NULL,NULL,'http://arhiva.nacional.hr/clanak/34638/obracun-bandica-i-milanovica-odlucuje-o-sefu-sdp-a',NULL,NULL,NULL,'',NULL),(125,'2007-05-29',33,'Prošli vikend proveo na SDP-ovom skupu o zdravstvu.',NULL,NULL,'http://arhiva.nacional.hr/clanak/34844/kandidat-za-ministra-na-sdp-ovu-skupu-o-zdravstvu',NULL,NULL,NULL,'',NULL),(126,'2007-05-29',42,'Izjašnjava se pod kojim uvjetima želi formirati koaliciju sa SDP-om te objašnjava gdje se nalazi HNS sa svojim političkim programom.',NULL,NULL,'http://arhiva.nacional.hr/clanak/34839/od-sdp-a-trazim-detaljan-sporazum',NULL,NULL,NULL,'',NULL),(127,'2007-06-05',66,'Članovima obitelji branitelja poginulih u Domovinskom ratu podijelila pakete kave u Lipiku.',NULL,NULL,'http://arhiva.nacional.hr/clanak/35048/kosor-obiteljima-poginulih-dijelila-po-20-dkg-kave',NULL,NULL,NULL,'',NULL),(128,'2007-06-05',44,'2.6.2007. pobijedio na izborima za novog predjednika SDP-a.',NULL,NULL,'http://arhiva.nacional.hr/clanak/35071/milanovic-siri-bazu',NULL,NULL,NULL,'',NULL),(129,NULL,44,'Stranačke kolege protiv njegovog prijedloga prema kojem bi se ukinulo pravo dijaspore na glasanje za Hrvatski sabor.',NULL,NULL,'http://arhiva.nacional.hr/clanak/35255/stranacke-kolege-napale-milanovica-zbog-dijaspore',NULL,NULL,NULL,'',NULL),(130,'2007-06-12',36,'U svojoj kandidaturi za premijera smatra kako je njegova dvogodišnja predizborna kampanja donijela mnogo toga pozitivnog.',NULL,NULL,'http://arhiva.nacional.hr/clanak/35223/moja-kampanja-vec-mijenja-hrvatsku',NULL,NULL,NULL,'',NULL),(131,'2007-06-26',40,'Pokazao svoje dobro znanje ruskog jezika uz večeru s Vladimirom Putinom nakon Energetskog summita u Zagrebu.',NULL,NULL,'http://arhiva.nacional.hr/clanak/35631/3-sata-uz-zlahtinu-i-skoljke',NULL,NULL,NULL,'',NULL),(132,'2007-07-03',16,NULL,'U Hercegovini dobio svoj uglazbljeni ep \"Životni put Milana Bandića\".',NULL,'http://arhiva.nacional.hr/clanak/35826/najveci-glazbeni-hit-je-ep-o-milanu-bandicu',NULL,NULL,NULL,'',NULL),(133,NULL,40,'Ponovno otvorio pitanje uloge austrijskih banaka u pljački hrvatskog novca za obranu',NULL,NULL,'http://arhiva.nacional.hr/clanak/36027/mesic-i-bajic-u-udaru-na-austrijske-banke',NULL,NULL,NULL,'',NULL),(134,'2007-07-16',40,'Na Brijunima susreo se s Haaškom tužiteljicom Carlom Del Ponte.',NULL,NULL,'http://arhiva.nacional.hr/clanak/36209/setnja-uz-istarski-prsut-sir-i-vino',NULL,NULL,NULL,'',NULL),(135,'2007-07-24',50,'Sazvao konferenciju za novinare zajedno s Vesnom Šakre-Ožbolt kako bi demantirao tvrdnje da uopće ne živi u Velikoj Gorici.',NULL,NULL,'http://arhiva.nacional.hr/clanak/36412/neuvjerljivi-tonino-picula',NULL,NULL,NULL,'',NULL),(136,'2007-08-28',40,'Proveo nekoliko dana na Hvaru sa svojim slovenskim prijateljem, poduzetnikom Božom Dimnikom.',NULL,NULL,'http://arhiva.nacional.hr/clanak/37297/mesicev-tajnoviti-slovenski-prijatelj',NULL,NULL,NULL,'',NULL),(137,'2007-09-11',40,'13. rujna 2007. otvorit će obnovljenu kuću Lavoslava Ružićke. ',NULL,NULL,'http://arhiva.nacional.hr/clanak/37752/predsjednik-mesic-otvara-obnovljenu-ruzickinu-kucu',NULL,NULL,NULL,'',NULL),(138,'2007-09-18',44,'Zajedno s Bandićem primio šezdesetak novih članova u SDP.',NULL,NULL,'http://arhiva.nacional.hr/clanak/37985/milanovic-i-bandic-unovacili-60-ljudi-u-sdp',NULL,NULL,NULL,'',NULL),(139,'2007-09-18',44,'Njegovi roditelji govore o vlastitim korijenima i povijest obitelji.',NULL,NULL,'http://arhiva.nacional.hr/clanak/37991/tezacki-i-gospodski-korijeni-zorana-milanovica',NULL,NULL,NULL,'',NULL),(140,'2007-10-02',40,'Posjetio New York i susreo se s važnim svjetskim vođama.',NULL,NULL,'http://arhiva.nacional.hr/clanak/38430/mesicev-dnevnik-iz-new-yorka',NULL,NULL,NULL,'',NULL),(141,'2007-10-16',40,'Predsjednik države uči igrati golf s najboljim hrvatskim golferom.',NULL,NULL,'http://arhiva.nacional.hr/clanak/38885/predsjednik-stjepan-mesic-uci-igrati-golf',NULL,NULL,NULL,'',NULL),(142,'2007-10-23',44,'Posjetio Ovčaru.',NULL,NULL,'http://arhiva.nacional.hr/clanak/39129/milanovic-na-ovcari-bez-novinara',NULL,NULL,NULL,'',NULL),(143,'2007-10-23',44,'Sastavlja izborne liste SDP-a.',NULL,NULL,'http://arhiva.nacional.hr/clanak/39137/milanovic-prisilio-arlovica-na-povlacenje-iz-politike',NULL,NULL,NULL,'',NULL),(144,'2007-10-30',37,'Ne odaziva se na sud u parnici koju je protiv njega podigao Ivo Pukanić',NULL,NULL,'http://arhiva.nacional.hr/clanak/39394/ako-je-ranko-ostojic-glavni-milanovicev-kadar-kakvi-su-tek-ostali',NULL,NULL,NULL,'',NULL),(145,'2007-11-19',16,'<NAME> godišnje daje 39, 6 milijuna kuna nogometnom klubu Dinamo.',NULL,NULL,'http://arhiva.nacional.hr/clanak/40062/iz-bandicevih-fondova-pola-kase-dinama',NULL,NULL,NULL,'',NULL),(146,'2007-11-26',77,'Održat će govor na promociji izdavačke kuće Antuna Vujića.',NULL,NULL,'http://arhiva.nacional.hr/clanak/40323/seksov-govor-na-vujicevoj-promociji',NULL,NULL,NULL,'',NULL),(147,'2007-11-26',44,'Vjerojatno ostaje na čelu SDP-a i nakon izbora.',NULL,NULL,'http://arhiva.nacional.hr/clanak/40327/zoran-milanovic-ostaje-predsjednik-sdp-a',NULL,NULL,NULL,'',NULL),(148,'2007-12-03',53,'Intervju u kojem otkriva zašto želi biti nova predsjednica HSP-a.',NULL,NULL,'http://arhiva.nacional.hr/clanak/40543/ruza-tomasic-ja-sefica-anto-dapic-savjetnik',NULL,NULL,NULL,'',NULL),(149,'2007-12-10',36,'Intervju u kojem komentira utjecaj Zorana Milanovića na izborni rezultat HNS-a i moguću koaliciju s HDZ-om.',NULL,NULL,'http://arhiva.nacional.hr/clanak/40776/hrvatska-nije-sazrela-za-koaliciju-hdz-hns',NULL,NULL,NULL,'',NULL),(150,'2012-01-25',34,'Kao tadašnja ministrica zaštite okoliša najavila reviziju studije utjecaja Plivinog proizvodnog pogona zbog najavljenog njegovog proširenja.',NULL,NULL,'http://www.vecernji.hr/zg-vijesti/prosvjedni-performans-zbog-gradnje-plivine-tvornice-369720',NULL,NULL,NULL,'',NULL),(151,'2008-11-25',34,'Proziva Vladu da se oslanja samo na \"megaprojekte\" time zanemarujući rizike negatvnih utjecaja na zdravlje ljudi i okoliš.',NULL,NULL,'http://www.vecernji.hr/hrvatska/jurcic-sto-prije-osigurati-dovoljno-energije-za-gospodarstvo-i-kucanstva-848960',NULL,NULL,NULL,'',NULL),(152,'2009-06-10',34,'Protivi se \"antigay\" skupu koji organiziraju Hrvatski nacionalisti i Hrvatska čista stranka prava.',NULL,NULL,'http://www.vecernji.hr/hrvatska/lucin-nedopustivo-je-da-mup-dozvoli-antigay-skup-koji-siri-govor-mrznje-877086',NULL,NULL,NULL,'',NULL),(153,'2009-09-30',34,'Protivi se ulasku genetski modificiranih organizama u Hrvasku.',NULL,NULL,'http://www.vecernji.hr/hrvatska/zbog-eu-sabor-ce-omoguciti-ulazak-gmo-a-u-hrvatsku-27564',NULL,NULL,NULL,'',NULL),(154,'2010-03-17',34,'Dobila opomenu za vrijeđanje zbog napada na tadašnju premijerku Jadranku Kosor.',NULL,NULL,'http://www.vecernji.hr/hrvatska/sdp-neka-kosor-promijeni-broj-u-317625-to-je-broj-nezaposlenih-111953',NULL,NULL,NULL,'',NULL),(155,'2010-03-18',34,'Ispričala se za loše postupke zagrebačke Skupštine do kojih je, kako tvrdi, došlo zbog političke poslušnosti i loše informiranosti.',NULL,NULL,'http://www.vecernji.hr/hrvatska/komentar-sdp-glanca-sliku-svoju-sutajuci-milana-bandica-112846',NULL,NULL,NULL,'',NULL),(156,'2010-11-25',34,NULL,'Protivi se \"tihoj privatizaciji voda\".',NULL,'http://www.vecernji.hr/hrvatska/vlada-pretvara-hrvatske-vode-u-trgovacko-drustvo-219966',NULL,NULL,NULL,'',NULL),(158,'2010-11-26',34,'Provozala se oko Trga svetog Marka na električnom biciklu.',NULL,NULL,'http://www.vecernji.hr/hrvatska/zastupnica-cuhnil-pala-ispred-sabora-vozeci-elektricni-bicikl-220478',NULL,NULL,NULL,'',NULL),(159,'2011-02-27',34,NULL,'Zalaže se za izgradnju specijaliziranog centra koji bi transseksualnim osobama pružio medicinsku i psihološku pomoć te smatra da bi hrvatsko zdravstvo trebalo pokrivati troškove operacije promjene spola.',NULL,'http://www.vecernji.hr/zvijezde/mladic-19-iz-osijeka-operacijom-u-beogradu-postat-ce-zena-103300',NULL,NULL,NULL,'',NULL),(160,'2011-12-09',34,'Imenovana Ministricom zaštite okoliša.',NULL,NULL,'http://www.vecernji.hr/hrvatska/milanoviceva-krizaljka-miljenicu-pravosudje-mrsicu-rad-i-mirovine-354708',NULL,NULL,NULL,'',NULL),(161,'2012-01-19',34,'U intervjuu s Forumom otkriva da šalje inspektore u Plivin pogon nakon otkrića antibiotika u Savi',NULL,NULL,'http://www.vecernji.hr/hrvatska/sluzbenici-kakvi-otkazi-birokracija-treba-jos-13000-ljudi-367898',NULL,NULL,NULL,'',NULL),(162,'2012-04-04',34,NULL,'Kao ministrica zaštite okoliša i prirode kaže da će provesti studiju o utjecaju termoelektrane na okoliš koja bi se trebala graditi u Slavonskom Brodu.',NULL,'http://www.vecernji.hr/slavonija/cermak-u-slavonskom-brodu-necemo-graditi-ekolosku-bombu-395094',NULL,NULL,NULL,'',NULL),(163,'2012-04-07',34,'Pridružila se humanitarnoj akciji \"Kupimo omiljeni cvijet Ane Rukavine\".',NULL,NULL,'http://www.vecernji.hr/zg-vijesti/tulipane-i-cokoladna-jaja-dijelile-clanice-sdp-a-i-hns-a-395978',NULL,NULL,NULL,'',NULL),(164,'2012-04-10',34,'Potvrdila je poskupljenje komunalnih usluga zbog uslaska u Europsku uniju.',NULL,NULL,'http://www.vecernji.hr/hrvatska/cacic-potvrdio-poskupljenje-struje-vise-od-135-posto-396540',NULL,NULL,NULL,'',NULL),(165,'2012-05-15',34,'Kao tadašnja ministrica zaštite okoliša najavila imenovanje tada optužene San<NAME> kao šefice Fonda za zaštitu okoliša i energetsku učinkovitost.',NULL,NULL,'http://www.vecernji.hr/hrvatska/pocinje-sudjenje-nesudjenoj-sefici-fonda-za-zastitu-okolisa-410018',NULL,NULL,NULL,'',NULL),(166,'2012-05-25',34,'Sukob s Čačićem zbog gradnje termoelektrane Plomin 3.',NULL,NULL,'http://www.vecernji.hr/hrvatska/ministarstvo-okolisa-srusit-ce-projekt-plomin-3-413584',NULL,NULL,NULL,'',NULL),(167,'2012-05-27',34,'Ograđuje se od odlučivanja o izboru izvođača i tehnologije zbrinjavanja otpada.',NULL,NULL,'http://www.vecernji.hr/sjeverozapadna-hrvatska/t7-vis-podnosi-kaznene-prijave-protiv-habusa-vlasica-radelica-414554',NULL,NULL,NULL,'',NULL),(168,'2012-06-07',34,NULL,'Od građana dobila ocjenu 2, 95 za svoj rad',NULL,'http://www.vecernji.hr/hrvatska/ministar-rajko-ostojic-najbolje-ocijenjen-cacic-najlosije-417376',NULL,NULL,NULL,'',NULL),(169,'2012-06-07',34,'Podnijela ostavku na mjesto ministrice zaštite okoliša i prirode.',NULL,NULL,'http://www.vecernji.hr/hrvatska/mirela-holy-dala-ostavku-presudio-joj-milanovic-417610',NULL,NULL,NULL,'',NULL),(219,'2016-04-23',34,'\"Izašla sam iz ORaH-a prije dva mjeseca zbog svojih osobnih i profesionalnih razloga, međutim, ne želim komunicirati detaljnije o tome jer ne želim raditi štetu ideji ORaH-a koja je prekrasna\"',NULL,'<NAME> izašla iz ORaH-a, stranke koju je osnovala','http://www.vecernji.hr/hrvatska/mirela-holy-izasla-iz-orah-a-stranke-koju-je-osnovala-1078777',NULL,NULL,NULL,NULL,0);
/*!40000 ALTER TABLE `podaci` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `rijec`
--
DROP TABLE IF EXISTS `rijec`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rijec` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`naziv` varchar(45) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=349 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `rijec`
--
LOCK TABLES `rijec` WRITE;
/*!40000 ALTER TABLE `rijec` DISABLE KEYS */;
INSERT INTO `rijec` (`id`, `naziv`) VALUES (1,'milijun'),(2,'milijuna'),(3,'milijunom'),(4,'milijuni'),(5,'milijunima'),(6,'milijune'),(7,'pijan'),(8,'pijanoga'),(9,'pijanome'),(10,'pijanomu'),(11,'pijanim'),(12,'pijanih'),(13,'pijanima'),(14,'pijane'),(15,'pijanstvo'),(16,'opijanje'),(17,'bježao'),(18,'bježati'),(19,'bježim'),(20,'bježiš'),(21,'bježi'),(22,'bježimo'),(23,'bježe'),(24,'bježao'),(25,'bježala'),(26,'bježali'),(27,'bježale'),(28,'luksuz'),(348,'licemjer'),(33,'kuna'),(34,'kune'),(35,'kuni'),(36,'kunu'),(37,'kunom'),(38,'kunama'),(39,'kunska'),(40,'opstruiraju'),(41,'opstruiranj'),(46,'opstruent'),(47,'platila'),(48,'platiti'),(49,'platio'),(50,'platili'),(51,'plaćaju'),(52,'plaća'),(53,'euro'),(54,'eura'),(55,'euru'),(56,'eurima'),(57,'eurom'),(58,'eure'),(59,'europski'),(60,'europsko'),(61,'europske'),(62,'lažiranj'),(67,'lažirati'),(68,'nelegalno'),(69,'nelegalnoga'),(70,'nelegalnomu'),(71,'nelegalnima'),(72,'kuća'),(73,'kuće'),(74,'kući'),(75,'kuću'),(76,'kućom'),(77,'kućama'),(78,'okućnica'),(79,'stan'),(80,'stan'),(81,'stana'),(82,'stanu'),(83,'stanom'),(84,'stanova'),(85,'stanovima'),(86,'stanove'),(87,'stanovi'),(88,'profit'),(96,'alkohol'),(97,'pogodovati'),(98,'pogodujem'),(99,'pogoduješ'),(100,'pogoduje'),(101,'pogodujemo'),(102,'pogoduju'),(103,'pogodovano'),(104,'nekret'),(105,'nasilan'),(106,'nasilna'),(107,'nasilno'),(108,'nasilje'),(109,'nasilja'),(110,'nasilju'),(111,'nasiljem'),(112,'prisiliti'),(113,'jaht'),(114,'milijard'),(115,'prijav'),(116,'kazna'),(117,'kazne'),(118,'kaznu'),(119,'kazni'),(120,'kaznene'),(121,'kaznena'),(122,'kaznenoj'),(123,'kaznenu'),(124,'kaznenom'),(125,'kaznenih'),(126,'kaznenim'),(127,'boravi'),(128,'borave'),(129,'ukidanja'),(130,'ukidati'),(131,'ukinem'),(132,'ukineš'),(133,'ukine'),(134,'ukinemo'),(135,'ukinite'),(136,'ukinu'),(137,'ukidanje'),(138,'ukidanja'),(139,'ukidanju'),(140,'ukidanjem'),(141,'ukidanjima'),(142,'ukidajmo'),(143,'ukidajte'),(144,'putuje'),(145,'putovati'),(146,'putujem'),(147,'putuješ'),(148,'putujemo'),(149,'putujete'),(150,'putuju'),(151,'putujte'),(152,'putujmo'),(153,'bratić'),(154,'rodb'),(155,'otac'),(156,'otaca'),(157,'ocima'),(158,'sin'),(159,'sina'),(160,'sinu'),(161,'sinom'),(162,'sinovi'),(163,'sinova'),(164,'sinovima'),(165,'sinove'),(166,'kći'),(167,'kćeri'),(168,'kćer'),(169,'kćeri'),(170,'kćerkom'),(171,'kćerima'),(172,'kćerke'),(173,'dijaspo'),(174,'istrag'),(175,'istrazi'),(176,'kriminal'),(177,'jezik'),(178,'jezic'),(179,'pljačk'),(180,'tajna'),(181,'tajne'),(182,'tajni'),(183,'tajnu'),(184,'tajnom'),(185,'tajnama'),(186,'tajiti'),(187,'povjerljiv'),(188,'gay'),(189,'parada'),(190,'paradom'),(191,'brak'),(192,'štet'),(193,'prisluškiva'),(194,'objavljiva'),(195,'objava'),(196,'objaviti'),(197,'razotkri'),(198,'skandal'),(199,'sigurnost'),(200,'sigurnošću'),(201,'siguran '),(202,'sigurn'),(203,'kriza'),(204,'krize'),(205,'krizi'),(206,'krizu'),(207,'krizama'),(208,'krizno'),(209,'krizna'),(210,'krizni'),(211,'krizne'),(212,'dug'),(213,'duga'),(214,'dugu'),(215,'dugom'),(216,'dugovi'),(217,'dugova'),(218,'dugovima'),(219,'dugove'),(220,'dugovati'),(221,'dugujem'),(222,'duguješ'),(223,'duguje'),(224,'dugujemo'),(225,'dugujete'),(226,'duguju'),(227,'rezovi'),(228,'rezova'),(229,'rezovima'),(230,'rezove'),(231,'rezati'),(232,'režu'),(233,'automobil'),(234,'vozn'),(235,'afera'),(236,'afere'),(237,'aferi'),(238,'aferu'),(239,'aferom'),(240,'aferama'),(241,'zatvor'),(242,'pritvor'),(243,'recesij'),(244,'pustiti'),(245,'pustila'),(246,'pustio'),(247,'pustilo'),(248,'pustile'),(249,'pustili'),(250,'pustim'),(251,'puste'),(252,'kritika'),(253,'kritike'),(254,'kritici'),(255,'kritiku'),(256,'kritikom'),(257,'kritike'),(258,'kritikama'),(259,'kritizirati'),(260,'reagiranje'),(261,'reagiranja'),(262,'reagiranju'),(263,'reagiranjem'),(264,'reagiranjima'),(265,'reagirati'),(266,'reagiram'),(267,'reagiraš'),(268,'reagira'),(269,'reagiraju'),(270,'optužn'),(271,'optužb'),(272,'protiv'),(273,'zabran'),(274,'izbjeglic'),(275,'izbjeći'),(276,'migrant'),(277,'migranata'),(278,'šokira'),(279,'razočara'),(280,'vičući'),(281,'vikati'),(282,'viče'),(283,'viču'),(284,'uzruja'),(285,'dokument'),(286,'pomog'),(287,'pomoći'),(288,'novac'),(289,'novcu'),(290,'novcem'),(291,'novci'),(292,'novaca'),(293,'novcima'),(294,'novce'),(295,'korupc'),(296,'korumpirati'),(297,'izolira'),(298,'proračun'),(299,'deficit'),(300,'stamben'),(301,'ušted'),(302,'prihod'),(303,'rashod'),(304,'poplav'),(305,'fond'),(306,'primopred'),(307,'trošenj'),(308,'ostavk'),(309,'ostavci'),(310,'financir'),(311,'projekt'),(312,'komunist'),(313,'nacist'),(314,'ustaš'),(315,'partizan'),(316,'partija'),(317,'prodaj'),(318,'prodao'),(319,'kupiti'),(320,'kupovina'),(321,'kupuje'),(322,'kupovine'),(323,'kupovini'),(324,'kupovinom'),(325,'kupovinama'),(326,'fašist'),(327,'vikala'),(328,'vikao'),(329,'vikalo'),(330,'vikale'),(331,'vikali'),(332,'europsk'),(333,'tuđman'),(334,'račun'),(335,'sakri'),(336,'zločin'),(337,'koncesij'),(338,'psovk'),(339,'mrž'),(340,'ksenofo'),(341,'$'),(342,'eura'),(343,'euri'),(344,'eure'),(345,'euro'),(346,'€'),(347,'dolar');
/*!40000 ALTER TABLE `rijec` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `stranka`
--
DROP TABLE IF EXISTS `stranka`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `stranka` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`Ime` varchar(50) NOT NULL,
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `stranka`
--
LOCK TABLES `stranka` WRITE;
/*!40000 ALTER TABLE `stranka` DISABLE KEYS */;
INSERT INTO `stranka` (`Id`, `Ime`) VALUES (7,'HDZ'),(8,'SDP'),(9,'Laburisti'),(10,'ORaH'),(11,'HDSSB'),(12,'HSS'),(13,'HSP AS'),(14,'HNS'),(15,'HSU'),(16,'IDS-DDI'),(17,'SDSS'),(18,'Živi zid'),(19,'MOST'),(20,'HSP'),(21,'Nezavisni');
/*!40000 ALTER TABLE `stranka` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sysdiagrams`
--
DROP TABLE IF EXISTS `sysdiagrams`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sysdiagrams` (
`name` varchar(160) NOT NULL,
`principal_id` int(11) NOT NULL,
`diagram_id` int(11) NOT NULL AUTO_INCREMENT,
`version` int(11) DEFAULT NULL,
`definition` longblob,
PRIMARY KEY (`diagram_id`),
UNIQUE KEY `UK_principal_name` (`principal_id`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sysdiagrams`
--
LOCK TABLES `sysdiagrams` WRITE;
/*!40000 ALTER TABLE `sysdiagrams` DISABLE KEYS */;
/*!40000 ALTER TABLE `sysdiagrams` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping events for database 'nestoiopetnesto'
--
--
-- Dumping routines for database 'nestoiopetnesto'
--
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2018-05-04 12:17:31
|
-- --------------------------------------------------------
-- Servidor: 127.0.0.1
-- Versão do servidor: 5.7.14 - MySQL Community Server (GPL)
-- OS do Servidor: Win64
-- HeidiSQL Versão: 9.4.0.5125
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Copiando estrutura do banco de dados para all-cameras
CREATE DATABASE IF NOT EXISTS `all-cameras` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `all-cameras`;
-- Copiando estrutura para tabela all-cameras.brands
CREATE TABLE IF NOT EXISTS `brands` (
`id` int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- Copiando dados para a tabela all-cameras.brands: 0 rows
/*!40000 ALTER TABLE `brands` DISABLE KEYS */;
/*!40000 ALTER TABLE `brands` ENABLE KEYS */;
-- Copiando estrutura para tabela all-cameras.cameras_info
CREATE TABLE IF NOT EXISTS `cameras_info` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`model` varchar(100) NOT NULL DEFAULT '0',
`onvif_url_stream` varchar(100) DEFAULT '0',
`rtsp_url_stream_1` varchar(100) DEFAULT '0',
`rtsp_url_stream_2` varchar(100) DEFAULT '0',
`http_url_stream` varchar(100) DEFAULT '0',
`brand` varchar(100) NOT NULL DEFAULT '0',
`default_user` varchar(100) DEFAULT '0',
`default_password` varchar(100) DEFAULT '0',
`deprecated` tinyblob,
`default_ip_address` varchar(100) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
-- Copiando dados para a tabela all-cameras.cameras_info: 0 rows
/*!40000 ALTER TABLE `cameras_info` DISABLE KEYS */;
INSERT INTO `cameras_info` (`id`, `model`, `onvif_url_stream`, `rtsp_url_stream_1`, `rtsp_url_stream_2`, `http_url_stream`, `brand`, `default_user`, `default_password`, `deprecated`, `default_ip_address`) VALUES
(1, 'alfa1', '0', '0', '0', '0', '0', '0', '0', NULL, '0');
/*!40000 ALTER TABLE `cameras_info` ENABLE KEYS */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
<gh_stars>0
DROP TABLE IF EXISTS `Terrain`;
CREATE TABLE IF NOT EXISTS `Terrain` (
`ID` int(10) unsigned NOT NULL,
`Name` varchar(50) NOT NULL,
`type` varchar(50) NOT NULL,
`Source` varchar(4096) NOT NULL,
`Teaser` int(10) unsigned NOT NULL,
`Txt` longtext NOT NULL,
PRIMARY KEY (ID),
FULLTEXT Txt (Txt),
FULLTEXT Name (Name)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `Terrain` VALUES ('3','Blast Cloud','Fantastic Terrain','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nBlast Cloud\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=3\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Blast Cloud</h1><p class=\"flavor\">Rust-hued dust hangs in the air. The dust particles conduct and amplify certain types of energy and elemental forces.</p><p> <b>Effect: </b>The squares containing the cloud are lightly obscured. When a burst or a blast created by a fire, force, lightning, psychic, or thunder power touches a square of blast cloud, the size of the burst or blast is increased by 1.<br/> <b>Usage: </b>A blast cloud encourages the characters (and their opponents) to remain farther apart than normal to avoid the enlarged areas of effect. Use this terrain in encounters featuring monsters that can take advantage of it, or when it can allow player characters who have attacks that might benefit from the blast cloud to take up an attractive combat position that utilizes the terrain’s effect.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 58.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('4','Blood Midge Cloud','Fantastic Terrain','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nBlood Midge Cloud\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=4\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Blood Midge Cloud</h1><p class=\"flavor\">A swarm of biting insects fills the area.</p><p> <b>Effect: </b>The squares occupied by the cloud are lightly obscured, and the cloud is difficult terrain. If no creature is in the cloud when a creature starts its turn within 3 squares of a blood midge cloud, the cloud moves 5 squares and attempts to cover as many living creatures as possible. If an area or close attack includes squares occupied by the cloud, the cloud is destroyed in those squares. If a cloud is broken into smaller pieces by an attack, each piece acts as a separate terrain feature.<br/> <b>Usage: </b>A blood midge cloud is interesting because it is mobile obscured terrain that can move to engulf the greatest number of creatures. The concealment granted by the cloud helps anyone in the cloud, and it’s particularly beneficial to ranged attackers, who can fire out of it easily.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 58.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('5','Bolt Stone','Fantastic Terrain','Dungeon Master\'s Guide 2, Dungeon Master\'s Kit','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nBolt Stone\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=5\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Bolt Stone</h1><p class=\"flavor\">In some areas, lightning energy fuses with rock to form a highly unstable, dangerous mixture. In various regions of the Elemental Chaos, and in dungeons located near the conflux of different types of elemental energy, blue-tinged areas of bolt stone appear.</p><p> <b>Effect: </b>When a creature enters a square of bolt stone, it takes 5 lightning damage per tier. Roll a d20; on a 10 or higher, the bolt stone’s energy is discharged, and the stone becomes inert. Otherwise, the lightning energy is transferred to all unoccupied squares adjacent to the origin square, and those squares become bolt stone.<br/> <b>Usage: </b>Bolt stone works best when you scatter it across an encounter area. It offers some risk and reward. A player character might enter a square and take the damage in the hope of creating a barrier to hold back monsters or eliminate minions.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 58, <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/244640000\" target=\"_new\">Dungeon Master\'s Kit</a>, page(s) 209.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('6','Creeping Ice','Fantastic Terrain','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nCreeping Ice\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=6\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Creeping Ice</h1><p class=\"flavor\">In some areas infused with cold energy, particularly where icy parts of the Elemental Chaos erupt into the world, a strange form of ice crawls toward any kind of heat. Living creatures that stand on the ice are slowly drained of life.</p><p> <b>Effect: </b>Any creature that starts and ends its turn in any square of creeping ice takes 5 cold damage per tier.<br/> <b>Usage: </b>Creeping ice is a great tool to persuade the characters to move around an encounter area, particularly if you place it in spots where characters who have ranged attacks are likely to position themselves.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 58.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('7','Defiled Ground','Fantastic Terrain','Dungeon Master\'s Guide 2, Dungeon Master\'s Kit','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nDefiled Ground\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=7\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Defiled Ground</h1><p class=\"flavor\">The dead do not always rest in peace. Some cemeteries are darker than others, and ancient events leave unseen traces of their former presence. Defiled ground sometimes attracts undead.</p><p> <b>Effect: </b>Undead gain a +1 bonus to rolls to recharge their powers while on defiled ground. In addition, if an undead creature is reduced to 0 hit points while on defiled ground, roll a d20; on a 10 or higher, the undead creature rises with 1 hit point on its next turn. If radiant damage reduces an undead creature to 0 hit points, it can’t rise again in this manner.<br/> <b>Usage: </b>Defiled ground makes undead encounters somewhat more dangerous. Use it for encounters that are meant to have a feel of horror, or to evoke the atmosphere of a site sacred to undead, such as a temple to Orcus.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 59, <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/244640000\" target=\"_new\">Dungeon Master\'s Kit</a>, page(s) 210.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('8','Dimensional Turbulence','Fantastic Terrain','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nDimensional Turbulence\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=8\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Dimensional Turbulence</h1><p class=\"flavor\">Instability in the fabric of a plane makes teleportation difficult and inaccurate. Dimensional turbulence is visible as a faint rippling of space with an occasional twinkling of purple light.</p><p> <b>Effect: </b>A creature that teleports into a square of dimensional turbulence slides 1d4 squares in a random direction after teleporting.<br/> <b>Usage: </b>Most useful at the paragon and epic tiers, dimensional turbulence turns normally dependable teleportation powers into a risky proposition.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 59.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('9','Doomlight Crystal','Fantastic Terrain','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nDoomlight Crystal\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=9\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Doomlight Crystal</h1><p class=\"flavor\">These rare, glowing rock formations exist in the Underdark and deep caverns. The glow comes from the gas inside the crystals, which explodes if it comes in contact with air.</p><p> <b>Effect: </b>A fist-sized doomlight crystal emits dim yellow light in a 3-square radius. If a character in a square with a doomlight crystal is hit by a close or an area attack, the crystal is destroyed as well—and the gas inside it explodes, dealing 5 damage per tier to the character in its square.<br/> <b>Usage: </b>Obviously, this terrain feature makes area and close attacks more powerful. It can also add an interesting lighting element to a battle if the doomlights are the only source of illumination. As they are destroyed, the battlefield grows darker and darker.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 59.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('10','Eldritch Influx','Fantastic Terrain','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nEldritch Influx\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=10\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Eldritch Influx</h1><p class=\"flavor\">One or more squares reflect light, as if a metallic object hung suspended in the air. Characters entering these squares feel energy surrounding them and hear a faint hum in the air. Magical energy pools in this area, flowing into the void left behind by the expenditure of magic item powers.</p><p> <b>Effect: </b>As a standard action, a character in a square of eldritch influx can channel its energy to recharge an expended magic item power. Recharging a power in this way does not grant the item’s wielder the ability to make use of more daily magic item powers between milestones. Using an eldritch influx for this purpose depletes its energy, and it can’t be used again until 24 hours have passed.<br/> <b>Usage: </b>Since monsters rarely use magic items, this terrain feature is a great magnet for player characters. Place it so they have to work to reach it during a fight, encouraging movement and rewarding risk. Use it for paragon characters or in the first encounter after a milestone, when you know the characters have magic item activations available to them.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 59.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('11','Elemental Windchurn','Fantastic Terrain','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nElemental Windchurn\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=11\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Elemental Windchurn</h1><p class=\"flavor\">The powerful, swirling wind in this area makes flying difficult. The elemental turbulence crackles with energy, bringing with it a strong ozone odor.</p><p> <b>Effect: </b>An area of elemental windchurn is difficult terrain for creatures that are flying, and a creature that ends its turn aloft in the area slides 1d6 squares in a random direction.<br/> <b>Usage: </b>Elemental windchurn adds a touch of chaos to a battle while discouraging flight. Use it as an excuse to ground flying monsters at the heroic tier, while at higher tiers it makes an aerial duel far less predictable.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 59.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('12','Energy Node','Fantastic Terrain','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nEnergy Node\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=12\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Energy Node</h1><p class=\"flavor\">An energy node is a particularly strong confluence of arcane, divine, and other forms of power. The air above it shimmers with energy, and anyone standing upon it feels fresh and reinvigorated.</p><p> <b>Effect: </b>A creature that starts its turn in an energy node’s square can spend a minor action while in the square to regain a single encounter or recharge power. Using a node for this purpose depletes its energy, and it can’t be used again until 24 hours have passed.<br/> <b>Usage: </b>Energy nodes work well in long, running battles and in encounters with solo monsters. Not only do they allow the characters (and monsters) to use encounter powers multiple times, but they also create a situation in which the player characters might be racing against their opponents. Only one creature can benefit from each energy node, forcing the characters to fight for access to any nodes in an area. In a fight against a solo monster, consider placing more than one node around the perimeter of the encounter area, or in hard-to-reach places, which can force PCs to disengage in order to draw upon the power of a node.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 59.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('13','Fey Circle','Fantastic Terrain','Dungeon Master\'s Guide 2, Dungeon Master\'s Kit','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nFey Circle\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=13\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Fey Circle</h1><p class=\"flavor\">Often distinguished by the presence of tangled vines or large toadstools, this location is empowered with the extraordinary energy of the Feywild.</p><p> <b>Effect: </b>A creature can spend a minor action while in a fey circle’s square to teleport 5 squares.<br/> <b>Usage: </b>A fey circle can add unpredictability to a combat area, and it can level the playing field somewhat when the player characters are fighting monsters that teleport—or when monsters familiar with the circle face player characters who teleport all the time. A fey circle is also a great addition to an encounter area that features a treacherous chasm or similarly dangerous terrain, giving the player characters a way to bypass the danger if they can figure out the purpose of the fey circle.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 60, <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/244640000\" target=\"_new\">Dungeon Master\'s Kit</a>, page(s) 210.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('14','Grasping Bog','Fantastic Terrain','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nGrasping Bog\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=14\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Grasping Bog</h1><p class=\"flavor\">A grasping bog is an area of deep, viscous mud that not only hampers movement but also clings to characters who tumble into it.</p><p> <b>Effect: </b>A grasping bog is difficult terrain. In addition, a creature that falls prone in a square of grasping bog is restrained (save ends).<br/> <b>Usage: </b>Combine grasping bog terrain with monsters that can knock their enemies prone.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 60.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('15','Healing Ground','Fantastic Terrain','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nHealing Ground\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=15\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Healing Ground</h1><p class=\"flavor\">This area is infused with primal energy that allows life of all sorts to flourish. Undergrowth or fungus that thrives on the primal energy in the place grows wildly and chokes the area with its profusion.</p><p> <b>Effect: </b>If a creature in this terrain spends a healing surge, it regains an additional 2 hit points per tier. Healing ground is also difficult terrain due to the abundant plant life.<br/> <b>Usage: </b>Healing ground, assuming that the characters can recognize it, is a good example of attractive terrain that gives characters an incentive to move into a room and take up advantageous positions.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 60.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('16','Infernal Fumes','Fantastic Terrain','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nInfernal Fumes\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=16\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Infernal Fumes</h1><p class=\"flavor\">Most common in regions of the Nine Hells and certain volcanic regions of the world, infernal fumes are great clouds of gray smoke that glow red with inner heat. Infernal fumes drift as if alive, apparently seeking concentrations of multiple creatures.</p><p> <b>Effect: </b>Squares filled with infernal fumes are lightly obscured. The fumes can move up to 4 squares each round. A creature that ends its turn in a square of infernal fumes takes 5 fire and poison damage per tier and is dazed until the end of its next turn.<br/> <b>Usage: </b>Infernal fumes are an effective way to chase player characters around an encounter area. This terrain is similar to a blood midge cloud, but has a significant harmful effect to characters and monsters inside it. Few monsters, even devils, are immune to the effect of infernal fumes, so they challenge both sides of a fight equally. Creatures that remain outside the cloud are hindered in their attempts to attack creatures inside the cloud as a result of the concealment it grants.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 60.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('17','Jade Flame','Fantastic Terrain','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nJade Flame\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=17\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Jade Flame</h1><p class=\"flavor\">This strange, vibrant green fire burns everything that comes near it, yet the nature of its magic is such that a creature it burns cannot be harmed by other sources of heat for a limited time.</p><p> <b>Effect: </b>A creature that enters a square of jade flame or that starts its turn adjacent to such a square takes ongoing 5 radiant damage per tier (save ends). However, until the creature saves against the ongoing damage, it has resist fire equal to 10 per tier.<br/> <b>Usage: </b>Jade flame offers the characters a choice. They can accept some constant radiant damage in return for protection against a potentially more dangerous threat. The characters might need to use jade flame to protect themselves before they race across a lava chamber or face another sort of fire hazard.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 60.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('18','Martyr\'s Monument','Fantastic Terrain','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nMartyr\'s Monument\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=18\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Martyr\'s Monument</h1><p class=\"flavor\">This area contains the life energy of an ancient and powerful champion of the gods, embodied in a statue or some other holy icon.</p><p> <b>Effect: </b>The monument grants a +2 bonus to saving throws to all creatures within 5 squares of it.<br/> In addition, a creature adjacent to the monument can touch it as a minor action to make a saving throw. Each time a creature touches the monument to make a saving throw, roll a d20; on a 5 or lower, the monument loses all its magical properties for 24 hours.<br/> <b>Usage: </b>A martyr’s monument gives characters a new option for their minor actions. Such terrain is also great for monsters that have nothing else to do with their minor actions. Characters and monsters can use forced movement powers to drive their enemies away from the monument so they can’t gain the saving throw bonus it grants. Use this feature in combination with monsters whose attacks impose effects that a save can end, or if the characters have been making particularly effective use of such attacks against previous foes.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 60.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('19','Necrotic Ground','Fantastic Terrain','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nNecrotic Ground\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=19\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Necrotic Ground</h1><p class=\"flavor\">This area is infused with necrotic energy. All light sources appear slightly dimmer, and the air is cold and still. Creatures that enter this area feel tired and drained.</p><p> <b>Effect: </b>A creature that spends a healing surge in an area of necrotic ground recovers only half the normal number of hit points. (All other effects, such as additional hit points regained or the bonus to defense from using second wind, are unaffected.)<br/> <b>Usage: </b>Unless an encounter area consists entirely of necrotic ground, characters will wisely do anything they can to avoid being in the area when they spend healing surges. If you combine necrotic ground with a strong defensive position or another advantageous location, you might force characters into the difficult choice of staying in their good position but gaining less benefit from healing effects, or abandoning their position so that they can regain as many hit points as possible.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 61.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('20','Needle Hedge','Fantastic Terrain','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nNeedle Hedge\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=20\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Needle Hedge</h1><p class=\"flavor\">Areas of sharp-needled bushes grow in the dark forests of the Shadowfell and in areas of the world where shadow’s influence is strong. The plants are covered in long, sharp spines and thorns, forcing creatures to slow down as they move through the bushes or suffer a multitude of small cuts.</p><p> <b>Effect: </b>A needle hedge is difficult terrain, and it grants cover to a creature within it or behind it. If a creature moves through more than 1 square of needle hedge during a single move action or incident of forced movement, that creature takes 5 damage per tier.<br/> <b>Usage: </b>Characters are likely to consider a needle hedge an effectively solid barrier until they’re pushed through it. Use it with monsters that can force movement, or with elves or other skirmishers that can shift freely in difficult terrain (including creatures that have the forest walk ability).</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 61.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('21','Phase Mist','Fantastic Terrain','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nPhase Mist\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=21\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Phase Mist</h1><p class=\"flavor\">Phase mist is an extremely rare phenomenon. It appears as a hazy cloud of swirling colors similar to those found in the Astral Sea. When a creature steps into phase mist, its body phases into the strange spaces that exist between the planes.</p><p> <b>Effect: </b>A square of phase mist is lightly obscured. A creature that starts its turn in a square of phase mist gains phasing until the end of its turn.<br/> <b>Usage: </b>Use phase mist to create encounters that force the characters to split up. For example, the characters might use the mist to enter a chamber that lacks a door. Within the chamber is another patch of phase mist and an object that the characters need. In addition, monsters that have phasing, or undying guardians that lurk in the inaccessible chambers, wait to ambush lone characters.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 61.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('22','Quick Sear','Fantastic Terrain','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nQuick Sear\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=22\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Quick Sear</h1><p class=\"flavor\">This mixture of acid and quicksilver is a viscous, silvery green liquid. It appears as a small puddle in a single square.</p><p> <b>Effect: </b>A creature that starts its turn in a square of quick sear or adjacent to such a square takes 5 acid damage per tier. If a square of quick sear is within the area of effect of a close or an area attack, it moves 1d6 squares in a random direction.<br/> <b>Usage: </b>Quick sear adds a random element to an encounter that could otherwise prove dull or static. Use it in encounters where a sense of randomness and an unexpected twist seems appropriate.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 61.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('23','Rage Stone','Fantastic Terrain','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nRage Stone\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=23\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Rage Stone</h1><p class=\"flavor\">This expanse of black-veined crimson stone is infused with the psychic residue of pitched battles and brutal atrocities. A creature standing on a square of rage stone feels itself consumed with negative and violent emotions that it must unleash.</p><p> <b>Effect: </b>A creature that starts its turn in a square of rage stone must make a melee attack on that turn or takes 5 psychic damage per tier.<br/> <b>Usage: </b>Creatures that are comfortable making melee attacks suffer few ill effects from rage stone, aside from lingering emotional turmoil that has no game effect. Creatures that prefer to stay away from melee combat (including most PC controllers, for example) are the most likely to take damage from rage stone. Putting rage stone at the periphery of an encounter area can play havoc with PC controllers and ranged strikers, as well as with artillery monsters.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 61.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('24','Thunder Shards','Fantastic Terrain','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nThunder Shards\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=24\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Thunder Shards</h1><p class=\"flavor\">These crystalline shards of solidified thunder energy are both unstable and dangerous. They rumble and shudder as they course with the energy within them. Most creatures avoid them, but occasionally orcs, ogres, and other battle hungry creatures dwell near them. Although thunder shards are dangerous, they also make useful defensive fortifications if used properly.</p><p> <b>Effect: </b>Squares of thunder shards are difficult terrain. If a creature makes a melee attack against a target in a thunder shard square, roll a d20; on a 10 or higher, both the attacker and the target take 5 thunder damage and are pushed 1d4 squares from each other.<br/> <b>Usage: </b>Thunder shards are useful barriers to encourage movement and add a random element to the fight. The random push is especially useful if the area has pits or other dangerous terrain.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 61.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('25','Carpet of Serpents','Fantastic Terrain','The Plane Above','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nCarpet of Serpents\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=25\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Carpet of Serpents</h1><p class=\"flavor\">These patches of ground are covered with swarms of serpents (or other venomous creatures) that dart in and out of various hidden dens.</p><p> <b>Effect: </b>A carpet of serpents is difficult terrain. When a creature starts its turn in a carpet of serpents area, it takes 5 poison damage per tier, or 10 poison damage per tier if it is prone.<br/> <b>Usage: </b>Combine a carpet of serpents with creatures that have poison resistance or immunity, or as part of a trap that drops the characters into a chamber that has this feature.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251260000\" target=\"_new\">The Plane Above</a>, page(s) 86.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('26','Choking Vapors','Fantastic Terrain','The Plane Above','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nChoking Vapors\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=26\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Choking Vapors</h1><p class=\"flavor\">These fumes rise from volcanic vents, venomous incense—or both, in the case of rare sacrifices involving yuan-ti priests that expect to rise again after dying within the vent where the sacrifice is conducted.</p><p> <b>Effect: </b>These squares are lightly obscured, and creatures in them must hold their breath or suffocate. (See “Suffocation\".) Creatures that have immunity or resistance to poison are immune to this effect.<br/> <b>Usage: </b>Add complexity to an encounter by introducing the vapors after a fight starts. Or have a creature that has poison resistance use the vapors to hide in while it attacks from concealment.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251260000\" target=\"_new\">The Plane Above</a>, page(s) 86.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('27','Cursed Obelisk','Fantastic Terrain','The Plane Above','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nCursed Obelisk\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=27\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Cursed Obelisk</h1><p class=\"flavor\">These black, stone obelisks are usually covered in ruins and stand between 2 and 20 squares high.</p><p> <b>Effect: </b>While a nonworshiper of Zehir is within a number of squares of an obelisk equal to the obelisk’s height, that creature takes a -2 penalty to attack rolls and skill checks, and gains vulnerable 2 per tier to all damage.<br/> <b>Usage: </b>A chamber full of these objects could provide cover to the characters’ enemies, while the characters take the penalty for being nonworshipers. the penalty to attack rolls allows enemy skirmishers to take more risk from opportunity attacks, and all enemies will benefit from the extra damage they can deal because of the characters’ vulnerability.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251260000\" target=\"_new\">The Plane Above</a>, page(s) 87.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('28','Earthen Maw','Fantastic Terrain','The Plane Above','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nEarthen Maw\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=28\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Earthen Maw</h1><p class=\"flavor\">Parts of the broken badlands open and close like jaws, seeking to snare passersby.</p><p> <b>Effect: </b>Whenever a creature without earth walk remains on the same square of earthen maw throughout its turn, it takes 5 damage per tier and is grabbed (escape DC moderate based on the encounter level).<br/> <b>Usage: </b>Use earthen maw terrain to force the characters to make difficult movement choices, or to funnel them into a disadvantageous position.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251260000\" target=\"_new\">The Plane Above</a>, page(s) 87.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('29','Pocket of Night','Fantastic Terrain','The Plane Above','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nPocket of Night\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=29\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Pocket of Night</h1><p class=\"flavor\">In the darkest places of Samaragd, the shadows have an unnatural weight, and no natural light can penetrate the darkness.</p><p> <b>Effect: </b>When creating magical light, a character in a pocket of night must make an ability check using his or her class’s primary ability score against a hard DC. On a failure, the magical light fails to illuminate anything; on a success, it casts only dim light.<br/> <b>Usage: </b>Use a pocket of night with creatures that have darkvision and powers that take advantage of the concealment this terrain offers.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251260000\" target=\"_new\">The Plane Above</a>, page(s) 87.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('30','Soul Venom','Fantastic Terrain','The Plane Above','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nSoul Venom\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=30\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Soul Venom</h1><p class=\"flavor\">These areas of Samaragd contain tainted atmosphere.</p><p> <b>Effect: </b>While in an area of soul venom, a creature gains vulnerable 5 poison per tier, or vulnerable 10 poison per tier while bloodied. Creatures that have immunity or resistance to poison are immune to these effects.<br/> <b>Usage: </b>Add patches of soul venom to an encounter with medusas or other poison-using creatures that have poison resistance or immunity to give them a bigger punch.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251260000\" target=\"_new\">The Plane Above</a>, page(s) 87.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('31','Venomous Air','Fantastic Terrain','The Plane Above','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nVenomous Air\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=31\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Venomous Air</h1><p class=\"flavor\">These are clouds of nigh-undetectable poisons that hang in the air and amplify other poison attacks.</p><p> <b>Effect: </b>When a creature within an area of venomous air is hit with a poison attack, it takes 1d6 extra poison damage per tier.<br/> <b>Usage: </b>Use venomous air in an encounter with a large number of weaker creatures or minions that have poison attacks to turn them into a greater threat.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251260000\" target=\"_new\">The Plane Above</a>, page(s) 87.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('32','Grasping Vines','Fantastic Terrain','The Plane Above','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nGrasping Vines\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=32\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Grasping Vines</h1><p class=\"flavor\">Vines, roots, and other vegetation that has become infused with aberrant energies emanating from agathys can entangle those that come near.</p><p> <b>Effect: </b>When a creature starts its turn in or adjacent to a square of grasping vines, it must make a saving throw. If the creature saves, it’s slowed until the start of its next turn; otherwise, it’s restrained until the start of its next turn.<br/> <b>Usage: </b>Creatures familiar with the local landscape might use grasping vines as part of a trap for unwary visitors, focusing their attention subsequently on the ones who remain unrestrained.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251260000\" target=\"_new\">The Plane Above</a>, page(s) 107.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('33','Insect Swarm','Fantastic Terrain','The Plane Above','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nInsect Swarm\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=33\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Insect Swarm</h1><p class=\"flavor\">Swarms of biting, sucking insects are found throughout the area, looking for their next source of food. Fresh blood often draws them.</p><p> <b>Effect: </b>When a living creature starts its turn within an insect swarm, it takes 5 damage per tier and grants combat advantage until the start of its next turn. Creatures immune to this damage (considered melee damage) do not grant combat advantage.<br/> <b>Usage: </b>An insect swarm can serve either as a form of controller in combat (used purposely by the characters’ enemies), or as an unpredictable element in an encounter that changes all the combatants’ tactics. Introduce one or more swarms a few rounds after the start of a fight and have them move to the nearest creature each round.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251260000\" target=\"_new\">The Plane Above</a>, page(s) 107.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('34','Chaos Spots','Fantastic Terrain','The Plane Above','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nChaos Spots\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=34\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Chaos Spots</h1><p class=\"flavor\">Certain locations in the dominion are in constant (if sluggish) f lux, especially the Chaos Bog and isolated “chaos spots” elsewhere in the dominion.</p><p> <b>Effect: </b>While in a chaos spot, a creature can attempt to stabilize or alter the area as though it were unstable (see Manual of the Planes), albeit with more difficulty (increase all DCs by 5).<br/> <b>Usage: </b>Put a chaos spot in an encounter to add an extra layer of depth to combat, as each side tries to turn the environment into terrain that suits its needs.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251260000\" target=\"_new\">The Plane Above</a>, page(s) 109.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('35','Acidic Mire','Fantastic Terrain','The Plane Below','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nAcidic Mire\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=35\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Acidic Mire</h1><p class=\"flavor\">Any quagmire can be dangerous and debilitating. In the Elemental Chaos, a swampy area filled with caustic liquid makes the peril far worse. Seas composed of flesh-dissolving liquids are bordered by shores riddled with moors that churn with acid bubbling up from below. Such conf luences of muck and acid are deadly to traverse, so creatures that crave solitude build bastions amid this inhospitable terrain.</p><p> <b>Effect: </b>A square of acidic mire is difficult terrain for creatures without earth walk. They sink into the mire, muck clinging to f lesh and clothing. In addition, any creature that starts its turn in a square of acidic bog takes ongoing 5 acid damage per tier and is slowed (save ends both).<br/> <b>Usage: </b>Acidic mire requires characters to trudge more slowly through an area. Artillery or controller monsters take advantage of such terrain to hinder melee attackers.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/242110000\" target=\"_new\">The Plane Below</a>, page(s) 12.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('36','Bonepowder Haze','Fantastic Terrain','The Plane Below','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nBonepowder Haze\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=36\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Bonepowder Haze</h1><p class=\"flavor\">In desolate sections of the Abyss, especially the dread region of Thanatos (see Manual of the Planes), strange clouds of fine, white powder hover in the air and crackle with necrotic energy. This strange haze saps the life force of creatures within it, dissipating or corrupting that life force to empower nearby undead.</p><p> <b>Effect: </b>Fields of bonepowder haze are lightly obscured. Any living creature within a square containing this terrain regains only one-half normal hit points from healing effects. Furthermore, whenever a living creature receives a healing effect while in bonepowder haze, each undead creature within 3 squares of it gains a +2 power bonus to attack rolls until the end of the undead creature’s next turn.<br/> <b>Usage: </b>Pairing bonepowder haze with undead is a no-brainer. Even without undead, the haze makes any combat more dangerous by degrading healing. Brutes wade into the haze, knowing that the damage of their powerful strikes will persist longer. You can position artillery at the edge of a field of bonepowder haze to obscure the enemy and also hinder ranged counterattacks.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/242110000\" target=\"_new\">The Plane Below</a>, page(s) 13.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('37','Chaos Breath','Fantastic Terrain','The Plane Below','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nChaos Breath\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=37\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Chaos Breath</h1><p class=\"flavor\">An area of chaos breath contains powerful, unpredictable wind gusts that extend high into the atmosphere, equally affecting flying and grounded creatures. The gusts occupy several areas, each 1 to 4 squares across. The currents react to movement and other disturbances, making them appear to be aware.</p><p> <b>Effect: </b>When a creature enters a square containing chaos breath or starts its turn there, it slides 1d4 squares in a random direction and must make a saving throw to avoid being knocked prone. Creatures that are already allowed a saving throw to avoid being knocked prone gain a +2 bonus to this saving throw.<br/> A creature within a square of chaos breath can attempt an easy Athletics or Acrobatics check to reduce the distance of the slide by 1 square, plus 1 square for every 5 points by which the check result beats the DC. A creature that does not slide any distance is not knocked prone.<br/> <b>Usage: </b>Chaos breath confounds strategic maneuvering by adding unpredictability to movement. Since this terrain is difficult to spot (requiring a hard Perception check), it can catch both sides in a conflict off guard.<br/> Because of the variability of the Elemental Chaos, the effect of chaos breath might not be consistently applied in all cases. In certain areas, the gusts might not be strong enough to affect larger creatures. Air creatures might sense an area of chaos breath and avoid it, or can have an innate resistance to its effect at your discretion.<br/> To create more disarray—and more complexity—you could have chaos breath potentially affect the entire encounter area instead of specific squares within it. Each creature has a chance of being caught in a gust at the start of its turn, perhaps on a roll of 1-4 on a d20.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/242110000\" target=\"_new\">The Plane Below</a>, page(s) 13.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('38','Crawling Earth','Fantastic Terrain','The Plane Below','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nCrawling Earth\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=38\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Crawling Earth</h1><p class=\"flavor\">The substance of the Elemental Chaos sometimes exhibits a destructive will, especially in the form of elementals, but sentience is not necessary for the semblance of living behavior. A prime example is crawling earth, which resembles normal ground but animates when stepped on, then quiets after a few moments.</p><p> <b>Effect: </b>When any creature ends its movement in a square of crawling earth, it triggers that square and any contiguous squares containing that terrain. The ground rises up and moves 1d4 squares in a random direction, carrying along any creature in that space. The movement is so quick and jarring that a creature in a square of crawling earth must make a saving throw to avoid being knocked prone.<br/> A section of crawling earth is usually no larger than 4 squares on a side, but wider areas exist in particularly unstable sections of the Elemental Chaos.<br/> <b>Usage: </b> The Elemental Chaos contains several fantastic terrain types that create a dynamic environment, but crawling earth does the best job. Such terrain discourages creatures from ending their movement in certain spaces, forcing them to move farther than they otherwise would (which favors melee combatants) or discouraging movement altogether (making them easy prey for ranged attacks). You might also set the crawling earth’s movement in a specific direction or toward a given point to push the action a certain way or to enhance monsters’ control effects.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/242110000\" target=\"_new\">The Plane Below</a>, page(s) 13.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('39','Demon Jags','Fantastic Terrain','The Plane Below','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nDemon Jags\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=39\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Demon Jags</h1><p class=\"flavor\">These areas of sharp, rugged stone are formed when demons are trampled by other demons or otherwise violently absorbed into the surrounding surface. Most commonly encountered in the Abyss, demon jags could occur anywhere a demonic horde swarms.</p><p> <b>Effect: </b>Squares containing demon jags are difficult terrain, but any creature can move through the space normally by taking 5 damage per tier for each square entered. Demons are immune to this effect—the spars yield to their passing or retract into the ground. Furthermore, a demon occupying a square of demon jags can use its variable resistance without reducing its limit for the current encounter.<br/> <b>Usage: </b>Demon jags serve well as walls and ramparts in demon lairs. Those unusual demons that have any degree of patience use the jags to slow or wear down approaching enemies.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/242110000\" target=\"_new\">The Plane Below</a>, page(s) 13.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('40','Demon Slick','Fantastic Terrain','The Plane Below','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nDemon Slick\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=40\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Demon Slick</h1><p class=\"flavor\">Dangerous and debilitating, this odd black slime is a common terrain feature throughout the Abyss. It is particularly widespread where large numbers of demons congregate for long periods of time. </p><p> <b>Effect: </b>The vile gunk smells foul and makes footing treacherous, creating large areas of difficult terrain. Any nondemon creature that ends its turn in a square of demon slick takes 5 acid and poison damage per tier. In addition, the oily slick responds to certain attacks by extending and latching onto creatures within it. Any creature that is hit by an acid or poison attack while in a square of demon slick takes ongoing 5 acid and poison damage per tier (save ends).<br/> <b>Usage: </b>Demon slick is a natural complement to demons that have acid or poison attacks, such as bebiliths, mezzodemons, and vrocks. Against characters without protection against such types of damage, the demons’ debilitating attacks are even more effective.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/242110000\" target=\"_new\">The Plane Below</a>, page(s) 14.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('41','Earthflow','Fantastic Terrain','The Plane Below','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nEarthflow\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=41\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Earthflow</h1><p class=\"flavor\">The world suffers the occasional mudslide or avalanche. In the Elemental Chaos, earth moves constantly in rivers of rock, dirt, or mud.</p><p> <b>Effect: </b>Each area of earthflow has a direction of current (see “Underwater Terrain,”). Different sections of a single area could flow in different directions, creating a particularly turbulent earthcourse.<br/> Earthflow squares are difficult terrain. Each creature within an earthflow area at the start of its turn slides 3 squares in the direction of flow. If the creature is forced into an area with a different flow direction, it slides the remaining distance in the new direction. The creature must also make an Acrobatics or Athletics check to avoid sinking into the flow and becoming grabbed.<br/> Creatures that have earth walk ignore all earthflow effects.<br/> <b>Usage: </b>Earthflow terrain forces the characters in a certain direction or puts them at a disadvantage against creatures that have earth walk. An entire encounter area filled with earthflow can be frustrating, though, so be sure the encounter contains other terrain and rewards clever use of skills to bypass the earthflow.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/242110000\" target=\"_new\">The Plane Below</a>, page(s) 14.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('42','Elemental Spout','Fantastic Terrain','The Plane Below','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nElemental Spout\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=42\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Elemental Spout</h1><p class=\"flavor\">Eruptions of material or elemental energy are a common occurrence in the Plane Below. Any substance can issue forth from solid surfaces, bodies of liquid, raging storms, or empty air.</p><p> <b>Effect: </b>An elemental spout fills a burst, 1 square per tier, centered on a particular origin square. The spout might erupt at intervals or when a creature moves within 1 square of the burst’s center. For interval eruptions, the spout rolls initiative at the start of combat or takes effect at a specific time in a round; for an erratic spout, you might roll initiative each round.<br/> The effect of an elemental spout depends on the type of energy or material it disgorges. A summary of common elemental spouts and their effects follows. Exotic spouts also exist that contain more than one substance.<br/> Acid: 5 acid damage per tier, and ongoing 5 acid damage per tier (save ends).<br/> Frost: 5 cold damage per tier, and the target is slowed (save ends).<br/> Lightning: 5 lightning damage per tier, and the target is dazed (save ends). If a target is already dazed, it is instead stunned (save ends).<br/> Magma: 5 fire damage per tier, and ongoing 5 fire damage per tier (save ends).<br/> Poison Gas: 5 poison damage per tier, and the target is weakened (save ends).<br/> Scalding Slick: 5 fire damage per tier, and the target is knocked prone.<br/> Thunder: 5 thunder damage per tier, and the target is pushed 2 squares from the spout’s origin square.<br/> <b>Usage: </b>Elemental spouts break up an encounter area and give the characters a reason to move in certain ways, whether to avoid the effects of the spouts or to use them in a clever tactical way. Creatures that have resistance or are immune to a spout’s effects can take advantage of the spout to block and damage enemies.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/242110000\" target=\"_new\">The Plane Below</a>, page(s) 14.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('43','Energy Alteration Field','Fantastic Terrain','The Plane Below','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nEnergy Alteration Field\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=43\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Energy Alteration Field</h1><p class=\"flavor\">The air sparkles and the ground buzzes in the area of an energy alteration field. The terrain can be as big as an entire encounter area or as small as a few squares on a side.</p><p> <b>Effect: </b>When a creature within the field makes an attack that has a damage type, or such an attack targets a creature or a square within the field, the attack’s damage type changes. For an attack that has an area of effect, the damage type changes only in the part of the area of effect that overlaps the field.<br/> Energy alteration fields are inherently chaotic, each one producing a different effect. Use the following table to determine the new damage type, rolling once for each of the attack’s damage types. If the new damage type is the same, nothing happens; an attack that has two or more damage types ends up with only one instead.<br/><br/><table><tr><th>d8</th><th>Energy</th><th>d8</th><th>Energy</th></tr><tr><td>1</td><td>Acid</td><td>5</td><td>Lightning</td></tr><tr><td>2</td><td>Cold</td><td>6</td><td>Poison</td></tr><tr><td>3</td><td>Fire</td><td>7</td><td>Radiant</td></tr><tr><td>4</td><td>Force</td><td>8</td><td>Thunder</td></tr></table>Creatures trained in Arcana can manipulate an energy alteration field as a minor action.<br/> Arcana Easy DC: A successful check allows a creature to make one target ignore the effect of the energy alteration field until the end of that target’s next turn. <br/> Arcana Moderate DC: A successful check allows a creature to change the damage type of its attacks within the field to any other type that the field allows. This effect lasts until the start of the creature’s next turn.<br/> Arcana Hard DC: A successful check allows a creature to change the damage type of all attacks within the field to any other type that the field allows. This effect lasts until the start of the creature’s next turn.<br/> <b>Usage: </b>An energy alteration field lets characters and monsters alike tinker with their damage types and adds a surprise element to an encounter. It can be key strategic terrain in a battle, allowing a creature that specializes in limited damage types to diversify or to affect creatures that normally have resistance to such damage.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/242110000\" target=\"_new\">The Plane Below</a>, page(s) 15.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('44','Frozen Fire','Fantastic Terrain','The Plane Below','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nFrozen Fire\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=44\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Frozen Fire</h1><p class=\"flavor\">Portions of the Elemental Chaos experience cold so intense that even fire freezes. In other areas, fire and ice mingle in ways that are contradictory to minds that are familiar only with the natural world. This mixing of opposites is highly unstable—the subtlest change in the surroundings can cause a dramatic explosion.</p><p> <b>Effect: </b>Patches of frozen fire are usually no larger than 6 contiguous squares, but larger areas can exist. When a creature without the cold keyword enters a square adjacent to frozen fire, or a square of frozen fire is subjected to fire, lightning, or thunder damage, that square explodes. The effect is a close burst 1, centered on the origin square, dealing 1d8 cold and fire damage per tier.<br/> <b>Usage: </b>An encounter area containing several regions of frozen fire tightly limits safe zones on the battlefield. Such control particularly favors soldiers, forcing characters to make hard tactical choices during combat.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/242110000\" target=\"_new\">The Plane Below</a>, page(s) 15.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('45','Ice Maws','Fantastic Terrain','The Plane Below','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nIce Maws\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=45\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Ice Maws</h1><p class=\"flavor\">These expanses of permafrost seem tranquil from a distance, but when a creature approaches, the frozen ground seems to come alive with mouthlike openings that snap at the creature’s feet. The voracious maws are individually small and slow, but their collective bite is debilitating.</p><p> <b>Effect: </b>If a creature without ice walk starts and ends its turn in the same ice maws space, it takes 5 cold damage per tier and is immobilized (save ends). The affected creature cannot make a saving throw against this effect until the end of its next turn.<br/> <b>Usage: </b>Large sections of ice maws can encourage characters to pass through an encounter area with haste and discourage ranged attackers from staying in one place. Ice archons are well known for using ice maws to protect their crystalline fortresses.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/242110000\" target=\"_new\">The Plane Below</a>, page(s) 15.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('46','Infectious Pallor','Fantastic Terrain','The Plane Below','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nInfectious Pallor\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=46\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Infectious Pallor</h1><p class=\"flavor\">Pockets of diseased air drift through the Abyss. These vapors are often invisible, and those that can be seen appear innocuous. Light within an area of infectious pallor looks slightly different from that in surrounding areas. Also, creatures within this terrain appear sickly and wan, and any wounds they take seem to ooze with infection.</p><p> <b>Effect: </b>Each area of infectious pallor carries a specific disease. Any creature that starts and ends its turn in a square of infectious pallor (even if they are different squares in the same area) is exposed to that disease. A common plague of the Abyss is demon pox.<br/> <b>Usage: </b>This terrain works well with undead and elemental creatures, both of which are commonly immune to disease and have no fear of being within the area. The disease you pick determines how scary the pallor is. Try positioning this terrain around areas that you want to be challenging to reach, or in places you want characters to pass through quickly.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/242110000\" target=\"_new\">The Plane Below</a>, page(s) 16.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('47','Lightning Mist','Fantastic Terrain','The Plane Below','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nLightning Mist\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=47\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Lightning Mist</h1><p class=\"flavor\">These fields of gray-blue fog that drift slowly through the Elemental Chaos are hazardous to traverse quickly. Lightning mist typically coalesces into an area 5 squares on a side, but masses miles wide and just as deep are not unknown in treacherous territories.</p><p> <b>Effect: </b>When the particles within the mist are stirred, a charge of electricity lashes out. Any creature that enters more than 2 squares of lightning mist during a single move action takes 5 lightning damage per tier. Squares containing the mist are lightly obscured.<br/> <b>Usage: </b>Lightning mist forces creatures to slow down or suffer the consequences. Artillery monsters zero in on slowly moving creatures within the mist, gaining more attacks at a slight cost to accuracy. Elemental creatures that have resistance or are immune to lightning damage thrive in these areas.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/242110000\" target=\"_new\">The Plane Below</a>, page(s) 16.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('48','Liquid Thunder','Fantastic Terrain','The Plane Below','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nLiquid Thunder\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=48\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Liquid Thunder</h1><p class=\"flavor\">After a powerful elemental storm ravages an area of the Elemental Chaos, gray and placid pools are left behind. These innocuous-looking puddles are actually highly volatile liquid coalesced from the force of the storm. Liquid thunder pools are so unstable that they are rarely larger than 1 square.</p><p> <b>Effect: </b>A pool of liquid thunder remains calm and mirrorlike until a creature or an object enters it. It then releases the tremendous thunder stored within it, blasting a creature in its square and each creature adjacent to that square. The force of the blast hurls the affected creatures 10 feet per tier into the air. Any creature that falls back to the ground takes 1d10 damage per tier; it can make an Acrobatics check as normal to reduce the falling damage.<br/> <b>Usage: </b>Liquid thunder is a simple but dangerous obstruction. Creatures that have forced movement powers use it to great effect.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/242110000\" target=\"_new\">The Plane Below</a>, page(s) 16.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('49','Phase Crystal','Fantastic Terrain','The Plane Below','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nPhase Crystal\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=49\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Phase Crystal</h1><p class=\"flavor\">This translucent, silvery crystal is related to phase rock (see Manual of the Planes). It can be induced to discharge its extradimensional energy and shunt a creature out of phase for a short time.</p><p> <b>Effect: </b>When a creature ends its move in a square of phase crystal, it gains phasing until the end of its next turn. That square cannot affect another creature until the end of the encounter.<br/> <b>Usage: </b>Combined with obstacles that restrict a battlefield, phase crystal allows characters or monsters greater mobility. You can restrict the terrain’s effect by limiting the number of squares it covers. Try not to use phase crystal as the only way to get to a special area or encounter unless the terrain is large enough to affect the entire party at one time.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/242110000\" target=\"_new\">The Plane Below</a>, page(s) 17.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('50','Primordial Font','Fantastic Terrain','The Plane Below','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nPrimordial Font\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=50\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Primordial Font</h1><p class=\"flavor\">Volatile fountains of liquid elemental energy can erupt anywhere in the Elemental Chaos, changing those who bathe in them.</p><p> <b>Effect: </b>A creature that remains in a square containing a primordial font for its entire turn gains a random elemental keyword and an accompanying benefit, as shown in the table below. Alternatively, a creature in the font’s square can spend a standard action to splash the liquid over itself, gaining the keyword and the accompanying benefit even if it does not end its turn in the font.<br/> Whenever a creature gains a primordial font effect and is already under the effect of a previous result, the prior effect ends. Otherwise, a creature that is under a primordial font’s effect rolls a d20 at the end of its turn. On a result of 9 or lower, the effect ends. <br/> Creatures of the elemental origin that are affected by a primordial font can make a saving throw to avoid its effect.<br/><br/><table><tr><th>d6</th><th>Keyword</th><th>Effect</th></tr><tr><td>1</td><td>Earth</td><td>You gain resist 5 to all damage.</td></tr><tr><td>2</td><td>Fire</td><td>You deal 1d6 extra fire damage per tier with melee attacks.</td></tr><tr><td>3</td><td>Ice</td><td>Each creature that starts its turn adjacent to you is slowed until the start of your next turn.</td></tr><tr><td>4</td><td>Lightning</td><td>Until the start of your next turn, you don’t grant combat advantage or take a -5 penalty to attack rolls when you run.</td></tr><tr><td>5</td><td>Thunder</td><td>Each creature that starts its turn adjacent to you is dazed until the start of your next turn.</td></tr><tr><td>6</td><td>Water</td><td>You can shift as a minor action.</td></tr></table><br/> <b>Usage: </b>Primordial fonts create interesting random interactions for monsters and characters alike. You can place them in an encounter when you want a strange and unpredictable battle. Alternatively, primordial fonts are useful in areas containing portals or other restricted zones that are accessible only to creatures that have a certain elemental keyword.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/242110000\" target=\"_new\">The Plane Below</a>, page(s) 17.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('51','Strangling Wind','Fantastic Terrain','The Plane Below','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nStrangling Wind\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=51\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Strangling Wind</h1><p class=\"flavor\">The pressure of this wind is so great, and its blasts so turbulent, that it slows and even suffocates those who push themselves too hard. The winds are strong enough to hinder the accuracy of ranged and area attacks (even magical ones). A jet of strangling wind is typically 3 squares wide and 6 to 8 squares long at paragon tier, and 5 squares by 10 squares at epic tier.</p><p> <b>Effect: </b>A creature that starts its turn in a square of strangling wind is slowed until the start of its next turn. A creature that runs or takes a double move in strangling wind is dazed (save ends) at the end of that movement, even if it is no longer within the wind’s area. With each failed saving throw, the target loses a healing surge.<br/> Creatures take a -5 penalty to attack rolls with ranged or area attacks launched within or into an area of strangling wind.<br/> <b>Usage: </b>Strangling wind makes a formidable barrier that penalizes creatures trying to move quickly through the area. Elemental brutes and soldiers, such as rockfire dreadnoughts (see Monster Manual)and demons, love fighting in strangling wind. They can take their time beating the pulp out of their enemies without worrying much about ranged attacks.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/242110000\" target=\"_new\">The Plane Below</a>, page(s) 17.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('52','Wrath Mud','Fantastic Terrain','The Plane Below','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nWrath Mud\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=52\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Wrath Mud</h1><p class=\"flavor\">In parts of the Abyss, the land itself is subject to the insane rage that twists and contorts reality. Certain stinking bogs contain eerie mud that saps the sanity from creatures within it, pushing them to violence through psychic pain. The mud has a normal consistency but features an oily sheen, ref lecting light in a swirling rainbow of sickly color.</p><p> <b>Effect: </b>Areas of wrath mud are difficult terrain. Any creature within a square of wrath mud that scores a critical hit with a melee attack deals 1d10 extra damage per tier on that attack. Furthermore, a creature that starts its turn in a square of wrath mud and does not make a melee attack before the end of its turn takes 5 psychic damage per tier.<br/> <b>Usage: </b>Wrath mud is similar to, but more unforgiving than, blood rock. It is typically used to create bottlenecks that force bloody melee battles—the kind of fight that demons enjoy most.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/242110000\" target=\"_new\">The Plane Below</a>, page(s) 17.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('53','Insect Cloud','Fantastic Terrain','Underdark','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nInsect Cloud\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=53\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Insect Cloud</h1><p class=\"flavor\">Swarms of flying, blood-drinking bugs infest the Feydark, searching for targets for their hunger. Though they can survive on carrion and plant sap, they greatly prefer living prey. <br/> An insect cloud can occupy a single square or an area up to 5 squares on a side. It can be identified with a DC 20 Nature check.</p><p> <b>Effect: </b>Insect clouds create lightly obscured terrain. Any living creature that starts its turn in an insect cloud takes 1 damage per tier (or 2 per tier if bloodied).<br/> An insect cloud changes position during an encounter. Assign the cloud a position in the initiative order (initiative +10) and move it 1d4-1 squares on its turn, typically toward the nearest bloodied combatant.<br/> Any blast or burst that includes one or more squares occupied by an insect cloud disperses the cloud in the included squares.<br/> <b>Usage: </b>As it moves about during combat, an insect cloud adds an element of unpredictability to an encounter. Player characters can also take advantage of the situation by moving enemies into the cloud.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251210000\" target=\"_new\">Underdark</a>, page(s) 100.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('54','Ground Swarms','Fantastic Terrain','Underdark','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nGround Swarms\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=54\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Ground Swarms</h1><p class=\"flavor\">Various types of vermin crawl through the tunnels of the Feydark, including masses of rats, beetles, tiny drakes, and other nuisance creatures.<br/> A ground swarm can occupy a single square or an area up to 3 squares on a side. It can be identified with a DC 20 Nature check.</p><p> <b>Effect: </b>A ground swarm turns its squares into challenging terrain, requiring a creature that enters the swarm to make an easy Acrobatics check to avoid falling prone. Any living creature that falls prone or starts its turn prone in a ground swarm takes 1 damage per tier (or 2 per tier if bloodied).<br/> A ground swarm moves around during combat. Assign the swarm a position in the initiative order (initiative +10) and move it 1d4-1 squares on its turn, typically toward the nearest bloodied combatant.<br/> Any blast or burst that includes one or more squares occupied by a ground swarm disperses the swarm in the included squares.<br/> <b>Usage: </b>Using a ground swarm near other hazards or dangerous terrain features can make an encounter more dangerous. For example, consider having a swarm of beetles near a fast-moving stream so that if the characters can’t keep their feet, they end up having to deal with the current.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251210000\" target=\"_new\">Underdark</a>, page(s) 100.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('55','Mushroom Arch','Fantastic Terrain','Underdark','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nMushroom Arch\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=55\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Mushroom Arch</h1><p class=\"flavor\">The primal mud (see below) found in various portions of the Feydark gives rise to several secondary terrain features of interest, including the mushroom arch. Also called an arch of wonder, a mushroom arch appears as a series of glowing mushrooms (frequently pale purple) that grow together to form an arch over a corridor through which a creature can pass.<br/> A mushroom arch can form over a tunnel of any size up to 4 squares in width or height. It can be identified with a DC 20 Arcana or Dungeoneering check.</p><p> <b>Effect: </b>A mushroom arch gives off dim light in a 5-square radius. It also can affect creatures that pass through it, but rarely the same way twice. The effect is sometimes negligible, other times positive, and occasionally awful.<br/> A creature that walks through a mushroom arch (or moves to stand directly beneath it) is affected automatically; roll a d10 and refer to the table below to determine the effect. A fey creature that walks through a mushroom arch adds 2 to the roll. Any time a creature triggers a mushroom arch, the power resident within it is temporarily drained, and the arch can’t be activated again for 1 hour.<br/><table><tr><th>d10</th><th>Effect</th></tr><tr><td>1-2</td><td>Ongoing 5 damage per tier (save ends)</td></tr><tr><td>3-4</td><td>Slowed (save ends)</td></tr><tr><td>5-6</td><td>No effect</td></tr><tr><td>7-8</td><td>Bioluminescent haze grants concealment until the end of the encounter</td></tr><tr><td>9 or higher</td><td>Regeneration 2 per tier until the end of the encounter</td></tr></table><br/> <b>Usage: </b>Place a mushroom arch over a tunnel leading directly to a combat encounter to start the encounter off with a variable effect. Alternatively, placing the arch within an encounter space—perhaps in a tunnel connecting two areas of the battlefield—allows it to change the tenor of the fight in mid-combat.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251210000\" target=\"_new\">Underdark</a>, page(s) 101.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('56','Primal Mud','Fantastic Terrain','Underdark','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nPrimal Mud\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=56\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Primal Mud</h1><p class=\"flavor\">Life force rises up through the Feydark into the Feywild in the form of primal mud. This organic sludge takes on various colorations, from a brown muddy hue to a clear, viscous slime. It gathers in pools and depressions, from where it is sucked through the Feydark’s root structures up into the Feywild above. Primal mud nourishes the Feydark’s dense subterranean f lora. Brief contact with primal mud heals; lengthier exposure tears down living tissue, returning it to its raw nutrient origins.<br/> A patch of primal mud typically covers 1 to 3 contiguous squares of cavern f loor, but multiple mud patches are often present in the same large chamber. Primal mud can be identified with a DC 20 Dungeoneering check.</p><p> <b>Effect: </b>Primal mud is difficult terrain. A creature standing in primal mud can spend a healing surge as a minor action. This act temporarily expends the mud’s magic and dries it out, changing that entire patch of primal mud into normal terrain until the end of the encounter. A fey creature that uses this benefit gains 1d6 additional hit points per tier and gains a +2 bonus to speed until the end of its next turn.<br/> <b>Usage: </b>Use primal mud in particularly long or tough encounters to give the characters an edge in the fight. Alternatively, a wily fey opponent can use primal mud to heal itself and then flee the battlefield, possibly to set up an ambush in a later chamber.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251210000\" target=\"_new\">Underdark</a>, page(s) 101.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('57','Godsblood','Fantastic Terrain','Underdark','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nGodsblood\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=57\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Godsblood</h1><p class=\"flavor\">Thanks to the natural vitality of the Feydark, the blood that Torog shed while burrowing through the Feydark remains as fresh and potent as on the day it was spilled, as long as it remains on the highway. The divine energy remaining within this godsblood temporarily supercharges the natural healing capability of any creature, but at the cost of its own stamina and sanity as the dormant power of the King that Crawls surges through the creature’s body.<br/> Pools of godsblood are found in areas of 3 to 12 contiguous squares. Godsblood can be identified with a DC 25 Dungeoneering or Religion check.</p><p> <b>Effect: </b>Any creature that spends a healing surge while in an area of godsblood gains regeneration 2 per tier and a -4 penalty to Fortitude and Will. These effects last until the creature reaches full hit points.<br/> Only one creature can be affected by an area of godsblood at a time; once it is activated by a healing surge, the godsblood becomes dormant until its effect ends on that creature.<br/> Godsblood removed from its pool loses its power instantly, so it can’t be bottled or transported.<br/> <b>Usage: </b>The source of godsblood somewhat limits where you can position it. However, you can make good use of it in a running series of encounters that occur along the King’s Highway to either help the characters when they’re in need of a healing break or assist a wily enemy you might want to keep around.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251210000\" target=\"_new\">Underdark</a>, page(s) 102.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('58','Blood Grate','Fantastic Terrain','Underdark','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nBlood Grate\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=58\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Blood Grate</h1><p class=\"flavor\">Blood grates ref lect the fomorians’ fascination with butchery, even in battle. Not only do these hideous contraptions revitalize the fomorians and their allies as they fight off invaders, they also nourish the fortresses themselves with intruders’ blood.<br/> A blood grate typically fills an area of 4 to 6 contiguous squares (typically in a square or rectangular layout), though larger grates are rumored to exist in the grandest fortresses of Inbharann.<br/> A blood grate can be identified with a DC 25 Arcana check.</p><p> <b>Effect: </b>The first time in each encounter that a living creature on a blood grate takes damage, the nearest enemy within 5 squares gains temporary hit points equal to half the damage dealt. The blood grate is then deactivated until the end of the encounter.<br/> <b>Usage: </b>Most Inbharann fortresses include several blood grates at key defensive positions, which simultaneously nourish the fortress and revitalize its defenders. The fomorians and their servants maneuver enemies atop the grates to gain stamina when those foes are wounded.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251210000\" target=\"_new\">Underdark</a>, page(s) 103.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('59','Eye Unblinking','Fantastic Terrain','Underdark','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nEye Unblinking\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=59\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Eye Unblinking</h1><p class=\"flavor\">The fomorians of Inbharran use weapons called eyes unblinking, inset into spires of black steel. These magic weapons are made from the ritually enlarged evil eyes of deceased fomorian rulers and champions. Nourished by the blood of wounded foes (see “Blood Grate,”), they remain alive and vigilant, loosing beams of arcane energy at invaders.<br/> Each eye unblinking occupies a single square, set high in a tower. A typical fortress has one to four eyes unblinking, depending on its size. A fortress with insufficient eyes unblinking to cover all approaches rarely lasts long in the Feydark. An eye unblinking can be identified with a DC 25 Arcana check.</p><p> <b>Effect: </b>Once per encounter on its turn, each eye unblinking can create a particular special effect as an area burst 5 within 20 squares of the tower in which the eye is set. The burst creates a zone that lasts until the end of the encounter. Once an eye unblinking creates its zone, it can move the zone 3 squares on its initiative count (initiative +11). Consider an eye to have a Will of 18 for the purpose of attempts to dispel its magic.<br/> Included here are three examples of special effects; feel free to create your own minor effect along these lines. All such effects are designed only to assist those loyal to the ruler of the tower.<br/> <img src=\"images/bullet.gif\" alt=\"\"/> No fomorian or fomorian ally within the zone grants combat advantage.<br/> <img src=\"images/bullet.gif\" alt=\"\"/> Each fomorian or fomorian ally within the zone gains resist 5 to a particular type of damage (such as acid or fire).<br/> <img src=\"images/bullet.gif\" alt=\"\"/> When a fomorian or fomorian ally within the zone hits an enemy with a melee attack, it can shift 1 square as a free action.<br/> <b>Usage: </b>Place eyes unblinking to drive home the difficulty of assaulting the fomorians on their home territory. Characters who know they must invade a fomorian fortress would do well to find some way to sabotage its defenses before making a frontal assault. Colluding with a rival fomorian would be a reasonable, if ethically dubious, plan.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251210000\" target=\"_new\">Underdark</a>, page(s) 103.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('60','Spore Field','Fantastic Terrain','Underdark','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nSpore Field\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=60\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Spore Field</h1><p class=\"flavor\">The overwhelming vigor of the fungal colonies that suffuse the Living Grotto and nearby tunnels manifests most dangerously in spore fields. These places transfix creatures that breathe in their intoxicating spores, even as other spores begin the job of rapidly decomposing the soon-to-be organic detritus.<br/> Spore field patches are found in areas of 3 to 12 contiguous squares. A spore field can be identified with a DC 25 Dungeoneering check.</p><p> <b>Effect: </b>A creature that enters a spore field or ends its turn in one is restrained and takes ongoing 5 damage per tier (save ends both). If a creature drops to 0 hit points while in a spore field, its body produces a burst 1 centered on the creature; all squares in the burst become spore field squares. Creatures in the burst are treated as if they had entered it.<br/> Plants are immune to the effects of a spore field.<br/> <b>Usage: </b>Placing a spore field in an encounter with slower creatures could even up the odds a bit for those creatures. Of course, characters can also use the terrain to slow down faster foes by maneuvering the foes into it.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251210000\" target=\"_new\">Underdark</a>, page(s) 109.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('61','Godsrock','Fantastic Terrain','Underdark','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nGodsrock\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=61\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Godsrock</h1><p class=\"flavor\">No divine entity can enter the underworld without in some way dying or taking on an aspect of death. Some live again when they exit the land of the dead, but all leave pieces of themselves behind. Even the King that Crawls could not escape this reality.<br/> As Torog stabbed like a knife into the heart of death’s realm, it slashed back into him. Where fragments of Torog’s bones struck the earth, formations called godsrock sprouted. These columns of chalky material resemble limestone and rise from the floor at irregular intervals.<br/> These stony pillars share an echo of Torog’s physical and mental endurance with nearby living creatures, but also mete out excruciating pain to those wracked by other conditions.<br/> At least one faction of incunabula seeks to locate and record the position of every fragment of gods rock in the Shadowdark. If they know the reason for gathering this information, they aren’t sharing it.<br/> A godsrock fragment typically occupies an area of 3 to 9 contiguous squares. It can be identified with a DC 25 Dungeoneering or Religion check.</p><p> <b>Effect: </b>A typical square of godsrock is 3 to 10 feet in height, and it can function as cover or blocking terrain, depending on height. Living creatures adjacent to a square of godsrock gain a +2 bonus to Fortitude and Will. In addition, any living creature that fails a saving throw while adjacent to godsrock takes 5 necrotic damage per tier.<br/> <b>Usage: </b>Adding godsrock to an encounter with several creatures that use powers requiring saving throws allows the necrotic damage to come into play, while also providing living characters with a benefit (as long as they stay near the godsrock, of course).</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251210000\" target=\"_new\">Underdark</a>, page(s) 119.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('62','Caught Breath','Fantastic Terrain','Underdark','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nCaught Breath\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=62\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Caught Breath</h1><p class=\"flavor\">In several areas of the Shadowdark, the warm breath of living creatures freezes in the air, forming tinkling crystals. This is no mere fog. Each exhalation curls out and then halts in midair. Beards and mustaches swiftly become rimed with ice, and glinting frost collects all around the head and shoulders.<br/> An area of caught breath fills an encounter-sized cavern, though the icy exhalations appear to drift through the Underdark on imperceptible winds and can also be encountered in narrow tunnels or areas of much larger chambers. Caught breath can be identified with a DC 20 Dungeoneering check.</p><p> <b>Effect: </b>Creatures in an area of caught breath take a -10 penalty to Stealth checks. Creatures that don’t breathe (such as angels, constructs, living constructs, and undead) do not take this penalty.<br/> <b>Usage: </b>Caught breath has a limited impact on combat, so its placement is more flavorful than dangerous. Placing it in an area where the characters have incentive to move quietly—perhaps forcing them to take a more elaborate and perhaps dangerous path—can add to the tension of a scene.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251210000\" target=\"_new\">Underdark</a>, page(s) 120.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('63','Hungry Void','Fantastic Terrain','Underdark','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nHungry Void\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=63\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Hungry Void</h1><p class=\"flavor\">Some places in the unending night below sap existence as well as light and warmth. These hungry voids give creatures in them a disorienting feeling of falling away from their bodies. Light cannot dispel this effect because it is the area and not the shadows that unravel the threads of life. A creature in a hungry void is closer to death than elsewhere.<br/> A hungry void typically fills an area 5 to 10 squares on a side, but some hungry voids—said to reflect the sites of epic battles in the Underdark—can be much larger. A hungry void can be identified with a DC 20 Dungeoneering check.</p><p> <b>Effect: </b>Bright light in a hungry void is automatically reduced to dim. A creature in a hungry void takes a -1 penalty to death saving throws. A bloodied creature that ends its turn in a hungry void square takes 2 necrotic damage per tier.<br/> <b>Usage: </b>A hungry void accelerates the slide from bloodied to unconscious to dead, making any dangerous encounter more terrifying for the characters.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251210000\" target=\"_new\">Underdark</a>, page(s) 120.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('64','Soul Shard Clusters','Fantastic Terrain','Underdark','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nSoul Shard Clusters\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=64\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Soul Shard Clusters</h1><p class=\"flavor\">Remnants of living creatures slain in the Shadowdark linger as soul shards, and often these shards congregate into clusters. Some of the shards resemble ghostly versions of the creatures they were in life, while others appear as ephemeral skulls. Death giants covet soul shards, using them to fuel their powers.<br/> A soul shard cluster encountered in the Shadowdark fills a 3-square-by-3-square area. It can be identified with a DC 25 Dungeoneering or Religion check.</p><p> <b>Effect: </b>A soul shard cluster has no substance, doesn’t block movement or line of sight, and can’t be attacked or damaged in any way.<br/> Any living, nonshadow creature within the space of a soul shard cluster takes a -2 penalty to attack rolls and all defenses. A living creature within the space of a soul shard cluster can attempt a hard Religion check as a standard action to draw on the energy of the soul shard, regaining hit points if the check succeeds as if it had spent a healing surge. Success dissipates the soul shard cluster temporarily, but it reforms somewhere else nearby within hours or days. A creature can’t retry the check.<br/> <b>Usage: </b>The presence of a soul shard cluster could be the only warning characters have before a death giant attacks them.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/251210000\" target=\"_new\">Underdark</a>, page(s) 121.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('65','Barbed Cacti','Fantastic Terrain','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nBarbed Cacti\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=65\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Barbed Cacti</h1><p class=\"flavor\">Rugged cacti cling to Athas’s rocky badlands and stony barrens. The thorns of most cacti are painful but not debilitating. The barbed cactus, on the other hand, has wicked hooks that cling to a creature’s flesh to cause lasting problems. This vegetation clumps in patches covering 3 or 4 squares.</p><p> <b>Effect: </b>A creature that enters a square of barbed cacti takes 3 damage per tier and a -2 penalty to attack rolls (save ends).<br/> <b>Usage: </b>Barbed cacti cordon off certain areas of the battlefield, a fact that characters or monsters can use to their advantage. Cacti-covered squares can be accessed only by accepting damage and an attack hindrance.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 134.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('66','Brambleweed','Fantastic Terrain','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nBrambleweed\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=66\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Brambleweed</h1><p class=\"flavor\">Brambleweed has finger-length thorns, sharp and sturdy enough to rend flesh. The plant’s thick vines spread across an area, hindering any who enter it.</p><p> <b>Effect: </b>Brambleweed squares are difficult terrain. A creature that starts its turn in a brambleweed square takes 5 damage per tier. A creature that ends its turn in a brambleweed square is restrained until the start of its next turn.<br/> <b>Usage: </b>Brambleweed can survive in areas of defiled ground, taking its nutrients from passing creatures rather than the surrounding soil. As a result, defilers use the plant to ward their territory. In the wilds of Athas, shrewd predators and hunters weaken prey by herding it into patches of brambleweed.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 134.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('67','Ash Field','Fantastic Terrain','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nAsh Field\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=67\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Ash Field</h1><p class=\"flavor\">Defiling magic withers verdant areas, dissolving plants into a fine powder and creating extended areas of lifeless ash. Defiled vegetation is a primary source of Athas’s vast silt deposits.</p><p> <b>Effect: </b>Over time, wind blows the ash into lowlands where it gathers to form silt pools. On occasion, squares of settled ash form in areas the wind rarely reaches.<br/> <b>Usage: </b>Ash fields serve as a chilling reminder of the devastation wrought by defiling magic. They can be found in canyons and other sheltered areas.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 134.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('68','Black Sand','Fantastic Terrain','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nBlack Sand\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=68\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Black Sand</h1><p class=\"flavor\">When defiling magic is used to slaughter innocents, a residue can cover the drained land. This foul miasma mixes with the ground to create black sand, which poisons the landscape and any creature that passes through it.</p><p> <b>Effect: </b>A creature in a square of black sand regains half the normal number of hit points.<br/> <b>Usage: </b>Black sand terrain adds a flavorful dash of Athas to an encounter. It also requires characters to consider their positioning before they use their second wind or healing powers.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 134.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('69','Dead Magic','Fantastic Terrain','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nDead Magic\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=69\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Dead Magic</h1><p class=\"flavor\">The most powerful arcane magic (such as that used by the Dragon) completely drains an area of plant and animal life. These dead magic locales have nothing left to give.</p><p> <b>Effect: </b>A creature in a square of dead magic takes a -5 penalty to the attack roll of any arcane or primal attack power. The arcane defiling power cannot be used in squares of dead magic.<br/> <b>Usage: </b>Dead magic defiled terrain should be used sparingly, even more so when the adventuring party includes arcane and primal heroes. It takes an extremely powerful defiler (such as a sorcerer-king) to so thoroughly eradicate all life in an area.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 135.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('70','Sickening Heat','Fantastic Terrain','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nSickening Heat\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=70\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Sickening Heat</h1><p class=\"flavor\">Athas’s sun burns with peculiar intensity in areas where magic has defiled a copious amount of plant life. This severe heat can sicken creatures.</p><p> <b>Effect: </b>A creature that ends its turn in a square of sickening heat is weakened until the end of its next turn.<br/> <b>Usage: </b>Sickening heat defiled terrain is particularly debilitating to strikers and others who specialize in high-damage output. A monster with a power that slides and then immobilizes enemies is particularly effective in an area of sickening heat.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 135.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('71','Glimmering Mirage','Fantastic Terrain','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nGlimmering Mirage\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=71\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Glimmering Mirage</h1><p class=\"flavor\">Heat mirages are common in the wastelands. They appear near the horizon and beckon viewers with the promise of shade or water, only to vanish as the travelers draw close. Certain malign visions linger, however. These glimmering mirages are crafted by cruel primal spirits to confuse and distress wanderers.</p><p> <b>Effect: </b>A glimmering mirage is a wall 4 or more squares long, which blocks line of sight. A creature adjacent to this terrain gains concealment against ranged attacks. At the end of each round, roll a d6. On a result of 1, the glimmering mirage vanishes until the end of the encounter; on a result of 6, the mirage moves 5 squares in a random direction. Other results leave the scene unchanged.<br/> <b>Usage: </b>Visible from a distance, glimmering mirages can lure adventurers to a particular location. They also conceal creatures and add a random element to an encounter.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 135.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('72','Lightning Pillar','Fantastic Terrain','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nLightning Pillar\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=72\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Lightning Pillar</h1><p class=\"flavor\">This fantastic, charged monolith rises from the ground in an open area. The pillar hums with elemental power and is clearly an otherworldly formation. Clusters of these pillars form over a wide area when lightning from the Elemental Chaos bleeds into Athas’s wastes.</p><p> <b>Effect: </b>A lightning pillar occupies 1 square and is capable of delivering a lightning pillar strike attack.<br/> <b>Usage: </b>Lightning pillars give characters and their enemies an extra weapon to use on the battlefield.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 135.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('73','Mudflats','Fantastic Terrain','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nMudflats\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=73\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Mudflats</h1><p class=\"flavor\">Underground water reservoirs seep up through the soil to create a dusty sludge. The hint of life-sustaining water in these mudflats attracts parched creatures, but those who venture in can become trapped.</p><p> <b>Effect: </b>Particularly thick sections of mudflats are difficult terrain. The mire also hides mud sinks, occupying 2-by-2-square or larger areas.<br/> <b>Usage: </b>Numerous mudflats are scattered around the Sea of Silt. The rarer inland ones draw settlers, who carefully extract life-giving water from the damp ground.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 135.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('74','Psychic Reservoir','Fantastic Terrain','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nPsychic Reservoir\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=74\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Psychic Reservoir</h1><p class=\"flavor\">Sheltered from the blowing grit, odd violet crystals grow in caverns or rocky terrain. These formations are psychic reservoirs, prized by psionic characters for the latent energy they contain.</p><p> <b>Effect: </b>With a minor action, a character adjacent to a psychic reservoir can extract the energy from it, causing it to crumble to dust. If that character uses power points, he or she gains 1 power point that lasts until the end of the encounter or until expended. Otherwise, the character adds 5 psychic damage per tier to his or her next damage roll.<br/> <b>Usage: </b>Psychic reservoirs add a slight power boost to one side or the other in an encounter. By placing them in scattered spots about the battlefield, you encourage quick action and maneuverability. Psychic reservoirs are particularly valuable in an encounter featuring creatures that are vulnerable to psychic damage.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 136.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('75','Rocky Badlands','Fantastic Terrain','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nRocky Badlands\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=75\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Rocky Badlands</h1><p class=\"flavor\">The canyons and wastes of Athas’s rocky badlands are rugged and arid. Scant plant life enlivens the desolation.</p><p> <b>Effect: </b>Rocky badlands contain numerous teetering stone pillars, the remnants of outcroppings eroded by sand and wind over the eons.<br/> <b>Usage: </b>Homesteaders are hard pressed to survive in the badlands. As a result, few settlements exist in these areas. They are most useful as ambush sites or as locales for monster or bandit lairs.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 136.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('76','Salt Flats','Fantastic Terrain','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nSalt Flats\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=76\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Salt Flats</h1><p class=\"flavor\">Salt flats are bleak plains encrusted with saline deposits and bone-dry sand. The rare water sources in these areas are brackish.</p><p> <b>Effect: </b>Violence in salt flats invariably results in painful injuries. Fine salt crystals suspended in the constant breeze permeate whatever covering is placed over wounds, causing unending agony. Clean water to wash away the salt or aid in recovery is nonexistent. Dunes of the finest particulates, called salt piles, collect throughout the salt flats.<br/> <b>Usage: </b>The denuding of Athas’s plant life and the gradual evaporation of its seas has resulted in vast regions of salt flats. These areas challenge travelers even when no opponents or hazards exist.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 136.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('77','Sandy Wastes','Fantastic Terrain','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nSandy Wastes\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=77\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Sandy Wastes</h1><p class=\"flavor\">The wastes of Athas stretch for miles in every direction, largely featureless but for sand, wind, and relentless heat.</p><p> <b>Effect: </b>Sandy wastes are covered in rolling dunes that can hide bandits, raiders, and desert predators. A small dune covers a 3-by-3-square or larger area.<br/> <b>Usage: </b>Merciless sunlight is the only thing more plentiful on Athas than sandy wastes. Within them, small dunes are ideal ambush spots for creatures hardy enough to lie in wait while covered with sand.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 136.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('78','Silt Pool','Fantastic Terrain','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nSilt Pool\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=78\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Silt Pool</h1><p class=\"flavor\">Natural dips and crevasses in the land can fill up with extremely light, powdery silt. These areas act like quicksand, easily trapping unwary creatures.</p><p> <b>Effect: </b>Silt pools are difficult terrain, and occasionally hide silt deep spots. They can also contain silt sink hazards.<br/> <b>Usage: </b>Although smaller silt pools can blend into the surrounding terrain, the flat, liquid surface of a larger silt pool rarely goes unnoticed. Wading through a silt pool and risking silt deep spots might be the only path available.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 136.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('79','Slipsand','Fantastic Terrain','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nSlipsand\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=79\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Slipsand</h1><p class=\"flavor\">Athas’s acute heat can cause an elemental reaction in sandy areas where magic, primal power, or psionics have been used heavily. The ground becomes saturated with high quantities of glass particles, making its surface particularly treacherous.</p><p> <b>Effect: </b>A creature that enters a square containing slipsand must make an Acrobatics check (moderate DC). On a failure, the creature falls prone and takes 5 damage per tier from the glass fragments.<br/> <b>Usage: </b>Creatures not trained in Acrobatics, particularly those that have low Dexterity scores, are greatly inhibited by slipsand. This terrain should be used judiciously, since it can drastically reduce mobility in an encounter.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 137.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('80','Tree of Life','Fantastic Terrain','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nTree of Life\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=80\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Tree of Life</h1><p class=\"flavor\">A tree of life is mystically infused with primal forces of life. Sorcerer-kings and other defilers with significant resources maintain groves of these mighty timbers to fuel their magic.</p><p> <b>Effect: </b>A tree of life emits a 5-square aura. Creatures within the area regain the maximum possible number of hit points from healing effects. When making a skill check during the performance of a divination ritual, a character within the tree’s aura gains a +5 bonus. Also, a character who takes an extended rest within the aura gains an extra healing surge that lasts until he or she takes another extended rest.<br/> A tree of life has 500 hit points and vulnerable 10 necrotic. It regenerates 5 hit points per hour. If the tree’s hit points drop to 0, it dies.<br/> <b>Usage: </b>Trees of life are rare and wondrous objects. Most of these hardwoods are jealously hoarded by sorcerer-kings deep within their palaces. Using tree of life defiling, defilers can draw on their magic more freely within a tree of life’s aura.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 137.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('81','Z\'tal Horde','Fantastic Terrain','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nZ\'tal Horde\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=81\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Z\'tal Horde</h1><p class=\"flavor\">Colonies of dun-scaled lizards called z’tals gather in a chirping mass. In doing so, they exude a slippery ooze and a noxious vapor. A z’tal horde remains undisturbed by creatures passing through it, but it can be dispersed by fire, acid sprays, or similar area effects.</p><p> <b>Effect: </b>Each square of a z’tal horde is difficult terrain. A creature that ends its turn in a horde square takes 5 poison damage per tier. A creature that starts its turn in a horde square must make a saving throw before taking any other actions. If the saving throw fails, the creature falls prone. A close or an area attack that deals at least 1 point of damage destroys squares of a z’tal horde within the attack’s area of effect.<br/> <b>Usage: </b>The fast-breeding z’tal, difficult but not impossible to herd, sometimes serve as guardians for certain intelligent creatures. More often, a scavenging horde occurs naturally, drawn to the area around the lairs of large predators.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 137.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('82','Blood Rock','Fantastic Terrain','Dungeon Master\'s Kit, Dungeon Master\'s Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nBlood Rock\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=82\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Blood Rock</h1><p class=\"flavor\">The site of ceremonial sacrifices, a great slaughter, or some other calamity, the spirit of death hovers over blood rock.</p><p> <b>Effect: </b>A creature standing in a square of blood rock can score a critical hit on a natural die roll of 19 or 20.<br/> <b>Usage: </b>Blood rock makes encounters slightly more unpredictable, which usually favors the monsters. You can use a large expanse of it to make everyone score critical hits more often, or use just a few squares of it and let the adventurers and monsters fight over who gets to stand on it.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/244640000\" target=\"_new\">Dungeon Master\'s Kit</a>, page(s) 209, <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/217507200\" target=\"_new\">Dungeon Master\'s Guide</a>, page(s) 67.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('83','Cave Slime','Fantastic Terrain','Dungeon Master\'s Kit, Dungeon Master\'s Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nCave Slime\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=83\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Cave Slime</h1><p class=\"flavor\">This thin, blue slime is harmless but extremely slick.</p><p> <b>Effect: </b>A creature that enters a square filled with cave slime must succeed on an easy Acrobatics check or fall prone.<br/> <b>Usage: </b>Use cave slime to shield artillery monsters from the characters. Skirmisher monsters that can fly or that excel at Acrobatics might dart back and forth across a patch of cave slime, defying adventurers to follow them.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/244640000\" target=\"_new\">Dungeon Master\'s Kit</a>, page(s) 210, <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/217507200\" target=\"_new\">Dungeon Master\'s Guide</a>, page(s) 67.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('84','Illusions','Fantastic Terrain','Dungeon Master\'s Kit, Dungeon Master\'s Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nIllusions\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=84\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Illusions</h1><p class=\"flavor\">Illusions can mimic any terrain. </p><p> <b>Effect: </b>Creatures that realize that an object is an illusion ignore its effects, while those that do not realize the truth behind the illusion react to it as appropriate.<br/> <b>Usage: </b>Use characters’ passive Insight checks to determine if they notice something “not right,” but don’t allow them to make active checks without good reason. Once a character has reason to be suspicious, he can make an Insight check as a minor action to attempt to disbelieve an illusion.<br/> Illusory Wall: An illusory wall blocks line of sight. Creatures can walk through it without penalty, though obviously creatures that believe the illusion aren’t likely to try doing so. Some illusory walls are similar to one-way mirrors in that they are transparent from one side (allowing a viewer to see creatures on the other side) while from the other side they appear to be normal walls (blocking line of sight, and looking like normal wall terrain).</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/244640000\" target=\"_new\">Dungeon Master\'s Kit</a>, page(s) 210, <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/217507200\" target=\"_new\">Dungeon Master\'s Guide</a>, page(s) 68.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('85','Mirror Crystal','Fantastic Terrain','Dungeon Master\'s Kit, Dungeon Master\'s Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nMirror Crystal\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=85\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Mirror Crystal</h1><p class=\"flavor\">Mirror crystal causes strange twists and turns in space.</p><p> <b>Effect: </b>A creature standing on mirror crystal can look down and see all the other mirror crystal spaces within 20 squares. Creatures can make ranged attacks through mirror crystal, targeting any creature on or adjacent to another square of mirror crystal. The range to a creature attacked through mirror crystal is 1 square.<br/> <b>Usage: </b>Start an encounter with artillery monsters hidden from sight but positioned on squares of mirror crystal. Then watch as the players figure out how to return the monsters’ fire!</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/244640000\" target=\"_new\">Dungeon Master\'s Kit</a>, page(s) 211, <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/217507200\" target=\"_new\">Dungeon Master\'s Guide</a>, page(s) 68.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('86','Slides','Fantastic Terrain','Dungeon Master\'s Kit, Dungeon Master\'s Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nSlides\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=86\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Slides</h1><p class=\"flavor\">A slide is coated with a slick substance and designed to send characters tumbling, offering quick transport at a price.</p><p> <b>Effect: </b>A slide is difficult terrain. A creature that enters a slide square must make an Acrobatics check. A creature that fails immediately moves to the end of the slide, falls prone, and ends its move.<br/> <b>Usage: </b>Use a slide with skirmisher monsters that can handle the Acrobatics checks and take advantage of the slides to move around quickly.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/244640000\" target=\"_new\">Dungeon Master\'s Kit</a>, page(s) 211, <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/217507200\" target=\"_new\">Dungeon Master\'s Guide</a>, page(s) 68.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('87','Spiderwebs','Fantastic Terrain','Dungeon Master\'s Kit, Dungeon Master\'s Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nSpiderwebs\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=87\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Spiderwebs</h1><p class=\"flavor\">Enormous spiders haunt the underground regions of the world, sometimes leaving sticky webs behind long after they themselves are gone.</p><p> <b>Effect: </b>The webs of giant spiders are difficult terrain. A creature that enters a spiderweb must make an Athletics check or an Acrobatics check or become immobilized. Trapped creatures can use the escape action to free themselves from the web. A spiderweb square is lightly obscured.<br/> <b>Usage: </b>Don’t use spiderwebs only in encounters with giant spiders—they can also be interesting terrain in fights against either mobile monsters or monsters with push and slide effects. An ogre might try to push the party rogue into a spiderweb to make him stand still.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/244640000\" target=\"_new\">Dungeon Master\'s Kit</a>, page(s) 211, <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/217507200\" target=\"_new\">Dungeon Master\'s Guide</a>, page(s) 69.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('88','Choke Frost','Fantastic Terrain','Dungeon Master\'s Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nChoke Frost\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=88\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Choke Frost</h1><p class=\"flavor\">Choke frost is found in the deepest caves of frozen lands or in the lairs of creatures of elemental ice. This light, white mist congeals into thick ice when creatures or other sources of heat move through it.</p><p> <b>Effect: </b>When a creature enters a square of choke frost, it takes a -1 penalty to speed. This penalty is cumulative and lasts until the creature uses a move action to negate it. Creatures that have resistance or immunity to cold, or that have the cold keyword are immune to this effect.<br/> <b>Usage: </b>Use choke frost to slow down characters with high speed, limiting their ability to reach leaders, controllers, and artillery creatures in the back ranks. This terrain also works well with skirmishers that are resistant or immune to cold, allowing them to attack and retreat through choke frost squares, while the characters are forced to move around the terrain or pay the cost.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/217507200\" target=\"_new\">Dungeon Master\'s Guide</a>, page(s) 67.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('89','Cloudspore','Fantastic Terrain','Dungeon Master\'s Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nCloudspore\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=89\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Cloudspore</h1><p class=\"flavor\">Cloudspores are created by strange mushrooms found in the Underdark. The mushrooms, which are normal terrain, release a thick cloud of spores when creatures move through an area where they grow.</p><p> <b>Effect: </b>When a creature enters a square of cloudspore mushrooms, that square becomes lightly obscured (Rules Compendium, page 220) for 5 minutes. Once a square of cloudspores has discharged, it cannot do so again for 24 hours.<br/> <b>Usage: </b>Cloudspores work well with encounters that include lurkers. The lurkers can either remain in the lightly obscured square, or move from one area to another to gain concealment and possible combat advantage. Mixing poisonous spores with cloudspores in later encounters is also a good way to surprise the characters.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/217507200\" target=\"_new\">Dungeon Master\'s Guide</a>, page(s) 67.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('90','Ember Moss','Fantastic Terrain','Dungeon Master\'s Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nEmber Moss\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=90\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Ember Moss</h1><p class=\"flavor\">This strange Underdark moss is a useful ingredient in creating everburning torches and sunrods, because it’s highly flammable and burns bright and hot.</p><p> <b>Effect: </b>A creature in a square of ember moss takes 5 extra damage from fire attacks and a -4 penalty to saving throws against ongoing fire damage.<br/> <b>Usage: </b>Ember moss is a good way for fire-based creatures to maximize their fire attacks. Place ember moss in a choke point with soldier or brute creatures blocking the path while artillery or controller creatures launch ranged fire attacks against the characters.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/217507200\" target=\"_new\">Dungeon Master\'s Guide</a>, page(s) 67.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('91','Font of Power','Fantastic Terrain','Dungeon Master\'s Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nFont of Power\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=91\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Font of Power</h1><p class=\"flavor\">Due to planar energy, the presence of a powerful artifact, or some other factor, this terrain boosts certain kinds of attacks.</p><p> <b>Effect: </b>Choose one power keyword, such as fire, evocation, or arcane, for a font of power square. Attacks that have that keyword made in that square gain a +5 bonus to damage per tier.<br/> <b>Usage: </b>A font of power is a good way to make an average encounter into a hard encounter, and a hard encounter into a deadly one. Have the font squares fill most of an encounter area and use an elite or solo creature with one or more attacks that are keyed to the font of power’s damage bonus to increase its damage output and get the characters’ attention.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/217507200\" target=\"_new\">Dungeon Master\'s Guide</a>, page(s) 68.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('92','Grab Grass','Fantastic Terrain','Dungeon Master\'s Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nGrab Grass\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=92\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Grab Grass</h1><p class=\"flavor\">This thick, tough grass grows in deep forests of the Feywild or in areas where the Feywild’s magic filters into the material world.</p><p> <b>Effect: </b>A creature that falls prone in a square of grab grass must make a Strength check to stand up (use a DC based on the creature’s level, and usually an easy or moderate check).<br/> <b>Usage: </b>Grab grass works best in an outdoor encounter. Use controllers and other creatures with the ability to move opponents and knock them prone. Then when the characters are prone and having a difficult time standing up, bring in the brutes to deal heavy damage. If you want to make it more difficult, choose brutes with reach attacks so that most characters won’t be able to attack from prone.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/217507200\" target=\"_new\">Dungeon Master\'s Guide</a>, page(s) 68.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('93','Grasping Slime','Fantastic Terrain','Dungeon Master\'s Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nGrasping Slime\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=93\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Grasping Slime</h1><p class=\"flavor\">This black, viscous goo feeds on Underdark insects and vermin by trapping them in place and slowly digesting them. This black, viscous goo feeds on Underdark insects and vermin by trapping them in place and slowly digesting them. </p><p> <b>Effect: </b>Grasping slime is difficult terrain. A creature moving through a square of grasping slime must make an Athletics check (based on the creature’s level) to pass. On a failed check, the creature ends its movement in that square.<br/> <b>Usage: </b>Use multiple patches of grasping slime to slow the characters’ advance against ranged creatures, potentially giving those creatures multiple rounds to attack. The slime’s ability to negate movement will also give soldiers with marking powers time to engage the front ranks of stuck characters, further slowing their advance while the ranged creatures continue to attack. Grasping slime is also a good way to control the characters’ movements, funneling them toward a trap.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/217507200\" target=\"_new\">Dungeon Master\'s Guide</a>, page(s) 68.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('94','Loadstone','Fantastic Terrain','Dungeon Master\'s Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nLoadstone\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=94\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Loadstone</h1><p class=\"flavor\">This strange rock dramatically increases the weight of all objects on it or near it.</p><p> <b>Effect: </b>Loadstone squares are difficult terrain. A ranged attack that passes through a loadstone square takes a -2 penalty to the attack roll.<br/> <b>Usage: </b>Use loadstone areas improve the changes of brutes against characters with ranged attacks, forcing those characters to maneuver for better line of effect. This terrain is useful for giving extra protection to soldier or brute creatures guarding a narrow point, such as a bridge across a chasm, from ranged attacks while they engage melee-based characters at the choke point.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/217507200\" target=\"_new\">Dungeon Master\'s Guide</a>, page(s) 68.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('95','Pillar of Life','Fantastic Terrain','Dungeon Master\'s Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nPillar of Life\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=95\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Pillar of Life</h1><p class=\"flavor\">This tall stone pillar is infused with life energy.</p><p> <b>Effect: </b>When a creature starts its turn adjacent to a pillar of life, it regains 5 hit points per tier.<br/> <b>Usage: </b>Adding a pillar of life to an encounter can create an interesting tactical situation, especially if the monsters are initially surrounding the pillar and gaining extra hit points each turn. If you choose not to reveal the terrain’s effect immediately, use visual clues to help the players understand the terrain effect.<br/> Adding a pillar of life to an encounter will also let you set the characters against a much more difficult encounter, since they will gain the extra healing. As an alternative to reduce the pillar’s effectiveness slightly, consider having the pillar only work ever other round, to create a “capture the flag” type of environment between the characters and their opposition (with visual, auditory, or some other clue indicating when it’s powered up).</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/217507200\" target=\"_new\">Dungeon Master\'s Guide</a>, page(s) 68.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('96','Sacred Circle','Fantastic Terrain','Dungeon Master\'s Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nSacred Circle\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=96\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Sacred Circle</h1><p class=\"flavor\">A sacred circle is dedicated to a specific deity and infused with divine energy.</p><p> <b>Effect: </b>A creature that has the same alignment as the deity a sacred circle is dedicated to gains a +2 bonus to attack rolls while standing in that circle. Most sacred circles fill an area 3 squares by 3 squares.<br/> <b>Usage: </b>Use a circle dedicated to an evil deity with the aligned monsters (evil cultists) arrayed within the circle, improving their attacks. Or use a circle dedicated to a good or unaligned deity that the characters can use to improve their attacks against enemies with high defenses. Each option requires different strategies for the characters to use, and makes forced movement effects more valuable for one side or the other.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/217507200\" target=\"_new\">Dungeon Master\'s Guide</a>, page(s) 68.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('97','Teleporters','Fantastic Terrain','Dungeon Master\'s Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nTeleporters\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=97\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Teleporters</h1><p class=\"flavor\">Teleporters are magical gates that whisk creatures from one spot to another.</p><p> <b>Effect: </b>A creature that enters a teleporter space immediately moves to the teleporter’s destination square. The destination square can be another teleporter to allow for two-way travel. In that case, the creature automatically moves to a square adjacent to the destination square.<br/> <b>Usage: </b>Besides allowing for interesting movement options during an encounter, teleporters are a great way to surprise characters. Have some minions or other weak enemies draw the characters into an area with one or more teleporters, and then bring the brutes, skirmishers, or soldiers into the combat behind the front lines. You can also mix teleporters with mirror crystals to create a complex and dynamic encounter.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/217507200\" target=\"_new\">Dungeon Master\'s Guide</a>, page(s) 69.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('98','Whirlwind','Fantastic Terrain','Dungeon Master\'s Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nWhirlwind\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=98\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Whirlwind</h1><p class=\"flavor\">Whirlwinds form in areas infused with elemental energy (often in water or air). A whirlwind’s current drags creatures along its path.</p><p> <b>Effect: </b>When a creature enters a whirlwind square or starts its turn in one, it moves a distance and direction according to the whirlwind’s strength and direction (as determined by the Dungeon Master). This movement is a slide effect, with the distance and direction determined by the whirlwind.<br/> A creature that wants to fight against the whirlwind can spend squares of movement to reduce the distance the wind slides it (if the creature still has movement left during its turn). The creature can reduce the distance partially, or decrease it to 0, provided the creature has enough movement to do so.<br/> If a whirlwind slides a creature through another square that has a whirlwind, the creature ignores that other whirlwind.<br/> A whirlwind can also move creatures upward. A creature that ends its turn outside of a whirlwind square and aloft falls to the ground if it isn’t flying.<br/> <b>Usage: </b>Whirlwinds increase the amount of forced movement occurring in an encounter, creating a chaotic and moving battlefield that can present difficulties for defenders who like to lock down their opponents. Pair whirlwinds that launch creatures into the air with flying skirmisher that aren’t harmed by the forced movement to increase their movement capabilities. Whirlwinds can also make an encounter in a high location with long falls more dramatic, especially if the characters are fighting opponents with forced movement powers.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/217507200\" target=\"_new\">Dungeon Master\'s Guide</a>, page(s) 69.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('99','Abyssal Wellspring','Fantastic Terrain','Manual of the Planes','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nAbyssal Wellspring\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=99\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Abyssal Wellspring</h1><p class=\"flavor\">An abyssal wellspring is a suppurating wound in reality. It is a place where the raw madness and evil of the Abyss bulges into another plane.</p><p> <b>Effect: </b>An abyssal wellspring appears as an area of at least 4 contiguous squares. When a creature starts its turn in a wellspring square, it takes 5 damage per tier, and gains a +1 bonus to attack rolls per tier and a +2 bonus to damage rolls per tier. These bonuses last until the end of its turn.<br/> <b>Usage: </b>One obvious thematic way to use an abyssal wellspring in an encounter is to pair it with demons, especially brutes like bariguras. They have enough hit points to take the damage from the wellspring, and the extra bonuses give them a nastier punch that normal. A wellspring can also offer an interesting choice to characters when you pair it with higher-level soldier monsters with high defenses. The characters must decide if the bonuses to hit and damage are worth the extra damage taken.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/218937200\" target=\"_new\">Manual of the Planes</a>, page(s) 21.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('100','Angelic Lantern','Fantastic Terrain','Manual of the Planes','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nAngelic Lantern\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=100\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Angelic Lantern</h1><p class=\"flavor\">Angelic lanterns are faint manifestations of divine will. These tiny, pulsating balls of light float in a square, shedding bright light in a 20-square radius.</p><p> <b>Effect: </b>A creature in a square containing an angelic lantern gains a +1 bonus per tier to attack rolls with divine or radiant attack powers. Once an angelic lantern grants this bonus to a creature, it winks out of existence at the end of the turn in which it granted the bonus.<br/> <b>Usage: </b>Since angelic lanterns are one-shot terrain effects, it’s more interesting to include a number of them in an encounter. Use the lanterns in an encounter with skirmishers that have radiant attack powers to create a moving battlefield where the monsters are seeking out each lantern’s bonus. Once the characters understand the benefit the lanterns provide, it will be a race for the characters to reach the lantern squares, either to take advantage of their effect, or to block their opponents from doing so.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/218937200\" target=\"_new\">Manual of the Planes</a>, page(s) 21.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('101','Astral Flame','Fantastic Terrain','Manual of the Planes','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nAstral Flame\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=101\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Astral Flame</h1><p class=\"flavor\">Astral flame is the burning essence of the Astral Sea. It is a fountain of fiery liquid that sheds bright light in a 20-square radius.</p><p> <b>Effect: </b>It costs 1 extra square of movement to enter a square of astral flame. A creature that enters an astral flame square or starts its turn there takes 10 radiant damage per tier. A creature adjacent to an astral flame square can coat a weapon or implement in the astral flame as a minor action. Until the end of the encounter, attacks using that weapon or implement gain the radiant keyword.<br/> <b>Usage: </b>Large areas of astral flames will work well with creatures that have resistance or immunity to radiant damage, allowing them to ignore the flame’s radiant damage while the characters must decide if entering into the astral flame square is worth the damage.<br/> This terrain is also a good way to give creative characters a boost against creatures that are vulnerable to radiant damage. Use minions to guard a single astral flame square while an elite or solo leader that is vulnerable to radiant damage attacks the group in another part of the encounter area.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/218937200\" target=\"_new\">Manual of the Planes</a>, page(s) 21.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('102','Divine Blood','Fantastic Terrain','Manual of the Planes','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nDivine Blood\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=102\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Divine Blood</h1><p class=\"flavor\">Wreckage from the ancient war between the gods and the primordials still litters the planes. In secluded places where few dare travel, one might stumble upon a pool of divine blood that was shed during that conflict.</p><p> <b>Effect: </b>When a creature ends its movement in a divine blood square, it gains 5 temporary hit points per tier, but takes a -1 penalty to attack rolls and checks (the blood still retains much divine power, which assails the creature with confusing visions and memories). The penalty lasts until the temporary hit points are lost. The visions and memories are usually random and nonsensical, but sometimes they can impart information.<br/> <b>Usage: </b>Use pools of divine blood to create a feel of ancient, immense divine power. Play up the memories and visions of gods fighting primordials. Include just one square of divine blood with monsters that have forced movement powers to create a “capture the flag” feel to the encounter as the characters’ enemies try to position themselves on the divine blood square to gain temporary hit points. Or add multiple blood squares to give the characters the option of retreating to one for its temporary hit point benefit. Including a lurker that targets characters seeking one of those squares will make such an encounter more interesting.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/218937200\" target=\"_new\">Manual of the Planes</a>, page(s) 22.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('103','Elemental Seepage','Fantastic Terrain','Manual of the Planes','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nElemental Seepage\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=103\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Elemental Seepage</h1><p class=\"flavor\">Elemental seepage is elemental fire, cold, thunder, or lightning, or some combination of the four. The seepage takes the form of a strange, viscous mass that pulsates and quivers with the energy of the Elemental Chaos. In general, elemental seepages are harmless, though some contain one-way, imprecise portals to the Elemental Chaos.</p><p> <b>Effect: </b>An elemental seepage appears as an area of at least 4 contiguous squares. A creature within 5 squares of an elemental seepage square that uses an attack power with a keyword corresponding to any of the energy types forming the seepage gains a +1 bonus to attack rolls per tier with that power.<br/> <b>Usage: </b>Use this terrain to give creatures with attacks that match the seepage damage type extra hitting power. If you include only a few elite creatures whose attacks match the terrain’s damage type, it creates an interesting tactical situation where the characters are trying to keep those creatures more than 5 squares from the seepage.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/218937200\" target=\"_new\">Manual of the Planes</a>, page(s) 22.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('104','Erratic Portal','Fantastic Terrain','Manual of the Planes','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nErratic Portal\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=104\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Erratic Portal</h1><p class=\"flavor\">When the magic of a portal begins to fail, it might transform into an erratic portal.</p><p> <b>Effect: </b>When a creature ends its movement in an erratic portal square, it must make a saving throw. If the creature saves, it can teleport up to 5 squares per tier as a free action. If it fails, the creature can teleport up to 2 squares per tier as a free action, and it takes 10 lightning damage per tier.<br/> <b>Usage: </b>As with all terrain that teleports or moves creatures, use erratic portals to create a complex encounter that allows the combatants to rapidly move around the battlefield. This will make life difficult for defenders, but also rewards those who can make an attack against a marked opponent that shifts away. Include elite or solo monsters (and their better saving throws) to make it a challenging encounter.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/218937200\" target=\"_new\">Manual of the Planes</a>, page(s) 22.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('105','Hellfire','Fantastic Terrain','Manual of the Planes','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nHellfire\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=105\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Hellfire</h1><p class=\"flavor\">Hellfire is found predominantly in the Nine Hells.</p><p> <b>Effect: </b>A square of hellfire casts bright light in a 20-square radius. The ranged attacks of creatures adjacent to a hellfire square gain the fire keyword. A creature that enters a hellfire square or starts its turn there takes ongoing 5 fire damage per tier (save ends). The ongoing fire damage increases by 5 per tier with each failed saving throw (to a maximum of 20 per tier).<br/> <b>Usage: </b>This terrain obviously fits encounters in the Hells, but it also makes sense in other encounter locations where devils are present, in temples and shrines dedicated to Asmodeus, or other fiery locations. Use it to give devil worshiping cultists ranged fire attacks, and include some fire-resistant creatures with forced-movement powers that can force the characters into the hellfire. For a difficult challenge, mix in creatures with powers that apply a penalty to saving throws against ongoing fire damage, such as genasi fireblades.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/218937200\" target=\"_new\">Manual of the Planes</a>, page(s) 22.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('106','Phase Rock','Fantastic Terrain','Manual of the Planes','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nPhase Rock\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=106\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Phase Rock</h1><p class=\"flavor\">Phase rock areas are slightly out of sync with reality.</p><p> <b>Effect: </b>While in a phase rock square, a creature is insubstantial and phasing. When a creature starts its turn in a phase rock square and moves out of that square, it is insubstantial and phasing until the end of its move.<br/> <b>Usage: </b>Use phase rock to let creatures that don’t normally have phasing move through blocking terrain or obstacles, allowing them to avoid defenders and surprise the characters. Be careful with placing too many phase rock squares, because creatures can remain insubstantial in those squares, taking half damage and prolonging encounters.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/218937200\" target=\"_new\">Manual of the Planes</a>, page(s) 22.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('107','Razorvine','Fantastic Terrain','Manual of the Planes','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nRazorvine\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=107\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Razorvine</h1><p class=\"flavor\">This hardy creeper plant is ubiquitous in Sigil and throughout the planes. It has sharp, serrated leaves that cut creatures moving through the vegetation.</p><p> <b>Effect: </b>Razorvines form in an area that is at least 4 contiguous squares. A razorvine is difficult terrain. A creature that enters a razorvine square or starts its turn there takes 10 damage per tier.<br/> <b>Usage: </b>Use this terrain to keep the characters out of specific locations in an encounter area, or place a controller or an elite creature within a circle of razorvine, or in a U-shaped section that only allows one character to approach it without going through razorvine squares. Unless the characters have strong ranged attacks, they must choose whether to take damage from the razorvine, or find another way to bypass them.<br/> Used as part of a trap, razorvine growing from movable wooden or stone walls can block the characters’ retreat from a tough fight.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/218937200\" target=\"_new\">Manual of the Planes</a>, page(s) 22.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('108','Energy Crystals','Fantastic Terrain','Manual of the Planes','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nEnergy Crystals\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=108\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Energy Crystals</h1><p class=\"flavor\">These weird crystals collect and store energy of all kinds.</p><p> <b>Effect: </b>Energy crystals are difficult terrain and have the following stats: 20 hit points per tier; AC 5, Fortitude 10.<br/> When an energy crystal is hit by a cold, fire, lightning, necrotic, radiant, or thunder attack, it absorbs the energy and takes no damage from the attack. In addition, until the end of the attacker’s next turn, any creature that enters the energy crystal’s square or starts its turn there takes 5 damage per tier of the type absorbed by the crystal. If an energy crystal is destroyed while it holds absorbed energy, it explodes, dealing 10 damage per tier of the absorbed energy type to each creature within 3 squares of it.<br/> <b>Usage: </b>Use energy crystals with creatures that have burst or blast attacks with a damage type that the crystals will absorb and resistances of the appropriate damage type. After priming the crystals with an attack, have those creatures destroy the crystals to deal extra damage in a large burst. Minions also work well at destroying crystals that have been primed, even if they destroy themselves in the process.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/218937200\" target=\"_new\">Manual of the Planes</a>, page(s) 22.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('109','Earth Nodes','Fantastic Terrain','Forgotten Realms Campaign Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nEarth Nodes\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=109\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Earth Nodes</h1><p class=\"flavor\">Streams of invisible power run beneath the earth, occasionally crossing and collecting in a single spot like a river flowing into a lake. Such rare collection points are called earth nodes. These nodes are usually anywhere from 30 feet across to a half mile wide.</p><p> <b>Effect: </b>An earth node focuses magic, allowing the following uses:<br/><img src=\"images/bullet.gif\" alt=\"\"/> A node can be used as if it were a permanent teleportation circle. If it is used as a destination, those using it arrive at the center of the node.<br/><img src=\"images/bullet.gif\" alt=\"\"/> While in the node, an arcane caster can make a DC 25 Arcana check as a standard action. On a successful check, that caster gains a +1 bonus to any one d20 roll it makes each round and a +1 bonus to damage rolls with arcane attack powers. These bonuses last until the caster leaves the node.<br/><img src=\"images/bullet.gif\" alt=\"\"/> An earth node can have rituals tied to it. The most common rituals are: Linked Portal, Planar Portal, and Leomund’s Secret Chest. Even creatures without the Ritual Caster feat can access these rituals, as long as those creatures are the appropriate level.<br/> <b>Usage: </b>An earth node can make an interesting encounter location in addition to being a type of terrain. Usually found underground, nodes are often guarded by powerful magical creatures. Intelligent creatures like drow will take advantage of the +1 bonus, if able. An earth node is a good way to create an encounter where waves of opponents enter the combat at different intervals using the node’s teleportation effect.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/218287200\" target=\"_new\">Forgotten Realms Campaign Guide</a>, page(s) 51.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('110','Earthmotes','Fantastic Terrain','Forgotten Realms Campaign Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nEarthmotes\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=110\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Earthmotes</h1><p class=\"flavor\">Earthmotes are free-floating bits of landscape that defy gravity to hover in the sky. Despite their appearance, these islands in the sky are stable and durable. Earthmotes vary in size and altitude, and most are mostly level on top, resembling upside down mountains peaks.</p><p> <b>Effect: </b>Earthmotes are excellent traveling fortresses and adventure sites.<br/> <b>Usage: </b>Use an earthmote as the fantastic site of an enemy base. Have the mote descend near the ground when the enemy attacks a settlement, making it susceptible to easy infiltration. After stopping the raiders, the characters can return to the earthmotes to gain access before it takes to the air. Be careful, however, if you don’t want the characters to have their own flying base. One way to avoid this is to have the earthmote lose its magic and crash to the ground, or go out of control, traveling in a random direction, once the enemies controlling it are defeated.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/218287200\" target=\"_new\">Forgotten Realms Campaign Guide</a>, page(s) 52.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('111','Fey Crossroads','Fantastic Terrain','Forgotten Realms Campaign Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nFey Crossroads\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=111\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Fey Crossroads</h1><p class=\"flavor\">A fey crossroads is an entry to the Feywild. Each one’s appearance varies, whether it is a stone arch, a pair of rune-scribed standing stones, or lintel-capped monoliths.</p><p> <b>Effect: </b>A fey crossroads functions like a portal, transporting those going through it to another place, either in the world or in the Feywild. They can be keyed, restricted, variable, and even malfunctioning.<br/> <b>Usage: </b>Discovering a fey crossroads can be an adventure in itself. Once the location of one is discovered, consider placing powerful fey guardians such as eladrin knights, dark fey, or magical beasts that bar the entrance. Bypassing those guardians might require defeating them in combat, or negotiating passage for a price.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/218287200\" target=\"_new\">Forgotten Realms Campaign Guide</a>, page(s) 53.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('112','Mythals','Fantastic Terrain','Forgotten Realms Campaign Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nMythals\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=112\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Mythals</h1><p class=\"flavor\">Mythals are enormous, layered magic constructions created by extensive and unique group rituals. They were designed to provide magical support to those in their area, but most have lost their power and now provide only protective fields to hinder enemies and help allies.</p><p> <b>Effect: </b>A mythal usually protects a large area such as a city or town. Most commonly have the following effects on creatures while they are in its area:<br/><img src=\"images/bullet.gif\" alt=\"\"/> Evil or chaotic evil creatures take a -2 penalty to attack rolls, checks, and saving throws. In addition, those creatures cannot use teleportation powers.<br/><img src=\"images/bullet.gif\" alt=\"\"/> Creatures allied to the mythal gain a +2 bonus to saving throws.<br/><img src=\"images/bullet.gif\" alt=\"\"/> Any creature that activates a spellscar is affected by the mythal for the rest of that day as if it were evil.<br/><img src=\"images/bullet.gif\" alt=\"\"/> Any attempt to teleport into the mythal’s area alerts any wizards that are linked to the mythal, and such attempts fail unless they have been specifically allowed. Those entering the mythal’s area arrive in a magically warded, well-guarded location.<br/><br/> <b>Usage: </b>Mythals provide protection from outside (and usually evil) threats. The protection of a mythal offers a good opportunity to defend a population center or stronghold from outside attack. If the characters are considered allies of the mythal, they can handle stronger threats while in the mythal’s area. Have the heroes defend the area against a powerful raiding party, or a horde of minions following a powerful leader. The encounter can be difficult or extremely difficult due to the mythal’s effects.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/218287200\" target=\"_new\">Forgotten Realms Campaign Guide</a>, page(s) 53.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('113','Plaguelands','Fantastic Terrain','Forgotten Realms Campaign Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nPlaguelands\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=113\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Plaguelands</h1><p class=\"flavor\">Plaguelands are regions where the Spellplague still runs amok, changing everything it contacts. Most plaguelands appear to be shrouded in a thick, luminous blue fog, with everything inside blurred and wavering when viewed from outside.</p><p> <b>Effect: </b>The terrain inside the plaguelands boundary is mutable, shifting constantly like boiling mud. Each hour that a creature not already spellscarred or plaguechanged spends in a plagueland subjects it to the Spellplague.<br/> A creature that takes an extended rest in a plagueland takes a -1 penalty to Fortitude and loses one healing surge, which can only be regained outside the plagueland. This penalty stacks, but disappears when the creature takes an extended rest outside the plagueland. If a creature’s Fortitude drops to 0, it dies in an explosion of blue flame.<br/> Characters who survive a full day (24 or more consecutive hours) in a plagueland might qualify to choose a spellscar, at the Dungeon Master’s discretion.<br/> <b>Usage: </b>Due to the nature of the plaguelands, encounters inside them that include aberrations fit thematically, though almost any type of creature could be found in plaguelands. If the characters are in a plaguelands for a short time, use creatures with attacks targeting Fortitude to take advantage of that penalty. Be aware of the healing surge penalty if the characters will be in the plaguelands for an extended time, however, because the characters will have less resources to survive the longer they are there.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/218287200\" target=\"_new\">Forgotten Realms Campaign Guide</a>, page(s) 54.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('114','Portals','Fantastic Terrain','Forgotten Realms Campaign Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nPortals\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=114\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Portals</h1><p class=\"flavor\">Magic portals link diverse places across the world and across the planes. A portal is an immovable magical surface of a size and shape created by its creator. The surface is often situated in a physical frame, such as an arch or doorway, that stands free rather than inside a wall. Some portals allow those looking at it to view the location where those who use it will arrive. A creature trained in Arcana can make a DC 24 Arcana check to detect a portal’s magic.</p><p> <b>Effect: </b>When a creature passes through the surface of a portal, it is transported to a set destination. Putting any significant part of an object or body through the portal’s surface transports the whole object or creature to the destination, unless an obstacle blocks that space, in which case the portal doesn’t function. If a creature occupies the destination space, the creature being transported is shunted to the nearest unoccupied space. Any number of creatures can enter a portal at the same time, as long as the portal’s size can accommodate them.<br/> Unattended objects, such as a flying arrow, can’t pass through a portal by itself, instead bouncing off. There is no line of effect for powers and rituals to work through portals, unless the portal was designed that way.<br/> A portal’s creator can set extra limitations on a portal. One limitation is the requirement of a key to pass through a portal. Another limitation is restricted access, so that only specific creatures or objects can pass through.<br/> A portal can have multiple preset destinations, allowing the user to select among them, or based on the key used. Other portals will set the destination randomly.<br/> A portal can also malfunction. The most common malfunction is an unintended or random destination. Some malfunctioning portals have strange effects.<br/> <b>Usage: </b>A great way to change up an adventure from what is expected is to use a malfunctioning portal, just don’t introduce one too often or the players will avoid all portals, or examine each one to make sure it’s safe. If the group believes they are going to one location and prepare for that destination, send them to another completely different location they aren’t prepared for (for example, if they are prepared to go to the Hells, send them to an icy world in the Astral Sea. Give them a way back, however, if you don’t want the story to change course for an extended period.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/218287200\" target=\"_new\">Forgotten Realms Campaign Guide</a>, page(s) 54.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('115','Fey Mounds','Fantastic Terrain','Forgotten Realms Campaign Guide','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nFey Mounds\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=115\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Fey Mounds</h1><p class=\"flavor\">Fey mounds are hidden burial grounds of wild fey. When a fey creature dies, it is placed in a mound and covered loosely with earth, branches, and leaves. Mushrooms grow around such mounds, and lights, ghostly giggling, and fey apparitions are common near or on them. Powerful magical treasures, the former belongings of the dead fey, are often placed in the mound.</p><p> <b>Effect: </b>A nearby creature that makes a DC 27 Arcana check can sense a fey mound. Fey mound soil is a powerful component in fertility rituals. Some mounds act as fey crossroads. Most are trapped, and some are guarded by living fey. Those guardians gain a +1 bonus to any one d20 roll they make each round while guarding the mound.<br/> <b>Usage: </b>Use a fey mound’s strange phenomena (strange lights, calling voices) to draw the characters into the area of a fey mound. Have the buried fey creature’s spirit rise to confront the characters. Depending on their interaction, the spirit either imparts useful knowledge or its former belongings, or turns into a vengeful spirit, such as a banshee, and attacks the characters for disturbing the burial site.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/218287200\" target=\"_new\">Forgotten Realms Campaign Guide</a>, page(s) 53.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('116','Boulder','Terrain Power','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nBoulder\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=116\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">Single-Use Terrain</span>Boulder</h1><p class=\"flavor\"><i>This large boulder is perched atop a long slope. One strong shove could send it hurtling into an oncoming mob of enemies.</i></p><p class=\"powerstat\"><b>Standard Action</b></p><p class=\"powerstat\"><b>Requirement:</b> You must be adjacent to the boulder.</p><p class=\"flavor\"><b>Check:</b> Athletics check (hard DC) to shove the rock.</p><p class=\"powerstat\"><b>Success:</b> The boulder rolls forward and down the slope, stopping after moving 1d6 squares away from the slope’s base. The boulder can move through a creature’s space. When it does so, make the following attack.</p><p class=\"powerstat\"><b>Target:</b> Each creature whose space the boulder enters</p><p class=\"flavor\"><b>Attack:</b> Level + 3 vs. Fortitude</p><p class=\"powerstat\"><b>Hit:</b> 2d10 + one-half level damage, and the target is knocked prone.</p><p class=\"powerstat\"><b>Miss:</b> Slide the target 1 square out of the boulder’s path.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 63.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('117','Shattering Crystal','Terrain Power','The Plane Below','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nShattering Crystal\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=117\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">Single-Use Terrain</span>Shattering Crystal</h1><p class=\"flavor\"><i>The giant’s greatclub smashes into the crystal, and rubble hurtles toward you.</i></p><p class=\"powerstat\"><b>Minor Action</b></p><p class=\"powerstat\"><b>Requirement:</b> The giant must be adjacent to a crystal stalactite or stalagmite.</p><p class=\"flavor\"><b>Check:</b> The giant makes a melee basic attack against the crystal (AC 5).</p><p class=\"powerstat\"><b>Success:</b> The stalactite or stalagmite shatters and makes an attack, which is a close blast 3 or close burst 1 (giant’s choice) centered on the stalactite’s or stalagmite’s square.</p><p class=\"powerstat\"><b>Target:</b> Each creature in the blast or burst</p><p class=\"flavor\"><b>Attack:</b> +13 vs. Fortitude</p><p class=\"powerstat\"><b>Hit:</b> 1d10 + 3 damage.</p><p class=\"powerstat\"><b>Effect:</b> The blast or burst becomes an area of difficult terrain that lasts until the end of the encounter.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/242110000\" target=\"_new\">The Plane Below</a>, page(s) 92.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('118','Brazier','Terrain Power','Dungeon Magazine 177','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nBrazier\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=118\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">Single-Use Terrain</span>Brazier</h1><p class=\"flavor\"><i>This brazier burns brightly and hot. Tipping its iron stand sends blazing coals over nearby foes.</i></p><p class=\"powerstat\"><b>Standard Action</b></p><p class=\"powerstat\"><b>Requirement:</b> You must be adjacent to a brazier.</p><p class=\"flavor\"><b>Check:</b> Strength check (DC 20) to overturn the brazier.</p><p class=\"powerstat\"><b>Success:</b> The brazier is overturned, making an attack in a close blast 3.</p><p class=\"powerstat\"><b>Target:</b> Each creature in blast</p><p class=\"flavor\"><b>Attack:</b> +18 vs. Reflex</p><p class=\"powerstat\"><b>Hit:</b> Ongoing 10 fire damage (save ends).</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=dnd/dutoc/177\" target=\"_new\">Dungeon Magazine 177</a>, page(s) 25.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('119','Settled Ash','Terrain Power','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nSettled Ash\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=119\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">Single-Use Terrain</span>Settled Ash</h1><p class=\"flavor\"><i>Ash from plants destroyed by defiling magic coats the ground. The slightest disturbance kicks up an obscuring cloud.</i></p><p class=\"powerstat\"><b>Standard Action</b></p><p class=\"powerstat\"><b>Requirement:</b> You must be adjacent to a square of settled ash.</p><p class=\"flavor\"><b>Check:</b> Athletics check (easy DC) to raise a cloud of ash.</p><p class=\"powerstat\"><b>Success:</b> The ash fills the air, obscuring vision.</p><p class=\"powerstat\"><b>Target:</b> Each creature in a close blast 3</p><p class=\"flavor\"><b>Attack:</b> Level + 3 vs. Fortitude</p><p class=\"powerstat\"><b>Hit:</b> The target is blinded until the end of your next turn.</p><p class=\"powerstat\"><b>Effect:</b> The area of the blast is heavily obscured until the end of the encounter.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 134.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('120','Lightning Pillar Strike','Terrain Power','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nLightning Pillar Strike\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=120\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">At-Will Terrain</span>Lightning Pillar Strike</h1><p class=\"flavor\"><i>At your command, lightning lashes out from an ancient stone monolith.</i></p><p class=\"powerstat\"><b>Standard Action</b></p><p class=\"powerstat\"><b>Requirement:</b> You must be within 5 squares of a lightning pillar.</p><p class=\"flavor\"><b>Check:</b> Arcana, Nature, or Religion check (hard DC) to trigger the pillar’s attack.</p><p class=\"powerstat\"><b>Success:</b> You activate the lightning pillar.</p><p class=\"powerstat\"><b>Target:</b> One creature you choose in a close burst 5</p><p class=\"flavor\"><b>Attack:</b> Level + 3 vs. Reflex</p><p class=\"powerstat\"><b>Hit:</b> 2d6 + one-half level lightning damage.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 135.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('122','Salt Pile','Terrain Power','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nSalt Pile\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=122\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">Single-Use Terrain</span>Salt Pile</h1><p class=\"flavor\"><i>A pile of wind-blown salt rests on the ground. A savvy combatant can use it to blind a foe or harm an injured foe.</i></p><p class=\"powerstat\"><b>Standard Action</b></p><p class=\"powerstat\"><b>Requirement:</b> You must be adjacent to the salt pile.</p><p class=\"flavor\"><b>Check:</b> Athletics check (easy DC) to toss or kick a spray of particles.</p><p class=\"powerstat\"><b>Success:</b> The salt showers the target.</p><p class=\"powerstat\"><b>Target:</b> One creature in a close blast 3</p><p class=\"flavor\"><b>Attack:</b> Level + 3 vs. Reflex</p><p class=\"powerstat\"><b>Hit:</b> The target is blinded (save ends). If the target is bloodied, it is instead blinded and slowed (save ends both).</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 136.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('123','Teetering Stone Pillar','Terrain Power','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nTeetering Stone Pillar\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=123\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">Single-Use Terrain</span>Teetering Stone Pillar</h1><p class=\"flavor\"><i>This towering stone column narrows at its base, making it top-heavy and unstable.</i></p><p class=\"powerstat\"><b>Standard Action</b></p><p class=\"powerstat\"><b>Requirement:</b> You must be adjacent to the pillar.</p><p class=\"flavor\"><b>Check:</b> Athletics check (moderate DC) to collapse the pillar.</p><p class=\"powerstat\"><b>Success:</b> The pillar topples over.</p><p class=\"powerstat\"><b>Target:</b> One or two creatures, which must be adjacent to each other; one of the creatures must also be adjacent to the pillar</p><p class=\"flavor\"><b>Attack:</b> Level + 3 vs. Reflex</p><p class=\"powerstat\"><b>Hit:</b> 1d10 + one-half level damage, and the target is dazed (save ends).</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 136.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('124','Small Dune','Terrain Power','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nSmall Dune\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=124\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">At-Will Terrain</span>Small Dune</h1><p class=\"flavor\"><i>A small, slowly shifting dune is formed from loose sand that parts easily, then flows back to erase any trace of disturbance.</i></p><p class=\"powerstat\"><b>Standard Action</b></p><p class=\"powerstat\"><b>Requirement:</b> You must be in a square of the dune.</p><p class=\"flavor\"><b>Check:</b> Athletics check (easy DC) to burrow into the dune.</p><p class=\"powerstat\"><b>Success:</b> You bury yourself beneath the sand. You fall prone and have total concealment until you move or attack.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 136.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('125','Silt Deep Spot','Terrain Power','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nSilt Deep Spot\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=125\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">At-Will Terrain</span>Silt Deep Spot</h1><p class=\"flavor\"><i>Within a shallow pool of silt, occasional deep spots can be exploited by observant combatants.</i></p><p class=\"powerstat\"><b>Standard Action</b></p><p class=\"flavor\"><b>Check:</b> Nature check (hard DC) to recognize a deeper spot in the silt pool.</p><p class=\"powerstat\"><b>Target:</b> One creature you choose within a silt pool</p><p class=\"flavor\"><b>Attack:</b> Level + 3 vs. Reflex</p><p class=\"powerstat\"><b>Hit:</b> The target is restrained (save ends).</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 137.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('127','Lava Pit','Terrain Power','Dungeon Magazine 179','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nLava Pit\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=127\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">At-Will Terrain</span>Lava Pit</h1><p class=\"flavor\"><i>A fiery blob of lava launches itself at a nearby target.</i></p><p class=\"powerstat\"><b>Minor Action</b></p><p class=\"powerstat\"><b>Requirement:</b> You must be trained in Arcana and must have seen a creature be attacked with this terrain power.</p><p class=\"flavor\"><b>Check:</b> Arcana check (DC 13) to understand how to control and attack with the Lava Pit.</p><p class=\"powerstat\"><b>Success:</b> You can use this terrain power automatically until the end of the encounter. Each use counts as a standard action. You must be within 3 squares of the lava to trigger the attack.</p><p class=\"powerstat\"><b>Target:</b> One creature within 3 squares of the lava pit.</p><p class=\"flavor\"><b>Attack:</b> +6 vs. Reflex</p><p class=\"powerstat\"><b>Hit:</b> 1d4 fire damage plus ongoing 3 fire damage (save ends).</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=dnd/dutoc/179\" target=\"_new\">Dungeon Magazine 179</a>, page(s) 35.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('129','Chandelier','Terrain Power','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nChandelier\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=129\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">Single-Use Terrain</span>Chandelier</h1><p class=\"flavor\"><i>A large, ornate chandelier of iron and crystal hangs over the battlefield. It would be a pity if it fell to the ground.</i></p><p class=\"powerstat\"><b>Standard Action</b></p><p class=\"flavor\"><b>Check:</b> From a distance, to sever or loosen the rope or chain holding the chandelier aloft, make a ranged attack (the chandelier’s defenses are level + 5).<br/> Alternatively, you can spend a standard action to cut the rope while adjacent to either the chandelier or the rope or chain keeping it aloft.</p><p class=\"powerstat\"><b>Success:</b> The chandelier falls to the ground and smashes to pieces.</p><p class=\"powerstat\"><b>Target:</b> Each creature in an area burst 1 beneath the chandelier</p><p class=\"flavor\"><b>Attack:</b> Level + 3 vs. Reflex</p><p class=\"powerstat\"><b>Hit:</b> 2d8 + one-half level damage.</p><p class=\"powerstat\"><b>Miss:</b> Half damage.</p><p class=\"powerstat\"><b>Effect:</b> The area where the chandelier fell becomes difficult terrain.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 63.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('130','Rope Bridge','Terrain Power','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nRope Bridge\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=130\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">At-Will Terrain</span>Rope Bridge</h1><p class=\"flavor\"><i>This rickety bridge spans a deep gap. One sudden move, and it sways perilously, threatening to put anyone on it over the side.</i></p><p class=\"powerstat\"><b>Standard Action</b></p><p class=\"powerstat\"><b>Requirement:</b> You must be on or adjacent to the bridge.</p><p class=\"flavor\"><b>Check:</b> Athletics check (moderate DC) to sway the bridge.</p><p class=\"powerstat\"><b>Success:</b> The bridge sways.</p><p class=\"powerstat\"><b>Target:</b> Each creature standing on the bridge (including you, if applicable)</p><p class=\"flavor\"><b>Attack:</b> Level + 3 vs. Reflex</p><p class=\"powerstat\"><b>Hit:</b> The target is knocked prone. If the target is already prone, it falls off the bridge.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 63.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('131','Ruined Wall','Terrain Power','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nRuined Wall\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=131\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">Single-Use Terrain</span>Ruined Wall</h1><p class=\"flavor\"><i>This sagging wall is ready to fall over with just the right application of force.</i></p><p class=\"powerstat\"><b>Standard Action</b></p><p class=\"powerstat\"><b>Requirement:</b> You must be adjacent to the wall.</p><p class=\"flavor\"><b>Check:</b> Athletics check (hard DC) to topple the wall.</p><p class=\"powerstat\"><b>Success:</b> The wall collapses.</p><p class=\"powerstat\"><b>Target:</b> Each creature in a close blast 3 in the direction the wall fell</p><p class=\"flavor\"><b>Attack:</b> Level + 3 vs. Reflex</p><p class=\"powerstat\"><b>Hit:</b> 1d10 + one-half level damage, and the target is knocked prone.</p><p class=\"powerstat\"><b>Miss:</b> Half damage.</p><p class=\"powerstat\"><b>Effect:</b> The space the wall covered and the area of the blast become difficult terrain.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 63.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('133','Table of Combustibles','Terrain Power','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nTable of Combustibles\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=133\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">Single-Use Terrain</span>Table of Combustibles</h1><p class=\"flavor\"><i>A table holds beakers and vials containing volatile combustibles that have a violent reaction when mixed together or thrown to the ground.</i></p><p class=\"powerstat\"><b>Standard Action</b></p><p class=\"powerstat\"><b>Requirement:</b> You must be adjacent to the table.</p><p class=\"flavor\"><b>Check:</b> Athletics check (hard DC) to overturn the table. You can drop prone as part of the standard action to avoid the attack.</p><p class=\"powerstat\"><b>Success:</b> The table is overturned.</p><p class=\"powerstat\"><b>Target:</b> Each creature in a close burst 2 centered on the table</p><p class=\"flavor\"><b>Attack:</b> Level + 3 vs. Reflex</p><p class=\"powerstat\"><b>Hit:</b> Ongoing 5 fire and poison damage per tier (save ends).</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 63.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('134','Tapestry','Terrain Power','Dungeon Master\'s Guide 2, Dungeon Magazine 180','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nTapestry\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=134\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">Single-Use Terrain</span>Tapestry</h1><p class=\"flavor\"><i>A quick tug, and the tapestry hanging on the wall flutters to the ground, trapping anyone next to it.</i></p><p class=\"powerstat\"><b>Standard Action</b></p><p class=\"powerstat\"><b>Requirement:</b> You must be adjacent to the tapestry.</p><p class=\"flavor\"><b>Check:</b> Athletics check (moderate DC) to pull the tapestry down.</p><p class=\"powerstat\"><b>Success:</b> The tapestry falls.</p><p class=\"powerstat\"><b>Target:</b> Each creature in a close blast 3 out from the tapestry</p><p class=\"flavor\"><b>Attack:</b> Level + 3 vs. Reflex</p><p class=\"powerstat\"><b>Hit:</b> The target is blinded and slowed until it is no longer underneath the tapestry.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 63, <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=dnd/dutoc/180\" target=\"_new\">Dungeon Magazine 180</a>, page(s) 47.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('135','Infernal Brazier','Terrain Power','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nInfernal Brazier\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=135\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">Single-Use Terrain</span>Infernal Brazier</h1><p class=\"flavor\"><i>These heavy brass braziers smoke with noxious fumes. What’s burning in there, anyway?</i></p><p class=\"powerstat\"><b>Standard Action</b></p><p class=\"powerstat\"><b>Requirement:</b> You must be adjacent to the brazier.</p><p class=\"flavor\"><b>Check:</b> Athletics check (DC 23) to push over the brazier.</p><p class=\"powerstat\"><b>Success:</b> The brazier spills its contents.</p><p class=\"powerstat\"><b>Target:</b> Each creature in a close blast 3 from the brazier</p><p class=\"flavor\"><b>Attack:</b> +16 vs. Reflex</p><p class=\"powerstat\"><b>Hit:</b> Ongoing 10 fire and poison damage (save ends).</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 77.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('140','Tree of Life Defiling','Terrain Power','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nTree of Life Defiling\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=140\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">At-Will Terrain</span>Tree of Life Defiling</h1><p class=\"flavor\"><i>The tree of life pulses with vitality, fueling the powers of a greedy defiler.</i></p><p class=\"powerstat\"><b>Free Action</b></p><p class=\"powerstat\"><b>Requirement:</b> You must be within 5 squares of a tree of life.</p><p class=\"powerstat\"><b>Effect:</b> When you use arcane defiling or a necrotic power and deal damage to one or more of your allies, the tree of life takes that damage instead.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 137.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('141','Swinging Rope or Vine','Terrain Power','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nSwinging Rope or Vine\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=141\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">At-Will Terrain</span>Swinging Rope or Vine</h1><p class=\"flavor\"><i>A vine hangs down from the treetops over a deep chasm.</i></p><p class=\"powerstat\"><b>Move Action</b></p><p class=\"powerstat\"><b>Requirement:</b> A vine hangs down from the treetops over a deep chasm.</p><p class=\"flavor\"><b>Check:</b> Athletics check (moderate DC) to swing from the vine or rope’s starting square to its ending square.</p><p class=\"powerstat\"><b>Success:</b> You move from the vine or rope’s starting square to its ending square along the vine or rope’s path. This movement provokes opportunity attacks, and you can let go from the vine at any point during this movement. If you reach the ending square, you can make an Athletics check to jump at the end of the swing, treating it as a jump with a running start, but you must jump in the same direction as the movement of the swinging vine or rope.</p><p class=\"flavor\"><b>Failure:</b> You do not move, and your move action ends.</p><p class=\"powerstat\"><b>Effect:</b> When placing a swinging vine or rope in an encounter, the DM must determine the rope’s starting square, its path of travel, its ending square, and whether it can travel in both directions.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>, page(s) 63.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('142','Exotic Fruit Trees','Terrain Power','Dungeon Magazine 165','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nExotic Fruit Trees\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=142\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">Single-Use Terrain</span>Exotic Fruit Trees</h1><p class=\"flavor\"><i>A quick leap and a swipe knocks bulbous fruit off a nearby tree.</i></p><p class=\"powerstat\"><b>Standard Action</b></p><p class=\"flavor\"><b>Check:</b> Athletics check, DC 17, or a melee attack roll, AC 17, to knock the fruit down.</p><p class=\"powerstat\"><b>Success:</b> Make the following attack.</p><p class=\"powerstat\"><b>Target:</b> Close burst 1 centered on the tree’s trunk; each creature in the burst</p><p class=\"flavor\"><b>Attack:</b> +11 vs. Reflex; if the attacking creature is also a target of the attack, it gains a +5 bonus to Reflex against the attack.</p><p class=\"powerstat\"><b>Hit:</b> 1d6 + 4 damage, and the target is dazed until the end of your next turn.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=dnd/dutoc/165\" target=\"_new\">Dungeon Magazine 165</a>.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('143','Bookcase','Terrain Power','Dungeon Magazine 165','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nBookcase\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=143\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">Single-Use Terrain</span>Bookcase</h1><p class=\"flavor\"><i>A firm shove sends the bookcase toppling over onto the surprised victims.</i></p><p class=\"powerstat\"><b>Standard Action</b></p><p class=\"powerstat\"><b>Requirement:</b> You must be adjacent to the bookcase.</p><p class=\"flavor\"><b>Check:</b> Athletics check, DC 17, to shove the bookcase.</p><p class=\"powerstat\"><b>Success:</b> The bookcase falls to one direction, which is chosen by the attacking creature, and it fills a 2-square-by-2-square space in that direction. The bookcase then makes the following attack.</p><p class=\"powerstat\"><b>Target:</b> Each creature in the affected space.</p><p class=\"flavor\"><b>Attack:</b> +9 vs. Fortitude</p><p class=\"powerstat\"><b>Hit:</b> 1d10 + 3 damage.</p><p class=\"powerstat\"><b>Effect:</b> The affected space becomes difficult terrain until the end of the encounter, and each creature in that space is knocked prone.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=dnd/dutoc/165\" target=\"_new\">Dungeon Magazine 165</a>.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('144','Mud Sink','Terrain Power','Dark Sun Creature Catalog','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nMud Sink\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=144\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">At-Will Terrain</span>Mud Sink</h1><p class=\"flavor\"><i>A patch of innocuous mud conceals a clinging morass that proves hard to escape.</i></p><p class=\"powerstat\"><b>Standard Action</b></p><p class=\"flavor\"><b>Check:</b> Athletics check (moderate DC) to maneuver one creature adjacent to you and to the mud sink into a mud sink square.</p><p class=\"powerstat\"><b>Success:</b> You slide the creature 1 square into the mud sink square adjacent to it. You then make the following attack against that creature.</p><p class=\"powerstat\"><b>Target:</b> Melee 1; one creature</p><p class=\"flavor\"><b>Attack:</b> Level +3 vs. Reflex</p><p class=\"powerstat\"><b>Hit:</b> The target is immobilized (save ends).<br/> Aftereffect: The target is slowed (save ends).</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/253880000\" target=\"_new\">Dark Sun Creature Catalog</a>, page(s) 136.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('145','Unstable Monolith','Terrain Power','Dungeon Magazine 181','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nUnstable Monolith\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=145\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">Single-Use Terrain</span>Unstable Monolith</h1><p class=\"flavor\"><i>This spotted stone does not sit easily in the earth and might fall with a bit of pressure.</i></p><p class=\"powerstat\"><b>Standard Action</b></p><p class=\"powerstat\"><b>Requirement:</b> You must be adjacent to the monolith.</p><p class=\"flavor\"><b>Check:</b> Athletics check, DC 21, to topple the monolith.</p><p class=\"powerstat\"><b>Success:</b> The monolith falls in the direction you choose and makes the following attack.</p><p class=\"powerstat\"><b>Target:</b> Each creature in a close blast 3 in the direction the monolith falls</p><p class=\"flavor\"><b>Attack:</b> +9 vs. Reflex</p><p class=\"powerstat\"><b>Hit:</b> 2d8 + 4 damage, the monolith knocks the target prone, and the target has superior cover and cannot stand up. The target cannot stand up until it makes a DC 15 escape check.</p><p class=\"powerstat\"><b>Miss:</b> Half damage, and the monolith slides the target to the nearest unoccupied square adjacent to the area of the blast.</p><p class=\"powerstat\"><b>Effect:</b> The area of the blast is difficult terrain until the end of the encounter.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=dnd/dutoc/181\" target=\"_new\">Dungeon Magazine 181</a>.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('147','Swinging Rope or Vine','Terrain Power','Dungeon Master\'s Guide 2','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nSwinging Rope or Vine\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=147\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">At-Will Terrain</span>Swinging Rope or Vine</h1><p class=\"flavor\"><i>A vine hangs down from the treetops over a deep chasm.</i></p><p class=\"powerstat\"><b>Move Action</b></p><p class=\"powerstat\"><b>Requirement:</b> A vine hangs down from the treetops over a deep chasm.</p><p class=\"flavor\"><b>Check:</b> Athletics check (moderate DC) to swing from the vine or rope’s starting square to its ending square.</p><p class=\"powerstat\"><b>Success:</b> You move from the vine or rope’s starting square to its ending square along the vine or rope’s path. This movement provokes opportunity attacks, and you can let go from the vine at any point during this movement. If you reach the ending square, you can make an Athletics check to jump at the end of the swing, treating it as a jump with a running start, but you must jump in the same direction as the movement of the swinging vine or rope.</p><p class=\"flavor\"><b>Failure:</b> You do not move, and your move action ends.</p><p class=\"powerstat\"><b>Special:</b> When placing a swinging vine or rope in an encounter, the DM must determine the rope’s starting square, its path of travel, its ending square, and whether it can travel in both directions.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=products/dndacc/242060000\" target=\"_new\">Dungeon Master\'s Guide 2</a>.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('148','Agony Amplifier','Fantastic Terrain','The Book of Vile Darkness','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nAgony Amplifier\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=148\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Agony Amplifier</h1><p class=\"flavor\">Many clichéd stories claim that there is power in pain, and that instinctive reactions to agony can be harnessed and used to great effect. The agony amplifier lends validity to these theories by broadcasting one creature’s pain to all those around it. Profane runes form the outer edge of such a ring, binding mental magic into its vile form.</p><p> <b>Effect: </b>An agony amplifier typically covers a space 3 squares on a side. Whenever a creature in that space takes damage, each other creature in the space takes 5 psychic damage per tier. If no other creature is in the agony amplifier, the triggering creature takes 5 extra psychic damage per tier.<br/> <b>Usage: </b>An agony amplifier is most likely to be found in a dark priest’s temple or wizard’s lair. These circles are useful for convincing fiendish creatures to serve the binder that called them. They can also be used effectively by creatures that immobilize or restrain. Such creatures can lock down victims and then pile on the pain.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/34416000\" target=\"_new\">The Book of Vile Darkness</a>, page(s) 2-27.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('149','Carnage Stone','Fantastic Terrain','The Book of Vile Darkness','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nCarnage Stone\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=149\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Carnage Stone</h1><p class=\"flavor\">There are places in the world where evil has triumphed. These dark, blighted areas bore witness to great and terrible slaughter. Each innocent cut down on these sites leaves an imprint on the stone. Their psychic anguish bleeds out from their dying bodies and infuses the rock below. Creatures who travel across these damaged sites see flashes of the slaughter, from the perspective of either predator or prey.</p><p> <b>Effect: </b>Whenever a creature ends its turn on a square containing carnage stone, roll a d6. On an odd number, the creature falls prone. On an even number, the creature must make a melee basic attack as a free action against a random adjacent creature. If there are no adjacent creatures, the creature takes 5 psychic damage per tier.<br/> <b>Usage: </b>Place carnage stone in sites that witnessed a terrible slaughter. Old battlefields, sites of genocide, and other dark ruins are good locations. Carnage stone adds an unpredictable element to combat, potentially shifting the battle for or against the adventurers each round.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/34416000\" target=\"_new\">The Book of Vile Darkness</a>, page(s) 2-27.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('150','Festering Corruption','Fantastic Terrain','The Book of Vile Darkness','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nFestering Corruption\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=150\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Festering Corruption</h1><p class=\"flavor\">The Feywild and Shadowfell bleed into the natural world, and vice versa. There are tales about travelers vanishing into Faerie while walking a lonely road at night. Likewise, most rural communities know well there are nights when the dead walk and when the shadow reaches out from the underworld to snatch the living.<br/> Planar bleeds rarely last for long. From time to time, a bleed lingers long enough to leave an impression, and the memory of the merged planes lives on for anywhere from hours to centuries. Festering corruption is an example of one such memory, and it results when a part of the Shadowfell oozes into the natural world. Little can survive the dark plane’s touch. Affected areas feature dead grass underfoot, bones littering the ground, and skeletal trees whose clattering branches rattle with each gust. Only the most filth-hardened creatures can survive in these places for long.</p><p> <b>Effect: </b>An area of festering corruption is usually no larger than 4 squares on a side. Festering corruption has two effects, one for the living and one for the undead.<br/> Whenever a living creature ends its turn in an area of festering corruption, it must make a saving throw. On a save, there is no effect. On a failed saving throw, the creature takes 5 necrotic damage per tier and is slowed until the end of its next turn.<br/> Whenever an undead creature ends its turn in an area of festering corruption, it gains a +2 bonus to attack rolls and its speed until the end of its next turn. <br/> <b>Usage: </b>Festering corruption results in places where someone or something has compromised the planar boundary’s integrity. Dark rituals, shadow magic, or the creation of powerful undead can all create pockets of festering corruption.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/34416000\" target=\"_new\">The Book of Vile Darkness</a>, page(s) 2-27.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('151','Forgotten Soul','Fantastic Terrain','The Book of Vile Darkness','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nForgotten Soul\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=151\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Forgotten Soul</h1><p class=\"flavor\">The legends concerning the Raven Queen’s rise to power suggest there is great power in souls, a power many vile creatures work to exploit. Most souls manage to pass through Letherna’s gates for whatever fate awaits the dead, but a few find their final journey thwarted. Forgotten souls are wretched entities prevented from moving on because they are confused, imprisoned, or waylaid in some other way. Despair consumes them, and they infect the living with their sorrow.</p><p> <b>Effect: </b>A forgotten soul typically occupies 1 square. It does not block line of sight or effect, but creatures cannot move through its space.<br/> On initiative count 10, a forgotten soul moves 1 square in a random direction into an unoccupied space.<br/> Creatures adjacent to a forgotten soul grant combat advantage and take a -2 penalty to attack rolls. As well, any creature that starts its turn adjacent to a forgotten soul must make a saving throw. On a save, nothing happens. On a failed saving throw, the creature is immobilized until the start of its next turn, and it takes 5 psychic damage per tier.<br/> A creature can use a melee or a ranged attack to destroy a forgotten soul. The attack hits automatically, and the forgotten soul is removed from play. Forgotten souls are immune to close and area attacks.<br/> <b>Usage: </b>Forgotten souls might linger individually or in small packs. They are most often found in dark dominions such as the Nine Hells, Pluton, or Shom, or in the most evil regions in the Shadowfell.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/34416000\" target=\"_new\">The Book of Vile Darkness</a>, page(s) 2-28.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('152','Green Fog','Fantastic Terrain','The Book of Vile Darkness','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nGreen Fog\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=152\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Green Fog</h1><p class=\"flavor\">A swirling green mist spreads across the ground, moving despite the lack of a breeze. As strange as the mists are, their sinister nature is not revealed until a creature vanishes into the fog. The mist transforms and corrupts the unwary soul, twisting it into a horrid mockery of what it once was. Unless the creature can somehow shake the green fog’s effects quickly, the transformation will become permanent.</p><p> <b>Effect: </b>A patch of green fog covers an area 4 squares on a side. Squares in the fog are lightly obscured. Each round on initiative count 10, roll a d4. The green fog moves a number of squares equal to the die result in a random direction. Should the green fog move entirely out of the encounter area, remove the fog from play.<br/> Any living creature that starts its turn in the green fog must make a saving throw. On a save, there is no effect. On a failed saving throw, the creature becomes a green fog mutant (save ends). Until the effect ends, the creature takes a -2 penalty to attack rolls, speed, and skill checks, but gains a +2 bonus per tier to damage rolls.<br/> If a creature ends the encounter still subjected to the green fog’s effects, the effects are permanent until the creature is the recipient of a Remove Affliction ritual or similar magic.<br/> <b>Usage: </b>Green fog is not natural to the world; it originated in the Far Realm. For this reason, the queer mist only appears in tortured landscapes and warped terrain where the Far Realm’s influence has been felt.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/34416000\" target=\"_new\">The Book of Vile Darkness</a>, page(s) 2-28.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('153','Hellfire','Fantastic Terrain','The Book of Vile Darkness','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nHellfire\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=153\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Hellfire</h1><p class=\"flavor\">Hellfire is a rare flame created by extracting energy from a tortured soul. Found almost exclusively in the Nine Hells’ deepest reaches, these vile flames burn uncontrollably in areas where souls are gathered.</p><p> <b>Effect: </b>Whenever a creature that is not a devil enters a square containing hellfire or starts its turn there, it takes ongoing 5 fire and psychic damage per tier (save ends). If the creature is bloodied, the damage increases by 5. In addition, whenever a creature takes ongoing damage from hellfire, the creature cannot take opportunity actions or immediate actions until the start of its next turn.<br/> <b>Usage: </b>Hellfire is common to the Nine Hells and rare elsewhere. Diabolists and those in service to Mephistopheles might know how to create hellfire and use it to ward their lairs.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/34416000\" target=\"_new\">The Book of Vile Darkness</a>, page(s) 2-28.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('154','Larvae Pool','Fantastic Terrain','The Book of Vile Darkness','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nLarvae Pool\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=154\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Larvae Pool</h1><p class=\"flavor\">Among the many crimes one can lay at the feet of the night hags, the worst is their propensity for stealing souls bound to the Shadowfell. They warp their prisoners into squirming maggot forms called larvae, stuff them in bags, and slip away before anyone notices their villainy. The night hags use the larvae for their own dark rites and as currency for payment to other fiends in return for their loyalty or services.</p><p> <b>Effect: </b>A larvae pool covers a 2-square-by-2-square area and is difficult terrain. Any creature that ends its turn prone in the pool cannot crawl or stand up (save ends). Each time the creature fails a saving throw against this effect, the creature takes 5 damage per tier.<br/> <b>Usage: </b>Larvae pools are found anywhere night hags are likely to haunt and might be guarded by demonic or devilish soldiers and brutes, especially those that can knock creatures prone.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/34416000\" target=\"_new\">The Book of Vile Darkness</a>, page(s) 2-28.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('155','Lingering Evil','Fantastic Terrain','The Book of Vile Darkness','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nLingering Evil\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=155\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\">Lingering Evil</h1><p class=\"flavor\">What might seem a trick of the eye could reveal some darker influence, a stain left by some profoundly wicked act. A revolting stench, dancing shadows, or weird chills can all indicate a lingering evil presence.</p><p> <b>Effect: </b>An area of lingering evil can be any size, though a 4-square-by-4-square space is common.<br/> Good creatures take a -1 penalty to ability checks and skill checks made in the area of lingering evil. In addition, a natural or fey beast will not willingly enter its space. If forced, the beast is dazed until it exits.<br/> <b>Usage: </b>Only the most profoundly wicked events create lingering evil. An evil god’s appearance, a savage murder, or even a dark ritual can create an area of lingering evil. The phenomenon lasts in proportion to the creating event’s duration, lasting for just a few minutes to centuries.</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/dnd/Product.php?x=dnd/products/dndacc/34416000\" target=\"_new\">The Book of Vile Darkness</a>, page(s) 2-29.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
INSERT INTO `Terrain` VALUES ('156','Red Pipe','Terrain Power','Dungeon Magazine 195','0','\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\n<head id=\"Head1\"><title>\r\nRed Pipe\r\n</title><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><link href=\"styles/detail.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/print.css\" media=\"print\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"styles/mobile.css\" media=\"handheld\" rel=\"stylesheet\" type=\"text/css\" />\r\n \r\n \r\n \r\n\r\n</head>\r\n<body>\r\n <form name=\"form1\" method=\"post\" action=\"display.php?page=terrain&id=156\" id=\"form1\">\r\n<div>\r\n\r\n</div>\r\n\r\n\r\n <div id=\"detail\">\r\n\r\n<h1 class=\"dm\"><span class=\"level\">Single-Use Terrain</span>Red Pipe</h1><p class=\"flavor\"><i>This pipe runs across the chamber before turning 90 degrees.</i></p><p class=\"powerstat\"><b>Standard Action</b></p><p class=\"powerstat\"><b>Requirement:</b> You must be adjacent to the pipe if you use the Thievery skill.</p><p class=\"flavor\"><b>Check:</b> Thievery check (hard DC) to breach the pipe; otherwise deal 10 damage to a square of the pipe in a single attack to breach it (all defenses 10).</p><p class=\"powerstat\"><b>Success:</b> The pipe bursts.</p><p class=\"flavor\"><b>Attack:</b> Close blast 3 (creatures in the blast); +7 vs. Fortitude</p><p class=\"powerstat\"><b>Hit:</b> 1d8 + 4 poison damage, and the target is blinded (save ends).</p><p class=\"publishedIn\">Published in <a href=\"http://anonym.to/?http://www.wizards.com/default.asp?x=dnd/dutoc/195\" target=\"_new\">Dungeon Magazine 195</a>.</p>\r\n </div>\r\n </form>\r\n</body>\r\n</html>\r\n\r\n<script type=\"text/javascript\">\r\n if (document.all) {\r\n if (document.documentMode != 9) {\r\n var ar = document.getElementsByTagName(\'span\');\r\n for (var i = 0; i < ar.length; i++ ) {\r\n var c = ar[i].attributes[\'class\'].value;\r\n if (c == \'milevel\')\r\n ar[i].style.top = \"-24px\";\r\n else if (c == \'miright\')\r\n ar[i].style.top = \"-18px\";\r\n }\r\n }\r\n }\r\n</script>\r\n');
|
-- ================================================
-- Template generated from Template Explorer using:
-- Create Procedure (New Menu).SQL
--
-- Use the Specify Values for Template Parameters
-- command (Ctrl-Shift-M) to fill in the parameter
-- values below.
--
-- This block of comments will not be included in
-- the definition of the procedure.
-- ================================================
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: <Author,,Name>
-- Create date: <Create Date,,>
-- Description: <Description,,>
-- =============================================
CREATE PROCEDURE [dbo].[DrillDownReport_Repeat_total] -- DrillDownReport_scpirtf --> DrillDownReport_1 --> rank --> issueTotal//-issue
--> R-P-F//-RPFTotal --9 total
-- Add the parameters for the stored procedure here
@Div nvarchar(100),@SubDiv nvarchar(100),
@StartDate DATETIME,@EndDate DATETIME,
@C_name1 nvarchar(100),@C_name2 nvarchar(100),@C_name3 nvarchar(100),@C_name4 nvarchar(100),@C_name5 nvarchar(100)
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- Insert statements for procedure here
declare @drill table
(ParentCode nvarchar(50),SubCode nvarchar(100), Obs_SubDiv nvarchar(100), TradeNo nvarchar(50), Contractor_Display nvarchar(100), Obs_Projects_count int,
projectID int, Project_No int, Project_Name nvarchar(100), Project_Company nvarchar(100), Obs_id int,SubcontractorId int,
severity_0 int, PCC_SUM_severity_0 float, SUB_SUM_severity_0 float, PCC_SUB_SUM_severity_0 float, days_from_today_0 int,
severity_1 int,PCC_SUM_severity_1 float, SUB_SUM_severity_1 float, PCC_SUB_SUM_severity_1 float, days_from_today_1 int,
severity_2 int,PCC_SUM_severity_2 float, SUB_SUM_severity_2 float, PCC_SUB_SUM_severity_2 float, days_from_today_2 int,
severity_3 int,PCC_SUM_severity_3 float, SUB_SUM_severity_3 float, PCC_SUB_SUM_severity_3 float, days_from_today_3 int,
severity_4 int,PCC_SUM_severity_4 float, SUB_SUM_severity_4 float, PCC_SUB_SUM_severity_4 float, days_from_today_4 int,
severity_5 int,PCC_SUM_severity_5 float, SUB_SUM_severity_5 float, PCC_SUB_SUM_severity_5 float, days_from_today_5 int,
Items_Repeated int, PCC_SUM_repeat float, SUB_SUM_repeat float, PCC_SUB_SUM_repeat float,
Obs_PriorTalk_count int, PCC_SUM_PriorTalk float, SUB_SUM_PriorTalk float, PCC_SUB_SUM_PriorTalk float,
Foreman_NOT_Present_count int, PCC_SUM_Foreman float, SUB_SUM_Foreman float, PCC_SUB_SUM_Foreman float
)
INSERT into @drill
exec dbo.[DrillDownReport_scpirtf] @Div,@SubDiv, @StartDate, @EndDate
select * into #rank from @drill; --select * from #rank
--------------------------------------------------------------------
select a.*,
DENSE_RANK() over (order by Items_Repeated) as Items_Repeated_rank,
DENSE_RANK() over (order by Obs_PriorTalk_count) as Obs_PriorTalk_count_rank,
DENSE_RANK() over (order by Foreman_NOT_Present_count) as Foreman_NOT_Present_count_rank,
DENSE_RANK() over (order by PCC_SUB_SUM_repeat) as PCC_SUB_SUM_repeat_rank,
DENSE_RANK() over (order by PCC_SUB_SUM_PriorTalk) as PCC_SUB_SUM_PriorTalk_rank,
DENSE_RANK() over (order by PCC_SUB_SUM_Foreman) as PCC_SUB_SUM_Foreman_rank
into #rankAll_RPF
from (
select SubcontractorId, Contractor_Display,
isnull(sum(Items_Repeated),0) as Items_Repeated,
isnull(sum(Obs_PriorTalk_count),0) as Obs_PriorTalk_count,
isnull(sum(Foreman_NOT_Present_count),0) as Foreman_NOT_Present_count,
isnull(sum(PCC_SUB_SUM_repeat),0) as PCC_SUB_SUM_repeat,
isnull(sum(PCC_SUB_SUM_PriorTalk),0) as PCC_SUB_SUM_PriorTalk,
isnull(sum(PCC_SUB_SUM_Foreman),0) as PCC_SUB_SUM_Foreman
from #rank
where
(Contractor_Display like '%'+@C_name1+'%')
or (Contractor_Display like '%'+@C_name2+'%')
or (Contractor_Display like '%'+@C_name3+'%')
or (Contractor_Display like '%'+@C_name4+'%')
or (Contractor_Display like '%'+@C_name5+'%')
group by SubcontractorId, Contractor_Display
)a
drop table #rank
drop table #rankAll_RPF
END
GO
|
-- sends multiple callbacks
-- http://localhost:3000/api/example/callbacks
-- returns {foo:111, bar:222, baz:333}
--
create function example.web_callbacks(req jsonb) returns jsonb
as $$
declare
cb1 text = extract(epoch from current_timestamp);
cb2 text = extract(epoch from current_timestamp) + 1;
cb3 text = extract(epoch from current_timestamp) + 2;
begin
perform pg_notify('__callback__', jsonb_build_array(
jsonb_build_object(
'type', 'timeout',
'fn', 'example.callbacks_foo',
'id', cb1,
'ms', 1000
),
jsonb_build_object(
'type', 'timeout',
'fn', 'example.callbacks_bar',
'id', cb2,
'ms', 2000
),
jsonb_build_object(
'type', 'fetch',
'url', 'http://localhost:3000/api/example/callbacks_baz',
-- 'config', jsonb_build_object(
-- 'method', 'GET'
-- ),
'id', cb3
)
)::text);
return jsonb_build_object(
'__callback__', jsonb_build_array(cb1, cb2, cb3)
);
end;
$$ language plpgsql;
create function example.callbacks_foo(req jsonb) returns jsonb
as $$
select jsonb_build_object('foo', 111)
$$ language sql;
create function example.callbacks_bar(req jsonb) returns jsonb
as $$
select jsonb_build_object('bar', 222)
$$ language sql;
create function example.web_callbacks_baz(req jsonb) returns jsonb
as $$
select jsonb_build_object('baz', 333)
$$ language sql; |
<filename>public/dump/phpmysqlautobackup_log.sql
1432188088 1641514 2542
1432188148 1641514 2542
1432188209 1641514 2542
1432188269 1641514 2542
1432188328 1641514 2542
1432188388 1641514 2542
1432198223 1641514 2542
1432198645 1641620 2543
1432198740 1641726 2544
1432263070 1642741 2546
1432263170 1642847 2547
1432263281 1642953 2548
1432263374 1643059 2549
1432265067 1643165 2550
1432265203 1643271 2551
1432265303 1643377 2552
1432265410 1643483 2553
1432265655 1643589 2554
1432265754 1643695 2555
1432265856 1643801 2556
1432266001 1643907 2557
1432266101 1644013 2558
1432266200 1644119 2559
1432266301 1644225 2560
1432266400 1644331 2561
1432266500 1644437 2562
1432266600 1644543 2563
1432266700 1644649 2564
1432266800 1644755 2565
1432266900 1644861 2566
1432267000 1644967 2567
1432267100 1645073 2568
1432267294 1645179 2569
1432267394 1645285 2570
1432267494 1645391 2571
1432267594 1645497 2572
1432267721 1645603 2573
1432267822 1645709 2574
1432268085 1645815 2575
1432268184 1645921 2576
1432268787 1646027 2577
1432268936 1646133 2578
1432269036 1646239 2579
1432269293 1646345 2580
1432275235 1646451 2581
1432275335 1646557 2582
1432275505 1646663 2583
1432275605 1646769 2584
1432275705 1646875 2585
1432275805 1646981 2586
1432275905 1647087 2587
1432276030 1647193 2588
1432276131 1647299 2589
1432276230 1647405 2590
1432276331 1647511 2591
1432276431 1647617 2592
1432276530 1647723 2593
1432276630 1647829 2594
1432276730 1647935 2595
1432276830 1648041 2596
1432276931 1648147 2597
1432277031 1648253 2598
1432277131 1648359 2599
1432277231 1648465 2600
1432277331 1648571 2601
1432277431 1648677 2602
1432277531 1648783 2603
1432277632 1648889 2604
1432277831 1648995 2605
1432277931 1649101 2606
1432278031 1649207 2607
1432278131 1649313 2608
1432278231 1649419 2609
1432278332 1649525 2610
1432278432 1649631 2611
1432278531 1649737 2612
1432278632 1649843 2613
1432278789 1649949 2614
1432278944 1650055 2615
1432279044 1650161 2616
1432279144 1650267 2617
1432279244 1650373 2618
1432279344 1650479 2619
1432279444 1650585 2620
1432279544 1650691 2621
1432279644 1650797 2622
1432279744 1650903 2623
1432279844 1651009 2624
1432279945 1651115 2625
1432280045 1651221 2626
1432280145 1651327 2627
1432280325 1651433 2628
1432280550 1651539 2629
1432280650 1651645 2630
1432280750 1651751 2631
1432280850 1651857 2632
1432280950 1651963 2633
1432281050 1652069 2634
1432281151 1652175 2635
1432281252 1652281 2636
1432281353 1652387 2637
1432281453 1652493 2638
1432281553 1652599 2639
1432281653 1652705 2640
1432281755 1652811 2641
1432281854 1652917 2642
1432281954 1653023 2643
1432282054 1653129 2644
1432282155 1653235 2645
1432282254 1653341 2646
1432282355 1653447 2647
1432282883 1653553 2648
1432282983 1653659 2649
1432283082 1653765 2650
1432283182 1653871 2651
1432283282 1653977 2652
1432283382 1654083 2653
1432283482 1654189 2654
1432283582 1654295 2655
1432283682 1654401 2656
1432283783 1654507 2657
1432284043 1654613 2658
1432284144 1654719 2659
1432284243 1654825 2660
1432284343 1654931 2661
1432284443 1655037 2662
1432284622 1655143 2663
1432284722 1655249 2664
1432284968 1655355 2665
1432285068 1655461 2666
1432285168 1655567 2667
1432285268 1655673 2668
1432285369 1655779 2669
1432285470 1655885 2670
1432285541 1655991 2671
1432285544 1656097 2672
1432285545 1656203 2673
1432285546 1656309 2674
1432285548 1656415 2675
1432285550 1656521 2676
1432285551 1656627 2677
1432285553 1656733 2678
1432285556 1656839 2679
1432285558 1656945 2680
1432285559 1657051 2681
1432285565 1657157 2682
1432285581 1657263 2683
1432285671 1657369 2684
1432285774 1657475 2685
1432285871 1657581 2686
1432286068 1657687 2687
1432286072 1657793 2688
1432286230 1657899 2689
1432286271 1658005 2690
1432286374 1658111 2691
1432286473 1658217 2692
1432286575 1658323 2693
1432286674 1658429 2694
1432286775 1658535 2695
1432286874 1658641 2696
1432286974 1658747 2697
1432287075 1658853 2698
1432287174 1658959 2699
1432287276 1659065 2700
1432287375 1659171 2701
1432287556 1659277 2702
1432287729 1659383 2703
1432287876 1659489 2704
1432287976 1659595 2705
1432288076 1659785 2706
1432288178 1659891 2707
1432288277 1659997 2708
1432288378 1660103 2709
1432516338 1660209 2710
1432516438 1660315 2711
1432516538 1660421 2712
1432516639 1660527 2713
1432516851 1660633 2714
1432517657 1660739 2715
1432518044 1660845 2716
1432518145 1660951 2717
1432518245 1661057 2718
1432518345 1661163 2719
1432518445 1661269 2720
1432518545 1661375 2721
1432518646 1661481 2722
1432518746 1661587 2723
1432518846 1661693 2724
1432518946 1661799 2725
1432519367 1661903 2726
1432519467 1662009 2727
1432519566 1662115 2728
1432519670 1662221 2729
1432519771 1662327 2730
1432519872 1662433 2731
1432519997 1662536 2732
1432520095 1662642 2733
1432520198 1662748 2734
1432520296 1662854 2735
1432520397 1662960 2736
1432520558 1663066 2737
1432520674 1663172 2738
1432520773 1663278 2739
1432521197 1663384 2740
1432521304 1663490 2741
1432521405 1663596 2742
1432521505 1663702 2743
1432521608 1663808 2744
1432521707 1663914 2745
1432521806 1664020 2746
1432521910 1664126 2747
1432522010 1664232 2748
1432522110 1664338 2749
1432522211 1664444 2750
1432522411 1664550 2751
1432522511 1664656 2752
1432522610 1664762 2753
1432523241 1664868 2754
1432523601 1664974 2755
1432523701 1665080 2756
1432523890 1665192 2757
1432523990 1665298 2758
1432524090 1665404 2759
1432524190 1665510 2760
1432524290 1665616 2761
1432524391 1665722 2762
1432524546 1665828 2763
1432524646 1665934 2764
1432524833 1666040 2765
1432524933 1666146 2766
1432525034 1666252 2767
1432525135 1666358 2768
1432525235 1666464 2769
1432525336 1666570 2770
1432525436 1666676 2771
1432525536 1666782 2772
1432525639 1666888 2773
1432525739 1666994 2774
1432525838 1667100 2775
1432525939 1667206 2776
1432526040 1667312 2777
1432526141 1667418 2778
1432526241 1667524 2779
1432526342 1667630 2780
1432526441 1667736 2781
1432526542 1667842 2782
1432526642 1667948 2783
1432526742 1668054 2784
1432526843 1668160 2785
1432526943 1668266 2786
1432527092 1668372 2787
1432527298 1668478 2788
1432527398 1668584 2789
1432527498 1668690 2790
1432527599 1668796 2791
1432527699 1668902 2792
1432527800 1669008 2793
1432527902 1669114 2794
1432528004 1669220 2795
1432528339 1669314 2796
1432528438 1669420 2797
1432528538 1669526 2798
1432528793 1669632 2799
1432528894 1669738 2800
1432533765 1669844 2801
1432533865 1669950 2802
1432533965 1670056 2803
1432534126 1670162 2804
1432534373 1670268 2805
1432534526 1670374 2806
1432535435 1670484 2807
1432535535 1670590 2808
1432535635 1670696 2809
1432535735 1670802 2810
1432535835 1670908 2811
1432535935 1671014 2812
1432536035 1671120 2813
1432536135 1671226 2814
1432536236 1671332 2815
1432536337 1671438 2816
1432536438 1671544 2817
1432536539 1671650 2818
1432536638 1671756 2819
1432536739 1671862 2820
1432536839 1671968 2821
1432536940 1672074 2822
1432537285 1672180 2823
1432537385 1672286 2824
1432537489 1672392 2825
1432537590 1672498 2826
1432537696 1672604 2827
1432537825 1672710 2828
1432537952 1672816 2829
1432538009 1672922 2830
1432538100 1673028 2831
1432538200 1673134 2832
1432538310 1673240 2833
1432538403 1673346 2834
1432538924 1673452 2835
1432539040 1673558 2836
1432539106 1673664 2837
1432539208 1673770 2838
1432539312 1673876 2839
1432539410 1673982 2840
1432539752 1674088 2841
1432539795 1674194 2842
1432539831 1674300 2843
1432539909 1674406 2844
1432540006 1674512 2845
1432540138 1674543 2846
1432540342 1674649 2847
1432540442 1674755 2848
1432540552 1674861 2849
1432540645 1674967 2850
1432540745 1675073 2851
1432540882 1675179 2852
1432540982 1675285 2853
1432541083 1675391 2854
1432541182 1675497 2855
1432541283 1675603 2856
1432541387 1675709 2857
1432541575 1675815 2858
1432541675 1675921 2859
1432541777 1676027 2860
1432541877 1676133 2861
1432541978 1676239 2862
1432542078 1676345 2863
1432542180 1676451 2864
1432542280 1676557 2865
1432542380 1676663 2866
1432542574 1676769 2867
1432542675 1676875 2868
1432542777 1676981 2869
1432542876 1677087 2870
1432542976 1677193 2871
1432543076 1677299 2872
1432543177 1677405 2873
1432545040 1677511 2874
1432545142 1677617 2875
1432545240 1677723 2876
1432545608 1677829 2877
1432545994 1677935 2878
1432546093 1678041 2879
1432602575 1678147 2880
1432613891 1599495 2702
1432613992 1599601 2703
1432614093 1599707 2704
1432614192 1599813 2705
1432614292 1599919 2706
1432614392 1600025 2707
1432614492 1600131 2708
1432614592 1600237 2709
1432614692 1600343 2710
1432614792 1600449 2711
1432614892 1600555 2712
1432614992 1600661 2713
1432615093 1600767 2714
1432615194 1600873 2715
1432615294 1600979 2716
1432615394 1601085 2717
1432615494 1601191 2718
1432615594 1601297 2719
1432615695 1601403 2720
1432615795 1601509 2721
1432615896 1601615 2722
1432615997 1601721 2723
1432616098 1601827 2724
1432616198 1601933 2725
1432616299 1602039 2726
1432616399 1602145 2727
1432616499 1602251 2728
1432616600 1602357 2729
1432616701 1602463 2730
1432616802 1602569 2731
1432616906 1602675 2732
1432617004 1602781 2733
1432617105 1602887 2734
1432617206 1602993 2735
1432617306 1603099 2736
1432617406 1603205 2737
1432617507 1603311 2738
1432617608 1603417 2739
1432617709 1603523 2740
1432617810 1603629 2741
1432617912 1603735 2742
1432618011 1603841 2743
1432618112 1603947 2744
1432618212 1604053 2745
1432618313 1604159 2746
1432618413 1604265 2747
1432618513 1604371 2748
1432618614 1604477 2749
1432618714 1604583 2750
1432618814 1604689 2751
1432618914 1604795 2752
1432619015 1604901 2753
1432619116 1605007 2754
1432619216 1605113 2755
1432619316 1605219 2756
1432619416 1605325 2757
1432619516 1605431 2758
1432619617 1605537 2759
1432619718 1605643 2760
1432619819 1605749 2761
1432619920 1605855 2762
1432620021 1605961 2763
1432620121 1606067 2764
1432620222 1606173 2765
1432620322 1606279 2766
1432620422 1606385 2767
1432620522 1606491 2768
1432620623 1606597 2769
1432620723 1606703 2770
1432620824 1606809 2771
1432620924 1606915 2772
1432621025 1607021 2773
1432621125 1607127 2774
1432621225 1607233 2775
1432621325 1607339 2776
1432621427 1607445 2777
1432621527 1607551 2778
1432621627 1607657 2779
1432621727 1607763 2780
1432621827 1607869 2781
1432621927 1607975 2782
1432622027 1608081 2783
1432622129 1608187 2784
1432622228 1608293 2785
1432622328 1608399 2786
1432622429 1608505 2787
1432622529 1608611 2788
1432622630 1608717 2789
1432622730 1608823 2790
1432622831 1608929 2791
1432622931 1609035 2792
1432623031 1609141 2793
1432623131 1609247 2794
1432623232 1609353 2795
1432623333 1609459 2796
1432623433 1609565 2797
1432623534 1609671 2798
1432623636 1609777 2799
1432623735 1609883 2800
1432623835 1609989 2801
1432623935 1610095 2802
1432624159 1610201 2803
1432624259 1610307 2804
1432624385 1610413 2805
1432624485 1610519 2806
1432624585 1610625 2807
1432624686 1610731 2808
1432624787 1610837 2809
1432624888 1610943 2810
1432624989 1611049 2811
1432625174 1611155 2812
1432625274 1611261 2813
1432625721 1611367 2814
1432625820 1611473 2815
1432625920 1611579 2816
1432625941 1611685 2817
1432626021 1611791 2818
1432626121 1611897 2819
1432626185 1612003 2820
1432626220 1612109 2821
1432626285 1612215 2822
1432626320 1612321 2823
1432626386 1612427 2824
1432626421 1612533 2825
1432626522 1612639 2826
1432626622 1612745 2827
1432626651 1612851 2828
1432626723 1612957 2829
1432626764 1613063 2830
1432626823 1613169 2831
1432626864 1613275 2832
1432626924 1613381 2833
1432626964 1613487 2834
1432627025 1613593 2835
1432627064 1613699 2836
1432627126 1613805 2837
1432627226 1613911 2838
1432627326 1614017 2839
1432627336 1614123 2840
1432627427 1614229 2841
1432627436 1614335 2842
1432627528 1614441 2843
1432627536 1614547 2844
1432627629 1614653 2845
1432627636 1614759 2846
1432627730 1614865 2847
1432627736 1614971 2848
1432627830 1615077 2849
1432627837 1615183 2850
1432627931 1615289 2851
1432627937 1615395 2852
1432628031 1615501 2853
1432628036 1615607 2854
1432628131 1615713 2855
1432628137 1615819 2856
1432628233 1615925 2857
1432628236 1616031 2858
1432628332 1616137 2859
1432628336 1616243 2860
1432628432 1616349 2861
1432628436 1616455 2862
1432628533 1616561 2863
1432628536 1616667 2864
1432628633 1616773 2865
1432628636 1616879 2866
1432628734 1616985 2867
1432628737 1617091 2868
1432628834 1617197 2869
1432628838 1617303 2870
1432628934 1617409 2871
1432628939 1617515 2872
1432629035 1617621 2873
1432629040 1617727 2874
1432629135 1617833 2875
1432629141 1617939 2876
1432629235 1618045 2877
1432629242 1618151 2878
1432629335 1618257 2879
1432629343 1618363 2880
1432629435 1618469 2881
1432629444 1618575 2882
1432629536 1618681 2883
1432629544 1618787 2884
1432629636 1618893 2885
1432629644 1618999 2886
1432629737 1619105 2887
1432629745 1619211 2888
1432629838 1619317 2889
1432629846 1619423 2890
1432629939 1619529 2891
1432629947 1619635 2892
1432630039 1619741 2893
1432630049 1619847 2894
1432630140 1619953 2895
1432630149 1620059 2896
1432630241 1620165 2897
1432630250 1620271 2898
1432630341 1620377 2899
1432630350 1620483 2900
1432630442 1620589 2901
1432630450 1620695 2902
1432630543 1620801 2903
1432630551 1620907 2904
1432630644 1621013 2905
1432630651 1621119 2906
1432630745 1621225 2907
1432630751 1621331 2908
1432630845 1621437 2909
1432630852 1621543 2910
1432630946 1621649 2911
1432630952 1621755 2912
1432631048 1621861 2913
1432631052 1621967 2914
1432631148 1622073 2915
1432631153 1622179 2916
1432631248 1622285 2917
1432631252 1622391 2918
1432631349 1622497 2919
1432631353 1622603 2920
1432631449 1622709 2921
1432631452 1622815 2922
1432631550 1622921 2923
1432631554 1623027 2924
1432631650 1623133 2925
1432631652 1623239 2926
1432631752 1623345 2927
1432631753 1623451 2928
1432631852 1623557 2929
1432631853 1623663 2930
1432631952 1623769 2931
1432631953 1623875 2932
1432632052 1623981 2933
1432632053 1624087 2934
1432632153 1624193 2935
1432632154 1624299 2936
1432632253 1624405 2937
1432632256 1624511 2938
1432632353 1624617 2939
1432632354 1624723 2940
1432632453 1624829 2941
1432632455 1624935 2942
1432632554 1625041 2943
1432632556 1625147 2944
1432632653 1625253 2945
1432632657 1625359 2946
1432632754 1625465 2947
1432775596 1625551 2948
1432775698 1625657 2949
1432775792 1625763 2950
1432775892 1625869 2951
1432775992 1625975 2952
1432776093 1626081 2953
1432776195 1626187 2954
1432776292 1626293 2955
1432776392 1626399 2956
1432776492 1626505 2957
1432776592 1626611 2958
1432776692 1626717 2959
1432776793 1626823 2960
1432776892 1626929 2961
1432777012 1627035 2962
1432777097 1627141 2963
1432777194 1627247 2964
1432777294 1627353 2965
1432777394 1627459 2966
1432777494 1627565 2967
1432777594 1627671 2968
1432777695 1627777 2969
1432777795 1627883 2970
1432777899 1627989 2971
1432777996 1628095 2972
1432778097 1628201 2973
1432778194 1628307 2974
1432778299 1628413 2975
1432778396 1628519 2976
1432778495 1628625 2977
1432778594 1628731 2978
1432778693 1628837 2979
1432778815 1628943 2980
1432778894 1629049 2981
1432778996 1629155 2982
1432779096 1629261 2983
1432779194 1629367 2984
1432779295 1629473 2985
1432779394 1629579 2986
1432779496 1629685 2987
1432779593 1629791 2988
1432779695 1629897 2989
1432779793 1630003 2990
1432779893 1630109 2991
1432779993 1630215 2992
1432780096 1630321 2993
1432780194 1630427 2994
1432780293 1630533 2995
1432780393 1630639 2996
1432780493 1630745 2997
1432780594 1630851 2998
1432780693 1630957 2999
1432780793 1631063 3000
1432780894 1631169 3001
1432780993 1631275 3002
1432781093 1631381 3003
1432781193 1631487 3004
1432781293 1631593 3005
1432781393 1631699 3006
1432781566 1631805 3007
1432781667 1631911 3008
1432781767 1632017 3009
1432781868 1632123 3010
1432781967 1632229 3011
1432782068 1632335 3012
1432782168 1632441 3013
1432782268 1632547 3014
1432782368 1632653 3015
1432782469 1632759 3016
1432782569 1632865 3017
1432782668 1632971 3018
1432782768 1633077 3019
1432782928 1633183 3020
1432783029 1633289 3021
1432783195 1633395 3022
1432783293 1633501 3023
1432783392 1633607 3024
1432783496 1633713 3025
1432783592 1633819 3026
1432783693 1633925 3027
1432783792 1634031 3028
1432783893 1634137 3029
1432783992 1634243 3030
1432784092 1634349 3031
1432784193 1634455 3032
1432784293 1634561 3033
1432784392 1634667 3034
1432784492 1634773 3035
1432784592 1634879 3036
1432784692 1634985 3037
1432784793 1635091 3038
1432784893 1635197 3039
1432784992 1635303 3040
1432785092 1635409 3041
1432785192 1635515 3042
1432785295 1635621 3043
1432785393 1635727 3044
1432785493 1618015 2995
1432785593 1618121 2996
1432785693 1618227 2997
1432785793 1618333 2998
1432785893 1618439 2999
1432786059 1618545 3000
1432786936 1619109 3003
1432787035 1619215 3004
1432787135 1619321 3005
1432787235 1619427 3006
1432787335 1619533 3007
1432787507 1619639 3008
1432787724 1619745 3009
1432787945 1619870 3010
1432788045 1619976 3011
1432788222 1620082 3012
1432788321 1620188 3013
1432788423 1620294 3014
1432788522 1620400 3015
1432788642 1620506 3016
1432788740 1620612 3017
1432788841 1620718 3018
1432788940 1620824 3019
1432789040 1620930 3020
1432789140 1621036 3021
1432789241 1621142 3022
1432789340 1621248 3023
1432789440 1621354 3024
1432789541 1621460 3025
1432789640 1621566 3026
1432789741 1621672 3027
1432789841 1621778 3028
1432789941 1621884 3029
1432790041 1621990 3030
1432790140 1622096 3031
1432790242 1622202 3032
1432790341 1622308 3033
1432790441 1622414 3034
1432790540 1622520 3035
1432790640 1622626 3036
1432790740 1622732 3037
1432790840 1622838 3038
1432790940 1622944 3039
1432791042 1623050 3040
1432791144 1623156 3041
1432791242 1623262 3042
1432791343 1623368 3043
1432791443 1623474 3044
1432791543 1623580 3045
1432791643 1623686 3046
1432791743 1623792 3047
1432791844 1623898 3048
1432791944 1624004 3049
1432792044 1624110 3050
1432792144 1624216 3051
1432792244 1624322 3052
1432792345 1624428 3053
1432792445 1624534 3054
1432792546 1624640 3055
1432792647 1624746 3056
1432792747 1624852 3057
1432792846 1624958 3058
1432792946 1625064 3059
1432793103 1625170 3060
1432793203 1625276 3061
1432793303 1625382 3062
1432793500 1625488 3063
1432793600 1625594 3064
1432793902 1625700 3065
1432794002 1625806 3066
1432794280 1625912 3067
1432794653 1626018 3068
1432794807 1626124 3069
1432794932 1626230 3070
1432795127 1626336 3071
1432795227 1628956 3077
1432795328 1629096 3078
1432795428 1629355 3079
1432795549 1629461 3080
1432795649 1629567 3081
1432795749 1629673 3082
1432795849 1629779 3083
1432795950 1629885 3084
1432796093 1629991 3085
1432796193 1630097 3086
1432796293 1630203 3087
1432796393 1630309 3088
1432796493 1630415 3089
1432796593 1630521 3090
1432796693 1630627 3091
1432796793 1630733 3092
1432797057 1631806 3095
1432797227 1632864 3098
1432797345 1632970 3099
1432797446 1633076 3100
1432797546 1633182 3101
1432797645 1633288 3102
1432797745 1633394 3103
1432797845 1633500 3104
1432797945 1633606 3105
1432798065 1634056 3107
1432798196 1634162 3108
1432798361 1634850 3109
1432798629 1636065 3113
1432798953 1636171 3114
1432799308 1636277 3115
1432799473 1636383 3116
1432799573 1636489 3117
1432799717 1636595 3118
1432799898 1636701 3119
1432799998 1636807 3120
1432800098 1636913 3121
1432800198 1637019 3122
1432802662 1637373 3123
1432802762 1637479 3124
1432804802 1637585 3125
1432804901 1637691 3126
1432805002 1637797 3127
1432805103 1637903 3128
1432805487 1638076 3129
1432805626 1638182 3130
1432805854 1638288 3131
1432805954 1638394 3132
1432806056 1638500 3133
1432806155 1638606 3134
1432806255 1638712 3135
1432806355 1638818 3136
1432806455 1638924 3137
1432806555 1639030 3138
1432806655 1639136 3139
1432806755 1639242 3140
1432806856 1639348 3141
1432806955 1639454 3142
1432807055 1639560 3143
1432807155 1639666 3144
1432807255 1639772 3145
1432807355 1639878 3146
1432807455 1639984 3147
1432807556 1640090 3148
1432807656 1640196 3149
1432807756 1640302 3150
1432807856 1640408 3151
1432807956 1640514 3152
1432808056 1640620 3153
1432808156 1640726 3154
1432808258 1640832 3155
1432808357 1640938 3156
1432808458 1641044 3157
1432871890 1641150 3158
1432871977 1641256 3159
1432872077 1641362 3160
1432872188 1641468 3161
1432872284 1641574 3162
1432872378 1641680 3163
1432872478 1641786 3164
1432872578 1641892 3165
1432872679 1641998 3166
1432872787 1642104 3167
1432872886 1642210 3168
1432872988 1642316 3169
1432873095 1642422 3170
1432873209 1642528 3171
1432873316 1642634 3172
1432873418 1642740 3173
1432873514 1642846 3174
1432873607 1642952 3175
1432873707 1643058 3176
1432873808 1643164 3177
1432873916 1643270 3178
1432874019 1643376 3179
1432874123 1643639 3181
1432874219 1643745 3182
1432874312 1643851 3183
1432874410 1643957 3184
1432874509 1644063 3185
1432874612 1644169 3186
1432874709 1644275 3187
1432874814 1644381 3188
1432874914 1644487 3189
1432875020 1644593 3190
1432875114 1644699 3191
1432875215 1644805 3192
1432875314 1644911 3193
1432875416 1645017 3194
1432875514 1645123 3195
1432875615 1645229 3196
1432875716 1645335 3197
1432875817 1645441 3198
1432875926 1645547 3199
1432876028 1645653 3200
1432876127 1645759 3201
1432876223 1645865 3202
1432876320 1645971 3203
1432876414 1646077 3204
1432876526 1646183 3205
1432876628 1646289 3206
1432876732 1646395 3207
1432876822 1646501 3208
1432876919 1646607 3209
1432877017 1646713 3210
1432877124 1646819 3211
1432877225 1646925 3212
1432877327 1647031 3213
1432877431 1647137 3214
1432877520 1647243 3215
1432877617 1647349 3216
1432877733 1647455 3217
1432877826 1647561 3218
1432877934 1647667 3219
1432878022 1647773 3220
1432878119 1647879 3221
1432878215 1647985 3222
1432878325 1648091 3223
1432878431 1648197 3224
1432878527 1648303 3225
1432878618 1648409 3226
1432878716 1648515 3227
1432878813 1648621 3228
1432878921 1648727 3229
1432879029 1648833 3230
1432879124 1648939 3231
1432879220 1649045 3232
1432879315 1649151 3233
1432879414 1649257 3234
1432879527 1649363 3235
1432879690 1649469 3236
1432879779 1649575 3237
1432879875 1649681 3238
1432879974 1649787 3239
1432880074 1649893 3240
1432880174 1649999 3241
1432880275 1650105 3242
1432880376 1650211 3243
1432880475 1650317 3244
1432880578 1650423 3245
1432880675 1650529 3246
1432880774 1650635 3247
1432880875 1650741 3248
1432880975 1650847 3249
1432881076 1650953 3250
1432881177 1651059 3251
1432881279 1651165 3252
1432881446 1651280 3253
1432881545 1651386 3254
1432881645 1651492 3255
1432881745 1651598 3256
1432881845 1651704 3257
1432881961 1651810 3258
1432882055 1651916 3259
1432882147 1652022 3260
1432882247 1652128 3261
1432882345 1652234 3262
1432882445 1652340 3263
1432882545 1652446 3264
1432882645 1652552 3265
1432882745 1652658 3266
1432882845 1652764 3267
1432882945 1652870 3268
1432883066 1652976 3269
1432883155 1653082 3270
1432883248 1653188 3271
1432883353 1653294 3272
1432883445 1653400 3273
1432883545 1653506 3274
1432883653 1653612 3275
1432883749 1653718 3276
1432883847 1653824 3277
1432883946 1653930 3278
1432884046 1654036 3279
1432884296 1654142 3280
1432884391 1654248 3281
1432884487 1654354 3282
1432884585 1654460 3283
1432884685 1654566 3284
1432884786 1654672 3285
1432884887 1654778 3286
1432884987 1654884 3287
1432885086 1654990 3288
1432885187 1655096 3289
1432885286 1655202 3290
1432885387 1655308 3291
1432885487 1655414 3292
1432885594 1655520 3293
1432885690 1655626 3294
1432885787 1655732 3295
1432885888 1655838 3296
1432885989 1655944 3297
1432886086 1656050 3298
1432886199 1656156 3299
1432886290 1656262 3300
1432886386 1656368 3301
1432886486 1656474 3302
1432886587 1656580 3303
1432886687 1656686 3304
1432886805 1656792 3305
1432886899 1656898 3306
1432886989 1657004 3307
1432887087 1657110 3308
1432887188 1657216 3309
1432887286 1657322 3310
1432887402 1657428 3311
1432887522 1657534 3312
1432887594 1657640 3313
1432888622 1657746 3314
1432888636 1657852 3315
1432888637 1657958 3316
1432888650 1658064 3317
1432888671 1658170 3318
1432888682 1658276 3319
1432888697 1658382 3320
1432888714 1658488 3321
1432888744 1658594 3322
1432888768 1658700 3323
1432888803 1658806 3324
1432888912 1658912 3325
1432889000 1659018 3326
1432889105 1659124 3327
1432889188 1659230 3328
1432889286 1659336 3329
1432889386 1659442 3330
1432889487 1659548 3331
1432889586 1659654 3332
1432889687 1659760 3333
1432889786 1659866 3334
1432889887 1659972 3335
1432889986 1660078 3336
1432890086 1660184 3337
1432890188 1660290 3338
1432890287 1660396 3339
1432890387 1660502 3340
1432890487 1660608 3341
1432890586 1660714 3342
1432890687 1660820 3343
1432890788 1660926 3344
1432890901 1661032 3345
1432890996 1661138 3346
1432891091 1661244 3347
1432891188 1661350 3348
1432891288 1661456 3349
1432891388 1661562 3350
1432891495 1661668 3351
1432891592 1661774 3352
1432891689 1661880 3353
1432891788 1661986 3354
1432891890 1662092 3355
1432891991 1662198 3356
1432892107 1662304 3357
1432892204 1662410 3358
1432892297 1662516 3359
1432892390 1662622 3360
1432892489 1662728 3361
1432892589 1662834 3362
1432892688 1662940 3363
1432892789 1663046 3364
1432892889 1663152 3365
1432892989 1663258 3366
1432893089 1663364 3367
1432893189 1663470 3368
1432893288 1663576 3369
1432893390 1663682 3370
1432893491 1663788 3371
1432893598 1663894 3372
1432955092 1664000 3373
1432955191 1664106 3374
1432955290 1664212 3375
1432955390 1664318 3376
1432955490 1664424 3377
1432955590 1664530 3378
1432955690 1664636 3379
1432955790 1664742 3380
1432961232 1664848 3381
1432961332 1664954 3382
1432961432 1665060 3383
1432961532 1665166 3384
1432961632 1665272 3385
1432961732 1665378 3386
1432961833 1665484 3387
1432961932 1665590 3388
1432962032 1665696 3389
1432962132 1665802 3390
1432962233 1665908 3391
1432962332 1666014 3392
1432962433 1666120 3393
1432962533 1666226 3394
1432962632 1666332 3395
1432962732 1666438 3396
1432962832 1666544 3397
1432962932 1666650 3398
1432963033 1666756 3399
1432963133 1666862 3400
1433139450 1666968 3401
1433139550 1667074 3402
1433139651 1667180 3403
1433139751 1667286 3404
1433139851 1667392 3405
1433139951 1667498 3406
1433140051 1667604 3407
1433140151 1667710 3408
1433140251 1667816 3409
1433140351 1667922 3410
1433140451 1668028 3411
1433140552 1668134 3412
1433140652 1668240 3413
1433140752 1668346 3414
1433140852 1668452 3415
1433140953 1668558 3416
1433141053 1668664 3417
1433141153 1668770 3418
1433141253 1668876 3419
1433141353 1668982 3420
1433141453 1669088 3421
1433141553 1669194 3422
1433141653 1669300 3423
1433141753 1669406 3424
1433141853 1669512 3425
1433141953 1669618 3426
1433142053 1669724 3427
1433142154 1669830 3428
1433142254 1669936 3429
1433142354 1670042 3430
1433142454 1670148 3431
1433142554 1670254 3432
1433142654 1670360 3433
1433142754 1670466 3434
1433142854 1670572 3435
1433142954 1670678 3436
1433143054 1670784 3437
1433143154 1670890 3438
1433143254 1670996 3439
1433143354 1671102 3440
1433143454 1671208 3441
1433143554 1671314 3442
1433143654 1671420 3443
1433143754 1671526 3444
1433143854 1671632 3445
1433143954 1671738 3446
1433144054 1671844 3447
1433144155 1671950 3448
1433144255 1672056 3449
1433144355 1672162 3450
1433144455 1672268 3451
1433144556 1672374 3452
1433144656 1672480 3453
1433144756 1672586 3454
1433144856 1672692 3455
1433144956 1672798 3456
1433145056 1672904 3457
1433145156 1673010 3458
1433145256 1673116 3459
1433145356 1673222 3460
1433145456 1673328 3461
1433145556 1673434 3462
1433145747 1673540 3463
1433145873 1673646 3464
1433145973 1673752 3465
1433146074 1673858 3466
1433146174 1673964 3467
1433146274 1674070 3468
1433146374 1674176 3469
1433146474 1674282 3470
1433146574 1674388 3471
1433146674 1674494 3472
1433146774 1674600 3473
1433146874 1674706 3474
1433146974 1674812 3475
1433147074 1674918 3476
1433147174 1675024 3477
1433147274 1675130 3478
1433147374 1675236 3479
1433147474 1675342 3480
1433147574 1675448 3481
1433147674 1675554 3482
1433147775 1675660 3483
1433147875 1675766 3484
1433147975 1675872 3485
1433148075 1675978 3486
1433148175 1676084 3487
1433148276 1676190 3488
1433148376 1676296 3489
1433148509 1676402 3490
1433148609 1676508 3491
1433148709 1676614 3492
1433148809 1676720 3493
1433148909 1676826 3494
1433149124 1665416 3444
1433149224 1665522 3445
1433149324 1665628 3446
1433149424 1665734 3447
1433149524 1665840 3448
1433149624 1665946 3449
1433149724 1666052 3450
1433149824 1666158 3451
1433149924 1666264 3452
1433150024 1666370 3453
1433150124 1666476 3454
1433150301 1666582 3455
1433150494 1666688 3456
1433151065 1666852 3457
1433151165 1666958 3458
1433151265 1667064 3459
1433151365 1667170 3460
1433151465 1667276 3461
1433151565 1667382 3462
1433151665 1667488 3463
1433151765 1667594 3464
1433151865 1667700 3465
1433152014 1667806 3466
1433152114 1667912 3467
1433152214 1668018 3468
1433152314 1668124 3469
1433152414 1668230 3470
1433152514 1668336 3471
1433207656 1668442 3472
1433207752 1668548 3473
1433207852 1668654 3474
1433207952 1668760 3475
1433208052 1668866 3476
1433208152 1668972 3477
1433208252 1669078 3478
1433208352 1669184 3479
1433208452 1669290 3480
1433208552 1669396 3481
1433208652 1669502 3482
1433208753 1669608 3483
1433208853 1669714 3484
1433208955 1669820 3485
1433209055 1669926 3486
1433209155 1670032 3487
1433209255 1670138 3488
1433209354 1670244 3489
1433209455 1670350 3490
1433209555 1670456 3491
1433209655 1670562 3492
1433209755 1670668 3493
1433209855 1670774 3494
1433209954 1670880 3495
1433210053 1670986 3496
1433210156 1671092 3497
1433210255 1671198 3498
1433210359 1671304 3499
1433210464 1671410 3500
1433210554 1671516 3501
1433210706 1671622 3502
1433210807 1671728 3503
1433210906 1671834 3504
1433211006 1671940 3505
1433211106 1672046 3506
1433211206 1672152 3507
1433211306 1672258 3508
1433211406 1672364 3509
1433211506 1672470 3510
1433211606 1672576 3511
1433211705 1672682 3512
1433211805 1672788 3513
1433211905 1672894 3514
1433212006 1673000 3515
1433212106 1673106 3516
1433212205 1673212 3517
1433212306 1673318 3518
1433212406 1673424 3519
1433212506 1673530 3520
1433212608 1673636 3521
1433212713 1673742 3522
1433212813 1673848 3523
1433212914 1673954 3524
1433213014 1674060 3525
1433213115 1674166 3526
1433213215 1674272 3527
1433213314 1674378 3528
1433213414 1674484 3529
1433213514 1674590 3530
1433213615 1674696 3531
1433213715 1674802 3532
1433213814 1674908 3533
1433213915 1675014 3534
1433214014 1675120 3535
1433214114 1675226 3536
1433214215 1675332 3537
1433214314 1675438 3538
1433214414 1675544 3539
1433214515 1675650 3540
1433214614 1675756 3541
1433214715 1675862 3542
1433214815 1675968 3543
1433214914 1676074 3544
1433215015 1676180 3545
1433215115 1676286 3546
1433215216 1676392 3547
1433215315 1676498 3548
1433215418 1676604 3549
1433215517 1676710 3550
1433215618 1676816 3551
1433215717 1676922 3552
1433215817 1677028 3553
1433215924 1677134 3554
1433216021 1677240 3555
1433216116 1677346 3556
1433216215 1677452 3557
1433216314 1677558 3558
1433216417 1677664 3559
1433216520 1677770 3560
1433216616 1677876 3561
1433216716 1677982 3562
1433216817 1678088 3563
1433216918 1678194 3564
1433217018 1678300 3565
1433217119 1678406 3566
1433217224 1678512 3567
1433217315 1678618 3568
1433217415 1678724 3569
1433217516 1678830 3570
1433217616 1678936 3571
1433217716 1679042 3572
1433217816 1679148 3573
1433217922 1679254 3574
1433218017 1679360 3575
1433218116 1679466 3576
1433218216 1679572 3577
1433218316 1679678 3578
1433218416 1679784 3579
1433218517 1679890 3580
1433218618 1679996 3581
1433218718 1680102 3582
1433218816 1680208 3583
1433218917 1680314 3584
1433219021 1680420 3585
1433219118 1680526 3586
1433219216 1680632 3587
1433219317 1680738 3588
1433219416 1680844 3589
1433219517 1680950 3590
1433219617 1681056 3591
1433219717 1681162 3592
1433219816 1681268 3593
1433219916 1681374 3594
1433220016 1681480 3595
1433220118 1681586 3596
1433220220 1681692 3597
1433220317 1681798 3598
1433220416 1681904 3599
1433220516 1682010 3600
1433220617 1682116 3601
1433220718 1682222 3602
1433220817 1682328 3603
1433220916 1682434 3604
1433221016 1682540 3605
1433221116 1682646 3606
1433221216 1682752 3607
1433221316 1682858 3608
1433221416 1682964 3609
1433221516 1683070 3610
1433221616 1683176 3611
1433221717 1683282 3612
1433221816 1683388 3613
1433221924 1683494 3614
1433222016 1683600 3615
1433222116 1683706 3616
1433222216 1683812 3617
1433222316 1683918 3618
1433222416 1684024 3619
1433222517 1684130 3620
1433222616 1684236 3621
1433222716 1684342 3622
1433222816 1684448 3623
1433222916 1684554 3624
1433223017 1684660 3625
1433223117 1684766 3626
1433223217 1684872 3627
1433223318 1684978 3628
1433223416 1685084 3629
1433223521 1685190 3630
1433223623 1685296 3631
1433223718 1685402 3632
1433223818 1685508 3633
1433223918 1685614 3634
1433224018 1685720 3635
1433224117 1685826 3636
1433224217 1685932 3637
1433224318 1686038 3638
1433224419 1686144 3639
1433224519 1686250 3640
1433224618 1686356 3641
1433224718 1686462 3642
1433224818 1686568 3643
1433224919 1686674 3644
1433225019 1686780 3645
1433225118 1686886 3646
1433225219 1686992 3647
1433225319 1687098 3648
1433226968 1687204 3649
1433227068 1687310 3650
1433227168 1687416 3651
1433227268 1687522 3652
1433227369 1687628 3653
1433227470 1687734 3654
1433227570 1687840 3655
1433227671 1687946 3656
1433227772 1688052 3657
1433227873 1688158 3658
1433227974 1688264 3659
1433228074 1688370 3660
1433233100 1688476 3661
1433235523 1689579 3662
1433235623 1689685 3663
1433235723 1689791 3664
1433235823 1689897 3665
1433236103 1690003 3666
1433236206 1690109 3667
1433236312 1690215 3668
1433236414 1690321 3669
1433236515 1690427 3670
1433236803 1690533 3671
1433236907 1690639 3672
1433292629 1691252 3674
1433292721 1691358 3675
1433292822 1691464 3676
1433292931 1691570 3677
1433293031 1691676 3678
1433293131 1691782 3679
1433293232 1691888 3680
1433293332 1691994 3681
1433293432 1692100 3682
1433293532 1692206 3683
1433293633 1692312 3684
1433293733 1692418 3685
1433293834 1692524 3686
1433293936 1692630 3687
1433294034 1692736 3688
1433296906 1692856 3689
1433297005 1692962 3690
1433297107 1693068 3691
1433297207 1693174 3692
1433302886 1693058 3692
1433302986 1693164 3693
1433303086 1693270 3694
1433303186 1693376 3695
1433303459 1693482 3696
1433303608 1693588 3697
1433303794 1693694 3698
1433303894 1693800 3699
1433306205 1693905 3700
1433306303 1694011 3701
1433306403 1694117 3702
1433306504 1694223 3703
1433306604 1694329 3704
1433306704 1694435 3705
1433306804 1694541 3706
1433306905 1694647 3707
1433307014 1694753 3708
1433307106 1694859 3709
1433307207 1694965 3710
1433307312 1695071 3711
1433307406 1695177 3712
1433307506 1695283 3713
1433307626 1695389 3714
1433307707 1695495 3715
1433307806 1695601 3716
1433307916 1695707 3717
1433308006 1695813 3718
1433308111 1695919 3719
1433308213 1696025 3720
1433308307 1696131 3721
1433308497 1696237 3722
1433308596 1696343 3723
1433308696 1696449 3724
1433308796 1696555 3725
1433308896 1696661 3726
1433308996 1696767 3727
1433309096 1696873 3728
1433309196 1696979 3729
1433309296 1697085 3730
1433309396 1697191 3731
1433309496 1697297 3732
1433309596 1697403 3733
1433309696 1697509 3734
1433309796 1697615 3735
1433309896 1697721 3736
1433309996 1697827 3737
1433310096 1697933 3738
1433310196 1698039 3739
1433310296 1698145 3740
1433310396 1698251 3741
1433310496 1698357 3742
1433310596 1698463 3743
1433310697 1698569 3744
1433310797 1698675 3745
1433310896 1698781 3746
1433311140 1698887 3747
1433311240 1698993 3748
1433311340 1699099 3749
1433311440 1699205 3750
1433311541 1699311 3751
1433311642 1699417 3752
1433311742 1699523 3753
1433311842 1699629 3754
1433311943 1699735 3755
1433312043 1699841 3756
1433312142 1699947 3757
1433312243 1700053 3758
1433312345 1700159 3759
1433312445 1700265 3760
1433312542 1700371 3761
1433312643 1700477 3762
1433312743 1700583 3763
1433312843 1700689 3764
1433312946 1700795 3765
1433313044 1700901 3766
1433313143 1701007 3767
1433313244 1701113 3768
1433313344 1701219 3769
1433313446 1701325 3770
1433313552 1701431 3771
1433313650 1701537 3772
1433313746 1701643 3773
1433313849 1701749 3774
1433313958 1701855 3775
1433314068 1701961 3776
1433314157 1702067 3777
1433314274 1702173 3778
1433314357 1702279 3779
1433314485 1702385 3780
1433314596 1702491 3781
1433314768 1702597 3782
1433314802 1702703 3783
1433314919 1702809 3784
1433314964 1702915 3785
1433315055 1703021 3786
1433315151 1703127 3787
1433315252 1703233 3788
1433315371 1703339 3789
1433315625 1703445 3790
1433315733 1703551 3791
1433315831 1703657 3792
1433315938 1703763 3793
1433316030 1703869 3794
1433316425 1703975 3795
1433316614 1704081 3796
1433316869 1704187 3797
1433316969 1704293 3798
1433317184 1704399 3799
1433317279 1704505 3800
1433317397 1704611 3801
1433317497 1704717 3802
1433317603 1704823 3803
1433317703 1704929 3804
1433318051 1705035 3805
1433318151 1705141 3806
1433318251 1705247 3807
1433318352 1705353 3808
1433318451 1705459 3809
1433318622 1705565 3810
1433318722 1705671 3811
1433318822 1705777 3812
1433318922 1705883 3813
1433319024 1705989 3814
1433319122 1706095 3815
1433319222 1706201 3816
1433319582 1706307 3817
1433319725 1706413 3818
1433319836 1706519 3819
1433319978 1706625 3820
1433320081 1706731 3821
1433320178 1706837 3822
1433320278 1706943 3823
1433320379 1707049 3824
1433320585 1707155 3825
1433320775 1707261 3826
1433320876 1707367 3827
1433321091 1707473 3828
1433321287 1707579 3829
1433321387 1707685 3830
1433321782 1707791 3831
1433321922 1707897 3832
1433322022 1708003 3833
1433322122 1708109 3834
1433322222 1708215 3835
1433322330 1708321 3836
1433322430 1708427 3837
1433322530 1708533 3838
1433322728 1708639 3839
1433322828 1708745 3840
1433322977 1708851 3841
1433323080 1708957 3842
1433323179 1709063 3843
1433323279 1709169 3844
1433323379 1709275 3845
1433323480 1709381 3846
1433323580 1709487 3847
1433323793 1709593 3848
1433323924 1709699 3849
1433324029 1709805 3850
1433324142 1709911 3851
1433324336 1710017 3852
1433324449 1710123 3853
1433324554 1710229 3854
1433324730 1710335 3855
1433324830 1710441 3856
1433324970 1710547 3857
1433325191 1710653 3858
1433379417 1710759 3859
1433379422 1710865 3860
1433379516 1710971 3861
1433379605 1711077 3862
1433379616 1711183 3863
1433379705 1711289 3864
1433379716 1711395 3865
1433379805 1711501 3866
1433379816 1711607 3867
1433379905 1711713 3868
1433379916 1711819 3869
1433380006 1711925 3870
1433380016 1712031 3871
1433380107 1712137 3872
1433380116 1712243 3873
1433380208 1712349 3874
1433380217 1712455 3875
1433380309 1712561 3876
1433380318 1712667 3877
1433380410 1712773 3878
1433380419 1712879 3879
1433380512 1712985 3880
1433380520 1713091 3881
1433380612 1713197 3882
1433380621 1713303 3883
1433380721 1713409 3884
1433380806 1713515 3885
1433380822 1713621 3886
1433380906 1713727 3887
1433380922 1713833 3888
1433381006 1713939 3889
1433381022 1714045 3890
1433381106 1714151 3891
1433381123 1714257 3892
1433381206 1714363 3893
1433381224 1714469 3894
1433381323 1714575 3895
1433381424 1714681 3896
1433381475 1714787 3897
1433381524 1714893 3898
1433381624 1714999 3899
1433381725 1715105 3900
1433381826 1715211 3901
1433381847 1715317 3902
1433381926 1715423 3903
1433382028 1715529 3904
1433382049 1715635 3905
1433382127 1715741 3906
1433382182 1715847 3907
1433382228 1715953 3908
1433382283 1716059 3909
1433382331 1716165 3910
1433382381 1716271 3911
1433382429 1716377 3912
1433382482 1716483 3913
1433382529 1716589 3914
1433382630 1716695 3915
1433382732 1716801 3916
1433382764 1716907 3917
1433382831 1717013 3918
1433382894 1717119 3919
1433382934 1717225 3920
1433382994 1717331 3921
1433383032 1717437 3922
1433383100 1717543 3923
1433383133 1717649 3924
1433383195 1717755 3925
1433383232 1717861 3926
1433383294 1717967 3927
1433383333 1718073 3928
1433383434 1718179 3929
1433383530 1718285 3930
1433383548 1718391 3931
1433383630 1718497 3932
1433383635 1718603 3933
1433383730 1718709 3934
1433383734 1718815 3935
1433383832 1718921 3936
1433383837 1719027 3937
1433383934 1719133 3938
1433384034 1719239 3939
1433384106 1719345 3940
1433384136 1719451 3941
1433384235 1719557 3942
1433384335 1719663 3943
1433384435 1719769 3944
1433384532 1719875 3945
1433384537 1719981 3946
1433384633 1720087 3947
1433384648 1720193 3948
1433384736 1720299 3949
1433384794 1720405 3950
1433384836 1720511 3951
1433384895 1720617 3952
1433384936 1720723 3953
1433384995 1720829 3954
1433385035 1720935 3955
1433385095 1721041 3956
1433385135 1721147 3957
1433385194 1721253 3958
1433385235 1721359 3959
1433385308 1721465 3960
1433385335 1721571 3961
1433385437 1721677 3962
1433385536 1721783 3963
1433385590 1721889 3964
1433385638 1721995 3965
1433385687 1722101 3966
1433385738 1722207 3967
1433385808 1722313 3968
1433385837 1722419 3969
1433385908 1722525 3970
1433385938 1722631 3971
1433386008 1722737 3972
1433386040 1722843 3973
1433386109 1722949 3974
1433386138 1723055 3975
1433386239 1723161 3976
1433386340 1723267 3977
1433386439 1723373 3978
1433386541 1723479 3979
1433386641 1723585 3980
1433386742 1723691 3981
1433386841 1723797 3982
1433386880 1723903 3983
1433386943 1724009 3984
1433386980 1724115 3985
1433387042 1724221 3986
1433387081 1724327 3987
1433387142 1724433 3988
1433387181 1724539 3989
1433387242 1724645 3990
1433387337 1724751 3991
1433387344 1724857 3992
1433387444 1724963 3993
1433387545 1725069 3994
1433387615 1725175 3995
1433387644 1725281 3996
1433387744 1725387 3997
1433387845 1725493 3998
1433387912 1725599 3999
1433387945 1725705 4000
1433388011 1725811 4001
1433388044 1725917 4002
1433388111 1726023 4003
1433388144 1726129 4004
1433388211 1726235 4005
1433388245 1726341 4006
1433388311 1726447 4007
1433388346 1726553 4008
1433388412 1726659 4009
1433388447 1726765 4010
1433388513 1726871 4011
1433388547 1726977 4012
1433388613 1727083 4013
1433388647 1727189 4014
1433388719 1727295 4015
1433388747 1727401 4016
1433388849 1727507 4017
1433388944 1727613 4018
1433388949 1727719 4019
1433389049 1727825 4020
1433389109 1727931 4021
1433389149 1728037 4022
1433389249 1728143 4023
1433389351 1728249 4024
1433389355 1728355 4025
1433389451 1728461 4026
1433389455 1728567 4027
1433389551 1728673 4028
1433389558 1728779 4029
1433389650 1728885 4030
1433389655 1728991 4031
1433389752 1729097 4032
1433389756 1729203 4033
1433389852 1729309 4034
1433389857 1729415 4035
1433478468 1729521 4036
1433478891 1729627 4037
1433479086 1729733 4038
1433479186 1729839 4039
1433479286 1729945 4040
1433479512 1730051 4041
1433479711 1730157 4042
1433480059 1730263 4043
1433480205 1729176 4043
1433480429 1729282 4044
1433480529 1729388 4045
1433480630 1729494 4046
1433480729 1729600 4047
1433480830 1729706 4048
1433480930 1729812 4049
1433481030 1729918 4050
1433481130 1730024 4051
1433481229 1730130 4052
1433481331 1730236 4053
1433481432 1730342 4054
1433481549 1730448 4055
1433481651 1730554 4056
1433481751 1730660 4057
1433481851 1730766 4058
1433481951 1730872 4059
1433482085 1730978 4060
1433482185 1731084 4061
1433482285 1731190 4062
1433482385 1731296 4063
1433482485 1731402 4064
1433482585 1731508 4065
1433482685 1731614 4066
1433482935 1731720 4067
1433483035 1731826 4068
1433483135 1731932 4069
1433483232 1732038 4070
1433483235 1732144 4071
1433483332 1732250 4072
1433483335 1732356 4073
1433483432 1732462 4074
1433483435 1732568 4075
1433483532 1732674 4076
1433483535 1732780 4077
1433483635 1732886 4078
1433483735 1732992 4079
1433483836 1733098 4080
1433483837 1733204 4081
1433483936 1733310 4082
1433483938 1733416 4083
1433484036 1733522 4084
1433484037 1733628 4085
1433484137 1733734 4086
1433484237 1733840 4087
1433484239 1733946 4088
1433484337 1734052 4089
1433484340 1734158 4090
1433484437 1734264 4091
1433484439 1734370 4092
1433484537 1734476 4093
1433484539 1734582 4094
1433484637 1734688 4095
1433484639 1734794 4096
1433484737 1734900 4097
1433484739 1735006 4098
1433484837 1735112 4099
1433484839 1735218 4100
1433484937 1735324 4101
1433484939 1735430 4102
1433485037 1735536 4103
1433485101 1735642 4104
1433485201 1735748 4105
1433485302 1735854 4106
1433485401 1735960 4107
1433485501 1736066 4108
1433485601 1736172 4109
1433485701 1736278 4110
1433485801 1736384 4111
|
<gh_stars>0
INSERT INTO "vehicles" ("id", "model", "brand", "category_name", "year", "price", "original_price", "is_available") VALUES
(1, "DeLorean", "Motor Company", "classic", 1983, 45, 45),
(2, "<NAME>", "Volkswagen", "common", 1980, 35, 35),
(3, "Batmobile", "<NAME>", "premium", 1943, 75, 75) |
<reponame>ngodichat/studentManagement
CREATE DATABASE IF NOT EXISTS `studentmanagement` /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci */;
USE `studentmanagement`;
-- MySQL dump 10.13 Distrib 5.7.17, for Win64 (x86_64)
--
-- Host: localhost Database: studentmanagement
-- ------------------------------------------------------
-- Server version 5.6.39-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `attendance`
--
DROP TABLE IF EXISTS `attendance`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `attendance` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`student_id` int(11) NOT NULL,
`session_id` int(11) NOT NULL,
`log_date` date NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `attendance`
--
LOCK TABLES `attendance` WRITE;
/*!40000 ALTER TABLE `attendance` DISABLE KEYS */;
/*!40000 ALTER TABLE `attendance` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `fee_log`
--
DROP TABLE IF EXISTS `fee_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `fee_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`student_id` int(11) NOT NULL,
`amount` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `fee_log`
--
LOCK TABLES `fee_log` WRITE;
/*!40000 ALTER TABLE `fee_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `fee_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `parents`
--
DROP TABLE IF EXISTS `parents`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `parents` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) CHARACTER SET utf8 NOT NULL,
`phone` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `parents`
--
LOCK TABLES `parents` WRITE;
/*!40000 ALTER TABLE `parents` DISABLE KEYS */;
INSERT INTO `parents` VALUES (1,'<NAME>','01689947901'),(2,'<NAME>','0234145678');
/*!40000 ALTER TABLE `parents` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sessions`
--
DROP TABLE IF EXISTS `sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sessions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(45) COLLATE utf8_unicode_ci NOT NULL,
`start_date` datetime NOT NULL,
`end_date` datetime DEFAULT NULL,
`start_time` time(6) DEFAULT NULL,
`duration` float DEFAULT '2',
`fee` int(11) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sessions`
--
LOCK TABLES `sessions` WRITE;
/*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
INSERT INTO `sessions` VALUES (1,'Lớp Văn 3-5','2017-01-01 00:00:00',NULL,'18:00:00.000000',2,150),(2,'Lớp Văn 2-4','2017-05-11 00:00:00',NULL,'18:30:00.000000',1.5,200);
/*!40000 ALTER TABLE `sessions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `students`
--
DROP TABLE IF EXISTS `students`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `students` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`sur_middle_name` varchar(100) CHARACTER SET utf8 NOT NULL,
`first_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`class` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
`school` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
`referal` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
`parent_id` int(11) DEFAULT NULL,
`start_date` date DEFAULT NULL,
`session_id` int(11) DEFAULT NULL,
`total_money` int(11) DEFAULT '0',
`note` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `students`
--
LOCK TABLES `students` WRITE;
/*!40000 ALTER TABLE `students` DISABLE KEYS */;
INSERT INTO `students` VALUES (1,'<NAME>','Bình','12A','<NAME>','<NAME>',NULL,'2017-12-12',NULL,0,NULL),(2,'<NAME>','Thành','11D','<NAME>','<NAME>',NULL,'2017-11-30',NULL,0,NULL);
/*!40000 ALTER TABLE `students` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2018-02-08 11:29:31
|
<filename>assignment/HW1_placeholder/q2_warmup.sql
SELECT city, count(city) FROM station
GROUP BY city
ORDER BY count(city) ASC
|
/*oficina*/
DROP DATABASE IF EXISTS oficina;
CREATE DATABASE oficina;
USE oficina;
/*TABLES*/
CREATE TABLE proprietarios (
id INT PRIMARY KEY AUTO_INCREMENT,
nome VARCHAR(40) NOT NULL,
cpf CHAR(11) UNIQUE NOT NULL
);
CREATE TABLE modelos (
id INT PRIMARY KEY AUTO_INCREMENT,
nome VARCHAR(40) UNIQUE NOT NULL
);
CREATE TABLE cores (
id INT PRIMARY KEY AUTO_INCREMENT,
nome VARCHAR(40) NOT NULL
);
CREATE TABLE carros (
id INT PRIMARY KEY AUTO_INCREMENT,
chassi CHAR(17) UNIQUE NOT NULL,
placa CHAR(8) UNIQUE NOT NULL,
proprietarios_id INT,
modelos_id INT
);
CREATE TABLE telefones (
id INT PRIMARY KEY AUTO_INCREMENT,
tipo CHAR(1) NOT NULL,
numero CHAR(14) NOT NULL,
proprietarios_id INT
);
CREATE TABLE carros_cores (
carros_id INT,
cores_id INT,
PRIMARY KEY (carros_id,cores_id)
);
/*CONSTRAINTS*/
ALTER TABLE carros
ADD CONSTRAINT carros_proprietarios_fk
FOREIGN KEY(proprietarios_id)
REFERENCES proprietarios(id);
ALTER TABLE carros
ADD CONSTRAINT carros_modelos_fk
FOREIGN KEY(modelos_id)
REFERENCES modelos(id);
ALTER TABLE telefones
ADD CONSTRAINT telefones_proprietarios_fk
FOREIGN KEY(proprietarios_id)
REFERENCES proprietarios(id);
ALTER TABLE carros_cores
ADD CONSTRAINT carros_fk
FOREIGN KEY(carros_id)
REFERENCES carros(id);
ALTER TABLE carros_cores
ADD CONSTRAINT cor_fk
FOREIGN KEY(cores_id)
REFERENCES cores(id);
/*INSERTS*/
INSERT INTO proprietarios (nome,cpf)
VALUES ("<NAME>","42408287187"),("<NAME>","31859521958"),("<NAME>","24303261433"),("<NAME>","08948292121"),("<NAME>","66024809916"),("<NAME>","96932095840"),("<NAME>","53239881003"),("<NAME>","26649257998"),("<NAME>","10885417678"),("<NAME>","69824552631"),("<NAME>","84576830837"),("<NAME>","16145300735"),("<NAME>","50953503151"),("<NAME>","13920123462"),("<NAME>","74567214310"),("<NAME>","55932451618"),("<NAME>","57388541024"),("<NAME>","24566289881"),("<NAME>","93050093331"),("<NAME>","34060536372"),("<NAME>","51604240959"),("<NAME>","83435846203"),("<NAME>","75752698221"),("<NAME>","96927437698"),("<NAME>","75681941462"),("<NAME>","12234994107"),("<NAME>","59695971607"),("<NAME>","86038829484"),("<NAME>","49082624226"),("<NAME>","61975434569"),("<NAME>","75180520790"),("<NAME>","41431520633"),("<NAME>","61419057945"),("<NAME>","24040404548"),("<NAME>","12127583758"),("<NAME>","37813194884"),("<NAME>","11691023973"),("<NAME>","68292134488"),("<NAME>","52969407786"),("<NAME>","53325965046"),("<NAME>","02150054287"),("<NAME>","65230644899"),("<NAME>","72736448886"),("<NAME>","13697030967"),("<NAME>","18915841411"),("<NAME>","30519306532"),("<NAME>","27075412752"),("<NAME>","77603362219"),("<NAME>","01903138590"),("<NAME>","59557200201"),
("<NAME>","08562758528"),("<NAME>","87946092843"),("<NAME>","56920670913"),("<NAME>","85433838881"),("<NAME>","32618317527"),("<NAME>","81381513636"),("<NAME>","28337374470"),("<NAME>","49735967998"),("<NAME>","59915522661"),("<NAME>","73776136189"),("<NAME>","19322505081"),("<NAME>","79778819612"),("<NAME>","47665906115"),("<NAME>","53311758233"),("<NAME>","57108738495"),("<NAME>","90135804200"),("<NAME>","24721415016"),("<NAME>","73798018112"),("<NAME>","82516238470"),("<NAME>","59709483955"),("<NAME>","76071934109"),("<NAME>","53246048299"),("<NAME>","99889689536"),("<NAME>","12285008507"),("<NAME>","38051128677"),("<NAME>","28356087331"),("<NAME>","85801535544"),("<NAME>","63392294320"),("<NAME>","33410267791"),("<NAME>","66933401103"),("<NAME>","67896639099"),("<NAME>","61665197513"),("<NAME>","83072476719"),("<NAME>","36252052227"),("<NAME>","77946101006"),("<NAME>","17091388845"),("<NAME>","96489887486"),("<NAME>","29998757829"),("<NAME>","70206029812"),("<NAME>","67847148454"),("<NAME>","22393627249"),("<NAME>","92280634007"),("<NAME>","74533414747"),("<NAME>","27075836094"),("<NAME>","73030210907"),("<NAME>","51392345651"),("<NAME>","25939740015"),("<NAME>","19384865278"),("<NAME>","44880663382"),("<NAME>","58625864072");
INSERT INTO modelos (nome)
VALUES ('Jeep Renegade'),('Jeep Compass'),('Hyundai Creta'),('Nissan Kicks'),('Honda HR-V'),('VW T Cross'),('Ford EcoSport'),('Renault Captur'),('Renault Duster'),('Citroen C4 Cactus'),('GM Tracker'),('Toyota Hilux Sw4'),('VW Tiguan'),('Honda WR-V'),('Golf'),('Chery Tiggo 5X'),('Gol G5'),('Hyundai Ix35'),('GM Equinox'),('Bmw X1'),('Toyota Rav4'),('Kia Sportage'),('Mitsubishi ASX'),('Hyundai Tucson'),('Volvo Xc60'),('GM Trailblazer'),('Land Rover Discovery'),('Citroen Aircross'),('M.Benz Classe GLA'),('Volvo XC40'),('Peugeot'),('Mitsubishi Eclipse'),('<NAME>'),('<NAME>'),('Mitsubishi Outlander'),('Audi Q5'),('<NAME>'),('Audi Q3'),('Suzuki Vitara'),('Troller T4'),('Fiat Strada'),('Fiat Toro'),('VW Saveiro'),('Toyota Hilux'),('GM S10'),('Ford Ranger'),('VW Amarok'),('Fiat Fiorino'),('<NAME>'),('GM Montana');
INSERT INTO cores (nome)
VALUES ('Branco'),('Preto'),('Cinza'),('Prata'),('Vermelho'),('Azul'),('Marrom'),('Verde'),('Dourado'),('Amarelo'),('Laranja');
INSERT INTO carros (chassi,placa,proprietarios_id,modelos_id)
VALUES ("0C4E38F69AA9143C6","YWU-9833",1,1),("083D21DE200770E81","YKB-7945",2,2),("F1324B91E596B8BFD","BHQ-3097",3,3),("481251C7E8908B320","ENM-2244",4,4),("622340647EFC3F337","NPQ-1590",5,5),("C1DE51D24FB8ACBE7","MJC-9232",6,6),("19D3A9B562494CF0A","IWP-1685",7,7),("7E49EA10DF9E57747","BBO-3174",8,8),("1B13C3DAF9DFBD345","IJT-5644",9,9),("71AC7EC2BB83FA31D","IAJ-7015",10,10),("2748BD7FAA40F9590","EHB-7360",11,11),("8DD392E0EB50B9D52","QRR-2872",12,12),("34DF087DA8B8BEED7","BVR-1594",13,13),("FD1F83F3E29726BBD","JPI-6053",14,14),("D53F3E5B984246782","RUN-7015",15,15),("69002725B8658A10F","JPU-2520",16,16),("D8EF8596AB952C178","HZR-4897",17,17),("D38DC67DE695DB3A1","ACH-8697",18,18),("0905E3E253495E0A8","ZHT-3018",19,19),("C3B40AA2542BC1294","OFY-1557",20,20),("AF9539FB24EFBEFB3","FHU-7424",21,21),("6761EF99B6F2A5D78","ETF-6308",22,22),("340786818CD183679","RKL-2019",23,23),("EC8217A915130316A","HVW-6775",24,24),("869348781E5403340","RNF-4540",25,25),("708E320EB404D539B","XBO-8857",26,26),("E47DD0441438FA48E","WXZ-7924",27,27),("C46496D7E424DD90F","REB-5026",28,28),("48E358311B6271E9B","OWD-3128",29,29),("855E67F17BB7F3D2D","GFF-1742",30,30),("991952631E75C5C44","SYB-2114",31,31),("916C62F180FCD2440","FIV-6338",32,32),("A9FCCDBB2142A2FFB","MLB-2444",33,33),("21D7CFF31726A725E","BAS-6597",34,34),("DB223A25EA979039F","XGT-5284",35,35),("12677BC34261800A2","VVN-3042",36,36),("2541CB82EE76862EE","RHU-6035",37,37),("AD8EEEADEF1BADA34","SHS-1761",38,38),("9B2A28C0E41147F5A","WAV-7952",39,39),("6FDB83C168FEC3F28","QUQ-9671",40,40),("98DEEC95F46944765","JCY-0014",41,41),("9558E83755A3F88F4","XWN-0222",42,42),("AE84B4AC93A1C93B5","TKD-8682",43,43),("8C56A3794307E6B66","MBU-6557",44,44),("8A455E9CF40335BC8","XTZ-8261",45,45),("DB1315C0A32A2D8D0","QXO-5126",46,46),("388D7F689AE8C200E","NGG-1956",47,47),("7DD7F2F8B5D956EE9","FET-5999",48,48),("FAD312D3076682348","PIJ-9543",49,49),("516C51F5A53F0618E","HOR-5628",50,50),
("7213F715BB8F6B31E","FUB-3305",51,1),("492E3A75FBC5CCD95","UIL-5574",52,2),("1459F4F420E471DAD","BMQ-7444",53,3),("171B79CF11F72E1E9","AUD-7238",54,4),("08503BF30947F4BCF","AYV-3671",55,5),("9ED2667EF306CA6AA","LJG-6876",56,6),("16607E41D407233B4","SIV-8679",57,7),("2D35C72465D3345CA","AHO-4013",58,8),("CE11B553D578A9C20","EWS-5926",59,9),("58247DF59390A7768","VZS-9055",60,10),("0D4B78007AC1D9031","MAQ-4254",61,11),("81B33264EEC30FB49","MNR-3912",62,12),("0F5419032048D689B","PYF-9552",63,13),("069F119F81C885F31","JUR-0410",64,14),("7A219086BC149A46C","MFY-5119",65,15),("B55EB26C31F81C413","ZWA-4979",66,16),("6750B33CCD2BB59B9","EKW-5616",67,17),("E0C099E191C48FA78","TGV-7811",68,18),("13F57DBEB4589657C","WCJ-7338",69,19),("CDFDD5E6FEEB39131","UBQ-6298",70,20),("09A345655C785470C","WIB-8978",71,21),("543BBAEFF030E3698","NJI-5057",72,22),("E156F406FAC5B49E7","IQK-0278",73,23),("A0BDA00C6345A6F06","DIN-3617",74,24),("AD9D367ACD2A67F3D","HKC-8245",75,25),("387FC81A62AE8120A","NQA-2783",76,26),("F16BA96C22397207E","RPN-7292",77,27),("005039D766E950D8D","YCG-1949",78,28),("5722D388A299F6635","PPA-0443",79,29),("6DAA23094950C6A94","GCM-8245",80,30),("DF1EB8BC871E79447","WVH-0614",81,31),("BE6158565B822AC7E","LVA-8877",82,32),("F51C401220C968CF3","MCK-3217",83,33),("F289DB9D4797C1510","SSH-5837",84,34),("9AC353862476ACCDE","KEV-4961",85,35),("A0C5CA82B47386CE9","YHK-0616",86,36),("9D78CBAFE661CDFBC","YEZ-7884",87,37),("A0D9676C42D873488","HNP-5467",88,38),("616946A864FDFF10A","HFI-5552",89,39),("38929E8F2D0739A70","LJI-5739",90,40),("7F69BB5D21156A73C","SIW-2484",91,41),("21675986C95C8142D","PRS-2212",92,42),("DD9EB6EFD31B82F7F","POA-0094",93,43),("1279E5A40D9A584A3","VSM-0853",94,44),("18277F2C525BEB95F","QLJ-9576",95,45),("61DADEB5F1551E844","PUN-0576",96,46),("C236758CC406E4ACA","EUX-7013",97,47),("4B9F90DF89C03B39F","JZO-4502",98,48),("0467275B582BDC182","ILM-1949",99,49),("E1C74B4A2B4A160C3","QQI-4832",100,50);
INSERT INTO telefones (tipo,numero,proprietarios_id)
VALUES ("F","(84) 974449242",34),("F","(38) 985738667",17),("C","(54) 969614751",87),("C","(84) 969879249",31),("C","(79) 926173700",8),("F","(39) 978642221",29),("F","(16) 916303935",54),("F","(22) 913063831",25),("C","(89) 926906263",63),("C","(41) 990576665",63),("C","(24) 919437177",92),("F","(92) 969368921",85),("F","(76) 949522961",52),("F","(74) 991418073",62),("C","(70) 983873211",24),("C","(83) 933812949",25),("C","(61) 992900068",24),("F","(54) 916495496",97),("F","(37) 912016488",93),("F","(21) 915274597",51),("C","(14) 981603911",27),("C","(85) 925010978",29),("C","(64) 931596753",67),("F","(12) 968381823",70),("F","(99) 920984115",91),("F","(80) 942345872",9),("C","(32) 937916861",26),("C","(23) 929649180",63),("C","(86) 983921357",36),("F","(78) 968557875",70);
INSERT INTO carros_cores (carros_id,cores_id)
VALUES (34,4),(23,10),(5,4),(88,4),(51,11),(71,8),(13,7),(68,11),(71,5),(34,7),(15,4),(44,3),(26,11),(33,6),(56,2),(44,2),(77,5),(75,7),(23,3),(69,8),(82,2),(66,11),(14,10),(66,6),(46,5),(64,4),(92,1),(20,10),(33,8),(31,4),(80,9),(55,10),(17,3),(72,4),(69,4),(86,9),(97,10),(21,3),(8,11),(49,4),(41,2),(29,2),(70,6),(39,8),(39,6),(20,5),(12,8),(81,10),(14,4),(30,6),(65,7),(58,7),(97,5),(35,8),(75,6),(3,11),(55,6),(32,1),(41,10),(16,9),(9,4),(37,8),(80,7),(96,1),(47,11),(10,4),(6,3),(29,1),(45,9),(48,8),(45,11),(55,11),(18,2),(30,8),(17,7),(23,4),(87,5),(64,7),(93,2),(94,4),(52,6),(15,6),(100,5),(49,2),(98,7),(62,2),(61,7),(92,6),(13,8),(42,1),(73,4),(36,8),(10,1),(87,1),(90,8),(2,6),(86,3),(10,10),(49,5),(95,4);
/*sandbox*/
DROP DATABASE IF EXISTS sandbox;
CREATE DATABASE sandbox;
USE sandbox;
/*TABLES*/
CREATE TABLE clientes (
id INT PRIMARY KEY AUTO_INCREMENT,
nome VARCHAR(40) NOT NULL,
sexo CHAR(1) NOT NULL,
cpf CHAR(11) UNIQUE NOT NULL,
cidade VARCHAR(40) NOT NULL,
estado CHAR(2) NOT NULL
);
CREATE TABLE carros (
id INT PRIMARY KEY AUTO_INCREMENT,
modelo VARCHAR(40) NOT NULL,
marca VARCHAR(40) NOT NULL,
placa CHAR(8) UNIQUE NOT NULL,
clientes_id INT NOT NULL
);
/*INSERTS*/
INSERT INTO clientes (nome,sexo,cpf,cidade,estado)
VALUES ('Pedro','M','12304760987','São Paulo','SP'),('Maria','F','82319422364','Rio de Janeiro','RJ'),('Laura','F','46387115276','Curitiba','PR'),('Marcos','M','43769265834','Natal','RN'),('Lucas','M','09384283245','Santos','SP');
INSERT INTO carros (modelo,marca,placa,clientes_id)
VALUES ('Corsa 1.0','Chevrolet','FRE-0293','3'),
('Gol 2.0','Volkswagen','XNE-9824','2');
/*COPIE TUDO!*/
|
# Write your MySQL query statement below
SELECT name, population, area FROM World
WHERE area > 3000000 OR population > 25000000; |
<gh_stars>1-10
-- create tables
create table NODO4_CFG.INTERMEDIARI_PA
(
OBJ_ID numeric not null IDENTITY,
ID_INTERMEDIARIO_PA varchar(35) not null,
ENABLED boolean not null,
CODICE_INTERMEDIARIO varchar(255),
FAULT_BEAN_ESTESO boolean not null default 'N',
constraint PK_INTERMEDIARI_PA
primary key (OBJ_ID),
constraint UQ_ID_INTERMEDIARIO_PA
unique (ID_INTERMEDIARIO_PA)
);
create table NODO4_CFG.QUADRATURE_SCHED
(
OBJ_ID numeric not null IDENTITY,
ID_SOGGETTO varchar(35),
MODALITA varchar(35),
TIPO_QUAD varchar(35),
DAYS_OF_THE_WEEK_CODE varchar(7),
JOB_START_DATE timestamp(6),
ENABLED char,
ON_CLICK char,
JOB_END_HOUR timestamp(6),
JOB_START_HOUR timestamp(6),
TIMESTAMP_LAST_ACTION timestamp(6),
TIMESTAMP_END timestamp(6),
TIMESTAMP_BEGIN timestamp(6),
QUAD_LAST_DATE timestamp(6),
TYPE_INIZIO_GIORNATA boolean not null default 'N',
constraint PK_QUADRATURE_SCHED
primary key (OBJ_ID)
);
create table NODO4_CFG.PA
(
OBJ_ID numeric not null IDENTITY,
ID_DOMINIO varchar(35) not null,
ENABLED boolean not null,
DESCRIZIONE varchar(70),
RAGIONE_SOCIALE varchar(70),
FK_INT_QUADRATURE numeric,
FLAG_REPO_COMMISSIONE_CARICO_PA boolean not null,
EMAIL_REPO_COMMISSIONE_CARICO_PA varchar(255),
INDIRIZZO_DOMICILIO_FISCALE varchar(255),
CAP_DOMICILIO_FISCALE numeric(5),
SIGLA_PROVINCIA_DOMICILIO_FISCALE varchar(2),
COMUNE_DOMICILIO_FISCALE varchar(255),
DENOMINAZIONE_DOMICILIO_FISCALE varchar(255),
PAGAMENTO_PRESSO_PSP boolean not null,
RENDICONTAZIONE_FTP boolean not null,
RENDICONTAZIONE_ZIP boolean not null,
REVOCA_PAGAMENTO numeric not null default 0,
constraint PK_PA
primary key (OBJ_ID),
constraint UQ_ID_DOMINIO
unique (ID_DOMINIO),
constraint FK_PA_INT_QUADRATURE
foreign key (FK_INT_QUADRATURE)
references NODO4_CFG.INTERMEDIARI_PA
);
create table NODO4_CFG.STAZIONI
(
OBJ_ID numeric not null IDENTITY,
ID_STAZIONE varchar(35) not null,
ENABLED boolean not null,
IP varchar(100),
NEW_PASSWORD varchar(15),
PASSWORD varchar(15),
PORTA numeric not null,
PROTOCOLLO varchar(255) not null,
REDIRECT_IP varchar(100),
REDIRECT_PATH varchar(100),
REDIRECT_PORTA numeric,
REDIRECT_QUERY_STRING varchar(255),
SERVIZIO varchar(100),
RT_ENABLED boolean not null,
SERVIZIO_POF varchar(100),
FK_INTERMEDIARIO_PA numeric not null,
REDIRECT_PROTOCOLLO varchar(35),
PROTOCOLLO_4MOD varchar(255),
IP_4MOD varchar(100),
PORTA_4MOD numeric,
SERVIZIO_4MOD varchar(255),
PROXY_ENABLED boolean,
PROXY_HOST varchar(100),
PROXY_PORT numeric,
PROXY_USERNAME varchar(15),
PROXY_PASSWORD varchar(15),
PROTOCOLLO_AVV varchar(255),
IP_AVV varchar(100),
PORTA_AVV numeric,
SERVIZIO_AVV varchar(255),
TIMEOUT numeric(19) not null default 120,
NUM_THREAD numeric not null,
TIMEOUT_A numeric(19) not null,
TIMEOUT_B numeric(19) not null,
TIMEOUT_C numeric(19) not null,
FLAG_ONLINE char not null default 'Y',
VERSIONE numeric not null default 1.0,
SERVIZIO_NMP varchar(255),
constraint PK_STAZIONI
primary key (OBJ_ID),
constraint UQ_ID_STAZIONE
unique (ID_STAZIONE),
constraint FK_STAZIONI_INTERMEDIARI_PA
foreign key (FK_INTERMEDIARIO_PA)
references NODO4_CFG.INTERMEDIARI_PA
);
create table NODO4_CFG.PA_STAZIONE_PA
(
OBJ_ID numeric not null IDENTITY,
PROGRESSIVO numeric,
FK_PA numeric not null,
FK_STAZIONE numeric not null,
AUX_DIGIT numeric,
SEGREGAZIONE numeric,
QUARTO_MODELLO boolean not null,
STAZIONE_NODO boolean not null default 'N',
STAZIONE_AVV boolean not null default 'N',
BROADCAST char not null default 'N',
constraint PK_PA_STAZIONE_PA
primary key (OBJ_ID),
constraint FK_PA_STAZIONE_PA_PA
foreign key (FK_PA)
references NODO4_CFG.PA,
constraint FK_PA_STAZIONE_PA_STAZIONE
foreign key (FK_STAZIONE)
references NODO4_CFG.STAZIONI
);
create table NODO4_CFG.CODIFICHE
(
OBJ_ID numeric not null IDENTITY,
ID_CODIFICA varchar(35) not null,
DESCRIZIONE varchar(35),
constraint PK_CODIFICHE
primary key (OBJ_ID),
constraint UQ_ID_CODIFICA
unique (ID_CODIFICA)
);
create table NODO4_CFG.CODIFICHE_PA
(
OBJ_ID numeric not null IDENTITY,
CODICE_PA varchar(35) not null,
FK_CODIFICA numeric not null,
FK_PA numeric not null,
constraint PK_CODIFICHE_PA
primary key (OBJ_ID),
constraint FK_CODIFICHE
foreign key (FK_CODIFICA)
references NODO4_CFG.CODIFICHE,
constraint FK_CODIFICHE_PA_PA
foreign key (FK_PA)
references NODO4_CFG.PA
);
create table NODO4_CFG.BINARY_FILE
(
OBJ_ID numeric not null IDENTITY,
FILE_CONTENT blob not null,
FILE_HASH blob not null,
FILE_SIZE numeric not null,
SIGNATURE_TYPE varchar(30),
XML_FILE_CONTENT clob,
constraint PK_BINARY_FILE
primary key (OBJ_ID)
);
create table NODO4_CFG.INFORMATIVE_CONTO_ACCREDITO_MASTER
(
OBJ_ID numeric not null IDENTITY,
DATA_INIZIO_VALIDITA timestamp(6),
DATA_PUBBLICAZIONE timestamp(6),
ID_INFORMATIVA_CONTO_ACCREDITO_PA varchar(35) not null,
RAGIONE_SOCIALE varchar(70),
FK_PA numeric,
FK_BINARY_FILE numeric,
VERSIONE varchar(35),
constraint PK_INFORMATIVE_CONTO_ACCREDITO_MASTER
primary key (OBJ_ID),
constraint FK_INFORMATIVE_CONTO_ACCREDITO_MASTER_PA
foreign key (FK_PA)
references NODO4_CFG.PA,
constraint FK_BINARY_FILE
foreign key (FK_BINARY_FILE)
references NODO4_CFG.BINARY_FILE,
constraint UQ_INFORMATIVA_CONTO_ACCREDITO
unique (FK_PA, ID_INFORMATIVA_CONTO_ACCREDITO_PA)
);
create table NODO4_CFG.INFORMATIVE_CONTO_ACCREDITO_DETAIL
(
OBJ_ID numeric not null IDENTITY,
IBAN_ACCREDITO varchar(35),
FK_INFORMATIVA_CONTO_ACCREDITO_MASTER numeric,
ID_MERCHANT varchar(15),
CHIAVE_AVVIO varchar(255),
CHIAVE_ESITO varchar(255),
ID_BANCA_SELLER varchar(50),
constraint PK_INFORMATIVE_CONTO_ACCREDITO_DETAIL
primary key (OBJ_ID),
constraint FK_INFORMATIVA_CONTO_ACCREDITO_MASTER
foreign key (FK_INFORMATIVA_CONTO_ACCREDITO_MASTER)
references NODO4_CFG.INFORMATIVE_CONTO_ACCREDITO_MASTER
);
create view NODO4_CFG.IBAN_VALIDI_PER_PA
as
select MAS.FK_PA,
DET.IBAN_ACCREDITO,
MAS.DATA_INIZIO_VALIDITA,
MAS.DATA_PUBBLICAZIONE,
MAS.RAGIONE_SOCIALE,
nullif(DET.ID_MERCHANT, '') ID_MERCHANT,
nullif(DET.ID_BANCA_SELLER, '') ID_BANCA_SELLER,
nullif(DET.CHIAVE_AVVIO, '') CHIAVE_AVVIO,
nullif(DET.CHIAVE_ESITO, '') CHIAVE_ESITO,
DET.OBJ_ID OBJ_ID,
MAS.OBJ_ID MASTER_OBJ
from NODO4_CFG.INFORMATIVE_CONTO_ACCREDITO_MASTER MAS
join (
select max(OBJ_ID) OBJ_ID
from NODO4_CFG.INFORMATIVE_CONTO_ACCREDITO_MASTER
where DATA_INIZIO_VALIDITA <= current_timestamp
group by FK_PA
having max(DATA_INIZIO_VALIDITA) <= current_timestamp
) RIGHT_ID_BY_PK
on MAS.OBJ_ID = RIGHT_ID_BY_PK.OBJ_ID
join NODO4_CFG.INFORMATIVE_CONTO_ACCREDITO_DETAIL DET
on MAS.OBJ_ID = DET.FK_INFORMATIVA_CONTO_ACCREDITO_MASTER;
create table NODO4_CFG.INFORMATIVE_PA_MASTER
(
OBJ_ID numeric not null IDENTITY,
ID_INFORMATIVA_PA varchar(35) not null,
DATA_INIZIO_VALIDITA timestamp(6),
DATA_PUBBLICAZIONE timestamp(6),
FK_PA numeric not null,
FK_BINARY_FILE numeric,
VERSIONE varchar(35),
PAGAMENTI_PRESSO_PSP numeric,
constraint PK_INFORMATIVE_PA_MASTER
primary key (OBJ_ID),
constraint FK_INFORMATIVE_PA_MASTER_PA
foreign key (FK_PA)
references NODO4_CFG.PA,
constraint FK_INFORMATIVE_PA_MASTER_BINARY_FILE
foreign key (FK_BINARY_FILE)
references NODO4_CFG.BINARY_FILE,
constraint UQ_INFORMATIVA_PA
unique (FK_PA, ID_INFORMATIVA_PA)
);
create table NODO4_CFG.INTERMEDIARI_PSP
(
OBJ_ID numeric not null identity,
ID_INTERMEDIARIO_PSP varchar(35) not null,
ENABLED char(1) not null,
CODICE_INTERMEDIARIO varchar(255),
INTERMEDIARIO_AVV char(1) not null default 'N',
INTERMEDIARIO_NODO char(1) not null default 'N',
FAULT_BEAN_ESTESO char(1) not null default 'N',
constraint PK_INTERMEDIARI_PSP
primary key (OBJ_ID),
constraint UQ_ID_INTERMEDIARIO_PSP
unique (ID_INTERMEDIARIO_PSP)
);
create table NODO4_CFG.PSP
(
OBJ_ID numeric not null identity,
ID_PSP varchar(35) not null,
ENABLED char(1) not null,
ABI varchar(5),
BIC varchar(11),
DESCRIZIONE varchar(70),
RAGIONE_SOCIALE varchar(70),
FK_INT_QUADRATURE numeric(19),
STORNO_PAGAMENTO numeric(19) not null default '0',
FLAG_REPO_COMMISSIONE_CARICO_PA char(1),
EMAIL_REPO_COMMISSIONE_CARICO_PA varchar(255),
CODICE_MYBANK varchar(35),
MARCA_BOLLO_DIGITALE numeric not null,
AGID_PSP char(1) not null,
PSP_NODO char(1) not null default 'N',
PSP_AVV char(1) not null default 'N',
CODICE_FISCALE varchar(16),
VAT_NUMBER varchar(20),
constraint PK_PSP
primary key (OBJ_ID),
constraint UQ_ID_PSP
unique (ID_PSP),
constraint FK_PSP_INT_QUADRATURE
foreign key (FK_INT_QUADRATURE)
references NODO4_CFG.INTERMEDIARI_PSP
);
create table NODO4_CFG.WFESP_PLUGIN_CONF
(
OBJ_ID numeric not null identity,
ID_SERV_PLUGIN varchar(35) not null,
PROFILO_PAG_CONST_STRING varchar(150),
PROFILO_PAG_SOAP_RULE varchar(150),
PROFILO_PAG_RPT_XPATH varchar(150),
ID_BEAN varchar(255),
constraint PK_WFESP_PLUGIN_CONF
primary key (OBJ_ID),
constraint UQ_ID_SERV_PLUGIN
unique (ID_SERV_PLUGIN)
);
create table NODO4_CFG.CANALI_NODO
(
OBJ_ID numeric not null identity,
REDIRECT_IP varchar(100),
REDIRECT_PATH varchar(100),
REDIRECT_PORTA numeric,
REDIRECT_QUERY_STRING varchar(255),
MODELLO_PAGAMENTO varchar(255) not null,
MULTI_PAYMENT char(1) not null,
RAGIONE_SOCIALE varchar(35),
RPT_RT_COMPLIANT char(1) not null,
WSAPI varchar(15),
REDIRECT_PROTOCOLLO varchar(35),
ID_SERV_PLUGIN varchar(35),
ID_CLUSTER varchar(255),
ID_FESP_INSTANCE varchar(275),
LENTO char(1) not null,
RT_PUSH char(1) not null,
AGID_CHANNEL char(1) not null,
ON_US char(1) not null,
CARRELLO_CARTE char(1) not null,
RECOVERY char(1) not null default 'N',
MARCA_BOLLO_DIGITALE char not null,
FLAG_IO char default 'N',
constraint PK_CANALI_NODO
primary key (OBJ_ID),
constraint FK_CANALI_SERV_PLUGIN
foreign key (ID_SERV_PLUGIN)
references NODO4_CFG.WFESP_PLUGIN_CONF (ID_SERV_PLUGIN)
);
create table NODO4_CFG.CANALI (
OBJ_ID numeric not null identity,
ID_CANALE varchar(35) not null,
ENABLED char(1) not null,
IP varchar(100),
NEW_PASSWORD varchar(15),
PASSWORD varchar(15),
PORTA numeric not null,
PROTOCOLLO varchar(255) not null,
SERVIZIO varchar(100),
DESCRIZIONE varchar(70),
FK_INTERMEDIARIO_PSP numeric not null,
PROXY_ENABLED char(1) not null,
PROXY_HOST varchar(100),
PROXY_PASSWORD varchar(15),
PROXY_PORT numeric,
PROXY_USERNAME varchar(15),
CANALE_NODO char(1) not null default 'N',
CANALE_AVV char(1) not null default 'N',
FK_CANALI_NODO numeric,
TIMEOUT numeric not null default 120,
NUM_THREAD numeric not null,
USE_NEW_FAULT_CODE char not null,
TIMEOUT_A numeric(19) not null,
TIMEOUT_B numeric(19) not null,
TIMEOUT_C numeric(19) not null,
SERVIZIO_NMP varchar(255),
constraint PK_CANALI
primary key (OBJ_ID),
constraint UQ_ID_CANALE
unique (ID_CANALE),
constraint FK_CANALI_INTERMEDIARI_PSP
foreign key (FK_INTERMEDIARIO_PSP)
references NODO4_CFG.INTERMEDIARI_PSP,
constraint FK_CANALI_NODO
foreign key (FK_CANALI_NODO)
references NODO4_CFG.CANALI_NODO
);
create table NODO4_CFG.ELENCO_SERVIZI (
OBJ_ID numeric not null,
PSP_ID varchar(35),
FLUSSO_ID varchar(35),
PSP_RAG_SOC varchar(255),
PSP_FLAG_STORNO char,
PSP_FLAG_BOLLO char,
INTM_ID varchar(35),
CANALE_ID varchar(35),
NOME_SERVIZIO varchar(35),
CANALE_MOD_PAG numeric,
TIPO_VERS_COD varchar(255),
CODICE_LINGUA char(2),
INF_COND_EC_MAX varchar(35),
INF_DESC_SERV varchar(511),
INF_DISP_SERV varchar(511),
INF_URL_CANALE varchar(255),
IMPORTO_MINIMO float,
IMPORTO_MASSIMO float,
COSTO_FISSO float,
TIMESTAMP_INS timestamp(6),
DATA_VALIDITA timestamp(6),
LOGO_PSP blob,
TAGS varchar(135),
LOGO_SERVIZIO blob,
CANALE_APP char,
ON_US char,
CARRELLO_CARTE char,
CODICE_ABI varchar(5),
CODICE_MYBANK varchar(35),
CODICE_CONVENZIONE varchar(35),
FLAG_IO char,
constraint PK_ELENCO_SERVIZI
primary key (OBJ_ID)
);
create table NODO4_CFG.CDI_MASTER (
OBJ_ID numeric not null,
ID_INFORMATIVA_PSP varchar(35) not null,
DATA_INIZIO_VALIDITA timestamp(6),
DATA_PUBBLICAZIONE timestamp(6),
LOGO_PSP blob,
URL_INFORMAZIONI_PSP varchar(255),
MARCA_BOLLO_DIGITALE numeric not null,
STORNO_PAGAMENTO numeric not null,
FK_PSP numeric not null,
FK_BINARY_FILE numeric not null,
VERSIONE varchar(35),
constraint PK_CDI_MASTER
primary key (OBJ_ID),
constraint FK_CDI_MASTER_TO_PSP
foreign key (FK_PSP)
references NODO4_CFG.PSP,
constraint FK_CDI_MASTER_TO_BINARY_FILE
foreign key (FK_BINARY_FILE)
references NODO4_CFG.BINARY_FILE,
constraint UQ_INFORMATIVA_CDI
unique (FK_PSP, ID_INFORMATIVA_PSP)
);
create table NODO4_CFG.TIPI_VERSAMENTO (
OBJ_ID numeric not null,
DESCRIZIONE varchar(35),
TIPO_VERSAMENTO varchar(15) not null,
constraint PK_TIPI_VERSAMENTO
primary key (OBJ_ID),
constraint UQ_TIPO_VERSAMENTO
unique (TIPO_VERSAMENTO)
);
create table NODO4_CFG.CANALE_TIPO_VERSAMENTO (
OBJ_ID numeric not null identity,
FK_CANALE numeric not null,
FK_TIPO_VERSAMENTO numeric not null,
constraint PK_CANALE_TIPO_VERSAMENTOE
primary key (OBJ_ID),
constraint FK_CANALE_TIPO_VERSAMENTO_CANALI
foreign key (FK_CANALE)
references NODO4_CFG.CANALI,
constraint FK_CANALE_TIPO_VERSAMENTO_TIPO_VERSAMENTO
foreign key (FK_TIPO_VERSAMENTO)
references NODO4_CFG.TIPI_VERSAMENTO
);
create table NODO4_CFG.PSP_CANALE_TIPO_VERSAMENTO (
OBJ_ID numeric not null identity,
FK_CANALE_TIPO_VERSAMENTO numeric not null,
FK_PSP numeric not null,
constraint PK_PSP_CANALE_TIPO_VERSAMENTO
primary key (OBJ_ID),
constraint FK_CANALE_TIPO_VERSAMENTO
foreign key (FK_CANALE_TIPO_VERSAMENTO)
references NODO4_CFG.CANALE_TIPO_VERSAMENTO,
constraint FK_PSP_CANALE_TIPO_VERSAMENTO_PSP
foreign key (FK_PSP)
references NODO4_CFG.PSP
);
|
USE [${sqlserver.db}]
GO
CREATE USER [${sqlserver.user}] FOR LOGIN [${sqlserver.user}]
GO
ALTER USER [${sqlserver.user}] WITH default_schema=[${sqlserver.schema}]
GO
EXEC sp_addrolemember N'db_owner', N'${sqlserver.user}'
GO
|
CREATE FUNCTION istore_in_range(istore, int, int)
RETURNS boolean
AS 'istore', 'istore_in_range'
LANGUAGE C IMMUTABLE STRICT;
CREATE FUNCTION istore_less_than(istore, int)
RETURNS boolean
AS 'istore', 'istore_less_than'
LANGUAGE C IMMUTABLE STRICT;
CREATE FUNCTION istore_less_than_or_equal(istore, int)
RETURNS boolean
AS 'istore', 'istore_less_than_or_equal'
LANGUAGE C IMMUTABLE STRICT;
CREATE FUNCTION istore_greater_than(istore, int)
RETURNS boolean
AS 'istore', 'istore_greater_than'
LANGUAGE C IMMUTABLE STRICT;
CREATE FUNCTION istore_greater_than_or_equal(istore, int)
RETURNS boolean
AS 'istore', 'istore_greater_than_or_equal'
LANGUAGE C IMMUTABLE STRICT;
CREATE FUNCTION istore_floor(istore, int)
RETURNS istore
AS 'istore', 'istore_floor'
LANGUAGE C IMMUTABLE STRICT;
CREATE FUNCTION istore_ceiling(istore, int)
RETURNS istore
AS 'istore', 'istore_ceiling'
LANGUAGE C IMMUTABLE STRICT;
CREATE FUNCTION istore_in_range(bigistore, bigint, bigint)
RETURNS boolean
AS 'istore', 'bigistore_in_range'
LANGUAGE C IMMUTABLE STRICT;
CREATE FUNCTION istore_less_than(bigistore, bigint)
RETURNS boolean
AS 'istore', 'bigistore_less_than'
LANGUAGE C IMMUTABLE STRICT;
CREATE FUNCTION istore_less_than_or_equal(bigistore, bigint)
RETURNS boolean
AS 'istore', 'bigistore_less_than_or_equal'
LANGUAGE C IMMUTABLE STRICT;
CREATE FUNCTION istore_greater_than(bigistore, bigint)
RETURNS boolean
AS 'istore', 'bigistore_greater_than'
LANGUAGE C IMMUTABLE STRICT;
CREATE FUNCTION istore_greater_than_or_equal(bigistore, bigint)
RETURNS boolean
AS 'istore', 'bigistore_greater_than_or_equal'
LANGUAGE C IMMUTABLE STRICT;
CREATE FUNCTION istore_floor(bigistore, bigint)
RETURNS bigistore
AS 'istore', 'bigistore_floor'
LANGUAGE C IMMUTABLE STRICT;
CREATE FUNCTION istore_ceiling(bigistore, bigint)
RETURNS bigistore
AS 'istore', 'bigistore_ceiling'
LANGUAGE C IMMUTABLE STRICT;
|
-- file:date.sql ln:149 expect:true
SELECT date '1999.008'
|
USE employee_db;
INSERT INTO department (name)
VALUES("Engineering"), ("Sales"), ("Finance"), ("Legal");
INSERT INTO role (title, salary, department_id)
VALUES("Engineering Lead", 150000, 1), ("Software Engineer", 100000, 1), ("Sales Lead", 75000, 2), ("Salesperson", 50000, 2), ("Lead Accountant", 100000, 3), ("Accountant", 75000, 3), ("Legal Partner", 200000, 4), ("Legal", 125000, 4);
INSERT INTO employee (first_name, last_name, role_id, manager_id)
VALUES("John", "Doe", 2, 3), ("Mike", "Chan", 2, 1), ("Ashley", "Rodriguez", 1, NULL), ("Kevin", "Tupnik", 1, 3), ("Malia", "Brown", 3, NULL), ("Sarah", "Lourd", 4, NULL), ("Tom", "Allen", 4, 6); |
call log('view_medgen_hpo.sql', 'begin');
-- ################################################################
desc medgen_hpo;
-- +---------------+--------------+------+-----+---------+-------+
-- | Field | Type | Null | Key | Default | Extra |
-- +---------------+--------------+------+-----+---------+-------+
-- | CUI | char(8) | NO | MUL | NULL | |
-- | SDUI | varchar(100) | YES | | NULL | |
-- | HpoStr | text | NO | | NULL | |
-- | MedGenStr | text | NO | | NULL | |
-- | MedGenStr_SAB | varchar(20) | NO | | NULL | |
-- | STY | varchar(50) | NO | MUL | NULL | |
-- +---------------+--------------+------+-----+---------+-------+
call log('view_medgen_hpo', 'medgen_hpo concepts');
-- ################################################################
drop table if exists view_medgen_hpo;
CREATE TABLE view_medgen_hpo
SELECT
MedGenStr_SAB as SourceVocab,
STY as SemanticType,
CUI as ConceptID,
MedGenStr as ConceptName,
HpoStr as PhenotypeName,
SDUI as HPO_ID
FROM medgen_hpo;
call utf8_unicode('view_medgen_hpo');
call create_index('view_medgen_hpo', 'SemanticType');
call create_index('view_medgen_hpo', 'SourceVocab');
call create_index('view_medgen_hpo', 'ConceptID');
call create_index('view_medgen_hpo', 'HPO_ID');
-- ################################################################
call log('view_medgen_hpo.sql', 'done');
desc medgen_hpo_omim;
-- +---------------+-------------+------+-----+---------+-------+
-- | Field | Type | Null | Key | Default | Extra |
-- +---------------+-------------+------+-----+---------+-------+
-- | OMIM_CUI | char(8) | NO | MUL | NULL | |
-- | MIM_number | varchar(20) | YES | MUL | NULL | |
-- | OMIM_name | text | YES | | NULL | |
-- | relationship | varchar(50) | YES | MUL | NULL | |
-- | HPO_CUI | char(8) | NO | MUL | NULL | |
-- | HPO_ID | varchar(20) | YES | MUL | NULL | |
-- | HPO_name | text | YES | | NULL | |
-- | MedGen_name | text | YES | | NULL | |
-- | MedGen_source | varchar(20) | YES | MUL | NULL | |
-- | STY | varchar(50) | NO | MUL | NULL | |
-- +---------------+-------------+------+-----+---------+-------+
-- begin
call log('view_medgen_hpo_omim', 'refresh');
-- ################################################################
drop table if exists view_medgen_hpo_omim;
CREATE TABLE view_medgen_hpo_omim
SELECT distinct
OMIM_STY.STY as OMIM_SemanticType,
mapping.OMIM_CUI as OMIM_ConceptID,
mapping.MIM_number as OMIM_ID,
mapping.OMIM_name as OMIM_Name,
mapping.relationship as Relationship,
HPO_STY.STY as HPO_SemanticType,
mapping.HPO_CUI as HPO_ConceptID,
mapping.HPO_ID as HPO_ID,
mapping.HPO_name as HPO_Name,
mapping.MedGen_Source as SourceVocab,
mapping.STY as SemanticType,
mapping.MedGen_Name as Name
FROM
medgen_hpo_omim as mapping,
MGSTY as OMIM_STY,
MGSTY as HPO_STY
where
mapping.OMIM_CUI = OMIM_STY.CUI and
mapping.HPO_CUI = HPO_STY.CUI ;
call utf8_unicode('view_medgen_hpo_omim');
call create_index('view_medgen_hpo_omim','SemanticType');
call create_index('view_medgen_hpo_omim','SourceVocab');
call create_index('view_medgen_hpo_omim','HPO_ConceptID');
call create_index('view_medgen_hpo_omim','OMIM_ConceptID');
call create_index('view_medgen_hpo_omim','OMIM_ID');
call create_index('view_medgen_hpo_omim','HPO_ID');
alter table view_medgen_hpo_omim add column OMIM_SemanticType varchar(50) not null;
alter table view_medgen_hpo_omim add column HPO_SemanticType varchar(50) not null;
update view_medgen_hpo_omim as V, MGSTY as sem
set V.OMIM_SemanticType = sem.STY
where V.OMIM_ConceptID = sem.CUI;
update view_medgen_hpo_omim as V, MGSTY as sem
set V.HPO_SemanticType = sem.STY
where V.HPO_ConceptID = sem.CUI;
call log('view_medgen_hpo.sql', 'done');
-- ################################################################
-- end
-- bgein
call log('view_mode_of_inheritance', 'Mode Of Inheritance (HPO SourceVocab)');
-- ################################################################
drop table if exists view_mode_of_inheritance;
create table view_mode_of_inheritance
select DISTINCT
OMIM_SemanticType as SemanticType,
SourceVocab as SourceVocab,
OMIM_ConceptID as ConceptID,
HPO_Name as Inheritance
from view_medgen_hpo_omim
where relationship = 'inheritance_type_of';
alter table view_mode_of_inheritance ','ConceptID) ;
alter table view_mode_of_inheritance add column Name varchar(1000) default null;
update
view_mode_of_inheritance as Inherit,
view_concept_preferred as Term
set Inherit.Name = Term.Name
where Inherit.ConceptID = Term.ConceptID;
-- ################################################################
-- end
|
<reponame>ynsingh/brihCI
-- phpMyAdmin SQL Dump
-- version 4.5.2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Apr 21, 2017 at 05:41 PM
-- Server version: 5.6.27
-- PHP Version: 5.6.15
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `olas`
--
-- --------------------------------------------------------
--
-- Table structure for table `city`
--
CREATE TABLE `city` (
`city_id` int(11) NOT NULL,
`city_name` varchar(255) NOT NULL,
`city_code` varchar(255) NOT NULL,
`city_short` varchar(255) NOT NULL,
`city_desc` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `country`
--
CREATE TABLE `country` (
`contry_id` int(11) NOT NULL,
`county_name` varchar(255) DEFAULT NULL,
`country_code` varchar(255) DEFAULT NULL,
`country_short` varchar(255) DEFAULT NULL,
`country_desc` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Dumping data for table `org_profile`
--
INSERT INTO `org_profile` (`org_id`, `org_code`, `org_name`, `org_nickname`, `org_type`, `org_tagline`, `org_address1`, `org_address2`, `org_city`, `org_district`, `org_state`, `org_countrycode`, `org_pincode`, `org_phone`, `org_fax`, `org_email`, `org_web`, `org_institutedomain`, `org_tanno`, `org_logo`, `org_affiliation`, `org_status`, `org_reg_date`, `org_close_date`, `org_adminfn`, `org_adminln`, `org_admindesig`, `creatorid`, `create_date`, `modifierid`, `modify_date`) VALUES
(1, 'CU001', 'Indira Gandhi National Tribal University', 'IGNTU', 'Central Govt', '', 'Lal Pur, Amarkantak', '', '', '', 'Madhya Pradesh', '91', '484887', '07629 269 701', '07629 269 701', '<EMAIL>', 'www.igntu.ac.in', 'igntu.ac.in', '', '', 'MHRD', 'Active', 'July 2008', '', '', '', '', '1', '2017-04-21', '', '');
-- --------------------------------------------------------
--
-- Table structure for table `state`
--
CREATE TABLE `state` (
`state_id` int(11) NOT NULL,
`state_name` varchar(255) NOT NULL,
`state_code` varchar(255) NOT NULL,
`state_short` varchar(255) NOT NULL,
`state_desc` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `student_fees`
--
CREATE TABLE `student_fees` (
`sfee_id` int(11) NOT NULL,
`sfee_smid` int(11) NOT NULL,
`sfee_spid` int(11) NOT NULL,
`sfee_feeamount` varchar(255) NOT NULL,
`sfee_duedate` varchar(255) NOT NULL,
`sfee_paymentmethod` varchar(255) NOT NULL,
`sfee_depositdate` varchar(255) NOT NULL,
`sfee_referenceno` varchar(255) NOT NULL,
`sfee_paymentgateway` varchar(255) NOT NULL,
`sfee_paymentstatus` varchar(255) NOT NULL,
`sfee_feespaidstatus` varchar(255) NOT NULL,
`sfee_remarks` varchar(255) NOT NULL,
`sfee_ext1` varchar(255) NOT NULL,
`sfee_ext2` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `student_program`
--
CREATE TABLE `student_program` (
`sp_id` int(11) NOT NULL,
`sp_smid` int(11) NOT NULL,
`sp_sccode` varchar(255) DEFAULT NULL,
`sp_pcategory` varchar(255) DEFAULT NULL,
`sp_programid` varchar(255) DEFAULT NULL,
`sp_branch` varchar(255) DEFAULT NULL,
`sp_acadyear` varchar(255) DEFAULT NULL,
`sp_semester` varchar(255) DEFAULT NULL,
`sp_sub1` varchar(255) DEFAULT NULL,
`sp_sub2` varchar(255) DEFAULT NULL,
`sp_sub3` varchar(255) DEFAULT NULL,
`sp_sub4` varchar(255) DEFAULT NULL,
`sp_sub5` varchar(255) DEFAULT NULL,
`sp_sub6` varchar(255) DEFAULT NULL,
`sp_sub7` varchar(255) DEFAULT NULL,
`sp_sub8` varchar(255) DEFAULT NULL,
`sp_sub9` varchar(255) DEFAULT NULL,
`sp_sub10` varchar(255) DEFAULT NULL,
`sp_ext1` varchar(255) DEFAULT NULL,
`sp_ext2` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `city`
--
ALTER TABLE `city`
ADD PRIMARY KEY (`city_id`);
--
-- Indexes for table `country`
--
ALTER TABLE `country`
ADD PRIMARY KEY (`contry_id`);
--
-- Indexes for table `state`
--
ALTER TABLE `state`
ADD PRIMARY KEY (`state_id`);
--
-- Indexes for table `student_fees`
--
ALTER TABLE `student_fees`
ADD PRIMARY KEY (`sfee_id`),
ADD UNIQUE KEY `sfee_smid` (`sfee_smid`,`sfee_spid`);
--
-- Indexes for table `student_program`
--
ALTER TABLE `student_program`
ADD PRIMARY KEY (`sp_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `category`
--
ALTER TABLE `category`
MODIFY `cat_id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `city`
--
ALTER TABLE `city`
MODIFY `city_id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `country`
--
ALTER TABLE `country`
MODIFY `contry_id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `designation`
--
ALTER TABLE `designation`
MODIFY `desig_id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `email_setting`
--
ALTER TABLE `email_setting`
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `state`
--
ALTER TABLE `state`
MODIFY `state_id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `student_fees`
--
ALTER TABLE `student_fees`
MODIFY `sfee_id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `student_program`
--
ALTER TABLE `student_program`
MODIFY `sp_id` int(11) NOT NULL AUTO_INCREMENT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`user_id`, `email`, `name`, `password`) VALUES
(1, '<EMAIL>', '<NAME>', 'admin'),
(2, '<EMAIL>', '', 'siva');
|
<filename>example/settings/write.sql
GRANT INSERT, UPDATE, DELETE ON ALL TABLES IN SCHEMA eg TO @role
|
<reponame>DitaAjiPratama/muffin-coding-standards
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 `crud_vue_realtime`;
USE `crud_vue_realtime`;
CREATE TABLE `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` text NOT NULL,
`name` text NOT NULL,
`email` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
CREATE TABLE collection_sliders (
slider_id UUID NOT NULL,
collection_id UUID NOT NULL,
CONSTRAINT collection_sliders_pk PRIMARY KEY (collection_id, slider_id),
CONSTRAINT FK_collection FOREIGN KEY (collection_id) REFERENCES collection (id),
CONSTRAINT FK_slider FOREIGN KEY (slider_id) REFERENCES slider (id)
); |
<filename>db/helpdesk.sql<gh_stars>0
-- phpMyAdmin SQL Dump
-- version 4.8.0
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Waktu pembuatan: 02 Okt 2018 pada 12.32
-- Versi server: 10.1.28-MariaDB
-- Versi PHP: 7.2.4
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: `disnav`
--
-- --------------------------------------------------------
--
-- Struktur dari tabel `helpdesk`
--
CREATE TABLE `helpdesk` (
`laporan_id` int(20) NOT NULL,
`laporan_nama` varchar(50) DEFAULT NULL,
`laporan_instansi` varchar(50) DEFAULT NULL,
`laporan_inti` varchar(30) DEFAULT NULL,
`laporan_koordinat` varchar(100) DEFAULT NULL,
`laporan_keterangan` varchar(200) DEFAULT NULL,
`laporan_tanggal` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Indexes for dumped tables
--
--
-- Indeks untuk tabel `helpdesk`
--
ALTER TABLE `helpdesk`
ADD PRIMARY KEY (`laporan_id`);
--
-- AUTO_INCREMENT untuk tabel yang dibuang
--
--
-- AUTO_INCREMENT untuk tabel `helpdesk`
--
ALTER TABLE `helpdesk`
MODIFY `laporan_id` int(20) NOT NULL AUTO_INCREMENT;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
<reponame>laurelle17/CV<gh_stars>0
use //nom bd
create table profiles(
id int primary key auto_increment not null;
first_name varchar(48),
last_name varchar(40),
emails varchar(40),
phone varchar(40),
marital_status varchar(30),
profil_name varchar(40),
profil_image binary,
born_date date,
child int,
healt_status varchar,
born_at date
);
create table phones(
phone_number varchar(40),
is_mobile boolean,
is_telegramme boolean,
is_whatsapp boolean,
country_code varchar(40)
);
create table social_links(
social_network varchar(40),
profile_link varchar(40),
);
create table born_location(
) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.