Advertisement
Guest User

Friedsquad Sensitive data leak

a guest
Nov 26th, 2017
7,940
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 104.20 KB | None | 0 0
  1. $$$$$$$$\ $$$$$$$\ $$$$$$\ $$$$$$$$\ $$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ $$$$$$$$\ $$$$$$$$\ $$\ $$\
  2. $$ _____|$$ __$$\ \_$$ _|$$ _____|$$ __$$\ $$ __$$\ $$ __$$\ $$ __$$\ \_$$ _|$$ _____|\__$$ __|\$$\ $$ |
  3. $$ | $$ | $$ | $$ | $$ | $$ | $$ |$$ / \__|$$ / $$ |$$ / \__| $$ | $$ | $$ | \$$\ $$ /
  4. $$$$$\ $$$$$$$ | $$ | $$$$$\ $$ | $$ |\$$$$$$\ $$ | $$ |$$ | $$ | $$$$$\ $$ | \$$$$ /
  5. $$ __| $$ __$$< $$ | $$ __| $$ | $$ | \____$$\ $$ | $$ |$$ | $$ | $$ __| $$ | \$$ /
  6. $$ | $$ | $$ | $$ | $$ | $$ | $$ |$$\ $$ |$$ | $$ |$$ | $$\ $$ | $$ | $$ | $$ |
  7. $$ | $$ | $$ |$$$$$$\ $$$$$$$$\ $$$$$$$ |\$$$$$$ | $$$$$$ |\$$$$$$ |$$$$$$\ $$$$$$$$\ $$ | $$ |
  8. \__| \__| \__|\______|\________|\_______/ \______/ \______/ \______/ \______|\________| \__| \__|
  9.  
  10.  
  11. FRIIIIEEEDGAAAANG SQUAD
  12. ### DUMP FOUND ON www.utsc.utoronto.ca ###
  13.  
  14. -- MySQL dump 10.13 Distrib 5.5.44, for debian-linux-gnu (x86_64)
  15. --
  16. -- Host: localhost Database: bretsche
  17. -- ------------------------------------------------------
  18. -- Server version 5.5.44-0ubuntu0.12.04.1
  19.  
  20. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  21. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  22. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  23. /*!40101 SET NAMES utf8 */;
  24. /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
  25. /*!40103 SET TIME_ZONE='+00:00' */;
  26. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
  27. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  28. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  29. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
  30.  
  31. --
  32. -- Table structure for table `advisor`
  33. --
  34.  
  35. DROP TABLE IF EXISTS `advisor`;
  36. /*!40101 SET @saved_cs_client = @@character_set_client */;
  37. /*!40101 SET character_set_client = utf8 */;
  38. CREATE TABLE `advisor` (
  39. `s_id` varchar(5) NOT NULL DEFAULT '',
  40. `i_id` varchar(5) DEFAULT NULL,
  41. PRIMARY KEY (`s_id`)
  42. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  43. /*!40101 SET character_set_client = @saved_cs_client */;
  44.  
  45. --
  46. -- Dumping data for table `advisor`
  47. --
  48.  
  49. LOCK TABLES `advisor` WRITE;
  50. /*!40000 ALTER TABLE `advisor` DISABLE KEYS */;
  51. INSERT INTO `advisor` VALUES ('00128','45565'),('12345','10101'),('23121','76543'),('44553','22222'),('45678','22222'),('76543','45565'),('76653','98345'),('98765','98345'),('98988','76766');
  52. /*!40000 ALTER TABLE `advisor` ENABLE KEYS */;
  53. UNLOCK TABLES;
  54.  
  55. --
  56. -- Table structure for table `classroom`
  57. --
  58.  
  59. DROP TABLE IF EXISTS `classroom`;
  60. /*!40101 SET @saved_cs_client = @@character_set_client */;
  61. /*!40101 SET character_set_client = utf8 */;
  62. CREATE TABLE `classroom` (
  63. `building` varchar(15) NOT NULL DEFAULT '',
  64. `room_number` varchar(7) NOT NULL DEFAULT '',
  65. `capacity` decimal(4,0) DEFAULT NULL,
  66. PRIMARY KEY (`building`,`room_number`)
  67. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  68. /*!40101 SET character_set_client = @saved_cs_client */;
  69.  
  70. --
  71. -- Dumping data for table `classroom`
  72. --
  73.  
  74. LOCK TABLES `classroom` WRITE;
  75. /*!40000 ALTER TABLE `classroom` DISABLE KEYS */;
  76. INSERT INTO `classroom` VALUES ('Packard','101',500),('Painter','514',10),('Taylor','3128',70),('Watson','100',30),('Watson','120',50);
  77. /*!40000 ALTER TABLE `classroom` ENABLE KEYS */;
  78. UNLOCK TABLES;
  79.  
  80. --
  81. -- Table structure for table `course`
  82. --
  83.  
  84. DROP TABLE IF EXISTS `course`;
  85. /*!40101 SET @saved_cs_client = @@character_set_client */;
  86. /*!40101 SET character_set_client = utf8 */;
  87. CREATE TABLE `course` (
  88. `course_id` varchar(8) NOT NULL DEFAULT '',
  89. `title` varchar(50) DEFAULT NULL,
  90. `dept_name` varchar(20) DEFAULT NULL,
  91. `credits` decimal(2,0) DEFAULT NULL,
  92. PRIMARY KEY (`course_id`)
  93. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  94. /*!40101 SET character_set_client = @saved_cs_client */;
  95.  
  96. --
  97. -- Dumping data for table `course`
  98. --
  99.  
  100. LOCK TABLES `course` WRITE;
  101. /*!40000 ALTER TABLE `course` DISABLE KEYS */;
  102. INSERT INTO `course` VALUES ('BIO-101','Intro. to Biology','Biology',4),('BIO-301','Genetics','Biology',4),('BIO-399','Computational Biology','Biology',3),('CS-101','Intro. to Computer Science','Comp. Sci.',4),('CS-190','Game Design','Comp. Sci.',4),('CS-315','Robotics','Comp. Sci.',3),('CS-319','Image Processing','Comp. Sci.',3),('CS-347','Database System Concepts','Comp. Sci.',3),('EE-181','Intro. to Digital Systems','Elec. Eng.',3),('FIN-201','Investment Banking','Finance',3),('HIS-351','World History','History',3),('MU-199','Music Video Production','Music',3),('PHY-101','Physical Principles','Physics',4);
  103. /*!40000 ALTER TABLE `course` ENABLE KEYS */;
  104. UNLOCK TABLES;
  105.  
  106. --
  107. -- Table structure for table `department`
  108. --
  109.  
  110. DROP TABLE IF EXISTS `department`;
  111. /*!40101 SET @saved_cs_client = @@character_set_client */;
  112. /*!40101 SET character_set_client = utf8 */;
  113. CREATE TABLE `department` (
  114. `dept_name` varchar(20) NOT NULL DEFAULT '',
  115. `building` varchar(15) DEFAULT NULL,
  116. `budget` decimal(12,2) DEFAULT NULL,
  117. PRIMARY KEY (`dept_name`)
  118. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  119. /*!40101 SET character_set_client = @saved_cs_client */;
  120.  
  121. --
  122. -- Dumping data for table `department`
  123. --
  124.  
  125. LOCK TABLES `department` WRITE;
  126. /*!40000 ALTER TABLE `department` DISABLE KEYS */;
  127. INSERT INTO `department` VALUES ('Biology','Watson',90000.00),('Comp. Sci.','Taylor',100000.00),('Elec. Eng.','Taylor',85000.00),('Finance','Painter',120000.00),('History','Painter',50000.00),('Music','Packard',80000.00),('Physics','Watson',70000.00);
  128. /*!40000 ALTER TABLE `department` ENABLE KEYS */;
  129. UNLOCK TABLES;
  130.  
  131. --
  132. -- Table structure for table `instructor`
  133. --
  134.  
  135. DROP TABLE IF EXISTS `instructor`;
  136. /*!40101 SET @saved_cs_client = @@character_set_client */;
  137. /*!40101 SET character_set_client = utf8 */;
  138. CREATE TABLE `instructor` (
  139. `id` varchar(5) NOT NULL DEFAULT '',
  140. `name` varchar(20) NOT NULL,
  141. `dept_name` varchar(20) DEFAULT NULL,
  142. `salary` decimal(8,2) DEFAULT NULL,
  143. PRIMARY KEY (`id`)
  144. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  145. /*!40101 SET character_set_client = @saved_cs_client */;
  146.  
  147. --
  148. -- Dumping data for table `instructor`
  149. --
  150.  
  151. LOCK TABLES `instructor` WRITE;
  152. /*!40000 ALTER TABLE `instructor` DISABLE KEYS */;
  153. INSERT INTO `instructor` VALUES ('10101','Srinivasan','Comp. Sci.',65000.00),('12121','Wu','Finance',90000.00),('15151','Mozart','Music',40000.00),('22222','Einstein','Physics',95000.00),('32343','El Said','History',60000.00),('33456','Gold','Physics',87000.00),('45565','Katz','Comp. Sci.',75000.00),('58583','Califieri','History',62000.00),('76543','Singh','Finance',80000.00),('76766','Crick','Biology',72000.00),('83821','Brandt','Comp. Sci.',92000.00),('98345','Kim','Elec. Eng.',80000.00);
  154. /*!40000 ALTER TABLE `instructor` ENABLE KEYS */;
  155. UNLOCK TABLES;
  156.  
  157. --
  158. -- Table structure for table `prereq`
  159. --
  160.  
  161. DROP TABLE IF EXISTS `prereq`;
  162. /*!40101 SET @saved_cs_client = @@character_set_client */;
  163. /*!40101 SET character_set_client = utf8 */;
  164. CREATE TABLE `prereq` (
  165. `course_id` varchar(8) NOT NULL DEFAULT '',
  166. `prereq_id` varchar(8) NOT NULL DEFAULT '',
  167. PRIMARY KEY (`course_id`,`prereq_id`)
  168. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  169. /*!40101 SET character_set_client = @saved_cs_client */;
  170.  
  171. --
  172. -- Dumping data for table `prereq`
  173. --
  174.  
  175. LOCK TABLES `prereq` WRITE;
  176. /*!40000 ALTER TABLE `prereq` DISABLE KEYS */;
  177. INSERT INTO `prereq` VALUES ('BIO-301','BIO-101'),('BIO-399','BIO-101'),('CS-190','CS-101'),('CS-315','CS-101'),('CS-319','CS-101'),('CS-347','CS-101'),('EE-181','PHY-101');
  178. /*!40000 ALTER TABLE `prereq` ENABLE KEYS */;
  179. UNLOCK TABLES;
  180.  
  181. --
  182. -- Table structure for table `section`
  183. --
  184.  
  185. DROP TABLE IF EXISTS `section`;
  186. /*!40101 SET @saved_cs_client = @@character_set_client */;
  187. /*!40101 SET character_set_client = utf8 */;
  188. CREATE TABLE `section` (
  189. `course_id` varchar(8) NOT NULL DEFAULT '',
  190. `sec_id` varchar(8) NOT NULL DEFAULT '',
  191. `semester` varchar(6) NOT NULL DEFAULT '',
  192. `year` decimal(4,0) NOT NULL DEFAULT '0',
  193. `building` varchar(15) DEFAULT NULL,
  194. `room_number` varchar(7) DEFAULT NULL,
  195. `time_slot_id` varchar(4) DEFAULT NULL,
  196. PRIMARY KEY (`course_id`,`sec_id`,`semester`,`year`)
  197. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  198. /*!40101 SET character_set_client = @saved_cs_client */;
  199.  
  200. --
  201. -- Dumping data for table `section`
  202. --
  203.  
  204. LOCK TABLES `section` WRITE;
  205. /*!40000 ALTER TABLE `section` DISABLE KEYS */;
  206. INSERT INTO `section` VALUES ('BIO-101','1','Summer',2009,'Painter','514','B'),('BIO-301','1','Summer',2010,'Painter','514','A'),('CS-101','1','Fall',2009,'Packard','101','H'),('CS-101','1','Spring',2010,'Packard','101','F'),('CS-190','1','Spring',2009,'Taylor','3128','E'),('CS-190','2','Spring',2009,'Taylor','3128','A'),('CS-315','1','Spring',2010,'Watson','120','D'),('CS-319','1','Spring',2010,'Watson','100','B'),('CS-319','2','Spring',2010,'Taylor','3128','C'),('CS-347','1','Fall',2009,'Taylor','3128','A'),('EE-181','1','Spring',2009,'Taylor','3128','C'),('FIN-201','1','Spring',2010,'Packard','101','B'),('HIS-351','1','Spring',2010,'Painter','514','C'),('MU-199','1','Spring',2010,'Packard','101','D'),('PHY-101','1','Fall',2009,'Watson','100','A');
  207. /*!40000 ALTER TABLE `section` ENABLE KEYS */;
  208. UNLOCK TABLES;
  209.  
  210. --
  211. -- Table structure for table `student`
  212. --
  213.  
  214. DROP TABLE IF EXISTS `student`;
  215. /*!40101 SET @saved_cs_client = @@character_set_client */;
  216. /*!40101 SET character_set_client = utf8 */;
  217. CREATE TABLE `student` (
  218. `id` varchar(5) NOT NULL DEFAULT '',
  219. `name` varchar(20) NOT NULL,
  220. `dept_name` varchar(20) DEFAULT NULL,
  221. `tot_cred` decimal(3,0) DEFAULT NULL,
  222. PRIMARY KEY (`id`)
  223. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  224. /*!40101 SET character_set_client = @saved_cs_client */;
  225.  
  226. --
  227. -- Dumping data for table `student`
  228. --
  229.  
  230. LOCK TABLES `student` WRITE;
  231. /*!40000 ALTER TABLE `student` DISABLE KEYS */;
  232. INSERT INTO `student` VALUES ('00128','Zhang','Comp. Sci.',102),('12345','Shankar','Comp. Sci.',32),('19991','Brandt','History',80),('23121','Chavez','Finance',110),('44553','Peltier','Physics',56),('45678','Levy','Physics',46),('54321','Williams','Comp. Sci.',54),('55739','Sanchez','Music',38),('70557','Snow','Physics',0),('76543','Brown','Comp. Sci.',58),('76653','Aoi','Elec. Eng.',60),('98765','Bourikas','Elec. Eng.',98),('98988','Tanaka','Biology',120);
  233. /*!40000 ALTER TABLE `student` ENABLE KEYS */;
  234. UNLOCK TABLES;
  235.  
  236. --
  237. -- Table structure for table `takes`
  238. --
  239.  
  240. DROP TABLE IF EXISTS `takes`;
  241. /*!40101 SET @saved_cs_client = @@character_set_client */;
  242. /*!40101 SET character_set_client = utf8 */;
  243. CREATE TABLE `takes` (
  244. `id` varchar(5) NOT NULL DEFAULT '',
  245. `course_id` varchar(8) NOT NULL DEFAULT '',
  246. `sec_id` varchar(8) NOT NULL DEFAULT '',
  247. `semester` varchar(6) NOT NULL DEFAULT '',
  248. `year` decimal(4,0) NOT NULL DEFAULT '0',
  249. `grade` varchar(2) DEFAULT NULL,
  250. PRIMARY KEY (`id`,`course_id`,`sec_id`,`semester`,`year`)
  251. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  252. /*!40101 SET character_set_client = @saved_cs_client */;
  253.  
  254. --
  255. -- Dumping data for table `takes`
  256. --
  257.  
  258. LOCK TABLES `takes` WRITE;
  259. /*!40000 ALTER TABLE `takes` DISABLE KEYS */;
  260. INSERT INTO `takes` VALUES ('00128','CS-101','1','Fall',2009,'A'),('00128','CS-347','1','Fall',2009,'A-'),('12345','CS-101','1','Fall',2009,'C'),('12345','CS-190','2','Spring',2009,'A'),('12345','CS-315','1','Spring',2010,'A'),('12345','CS-347','1','Fall',2009,'A'),('19991','HIS-351','1','Spring',2010,'B'),('23121','FIN-201','1','Spring',2010,'C+'),('44553','PHY-101','1','Fall',2009,'B-'),('45678','CS-101','1','Fall',2009,'F'),('45678','CS-101','1','Spring',2010,'B+'),('45678','CS-319','1','Spring',2010,'B'),('54321','CS-101','1','Fall',2009,'A-'),('54321','CS-190','2','Spring',2009,'B+'),('55739','MU-199','1','Spring',2010,'A-'),('76543','CS-101','1','Fall',2009,'A'),('76543','CS-319','2','Spring',2010,'A'),('76653','EE-181','1','Spring',2009,'C'),('98765','CS-101','1','Fall',2009,'C-'),('98765','CS-315','1','Spring',2010,'B'),('98988','BIO-101','1','Summer',2009,'A'),('98988','BIO-301','1','Summer',2010,NULL);
  261. /*!40000 ALTER TABLE `takes` ENABLE KEYS */;
  262. UNLOCK TABLES;
  263.  
  264. --
  265. -- Table structure for table `teaches`
  266. --
  267.  
  268. DROP TABLE IF EXISTS `teaches`;
  269. /*!40101 SET @saved_cs_client = @@character_set_client */;
  270. /*!40101 SET character_set_client = utf8 */;
  271. CREATE TABLE `teaches` (
  272. `id` varchar(5) NOT NULL DEFAULT '',
  273. `course_id` varchar(8) NOT NULL DEFAULT '',
  274. `sec_id` varchar(8) NOT NULL DEFAULT '',
  275. `semester` varchar(6) NOT NULL DEFAULT '',
  276. `year` decimal(4,0) NOT NULL DEFAULT '0',
  277. PRIMARY KEY (`id`,`course_id`,`sec_id`,`semester`,`year`)
  278. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  279. /*!40101 SET character_set_client = @saved_cs_client */;
  280.  
  281. --
  282. -- Dumping data for table `teaches`
  283. --
  284.  
  285. LOCK TABLES `teaches` WRITE;
  286. /*!40000 ALTER TABLE `teaches` DISABLE KEYS */;
  287. INSERT INTO `teaches` VALUES ('10101','CS-101','1','Fall',2009),('10101','CS-315','1','Spring',2010),('10101','CS-347','1','Fall',2009),('12121','FIN-201','1','Spring',2010),('15151','MU-199','1','Spring',2010),('22222','PHY-101','1','Fall',2009),('32343','HIS-351','1','Spring',2010),('45565','CS-101','1','Spring',2010),('45565','CS-319','1','Spring',2010),('76766','BIO-101','1','Summer',2009),('76766','BIO-301','1','Summer',2010),('83821','CS-190','1','Spring',2009),('83821','CS-190','2','Spring',2009),('83821','CS-319','2','Spring',2010),('98345','EE-181','1','Spring',2009);
  288. /*!40000 ALTER TABLE `teaches` ENABLE KEYS */;
  289. UNLOCK TABLES;
  290.  
  291. --
  292. -- Table structure for table `time_slot`
  293. --
  294.  
  295. DROP TABLE IF EXISTS `time_slot`;
  296. /*!40101 SET @saved_cs_client = @@character_set_client */;
  297. /*!40101 SET character_set_client = utf8 */;
  298. CREATE TABLE `time_slot` (
  299. `time_slot_id` varchar(4) NOT NULL DEFAULT '',
  300. `day` varchar(1) NOT NULL DEFAULT '',
  301. `start_hr` decimal(2,0) NOT NULL DEFAULT '0',
  302. `start_min` decimal(2,0) NOT NULL DEFAULT '0',
  303. `end_hr` decimal(2,0) DEFAULT NULL,
  304. `end_min` decimal(2,0) DEFAULT NULL,
  305. PRIMARY KEY (`time_slot_id`,`day`,`start_hr`,`start_min`)
  306. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  307. /*!40101 SET character_set_client = @saved_cs_client */;
  308.  
  309. --
  310. -- Dumping data for table `time_slot`
  311. --
  312.  
  313. LOCK TABLES `time_slot` WRITE;
  314. /*!40000 ALTER TABLE `time_slot` DISABLE KEYS */;
  315. INSERT INTO `time_slot` VALUES ('A','F',8,0,8,50),('A','M',8,0,8,50),('A','W',8,0,8,50),('B','F',9,0,9,50),('B','M',9,0,9,50),('B','W',9,0,9,50),('C','F',11,0,11,50),('C','M',11,0,11,50),('C','W',11,0,11,50),('D','F',13,0,13,50),('D','M',13,0,13,50),('D','W',13,0,13,50),('E','R',10,30,11,45),('E','T',10,30,11,45),('F','R',14,30,15,45),('F','T',14,30,15,45),('G','F',16,0,16,50),('G','M',16,0,16,50),('G','W',16,0,16,50),('H','W',10,0,12,30);
  316. /*!40000 ALTER TABLE `time_slot` ENABLE KEYS */;
  317. UNLOCK TABLES;
  318. /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
  319.  
  320. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  321. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  322. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  323. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  324. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  325. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  326. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
  327.  
  328. -- Dump completed on 2016-01-21 10:44:24
  329. #################################################################################################
  330.  
  331.  
  332.  
  333.  
  334.  
  335.  
  336.  
  337.  
  338.  
  339.  
  340.  
  341.  
  342.  
  343.  
  344.  
  345. ### camdial.org ###
  346.  
  347. -- phpMyAdmin SQL Dump
  348. -- version 3.1.5
  349. -- http://www.phpmyadmin.net
  350. --
  351. -- Host: localhost
  352. -- Generation Time: Jan 25, 2011 at 07:30 AM
  353. -- Server version: 5.1.39
  354. -- PHP Version: 5.2.9-2
  355.  
  356. SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
  357.  
  358.  
  359. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  360. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  361. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  362. /*!40101 SET NAMES utf8 */;
  363.  
  364. --
  365. -- Database: `cturk`
  366. --
  367.  
  368. -- --------------------------------------------------------
  369.  
  370. --
  371. -- Table structure for table `cturk4_assignments`
  372. --
  373.  
  374. CREATE TABLE IF NOT EXISTS `cturk4_assignments` (
  375. `id` int(11) NOT NULL AUTO_INCREMENT,
  376. `requester_id` int(11) NOT NULL,
  377. `worker_id` int(11) NOT NULL,
  378. `hit_id` int(11) NOT NULL,
  379. `group_id` int(11) NOT NULL,
  380. `acceptDate` varchar(16) NOT NULL,
  381. `submitDate` varchar(16) DEFAULT NULL,
  382. `finishDate` varchar(16) DEFAULT NULL,
  383. `expireDate` varchar(16) DEFAULT NULL,
  384. `data` text,
  385. `state` varchar(255) NOT NULL,
  386. `message` text,
  387. PRIMARY KEY (`id`)
  388. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  389.  
  390. --
  391. -- Dumping data for table `cturk4_assignments`
  392. --
  393.  
  394.  
  395. -- --------------------------------------------------------
  396.  
  397. --
  398. -- Table structure for table `cturk4_groups`
  399. --
  400.  
  401. CREATE TABLE IF NOT EXISTS `cturk4_groups` (
  402. `id` int(11) NOT NULL AUTO_INCREMENT,
  403. `requester_id` int(11) NOT NULL,
  404. `name` varchar(255) NOT NULL,
  405. `description` text NOT NULL,
  406. `currencyCode` varchar(64) NOT NULL,
  407. `reward` varchar(16) NOT NULL,
  408. `expireDate` varchar(16) NOT NULL,
  409. `assignmentTime` int(11) NOT NULL COMMENT 'seconds',
  410. `autoApprovalTime` int(11) NOT NULL COMMENT 'seconds',
  411. `maxHits` int(11) NOT NULL DEFAULT '0',
  412. `numCompletedHit` int(11) NOT NULL DEFAULT '0',
  413. `numAvailableHit` int(11) NOT NULL DEFAULT '0',
  414. `state` varchar(255) NOT NULL,
  415. PRIMARY KEY (`id`)
  416. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  417.  
  418. --
  419. -- Dumping data for table `cturk4_groups`
  420. --
  421.  
  422.  
  423. -- --------------------------------------------------------
  424.  
  425. --
  426. -- Table structure for table `cturk4_hits`
  427. --
  428.  
  429. CREATE TABLE IF NOT EXISTS `cturk4_hits` (
  430. `id` int(11) NOT NULL AUTO_INCREMENT,
  431. `group_id` int(11) NOT NULL,
  432. `name` varchar(255) NOT NULL,
  433. `description` text NOT NULL,
  434. `currencyCode` varchar(64) NOT NULL,
  435. `reward` varchar(16) NOT NULL,
  436. `publishDate` varchar(16) NOT NULL,
  437. `expireDate` varchar(16) NOT NULL,
  438. `assignmentTime` int(11) NOT NULL COMMENT 'seconds',
  439. `autoApprovalTime` int(11) NOT NULL COMMENT 'seconds',
  440. `url` varchar(255) NOT NULL,
  441. `frameHeight` int(11) NOT NULL,
  442. `requester_id` int(11) NOT NULL,
  443. `state` varchar(255) NOT NULL,
  444. PRIMARY KEY (`id`)
  445. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  446.  
  447. --
  448. -- Dumping data for table `cturk4_hits`
  449. --
  450.  
  451.  
  452. -- --------------------------------------------------------
  453.  
  454. --
  455. -- Table structure for table `cturk4_payorders`
  456. --
  457.  
  458. CREATE TABLE IF NOT EXISTS `cturk4_payorders` (
  459. `id` int(11) NOT NULL AUTO_INCREMENT,
  460. `senderEmail` varchar(255) NOT NULL,
  461. `receiver_id` int(11) NOT NULL,
  462. `receiverEmail` varchar(255) NOT NULL,
  463. `receiverAmount` varchar(255) NOT NULL,
  464. `payKey` varchar(255) NOT NULL,
  465. `assignmentIds` varchar(255) NOT NULL,
  466. `state` varchar(255) NOT NULL,
  467. `createDate` varchar(16) NOT NULL,
  468. `completeDate` varchar(16) DEFAULT NULL,
  469. PRIMARY KEY (`id`)
  470. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  471.  
  472. --
  473. -- Dumping data for table `cturk4_payorders`
  474. --
  475.  
  476.  
  477. -- --------------------------------------------------------
  478.  
  479. --
  480. -- Table structure for table `cturk4_users`
  481. --
  482.  
  483. CREATE TABLE IF NOT EXISTS `cturk4_users` (
  484. `id` int(11) NOT NULL AUTO_INCREMENT,
  485. `username` varchar(255) NOT NULL,
  486. `password` varchar(32) NOT NULL,
  487. `paypalAccount` varchar(255) NOT NULL,
  488. `title` varchar(255) NOT NULL,
  489. `firstname` varchar(255) NOT NULL,
  490. `surname` varchar(255) NOT NULL,
  491. `sex` varchar(16) NOT NULL,
  492. `buildingName` varchar(255) DEFAULT NULL,
  493. `streetName` varchar(255) DEFAULT NULL,
  494. `cityName` varchar(255) DEFAULT NULL,
  495. `postcode` varchar(255) DEFAULT NULL,
  496. `email` varchar(255) NOT NULL,
  497. `isRequester` int(11) NOT NULL DEFAULT '0',
  498. `isActive` int(11) NOT NULL DEFAULT '1',
  499. `isEnabled` int(11) NOT NULL DEFAULT '1',
  500. `acceptanceRatio` int(11) NOT NULL DEFAULT '0',
  501. `createDate` varchar(16) NOT NULL,
  502. PRIMARY KEY (`id`)
  503. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
  504.  
  505. --
  506. -- Dumping data for table `cturk4_users`
  507. --
  508.  
  509. INSERT INTO `cturk4_users` (`id`, `username`, `password`, `paypalAccount`, `title`, `firstname`, `surname`, `sex`, `buildingName`, `streetName`, `cityName`, `postcode`, `email`, `isRequester`, `isActive`, `isEnabled`, `acceptanceRatio`, `createDate`) VALUES
  510. (1, 'midfar@qq.com', '21232f297a57a5a743894a0e4a801fc3', 'cturk__1287135123_per@126.com', 'Mr.', 'firstname', 'surname', 'male', 'b', 's', 'c', 'p', 'midfar@qq.com', 1, 1, 1, 67, '1293254326110'),
  511. (2, 'midfar@vip.qq.com', '21232f297a57a5a743894a0e4a801fc3', 'cturk__1287126000_per@126.com', 'Mr.', 'firstname', 'surname', 'male', 'b', 's', 'c', 'p', 'midfar@vip.qq.com', 0, 1, 1, 67, '1293254382316'),
  512. (3, 'admin@midfar.com', '21232f297a57a5a743894a0e4a801fc3', 'cturk__1287563539_per@126.com', 'Mr.', 'f3', 's3', 'male', 'b', 's', 'c', 'p', 'admin@midfar.com', 1, 1, 1, 67, '1293254406452');
  513.  
  514. -- --------------------------------------------------------
  515.  
  516. --
  517. -- Table structure for table `cturk4_usertokens`
  518. --
  519.  
  520. CREATE TABLE IF NOT EXISTS `cturk4_usertokens` (
  521. `id` int(11) NOT NULL AUTO_INCREMENT,
  522. `user_id` int(11) NOT NULL,
  523. `resetPasswordToken` varchar(32) DEFAULT NULL,
  524. `hasUsed` int(11) NOT NULL DEFAULT '0',
  525. PRIMARY KEY (`id`)
  526. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  527.  
  528. --
  529. -- Dumping data for table `cturk4_usertokens`
  530. --
  531.  
  532.  
  533. -- --------------------------------------------------------
  534.  
  535. --
  536. -- Table structure for table `cturk4_workerrequests`
  537. --
  538.  
  539. CREATE TABLE IF NOT EXISTS `cturk4_workerrequests` (
  540. `id` int(11) NOT NULL AUTO_INCREMENT,
  541. `worker_id` int(11) NOT NULL,
  542. `requester_id` int(11) NOT NULL,
  543. `createDate` varchar(16) NOT NULL,
  544. `isActive` int(11) NOT NULL DEFAULT '1',
  545. PRIMARY KEY (`id`)
  546. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  547.  
  548. --
  549. -- Dumping data for table `cturk4_workerrequests`
  550. --
  551.  
  552.  
  553. -- --------------------------------------------------------
  554.  
  555. --
  556. -- Table structure for table `cturk_list`
  557. --
  558.  
  559. CREATE TABLE IF NOT EXISTS `cturk_list` (
  560. `id` int(11) NOT NULL AUTO_INCREMENT,
  561. `path` varchar(255) NOT NULL,
  562. `status` int(11) DEFAULT NULL,
  563. `hitid` varchar(100) DEFAULT NULL,
  564. `hittypeid` varchar(100) DEFAULT NULL,
  565. `AssignmentId` varchar(100) DEFAULT NULL,
  566. `AssignmentStatus` varchar(100) DEFAULT NULL,
  567. `WorkerId` varchar(100) DEFAULT NULL,
  568. `Answers` text,
  569. `StdAnswers` text,
  570. `audioLength` varchar(20) DEFAULT NULL,
  571. `publishDate` varchar(100) DEFAULT NULL,
  572. `checkDate` varchar(100) DEFAULT NULL,
  573. PRIMARY KEY (`id`)
  574. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  575.  
  576. --
  577. -- Dumping data for table `cturk_list`
  578. --
  579.  
  580.  
  581. -- --------------------------------------------------------
  582.  
  583. --
  584. -- Table structure for table `cturk_list2`
  585. --
  586.  
  587. CREATE TABLE IF NOT EXISTS `cturk_list2` (
  588. `id` int(11) NOT NULL AUTO_INCREMENT,
  589. `trans_id` int(11) DEFAULT NULL,
  590. `trans_AssignmentId` varchar(100) DEFAULT NULL,
  591. `path` varchar(255) NOT NULL,
  592. `status` int(11) DEFAULT NULL,
  593. `hitid` varchar(100) DEFAULT NULL,
  594. `hittypeid` varchar(100) DEFAULT NULL,
  595. `AssignmentId` varchar(100) DEFAULT NULL,
  596. `AssignmentStatus` varchar(100) DEFAULT NULL,
  597. `WorkerId` varchar(100) DEFAULT NULL,
  598. `StdQuestions` text,
  599. `Answers` text,
  600. `StdAnswers` text,
  601. `audioLength` varchar(20) DEFAULT NULL,
  602. `publishDate` varchar(100) DEFAULT NULL,
  603. `checkDate` varchar(100) DEFAULT NULL,
  604. PRIMARY KEY (`id`)
  605. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  606.  
  607. --
  608. -- Dumping data for table `cturk_list2`
  609. --
  610. #########################################################################################
  611.  
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618.  
  619. ### www.sarvodaycard.com ###
  620.  
  621.  
  622. -- phpMyAdmin SQL Dump
  623. -- version 2.11.9.4
  624. -- http://www.phpmyadmin.net
  625. --
  626. -- Host: 10.6.166.203
  627. -- Generation Time: Apr 19, 2011 at 05:15 AM
  628. -- Server version: 5.0.91
  629. -- PHP Version: 5.2.8
  630.  
  631. SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
  632.  
  633. --
  634. -- Database: `sarvodaycard`
  635. --
  636.  
  637. -- --------------------------------------------------------
  638.  
  639. --
  640. -- Table structure for table `svd_admin`
  641. --
  642.  
  643. CREATE TABLE `svd_admin` (
  644. `iAdminId` int(11) NOT NULL auto_increment,
  645. `vFirstName` varchar(100) default NULL,
  646. `vLastName` varchar(100) default NULL,
  647. `vLogin` varchar(100) default NULL,
  648. `vPassword` varchar(100) default NULL,
  649. `tLastLogin` time default NULL,
  650. `vEmail` varchar(100) default NULL,
  651. `vFromIP` varchar(100) default NULL,
  652. `eStatus` enum('Active','Inactive') default 'Active',
  653. PRIMARY KEY (`iAdminId`)
  654. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ;
  655.  
  656. --
  657. -- Dumping data for table `svd_admin`
  658. --
  659.  
  660. INSERT INTO `svd_admin` VALUES(10, 'Sarvoday', 'Sarvoday', 'sarvoday', '5a5e62ee02f3d37c1c6c19c95b45b499', '00:00:00', 'sarvoday@sarvoday.com', '219.91.128.38', 'Active');
  661.  
  662. -- --------------------------------------------------------
  663.  
  664. --
  665. -- Table structure for table `svd_categories`
  666. --
  667.  
  668. CREATE TABLE `svd_categories` (
  669. `id` int(10) NOT NULL auto_increment,
  670. `name` varchar(255) NOT NULL,
  671. `description` text,
  672. `owner_id` int(10) NOT NULL default '0',
  673. `ord` int(5) NOT NULL default '0',
  674. `display_on_index` tinyint(1) NOT NULL default '0',
  675. `deleted` tinyint(1) NOT NULL default '0',
  676. `status` tinyint(1) NOT NULL default '1',
  677. PRIMARY KEY (`id`)
  678. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=54 ;
  679.  
  680. --
  681. -- Dumping data for table `svd_categories`
  682. --
  683.  
  684. INSERT INTO `svd_categories` VALUES(1, 'Wedding Cards', 'This is the wedding card category ert', 0, 10, 1, 0, 1);
  685. INSERT INTO `svd_categories` VALUES(2, 'Scroll Invitations', 'This is the scroll invitatins category', 0, 20, 1, 0, 1);
  686. INSERT INTO `svd_categories` VALUES(3, 'Add On Items', 'Thsi is the special ocassion cards category', 0, 50, 1, 0, 1);
  687. INSERT INTO `svd_categories` VALUES(4, 'Special Occasion Card', 'This is add on iotems category', 0, 40, 1, 0, 1);
  688. INSERT INTO `svd_categories` VALUES(5, 'Wedding Favour', 'This is the wedding favour category', 0, 50, 1, 0, 1);
  689. INSERT INTO `svd_categories` VALUES(6, 'Order & Printing', 'This is order &printing category.', 0, 60, 1, 0, 1);
  690. INSERT INTO `svd_categories` VALUES(23, 'Indian Wedding Cards', '', 1, 0, 0, 0, 1);
  691. INSERT INTO `svd_categories` VALUES(22, 'Muslim Cards', '', 1, 6, 0, 0, 1);
  692. INSERT INTO `svd_categories` VALUES(21, 'Sikh Cards', '', 1, 5, 0, 0, 1);
  693. INSERT INTO `svd_categories` VALUES(20, 'Multifaith Wedding Invitations', '', 1, 4, 0, 0, 1);
  694. INSERT INTO `svd_categories` VALUES(19, 'Exclusice Card', '', 1, 3, 0, 0, 1);
  695. INSERT INTO `svd_categories` VALUES(18, 'Hindu Wedding card', '', 1, 2, 0, 0, 1);
  696. INSERT INTO `svd_categories` VALUES(17, 'Theme Based Invitation', '', 1, 1, 0, 0, 1);
  697. INSERT INTO `svd_categories` VALUES(24, 'Small Size Scrolls', '', 2, 1, 0, 0, 1);
  698. INSERT INTO `svd_categories` VALUES(25, 'Box Scrolls', '', 2, 2, 0, 0, 1);
  699. INSERT INTO `svd_categories` VALUES(26, 'Traditional Scrolls', '', 2, 4, 0, 0, 1);
  700. INSERT INTO `svd_categories` VALUES(36, 'Program book', '', 3, 0, 0, 0, 1);
  701. INSERT INTO `svd_categories` VALUES(35, 'Menu card', '', 3, 0, 0, 0, 1);
  702. INSERT INTO `svd_categories` VALUES(34, 'Carry bag', '', 3, 0, 0, 0, 1);
  703. INSERT INTO `svd_categories` VALUES(33, 'Money envelope', '', 3, 0, 0, 0, 1);
  704. INSERT INTO `svd_categories` VALUES(37, 'Table card', '', 3, 0, 0, 0, 1);
  705. INSERT INTO `svd_categories` VALUES(38, 'Cake & Sweet boxes', '', 3, 0, 0, 0, 1);
  706. INSERT INTO `svd_categories` VALUES(39, 'Thank You Card', '', 3, 0, 0, 0, 1);
  707. INSERT INTO `svd_categories` VALUES(40, 'RSVP Card', '', 3, 0, 0, 0, 1);
  708. INSERT INTO `svd_categories` VALUES(41, 'Birthday Invitations', '', 4, 0, 0, 0, 1);
  709. INSERT INTO `svd_categories` VALUES(42, 'Sweet 16 Card', '', 4, 0, 0, 0, 1);
  710. INSERT INTO `svd_categories` VALUES(43, 'Graduation & Surprise Party', '', 4, 0, 0, 0, 1);
  711. INSERT INTO `svd_categories` VALUES(44, 'Engagement Invitations', '', 4, 0, 0, 0, 1);
  712. INSERT INTO `svd_categories` VALUES(45, 'Anniversary Invitations', '', 4, 0, 0, 0, 1);
  713. INSERT INTO `svd_categories` VALUES(46, 'House Warming Invitations', '', 4, 0, 0, 0, 1);
  714. INSERT INTO `svd_categories` VALUES(47, 'Ganesha', '', 5, 0, 0, 0, 1);
  715. INSERT INTO `svd_categories` VALUES(48, 'Pouch', '', 5, 0, 0, 0, 1);
  716. INSERT INTO `svd_categories` VALUES(49, 'Embroidered Boxes', '', 5, 0, 0, 0, 1);
  717. INSERT INTO `svd_categories` VALUES(50, 'Invitation Wording Templates', '', 6, 0, 0, 0, 1);
  718. INSERT INTO `svd_categories` VALUES(51, 'Logos & Symbols', '', 6, 0, 0, 0, 1);
  719. INSERT INTO `svd_categories` VALUES(52, 'Fonts', '', 6, 0, 0, 0, 1);
  720. INSERT INTO `svd_categories` VALUES(53, 'Types of Printing', '', 6, 0, 0, 0, 1);
  721.  
  722. -- --------------------------------------------------------
  723.  
  724. --
  725. -- Table structure for table `svd_enquiry_info`
  726. --
  727.  
  728. CREATE TABLE `svd_enquiry_info` (
  729. `id` int(10) NOT NULL auto_increment,
  730. `item` varchar(255) NOT NULL,
  731. `name` varchar(255) NOT NULL,
  732. `address` text,
  733. `city` varchar(255) default NULL,
  734. `state` varchar(255) default NULL,
  735. `country` varchar(255) default NULL,
  736. `contact_no` varchar(255) NOT NULL,
  737. `fax_no` varchar(255) default NULL,
  738. `email` varchar(255) NOT NULL,
  739. `requirement` text NOT NULL,
  740. `status` tinyint(1) NOT NULL default '1',
  741. `deleted` tinyint(1) NOT NULL default '0',
  742. PRIMARY KEY (`id`)
  743. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ;
  744.  
  745. --
  746. -- Dumping data for table `svd_enquiry_info`
  747. --
  748.  
  749. INSERT INTO `svd_enquiry_info` VALUES(1, 'SRC 6002', 'test', 'test', 'test', 'test', 'test', 'test', 'ksdh', 'test@test.com', 'slkdj', 1, 0);
  750. INSERT INTO `svd_enquiry_info` VALUES(2, 'SRC 6034', 'Sanket Doshi', 'Vastrapur', 'Ahmedabad', 'Gujarat', '', '9879789620', '', 'sanket@elitechsystems.com', 'Just test', 1, 0);
  751. INSERT INTO `svd_enquiry_info` VALUES(3, 'SRC 6027', 'Sanket Doshi', 'Test', 'test', 'Test', 'Test', '9879789620', '', 'sanket@elitechsystems.com', 'Test', 1, 0);
  752. INSERT INTO `svd_enquiry_info` VALUES(4, 'SRC 6007', 'test', 'test', 'test', 'test', 'testa', 'testtesttest', 'test', 'test@tweast.com', 'sdfhklj', 1, 0);
  753. INSERT INTO `svd_enquiry_info` VALUES(5, 'SRC 6007', 'sdf', 'sdf', 'sdf', 'sdf', 'sdf', 'sdf', 'sdf', 'sdf@sdf.com', 'sdf', 1, 0);
  754. INSERT INTO `svd_enquiry_info` VALUES(6, 'SRC 6007', 'dfgd', 'dfg', 'dfg', 'dfg', 'dfg', 'dfg', 'dfg', 'dfg@dfg.com', 'slkdfjl', 1, 0);
  755. INSERT INTO `svd_enquiry_info` VALUES(7, 'SRC 6007', 'sdf', 'sdf', 'sdfsdf', 'sdf', 'sdfsdfsd', 'sdfsdfsdf', 'fsdf', 'sdf@sdf.com', 'sdfsd', 1, 0);
  756. INSERT INTO `svd_enquiry_info` VALUES(8, 'SRC 6007', 'test', 'test', 'test', 'test', 'test', 'test', 'estt', 'test@tweast.com', 'slkdjfl', 1, 0);
  757. INSERT INTO `svd_enquiry_info` VALUES(9, 'SRC 6007', 'ankit', 'nsaitj', 'nasa', 'nasa', 'nasa', 'nasa', 'nasa', 'nasa@nasa.com', 'nasa', 1, 0);
  758. INSERT INTO `svd_enquiry_info` VALUES(10, 'SRC 6007', 'nasa', 'nasa', 'nasa', 'nasa', 'nasa', 'nasa', 'nasa', 'nasa@nasa.com', 'nasanasanasanasanasa', 1, 0);
  759. INSERT INTO `svd_enquiry_info` VALUES(11, 'SRC 6007', 'ankit', 'universe', 'galaxy', 'milkyway', 'enough is enough', '99999999999999999999999', '999999999999999999999', 'ha@ha.com', 'this is myu requirement........', 1, 0);
  760.  
  761. -- --------------------------------------------------------
  762.  
  763. --
  764. -- Table structure for table `svd_flash_files`
  765. --
  766.  
  767. CREATE TABLE `svd_flash_files` (
  768. `id` int(10) NOT NULL auto_increment,
  769. `name` text NOT NULL,
  770. PRIMARY KEY (`id`)
  771. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
  772.  
  773. --
  774. -- Dumping data for table `svd_flash_files`
  775. --
  776.  
  777.  
  778. -- --------------------------------------------------------
  779.  
  780. --
  781. -- Table structure for table `svd_pages`
  782. --
  783.  
  784. CREATE TABLE `svd_pages` (
  785. `id` int(1) NOT NULL auto_increment,
  786. `title` text NOT NULL,
  787. `description` text,
  788. `owner_id` int(10) NOT NULL default '-99',
  789. `swf_name` varchar(255) NOT NULL,
  790. `ord` int(10) NOT NULL default '0',
  791. `heading` text NOT NULL,
  792. `deleted` tinyint(1) NOT NULL default '0',
  793. `status` tinyint(1) NOT NULL default '1',
  794. PRIMARY KEY (`id`)
  795. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
  796.  
  797. --
  798. -- Dumping data for table `svd_pages`
  799. --
  800.  
  801.  
  802. -- --------------------------------------------------------
  803.  
  804. --
  805. -- Table structure for table `svd_products`
  806. --
  807.  
  808. CREATE TABLE `svd_products` (
  809. `id` int(11) NOT NULL auto_increment,
  810. `categories` varchar(255) NOT NULL default '0',
  811. `name` varchar(255) NOT NULL,
  812. `code` varchar(255) NOT NULL,
  813. `price` float(5,2) NOT NULL default '0.00',
  814. `size` varchar(255) default NULL,
  815. `weight` float(5,2) NOT NULL default '0.00',
  816. `paper` varchar(255) default NULL,
  817. `style` varchar(255) default NULL,
  818. `color` varchar(5255) default NULL,
  819. `is_featured_product` tinyint(1) NOT NULL default '0',
  820. `remove_from_display` tinyint(1) NOT NULL default '0',
  821. `ord` int(10) NOT NULL default '0',
  822. `deleted` tinyint(1) NOT NULL default '0',
  823. `status` tinyint(1) NOT NULL default '1',
  824. PRIMARY KEY (`id`)
  825. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=89 ;
  826.  
  827. --
  828. -- Dumping data for table `svd_products`
  829. --
  830.  
  831. INSERT INTO `svd_products` VALUES(1, 'a:2:{i:0;s:2:"15";i:1;s:1:"7";}', 'only wed cat1 ', 'wdc1', 0.00, '0.00', 23.00, '', '', '', 1, 0, 0, 1, 1);
  832. INSERT INTO `svd_products` VALUES(2, 'a:5:{i:0;s:1:"1";i:1;s:2:"14";i:2;s:2:"15";i:3;s:1:"4";i:4;s:1:"6";}', 'sdf', 'sdf', 0.00, '0.00', 0.00, '', '', '', 1, 0, 0, 1, 1);
  833. INSERT INTO `svd_products` VALUES(3, 'a:2:{i:0;s:2:"23";i:1;s:2:"19";}', '4005', '4005', 0.00, '0.00', 0.00, '', '', '', 1, 0, 0, 1, 0);
  834. INSERT INTO `svd_products` VALUES(4, 'a:6:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"17";i:3;s:2:"18";i:4;s:2:"19";i:5;s:2:"20";}', 'SRC 4034', 'SRC 4034', 0.00, '0.00', 0.00, '', '', '', 1, 0, 0, 1, 1);
  835. INSERT INTO `svd_products` VALUES(5, 'a:3:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"20";}', 'SRC 4036', 'SRC 4036', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 1, 1);
  836. INSERT INTO `svd_products` VALUES(6, 'a:3:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"20";}', 'WC 2006', 'WC 2006', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 1, 1);
  837. INSERT INTO `svd_products` VALUES(7, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 6001', 'SRC 6001', 0.00, '0.00', 0.00, 'Handamde & Metalic Board', '', '', 0, 0, 0, 0, 1);
  838. INSERT INTO `svd_products` VALUES(8, 'a:5:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"17";i:3;s:2:"18";i:4;s:2:"19";}', 'SRC 6002', 'SRC 6002', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  839. INSERT INTO `svd_products` VALUES(9, 'a:3:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"20";}', 'SRC 6003', 'SRC 6003', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  840. INSERT INTO `svd_products` VALUES(10, 'a:4:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"19";i:3;s:2:"20";}', 'SRC 6004', 'SRC 6004', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  841. INSERT INTO `svd_products` VALUES(11, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 6005', 'SRC 6005', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  842. INSERT INTO `svd_products` VALUES(12, 'a:3:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"20";}', 'SRC 6006', 'SRC 6006', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  843. INSERT INTO `svd_products` VALUES(13, 'a:6:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"17";i:3;s:2:"18";i:4;s:2:"19";i:5;s:2:"20";}', 'SRC 6007', 'SRC 6007', 0.00, '0.00', 0.00, '', '', '', 1, 0, 0, 0, 1);
  844. INSERT INTO `svd_products` VALUES(14, 'a:5:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"18";i:3;s:2:"19";i:4;s:2:"20";}', 'SRC 6008', 'SRC 6008', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  845. INSERT INTO `svd_products` VALUES(15, 'a:5:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"18";i:3;s:2:"19";i:4;s:2:"20";}', 'SRC 6009', 'SRC 6009', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  846. INSERT INTO `svd_products` VALUES(16, 'a:1:{i:0;s:1:"1";}', 'SRC 6010', 'SRC 6010', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  847. INSERT INTO `svd_products` VALUES(17, 'a:2:{i:0;s:1:"1";i:1;s:2:"18";}', 'SRC 6011', 'SRC 6011', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  848. INSERT INTO `svd_products` VALUES(18, 'a:2:{i:0;s:1:"1";i:1;s:2:"18";}', 'SRC 6012', 'SRC 6012', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  849. INSERT INTO `svd_products` VALUES(19, 'a:3:{i:0;s:1:"1";i:1;s:2:"19";i:2;s:2:"20";}', 'SRC 6013', 'SRC 6013', 0.00, '0.00', 0.00, '', '', '', 1, 0, 0, 0, 1);
  850. INSERT INTO `svd_products` VALUES(20, 'a:3:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"20";}', 'SRC 6014', 'SRC 6014', 0.00, '0.00', 0.00, '', '', '', 1, 0, 0, 0, 1);
  851. INSERT INTO `svd_products` VALUES(21, 'a:3:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"20";}', 'SRC 6015', 'SRC 6015', 0.00, '0.00', 0.00, '', '', '', 1, 0, 0, 0, 1);
  852. INSERT INTO `svd_products` VALUES(22, 'a:4:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"19";i:3;s:2:"20";}', 'SRC 6016', 'SRC 6016', 0.00, '0.00', 0.00, '', '', '', 1, 0, 0, 0, 1);
  853. INSERT INTO `svd_products` VALUES(23, 'a:3:{i:0;s:1:"1";i:1;s:2:"18";i:2;s:2:"19";}', 'SRC 6017', 'SRC 6017', 0.00, '0.00', 0.00, '', '', '', 1, 0, 0, 0, 1);
  854. INSERT INTO `svd_products` VALUES(24, 'a:3:{i:0;s:1:"1";i:1;s:2:"19";i:2;s:2:"20";}', 'SRC 6018', 'SRC 6018', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  855. INSERT INTO `svd_products` VALUES(25, 'a:2:{i:0;s:1:"1";i:1;s:2:"18";}', 'SRC 6019', 'SRC 6019', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  856. INSERT INTO `svd_products` VALUES(26, 'a:4:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"18";i:3;s:2:"20";}', 'SRC 6020', 'SRC 6020', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  857. INSERT INTO `svd_products` VALUES(27, 'a:4:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"19";i:3;s:2:"20";}', 'SRC 6027', 'SRC 6027', 0.00, '0.00', 0.00, '', '', '', 1, 0, 0, 0, 1);
  858. INSERT INTO `svd_products` VALUES(28, 'a:3:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"20";}', 'SRC 6021', 'SRC 6021', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  859. INSERT INTO `svd_products` VALUES(29, 'a:2:{i:0;s:1:"1";i:1;s:2:"18";}', 'SRC 6022', 'SRC 6022', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  860. INSERT INTO `svd_products` VALUES(30, 'a:4:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"18";i:3;s:2:"20";}', 'SRC 6023', 'SRC 6023', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  861. INSERT INTO `svd_products` VALUES(31, 'a:3:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"18";}', 'SRC 6024', 'SRC 6024', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  862. INSERT INTO `svd_products` VALUES(32, 'a:4:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"19";i:3;s:2:"20";}', 'SRC 6025', 'SRC 6025', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  863. INSERT INTO `svd_products` VALUES(33, 'a:1:{i:0;s:1:"1";}', 'SRC 6026', 'SRC 6026', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  864. INSERT INTO `svd_products` VALUES(34, 'a:3:{i:0;s:1:"1";i:1;s:2:"18";i:2;s:2:"19";}', 'SRC 6028', 'SRC 6028', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  865. INSERT INTO `svd_products` VALUES(35, 'a:3:{i:0;s:1:"1";i:1;s:2:"18";i:2;s:2:"19";}', 'SRC 6029', 'SRC 6029', 0.00, '0.00', 0.00, '', '', '', 1, 0, 0, 0, 1);
  866. INSERT INTO `svd_products` VALUES(36, 'a:5:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"18";i:3;s:2:"19";i:4;s:2:"20";}', 'SRC 6030', 'SRC 6030', 0.00, '0.00', 0.00, '', '', '', 1, 0, 0, 0, 1);
  867. INSERT INTO `svd_products` VALUES(37, 'a:4:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"19";i:3;s:2:"20";}', 'SRC 6031', 'SRC 6031', 0.00, '0.00', 0.00, '', '', '', 1, 0, 0, 0, 1);
  868. INSERT INTO `svd_products` VALUES(38, 'a:3:{i:0;s:1:"1";i:1;s:2:"18";i:2;s:2:"19";}', 'SRC 6032', 'SRC 6032', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  869. INSERT INTO `svd_products` VALUES(39, 'a:4:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"19";i:3;s:2:"20";}', 'SRC 6033', 'SRC 6033', 0.00, '0.00', 0.00, '', '', '', 1, 0, 0, 0, 1);
  870. INSERT INTO `svd_products` VALUES(40, 'a:3:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"19";}', 'SRC 6034', 'SRC 6034', 0.00, '0.00', 0.00, '', '', '', 1, 0, 0, 0, 1);
  871. INSERT INTO `svd_products` VALUES(41, 'a:5:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"18";i:3;s:2:"19";i:4;s:2:"20";}', 'SRC 6035', 'SRC 6035', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  872. INSERT INTO `svd_products` VALUES(42, 'a:5:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"18";i:3;s:2:"19";i:4;s:2:"20";}', 'SRC 6036', 'SRC 6036', 0.00, '0.00', 0.00, '', '', '', 1, 0, 0, 0, 1);
  873. INSERT INTO `svd_products` VALUES(43, 'a:5:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"18";i:3;s:2:"19";i:4;s:2:"20";}', 'SRC 6037', 'SRC 6037', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  874. INSERT INTO `svd_products` VALUES(44, 'a:5:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"18";i:3;s:2:"19";i:4;s:2:"20";}', 'SRC 6038', 'SRC 6038', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  875. INSERT INTO `svd_products` VALUES(45, 'a:4:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"18";i:3;s:2:"19";}', 'SRC 6039', 'SRC 6039', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  876. INSERT INTO `svd_products` VALUES(46, 'a:4:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"18";i:3;s:2:"19";}', 'SRC 6040', 'SRC 6040', 0.00, '0.00', 0.00, '', '', '', 1, 0, 0, 0, 1);
  877. INSERT INTO `svd_products` VALUES(47, 'a:5:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"18";i:3;s:2:"19";i:4;s:2:"20";}', 'SRC 6042', 'SRC 6042', 0.00, '0.00', 0.00, '', '', '', 1, 0, 0, 0, 1);
  878. INSERT INTO `svd_products` VALUES(48, 'a:5:{i:0;s:1:"1";i:1;s:2:"17";i:2;s:2:"18";i:3;s:2:"19";i:4;s:2:"20";}', 'SRC 6041', 'SRC 6041', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  879. INSERT INTO `svd_products` VALUES(49, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2001', 'SRC 2001', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  880. INSERT INTO `svd_products` VALUES(50, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2002', 'SRC 2002', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  881. INSERT INTO `svd_products` VALUES(51, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2003', 'SRC 2003', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  882. INSERT INTO `svd_products` VALUES(52, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2004', 'SRC 2004', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  883. INSERT INTO `svd_products` VALUES(53, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2005', 'SRC 2005', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  884. INSERT INTO `svd_products` VALUES(54, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2006', 'SRC 2006', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  885. INSERT INTO `svd_products` VALUES(55, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2007', 'SRC 2007', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  886. INSERT INTO `svd_products` VALUES(56, 'a:2:{i:0;s:1:"1";i:1;s:2:"23";}', 'SRC 2008', 'SRC 2008', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  887. INSERT INTO `svd_products` VALUES(57, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2009', 'SRC 2009', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  888. INSERT INTO `svd_products` VALUES(58, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2010', 'SRC 2010', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  889. INSERT INTO `svd_products` VALUES(59, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2011', 'SRC 2011', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  890. INSERT INTO `svd_products` VALUES(60, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2012', 'SRC 2012', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  891. INSERT INTO `svd_products` VALUES(61, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2013', 'SRC 2013', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  892. INSERT INTO `svd_products` VALUES(62, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2014', 'SRC 2014', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  893. INSERT INTO `svd_products` VALUES(63, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2015', 'SRC 2015', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  894. INSERT INTO `svd_products` VALUES(64, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2016', 'SRC 2016', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  895. INSERT INTO `svd_products` VALUES(65, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2017', 'SRC 2017', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  896. INSERT INTO `svd_products` VALUES(66, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2018', 'SRC 2018', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  897. INSERT INTO `svd_products` VALUES(67, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2019', 'SRC 2019', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  898. INSERT INTO `svd_products` VALUES(68, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2020', 'SRC 2020', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  899. INSERT INTO `svd_products` VALUES(69, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2021', 'SRC 2021', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  900. INSERT INTO `svd_products` VALUES(70, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2022', 'SRC 2022', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  901. INSERT INTO `svd_products` VALUES(71, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2023', 'SRC 2023', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  902. INSERT INTO `svd_products` VALUES(72, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2024', 'SRC 2024', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  903. INSERT INTO `svd_products` VALUES(73, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2025', 'SRC 2025', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  904. INSERT INTO `svd_products` VALUES(74, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2026', 'SRC 2026', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  905. INSERT INTO `svd_products` VALUES(75, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2027', 'SRC 2027', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  906. INSERT INTO `svd_products` VALUES(76, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2028', 'SRC 2028', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  907. INSERT INTO `svd_products` VALUES(77, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2029', 'SRC 2029', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  908. INSERT INTO `svd_products` VALUES(78, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2030', 'SRC 2030', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  909. INSERT INTO `svd_products` VALUES(79, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2031', 'SRC 2031', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  910. INSERT INTO `svd_products` VALUES(80, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2032', 'SRC 2032', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  911. INSERT INTO `svd_products` VALUES(81, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2033', 'SRC 2033', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  912. INSERT INTO `svd_products` VALUES(82, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2034', 'SRC 2034', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  913. INSERT INTO `svd_products` VALUES(83, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2035', 'SRC 2035', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  914. INSERT INTO `svd_products` VALUES(84, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2036', 'SRC 2036', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  915. INSERT INTO `svd_products` VALUES(85, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2037', 'SRC 2037', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  916. INSERT INTO `svd_products` VALUES(86, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2038', 'SRC 2038', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  917. INSERT INTO `svd_products` VALUES(87, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2039', 'SRC 2039', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  918. INSERT INTO `svd_products` VALUES(88, 'a:3:{i:0;s:1:"1";i:1;s:2:"23";i:2;s:2:"18";}', 'SRC 2040', 'SRC 2040', 0.00, '0.00', 0.00, '', '', '', 0, 0, 0, 0, 1);
  919.  
  920. -- --------------------------------------------------------
  921.  
  922. --
  923. -- Table structure for table `svd_product_images`
  924. --
  925.  
  926. CREATE TABLE `svd_product_images` (
  927. `id` int(10) NOT NULL auto_increment,
  928. `name` varchar(255) NOT NULL,
  929. `owner_id` int(10) NOT NULL,
  930. `is_thumb` tinyint(1) NOT NULL default '0',
  931. PRIMARY KEY (`id`)
  932. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=328 ;
  933.  
  934. --
  935. -- Dumping data for table `svd_product_images`
  936. --
  937.  
  938. INSERT INTO `svd_product_images` VALUES(1, '354884_sanket20.jpg', 1, 1);
  939. INSERT INTO `svd_product_images` VALUES(2, '604078_sanket9.jpg', 1, 0);
  940. INSERT INTO `svd_product_images` VALUES(3, '933510_sanket11.jpg', 1, 0);
  941. INSERT INTO `svd_product_images` VALUES(4, '283463_sanket64.jpg', 1, 0);
  942. INSERT INTO `svd_product_images` VALUES(5, '232574_sanket54.jpg', 2, 1);
  943. INSERT INTO `svd_product_images` VALUES(6, '384449_Extra7.jpg', 2, 0);
  944. INSERT INTO `svd_product_images` VALUES(7, '915831_59.jpg', 2, 0);
  945. INSERT INTO `svd_product_images` VALUES(8, '287650_60.jpg', 2, 0);
  946. INSERT INTO `svd_product_images` VALUES(9, '783464_Extra2.jpg', 2, 0);
  947. INSERT INTO `svd_product_images` VALUES(10, '963194_Extra3.png', 2, 0);
  948. INSERT INTO `svd_product_images` VALUES(11, '973499_55.jpg', 2, 0);
  949. INSERT INTO `svd_product_images` VALUES(12, '777573_4005.jpg', 3, 1);
  950. INSERT INTO `svd_product_images` VALUES(13, '231017_4005 _ card.jpg', 3, 0);
  951. INSERT INTO `svd_product_images` VALUES(14, '692486_4005 _ cover.jpg', 3, 0);
  952. INSERT INTO `svd_product_images` VALUES(15, '900501_t.jpg', 4, 1);
  953. INSERT INTO `svd_product_images` VALUES(16, '11510_c.jpg', 4, 0);
  954. INSERT INTO `svd_product_images` VALUES(17, '349272_i.jpg', 4, 0);
  955. INSERT INTO `svd_product_images` VALUES(18, '569784_t.jpg', 5, 1);
  956. INSERT INTO `svd_product_images` VALUES(19, '581110_c.jpg', 5, 0);
  957. INSERT INTO `svd_product_images` VALUES(20, '342255_i.jpg', 5, 0);
  958. INSERT INTO `svd_product_images` VALUES(21, '380466_2006_t.jpg', 6, 1);
  959. INSERT INTO `svd_product_images` VALUES(22, '918209_2006_inner.jpg', 6, 0);
  960. INSERT INTO `svd_product_images` VALUES(23, '366839_2006_c.jpg', 6, 0);
  961. INSERT INTO `svd_product_images` VALUES(24, '570832_SRC 6001.jpg', 7, 1);
  962. INSERT INTO `svd_product_images` VALUES(25, '73455_SRC 6001 (1).jpg', 7, 0);
  963. INSERT INTO `svd_product_images` VALUES(26, '781228_SRC 6001 (2).jpg', 7, 0);
  964. INSERT INTO `svd_product_images` VALUES(27, '955279_SRC 6002 (1).jpg', 8, 1);
  965. INSERT INTO `svd_product_images` VALUES(28, '699989_SRC 6002.jpg', 8, 0);
  966. INSERT INTO `svd_product_images` VALUES(29, '428127_SRC 6002 (2).jpg', 8, 0);
  967. INSERT INTO `svd_product_images` VALUES(30, '500176_SRC 6003.jpg', 9, 1);
  968. INSERT INTO `svd_product_images` VALUES(31, '778725_SRC 6003 (2).jpg', 9, 0);
  969. INSERT INTO `svd_product_images` VALUES(32, '113166_SRC 6003 (1).jpg', 9, 0);
  970. INSERT INTO `svd_product_images` VALUES(33, '636055_SRC 6004.jpg', 10, 1);
  971. INSERT INTO `svd_product_images` VALUES(34, '359061_SRC 6004 (1).jpg', 10, 0);
  972. INSERT INTO `svd_product_images` VALUES(35, '121770_SRC 6004 (2).jpg', 10, 0);
  973. INSERT INTO `svd_product_images` VALUES(36, '732727_SRC 6005.jpg', 11, 1);
  974. INSERT INTO `svd_product_images` VALUES(37, '494680_SRC 6005 (2).jpg', 11, 0);
  975. INSERT INTO `svd_product_images` VALUES(38, '684156_SRC 6005 (1).jpg', 11, 0);
  976. INSERT INTO `svd_product_images` VALUES(39, '945537_SRC 6006.jpg', 12, 1);
  977. INSERT INTO `svd_product_images` VALUES(40, '679088_SRC 6006 (2).jpg', 12, 0);
  978. INSERT INTO `svd_product_images` VALUES(41, '73588_SRC 6006 (1).jpg', 12, 0);
  979. INSERT INTO `svd_product_images` VALUES(42, '279950_SRC 6007.jpg', 13, 1);
  980. INSERT INTO `svd_product_images` VALUES(43, '755406_SRC 6007 (2).jpg', 13, 0);
  981. INSERT INTO `svd_product_images` VALUES(44, '939979_SRC 6007 (1).jpg', 13, 0);
  982. INSERT INTO `svd_product_images` VALUES(45, '950790_SRC 6008.jpg', 14, 1);
  983. INSERT INTO `svd_product_images` VALUES(46, '529182_SRC 6008 (2).jpg', 14, 0);
  984. INSERT INTO `svd_product_images` VALUES(47, '68152_SRC 6008 (1).jpg', 14, 0);
  985. INSERT INTO `svd_product_images` VALUES(48, '459074_SRC 6009.jpg', 15, 1);
  986. INSERT INTO `svd_product_images` VALUES(49, '597880_SRC 6009 (2).jpg', 15, 0);
  987. INSERT INTO `svd_product_images` VALUES(50, '399112_SRC 6009 (1).jpg', 15, 0);
  988. INSERT INTO `svd_product_images` VALUES(51, '88102_SRC 6010.jpg', 16, 1);
  989. INSERT INTO `svd_product_images` VALUES(52, '6045_SRC 6010 (2).jpg', 16, 0);
  990. INSERT INTO `svd_product_images` VALUES(53, '110066_SRC 6010 (1).jpg', 16, 0);
  991. INSERT INTO `svd_product_images` VALUES(54, '629986_SRC 6011.jpg', 17, 1);
  992. INSERT INTO `svd_product_images` VALUES(55, '657526_SRC 6011 (2).jpg', 17, 0);
  993. INSERT INTO `svd_product_images` VALUES(56, '114385_SRC 6011 (1).jpg', 17, 0);
  994. INSERT INTO `svd_product_images` VALUES(57, '528055_SRC 6012 (2).jpg', 18, 1);
  995. INSERT INTO `svd_product_images` VALUES(58, '202774_SRC 6012 (1).jpg', 18, 0);
  996. INSERT INTO `svd_product_images` VALUES(59, '974166_SRC 6012.jpg', 18, 0);
  997. INSERT INTO `svd_product_images` VALUES(60, '879883_SRC 6013.jpg', 19, 1);
  998. INSERT INTO `svd_product_images` VALUES(61, '188240_SRC 6013 (2).jpg', 19, 0);
  999. INSERT INTO `svd_product_images` VALUES(62, '270834_SRC 6013 (1).jpg', 19, 0);
  1000. INSERT INTO `svd_product_images` VALUES(63, '662372_SRC 6014.jpg', 20, 1);
  1001. INSERT INTO `svd_product_images` VALUES(64, '770927_SRC 6014 (1).jpg', 20, 0);
  1002. INSERT INTO `svd_product_images` VALUES(65, '693250_SRC 6015.jpg', 21, 1);
  1003. INSERT INTO `svd_product_images` VALUES(66, '864420_SRC 6015 (2).jpg', 21, 0);
  1004. INSERT INTO `svd_product_images` VALUES(67, '208262_SRC 6015 (1).jpg', 21, 0);
  1005. INSERT INTO `svd_product_images` VALUES(68, '102901_SRC 6016.jpg', 22, 1);
  1006. INSERT INTO `svd_product_images` VALUES(69, '157554_SRC 6016 (2).jpg', 22, 0);
  1007. INSERT INTO `svd_product_images` VALUES(70, '730391_SRC 6016 (1).jpg', 22, 0);
  1008. INSERT INTO `svd_product_images` VALUES(71, '896135_SRC 6017.jpg', 23, 1);
  1009. INSERT INTO `svd_product_images` VALUES(72, '343022_SRC 6017 (2).jpg', 23, 0);
  1010. INSERT INTO `svd_product_images` VALUES(73, '18304_SRC 6017 (1).jpg', 23, 0);
  1011. INSERT INTO `svd_product_images` VALUES(74, '975494_SRC 6018.jpg', 24, 1);
  1012. INSERT INTO `svd_product_images` VALUES(75, '803859_SRC 6018 (2).jpg', 24, 0);
  1013. INSERT INTO `svd_product_images` VALUES(76, '645009_SRC 6018 (1).jpg', 24, 0);
  1014. INSERT INTO `svd_product_images` VALUES(77, '913585_SRC 6019.jpg', 25, 1);
  1015. INSERT INTO `svd_product_images` VALUES(78, '890800_SRC 6019 (2).jpg', 25, 0);
  1016. INSERT INTO `svd_product_images` VALUES(79, '862313_SRC 6019 (1).jpg', 25, 0);
  1017. INSERT INTO `svd_product_images` VALUES(80, '146176_SRC 6020.jpg', 26, 1);
  1018. INSERT INTO `svd_product_images` VALUES(81, '23817_SRC 6020 (2).jpg', 26, 0);
  1019. INSERT INTO `svd_product_images` VALUES(82, '2043_SRC 6020 (1).jpg', 26, 0);
  1020. INSERT INTO `svd_product_images` VALUES(83, '662306_SRC 2027.jpg', 27, 1);
  1021. INSERT INTO `svd_product_images` VALUES(84, '856300_SRC 2027 (1).jpg', 27, 0);
  1022. INSERT INTO `svd_product_images` VALUES(85, '628192_SRC 2027 (2).jpg', 27, 0);
  1023. INSERT INTO `svd_product_images` VALUES(86, '754104_SRC 6021.jpg', 28, 1);
  1024. INSERT INTO `svd_product_images` VALUES(87, '459887_SRC 6021 (1).jpg', 28, 0);
  1025. INSERT INTO `svd_product_images` VALUES(88, '545816_SRC 6021 (2).jpg', 28, 0);
  1026. INSERT INTO `svd_product_images` VALUES(89, '262000_SRC 6021 (3).jpg', 28, 0);
  1027. INSERT INTO `svd_product_images` VALUES(90, '511550_SRC 6021 (4).jpg', 28, 0);
  1028. INSERT INTO `svd_product_images` VALUES(91, '818545_SRC 6022.jpg', 29, 1);
  1029. INSERT INTO `svd_product_images` VALUES(92, '123388_SRC 6022 (1).jpg', 29, 0);
  1030. INSERT INTO `svd_product_images` VALUES(93, '266251_SRC 6022 (2).jpg', 29, 0);
  1031. INSERT INTO `svd_product_images` VALUES(94, '730119_SRC 6022 (3).jpg', 29, 0);
  1032. INSERT INTO `svd_product_images` VALUES(95, '620704_SRC 6023 (4).jpg', 30, 1);
  1033. INSERT INTO `svd_product_images` VALUES(96, '530251_SRC 6023 (2).jpg', 30, 0);
  1034. INSERT INTO `svd_product_images` VALUES(97, '315669_SRC 6023.jpg', 30, 0);
  1035. INSERT INTO `svd_product_images` VALUES(98, '960013_SRC 6023 (1).jpg', 30, 0);
  1036. INSERT INTO `svd_product_images` VALUES(99, '140682_SRC 6023 (4).jpg', 30, 0);
  1037. INSERT INTO `svd_product_images` VALUES(100, '854652_SRC 6024.jpg', 31, 1);
  1038. INSERT INTO `svd_product_images` VALUES(101, '104514_SRC 6024_1.jpg', 31, 0);
  1039. INSERT INTO `svd_product_images` VALUES(102, '157940_SRC 6024 (1).jpg', 31, 0);
  1040. INSERT INTO `svd_product_images` VALUES(103, '511751_SRC 6024 (2).jpg', 31, 0);
  1041. INSERT INTO `svd_product_images` VALUES(104, '22015_SRC 6024 (3).jpg', 31, 0);
  1042. INSERT INTO `svd_product_images` VALUES(105, '645590_SRC 6025.jpg', 32, 1);
  1043. INSERT INTO `svd_product_images` VALUES(106, '735123_SRC 6025 (1).jpg', 32, 0);
  1044. INSERT INTO `svd_product_images` VALUES(107, '617646_SRC 6025 (2).jpg', 32, 0);
  1045. INSERT INTO `svd_product_images` VALUES(108, '186323_SRC 6026 (2).jpg', 33, 1);
  1046. INSERT INTO `svd_product_images` VALUES(109, '66671_SRC 6026.jpg', 33, 0);
  1047. INSERT INTO `svd_product_images` VALUES(110, '689584_SRC 6026 (1).jpg', 33, 0);
  1048. INSERT INTO `svd_product_images` VALUES(111, '321563_SRC 6026 (3).jpg', 33, 0);
  1049. INSERT INTO `svd_product_images` VALUES(112, '229461_SRC 6028 (3).jpg', 34, 1);
  1050. INSERT INTO `svd_product_images` VALUES(113, '872083_SRC 6028 (2).jpg', 34, 0);
  1051. INSERT INTO `svd_product_images` VALUES(114, '430499_SRC 6028.jpg', 34, 0);
  1052. INSERT INTO `svd_product_images` VALUES(115, '711117_SRC 6028 (1).jpg', 34, 0);
  1053. INSERT INTO `svd_product_images` VALUES(116, '145605_SRC 6029.jpg', 35, 1);
  1054. INSERT INTO `svd_product_images` VALUES(117, '681275_SRC 6029 (1).jpg', 35, 0);
  1055. INSERT INTO `svd_product_images` VALUES(118, '38358_SRC 6029 (2).jpg', 35, 0);
  1056. INSERT INTO `svd_product_images` VALUES(119, '260066_SRC 6030.jpg', 36, 1);
  1057. INSERT INTO `svd_product_images` VALUES(120, '415641_SRC 6030 (1).jpg', 36, 0);
  1058. INSERT INTO `svd_product_images` VALUES(121, '227822_SRC 6030 (2).jpg', 36, 0);
  1059. INSERT INTO `svd_product_images` VALUES(122, '354222_SRC 6030 (3).jpg', 36, 0);
  1060. INSERT INTO `svd_product_images` VALUES(123, '381075_SRC 6031.jpg', 37, 1);
  1061. INSERT INTO `svd_product_images` VALUES(124, '888852_SRC 6031 (2).jpg', 37, 0);
  1062. INSERT INTO `svd_product_images` VALUES(125, '855239_SRC 6031 (1).jpg', 37, 0);
  1063. INSERT INTO `svd_product_images` VALUES(126, '666611_SRC 6032.jpg', 38, 1);
  1064. INSERT INTO `svd_product_images` VALUES(127, '229724_SRC 6032 (1).jpg', 38, 0);
  1065. INSERT INTO `svd_product_images` VALUES(128, '493762_SRC 6032 (2).jpg', 38, 0);
  1066. INSERT INTO `svd_product_images` VALUES(129, '820282_SRC 6032 (3).jpg', 38, 0);
  1067. INSERT INTO `svd_product_images` VALUES(130, '317935_SRC 6033.jpg', 39, 1);
  1068. INSERT INTO `svd_product_images` VALUES(131, '505772_SRC 6033 (2).jpg', 39, 0);
  1069. INSERT INTO `svd_product_images` VALUES(132, '760943_SRC 6033 (1).jpg', 39, 0);
  1070. INSERT INTO `svd_product_images` VALUES(133, '498493_SRC 6033 (3).jpg', 39, 0);
  1071. INSERT INTO `svd_product_images` VALUES(134, '9654_SRC 6034 (5).jpg', 40, 1);
  1072. INSERT INTO `svd_product_images` VALUES(135, '642767_SRC 6034 (6).jpg', 40, 0);
  1073. INSERT INTO `svd_product_images` VALUES(136, '61254_SRC 6034 (3).jpg', 40, 0);
  1074. INSERT INTO `svd_product_images` VALUES(137, '102972_SRC 6034 (4).jpg', 40, 0);
  1075. INSERT INTO `svd_product_images` VALUES(138, '205877_SRC 6034.jpg', 40, 0);
  1076. INSERT INTO `svd_product_images` VALUES(139, '832338_SRC 6034 (1).jpg', 40, 0);
  1077. INSERT INTO `svd_product_images` VALUES(140, '510790_SRC 6035 (6).jpg', 41, 1);
  1078. INSERT INTO `svd_product_images` VALUES(141, '144715_SRC 6035 (1).jpg', 41, 0);
  1079. INSERT INTO `svd_product_images` VALUES(142, '340768_SRC 6035 (5).jpg', 41, 0);
  1080. INSERT INTO `svd_product_images` VALUES(143, '382294_SRC 6035.jpg', 41, 0);
  1081. INSERT INTO `svd_product_images` VALUES(144, '355336_SRC 6036.jpg', 42, 1);
  1082. INSERT INTO `svd_product_images` VALUES(145, '124849_SRC 6036 (2).jpg', 42, 0);
  1083. INSERT INTO `svd_product_images` VALUES(146, '686025_SRC 6036 (3).jpg', 42, 0);
  1084. INSERT INTO `svd_product_images` VALUES(147, '450292_SRC 6036 (1).jpg', 42, 0);
  1085. INSERT INTO `svd_product_images` VALUES(148, '723882_SRC 6037.jpg', 43, 1);
  1086. INSERT INTO `svd_product_images` VALUES(149, '708988_SRC 6037 (2).jpg', 43, 0);
  1087. INSERT INTO `svd_product_images` VALUES(150, '147594_SRC 6037 (1).jpg', 43, 0);
  1088. INSERT INTO `svd_product_images` VALUES(151, '969779_SRC 6037 (3).jpg', 43, 0);
  1089. INSERT INTO `svd_product_images` VALUES(152, '446410_SRC 6038.jpg', 44, 1);
  1090. INSERT INTO `svd_product_images` VALUES(153, '277344_SRC 6038 (3).jpg', 44, 0);
  1091. INSERT INTO `svd_product_images` VALUES(154, '743573_SRC 6038 (2).jpg', 44, 0);
  1092. INSERT INTO `svd_product_images` VALUES(155, '642835_SRC 6038 (1).jpg', 44, 0);
  1093. INSERT INTO `svd_product_images` VALUES(156, '739724_SRC 6039.jpg', 45, 1);
  1094. INSERT INTO `svd_product_images` VALUES(157, '636027_SRC 6039 (1).jpg', 45, 0);
  1095. INSERT INTO `svd_product_images` VALUES(158, '917601_SRC 6040_1.jpg', 46, 1);
  1096. INSERT INTO `svd_product_images` VALUES(159, '293458_SRC 6040_1 (2).jpg', 46, 0);
  1097. INSERT INTO `svd_product_images` VALUES(160, '637185_SRC 6040_1 (1).jpg', 46, 0);
  1098. INSERT INTO `svd_product_images` VALUES(161, '417854_SRC 6040_1 (3).jpg', 46, 0);
  1099. INSERT INTO `svd_product_images` VALUES(162, '584413_SRC 6042 (1).jpg', 47, 1);
  1100. INSERT INTO `svd_product_images` VALUES(163, '933555_SRC 6042 (3).jpg', 47, 0);
  1101. INSERT INTO `svd_product_images` VALUES(164, '946615_SRC 6042 (2).jpg', 47, 0);
  1102. INSERT INTO `svd_product_images` VALUES(165, '608683_SRC 6042.jpg', 47, 0);
  1103. INSERT INTO `svd_product_images` VALUES(166, '307770_SRC 6041 (1).jpg', 48, 1);
  1104. INSERT INTO `svd_product_images` VALUES(167, '597073_SRC 6041.jpg', 48, 0);
  1105. INSERT INTO `svd_product_images` VALUES(168, '424724_SRC 6041 (2).jpg', 48, 0);
  1106. INSERT INTO `svd_product_images` VALUES(169, '607715_2001.jpg', 49, 1);
  1107. INSERT INTO `svd_product_images` VALUES(170, '231616_2001 _ inner.jpg', 49, 0);
  1108. INSERT INTO `svd_product_images` VALUES(171, '468493_2001 _ cover.jpg', 49, 0);
  1109. INSERT INTO `svd_product_images` VALUES(172, '197915_2002.jpg', 50, 1);
  1110. INSERT INTO `svd_product_images` VALUES(173, '6166_2002 _ Tital.jpg', 50, 0);
  1111. INSERT INTO `svd_product_images` VALUES(174, '452011_2002 _ inner.jpg', 50, 0);
  1112. INSERT INTO `svd_product_images` VALUES(175, '182924_2002 _ cover.JPG', 50, 0);
  1113. INSERT INTO `svd_product_images` VALUES(176, '741147_2003.JPG', 51, 1);
  1114. INSERT INTO `svd_product_images` VALUES(177, '41078_2003 _ Tital.jpg', 51, 0);
  1115. INSERT INTO `svd_product_images` VALUES(178, '822293_2003 _ inner.jpg', 51, 0);
  1116. INSERT INTO `svd_product_images` VALUES(179, '602822_2003 _ cover.jpg', 51, 0);
  1117. INSERT INTO `svd_product_images` VALUES(180, '275633_2004.jpg', 52, 1);
  1118. INSERT INTO `svd_product_images` VALUES(181, '207896_2004 _ Tital.jpg', 52, 0);
  1119. INSERT INTO `svd_product_images` VALUES(182, '87700_2004 _ inner.jpg', 52, 0);
  1120. INSERT INTO `svd_product_images` VALUES(183, '840599_2004 _ cover.JPG', 52, 0);
  1121. INSERT INTO `svd_product_images` VALUES(184, '381861_2005.jpg', 53, 1);
  1122. INSERT INTO `svd_product_images` VALUES(185, '176053_2005 _ Tital.jpg', 53, 0);
  1123. INSERT INTO `svd_product_images` VALUES(186, '546859_2005 _ inner.jpg', 53, 0);
  1124. INSERT INTO `svd_product_images` VALUES(187, '468794_2005 _ cover.JPG', 53, 0);
  1125. INSERT INTO `svd_product_images` VALUES(188, '855365_2006.jpg', 54, 1);
  1126. INSERT INTO `svd_product_images` VALUES(189, '289657_2006 _ Tital.jpg', 54, 0);
  1127. INSERT INTO `svd_product_images` VALUES(190, '633917_2006 _ Inner.jpg', 54, 0);
  1128. INSERT INTO `svd_product_images` VALUES(191, '884787_2006 _ cover.jpg', 54, 0);
  1129. INSERT INTO `svd_product_images` VALUES(192, '997288_2007.jpg', 55, 1);
  1130. INSERT INTO `svd_product_images` VALUES(193, '629783_2007 _ Tital.jpg', 55, 0);
  1131. INSERT INTO `svd_product_images` VALUES(194, '514303_2007 _ inner.jpg', 55, 0);
  1132. INSERT INTO `svd_product_images` VALUES(195, '169940_2007 _ cover.jpg', 55, 0);
  1133. INSERT INTO `svd_product_images` VALUES(196, '506832_2008.jpg', 56, 1);
  1134. INSERT INTO `svd_product_images` VALUES(197, '750466_2008 _ Tital.jpg', 56, 0);
  1135. INSERT INTO `svd_product_images` VALUES(198, '395725_2008 _ inner.jpg', 56, 0);
  1136. INSERT INTO `svd_product_images` VALUES(199, '140846_2008 _ cover.JPG', 56, 0);
  1137. INSERT INTO `svd_product_images` VALUES(200, '475631_2009.jpg', 57, 1);
  1138. INSERT INTO `svd_product_images` VALUES(201, '153800_2009 _ Tital.jpg', 57, 0);
  1139. INSERT INTO `svd_product_images` VALUES(202, '170926_2009 _ inner.jpg', 57, 0);
  1140. INSERT INTO `svd_product_images` VALUES(203, '352007_2009 _ cover.jpg', 57, 0);
  1141. INSERT INTO `svd_product_images` VALUES(204, '745976_2010.jpg', 58, 1);
  1142. INSERT INTO `svd_product_images` VALUES(205, '648569_2010 _ Tital.jpg', 58, 0);
  1143. INSERT INTO `svd_product_images` VALUES(206, '835104_2010 _ inner.JPG', 58, 0);
  1144. INSERT INTO `svd_product_images` VALUES(207, '165556_2010 _ cover.jpg', 58, 0);
  1145. INSERT INTO `svd_product_images` VALUES(208, '677185_2011.jpg', 59, 1);
  1146. INSERT INTO `svd_product_images` VALUES(209, '892472_2011 _ Tital.jpg', 59, 0);
  1147. INSERT INTO `svd_product_images` VALUES(210, '776690_2011 _ inner.jpg', 59, 0);
  1148. INSERT INTO `svd_product_images` VALUES(211, '196276_2011 _ cover.jpg', 59, 0);
  1149. INSERT INTO `svd_product_images` VALUES(212, '509633_2012.jpg', 60, 1);
  1150. INSERT INTO `svd_product_images` VALUES(213, '690244_2012 _ Tital.jpg', 60, 0);
  1151. INSERT INTO `svd_product_images` VALUES(214, '223949_2012 _ inner.jpg', 60, 0);
  1152. INSERT INTO `svd_product_images` VALUES(215, '701961_2012 _ cover.jpg', 60, 0);
  1153. INSERT INTO `svd_product_images` VALUES(216, '489448_2013.jpg', 61, 1);
  1154. INSERT INTO `svd_product_images` VALUES(217, '700548_2013 _ tital.jpg', 61, 0);
  1155. INSERT INTO `svd_product_images` VALUES(218, '437660_2013 _ Inner.jpg', 61, 0);
  1156. INSERT INTO `svd_product_images` VALUES(219, '258870_2013 _ cover.jpg', 61, 0);
  1157. INSERT INTO `svd_product_images` VALUES(220, '739872_2014.jpg', 62, 1);
  1158. INSERT INTO `svd_product_images` VALUES(221, '942214_2014 _ Tital.jpg', 62, 0);
  1159. INSERT INTO `svd_product_images` VALUES(222, '445402_2014 _ inner.jpg', 62, 0);
  1160. INSERT INTO `svd_product_images` VALUES(223, '826894_2014 _ cover.jpg', 62, 0);
  1161. INSERT INTO `svd_product_images` VALUES(224, '511401_2015.jpg', 63, 1);
  1162. INSERT INTO `svd_product_images` VALUES(225, '930020_2015 _ Tital.jpg', 63, 0);
  1163. INSERT INTO `svd_product_images` VALUES(226, '523684_2015 _ inner.jpg', 63, 0);
  1164. INSERT INTO `svd_product_images` VALUES(227, '229651_2015 _ cover.jpg', 63, 0);
  1165. INSERT INTO `svd_product_images` VALUES(228, '988812_2016.jpg', 64, 1);
  1166. INSERT INTO `svd_product_images` VALUES(229, '617877_2016 _ Tital.jpg', 64, 0);
  1167. INSERT INTO `svd_product_images` VALUES(230, '647946_2016 _ Inner.jpg', 64, 0);
  1168. INSERT INTO `svd_product_images` VALUES(231, '497157_2016 _ cover.jpg', 64, 0);
  1169. INSERT INTO `svd_product_images` VALUES(232, '808111_2017.jpg', 65, 1);
  1170. INSERT INTO `svd_product_images` VALUES(233, '695034_2017 _ Tital.jpg', 65, 0);
  1171. INSERT INTO `svd_product_images` VALUES(234, '129880_2017 _ inner.jpg', 65, 0);
  1172. INSERT INTO `svd_product_images` VALUES(235, '105248_2017 _ cover.jpg', 65, 0);
  1173. INSERT INTO `svd_product_images` VALUES(236, '805368_2018.jpg', 66, 1);
  1174. INSERT INTO `svd_product_images` VALUES(237, '436690_2018 _ Tital.jpg', 66, 0);
  1175. INSERT INTO `svd_product_images` VALUES(238, '549029_2018 _ inner.jpg', 66, 0);
  1176. INSERT INTO `svd_product_images` VALUES(239, '695406_2018 _ cover.jpg', 66, 0);
  1177. INSERT INTO `svd_product_images` VALUES(240, '369225_2019.jpg', 67, 1);
  1178. INSERT INTO `svd_product_images` VALUES(241, '490107_2019 _ Tital.jpg', 67, 0);
  1179. INSERT INTO `svd_product_images` VALUES(242, '87755_2019 _ Inner.jpg', 67, 0);
  1180. INSERT INTO `svd_product_images` VALUES(243, '894437_2019 _ cover.jpg', 67, 0);
  1181. INSERT INTO `svd_product_images` VALUES(244, '448582_2020.jpg', 68, 1);
  1182. INSERT INTO `svd_product_images` VALUES(245, '489866_2020 _ Tital.jpg', 68, 0);
  1183. INSERT INTO `svd_product_images` VALUES(246, '20215_2020 _ Inner.jpg', 68, 0);
  1184. INSERT INTO `svd_product_images` VALUES(247, '45749_2020 _ cover.jpg', 68, 0);
  1185. INSERT INTO `svd_product_images` VALUES(248, '469105_2021.jpg', 69, 1);
  1186. INSERT INTO `svd_product_images` VALUES(249, '369203_2021 _ Tital.jpg', 69, 0);
  1187. INSERT INTO `svd_product_images` VALUES(250, '849961_2021 _ inner.jpg', 69, 0);
  1188. INSERT INTO `svd_product_images` VALUES(251, '946286_2021 _ cover.JPG', 69, 0);
  1189. INSERT INTO `svd_product_images` VALUES(252, '655751_2022.jpg', 70, 1);
  1190. INSERT INTO `svd_product_images` VALUES(253, '563289_2022 _ tital.jpg', 70, 0);
  1191. INSERT INTO `svd_product_images` VALUES(254, '123236_2022 _ Inner.jpg', 70, 0);
  1192. INSERT INTO `svd_product_images` VALUES(255, '311542_2022 _ cover.jpg', 70, 0);
  1193. INSERT INTO `svd_product_images` VALUES(256, '716452_2023.jpg', 71, 1);
  1194. INSERT INTO `svd_product_images` VALUES(257, '787973_2023 _ Tital.jpg', 71, 0);
  1195. INSERT INTO `svd_product_images` VALUES(258, '635126_2023 _ inner.jpg', 71, 0);
  1196. INSERT INTO `svd_product_images` VALUES(259, '493494_2023 _ cover.jpg', 71, 0);
  1197. INSERT INTO `svd_product_images` VALUES(260, '714741_2024.jpg', 72, 1);
  1198. INSERT INTO `svd_product_images` VALUES(261, '894634_2024 _ Tital.jpg', 72, 0);
  1199. INSERT INTO `svd_product_images` VALUES(262, '979623_2024 _ Inner.jpg', 72, 0);
  1200. INSERT INTO `svd_product_images` VALUES(263, '606122_2024 _ cover.jpg', 72, 0);
  1201. INSERT INTO `svd_product_images` VALUES(264, '43108_2025.jpg', 73, 1);
  1202. INSERT INTO `svd_product_images` VALUES(265, '326803_2025 _Tital.jpg', 73, 0);
  1203. INSERT INTO `svd_product_images` VALUES(266, '917664_2025 _inner.jpg', 73, 0);
  1204. INSERT INTO `svd_product_images` VALUES(267, '246283_2025 _ Cover.jpg', 73, 0);
  1205. INSERT INTO `svd_product_images` VALUES(268, '243473_2026.jpg', 74, 1);
  1206. INSERT INTO `svd_product_images` VALUES(269, '104297_2026 _ Tital.jpg', 74, 0);
  1207. INSERT INTO `svd_product_images` VALUES(270, '296112_2026 _ inner.jpg', 74, 0);
  1208. INSERT INTO `svd_product_images` VALUES(271, '30631_2026 _ cover.jpg', 74, 0);
  1209. INSERT INTO `svd_product_images` VALUES(272, '288987_2027.jpg', 75, 1);
  1210. INSERT INTO `svd_product_images` VALUES(273, '873478_2027 _ Tital.jpg', 75, 0);
  1211. INSERT INTO `svd_product_images` VALUES(274, '315569_2027 _ inner.jpg', 75, 0);
  1212. INSERT INTO `svd_product_images` VALUES(275, '870286_2027 _ cover.jpg', 75, 0);
  1213. INSERT INTO `svd_product_images` VALUES(276, '716525_2028.jpg', 76, 1);
  1214. INSERT INTO `svd_product_images` VALUES(277, '797595_2028 _ Tital.jpg', 76, 0);
  1215. INSERT INTO `svd_product_images` VALUES(278, '889168_2028 _ Inner.jpg', 76, 0);
  1216. INSERT INTO `svd_product_images` VALUES(279, '130762_2028 _ cover.JPG', 76, 0);
  1217. INSERT INTO `svd_product_images` VALUES(280, '8683_2029.jpg', 77, 1);
  1218. INSERT INTO `svd_product_images` VALUES(281, '683185_2029 _ Tital.jpg', 77, 0);
  1219. INSERT INTO `svd_product_images` VALUES(282, '318080_2029 _ inner.jpg', 77, 0);
  1220. INSERT INTO `svd_product_images` VALUES(283, '902007_2029 _ cover.jpg', 77, 0);
  1221. INSERT INTO `svd_product_images` VALUES(284, '114622_2030.jpg', 78, 1);
  1222. INSERT INTO `svd_product_images` VALUES(285, '321144_2030 _ Tital.jpg', 78, 0);
  1223. INSERT INTO `svd_product_images` VALUES(286, '294388_2030 _ inner.jpg', 78, 0);
  1224. INSERT INTO `svd_product_images` VALUES(287, '117177_2030 _ cover.jpg', 78, 0);
  1225. INSERT INTO `svd_product_images` VALUES(288, '604913_2031.jpg', 79, 1);
  1226. INSERT INTO `svd_product_images` VALUES(289, '347876_2031 _ Tital.jpg', 79, 0);
  1227. INSERT INTO `svd_product_images` VALUES(290, '741128_2031 _ inner.JPG', 79, 0);
  1228. INSERT INTO `svd_product_images` VALUES(291, '39960_2031 _ cover.jpg', 79, 0);
  1229. INSERT INTO `svd_product_images` VALUES(292, '194905_2032.jpg', 80, 1);
  1230. INSERT INTO `svd_product_images` VALUES(293, '953805_2032 _ Tital.jpg', 80, 0);
  1231. INSERT INTO `svd_product_images` VALUES(294, '215203_2032 _ inner.jpg', 80, 0);
  1232. INSERT INTO `svd_product_images` VALUES(295, '568094_2032 _ cover.jpg', 80, 0);
  1233. INSERT INTO `svd_product_images` VALUES(296, '167098_2033.jpg', 81, 1);
  1234. INSERT INTO `svd_product_images` VALUES(297, '284032_2033 _ Tital.jpg', 81, 0);
  1235. INSERT INTO `svd_product_images` VALUES(298, '939276_2033 _ inner.jpg', 81, 0);
  1236. INSERT INTO `svd_product_images` VALUES(299, '653919_2033 _ cover.jpg', 81, 0);
  1237. INSERT INTO `svd_product_images` VALUES(300, '290984_2034.jpg', 82, 1);
  1238. INSERT INTO `svd_product_images` VALUES(301, '63700_2034 _ Tital.jpg', 82, 0);
  1239. INSERT INTO `svd_product_images` VALUES(302, '380211_2034 _ inner.jpg', 82, 0);
  1240. INSERT INTO `svd_product_images` VALUES(303, '691932_2034 _ cover.jpg', 82, 0);
  1241. INSERT INTO `svd_product_images` VALUES(304, '979667_2035.jpg', 83, 1);
  1242. INSERT INTO `svd_product_images` VALUES(305, '473130_2035 _ Tital.jpg', 83, 0);
  1243. INSERT INTO `svd_product_images` VALUES(306, '252161_2035 _ Inner.jpg', 83, 0);
  1244. INSERT INTO `svd_product_images` VALUES(307, '71601_2035 _ cover.JPG', 83, 0);
  1245. INSERT INTO `svd_product_images` VALUES(308, '99746_2036.jpg', 84, 1);
  1246. INSERT INTO `svd_product_images` VALUES(309, '861371_2036 _ Tital.jpg', 84, 0);
  1247. INSERT INTO `svd_product_images` VALUES(310, '32356_2036 _ inner.jpg', 84, 0);
  1248. INSERT INTO `svd_product_images` VALUES(311, '841862_2036 _ cover.jpg', 84, 0);
  1249. INSERT INTO `svd_product_images` VALUES(312, '809006_2037.jpg', 85, 1);
  1250. INSERT INTO `svd_product_images` VALUES(313, '727091_2037 _ Tital.jpg', 85, 0);
  1251. INSERT INTO `svd_product_images` VALUES(314, '283913_2037 _ inner.jpg', 85, 0);
  1252. INSERT INTO `svd_product_images` VALUES(315, '948707_2037 _ cover.jpg', 85, 0);
  1253. INSERT INTO `svd_product_images` VALUES(316, '603421_2038.jpg', 86, 1);
  1254. INSERT INTO `svd_product_images` VALUES(317, '274020_2038 _ Tital.JPG', 86, 0);
  1255. INSERT INTO `svd_product_images` VALUES(318, '654606_2038 _ inner.jpg', 86, 0);
  1256. INSERT INTO `svd_product_images` VALUES(319, '720930_2038 _ cover.jpg', 86, 0);
  1257. INSERT INTO `svd_product_images` VALUES(320, '381700_2039.jpg', 87, 1);
  1258. INSERT INTO `svd_product_images` VALUES(321, '944095_2039 _ Tital.jpg', 87, 0);
  1259. INSERT INTO `svd_product_images` VALUES(322, '213996_2039 _ inner.jpg', 87, 0);
  1260. INSERT INTO `svd_product_images` VALUES(323, '628897_2039 _ cover.jpg', 87, 0);
  1261. INSERT INTO `svd_product_images` VALUES(324, '84620_2040.jpg', 88, 1);
  1262. INSERT INTO `svd_product_images` VALUES(325, '986920_2040 _ tital.jpg', 88, 0);
  1263. INSERT INTO `svd_product_images` VALUES(326, '322060_2040 _ inner.jpg', 88, 0);
  1264. INSERT INTO `svd_product_images` VALUES(327, '319854_2040 _ cover.jpg', 88, 0);
  1265.  
  1266. -- --------------------------------------------------------
  1267.  
  1268. --
  1269. -- Table structure for table `svd_setting`
  1270. --
  1271.  
  1272. CREATE TABLE `svd_setting` (
  1273. `vDesc` varchar(255) NOT NULL default '',
  1274. `vName` varchar(255) NOT NULL default '',
  1275. `vValue` varchar(255) NOT NULL default '',
  1276. `vOrder` int(10) NOT NULL default '0',
  1277. `eStatus` enum('Active','Inactive','Deleted') NOT NULL default 'Active'
  1278. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  1279.  
  1280. --
  1281. -- Dumping data for table `svd_setting`
  1282. --
  1283.  
  1284. INSERT INTO `svd_setting` VALUES('Main Site Title', 'site_title', 'SARVODAY', 1, 'Active');
  1285. INSERT INTO `svd_setting` VALUES('Site Control Panel Site Title', 'admin_title', 'www.sarvoday.com - Control panel', 2, 'Active');
  1286. INSERT INTO `svd_setting` VALUES('Admin Email', 'ADMIN_EMAIL', 'sarvoday@sarvoday.com', 3, 'Active');
  1287. INSERT INTO `svd_setting` VALUES('Display Email at bottom(Support Email)', 'SUPPORT_MAIL', '', 4, 'Active');
  1288. INSERT INTO `svd_setting` VALUES('Site Control Panel Title', 'cpanel_title', 'SARVODAY', 5, 'Active');
  1289. INSERT INTO `svd_setting` VALUES('No Of Records Per Page (Admin Section)', 'RECLIMIT', '20', 6, 'Active');
  1290. INSERT INTO `svd_setting` VALUES('Page Limit (Admin Section)', 'PAGELIMIT', '5', 7, 'Active');
  1291. INSERT INTO `svd_setting` VALUES('Copyright Text', 'COPYRIGHTS_TEXT', '', 10, 'Active');
  1292. INSERT INTO `svd_setting` VALUES('Mail Footer', 'MAIL_FOOTER', '', 11, 'Active');
  1293. INSERT INTO `svd_setting` VALUES('Mail Header', 'MAIL_HEADER', 'Dear Friends,', 12, 'Active');
  1294. INSERT INTO `svd_setting` VALUES('Default Language', 'DEF_LANGUAGE', 'English', 11, 'Active');
  1295. INSERT INTO `svd_setting` VALUES('Footer 1', 'site_footer_1', 'Copyright ©2010,SARVODAY.,', 13, 'Active');
  1296. INSERT INTO `svd_setting` VALUES('Footer 2', 'site_footer_2', 'All rights reserved. Site Designed by', 14, 'Active');
  1297. INSERT INTO `svd_setting` VALUES('Footer 3', 'site_footer_3', '<a href="http://www.elitechsystems.com/" target="_blank" style=" text-decoration: none;">Elitechsystems</a>.', 14, 'Active');
  1298. INSERT INTO `svd_setting` VALUES('Main Site Title', 'site_title', 'SARVODAY', 1, 'Active');
  1299. INSERT INTO `svd_setting` VALUES('Site Control Panel Site Title', 'admin_title', 'www.sarvoday.com - Control panel', 2, 'Active');
  1300. INSERT INTO `svd_setting` VALUES('Admin Email', 'ADMIN_EMAIL', 'sarvoday@sarvoday.com', 3, 'Active');
  1301. INSERT INTO `svd_setting` VALUES('Display Email at bottom(Support Email)', 'SUPPORT_MAIL', '', 4, 'Active');
  1302. INSERT INTO `svd_setting` VALUES('Site Control Panel Title', 'cpanel_title', 'SARVODAY', 5, 'Active');
  1303. INSERT INTO `svd_setting` VALUES('No Of Records Per Page (Admin Section)', 'RECLIMIT', '20', 6, 'Active');
  1304. INSERT INTO `svd_setting` VALUES('Page Limit (Admin Section)', 'PAGELIMIT', '5', 7, 'Active');
  1305. INSERT INTO `svd_setting` VALUES('Copyright Text', 'COPYRIGHTS_TEXT', '', 10, 'Active');
  1306. INSERT INTO `svd_setting` VALUES('Mail Footer', 'MAIL_FOOTER', '', 11, 'Active');
  1307. INSERT INTO `svd_setting` VALUES('Mail Header', 'MAIL_HEADER', 'Dear Friends,', 12, 'Active');
  1308. INSERT INTO `svd_setting` VALUES('Default Language', 'DEF_LANGUAGE', 'English', 11, 'Active');
  1309. INSERT INTO `svd_setting` VALUES('Footer 1', 'site_footer_1', 'Copyright ©2010,SARVODAY.,', 13, 'Active');
  1310. INSERT INTO `svd_setting` VALUES('Footer 2', 'site_footer_2', 'All rights reserved. Site Designed by', 14, 'Active');
  1311. INSERT INTO `svd_setting` VALUES('Footer 3', 'site_footer_3', '<a href="http://www.elitechsystems.com/" target="_blank" style=" text-decoration: none;">Elitechsystems</a>.', 14, 'Active');
  1312. ###############################################################################################################################
  1313.  
  1314.  
  1315.  
  1316. TRELLO :
  1317. https://trello.com/c/Xu0Nw5x3/88-username-xxbronanxx623-password-bronan623-type-function-0733ca58-age-4-days
  1318. Username: XxbronanxX623 Password: bronan623 Type: function: 0733CA58 Age: 4 days
  1319. ################################
  1320.  
  1321. LEAKED ADMIN PASSWORDS BELOW
  1322.  
  1323. ####### xcosta.arq.br ########
  1324. ADMIN PASSES
  1325. setup:7IOsoSq5NH.UY
  1326. jmrexach:7IOsoSq5NH.UY
  1327. dniko:7Ig2Td91fUMXY
  1328. xcosta:Z9OUQecqEZKGg
  1329. ###############################
  1330.  
  1331. ####### e-scan.com #######
  1332. # -FrontPage-
  1333. e-scan.com:wMyvw4d3c1oWU
  1334. ##########################
  1335.  
  1336. ####### itmdapps.ci.mil.wi.us #######
  1337. # -FrontPage-
  1338. chapan:1UzQhFADd/Yik
  1339. jsteng:PnGmShcek2J7w
  1340. ######################################
  1341.  
  1342. FTP CREDZZZ:
  1343.  
  1344. ##### www.hinkleprojects.com #####
  1345. {
  1346. "protocol": "ftp",
  1347. "host": "ftp.hinkleprojects.com",
  1348. "port": 21,
  1349. "user": "ahinkle",
  1350. "pass": "E4zzfu{yzVa8",
  1351. "promptForPass": false,
  1352. "remote": "/www/",
  1353. "secure": false,
  1354. "secureOptions": null,
  1355. "connTimeout": 10000,
  1356. "pasvTimeout": 10000,
  1357. "keepalive": 10000,
  1358. "watch": []
  1359. }
  1360. ###################################
  1361.  
  1362. ##### filemanager.fh-co.com #####
  1363. {
  1364. "protocol": "sftp",
  1365. "host": "kirk.ibeccreative.com", // string - Hostname or IP address of the server. Default: 'localhost'
  1366. "port": 22, // integer - Port number of the server. Default: 22
  1367. "user": "fhcibec", // string - Username for authentication. Default: (none)
  1368. "pass": "eT53M#Is+]Ct", // string - Password for password-based user authentication. Default: (none)
  1369. "promptForPass": false, // boolean - Set to true for enable password/passphrase dialog. This will prevent from using cleartext password/passphrase in this config. Default: false
  1370. "remote": "/home/fhcibec/public_html/sites/all/themes/neutron/",
  1371. "agent": "", // string - Path to ssh-agent's UNIX socket for ssh-agent-based user authentication. Windows users: set to 'pageant' for authenticating with Pageant or (actual) path to a cygwin "UNIX socket." Default: (none)
  1372. "privatekey": "", // string - Path to the private key file (in OpenSSH format). Default: (none)
  1373. "passphrase": "", // string - For an encrypted private key, this is the passphrase used to decrypt it. Default: (none)
  1374. "hosthash": "md5", // string - 'md5' or 'sha1'. The host's key is hashed using this method and passed to the hostVerifier function. Default: (none)
  1375. "ignorehost": true,
  1376. "connTimeout": 10000, // integer - How long (in milliseconds) to wait for the SSH handshake to complete. Default: 10000
  1377. "keepalive": 10000 // integer - How often (in milliseconds) to send SSH-level keepalive packets to the server (in a similar way as OpenSSH's ServerAliveInterval config option). Set to 0 to disable. Default: 10000
  1378. }
  1379. ####################################
  1380.  
  1381. #### anvietftp.com ####
  1382. This XML file does not appear to have any style information associated with it. The document tree is shown below.
  1383. <FileZilla3>
  1384. <Servers>
  1385. <Server>
  1386. <Host>service.freistellen.de</Host>
  1387. <Port>21</Port>
  1388. <Protocol>0</Protocol>
  1389. <Type>0</Type>
  1390. <User>service_000052</User>
  1391. <Pass>D-8gpx4fmt</Pass>
  1392. <Logontype>1</Logontype>
  1393. <TimezoneOffset>0</TimezoneOffset>
  1394. <PasvMode>MODE_DEFAULT</PasvMode>
  1395. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1396. <EncodingType>Auto</EncodingType>
  1397. <BypassProxy>0</BypassProxy>
  1398. <Name>3W</Name>
  1399. <Comments/>
  1400. <LocalDir/>
  1401. <RemoteDir/>
  1402. <SyncBrowsing>0</SyncBrowsing>
  1403. 3W
  1404. </Server>
  1405. <Server>
  1406. <Host>ftp.anvietftp.com</Host>
  1407. <Port>21</Port>
  1408. <Protocol>0</Protocol>
  1409. <Type>0</Type>
  1410. <User>alexstudio2@anvietftp.com</User>
  1411. <Pass>123456</Pass>
  1412. <Logontype>1</Logontype>
  1413. <TimezoneOffset>0</TimezoneOffset>
  1414. <PasvMode>MODE_DEFAULT</PasvMode>
  1415. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1416. <EncodingType>Auto</EncodingType>
  1417. <BypassProxy>0</BypassProxy>
  1418. <Name>Alexstudio</Name>
  1419. <Comments/>
  1420. <LocalDir/>
  1421. <RemoteDir/>
  1422. <SyncBrowsing>0</SyncBrowsing>
  1423. Alexstudio
  1424. </Server>
  1425. <Server>
  1426. <Host>soellcom-portal.de</Host>
  1427. <Port>21</Port>
  1428. <Protocol>0</Protocol>
  1429. <Type>0</Type>
  1430. <User>Produkte</User>
  1431. <Pass>prod2014!!</Pass>
  1432. <Logontype>1</Logontype>
  1433. <TimezoneOffset>0</TimezoneOffset>
  1434. <PasvMode>MODE_DEFAULT</PasvMode>
  1435. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1436. <EncodingType>Auto</EncodingType>
  1437. <BypassProxy>0</BypassProxy>
  1438. <Name>Angelia</Name>
  1439. <Comments/>
  1440. <LocalDir/>
  1441. <RemoteDir/>
  1442. <SyncBrowsing>0</SyncBrowsing>
  1443. Angelia
  1444. </Server>
  1445. <Server>
  1446. <Host>ftp.anvietftp.com</Host>
  1447. <Port>21</Port>
  1448. <Protocol>0</Protocol>
  1449. <Type>0</Type>
  1450. <User>anvietft</User>
  1451. <Pass>av123456</Pass>
  1452. <Logontype>1</Logontype>
  1453. <TimezoneOffset>0</TimezoneOffset>
  1454. <PasvMode>MODE_DEFAULT</PasvMode>
  1455. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1456. <EncodingType>Auto</EncodingType>
  1457. <BypassProxy>0</BypassProxy>
  1458. <Name>AnvietFTP</Name>
  1459. <Comments/>
  1460. <LocalDir/>
  1461. <RemoteDir/>
  1462. <SyncBrowsing>0</SyncBrowsing>
  1463. AnvietFTP
  1464. </Server>
  1465. <Server>
  1466. <Host>anvietpro.com</Host>
  1467. <Port>21</Port>
  1468. <Protocol>0</Protocol>
  1469. <Type>0</Type>
  1470. <User>anvietproftp</User>
  1471. <Pass>Ayd1Lvdd</Pass>
  1472. <Logontype>1</Logontype>
  1473. <TimezoneOffset>0</TimezoneOffset>
  1474. <PasvMode>MODE_DEFAULT</PasvMode>
  1475. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1476. <EncodingType>Auto</EncodingType>
  1477. <BypassProxy>0</BypassProxy>
  1478. <Name>AnvietPro</Name>
  1479. <Comments/>
  1480. <LocalDir/>
  1481. <RemoteDir/>
  1482. <SyncBrowsing>0</SyncBrowsing>
  1483. AnvietPro
  1484. </Server>
  1485. <Server>
  1486. <Host>ftp.anvietftp.com</Host>
  1487. <Port>21</Port>
  1488. <Protocol>0</Protocol>
  1489. <Type>0</Type>
  1490. <User>server@anvietftp.com</User>
  1491. <Pass>123456</Pass>
  1492. <Logontype>1</Logontype>
  1493. <TimezoneOffset>0</TimezoneOffset>
  1494. <PasvMode>MODE_DEFAULT</PasvMode>
  1495. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1496. <EncodingType>Auto</EncodingType>
  1497. <BypassProxy>0</BypassProxy>
  1498. <Name>AV-Server</Name>
  1499. <Comments/>
  1500. <LocalDir/>
  1501. <RemoteDir/>
  1502. <SyncBrowsing>0</SyncBrowsing>
  1503. AV-Server
  1504. </Server>
  1505. <Server>
  1506. <Host>web.farbanalyse.de</Host>
  1507. <Port>21</Port>
  1508. <Protocol>0</Protocol>
  1509. <Type>0</Type>
  1510. <User>nvan07</User>
  1511. <Pass>1GGL0jbDG8sA</Pass>
  1512. <Logontype>1</Logontype>
  1513. <TimezoneOffset>0</TimezoneOffset>
  1514. <PasvMode>MODE_DEFAULT</PasvMode>
  1515. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1516. <EncodingType>Auto</EncodingType>
  1517. <BypassProxy>0</BypassProxy>
  1518. <Name>Christina</Name>
  1519. <Comments/>
  1520. <LocalDir/>
  1521. <RemoteDir/>
  1522. <SyncBrowsing>0</SyncBrowsing>
  1523. Christina
  1524. </Server>
  1525. <Server>
  1526. <Host>colognepictures.de</Host>
  1527. <Port>21</Port>
  1528. <Protocol>0</Protocol>
  1529. <Type>0</Type>
  1530. <User>anviet</User>
  1531. <Pass>nguy3nv8nan</Pass>
  1532. <Logontype>1</Logontype>
  1533. <TimezoneOffset>0</TimezoneOffset>
  1534. <PasvMode>MODE_DEFAULT</PasvMode>
  1535. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1536. <EncodingType>Auto</EncodingType>
  1537. <BypassProxy>0</BypassProxy>
  1538. <Name>Clemen</Name>
  1539. <Comments/>
  1540. <LocalDir/>
  1541. <RemoteDir/>
  1542. <SyncBrowsing>0</SyncBrowsing>
  1543. Clemen
  1544. </Server>
  1545. <Server>
  1546. <Host>ftp.cutmyshots.at</Host>
  1547. <Port>21</Port>
  1548. <Protocol>0</Protocol>
  1549. <Type>0</Type>
  1550. <User>cutmysh_6</User>
  1551. <Pass>yfR1aP8j4hQU5SDs</Pass>
  1552. <Logontype>1</Logontype>
  1553. <TimezoneOffset>0</TimezoneOffset>
  1554. <PasvMode>MODE_DEFAULT</PasvMode>
  1555. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1556. <EncodingType>Auto</EncodingType>
  1557. <BypassProxy>0</BypassProxy>
  1558. <Name>CutShotNew</Name>
  1559. <Comments/>
  1560. <LocalDir/>
  1561. <RemoteDir/>
  1562. <SyncBrowsing>0</SyncBrowsing>
  1563. CutShotNew
  1564. </Server>
  1565. <Server>
  1566. <Host>134.119.234.17</Host>
  1567. <Port>21</Port>
  1568. <Protocol>0</Protocol>
  1569. <Type>0</Type>
  1570. <User>338404-ANVI</User>
  1571. <Pass>089Muenchen</Pass>
  1572. <Logontype>1</Logontype>
  1573. <TimezoneOffset>0</TimezoneOffset>
  1574. <PasvMode>MODE_DEFAULT</PasvMode>
  1575. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1576. <EncodingType>Auto</EncodingType>
  1577. <BypassProxy>0</BypassProxy>
  1578. <Name>Doerre New</Name>
  1579. <Comments/>
  1580. <LocalDir/>
  1581. <RemoteDir/>
  1582. <SyncBrowsing>0</SyncBrowsing>
  1583. Doerre New
  1584. </Server>
  1585. <Server>
  1586. <Host>208.92.132.41</Host>
  1587. <Port>21</Port>
  1588. <Protocol>0</Protocol>
  1589. <Type>0</Type>
  1590. <User>ericpare05</User>
  1591. <Pass>4g8g3</Pass>
  1592. <Logontype>1</Logontype>
  1593. <TimezoneOffset>0</TimezoneOffset>
  1594. <PasvMode>MODE_DEFAULT</PasvMode>
  1595. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1596. <EncodingType>Auto</EncodingType>
  1597. <BypassProxy>0</BypassProxy>
  1598. <Name>Eric</Name>
  1599. <Comments/>
  1600. <LocalDir/>
  1601. <RemoteDir/>
  1602. <SyncBrowsing>0</SyncBrowsing>
  1603. Eric
  1604. </Server>
  1605. <Server>
  1606. <Host>www.lotus-digital.de</Host>
  1607. <Port>21</Port>
  1608. <Protocol>0</Protocol>
  1609. <Type>0</Type>
  1610. <User>p7183532-3</User>
  1611. <Pass>G4fTrLp</Pass>
  1612. <Logontype>1</Logontype>
  1613. <TimezoneOffset>0</TimezoneOffset>
  1614. <PasvMode>MODE_DEFAULT</PasvMode>
  1615. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1616. <EncodingType>Auto</EncodingType>
  1617. <BypassProxy>0</BypassProxy>
  1618. <Name>Florian</Name>
  1619. <Comments/>
  1620. <LocalDir/>
  1621. <RemoteDir/>
  1622. <SyncBrowsing>0</SyncBrowsing>
  1623. Florian
  1624. </Server>
  1625. <Server>
  1626. <Host>192.168.1.50</Host>
  1627. <Port>21</Port>
  1628. <Protocol>0</Protocol>
  1629. <Type>0</Type>
  1630. <User>anviet</User>
  1631. <Pass>av123456</Pass>
  1632. <Logontype>1</Logontype>
  1633. <TimezoneOffset>0</TimezoneOffset>
  1634. <PasvMode>MODE_DEFAULT</PasvMode>
  1635. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1636. <EncodingType>Auto</EncodingType>
  1637. <BypassProxy>0</BypassProxy>
  1638. <Name>FOTOS</Name>
  1639. <Comments/>
  1640. <LocalDir/>
  1641. <RemoteDir/>
  1642. <SyncBrowsing>0</SyncBrowsing>
  1643. FOTOS
  1644. </Server>
  1645. <Server>
  1646. <Host>ftp.froschauer.com</Host>
  1647. <Port>21</Port>
  1648. <Protocol>0</Protocol>
  1649. <Type>0</Type>
  1650. <User>ftp_froschauerkunde</User>
  1651. <Pass>fr0schauer!Kunde</Pass>
  1652. <Logontype>1</Logontype>
  1653. <TimezoneOffset>0</TimezoneOffset>
  1654. <PasvMode>MODE_DEFAULT</PasvMode>
  1655. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1656. <EncodingType>Auto</EncodingType>
  1657. <BypassProxy>0</BypassProxy>
  1658. <Name>Froschauer</Name>
  1659. <Comments/>
  1660. <LocalDir/>
  1661. <RemoteDir/>
  1662. <SyncBrowsing>0</SyncBrowsing>
  1663. Froschauer
  1664. </Server>
  1665. <Server>
  1666. <Host>ftp.ppam.de</Host>
  1667. <Port>21</Port>
  1668. <Protocol>0</Protocol>
  1669. <Type>0</Type>
  1670. <User>u8856713-anviet</User>
  1671. <Pass>a1n2v3i4e5t6</Pass>
  1672. <Logontype>1</Logontype>
  1673. <TimezoneOffset>0</TimezoneOffset>
  1674. <PasvMode>MODE_DEFAULT</PasvMode>
  1675. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1676. <EncodingType>Auto</EncodingType>
  1677. <BypassProxy>0</BypassProxy>
  1678. <Name>Gutjahr</Name>
  1679. <Comments/>
  1680. <LocalDir/>
  1681. <RemoteDir/>
  1682. <SyncBrowsing>0</SyncBrowsing>
  1683. Gutjahr
  1684. </Server>
  1685. <Server>
  1686. <Host>188.111.73.246</Host>
  1687. <Port>2121</Port>
  1688. <Protocol>0</Protocol>
  1689. <Type>0</Type>
  1690. <User>anviet</User>
  1691. <Pass>pic4Hamberger</Pass>
  1692. <Logontype>1</Logontype>
  1693. <TimezoneOffset>0</TimezoneOffset>
  1694. <PasvMode>MODE_DEFAULT</PasvMode>
  1695. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1696. <EncodingType>Auto</EncodingType>
  1697. <BypassProxy>0</BypassProxy>
  1698. <Name>Hamberger</Name>
  1699. <Comments/>
  1700. <LocalDir/>
  1701. <RemoteDir/>
  1702. <SyncBrowsing>0</SyncBrowsing>
  1703. Hamberger
  1704. </Server>
  1705. <Server>
  1706. <Host>ftp.cutmyshots.at</Host>
  1707. <Port>21</Port>
  1708. <Protocol>0</Protocol>
  1709. <Type>0</Type>
  1710. <User>cutmysh_3</User>
  1711. <Pass>CcSFJnxiB8Dh7GN4</Pass>
  1712. <Logontype>1</Logontype>
  1713. <TimezoneOffset>0</TimezoneOffset>
  1714. <PasvMode>MODE_DEFAULT</PasvMode>
  1715. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1716. <EncodingType>Auto</EncodingType>
  1717. <BypassProxy>0</BypassProxy>
  1718. <Name>Hillinger</Name>
  1719. <Comments/>
  1720. <LocalDir/>
  1721. <RemoteDir/>
  1722. <SyncBrowsing>0</SyncBrowsing>
  1723. Hillinger
  1724. </Server>
  1725. <Server>
  1726. <Host>88.79.135.104</Host>
  1727. <Port>21</Port>
  1728. <Protocol>0</Protocol>
  1729. <Type>0</Type>
  1730. <User>anviet</User>
  1731. <Pass>123456</Pass>
  1732. <Logontype>1</Logontype>
  1733. <TimezoneOffset>0</TimezoneOffset>
  1734. <PasvMode>MODE_DEFAULT</PasvMode>
  1735. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1736. <EncodingType>Auto</EncodingType>
  1737. <BypassProxy>0</BypassProxy>
  1738. <Name>ISOK</Name>
  1739. <Comments/>
  1740. <LocalDir/>
  1741. <RemoteDir/>
  1742. <SyncBrowsing>0</SyncBrowsing>
  1743. ISOK
  1744. </Server>
  1745. <Server>
  1746. <Host>ftp.pro-medien.de</Host>
  1747. <Port>21</Port>
  1748. <Protocol>0</Protocol>
  1749. <Type>0</Type>
  1750. <User>anvietpro</User>
  1751. <Pass>anvietpro01</Pass>
  1752. <Logontype>1</Logontype>
  1753. <TimezoneOffset>0</TimezoneOffset>
  1754. <PasvMode>MODE_DEFAULT</PasvMode>
  1755. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1756. <EncodingType>Auto</EncodingType>
  1757. <BypassProxy>0</BypassProxy>
  1758. <Name>KlausIn</Name>
  1759. <Comments/>
  1760. <LocalDir/>
  1761. <RemoteDir/>
  1762. <SyncBrowsing>0</SyncBrowsing>
  1763. KlausIn
  1764. </Server>
  1765. <Server>
  1766. <Host>ftp.pro-medien.de</Host>
  1767. <Port>21</Port>
  1768. <Protocol>0</Protocol>
  1769. <Type>0</Type>
  1770. <User>to_pro_medien</User>
  1771. <Pass>to_pro_medien_2</Pass>
  1772. <Logontype>1</Logontype>
  1773. <TimezoneOffset>0</TimezoneOffset>
  1774. <PasvMode>MODE_DEFAULT</PasvMode>
  1775. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1776. <EncodingType>Auto</EncodingType>
  1777. <BypassProxy>0</BypassProxy>
  1778. <Name>KlausOut</Name>
  1779. <Comments/>
  1780. <LocalDir/>
  1781. <RemoteDir/>
  1782. <SyncBrowsing>0</SyncBrowsing>
  1783. KlausOut
  1784. </Server>
  1785. <Server>
  1786. <Host>ftpna.mtdproducts.com</Host>
  1787. <Port>21</Port>
  1788. <Protocol>0</Protocol>
  1789. <Type>0</Type>
  1790. <User>xchange</User>
  1791. <Pass>jeTrA7WubUye</Pass>
  1792. <Logontype>1</Logontype>
  1793. <TimezoneOffset>0</TimezoneOffset>
  1794. <PasvMode>MODE_DEFAULT</PasvMode>
  1795. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1796. <EncodingType>Auto</EncodingType>
  1797. <BypassProxy>0</BypassProxy>
  1798. <Name>Klein</Name>
  1799. <Comments/>
  1800. <LocalDir/>
  1801. <RemoteDir/>
  1802. <SyncBrowsing>0</SyncBrowsing>
  1803. Klein
  1804. </Server>
  1805. <Server>
  1806. <Host>ftp.kleinhempel.de</Host>
  1807. <Port>21</Port>
  1808. <Protocol>0</Protocol>
  1809. <Type>0</Type>
  1810. <User>anviet</User>
  1811. <Pass>nguyenvanan</Pass>
  1812. <Logontype>1</Logontype>
  1813. <TimezoneOffset>0</TimezoneOffset>
  1814. <PasvMode>MODE_DEFAULT</PasvMode>
  1815. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1816. <EncodingType>Auto</EncodingType>
  1817. <BypassProxy>0</BypassProxy>
  1818. <Name>Kleinhempel</Name>
  1819. <Comments/>
  1820. <LocalDir/>
  1821. <RemoteDir/>
  1822. <SyncBrowsing>0</SyncBrowsing>
  1823. Kleinhempel
  1824. </Server>
  1825. <Server>
  1826. <Host>srv-a-de.c-520.maxcluster.net</Host>
  1827. <Port>21</Port>
  1828. <Protocol>0</Protocol>
  1829. <Type>0</Type>
  1830. <User>ftp-user-6</User>
  1831. <Pass>TQN73dpWbwP8FGq01j9C</Pass>
  1832. <Logontype>1</Logontype>
  1833. <TimezoneOffset>0</TimezoneOffset>
  1834. <PasvMode>MODE_DEFAULT</PasvMode>
  1835. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1836. <EncodingType>Auto</EncodingType>
  1837. <BypassProxy>0</BypassProxy>
  1838. <Name>Klos</Name>
  1839. <Comments/>
  1840. <LocalDir/>
  1841. <RemoteDir/>
  1842. <SyncBrowsing>0</SyncBrowsing>
  1843. Klos
  1844. </Server>
  1845. <Server>
  1846. <Host>ftp.hidrive.strato.com</Host>
  1847. <Port>21</Port>
  1848. <Protocol>0</Protocol>
  1849. <Type>0</Type>
  1850. <User>arbeit2013</User>
  1851. <Pass>mediastudio</Pass>
  1852. <Logontype>1</Logontype>
  1853. <TimezoneOffset>0</TimezoneOffset>
  1854. <PasvMode>MODE_DEFAULT</PasvMode>
  1855. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1856. <EncodingType>Auto</EncodingType>
  1857. <BypassProxy>0</BypassProxy>
  1858. <Name>Krauze</Name>
  1859. <Comments/>
  1860. <LocalDir/>
  1861. <RemoteDir/>
  1862. <SyncBrowsing>0</SyncBrowsing>
  1863. Krauze
  1864. </Server>
  1865. <Server>
  1866. <Host>gecko360.com</Host>
  1867. <Port>21</Port>
  1868. <Protocol>0</Protocol>
  1869. <Type>0</Type>
  1870. <User>f74</User>
  1871. <Pass>Nguyen01</Pass>
  1872. <Logontype>1</Logontype>
  1873. <TimezoneOffset>0</TimezoneOffset>
  1874. <PasvMode>MODE_DEFAULT</PasvMode>
  1875. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1876. <EncodingType>Auto</EncodingType>
  1877. <BypassProxy>0</BypassProxy>
  1878. <Name>Kuckertz</Name>
  1879. <Comments/>
  1880. <LocalDir/>
  1881. <RemoteDir/>
  1882. <SyncBrowsing>0</SyncBrowsing>
  1883. Kuckertz
  1884. </Server>
  1885. <Server>
  1886. <Host>ftp.perac.de</Host>
  1887. <Port>21</Port>
  1888. <Protocol>0</Protocol>
  1889. <Type>0</Type>
  1890. <User>Anviet</User>
  1891. <Pass>7v5Rty3H</Pass>
  1892. <Logontype>1</Logontype>
  1893. <TimezoneOffset>0</TimezoneOffset>
  1894. <PasvMode>MODE_DEFAULT</PasvMode>
  1895. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1896. <EncodingType>Auto</EncodingType>
  1897. <BypassProxy>0</BypassProxy>
  1898. <Name>Kusen</Name>
  1899. <Comments/>
  1900. <LocalDir>Anviet</LocalDir>
  1901. <RemoteDir/>
  1902. <SyncBrowsing>0</SyncBrowsing>
  1903. Kusen
  1904. </Server>
  1905. <Server>
  1906. <Host>192.168.1.2</Host>
  1907. <Port>21</Port>
  1908. <Protocol>0</Protocol>
  1909. <Type>0</Type>
  1910. <User>NVA</User>
  1911. <Pass>av123456</Pass>
  1912. <Logontype>1</Logontype>
  1913. <TimezoneOffset>0</TimezoneOffset>
  1914. <PasvMode>MODE_DEFAULT</PasvMode>
  1915. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1916. <EncodingType>Auto</EncodingType>
  1917. <BypassProxy>0</BypassProxy>
  1918. <Name>LapTop D</Name>
  1919. <Comments/>
  1920. <LocalDir/>
  1921. <RemoteDir/>
  1922. <SyncBrowsing>0</SyncBrowsing>
  1923. LapTop D
  1924. </Server>
  1925. <Server>
  1926. <Host>ftp.laubscher-ftp.de</Host>
  1927. <Port>21</Port>
  1928. <Protocol>0</Protocol>
  1929. <Type>0</Type>
  1930. <User>anviet</User>
  1931. <Pass>hanoi4711</Pass>
  1932. <Logontype>1</Logontype>
  1933. <TimezoneOffset>0</TimezoneOffset>
  1934. <PasvMode>MODE_DEFAULT</PasvMode>
  1935. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1936. <EncodingType>Auto</EncodingType>
  1937. <BypassProxy>0</BypassProxy>
  1938. <Name>Laubscher</Name>
  1939. <Comments/>
  1940. <LocalDir/>
  1941. <RemoteDir/>
  1942. <SyncBrowsing>0</SyncBrowsing>
  1943. Laubscher
  1944. </Server>
  1945. <Server>
  1946. <Host>156497.webhosting53.1blu.de</Host>
  1947. <Port>21</Port>
  1948. <Protocol>0</Protocol>
  1949. <Type>0</Type>
  1950. <User>ftp156497-anvietpro</User>
  1951. <Pass>4anvietpro!!</Pass>
  1952. <Logontype>1</Logontype>
  1953. <TimezoneOffset>0</TimezoneOffset>
  1954. <PasvMode>MODE_DEFAULT</PasvMode>
  1955. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1956. <EncodingType>Auto</EncodingType>
  1957. <BypassProxy>0</BypassProxy>
  1958. <Name>Licht&Line</Name>
  1959. <Comments/>
  1960. <LocalDir/>
  1961. <RemoteDir/>
  1962. <SyncBrowsing>0</SyncBrowsing>
  1963. Licht&Line
  1964. </Server>
  1965. <Server>
  1966. <Host>84.27.43.181</Host>
  1967. <Port>7000</Port>
  1968. <Protocol>0</Protocol>
  1969. <Type>0</Type>
  1970. <User>anviet</User>
  1971. <Pass>bewerker</Pass>
  1972. <Logontype>1</Logontype>
  1973. <TimezoneOffset>0</TimezoneOffset>
  1974. <PasvMode>MODE_DEFAULT</PasvMode>
  1975. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1976. <EncodingType>Auto</EncodingType>
  1977. <BypassProxy>0</BypassProxy>
  1978. <Name>Maessen</Name>
  1979. <Comments/>
  1980. <LocalDir/>
  1981. <RemoteDir/>
  1982. <SyncBrowsing>0</SyncBrowsing>
  1983. Maessen
  1984. </Server>
  1985. <Server>
  1986. <Host>84.105.69.167</Host>
  1987. <Port>7000</Port>
  1988. <Protocol>0</Protocol>
  1989. <Type>0</Type>
  1990. <User>An Viet</User>
  1991. <Pass>schoensmeer08!</Pass>
  1992. <Logontype>1</Logontype>
  1993. <TimezoneOffset>0</TimezoneOffset>
  1994. <PasvMode>MODE_DEFAULT</PasvMode>
  1995. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  1996. <EncodingType>Auto</EncodingType>
  1997. <BypassProxy>0</BypassProxy>
  1998. <Name>Maessen New</Name>
  1999. <Comments/>
  2000. <LocalDir/>
  2001. <RemoteDir/>
  2002. <SyncBrowsing>0</SyncBrowsing>
  2003. Maessen New
  2004. </Server>
  2005. <Server>
  2006. <Host>ftp.anvietftp.com</Host>
  2007. <Port>21</Port>
  2008. <Protocol>0</Protocol>
  2009. <Type>0</Type>
  2010. <User>minhanh@anvietftp.com</User>
  2011. <Pass>123456</Pass>
  2012. <Logontype>1</Logontype>
  2013. <TimezoneOffset>0</TimezoneOffset>
  2014. <PasvMode>MODE_DEFAULT</PasvMode>
  2015. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2016. <EncodingType>Auto</EncodingType>
  2017. <BypassProxy>0</BypassProxy>
  2018. <Name>Minhanh</Name>
  2019. <Comments/>
  2020. <LocalDir/>
  2021. <RemoteDir/>
  2022. <SyncBrowsing>0</SyncBrowsing>
  2023. Minhanh
  2024. </Server>
  2025. <Server>
  2026. <Host>nyrotic.com</Host>
  2027. <Port>21</Port>
  2028. <Protocol>0</Protocol>
  2029. <Type>0</Type>
  2030. <User>ftp1nyrotic</User>
  2031. <Pass>Ftp16368</Pass>
  2032. <Logontype>1</Logontype>
  2033. <TimezoneOffset>0</TimezoneOffset>
  2034. <PasvMode>MODE_DEFAULT</PasvMode>
  2035. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2036. <EncodingType>Auto</EncodingType>
  2037. <BypassProxy>0</BypassProxy>
  2038. <Name>Nyran</Name>
  2039. <Comments/>
  2040. <LocalDir/>
  2041. <RemoteDir/>
  2042. <SyncBrowsing>0</SyncBrowsing>
  2043. Nyran
  2044. </Server>
  2045. <Server>
  2046. <Host>erfolgsphoto.de</Host>
  2047. <Port>21</Port>
  2048. <Protocol>0</Protocol>
  2049. <Type>0</Type>
  2050. <User>177339-anviet</User>
  2051. <Pass>gast268438</Pass>
  2052. <Logontype>1</Logontype>
  2053. <TimezoneOffset>0</TimezoneOffset>
  2054. <PasvMode>MODE_DEFAULT</PasvMode>
  2055. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2056. <EncodingType>Auto</EncodingType>
  2057. <BypassProxy>0</BypassProxy>
  2058. <Name>Pfeifer</Name>
  2059. <Comments/>
  2060. <LocalDir/>
  2061. <RemoteDir/>
  2062. <SyncBrowsing>0</SyncBrowsing>
  2063. Pfeifer
  2064. </Server>
  2065. <Server>
  2066. <Host>produktfoto-und-freisteller.de</Host>
  2067. <Port>21</Port>
  2068. <Protocol>0</Protocol>
  2069. <Type>0</Type>
  2070. <User>web42f29</User>
  2071. <Pass>NguyenVanAn</Pass>
  2072. <Logontype>1</Logontype>
  2073. <TimezoneOffset>0</TimezoneOffset>
  2074. <PasvMode>MODE_DEFAULT</PasvMode>
  2075. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2076. <EncodingType>Auto</EncodingType>
  2077. <BypassProxy>0</BypassProxy>
  2078. <Name>PRO 3</Name>
  2079. <Comments/>
  2080. <LocalDir/>
  2081. <RemoteDir/>
  2082. <SyncBrowsing>0</SyncBrowsing>
  2083. PRO 3
  2084. </Server>
  2085. <Server>
  2086. <Host>promusictools.ch</Host>
  2087. <Port>21</Port>
  2088. <Protocol>0</Protocol>
  2089. <Type>0</Type>
  2090. <User>f00a9535</User>
  2091. <Pass>aEKV6gazXqYHHdps</Pass>
  2092. <Logontype>1</Logontype>
  2093. <TimezoneOffset>0</TimezoneOffset>
  2094. <PasvMode>MODE_DEFAULT</PasvMode>
  2095. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2096. <EncodingType>Auto</EncodingType>
  2097. <BypassProxy>0</BypassProxy>
  2098. <Name>ProMusik</Name>
  2099. <Comments/>
  2100. <LocalDir/>
  2101. <RemoteDir/>
  2102. <SyncBrowsing>0</SyncBrowsing>
  2103. ProMusik
  2104. </Server>
  2105. <Server>
  2106. <Host>srv-a-de.c-520.maxcluster.net</Host>
  2107. <Port>21</Port>
  2108. <Protocol>0</Protocol>
  2109. <Type>0</Type>
  2110. <User>ftp-user-6</User>
  2111. <Pass>TQN73dpWbwP8FGq01j9C</Pass>
  2112. <Logontype>1</Logontype>
  2113. <TimezoneOffset>0</TimezoneOffset>
  2114. <PasvMode>MODE_DEFAULT</PasvMode>
  2115. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2116. <EncodingType>Auto</EncodingType>
  2117. <BypassProxy>0</BypassProxy>
  2118. <Name>ProMusik New</Name>
  2119. <Comments/>
  2120. <LocalDir/>
  2121. <RemoteDir/>
  2122. <SyncBrowsing>0</SyncBrowsing>
  2123. ProMusik New
  2124. </Server>
  2125. <Server>
  2126. <Host>81.169.249.155</Host>
  2127. <Port>21</Port>
  2128. <Protocol>0</Protocol>
  2129. <Type>0</Type>
  2130. <User>NguyenVanAn</User>
  2131. <Pass>NguyenVanAn</Pass>
  2132. <Logontype>1</Logontype>
  2133. <TimezoneOffset>0</TimezoneOffset>
  2134. <PasvMode>MODE_DEFAULT</PasvMode>
  2135. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2136. <EncodingType>Auto</EncodingType>
  2137. <BypassProxy>0</BypassProxy>
  2138. <Name>PRO-New</Name>
  2139. <Comments/>
  2140. <LocalDir/>
  2141. <RemoteDir/>
  2142. <SyncBrowsing>0</SyncBrowsing>
  2143. PRO-New
  2144. </Server>
  2145. <Server>
  2146. <Host>217.237.165.75</Host>
  2147. <Port>21</Port>
  2148. <Protocol>0</Protocol>
  2149. <Type>0</Type>
  2150. <User>Bilder</User>
  2151. <Pass>crypt.dll</Pass>
  2152. <Logontype>1</Logontype>
  2153. <TimezoneOffset>0</TimezoneOffset>
  2154. <PasvMode>MODE_DEFAULT</PasvMode>
  2155. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2156. <EncodingType>Auto</EncodingType>
  2157. <BypassProxy>0</BypassProxy>
  2158. <Name>Rasu</Name>
  2159. <Comments/>
  2160. <LocalDir/>
  2161. <RemoteDir/>
  2162. <SyncBrowsing>0</SyncBrowsing>
  2163. Rasu
  2164. </Server>
  2165. <Server>
  2166. <Host>ftp.strato.com</Host>
  2167. <Port>21</Port>
  2168. <Protocol>0</Protocol>
  2169. <Type>0</Type>
  2170. <User>ftp_teutonia@scanbull.net</User>
  2171. <Pass>T2uhBhQn</Pass>
  2172. <Logontype>1</Logontype>
  2173. <TimezoneOffset>0</TimezoneOffset>
  2174. <PasvMode>MODE_DEFAULT</PasvMode>
  2175. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2176. <EncodingType>Auto</EncodingType>
  2177. <BypassProxy>0</BypassProxy>
  2178. <Name>Scanbull</Name>
  2179. <Comments/>
  2180. <LocalDir/>
  2181. <RemoteDir/>
  2182. <SyncBrowsing>0</SyncBrowsing>
  2183. Scanbull
  2184. </Server>
  2185. <Server>
  2186. <Host>ftp.anvietftp.com</Host>
  2187. <Port>21</Port>
  2188. <Protocol>0</Protocol>
  2189. <Type>0</Type>
  2190. <User>selina@anvietftp.com</User>
  2191. <Pass>123456</Pass>
  2192. <Logontype>1</Logontype>
  2193. <TimezoneOffset>0</TimezoneOffset>
  2194. <PasvMode>MODE_DEFAULT</PasvMode>
  2195. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2196. <EncodingType>Auto</EncodingType>
  2197. <BypassProxy>0</BypassProxy>
  2198. <Name>Selina</Name>
  2199. <Comments/>
  2200. <LocalDir/>
  2201. <RemoteDir/>
  2202. <SyncBrowsing>0</SyncBrowsing>
  2203. Selina
  2204. </Server>
  2205. <Server>
  2206. <Host>ftp.bytecamp.net</Host>
  2207. <Port>21</Port>
  2208. <Protocol>0</Protocol>
  2209. <Type>0</Type>
  2210. <User>4480xKVTWTJMD</User>
  2211. <Pass>1uTD760laZp</Pass>
  2212. <Logontype>1</Logontype>
  2213. <TimezoneOffset>0</TimezoneOffset>
  2214. <PasvMode>MODE_DEFAULT</PasvMode>
  2215. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2216. <EncodingType>Auto</EncodingType>
  2217. <BypassProxy>0</BypassProxy>
  2218. <Name>Sewerin</Name>
  2219. <Comments/>
  2220. <LocalDir/>
  2221. <RemoteDir/>
  2222. <SyncBrowsing>0</SyncBrowsing>
  2223. Sewerin
  2224. </Server>
  2225. <Server>
  2226. <Host>Laserscan-experte.de</Host>
  2227. <Port>21</Port>
  2228. <Protocol>0</Protocol>
  2229. <Type>0</Type>
  2230. <User>web24878484f5</User>
  2231. <Pass>9tyROzd0</Pass>
  2232. <Logontype>1</Logontype>
  2233. <TimezoneOffset>0</TimezoneOffset>
  2234. <PasvMode>MODE_DEFAULT</PasvMode>
  2235. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2236. <EncodingType>Auto</EncodingType>
  2237. <BypassProxy>0</BypassProxy>
  2238. <Name>Sewerin New</Name>
  2239. <Comments/>
  2240. <LocalDir/>
  2241. <RemoteDir/>
  2242. <SyncBrowsing>0</SyncBrowsing>
  2243. Sewerin New
  2244. </Server>
  2245. <Server>
  2246. <Host>ftp.kleinhempel.de</Host>
  2247. <Port>21</Port>
  2248. <Protocol>0</Protocol>
  2249. <Type>0</Type>
  2250. <User>anviet</User>
  2251. <Pass>nguyenvanan</Pass>
  2252. <Logontype>1</Logontype>
  2253. <TimezoneOffset>0</TimezoneOffset>
  2254. <PasvMode>MODE_DEFAULT</PasvMode>
  2255. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2256. <EncodingType>Auto</EncodingType>
  2257. <BypassProxy>0</BypassProxy>
  2258. <Name>Simon</Name>
  2259. <Comments/>
  2260. <LocalDir/>
  2261. <RemoteDir/>
  2262. <SyncBrowsing>0</SyncBrowsing>
  2263. Simon
  2264. </Server>
  2265. <Server>
  2266. <Host>www.rheinzeichnen.de</Host>
  2267. <Port>21</Port>
  2268. <Protocol>0</Protocol>
  2269. <Type>0</Type>
  2270. <User>ftp37523-anviet</User>
  2271. <Pass>pixelchic</Pass>
  2272. <Logontype>1</Logontype>
  2273. <TimezoneOffset>0</TimezoneOffset>
  2274. <PasvMode>MODE_DEFAULT</PasvMode>
  2275. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2276. <EncodingType>Auto</EncodingType>
  2277. <BypassProxy>0</BypassProxy>
  2278. <Name>Spiller</Name>
  2279. <Comments/>
  2280. <LocalDir/>
  2281. <RemoteDir/>
  2282. <SyncBrowsing>0</SyncBrowsing>
  2283. Spiller
  2284. </Server>
  2285. <Server>
  2286. <Host>ftp.thavis.com</Host>
  2287. <Port>21</Port>
  2288. <Protocol>0</Protocol>
  2289. <Type>0</Type>
  2290. <User>24697-ebv</User>
  2291. <Pass>dWW2KDrB3j</Pass>
  2292. <Logontype>1</Logontype>
  2293. <TimezoneOffset>0</TimezoneOffset>
  2294. <PasvMode>MODE_DEFAULT</PasvMode>
  2295. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2296. <EncodingType>Auto</EncodingType>
  2297. <BypassProxy>0</BypassProxy>
  2298. <Name>Thavis</Name>
  2299. <Comments/>
  2300. <LocalDir/>
  2301. <RemoteDir/>
  2302. <SyncBrowsing>0</SyncBrowsing>
  2303. Thavis
  2304. </Server>
  2305. <Server>
  2306. <Host>ftp.anvietftp.com</Host>
  2307. <Port>21</Port>
  2308. <Protocol>0</Protocol>
  2309. <Type>0</Type>
  2310. <User>thuyduong@anvietftp.com</User>
  2311. <Pass>123456</Pass>
  2312. <Logontype>1</Logontype>
  2313. <TimezoneOffset>0</TimezoneOffset>
  2314. <PasvMode>MODE_DEFAULT</PasvMode>
  2315. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2316. <EncodingType>Auto</EncodingType>
  2317. <BypassProxy>0</BypassProxy>
  2318. <Name>Thuyduong</Name>
  2319. <Comments/>
  2320. <LocalDir/>
  2321. <RemoteDir/>
  2322. <SyncBrowsing>0</SyncBrowsing>
  2323. Thuyduong
  2324. </Server>
  2325. <Server>
  2326. <Host>e16381-ftp.services.easyname.eu</Host>
  2327. <Port>21</Port>
  2328. <Protocol>0</Protocol>
  2329. <Type>0</Type>
  2330. <User>9356ftp9</User>
  2331. <Pass>digiart4kunden</Pass>
  2332. <Logontype>1</Logontype>
  2333. <TimezoneOffset>0</TimezoneOffset>
  2334. <PasvMode>MODE_DEFAULT</PasvMode>
  2335. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2336. <EncodingType>Auto</EncodingType>
  2337. <BypassProxy>0</BypassProxy>
  2338. <Name>Tornow</Name>
  2339. <Comments/>
  2340. <LocalDir/>
  2341. <RemoteDir/>
  2342. <SyncBrowsing>0</SyncBrowsing>
  2343. Tornow
  2344. </Server>
  2345. <Server>
  2346. <Host>ftp.anvietftp.com</Host>
  2347. <Port>21</Port>
  2348. <Protocol>0</Protocol>
  2349. <Type>0</Type>
  2350. <User>Van-AV@anvietftp.com</User>
  2351. <Pass>av123456</Pass>
  2352. <Logontype>1</Logontype>
  2353. <TimezoneOffset>0</TimezoneOffset>
  2354. <PasvMode>MODE_DEFAULT</PasvMode>
  2355. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2356. <EncodingType>Auto</EncodingType>
  2357. <BypassProxy>0</BypassProxy>
  2358. <Name>Van-AV</Name>
  2359. <Comments/>
  2360. <LocalDir/>
  2361. <RemoteDir/>
  2362. <SyncBrowsing>0</SyncBrowsing>
  2363. Van-AV
  2364. </Server>
  2365. <Server>
  2366. <Host>wp10956904.vwp8417.webpack.hosteurope.de</Host>
  2367. <Port>21</Port>
  2368. <Protocol>0</Protocol>
  2369. <Type>0</Type>
  2370. <User>ftp10956904-anviet</User>
  2371. <Pass>info-anviet</Pass>
  2372. <Logontype>1</Logontype>
  2373. <TimezoneOffset>0</TimezoneOffset>
  2374. <PasvMode>MODE_DEFAULT</PasvMode>
  2375. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2376. <EncodingType>Auto</EncodingType>
  2377. <BypassProxy>0</BypassProxy>
  2378. <Name>Wilhelm</Name>
  2379. <Comments/>
  2380. <LocalDir/>
  2381. <RemoteDir/>
  2382. <SyncBrowsing>0</SyncBrowsing>
  2383. Wilhelm
  2384. </Server>
  2385. <Server>
  2386. <Host>www.wolfstudios.at</Host>
  2387. <Port>21</Port>
  2388. <Protocol>0</Protocol>
  2389. <Type>0</Type>
  2390. <User>anviet</User>
  2391. <Pass>anviet</Pass>
  2392. <Logontype>1</Logontype>
  2393. <TimezoneOffset>0</TimezoneOffset>
  2394. <PasvMode>MODE_DEFAULT</PasvMode>
  2395. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2396. <EncodingType>Auto</EncodingType>
  2397. <BypassProxy>0</BypassProxy>
  2398. <Name>Wolf</Name>
  2399. <Comments/>
  2400. <LocalDir/>
  2401. <RemoteDir/>
  2402. <SyncBrowsing>0</SyncBrowsing>
  2403. Wolf
  2404. </Server>
  2405. <Server>
  2406. <Host>ftp.wyckoff.com</Host>
  2407. <Port>21</Port>
  2408. <Protocol>0</Protocol>
  2409. <Type>0</Type>
  2410. <User>retouch3@wyckoff.com</User>
  2411. <Pass>3818wolF</Pass>
  2412. <Logontype>1</Logontype>
  2413. <TimezoneOffset>0</TimezoneOffset>
  2414. <PasvMode>MODE_DEFAULT</PasvMode>
  2415. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2416. <EncodingType>Auto</EncodingType>
  2417. <BypassProxy>0</BypassProxy>
  2418. <Name>Wyckoff</Name>
  2419. <Comments/>
  2420. <LocalDir/>
  2421. <RemoteDir/>
  2422. <SyncBrowsing>0</SyncBrowsing>
  2423. Wyckoff
  2424. </Server>
  2425. <Server>
  2426. <Host>ftp.anvietftp.com</Host>
  2427. <Port>21</Port>
  2428. <Protocol>0</Protocol>
  2429. <Type>0</Type>
  2430. <User>yous@anvietftp.com</User>
  2431. <Pass>123456</Pass>
  2432. <Logontype>1</Logontype>
  2433. <TimezoneOffset>0</TimezoneOffset>
  2434. <PasvMode>MODE_DEFAULT</PasvMode>
  2435. <MaximumMultipleConnections>0</MaximumMultipleConnections>
  2436. <EncodingType>Auto</EncodingType>
  2437. <BypassProxy>0</BypassProxy>
  2438. <Name>Yous</Name>
  2439. <Comments/>
  2440. <LocalDir/>
  2441. <RemoteDir/>
  2442. <SyncBrowsing>0</SyncBrowsing>
  2443. Yous
  2444. </Server>
  2445. </Servers>
  2446. </FileZilla3>
  2447. ###################################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement