-- MySQL dump 10.13 Distrib 5.6.17-66.0, for Linux (x86_64) -- -- Host: localhost Database: test -- ------------------------------------------------------ -- Server version 5.6.17-66.0 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `tblCellularCarriers` -- DROP TABLE IF EXISTS `tblCellularCarriers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tblCellularCarriers` ( `CarrierName` char(50) NOT NULL, `CarrierSub` char(8) NOT NULL, `ICCIDPrefix` char(20) DEFAULT NULL, `ICCIDLength` smallint(5) unsigned NOT NULL DEFAULT '0', `MSISDNPrefix` char(10) DEFAULT NULL, `DefaultCarrier` tinyint(1) unsigned NOT NULL DEFAULT '0', `CarrierKBRate` decimal(10,2) NOT NULL, `CarrierSMSRate` decimal(2,2) NOT NULL, `CarrierMonthDeviceRate` decimal(3,2) NOT NULL, `CarrierPlanDescr` varchar(200) NOT NULL, PRIMARY KEY (`CarrierName`,`CarrierSub`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Cellular Carriers and their ICCID ranges'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tblCellularCarriers` -- LOCK TABLES `tblCellularCarriers` WRITE; /*!40000 ALTER TABLE `tblCellularCarriers` DISABLE KEYS */; INSERT INTO `tblCellularCarriers` VALUES ('Mobilink','GSM','EMEI',123,'fix',1,10.50,0.99,9.99,'This is test Carrier'),('Telenor','GSM','EMEI',123,'fix',1,10.70,0.99,8.70,'This is test Carrier'),('Ufone','GSM','EMEI',123,'fix',1,10.70,0.99,8.70,'This is test Carrier'),('Warid','GSM','EMEI',123,'fix',1,10.00,0.99,8.70,'This is test Carrier'),('Zong','GSM','EMEI',123,'fix',1,10.10,0.99,8.70,'This is test Carrier'); /*!40000 ALTER TABLE `tblCellularCarriers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tblDataSentSMS` -- DROP TABLE IF EXISTS `tblDataSentSMS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tblDataSentSMS` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `ESN` char(20) DEFAULT NULL, `SMSMethod` enum('HTTP','SMTP','SMPP') NOT NULL, `DateSent` datetime NOT NULL, `ICCID` char(22) DEFAULT NULL, `MSISDN` char(10) NOT NULL, `RatePlan` char(4) DEFAULT NULL, `Bytes` mediumint(9) NOT NULL, `Msg` varchar(255) DEFAULT NULL, PRIMARY KEY (`ID`,`DateSent`), KEY `ESN` (`ESN`), KEY `ICCID` (`ICCID`), KEY `MSISDN` (`MSISDN`), KEY `Msg` (`Msg`) ) ENGINE=InnoDB AUTO_INCREMENT=847 DEFAULT CHARSET=latin1 COMMENT='Record of SMS messages sent to units' /*!50100 PARTITION BY RANGE ( TO_DAYS(DateSent)) (PARTITION P21Nov2012 VALUES LESS THAN (735193) ENGINE = InnoDB, PARTITION P22Nov2012 VALUES LESS THAN (735194) ENGINE = InnoDB, PARTITION P23Nov2012 VALUES LESS THAN (735195) ENGINE = InnoDB, PARTITION P24Nov2012 VALUES LESS THAN (735196) ENGINE = InnoDB, PARTITION P25Nov2012 VALUES LESS THAN (735197) ENGINE = InnoDB, PARTITION P26Nov2012 VALUES LESS THAN (735198) ENGINE = InnoDB, PARTITION P27Nov2012 VALUES LESS THAN (735199) ENGINE = InnoDB, PARTITION P28Nov2012 VALUES LESS THAN (735200) ENGINE = InnoDB, PARTITION P29Nov2012 VALUES LESS THAN (735201) ENGINE = InnoDB, PARTITION P30Nov2012 VALUES LESS THAN (735202) ENGINE = InnoDB, PARTITION P01Dec2012 VALUES LESS THAN (735203) ENGINE = InnoDB, PARTITION P02Dec2012 VALUES LESS THAN (735204) ENGINE = InnoDB, PARTITION P03Dec2012 VALUES LESS THAN (735205) ENGINE = InnoDB, PARTITION P04Dec2012 VALUES LESS THAN (735206) ENGINE = InnoDB, PARTITION P05Dec2012 VALUES LESS THAN (735207) ENGINE = InnoDB, PARTITION P06Dec2012 VALUES LESS THAN (735208) ENGINE = InnoDB, PARTITION P07Dec2012 VALUES LESS THAN (735209) ENGINE = InnoDB, PARTITION P08Dec2012 VALUES LESS THAN (735210) ENGINE = InnoDB, PARTITION P09Dec2012 VALUES LESS THAN (735211) ENGINE = InnoDB, PARTITION P10Dec2012 VALUES LESS THAN (735212) ENGINE = InnoDB, PARTITION P11Dec2012 VALUES LESS THAN (735213) ENGINE = InnoDB, PARTITION P12Dec2012 VALUES LESS THAN (735214) ENGINE = InnoDB, PARTITION P13Dec2012 VALUES LESS THAN (735215) ENGINE = InnoDB, PARTITION P14Dec2012 VALUES LESS THAN (735216) ENGINE = InnoDB, PARTITION P15Dec2012 VALUES LESS THAN (735217) ENGINE = InnoDB, PARTITION P16Dec2012 VALUES LESS THAN (735218) ENGINE = InnoDB, PARTITION P17Dec2012 VALUES LESS THAN (735219) ENGINE = InnoDB, PARTITION P18Dec2012 VALUES LESS THAN (735220) ENGINE = InnoDB, PARTITION P19Dec2012 VALUES LESS THAN (735221) ENGINE = InnoDB, PARTITION P20Dec2012 VALUES LESS THAN (735222) ENGINE = InnoDB, PARTITION P21Dec2012 VALUES LESS THAN (735223) ENGINE = InnoDB, PARTITION P22Dec2012 VALUES LESS THAN (735224) ENGINE = InnoDB, PARTITION P23Dec2012 VALUES LESS THAN (735225) ENGINE = InnoDB, PARTITION P24Dec2012 VALUES LESS THAN (735226) ENGINE = InnoDB, PARTITION P25Dec2012 VALUES LESS THAN (735227) ENGINE = InnoDB, PARTITION P26Dec2012 VALUES LESS THAN (735228) ENGINE = InnoDB, PARTITION P27Dec2012 VALUES LESS THAN (735229) ENGINE = InnoDB, PARTITION P28Dec2012 VALUES LESS THAN (735230) ENGINE = InnoDB, PARTITION P29Dec2012 VALUES LESS THAN (735231) ENGINE = InnoDB, PARTITION P30Dec2012 VALUES LESS THAN (735232) ENGINE = InnoDB, PARTITION P31Dec2012 VALUES LESS THAN (735233) ENGINE = InnoDB, PARTITION P01Jan2013 VALUES LESS THAN (735234) ENGINE = InnoDB, PARTITION P02Jan2013 VALUES LESS THAN (735235) ENGINE = InnoDB, PARTITION P03Jan2013 VALUES LESS THAN (735236) ENGINE = InnoDB, PARTITION P04Jan2013 VALUES LESS THAN (735237) ENGINE = InnoDB, PARTITION P05Jan2013 VALUES LESS THAN (735238) ENGINE = InnoDB, PARTITION P06Jan2013 VALUES LESS THAN (735239) ENGINE = InnoDB, PARTITION P07Jan2013 VALUES LESS THAN (735240) ENGINE = InnoDB, PARTITION P08Jan2013 VALUES LESS THAN (735241) ENGINE = InnoDB, PARTITION P09Jan2013 VALUES LESS THAN (735242) ENGINE = InnoDB, PARTITION P10Jan2013 VALUES LESS THAN (735243) ENGINE = InnoDB, PARTITION P11Jan2013 VALUES LESS THAN (735244) ENGINE = InnoDB, PARTITION P12Jan2013 VALUES LESS THAN (735245) ENGINE = InnoDB, PARTITION P13Jan2013 VALUES LESS THAN (735246) ENGINE = InnoDB, PARTITION P14Jan2013 VALUES LESS THAN (735247) ENGINE = InnoDB, PARTITION P15Jan2013 VALUES LESS THAN (735248) ENGINE = InnoDB, PARTITION P16Jan2013 VALUES LESS THAN (735249) ENGINE = InnoDB, PARTITION P17Jan2013 VALUES LESS THAN (735250) ENGINE = InnoDB, PARTITION P18Jan2013 VALUES LESS THAN (735251) ENGINE = InnoDB, PARTITION P19Jan2013 VALUES LESS THAN (735252) ENGINE = InnoDB, PARTITION P20Jan2013 VALUES LESS THAN (735253) ENGINE = InnoDB, PARTITION P21Jan2013 VALUES LESS THAN (735254) ENGINE = InnoDB, PARTITION P22Jan2013 VALUES LESS THAN (735255) ENGINE = InnoDB, PARTITION P23Jan2013 VALUES LESS THAN (735256) ENGINE = InnoDB, PARTITION P24Jan2013 VALUES LESS THAN (735257) ENGINE = InnoDB, PARTITION P25Jan2013 VALUES LESS THAN (735258) ENGINE = InnoDB, PARTITION P26Jan2013 VALUES LESS THAN (735259) ENGINE = InnoDB, PARTITION P27Jan2013 VALUES LESS THAN (735260) ENGINE = InnoDB, PARTITION P28Jan2013 VALUES LESS THAN (735261) ENGINE = InnoDB, PARTITION P29Jan2013 VALUES LESS THAN (735262) ENGINE = InnoDB, PARTITION P30Jan2013 VALUES LESS THAN (735263) ENGINE = InnoDB, PARTITION P31Jan2013 VALUES LESS THAN (735264) ENGINE = InnoDB, PARTITION P01Feb2013 VALUES LESS THAN (735265) ENGINE = InnoDB, PARTITION P02Feb2013 VALUES LESS THAN (735266) ENGINE = InnoDB, PARTITION P03Feb2013 VALUES LESS THAN (735267) ENGINE = InnoDB, PARTITION P04Feb2013 VALUES LESS THAN (735268) ENGINE = InnoDB, PARTITION P05Feb2013 VALUES LESS THAN (735269) ENGINE = InnoDB, PARTITION P06Feb2013 VALUES LESS THAN (735270) ENGINE = InnoDB, PARTITION P07Feb2013 VALUES LESS THAN (735271) ENGINE = InnoDB, PARTITION P08Feb2013 VALUES LESS THAN (735272) ENGINE = InnoDB, PARTITION P09Feb2013 VALUES LESS THAN (735273) ENGINE = InnoDB, PARTITION P10Feb2013 VALUES LESS THAN (735274) ENGINE = InnoDB, PARTITION P11Feb2013 VALUES LESS THAN (735275) ENGINE = InnoDB, PARTITION P12Feb2013 VALUES LESS THAN (735276) ENGINE = InnoDB, PARTITION P13Feb2013 VALUES LESS THAN (735277) ENGINE = InnoDB, PARTITION P14Feb2013 VALUES LESS THAN (735278) ENGINE = InnoDB, PARTITION P15Feb2013 VALUES LESS THAN (735279) ENGINE = InnoDB, PARTITION P16Feb2013 VALUES LESS THAN (735280) ENGINE = InnoDB, PARTITION P17Feb2013 VALUES LESS THAN (735281) ENGINE = InnoDB, PARTITION P18Feb2013 VALUES LESS THAN (735282) ENGINE = InnoDB, PARTITION P19Feb2013 VALUES LESS THAN (735283) ENGINE = InnoDB, PARTITION P20Feb2013 VALUES LESS THAN (735284) ENGINE = InnoDB, PARTITION P21Feb2013 VALUES LESS THAN (735285) ENGINE = InnoDB, PARTITION P22Feb2013 VALUES LESS THAN (735286) ENGINE = InnoDB, PARTITION P23Feb2013 VALUES LESS THAN (735287) ENGINE = InnoDB, PARTITION P24Feb2013 VALUES LESS THAN (735288) ENGINE = InnoDB, PARTITION P25Feb2013 VALUES LESS THAN (735289) ENGINE = InnoDB, PARTITION P26Feb2013 VALUES LESS THAN (735290) ENGINE = InnoDB, PARTITION P27Feb2013 VALUES LESS THAN (735291) ENGINE = InnoDB, PARTITION P28Feb2013 VALUES LESS THAN (735292) ENGINE = InnoDB, PARTITION P01Mar2013 VALUES LESS THAN (735293) ENGINE = InnoDB, PARTITION P02Mar2013 VALUES LESS THAN (735294) ENGINE = InnoDB, PARTITION P03Mar2013 VALUES LESS THAN (735295) ENGINE = InnoDB, PARTITION P04Mar2013 VALUES LESS THAN (735296) ENGINE = InnoDB, PARTITION P05Mar2013 VALUES LESS THAN (735297) ENGINE = InnoDB, PARTITION P06Mar2013 VALUES LESS THAN (735298) ENGINE = InnoDB, PARTITION P07Mar2013 VALUES LESS THAN (735299) ENGINE = InnoDB, PARTITION P08Mar2013 VALUES LESS THAN (735300) ENGINE = InnoDB, PARTITION P09Mar2013 VALUES LESS THAN (735301) ENGINE = InnoDB, PARTITION P10Mar2013 VALUES LESS THAN (735302) ENGINE = InnoDB, PARTITION P11Mar2013 VALUES LESS THAN (735303) ENGINE = InnoDB, PARTITION P12Mar2013 VALUES LESS THAN (735304) ENGINE = InnoDB, PARTITION P13Mar2013 VALUES LESS THAN (735305) ENGINE = InnoDB, PARTITION P14Mar2013 VALUES LESS THAN (735306) ENGINE = InnoDB, PARTITION P15Mar2013 VALUES LESS THAN (735307) ENGINE = InnoDB, PARTITION P16Mar2013 VALUES LESS THAN (735308) ENGINE = InnoDB, PARTITION P17Mar2013 VALUES LESS THAN (735309) ENGINE = InnoDB, PARTITION P18Mar2013 VALUES LESS THAN (735310) ENGINE = InnoDB, PARTITION P19Mar2013 VALUES LESS THAN (735311) ENGINE = InnoDB, PARTITION P20Mar2013 VALUES LESS THAN (735312) ENGINE = InnoDB, PARTITION P21Mar2013 VALUES LESS THAN (735313) ENGINE = InnoDB, PARTITION P22Mar2013 VALUES LESS THAN (735314) ENGINE = InnoDB, PARTITION P23Mar2013 VALUES LESS THAN (735315) ENGINE = InnoDB, PARTITION P24Mar2013 VALUES LESS THAN (735316) ENGINE = InnoDB, PARTITION P25Mar2013 VALUES LESS THAN (735317) ENGINE = InnoDB, PARTITION P26Mar2013 VALUES LESS THAN (735318) ENGINE = InnoDB, PARTITION P27Mar2013 VALUES LESS THAN (735319) ENGINE = InnoDB, PARTITION P28Mar2013 VALUES LESS THAN (735320) ENGINE = InnoDB, PARTITION P29Mar2013 VALUES LESS THAN (735321) ENGINE = InnoDB, PARTITION P30Mar2013 VALUES LESS THAN (735322) ENGINE = InnoDB, PARTITION P31Mar2013 VALUES LESS THAN (735323) ENGINE = InnoDB, PARTITION P01Apr2013 VALUES LESS THAN (735324) ENGINE = InnoDB, PARTITION P02Apr2013 VALUES LESS THAN (735325) ENGINE = InnoDB, PARTITION P03Apr2013 VALUES LESS THAN (735326) ENGINE = InnoDB, PARTITION P04Apr2013 VALUES LESS THAN (735327) ENGINE = InnoDB, PARTITION P05Apr2013 VALUES LESS THAN (735328) ENGINE = InnoDB, PARTITION P06Apr2013 VALUES LESS THAN (735329) ENGINE = InnoDB, PARTITION P07Apr2013 VALUES LESS THAN (735330) ENGINE = InnoDB, PARTITION P08Apr2013 VALUES LESS THAN (735331) ENGINE = InnoDB, PARTITION P09Apr2013 VALUES LESS THAN (735332) ENGINE = InnoDB, PARTITION P10Apr2013 VALUES LESS THAN (735333) ENGINE = InnoDB, PARTITION P11Apr2013 VALUES LESS THAN (735334) ENGINE = InnoDB, PARTITION P12Apr2013 VALUES LESS THAN (735335) ENGINE = InnoDB, PARTITION P13Apr2013 VALUES LESS THAN (735336) ENGINE = InnoDB, PARTITION P14Apr2013 VALUES LESS THAN (735337) ENGINE = InnoDB, PARTITION P15Apr2013 VALUES LESS THAN (735338) ENGINE = InnoDB, PARTITION P16Apr2013 VALUES LESS THAN (735339) ENGINE = InnoDB, PARTITION P17Apr2013 VALUES LESS THAN (735340) ENGINE = InnoDB, PARTITION P18Apr2013 VALUES LESS THAN (735341) ENGINE = InnoDB, PARTITION P19Apr2013 VALUES LESS THAN (735342) ENGINE = InnoDB, PARTITION P20Apr2013 VALUES LESS THAN (735343) ENGINE = InnoDB, PARTITION P21Apr2013 VALUES LESS THAN (735344) ENGINE = InnoDB, PARTITION P22Apr2013 VALUES LESS THAN (735345) ENGINE = InnoDB, PARTITION P23Apr2013 VALUES LESS THAN (735346) ENGINE = InnoDB, PARTITION P24Apr2013 VALUES LESS THAN (735347) ENGINE = InnoDB, PARTITION P25Apr2013 VALUES LESS THAN (735348) ENGINE = InnoDB, PARTITION P26Apr2013 VALUES LESS THAN (735349) ENGINE = InnoDB, PARTITION P27Apr2013 VALUES LESS THAN (735350) ENGINE = InnoDB, PARTITION P28Apr2013 VALUES LESS THAN (735351) ENGINE = InnoDB, PARTITION P29Apr2013 VALUES LESS THAN (735352) ENGINE = InnoDB, PARTITION P30Apr2013 VALUES LESS THAN (735353) ENGINE = InnoDB, PARTITION P01May2013 VALUES LESS THAN (735354) ENGINE = InnoDB, PARTITION P02May2013 VALUES LESS THAN (735355) ENGINE = InnoDB, PARTITION P03May2013 VALUES LESS THAN (735356) ENGINE = InnoDB, PARTITION P04May2013 VALUES LESS THAN (735357) ENGINE = InnoDB, PARTITION P05May2013 VALUES LESS THAN (735358) ENGINE = InnoDB, PARTITION P06May2013 VALUES LESS THAN (735359) ENGINE = InnoDB, PARTITION P07May2013 VALUES LESS THAN (735360) ENGINE = InnoDB, PARTITION P08May2013 VALUES LESS THAN (735361) ENGINE = InnoDB, PARTITION P09May2013 VALUES LESS THAN (735362) ENGINE = InnoDB, PARTITION P10May2013 VALUES LESS THAN (735363) ENGINE = InnoDB, PARTITION P11May2013 VALUES LESS THAN (735364) ENGINE = InnoDB, PARTITION P12May2013 VALUES LESS THAN (735365) ENGINE = InnoDB, PARTITION P13May2013 VALUES LESS THAN (735366) ENGINE = InnoDB, PARTITION P14May2013 VALUES LESS THAN (735367) ENGINE = InnoDB, PARTITION P15May2013 VALUES LESS THAN (735368) ENGINE = InnoDB, PARTITION P16May2013 VALUES LESS THAN (735369) ENGINE = InnoDB, PARTITION P17May2013 VALUES LESS THAN (735370) ENGINE = InnoDB, PARTITION P18May2013 VALUES LESS THAN (735371) ENGINE = InnoDB, PARTITION P19May2013 VALUES LESS THAN (735372) ENGINE = InnoDB, PARTITION P20May2013 VALUES LESS THAN (735373) ENGINE = InnoDB, PARTITION P21May2013 VALUES LESS THAN (735374) ENGINE = InnoDB, PARTITION P22May2013 VALUES LESS THAN (735375) ENGINE = InnoDB, PARTITION P23May2013 VALUES LESS THAN (735376) ENGINE = InnoDB, PARTITION P24May2013 VALUES LESS THAN (735377) ENGINE = InnoDB, PARTITION P25May2013 VALUES LESS THAN (735378) ENGINE = InnoDB, PARTITION P26May2013 VALUES LESS THAN (735379) ENGINE = InnoDB, PARTITION P27May2013 VALUES LESS THAN (735380) ENGINE = InnoDB, PARTITION P28May2013 VALUES LESS THAN (735381) ENGINE = InnoDB, PARTITION P29May2013 VALUES LESS THAN (735382) ENGINE = InnoDB, PARTITION P30May2013 VALUES LESS THAN (735383) ENGINE = InnoDB, PARTITION P31May2013 VALUES LESS THAN (735384) ENGINE = InnoDB, PARTITION P01Jun2013 VALUES LESS THAN (735385) ENGINE = InnoDB, PARTITION P02Jun2013 VALUES LESS THAN (735386) ENGINE = InnoDB, PARTITION P03Jun2013 VALUES LESS THAN (735387) ENGINE = InnoDB, PARTITION P04Jun2013 VALUES LESS THAN (735388) ENGINE = InnoDB, PARTITION P05Jun2013 VALUES LESS THAN (735389) ENGINE = InnoDB, PARTITION P06Jun2013 VALUES LESS THAN (735390) ENGINE = InnoDB, PARTITION P07Jun2013 VALUES LESS THAN (735391) ENGINE = InnoDB, PARTITION P08Jun2013 VALUES LESS THAN (735392) ENGINE = InnoDB, PARTITION P09Jun2013 VALUES LESS THAN (735393) ENGINE = InnoDB, PARTITION P10Jun2013 VALUES LESS THAN (735394) ENGINE = InnoDB, PARTITION P11Jun2013 VALUES LESS THAN (735395) ENGINE = InnoDB, PARTITION P12Jun2013 VALUES LESS THAN (735396) ENGINE = InnoDB, PARTITION P13Jun2013 VALUES LESS THAN (735397) ENGINE = InnoDB, PARTITION P14Jun2013 VALUES LESS THAN (735398) ENGINE = InnoDB, PARTITION P15Jun2013 VALUES LESS THAN (735399) ENGINE = InnoDB, PARTITION P16Jun2013 VALUES LESS THAN (735400) ENGINE = InnoDB, PARTITION P17Jun2013 VALUES LESS THAN (735401) ENGINE = InnoDB, PARTITION P18Jun2013 VALUES LESS THAN (735402) ENGINE = InnoDB, PARTITION P19Jun2013 VALUES LESS THAN (735403) ENGINE = InnoDB, PARTITION P20Jun2013 VALUES LESS THAN (735404) ENGINE = InnoDB, PARTITION P21Jun2013 VALUES LESS THAN (735405) ENGINE = InnoDB, PARTITION P22Jun2013 VALUES LESS THAN (735406) ENGINE = InnoDB, PARTITION P23Jun2013 VALUES LESS THAN (735407) ENGINE = InnoDB, PARTITION P24Jun2013 VALUES LESS THAN (735408) ENGINE = InnoDB, PARTITION P25Jun2013 VALUES LESS THAN (735409) ENGINE = InnoDB, PARTITION P26Jun2013 VALUES LESS THAN (735410) ENGINE = InnoDB, PARTITION P27Jun2013 VALUES LESS THAN (735411) ENGINE = InnoDB, PARTITION P28Jun2013 VALUES LESS THAN (735412) ENGINE = InnoDB, PARTITION P29Jun2013 VALUES LESS THAN (735413) ENGINE = InnoDB, PARTITION P30Jun2013 VALUES LESS THAN (735414) ENGINE = InnoDB, PARTITION P01Jul2013 VALUES LESS THAN (735415) ENGINE = InnoDB, PARTITION P02Jul2013 VALUES LESS THAN (735416) ENGINE = InnoDB, PARTITION P03Jul2013 VALUES LESS THAN (735417) ENGINE = InnoDB, PARTITION P04Jul2013 VALUES LESS THAN (735418) ENGINE = InnoDB, PARTITION P05Jul2013 VALUES LESS THAN (735419) ENGINE = InnoDB, PARTITION P06Jul2013 VALUES LESS THAN (735420) ENGINE = InnoDB, PARTITION P07Jul2013 VALUES LESS THAN (735421) ENGINE = InnoDB, PARTITION P08Jul2013 VALUES LESS THAN (735422) ENGINE = InnoDB, PARTITION P09Jul2013 VALUES LESS THAN (735423) ENGINE = InnoDB, PARTITION P10Jul2013 VALUES LESS THAN (735424) ENGINE = InnoDB, PARTITION P11Jul2013 VALUES LESS THAN (735425) ENGINE = InnoDB, PARTITION P12Jul2013 VALUES LESS THAN (735426) ENGINE = InnoDB, PARTITION P13Jul2013 VALUES LESS THAN (735427) ENGINE = InnoDB, PARTITION P14Jul2013 VALUES LESS THAN (735428) ENGINE = InnoDB, PARTITION P15Jul2013 VALUES LESS THAN (735429) ENGINE = InnoDB, PARTITION P16Jul2013 VALUES LESS THAN (735430) ENGINE = InnoDB, PARTITION P17Jul2013 VALUES LESS THAN (735431) ENGINE = InnoDB, PARTITION P18Jul2013 VALUES LESS THAN (735432) ENGINE = InnoDB, PARTITION P19Jul2013 VALUES LESS THAN (735433) ENGINE = InnoDB, PARTITION P20Jul2013 VALUES LESS THAN (735434) ENGINE = InnoDB, PARTITION P21Jul2013 VALUES LESS THAN (735435) ENGINE = InnoDB, PARTITION P22Jul2013 VALUES LESS THAN (735436) ENGINE = InnoDB, PARTITION P23Jul2013 VALUES LESS THAN (735437) ENGINE = InnoDB, PARTITION P24Jul2013 VALUES LESS THAN (735438) ENGINE = InnoDB, PARTITION P25Jul2013 VALUES LESS THAN (735439) ENGINE = InnoDB, PARTITION P26Jul2013 VALUES LESS THAN (735440) ENGINE = InnoDB, PARTITION P27Jul2013 VALUES LESS THAN (735441) ENGINE = InnoDB, PARTITION P28Jul2013 VALUES LESS THAN (735442) ENGINE = InnoDB, PARTITION P29Jul2013 VALUES LESS THAN (735443) ENGINE = InnoDB, PARTITION P30Jul2013 VALUES LESS THAN (735444) ENGINE = InnoDB, PARTITION P31Jul2013 VALUES LESS THAN (735445) ENGINE = InnoDB, PARTITION P01Aug2013 VALUES LESS THAN (735446) ENGINE = InnoDB, PARTITION P02Aug2013 VALUES LESS THAN (735447) ENGINE = InnoDB, PARTITION P03Aug2013 VALUES LESS THAN (735448) ENGINE = InnoDB, PARTITION P04Aug2013 VALUES LESS THAN (735449) ENGINE = InnoDB, PARTITION P05Aug2013 VALUES LESS THAN (735450) ENGINE = InnoDB, PARTITION P06Aug2013 VALUES LESS THAN (735451) ENGINE = InnoDB, PARTITION P07Aug2013 VALUES LESS THAN (735452) ENGINE = InnoDB, PARTITION P08Aug2013 VALUES LESS THAN (735453) ENGINE = InnoDB, PARTITION P09Aug2013 VALUES LESS THAN (735454) ENGINE = InnoDB, PARTITION P10Aug2013 VALUES LESS THAN (735455) ENGINE = InnoDB, PARTITION P11Aug2013 VALUES LESS THAN (735456) ENGINE = InnoDB, PARTITION P12Aug2013 VALUES LESS THAN (735457) ENGINE = InnoDB, PARTITION P13Aug2013 VALUES LESS THAN (735458) ENGINE = InnoDB, PARTITION P14Aug2013 VALUES LESS THAN (735459) ENGINE = InnoDB, PARTITION P15Aug2013 VALUES LESS THAN (735460) ENGINE = InnoDB, PARTITION P16Aug2013 VALUES LESS THAN (735461) ENGINE = InnoDB, PARTITION P17Aug2013 VALUES LESS THAN (735462) ENGINE = InnoDB, PARTITION P18Aug2013 VALUES LESS THAN (735463) ENGINE = InnoDB, PARTITION P19Aug2013 VALUES LESS THAN (735464) ENGINE = InnoDB, PARTITION P20Aug2013 VALUES LESS THAN (735465) ENGINE = InnoDB, PARTITION P21Aug2013 VALUES LESS THAN (735466) ENGINE = InnoDB, PARTITION P22Aug2013 VALUES LESS THAN (735467) ENGINE = InnoDB, PARTITION P23Aug2013 VALUES LESS THAN (735468) ENGINE = InnoDB, PARTITION P24Aug2013 VALUES LESS THAN (735469) ENGINE = InnoDB, PARTITION P25Aug2013 VALUES LESS THAN (735470) ENGINE = InnoDB, PARTITION P26Aug2013 VALUES LESS THAN (735471) ENGINE = InnoDB, PARTITION P27Aug2013 VALUES LESS THAN (735472) ENGINE = InnoDB, PARTITION P28Aug2013 VALUES LESS THAN (735473) ENGINE = InnoDB, PARTITION P29Aug2013 VALUES LESS THAN (735474) ENGINE = InnoDB, PARTITION P30Aug2013 VALUES LESS THAN (735475) ENGINE = InnoDB, PARTITION P31Aug2013 VALUES LESS THAN (735476) ENGINE = InnoDB, PARTITION P01Sep2013 VALUES LESS THAN (735477) ENGINE = InnoDB, PARTITION P02Sep2013 VALUES LESS THAN (735478) ENGINE = InnoDB, PARTITION P03Sep2013 VALUES LESS THAN (735479) ENGINE = InnoDB, PARTITION P04Sep2013 VALUES LESS THAN (735480) ENGINE = InnoDB, PARTITION P05Sep2013 VALUES LESS THAN (735481) ENGINE = InnoDB, PARTITION P06Sep2013 VALUES LESS THAN (735482) ENGINE = InnoDB, PARTITION P07Sep2013 VALUES LESS THAN (735483) ENGINE = InnoDB, PARTITION P08Sep2013 VALUES LESS THAN (735484) ENGINE = InnoDB, PARTITION P09Sep2013 VALUES LESS THAN (735485) ENGINE = InnoDB, PARTITION P10Sep2013 VALUES LESS THAN (735486) ENGINE = InnoDB, PARTITION P11Sep2013 VALUES LESS THAN (735487) ENGINE = InnoDB, PARTITION P12Sep2013 VALUES LESS THAN (735488) ENGINE = InnoDB, PARTITION P13Sep2013 VALUES LESS THAN (735489) ENGINE = InnoDB, PARTITION P14Sep2013 VALUES LESS THAN (735490) ENGINE = InnoDB, PARTITION P15Sep2013 VALUES LESS THAN (735491) ENGINE = InnoDB, PARTITION P16Sep2013 VALUES LESS THAN (735492) ENGINE = InnoDB, PARTITION P17Sep2013 VALUES LESS THAN (735493) ENGINE = InnoDB, PARTITION P18Sep2013 VALUES LESS THAN (735494) ENGINE = InnoDB, PARTITION P19Sep2013 VALUES LESS THAN (735495) ENGINE = InnoDB, PARTITION P20Sep2013 VALUES LESS THAN (735496) ENGINE = InnoDB, PARTITION P21Sep2013 VALUES LESS THAN (735497) ENGINE = InnoDB, PARTITION P22Sep2013 VALUES LESS THAN (735498) ENGINE = InnoDB, PARTITION P23Sep2013 VALUES LESS THAN (735499) ENGINE = InnoDB, PARTITION P24Sep2013 VALUES LESS THAN (735500) ENGINE = InnoDB, PARTITION P25Sep2013 VALUES LESS THAN (735501) ENGINE = InnoDB, PARTITION P26Sep2013 VALUES LESS THAN (735502) ENGINE = InnoDB, PARTITION P27Sep2013 VALUES LESS THAN (735503) ENGINE = InnoDB, PARTITION P28Sep2013 VALUES LESS THAN (735504) ENGINE = InnoDB, PARTITION P29Sep2013 VALUES LESS THAN (735505) ENGINE = InnoDB, PARTITION P30Sep2013 VALUES LESS THAN (735506) ENGINE = InnoDB, PARTITION P01Oct2013 VALUES LESS THAN (735507) ENGINE = InnoDB, PARTITION P02Oct2013 VALUES LESS THAN (735508) ENGINE = InnoDB, PARTITION P03Oct2013 VALUES LESS THAN (735509) ENGINE = InnoDB, PARTITION P04Oct2013 VALUES LESS THAN (735510) ENGINE = InnoDB, PARTITION P05Oct2013 VALUES LESS THAN (735511) ENGINE = InnoDB, PARTITION P06Oct2013 VALUES LESS THAN (735512) ENGINE = InnoDB, PARTITION P07Oct2013 VALUES LESS THAN (735513) ENGINE = InnoDB, PARTITION P08Oct2013 VALUES LESS THAN (735514) ENGINE = InnoDB, PARTITION P09Oct2013 VALUES LESS THAN (735515) ENGINE = InnoDB, PARTITION P10Oct2013 VALUES LESS THAN (735516) ENGINE = InnoDB, PARTITION P11Oct2013 VALUES LESS THAN (735517) ENGINE = InnoDB, PARTITION P12Oct2013 VALUES LESS THAN (735518) ENGINE = InnoDB, PARTITION P13Oct2013 VALUES LESS THAN (735519) ENGINE = InnoDB, PARTITION P14Oct2013 VALUES LESS THAN (735520) ENGINE = InnoDB, PARTITION P15Oct2013 VALUES LESS THAN (735521) ENGINE = InnoDB, PARTITION P16Oct2013 VALUES LESS THAN (735522) ENGINE = InnoDB, PARTITION P17Oct2013 VALUES LESS THAN (735523) ENGINE = InnoDB, PARTITION P18Oct2013 VALUES LESS THAN (735524) ENGINE = InnoDB, PARTITION P19Oct2013 VALUES LESS THAN (735525) ENGINE = InnoDB, PARTITION P20Oct2013 VALUES LESS THAN (735526) ENGINE = InnoDB, PARTITION P21Oct2013 VALUES LESS THAN (735527) ENGINE = InnoDB, PARTITION P22Oct2013 VALUES LESS THAN (735528) ENGINE = InnoDB, PARTITION P23Oct2013 VALUES LESS THAN (735529) ENGINE = InnoDB, PARTITION P24Oct2013 VALUES LESS THAN (735530) ENGINE = InnoDB, PARTITION P25Oct2013 VALUES LESS THAN (735531) ENGINE = InnoDB, PARTITION P26Oct2013 VALUES LESS THAN (735532) ENGINE = InnoDB, PARTITION P27Oct2013 VALUES LESS THAN (735533) ENGINE = InnoDB, PARTITION P28Oct2013 VALUES LESS THAN (735534) ENGINE = InnoDB, PARTITION P29Oct2013 VALUES LESS THAN (735535) ENGINE = InnoDB, PARTITION P30Oct2013 VALUES LESS THAN (735536) ENGINE = InnoDB, PARTITION P31Oct2013 VALUES LESS THAN (735537) ENGINE = InnoDB, PARTITION P01Nov2013 VALUES LESS THAN (735538) ENGINE = InnoDB, PARTITION P02Nov2013 VALUES LESS THAN (735539) ENGINE = InnoDB, PARTITION P03Nov2013 VALUES LESS THAN (735540) ENGINE = InnoDB, PARTITION P04Nov2013 VALUES LESS THAN (735541) ENGINE = InnoDB, PARTITION P05Nov2013 VALUES LESS THAN (735542) ENGINE = InnoDB, PARTITION P06Nov2013 VALUES LESS THAN (735543) ENGINE = InnoDB, PARTITION P07Nov2013 VALUES LESS THAN (735544) ENGINE = InnoDB, PARTITION P08Nov2013 VALUES LESS THAN (735545) ENGINE = InnoDB, PARTITION P09Nov2013 VALUES LESS THAN (735546) ENGINE = InnoDB, PARTITION P10Nov2013 VALUES LESS THAN (735547) ENGINE = InnoDB, PARTITION P11Nov2013 VALUES LESS THAN (735548) ENGINE = InnoDB, PARTITION P12Nov2013 VALUES LESS THAN (735549) ENGINE = InnoDB, PARTITION P13Nov2013 VALUES LESS THAN (735550) ENGINE = InnoDB, PARTITION P14Nov2013 VALUES LESS THAN (735551) ENGINE = InnoDB, PARTITION P15Nov2013 VALUES LESS THAN (735552) ENGINE = InnoDB, PARTITION P16Nov2013 VALUES LESS THAN (735553) ENGINE = InnoDB, PARTITION P17Nov2013 VALUES LESS THAN (735554) ENGINE = InnoDB, PARTITION P18Nov2013 VALUES LESS THAN (735555) ENGINE = InnoDB, PARTITION P19Nov2013 VALUES LESS THAN (735556) ENGINE = InnoDB, PARTITION P20Nov2013 VALUES LESS THAN (735557) ENGINE = InnoDB, PARTITION P21Nov2013 VALUES LESS THAN (735558) ENGINE = InnoDB, PARTITION P22Nov2013 VALUES LESS THAN (735559) ENGINE = InnoDB, PARTITION P23Nov2013 VALUES LESS THAN (735560) ENGINE = InnoDB, PARTITION P24Nov2013 VALUES LESS THAN (735561) ENGINE = InnoDB, PARTITION P25Nov2013 VALUES LESS THAN (735562) ENGINE = InnoDB, PARTITION P26Nov2013 VALUES LESS THAN (735563) ENGINE = InnoDB, PARTITION P27Nov2013 VALUES LESS THAN (735564) ENGINE = InnoDB, PARTITION P28Nov2013 VALUES LESS THAN (735565) ENGINE = InnoDB, PARTITION P29Nov2013 VALUES LESS THAN (735566) ENGINE = InnoDB, PARTITION P30Nov2013 VALUES LESS THAN (735567) ENGINE = InnoDB, PARTITION P01Dec2013 VALUES LESS THAN (735568) ENGINE = InnoDB, PARTITION P02Dec2013 VALUES LESS THAN (735569) ENGINE = InnoDB, PARTITION P03Dec2013 VALUES LESS THAN (735570) ENGINE = InnoDB, PARTITION P04Dec2013 VALUES LESS THAN (735571) ENGINE = InnoDB, PARTITION P05Dec2013 VALUES LESS THAN (735572) ENGINE = InnoDB, PARTITION P06Dec2013 VALUES LESS THAN (735573) ENGINE = InnoDB, PARTITION P07Dec2013 VALUES LESS THAN (735574) ENGINE = InnoDB, PARTITION P08Dec2013 VALUES LESS THAN (735575) ENGINE = InnoDB, PARTITION P09Dec2013 VALUES LESS THAN (735576) ENGINE = InnoDB, PARTITION P10Dec2013 VALUES LESS THAN (735577) ENGINE = InnoDB, PARTITION P11Dec2013 VALUES LESS THAN (735578) ENGINE = InnoDB, PARTITION P12Dec2013 VALUES LESS THAN (735579) ENGINE = InnoDB, PARTITION P13Dec2013 VALUES LESS THAN (735580) ENGINE = InnoDB, PARTITION P14Dec2013 VALUES LESS THAN (735581) ENGINE = InnoDB, PARTITION P15Dec2013 VALUES LESS THAN (735582) ENGINE = InnoDB, PARTITION P16Dec2013 VALUES LESS THAN (735583) ENGINE = InnoDB, PARTITION P17Dec2013 VALUES LESS THAN (735584) ENGINE = InnoDB, PARTITION P18Dec2013 VALUES LESS THAN (735585) ENGINE = InnoDB, PARTITION P19Dec2013 VALUES LESS THAN (735586) ENGINE = InnoDB, PARTITION P20Dec2013 VALUES LESS THAN (735587) ENGINE = InnoDB, PARTITION P21Dec2013 VALUES LESS THAN (735588) ENGINE = InnoDB, PARTITION P22Dec2013 VALUES LESS THAN (735589) ENGINE = InnoDB, PARTITION P23Dec2013 VALUES LESS THAN (735590) ENGINE = InnoDB, PARTITION P24Dec2013 VALUES LESS THAN (735591) ENGINE = InnoDB, PARTITION P25Dec2013 VALUES LESS THAN (735592) ENGINE = InnoDB, PARTITION P26Dec2013 VALUES LESS THAN (735593) ENGINE = InnoDB, PARTITION P27Dec2013 VALUES LESS THAN (735594) ENGINE = InnoDB, PARTITION P28Dec2013 VALUES LESS THAN (735595) ENGINE = InnoDB, PARTITION P29Dec2013 VALUES LESS THAN (735596) ENGINE = InnoDB, PARTITION P30Dec2013 VALUES LESS THAN (735597) ENGINE = InnoDB, PARTITION P31Dec2013 VALUES LESS THAN (735598) ENGINE = InnoDB, PARTITION P01Jan2014 VALUES LESS THAN (735599) ENGINE = InnoDB, PARTITION P02Jan2014 VALUES LESS THAN (735600) ENGINE = InnoDB, PARTITION P03Jan2014 VALUES LESS THAN (735601) ENGINE = InnoDB, PARTITION P04Jan2014 VALUES LESS THAN (735602) ENGINE = InnoDB, PARTITION P05Jan2014 VALUES LESS THAN (735603) ENGINE = InnoDB, PARTITION P06Jan2014 VALUES LESS THAN (735604) ENGINE = InnoDB, PARTITION P07Jan2014 VALUES LESS THAN (735605) ENGINE = InnoDB, PARTITION P08Jan2014 VALUES LESS THAN (735606) ENGINE = InnoDB, PARTITION P09Jan2014 VALUES LESS THAN (735607) ENGINE = InnoDB, PARTITION P10Jan2014 VALUES LESS THAN (735608) ENGINE = InnoDB, PARTITION P11Jan2014 VALUES LESS THAN (735609) ENGINE = InnoDB, PARTITION P12Jan2014 VALUES LESS THAN (735610) ENGINE = InnoDB, PARTITION P13Jan2014 VALUES LESS THAN (735611) ENGINE = InnoDB, PARTITION P14Jan2014 VALUES LESS THAN (735612) ENGINE = InnoDB, PARTITION P15Jan2014 VALUES LESS THAN (735613) ENGINE = InnoDB, PARTITION P16Jan2014 VALUES LESS THAN (735614) ENGINE = InnoDB, PARTITION P17Jan2014 VALUES LESS THAN (735615) ENGINE = InnoDB, PARTITION P18Jan2014 VALUES LESS THAN (735616) ENGINE = InnoDB, PARTITION P19Jan2014 VALUES LESS THAN (735617) ENGINE = InnoDB, PARTITION P20Jan2014 VALUES LESS THAN (735618) ENGINE = InnoDB, PARTITION P21Jan2014 VALUES LESS THAN (735619) ENGINE = InnoDB, PARTITION P22Jan2014 VALUES LESS THAN (735620) ENGINE = InnoDB, PARTITION P23Jan2014 VALUES LESS THAN (735621) ENGINE = InnoDB, PARTITION P24Jan2014 VALUES LESS THAN (735622) ENGINE = InnoDB, PARTITION P25Jan2014 VALUES LESS THAN (735623) ENGINE = InnoDB, PARTITION P26Jan2014 VALUES LESS THAN (735624) ENGINE = InnoDB, PARTITION P27Jan2014 VALUES LESS THAN (735625) ENGINE = InnoDB, PARTITION P28Jan2014 VALUES LESS THAN (735626) ENGINE = InnoDB, PARTITION P29Jan2014 VALUES LESS THAN (735627) ENGINE = InnoDB, PARTITION P30Jan2014 VALUES LESS THAN (735628) ENGINE = InnoDB, PARTITION P31Jan2014 VALUES LESS THAN (735629) ENGINE = InnoDB, PARTITION P01Feb2014 VALUES LESS THAN (735630) ENGINE = InnoDB, PARTITION P02Feb2014 VALUES LESS THAN (735631) ENGINE = InnoDB, PARTITION P03Feb2014 VALUES LESS THAN (735632) ENGINE = InnoDB, PARTITION P04Feb2014 VALUES LESS THAN (735633) ENGINE = InnoDB, PARTITION P05Feb2014 VALUES LESS THAN (735634) ENGINE = InnoDB, PARTITION P06Feb2014 VALUES LESS THAN (735635) ENGINE = InnoDB, PARTITION P07Feb2014 VALUES LESS THAN (735636) ENGINE = InnoDB, PARTITION P08Feb2014 VALUES LESS THAN (735637) ENGINE = InnoDB, PARTITION P09Feb2014 VALUES LESS THAN (735638) ENGINE = InnoDB, PARTITION P10Feb2014 VALUES LESS THAN (735639) ENGINE = InnoDB, PARTITION P11Feb2014 VALUES LESS THAN (735640) ENGINE = InnoDB, PARTITION P12Feb2014 VALUES LESS THAN (735641) ENGINE = InnoDB, PARTITION P13Feb2014 VALUES LESS THAN (735642) ENGINE = InnoDB, PARTITION P14Feb2014 VALUES LESS THAN (735643) ENGINE = InnoDB, PARTITION P15Feb2014 VALUES LESS THAN (735644) ENGINE = InnoDB, PARTITION P16Feb2014 VALUES LESS THAN (735645) ENGINE = InnoDB, PARTITION P17Feb2014 VALUES LESS THAN (735646) ENGINE = InnoDB, PARTITION P18Feb2014 VALUES LESS THAN (735647) ENGINE = InnoDB, PARTITION P19Feb2014 VALUES LESS THAN (735648) ENGINE = InnoDB, PARTITION P20Feb2014 VALUES LESS THAN (735649) ENGINE = InnoDB, PARTITION P21Feb2014 VALUES LESS THAN (735650) ENGINE = InnoDB, PARTITION P22Feb2014 VALUES LESS THAN (735651) ENGINE = InnoDB, PARTITION P23Feb2014 VALUES LESS THAN (735652) ENGINE = InnoDB, PARTITION P24Feb2014 VALUES LESS THAN (735653) ENGINE = InnoDB, PARTITION P25Feb2014 VALUES LESS THAN (735654) ENGINE = InnoDB, PARTITION P26Feb2014 VALUES LESS THAN (735655) ENGINE = InnoDB, PARTITION P27Feb2014 VALUES LESS THAN (735656) ENGINE = InnoDB, PARTITION P28Feb2014 VALUES LESS THAN (735657) ENGINE = InnoDB, PARTITION P01Mar2014 VALUES LESS THAN (735658) ENGINE = InnoDB, PARTITION P02Mar2014 VALUES LESS THAN (735659) ENGINE = InnoDB, PARTITION P03Mar2014 VALUES LESS THAN (735660) ENGINE = InnoDB, PARTITION P04Mar2014 VALUES LESS THAN (735661) ENGINE = InnoDB, PARTITION P05Mar2014 VALUES LESS THAN (735662) ENGINE = InnoDB, PARTITION P06Mar2014 VALUES LESS THAN (735663) ENGINE = InnoDB, PARTITION P07Mar2014 VALUES LESS THAN (735664) ENGINE = InnoDB, PARTITION P08Mar2014 VALUES LESS THAN (735665) ENGINE = InnoDB, PARTITION P09Mar2014 VALUES LESS THAN (735666) ENGINE = InnoDB, PARTITION P10Mar2014 VALUES LESS THAN (735667) ENGINE = InnoDB, PARTITION P11Mar2014 VALUES LESS THAN (735668) ENGINE = InnoDB, PARTITION P12Mar2014 VALUES LESS THAN (735669) ENGINE = InnoDB, PARTITION P13Mar2014 VALUES LESS THAN (735670) ENGINE = InnoDB, PARTITION P14Mar2014 VALUES LESS THAN (735671) ENGINE = InnoDB, PARTITION P15Mar2014 VALUES LESS THAN (735672) ENGINE = InnoDB, PARTITION P16Mar2014 VALUES LESS THAN (735673) ENGINE = InnoDB, PARTITION P17Mar2014 VALUES LESS THAN (735674) ENGINE = InnoDB, PARTITION P18Mar2014 VALUES LESS THAN (735675) ENGINE = InnoDB, PARTITION P19Mar2014 VALUES LESS THAN (735676) ENGINE = InnoDB, PARTITION P20Mar2014 VALUES LESS THAN (735677) ENGINE = InnoDB, PARTITION P21Mar2014 VALUES LESS THAN (735678) ENGINE = InnoDB, PARTITION P22Mar2014 VALUES LESS THAN (735679) ENGINE = InnoDB, PARTITION P23Mar2014 VALUES LESS THAN (735680) ENGINE = InnoDB, PARTITION P24Mar2014 VALUES LESS THAN (735681) ENGINE = InnoDB, PARTITION P25Mar2014 VALUES LESS THAN (735682) ENGINE = InnoDB, PARTITION P26Mar2014 VALUES LESS THAN (735683) ENGINE = InnoDB, PARTITION P27Mar2014 VALUES LESS THAN (735684) ENGINE = InnoDB, PARTITION P28Mar2014 VALUES LESS THAN (735685) ENGINE = InnoDB, PARTITION P29Mar2014 VALUES LESS THAN (735686) ENGINE = InnoDB, PARTITION P30Mar2014 VALUES LESS THAN (735687) ENGINE = InnoDB, PARTITION P31Mar2014 VALUES LESS THAN (735688) ENGINE = InnoDB, PARTITION P01Apr2014 VALUES LESS THAN (735689) ENGINE = InnoDB, PARTITION P02Apr2014 VALUES LESS THAN (735690) ENGINE = InnoDB, PARTITION P03Apr2014 VALUES LESS THAN (735691) ENGINE = InnoDB, PARTITION P04Apr2014 VALUES LESS THAN (735692) ENGINE = InnoDB, PARTITION P05Apr2014 VALUES LESS THAN (735693) ENGINE = InnoDB, PARTITION P06Apr2014 VALUES LESS THAN (735694) ENGINE = InnoDB, PARTITION P07Apr2014 VALUES LESS THAN (735695) ENGINE = InnoDB, PARTITION P08Apr2014 VALUES LESS THAN (735696) ENGINE = InnoDB, PARTITION P09Apr2014 VALUES LESS THAN (735697) ENGINE = InnoDB, PARTITION P10Apr2014 VALUES LESS THAN (735698) ENGINE = InnoDB, PARTITION P11Apr2014 VALUES LESS THAN (735699) ENGINE = InnoDB, PARTITION P12Apr2014 VALUES LESS THAN (735700) ENGINE = InnoDB, PARTITION P13Apr2014 VALUES LESS THAN (735701) ENGINE = InnoDB, PARTITION P14Apr2014 VALUES LESS THAN (735702) ENGINE = InnoDB, PARTITION P15Apr2014 VALUES LESS THAN (735703) ENGINE = InnoDB, PARTITION P16Apr2014 VALUES LESS THAN (735704) ENGINE = InnoDB, PARTITION P17Apr2014 VALUES LESS THAN (735705) ENGINE = InnoDB, PARTITION P18Apr2014 VALUES LESS THAN (735706) ENGINE = InnoDB, PARTITION P19Apr2014 VALUES LESS THAN (735707) ENGINE = InnoDB, PARTITION P20Apr2014 VALUES LESS THAN (735708) ENGINE = InnoDB, PARTITION P21Apr2014 VALUES LESS THAN (735709) ENGINE = InnoDB, PARTITION P22Apr2014 VALUES LESS THAN (735710) ENGINE = InnoDB, PARTITION P23Apr2014 VALUES LESS THAN (735711) ENGINE = InnoDB, PARTITION P24Apr2014 VALUES LESS THAN (735712) ENGINE = InnoDB, PARTITION P25Apr2014 VALUES LESS THAN (735713) ENGINE = InnoDB, PARTITION P26Apr2014 VALUES LESS THAN (735714) ENGINE = InnoDB, PARTITION P27Apr2014 VALUES LESS THAN (735715) ENGINE = InnoDB, PARTITION P28Apr2014 VALUES LESS THAN (735716) ENGINE = InnoDB, PARTITION P29Apr2014 VALUES LESS THAN (735717) ENGINE = InnoDB, PARTITION P30Apr2014 VALUES LESS THAN (735718) ENGINE = InnoDB, PARTITION P01May2014 VALUES LESS THAN (735719) ENGINE = InnoDB, PARTITION P02May2014 VALUES LESS THAN (735720) ENGINE = InnoDB, PARTITION P03May2014 VALUES LESS THAN (735721) ENGINE = InnoDB, PARTITION P04May2014 VALUES LESS THAN (735722) ENGINE = InnoDB, PARTITION P05May2014 VALUES LESS THAN (735723) ENGINE = InnoDB, PARTITION P06May2014 VALUES LESS THAN (735724) ENGINE = InnoDB, PARTITION P07May2014 VALUES LESS THAN (735725) ENGINE = InnoDB, PARTITION P08May2014 VALUES LESS THAN (735726) ENGINE = InnoDB, PARTITION P09May2014 VALUES LESS THAN (735727) ENGINE = InnoDB, PARTITION P10May2014 VALUES LESS THAN (735728) ENGINE = InnoDB, PARTITION P11May2014 VALUES LESS THAN (735729) ENGINE = InnoDB, PARTITION P12May2014 VALUES LESS THAN (735730) ENGINE = InnoDB, PARTITION P13May2014 VALUES LESS THAN (735731) ENGINE = InnoDB, PARTITION P14May2014 VALUES LESS THAN (735732) ENGINE = InnoDB, PARTITION P15May2014 VALUES LESS THAN (735733) ENGINE = InnoDB, PARTITION P16May2014 VALUES LESS THAN (735734) ENGINE = InnoDB, PARTITION P17May2014 VALUES LESS THAN (735735) ENGINE = InnoDB, PARTITION P18May2014 VALUES LESS THAN (735736) ENGINE = InnoDB, PARTITION P19May2014 VALUES LESS THAN (735737) ENGINE = InnoDB, PARTITION P20May2014 VALUES LESS THAN (735738) ENGINE = InnoDB, PARTITION P21May2014 VALUES LESS THAN (735739) ENGINE = InnoDB, PARTITION P22May2014 VALUES LESS THAN (735740) ENGINE = InnoDB, PARTITION P23May2014 VALUES LESS THAN (735741) ENGINE = InnoDB, PARTITION P24May2014 VALUES LESS THAN (735742) ENGINE = InnoDB, PARTITION P25May2014 VALUES LESS THAN (735743) ENGINE = InnoDB, PARTITION P26May2014 VALUES LESS THAN (735744) ENGINE = InnoDB, PARTITION P27May2014 VALUES LESS THAN (735745) ENGINE = InnoDB, PARTITION P28May2014 VALUES LESS THAN (735746) ENGINE = InnoDB, PARTITION P29May2014 VALUES LESS THAN (735747) ENGINE = InnoDB, PARTITION P30May2014 VALUES LESS THAN (735748) ENGINE = InnoDB, PARTITION P31May2014 VALUES LESS THAN (735749) ENGINE = InnoDB, PARTITION P01Jun2014 VALUES LESS THAN (735750) ENGINE = InnoDB, PARTITION P02Jun2014 VALUES LESS THAN (735751) ENGINE = InnoDB, PARTITION P03Jun2014 VALUES LESS THAN (735752) ENGINE = InnoDB, PARTITION P04Jun2014 VALUES LESS THAN (735753) ENGINE = InnoDB, PARTITION P05Jun2014 VALUES LESS THAN (735754) ENGINE = InnoDB, PARTITION P06Jun2014 VALUES LESS THAN (735755) ENGINE = InnoDB, PARTITION P07Jun2014 VALUES LESS THAN (735756) ENGINE = InnoDB, PARTITION P08Jun2014 VALUES LESS THAN (735757) ENGINE = InnoDB, PARTITION P09Jun2014 VALUES LESS THAN (735758) ENGINE = InnoDB, PARTITION P10Jun2014 VALUES LESS THAN (735759) ENGINE = InnoDB, PARTITION P11Jun2014 VALUES LESS THAN (735760) ENGINE = InnoDB, PARTITION P12Jun2014 VALUES LESS THAN (735761) ENGINE = InnoDB, PARTITION P13Jun2014 VALUES LESS THAN (735762) ENGINE = InnoDB, PARTITION P14Jun2014 VALUES LESS THAN (735763) ENGINE = InnoDB, PARTITION P15Jun2014 VALUES LESS THAN (735764) ENGINE = InnoDB, PARTITION P16Jun2014 VALUES LESS THAN (735765) ENGINE = InnoDB, PARTITION P17Jun2014 VALUES LESS THAN (735766) ENGINE = InnoDB, PARTITION P18Jun2014 VALUES LESS THAN (735767) ENGINE = InnoDB, PARTITION P19Jun2014 VALUES LESS THAN (735768) ENGINE = InnoDB, PARTITION P20Jun2014 VALUES LESS THAN (735769) ENGINE = InnoDB, PARTITION P21Jun2014 VALUES LESS THAN (735770) ENGINE = InnoDB, PARTITION P22Jun2014 VALUES LESS THAN (735771) ENGINE = InnoDB, PARTITION P23Jun2014 VALUES LESS THAN (735772) ENGINE = InnoDB, PARTITION P24Jun2014 VALUES LESS THAN (735773) ENGINE = InnoDB, PARTITION P25Jun2014 VALUES LESS THAN (735774) ENGINE = InnoDB, PARTITION P26Jun2014 VALUES LESS THAN (735775) ENGINE = InnoDB, PARTITION P27Jun2014 VALUES LESS THAN (735776) ENGINE = InnoDB, PARTITION P28Jun2014 VALUES LESS THAN (735777) ENGINE = InnoDB, PARTITION P29Jun2014 VALUES LESS THAN (735778) ENGINE = InnoDB, PARTITION P30Jun2014 VALUES LESS THAN (735779) ENGINE = InnoDB, PARTITION P01Jul2014 VALUES LESS THAN (735780) ENGINE = InnoDB, PARTITION P02Jul2014 VALUES LESS THAN (735781) ENGINE = InnoDB, PARTITION P03Jul2014 VALUES LESS THAN (735782) ENGINE = InnoDB, PARTITION P04Jul2014 VALUES LESS THAN (735783) ENGINE = InnoDB, PARTITION P05Jul2014 VALUES LESS THAN (735784) ENGINE = InnoDB, PARTITION P06Jul2014 VALUES LESS THAN (735785) ENGINE = InnoDB, PARTITION P07Jul2014 VALUES LESS THAN (735786) ENGINE = InnoDB, PARTITION P08Jul2014 VALUES LESS THAN (735787) ENGINE = InnoDB, PARTITION P09Jul2014 VALUES LESS THAN (735788) ENGINE = InnoDB, PARTITION P10Jul2014 VALUES LESS THAN (735789) ENGINE = InnoDB, PARTITION P11Jul2014 VALUES LESS THAN (735790) ENGINE = InnoDB, PARTITION P12Jul2014 VALUES LESS THAN (735791) ENGINE = InnoDB, PARTITION P13Jul2014 VALUES LESS THAN (735792) ENGINE = InnoDB, PARTITION P14Jul2014 VALUES LESS THAN (735793) ENGINE = InnoDB, PARTITION P15Jul2014 VALUES LESS THAN (735794) ENGINE = InnoDB, PARTITION P16Jul2014 VALUES LESS THAN (735795) ENGINE = InnoDB, PARTITION P17Jul2014 VALUES LESS THAN (735796) ENGINE = InnoDB, PARTITION P18Jul2014 VALUES LESS THAN (735797) ENGINE = InnoDB, PARTITION P19Jul2014 VALUES LESS THAN (735798) ENGINE = InnoDB, PARTITION P20Jul2014 VALUES LESS THAN (735799) ENGINE = InnoDB, PARTITION P21Jul2014 VALUES LESS THAN (735800) ENGINE = InnoDB, PARTITION P22Jul2014 VALUES LESS THAN (735801) ENGINE = InnoDB, PARTITION P23Jul2014 VALUES LESS THAN (735802) ENGINE = InnoDB, PARTITION P24Jul2014 VALUES LESS THAN (735803) ENGINE = InnoDB, PARTITION P25Jul2014 VALUES LESS THAN (735804) ENGINE = InnoDB, PARTITION P26Jul2014 VALUES LESS THAN (735805) ENGINE = InnoDB, PARTITION P27Jul2014 VALUES LESS THAN (735806) ENGINE = InnoDB, PARTITION P28Jul2014 VALUES LESS THAN (735807) ENGINE = InnoDB, PARTITION P29Jul2014 VALUES LESS THAN (735808) ENGINE = InnoDB, PARTITION P30Jul2014 VALUES LESS THAN (735809) ENGINE = InnoDB, PARTITION P31Jul2014 VALUES LESS THAN (735810) ENGINE = InnoDB, PARTITION P01Aug2014 VALUES LESS THAN (735811) ENGINE = InnoDB, PARTITION P02Aug2014 VALUES LESS THAN (735812) ENGINE = InnoDB, PARTITION P03Aug2014 VALUES LESS THAN (735813) ENGINE = InnoDB, PARTITION P04Aug2014 VALUES LESS THAN (735814) ENGINE = InnoDB, PARTITION P05Aug2014 VALUES LESS THAN (735815) ENGINE = InnoDB, PARTITION P06Aug2014 VALUES LESS THAN (735816) ENGINE = InnoDB, PARTITION P07Aug2014 VALUES LESS THAN (735817) ENGINE = InnoDB, PARTITION P08Aug2014 VALUES LESS THAN (735818) ENGINE = InnoDB, PARTITION P09Aug2014 VALUES LESS THAN (735819) ENGINE = InnoDB, PARTITION P10Aug2014 VALUES LESS THAN (735820) ENGINE = InnoDB, PARTITION P11Aug2014 VALUES LESS THAN (735821) ENGINE = InnoDB, PARTITION P12Aug2014 VALUES LESS THAN (735822) ENGINE = InnoDB, PARTITION P13Aug2014 VALUES LESS THAN (735823) ENGINE = InnoDB, PARTITION P14Aug2014 VALUES LESS THAN (735824) ENGINE = InnoDB, PARTITION P15Aug2014 VALUES LESS THAN (735825) ENGINE = InnoDB, PARTITION P16Aug2014 VALUES LESS THAN (735826) ENGINE = InnoDB, PARTITION P17Aug2014 VALUES LESS THAN (735827) ENGINE = InnoDB, PARTITION P18Aug2014 VALUES LESS THAN (735828) ENGINE = InnoDB, PARTITION P19Aug2014 VALUES LESS THAN (735829) ENGINE = InnoDB, PARTITION P20Aug2014 VALUES LESS THAN (735830) ENGINE = InnoDB, PARTITION P21Aug2014 VALUES LESS THAN (735831) ENGINE = InnoDB, PARTITION P22Aug2014 VALUES LESS THAN (735832) ENGINE = InnoDB, PARTITION P23Aug2014 VALUES LESS THAN (735833) ENGINE = InnoDB, PARTITION P24Aug2014 VALUES LESS THAN (735834) ENGINE = InnoDB, PARTITION P25Aug2014 VALUES LESS THAN (735835) ENGINE = InnoDB, PARTITION P26Aug2014 VALUES LESS THAN (735836) ENGINE = InnoDB, PARTITION P27Aug2014 VALUES LESS THAN (735837) ENGINE = InnoDB, PARTITION P28Aug2014 VALUES LESS THAN (735838) ENGINE = InnoDB, PARTITION P29Aug2014 VALUES LESS THAN (735839) ENGINE = InnoDB, PARTITION P30Aug2014 VALUES LESS THAN (735840) ENGINE = InnoDB, PARTITION P31Aug2014 VALUES LESS THAN (735841) ENGINE = InnoDB, PARTITION P01Sep2014 VALUES LESS THAN (735842) ENGINE = InnoDB, PARTITION P02Sep2014 VALUES LESS THAN (735843) ENGINE = InnoDB, PARTITION P03Sep2014 VALUES LESS THAN (735844) ENGINE = InnoDB, PARTITION P04Sep2014 VALUES LESS THAN (735845) ENGINE = InnoDB, PARTITION P05Sep2014 VALUES LESS THAN (735846) ENGINE = InnoDB, PARTITION P06Sep2014 VALUES LESS THAN (735847) ENGINE = InnoDB, PARTITION P07Sep2014 VALUES LESS THAN (735848) ENGINE = InnoDB, PARTITION P08Sep2014 VALUES LESS THAN (735849) ENGINE = InnoDB, PARTITION P09Sep2014 VALUES LESS THAN (735850) ENGINE = InnoDB, PARTITION P10Sep2014 VALUES LESS THAN (735851) ENGINE = InnoDB, PARTITION P11Sep2014 VALUES LESS THAN (735852) ENGINE = InnoDB, PARTITION P12Sep2014 VALUES LESS THAN (735853) ENGINE = InnoDB, PARTITION P13Sep2014 VALUES LESS THAN (735854) ENGINE = InnoDB, PARTITION P14Sep2014 VALUES LESS THAN (735855) ENGINE = InnoDB, PARTITION P15Sep2014 VALUES LESS THAN (735856) ENGINE = InnoDB, PARTITION P16Sep2014 VALUES LESS THAN (735857) ENGINE = InnoDB, PARTITION P17Sep2014 VALUES LESS THAN (735858) ENGINE = InnoDB, PARTITION P18Sep2014 VALUES LESS THAN (735859) ENGINE = InnoDB, PARTITION P19Sep2014 VALUES LESS THAN (735860) ENGINE = InnoDB, PARTITION P20Sep2014 VALUES LESS THAN (735861) ENGINE = InnoDB, PARTITION P21Sep2014 VALUES LESS THAN (735862) ENGINE = InnoDB, PARTITION P22Sep2014 VALUES LESS THAN (735863) ENGINE = InnoDB, PARTITION P23Sep2014 VALUES LESS THAN (735864) ENGINE = InnoDB, PARTITION P24Sep2014 VALUES LESS THAN (735865) ENGINE = InnoDB, PARTITION P25Sep2014 VALUES LESS THAN (735866) ENGINE = InnoDB, PARTITION P26Sep2014 VALUES LESS THAN (735867) ENGINE = InnoDB, PARTITION P27Sep2014 VALUES LESS THAN (735868) ENGINE = InnoDB, PARTITION P28Sep2014 VALUES LESS THAN (735869) ENGINE = InnoDB, PARTITION P29Sep2014 VALUES LESS THAN (735870) ENGINE = InnoDB, PARTITION P30Sep2014 VALUES LESS THAN (735871) ENGINE = InnoDB, PARTITION P01Oct2014 VALUES LESS THAN (735872) ENGINE = InnoDB, PARTITION P02Oct2014 VALUES LESS THAN (735873) ENGINE = InnoDB, PARTITION P03Oct2014 VALUES LESS THAN (735874) ENGINE = InnoDB, PARTITION P04Oct2014 VALUES LESS THAN (735875) ENGINE = InnoDB, PARTITION P05Oct2014 VALUES LESS THAN (735876) ENGINE = InnoDB, PARTITION P06Oct2014 VALUES LESS THAN (735877) ENGINE = InnoDB, PARTITION P07Oct2014 VALUES LESS THAN (735878) ENGINE = InnoDB, PARTITION P08Oct2014 VALUES LESS THAN (735879) ENGINE = InnoDB, PARTITION P09Oct2014 VALUES LESS THAN (735880) ENGINE = InnoDB, PARTITION P10Oct2014 VALUES LESS THAN (735881) ENGINE = InnoDB, PARTITION P11Oct2014 VALUES LESS THAN (735882) ENGINE = InnoDB, PARTITION P12Oct2014 VALUES LESS THAN (735883) ENGINE = InnoDB, PARTITION P13Oct2014 VALUES LESS THAN (735884) ENGINE = InnoDB, PARTITION P14Oct2014 VALUES LESS THAN (735885) ENGINE = InnoDB, PARTITION P15Oct2014 VALUES LESS THAN (735886) ENGINE = InnoDB, PARTITION P16Oct2014 VALUES LESS THAN (735887) ENGINE = InnoDB, PARTITION P17Oct2014 VALUES LESS THAN (735888) ENGINE = InnoDB, PARTITION P18Oct2014 VALUES LESS THAN (735889) ENGINE = InnoDB, PARTITION P19Oct2014 VALUES LESS THAN (735890) ENGINE = InnoDB, PARTITION P20Oct2014 VALUES LESS THAN (735891) ENGINE = InnoDB, PARTITION P21Oct2014 VALUES LESS THAN (735892) ENGINE = InnoDB, PARTITION P22Oct2014 VALUES LESS THAN (735893) ENGINE = InnoDB, PARTITION P23Oct2014 VALUES LESS THAN (735894) ENGINE = InnoDB, PARTITION P24Oct2014 VALUES LESS THAN (735895) ENGINE = InnoDB, PARTITION P25Oct2014 VALUES LESS THAN (735896) ENGINE = InnoDB, PARTITION P26Oct2014 VALUES LESS THAN (735897) ENGINE = InnoDB, PARTITION P27Oct2014 VALUES LESS THAN (735898) ENGINE = InnoDB, PARTITION P28Oct2014 VALUES LESS THAN (735899) ENGINE = InnoDB, PARTITION P29Oct2014 VALUES LESS THAN (735900) ENGINE = InnoDB, PARTITION P30Oct2014 VALUES LESS THAN (735901) ENGINE = InnoDB, PARTITION P31Oct2014 VALUES LESS THAN (735902) ENGINE = InnoDB, PARTITION P01Nov2014 VALUES LESS THAN (735903) ENGINE = InnoDB, PARTITION P02Nov2014 VALUES LESS THAN (735904) ENGINE = InnoDB, PARTITION P03Nov2014 VALUES LESS THAN (735905) ENGINE = InnoDB, PARTITION P04Nov2014 VALUES LESS THAN (735906) ENGINE = InnoDB, PARTITION P05Nov2014 VALUES LESS THAN (735907) ENGINE = InnoDB, PARTITION P06Nov2014 VALUES LESS THAN (735908) ENGINE = InnoDB, PARTITION P07Nov2014 VALUES LESS THAN (735909) ENGINE = InnoDB, PARTITION P08Nov2014 VALUES LESS THAN (735910) ENGINE = InnoDB, PARTITION P09Nov2014 VALUES LESS THAN (735911) ENGINE = InnoDB, PARTITION P10Nov2014 VALUES LESS THAN (735912) ENGINE = InnoDB, PARTITION P11Nov2014 VALUES LESS THAN (735913) ENGINE = InnoDB, PARTITION P12Nov2014 VALUES LESS THAN (735914) ENGINE = InnoDB, PARTITION P13Nov2014 VALUES LESS THAN (735915) ENGINE = InnoDB, PARTITION P14Nov2014 VALUES LESS THAN (735916) ENGINE = InnoDB, PARTITION P15Nov2014 VALUES LESS THAN (735917) ENGINE = InnoDB, PARTITION P16Nov2014 VALUES LESS THAN (735918) ENGINE = InnoDB, PARTITION P17Nov2014 VALUES LESS THAN (735919) ENGINE = InnoDB, PARTITION P18Nov2014 VALUES LESS THAN (735920) ENGINE = InnoDB, PARTITION P19Nov2014 VALUES LESS THAN (735921) ENGINE = InnoDB, PARTITION P20Nov2014 VALUES LESS THAN (735922) ENGINE = InnoDB, PARTITION P21Nov2014 VALUES LESS THAN (735923) ENGINE = InnoDB, PARTITION P22Nov2014 VALUES LESS THAN (735924) ENGINE = InnoDB, PARTITION P23Nov2014 VALUES LESS THAN (735925) ENGINE = InnoDB, PARTITION P24Nov2014 VALUES LESS THAN (735926) ENGINE = InnoDB, PARTITION P25Nov2014 VALUES LESS THAN (735927) ENGINE = InnoDB, PARTITION P26Nov2014 VALUES LESS THAN (735928) ENGINE = InnoDB, PARTITION P27Nov2014 VALUES LESS THAN (735929) ENGINE = InnoDB, PARTITION P28Nov2014 VALUES LESS THAN (735930) ENGINE = InnoDB, PARTITION P29Nov2014 VALUES LESS THAN (735931) ENGINE = InnoDB, PARTITION P30Nov2014 VALUES LESS THAN (735932) ENGINE = InnoDB, PARTITION P01Dec2014 VALUES LESS THAN (735933) ENGINE = InnoDB, PARTITION P02Dec2014 VALUES LESS THAN (735934) ENGINE = InnoDB, PARTITION P03Dec2014 VALUES LESS THAN (735935) ENGINE = InnoDB, PARTITION P04Dec2014 VALUES LESS THAN (735936) ENGINE = InnoDB, PARTITION P05Dec2014 VALUES LESS THAN (735937) ENGINE = InnoDB, PARTITION P06Dec2014 VALUES LESS THAN (735938) ENGINE = InnoDB, PARTITION P07Dec2014 VALUES LESS THAN (735939) ENGINE = InnoDB, PARTITION P08Dec2014 VALUES LESS THAN (735940) ENGINE = InnoDB, PARTITION P09Dec2014 VALUES LESS THAN (735941) ENGINE = InnoDB, PARTITION P10Dec2014 VALUES LESS THAN (735942) ENGINE = InnoDB, PARTITION P11Dec2014 VALUES LESS THAN (735943) ENGINE = InnoDB, PARTITION P12Dec2014 VALUES LESS THAN (735944) ENGINE = InnoDB, PARTITION P13Dec2014 VALUES LESS THAN (735945) ENGINE = InnoDB, PARTITION P14Dec2014 VALUES LESS THAN (735946) ENGINE = InnoDB, PARTITION P15Dec2014 VALUES LESS THAN (735947) ENGINE = InnoDB, PARTITION P16Dec2014 VALUES LESS THAN (735948) ENGINE = InnoDB, PARTITION P17Dec2014 VALUES LESS THAN (735949) ENGINE = InnoDB, PARTITION P18Dec2014 VALUES LESS THAN (735950) ENGINE = InnoDB, PARTITION P19Dec2014 VALUES LESS THAN (735951) ENGINE = InnoDB, PARTITION P20Dec2014 VALUES LESS THAN (735952) ENGINE = InnoDB, PARTITION P21Dec2014 VALUES LESS THAN (735953) ENGINE = InnoDB, PARTITION P22Dec2014 VALUES LESS THAN (735954) ENGINE = InnoDB, PARTITION P23Dec2014 VALUES LESS THAN (735955) ENGINE = InnoDB, PARTITION P24Dec2014 VALUES LESS THAN (735956) ENGINE = InnoDB, PARTITION P25Dec2014 VALUES LESS THAN (735957) ENGINE = InnoDB, PARTITION P26Dec2014 VALUES LESS THAN (735958) ENGINE = InnoDB, PARTITION P27Dec2014 VALUES LESS THAN (735959) ENGINE = InnoDB, PARTITION P28Dec2014 VALUES LESS THAN (735960) ENGINE = InnoDB, PARTITION P29Dec2014 VALUES LESS THAN (735961) ENGINE = InnoDB, PARTITION P30Dec2014 VALUES LESS THAN (735962) ENGINE = InnoDB, PARTITION P31Dec2014 VALUES LESS THAN (735963) ENGINE = InnoDB, PARTITION P01Jan2015 VALUES LESS THAN (735964) ENGINE = InnoDB, PARTITION P02Jan2015 VALUES LESS THAN (735965) ENGINE = InnoDB, PARTITION P03Jan2015 VALUES LESS THAN (735966) ENGINE = InnoDB, PARTITION P04Jan2015 VALUES LESS THAN (735967) ENGINE = InnoDB, PARTITION P05Jan2015 VALUES LESS THAN (735968) ENGINE = InnoDB, PARTITION P06Jan2015 VALUES LESS THAN (735969) ENGINE = InnoDB, PARTITION P07Jan2015 VALUES LESS THAN (735970) ENGINE = InnoDB, PARTITION P08Jan2015 VALUES LESS THAN (735971) ENGINE = InnoDB, PARTITION P09Jan2015 VALUES LESS THAN (735972) ENGINE = InnoDB, PARTITION P10Jan2015 VALUES LESS THAN (735973) ENGINE = InnoDB, PARTITION P11Jan2015 VALUES LESS THAN (735974) ENGINE = InnoDB, PARTITION P12Jan2015 VALUES LESS THAN (735975) ENGINE = InnoDB, PARTITION P13Jan2015 VALUES LESS THAN (735976) ENGINE = InnoDB, PARTITION P14Jan2015 VALUES LESS THAN (735977) ENGINE = InnoDB, PARTITION P15Jan2015 VALUES LESS THAN (735978) ENGINE = InnoDB, PARTITION P16Jan2015 VALUES LESS THAN (735979) ENGINE = InnoDB, PARTITION P17Jan2015 VALUES LESS THAN (735980) ENGINE = InnoDB, PARTITION P18Jan2015 VALUES LESS THAN (735981) ENGINE = InnoDB, PARTITION P19Jan2015 VALUES LESS THAN (735982) ENGINE = InnoDB, PARTITION P20Jan2015 VALUES LESS THAN (735983) ENGINE = InnoDB, PARTITION P21Jan2015 VALUES LESS THAN (735984) ENGINE = InnoDB, PARTITION P22Jan2015 VALUES LESS THAN (735985) ENGINE = InnoDB, PARTITION P23Jan2015 VALUES LESS THAN (735986) ENGINE = InnoDB, PARTITION P24Jan2015 VALUES LESS THAN (735987) ENGINE = InnoDB, PARTITION P25Jan2015 VALUES LESS THAN (735988) ENGINE = InnoDB, PARTITION P26Jan2015 VALUES LESS THAN (735989) ENGINE = InnoDB, PARTITION P27Jan2015 VALUES LESS THAN (735990) ENGINE = InnoDB, PARTITION P28Jan2015 VALUES LESS THAN (735991) ENGINE = InnoDB, PARTITION P29Jan2015 VALUES LESS THAN (735992) ENGINE = InnoDB, PARTITION P30Jan2015 VALUES LESS THAN (735993) ENGINE = InnoDB, PARTITION P31Jan2015 VALUES LESS THAN (735994) ENGINE = InnoDB, PARTITION P01Feb2015 VALUES LESS THAN (735995) ENGINE = InnoDB, PARTITION P02Feb2015 VALUES LESS THAN (735996) ENGINE = InnoDB, PARTITION P03Feb2015 VALUES LESS THAN (735997) ENGINE = InnoDB, PARTITION P04Feb2015 VALUES LESS THAN (735998) ENGINE = InnoDB, PARTITION P05Feb2015 VALUES LESS THAN (735999) ENGINE = InnoDB, PARTITION P06Feb2015 VALUES LESS THAN (736000) ENGINE = InnoDB, PARTITION P07Feb2015 VALUES LESS THAN (736001) ENGINE = InnoDB, PARTITION P08Feb2015 VALUES LESS THAN (736002) ENGINE = InnoDB, PARTITION P09Feb2015 VALUES LESS THAN (736003) ENGINE = InnoDB, PARTITION P10Feb2015 VALUES LESS THAN (736004) ENGINE = InnoDB, PARTITION P11Feb2015 VALUES LESS THAN (736005) ENGINE = InnoDB, PARTITION P12Feb2015 VALUES LESS THAN (736006) ENGINE = InnoDB, PARTITION P13Feb2015 VALUES LESS THAN (736007) ENGINE = InnoDB, PARTITION P14Feb2015 VALUES LESS THAN (736008) ENGINE = InnoDB, PARTITION P15Feb2015 VALUES LESS THAN (736009) ENGINE = InnoDB, PARTITION P16Feb2015 VALUES LESS THAN (736010) ENGINE = InnoDB, PARTITION P17Feb2015 VALUES LESS THAN (736011) ENGINE = InnoDB, PARTITION P18Feb2015 VALUES LESS THAN (736012) ENGINE = InnoDB, PARTITION P19Feb2015 VALUES LESS THAN (736013) ENGINE = InnoDB, PARTITION P20Feb2015 VALUES LESS THAN (736014) ENGINE = InnoDB, PARTITION P21Feb2015 VALUES LESS THAN (736015) ENGINE = InnoDB, PARTITION P22Feb2015 VALUES LESS THAN (736016) ENGINE = InnoDB, PARTITION P23Feb2015 VALUES LESS THAN (736017) ENGINE = InnoDB, PARTITION P24Feb2015 VALUES LESS THAN (736018) ENGINE = InnoDB, PARTITION P25Feb2015 VALUES LESS THAN (736019) ENGINE = InnoDB, PARTITION P26Feb2015 VALUES LESS THAN (736020) ENGINE = InnoDB, PARTITION P27Feb2015 VALUES LESS THAN (736021) ENGINE = InnoDB, PARTITION P28Feb2015 VALUES LESS THAN (736022) ENGINE = InnoDB, PARTITION P01Mar2015 VALUES LESS THAN (736023) ENGINE = InnoDB, PARTITION P02Mar2015 VALUES LESS THAN (736024) ENGINE = InnoDB, PARTITION P03Mar2015 VALUES LESS THAN (736025) ENGINE = InnoDB, PARTITION P04Mar2015 VALUES LESS THAN (736026) ENGINE = InnoDB, PARTITION P05Mar2015 VALUES LESS THAN (736027) ENGINE = InnoDB, PARTITION P06Mar2015 VALUES LESS THAN (736028) ENGINE = InnoDB, PARTITION P07Mar2015 VALUES LESS THAN (736029) ENGINE = InnoDB, PARTITION P08Mar2015 VALUES LESS THAN (736030) ENGINE = InnoDB, PARTITION P09Mar2015 VALUES LESS THAN (736031) ENGINE = InnoDB, PARTITION P10Mar2015 VALUES LESS THAN (736032) ENGINE = InnoDB, PARTITION P11Mar2015 VALUES LESS THAN (736033) ENGINE = InnoDB, PARTITION P12Mar2015 VALUES LESS THAN (736034) ENGINE = InnoDB, PARTITION P13Mar2015 VALUES LESS THAN (736035) ENGINE = InnoDB, PARTITION P14Mar2015 VALUES LESS THAN (736036) ENGINE = InnoDB, PARTITION P15Mar2015 VALUES LESS THAN (736037) ENGINE = InnoDB, PARTITION P16Mar2015 VALUES LESS THAN (736038) ENGINE = InnoDB, PARTITION P17Mar2015 VALUES LESS THAN (736039) ENGINE = InnoDB, PARTITION P18Mar2015 VALUES LESS THAN (736040) ENGINE = InnoDB, PARTITION P19Mar2015 VALUES LESS THAN (736041) ENGINE = InnoDB, PARTITION P20Mar2015 VALUES LESS THAN (736042) ENGINE = InnoDB, PARTITION P21Mar2015 VALUES LESS THAN (736043) ENGINE = InnoDB, PARTITION P22Mar2015 VALUES LESS THAN (736044) ENGINE = InnoDB, PARTITION P23Mar2015 VALUES LESS THAN (736045) ENGINE = InnoDB, PARTITION P24Mar2015 VALUES LESS THAN (736046) ENGINE = InnoDB, PARTITION P25Mar2015 VALUES LESS THAN (736047) ENGINE = InnoDB, PARTITION P26Mar2015 VALUES LESS THAN (736048) ENGINE = InnoDB, PARTITION P27Mar2015 VALUES LESS THAN (736049) ENGINE = InnoDB, PARTITION P28Mar2015 VALUES LESS THAN (736050) ENGINE = InnoDB, PARTITION P29Mar2015 VALUES LESS THAN (736051) ENGINE = InnoDB, PARTITION P30Mar2015 VALUES LESS THAN (736052) ENGINE = InnoDB, PARTITION P31Mar2015 VALUES LESS THAN (736053) ENGINE = InnoDB, PARTITION P01Apr2015 VALUES LESS THAN (736054) ENGINE = InnoDB, PARTITION PMaxValue VALUES LESS THAN MAXVALUE ENGINE = InnoDB) */; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tblDataSentSMS` -- LOCK TABLES `tblDataSentSMS` WRITE; /*!40000 ALTER TABLE `tblDataSentSMS` DISABLE KEYS */; INSERT INTO `tblDataSentSMS` VALUES (1,'test','SMPP','2012-01-01 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(2,'test','SMPP','2012-01-02 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(3,'test','SMPP','2012-01-03 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(4,'test','SMPP','2012-01-04 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(5,'test','SMPP','2012-01-05 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(6,'test','SMPP','2012-01-06 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(7,'test','SMPP','2012-01-07 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(8,'test','SMPP','2012-01-08 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(9,'test','SMPP','2012-01-09 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(10,'test','SMPP','2012-01-10 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(11,'test','SMPP','2012-01-11 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(12,'test','SMPP','2012-01-12 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(13,'test','SMPP','2012-01-13 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(14,'test','SMPP','2012-01-14 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(15,'test','SMPP','2012-01-15 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(16,'test','SMPP','2012-01-16 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(17,'test','SMPP','2012-01-17 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(18,'test','SMPP','2012-01-18 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(19,'test','SMPP','2012-01-19 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(20,'test','SMPP','2012-01-20 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(21,'test','SMPP','2012-01-21 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(22,'test','SMPP','2012-01-22 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(23,'test','SMPP','2012-01-23 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(24,'test','SMPP','2012-01-24 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(25,'test','SMPP','2012-01-25 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(26,'test','SMPP','2012-01-26 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(27,'test','SMPP','2012-01-27 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(28,'test','SMPP','2012-01-28 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(29,'test','SMPP','2012-01-29 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(30,'test','SMPP','2012-01-30 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(31,'test','SMPP','2012-01-31 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(32,'test','SMPP','2012-02-01 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(33,'test','SMPP','2012-02-02 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(34,'test','SMPP','2012-02-03 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(35,'test','SMPP','2012-02-04 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(36,'test','SMPP','2012-02-05 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(37,'test','SMPP','2012-02-06 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(38,'test','SMPP','2012-02-07 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(39,'test','SMPP','2012-02-08 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(40,'test','SMPP','2012-02-09 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(41,'test','SMPP','2012-02-10 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(42,'test','SMPP','2012-02-11 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(43,'test','SMPP','2012-02-12 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(44,'test','SMPP','2012-02-13 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(45,'test','SMPP','2012-02-14 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(46,'test','SMPP','2012-02-15 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(47,'test','SMPP','2012-02-16 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(48,'test','SMPP','2012-02-17 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(49,'test','SMPP','2012-02-18 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(50,'test','SMPP','2012-02-19 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(51,'test','SMPP','2012-02-20 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(52,'test','SMPP','2012-02-21 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(53,'test','SMPP','2012-02-22 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(54,'test','SMPP','2012-02-23 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(55,'test','SMPP','2012-02-24 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(56,'test','SMPP','2012-02-25 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(57,'test','SMPP','2012-02-26 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(58,'test','SMPP','2012-02-27 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(59,'test','SMPP','2012-02-28 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(60,'test','SMPP','2012-02-29 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(61,'test','SMPP','0000-00-00 00:00:00','testing','MSISDNtest','test',1,'This is msg test'),(62,'test','SMPP','0000-00-00 00:00:00','testing','MSISDNtest','test',1,'This is msg test'),(63,'test','SMPP','2012-03-01 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(64,'test','SMPP','2012-03-02 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(65,'test','SMPP','2012-03-03 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(66,'test','SMPP','2012-03-04 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(67,'test','SMPP','2012-03-05 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(68,'test','SMPP','2012-03-06 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(69,'test','SMPP','2012-03-07 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(70,'test','SMPP','2012-03-08 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(71,'test','SMPP','2012-03-09 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(72,'test','SMPP','2012-03-10 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(73,'test','SMPP','2012-03-11 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(74,'test','SMPP','2012-03-12 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(75,'test','SMPP','2012-03-13 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(76,'test','SMPP','2012-03-14 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(77,'test','SMPP','2012-03-15 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(78,'test','SMPP','2012-03-16 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(79,'test','SMPP','2012-03-17 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(80,'test','SMPP','2012-03-18 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(81,'test','SMPP','2012-03-19 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(82,'test','SMPP','2012-03-20 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(83,'test','SMPP','2012-03-21 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(84,'test','SMPP','2012-03-22 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(85,'test','SMPP','2012-03-23 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(86,'test','SMPP','2012-03-24 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(87,'test','SMPP','2012-03-25 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(88,'test','SMPP','2012-03-26 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(89,'test','SMPP','2012-03-27 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(90,'test','SMPP','2012-03-28 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(91,'test','SMPP','2012-03-29 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(92,'test','SMPP','2012-03-30 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(93,'test','SMPP','2012-03-31 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(94,'test','SMPP','2012-04-01 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(95,'test','SMPP','2012-04-02 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(96,'test','SMPP','2012-04-03 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(97,'test','SMPP','2012-04-04 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(98,'test','SMPP','2012-04-05 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(99,'test','SMPP','2012-04-06 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(100,'test','SMPP','2012-04-07 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(101,'test','SMPP','2012-04-08 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(102,'test','SMPP','2012-04-09 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(103,'test','SMPP','2012-04-10 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(104,'test','SMPP','2012-04-11 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(105,'test','SMPP','2012-04-12 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(106,'test','SMPP','2012-04-13 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(107,'test','SMPP','2012-04-14 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(108,'test','SMPP','2012-04-15 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(109,'test','SMPP','2012-04-16 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(110,'test','SMPP','2012-04-17 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(111,'test','SMPP','2012-04-18 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(112,'test','SMPP','2012-04-19 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(113,'test','SMPP','2012-04-20 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(114,'test','SMPP','2012-04-21 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(115,'test','SMPP','2012-04-22 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(116,'test','SMPP','2012-04-23 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(117,'test','SMPP','2012-04-24 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(118,'test','SMPP','2012-04-25 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(119,'test','SMPP','2012-04-26 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(120,'test','SMPP','2012-04-27 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(121,'test','SMPP','2012-04-28 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(122,'test','SMPP','2012-04-29 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(123,'test','SMPP','2012-04-30 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(124,'test','SMPP','0000-00-00 00:00:00','testing','MSISDNtest','test',1,'This is msg test'),(125,'test','SMPP','2012-05-01 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(126,'test','SMPP','2012-05-02 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(127,'test','SMPP','2012-05-03 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(128,'test','SMPP','2012-05-04 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(129,'test','SMPP','2012-05-05 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(130,'test','SMPP','2012-05-06 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(131,'test','SMPP','2012-05-07 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(132,'test','SMPP','2012-05-08 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(133,'test','SMPP','2012-05-09 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(134,'test','SMPP','2012-05-10 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(135,'test','SMPP','2012-05-11 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(136,'test','SMPP','2012-05-12 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(137,'test','SMPP','2012-05-13 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(138,'test','SMPP','2012-05-14 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(139,'test','SMPP','2012-05-15 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(140,'test','SMPP','2012-05-16 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(141,'test','SMPP','2012-05-17 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(142,'test','SMPP','2012-05-18 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(143,'test','SMPP','2012-05-19 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(144,'test','SMPP','2012-05-20 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(145,'test','SMPP','2012-05-21 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(146,'test','SMPP','2012-05-22 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(147,'test','SMPP','2012-05-23 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(148,'test','SMPP','2012-05-24 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(149,'test','SMPP','2012-05-25 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(150,'test','SMPP','2012-05-26 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(151,'test','SMPP','2012-05-27 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(152,'test','SMPP','2012-05-28 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(153,'test','SMPP','2012-05-29 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(154,'test','SMPP','2012-05-30 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(155,'test','SMPP','2012-05-31 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(156,'test','SMPP','2012-06-01 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(157,'test','SMPP','2012-06-02 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(158,'test','SMPP','2012-06-03 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(159,'test','SMPP','2012-06-04 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(160,'test','SMPP','2012-06-05 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(161,'test','SMPP','2012-06-06 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(162,'test','SMPP','2012-06-07 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(163,'test','SMPP','2012-06-08 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(164,'test','SMPP','2012-06-09 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(165,'test','SMPP','2012-06-10 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(166,'test','SMPP','2012-06-11 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(167,'test','SMPP','2012-06-12 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(168,'test','SMPP','2012-06-13 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(169,'test','SMPP','2012-06-14 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(170,'test','SMPP','2012-06-15 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(171,'test','SMPP','2012-06-16 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(172,'test','SMPP','2012-06-17 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(173,'test','SMPP','2012-06-18 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(174,'test','SMPP','2012-06-19 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(175,'test','SMPP','2012-06-20 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(176,'test','SMPP','2012-06-21 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(177,'test','SMPP','2012-06-22 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(178,'test','SMPP','2012-06-23 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(179,'test','SMPP','2012-06-24 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(180,'test','SMPP','2012-06-25 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(181,'test','SMPP','2012-06-26 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(182,'test','SMPP','2012-06-27 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(183,'test','SMPP','2012-06-28 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(184,'test','SMPP','2012-06-29 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(185,'test','SMPP','2012-06-30 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(186,'test','SMPP','0000-00-00 00:00:00','testing','MSISDNtest','test',1,'This is msg test'),(187,'test','SMPP','2012-07-01 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(188,'test','SMPP','2012-07-02 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(189,'test','SMPP','2012-07-03 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(190,'test','SMPP','2012-07-04 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(191,'test','SMPP','2012-07-05 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(192,'test','SMPP','2012-07-06 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(193,'test','SMPP','2012-07-07 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(194,'test','SMPP','2012-07-08 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(195,'test','SMPP','2012-07-09 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(196,'test','SMPP','2012-07-10 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(197,'test','SMPP','2012-07-11 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(198,'test','SMPP','2012-07-12 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(199,'test','SMPP','2012-07-13 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(200,'test','SMPP','2012-07-14 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(201,'test','SMPP','2012-07-15 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(202,'test','SMPP','2012-07-16 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(203,'test','SMPP','2012-07-17 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(204,'test','SMPP','2012-07-18 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(205,'test','SMPP','2012-07-19 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(206,'test','SMPP','2012-07-20 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(207,'test','SMPP','2012-07-21 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(208,'test','SMPP','2012-07-22 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(209,'test','SMPP','2012-07-23 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(210,'test','SMPP','2012-07-24 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(211,'test','SMPP','2012-07-25 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(212,'test','SMPP','2012-07-26 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(213,'test','SMPP','2012-07-27 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(214,'test','SMPP','2012-07-28 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(215,'test','SMPP','2012-07-29 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(216,'test','SMPP','2012-07-30 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(217,'test','SMPP','2012-07-31 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(218,'test','SMPP','2012-08-01 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(219,'test','SMPP','2012-08-02 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(220,'test','SMPP','2012-08-03 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(221,'test','SMPP','2012-08-04 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(222,'test','SMPP','2012-08-05 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(223,'test','SMPP','2012-08-06 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(224,'test','SMPP','2012-08-07 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(225,'test','SMPP','2012-08-08 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(226,'test','SMPP','2012-08-09 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(227,'test','SMPP','2012-08-10 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(228,'test','SMPP','2012-08-11 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(229,'test','SMPP','2012-08-12 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(230,'test','SMPP','2012-08-13 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(231,'test','SMPP','2012-08-14 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(232,'test','SMPP','2012-08-15 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(233,'test','SMPP','2012-08-16 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(234,'test','SMPP','2012-08-17 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(235,'test','SMPP','2012-08-18 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(236,'test','SMPP','2012-08-19 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(237,'test','SMPP','2012-08-20 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(238,'test','SMPP','2012-08-21 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(239,'test','SMPP','2012-08-22 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(240,'test','SMPP','2012-08-23 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(241,'test','SMPP','2012-08-24 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(242,'test','SMPP','2012-08-25 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(243,'test','SMPP','2012-08-26 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(244,'test','SMPP','2012-08-27 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(245,'test','SMPP','2012-08-28 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(246,'test','SMPP','2012-08-29 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(247,'test','SMPP','2012-08-30 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(248,'test','SMPP','2012-08-31 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(249,'test','SMPP','2012-09-01 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(250,'test','SMPP','2012-09-02 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(251,'test','SMPP','2012-09-03 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(252,'test','SMPP','2012-09-04 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(253,'test','SMPP','2012-09-05 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(254,'test','SMPP','2012-09-06 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(255,'test','SMPP','2012-09-07 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(256,'test','SMPP','2012-09-08 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(257,'test','SMPP','2012-09-09 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(258,'test','SMPP','2012-09-10 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(259,'test','SMPP','2012-09-11 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(260,'test','SMPP','2012-09-12 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(261,'test','SMPP','2012-09-13 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(262,'test','SMPP','2012-09-14 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(263,'test','SMPP','2012-09-15 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(264,'test','SMPP','2012-09-16 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(265,'test','SMPP','2012-09-17 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(266,'test','SMPP','2012-09-18 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(267,'test','SMPP','2012-09-19 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(268,'test','SMPP','2012-09-20 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(269,'test','SMPP','2012-09-21 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(270,'test','SMPP','2012-09-22 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(271,'test','SMPP','2012-09-23 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(272,'test','SMPP','2012-09-24 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(273,'test','SMPP','2012-09-25 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(274,'test','SMPP','2012-09-26 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(275,'test','SMPP','2012-09-27 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(276,'test','SMPP','2012-09-28 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(277,'test','SMPP','2012-09-29 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(278,'test','SMPP','2012-09-30 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(279,'test','SMPP','0000-00-00 00:00:00','testing','MSISDNtest','test',1,'This is msg test'),(280,'test','SMPP','2012-10-01 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(281,'test','SMPP','2012-10-02 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(282,'test','SMPP','2012-10-03 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(283,'test','SMPP','2012-10-04 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(284,'test','SMPP','2012-10-05 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(285,'test','SMPP','2012-10-06 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(286,'test','SMPP','2012-10-07 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(287,'test','SMPP','2012-10-08 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(288,'test','SMPP','2012-10-09 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(289,'test','SMPP','2012-10-10 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(290,'test','SMPP','2012-10-11 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(291,'test','SMPP','2012-10-12 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(292,'test','SMPP','2012-10-13 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(293,'test','SMPP','2012-10-14 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(294,'test','SMPP','2012-10-15 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(295,'test','SMPP','2012-10-16 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(296,'test','SMPP','2012-10-17 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(297,'test','SMPP','2012-10-18 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(298,'test','SMPP','2012-10-19 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(299,'test','SMPP','2012-10-20 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(300,'test','SMPP','2012-10-21 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(301,'test','SMPP','2012-10-22 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(302,'test','SMPP','2012-10-23 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(303,'test','SMPP','2012-10-24 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(304,'test','SMPP','2012-10-25 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(305,'test','SMPP','2012-10-26 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(306,'test','SMPP','2012-10-27 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(307,'test','SMPP','2012-10-28 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(308,'test','SMPP','2012-10-29 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(309,'test','SMPP','2012-10-30 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(310,'test','SMPP','2012-10-31 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(311,'test','SMPP','2012-11-01 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(312,'test','SMPP','2012-11-02 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(313,'test','SMPP','2012-11-03 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(314,'test','SMPP','2012-11-04 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(315,'test','SMPP','2012-11-05 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(316,'test','SMPP','2012-11-06 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(317,'test','SMPP','2012-11-07 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(318,'test','SMPP','2012-11-08 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(319,'test','SMPP','2012-11-09 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(320,'test','SMPP','2012-11-10 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(321,'test','SMPP','2012-11-11 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(322,'test','SMPP','2012-11-12 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(323,'test','SMPP','2012-11-13 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(324,'test','SMPP','2012-11-14 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(325,'test','SMPP','2012-11-15 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(326,'test','SMPP','2012-11-16 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(327,'test','SMPP','2012-11-17 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(328,'test','SMPP','2012-11-18 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(329,'test','SMPP','2012-11-19 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(330,'test','SMPP','2012-11-20 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(341,'test','SMPP','0000-00-00 00:00:00','testing','MSISDNtest','test',1,'This is msg test'),(432,'test13','SMPP','0000-00-00 00:00:00','testing','MSISDNtest','test',1,'This is msg test'),(433,'test13','SMPP','0000-00-00 00:00:00','testing','MSISDNtest','test',1,'This is msg test'),(434,'test13','SMPP','0000-00-00 00:00:00','testing','MSISDNtest','test',1,'This is msg test'),(496,'test13','SMPP','0000-00-00 00:00:00','testing','MSISDNtest','test',1,'This is msg test'),(558,'test13','SMPP','0000-00-00 00:00:00','testing','MSISDNtest','test',1,'This is msg test'),(651,'test13','SMPP','0000-00-00 00:00:00','testing','MSISDNtest','test',1,'This is msg test'),(713,'test13','SMPP','0000-00-00 00:00:00','testing','MSISDNtest','test',1,'This is msg test'),(331,'test','SMPP','2012-11-21 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(332,'test','SMPP','2012-11-22 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(333,'test','SMPP','2012-11-23 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(334,'test','SMPP','2012-11-24 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(335,'test','SMPP','2012-11-25 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(336,'test','SMPP','2012-11-26 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(337,'test','SMPP','2012-11-27 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(338,'test','SMPP','2012-11-28 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(339,'test','SMPP','2012-11-29 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(340,'test','SMPP','2012-11-30 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(342,'test','SMPP','2012-12-01 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(343,'test','SMPP','2012-12-02 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(344,'test','SMPP','2012-12-03 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(345,'test','SMPP','2012-12-04 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(346,'test','SMPP','2012-12-05 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(347,'test','SMPP','2012-12-06 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(348,'test','SMPP','2012-12-07 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(349,'test','SMPP','2012-12-08 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(350,'test','SMPP','2012-12-09 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(351,'test','SMPP','2012-12-10 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(352,'test','SMPP','2012-12-11 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(353,'test','SMPP','2012-12-12 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(354,'test','SMPP','2012-12-13 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(355,'test','SMPP','2012-12-14 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(356,'test','SMPP','2012-12-15 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(357,'test','SMPP','2012-12-16 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(358,'test','SMPP','2012-12-17 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(359,'test','SMPP','2012-12-18 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(360,'test','SMPP','2012-12-19 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(361,'test','SMPP','2012-12-20 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(362,'test','SMPP','2012-12-21 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(363,'test','SMPP','2012-12-22 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(364,'test','SMPP','2012-12-23 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(365,'test','SMPP','2012-12-24 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(366,'test','SMPP','2012-12-25 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(367,'test','SMPP','2012-12-26 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(368,'test','SMPP','2012-12-27 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(369,'test','SMPP','2012-12-28 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(370,'test','SMPP','2012-12-29 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(371,'test','SMPP','2012-12-30 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(372,'test','SMPP','2012-12-31 02:13:55','testing','MSISDNtest','test',1,'This is msg test'),(373,'test13','SMPP','2013-01-01 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(374,'test13','SMPP','2013-01-02 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(375,'test13','SMPP','2013-01-03 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(376,'test13','SMPP','2013-01-04 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(377,'test13','SMPP','2013-01-05 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(378,'test13','SMPP','2013-01-06 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(379,'test13','SMPP','2013-01-07 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(380,'test13','SMPP','2013-01-08 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(381,'test13','SMPP','2013-01-09 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(382,'test13','SMPP','2013-01-10 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(383,'test13','SMPP','2013-01-11 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(384,'test13','SMPP','2013-01-12 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(385,'test13','SMPP','2013-01-13 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(386,'test13','SMPP','2013-01-14 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(387,'test13','SMPP','2013-01-15 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(388,'test13','SMPP','2013-01-16 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(389,'test13','SMPP','2013-01-17 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(390,'test13','SMPP','2013-01-18 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(391,'test13','SMPP','2013-01-19 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(392,'test13','SMPP','2013-01-20 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(393,'test13','SMPP','2013-01-21 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(394,'test13','SMPP','2013-01-22 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(395,'test13','SMPP','2013-01-23 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(396,'test13','SMPP','2013-01-24 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(397,'test13','SMPP','2013-01-25 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(398,'test13','SMPP','2013-01-26 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(399,'test13','SMPP','2013-01-27 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(400,'test13','SMPP','2013-01-28 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(401,'test13','SMPP','2013-01-29 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(402,'test13','SMPP','2013-01-30 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(403,'test13','SMPP','2013-01-31 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(404,'test13','SMPP','2013-02-01 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(405,'test13','SMPP','2013-02-02 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(406,'test13','SMPP','2013-02-03 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(407,'test13','SMPP','2013-02-04 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(408,'test13','SMPP','2013-02-05 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(409,'test13','SMPP','2013-02-06 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(410,'test13','SMPP','2013-02-07 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(411,'test13','SMPP','2013-02-08 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(412,'test13','SMPP','2013-02-09 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(413,'test13','SMPP','2013-02-10 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(414,'test13','SMPP','2013-02-11 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(415,'test13','SMPP','2013-02-12 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(416,'test13','SMPP','2013-02-13 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(417,'test13','SMPP','2013-02-14 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(418,'test13','SMPP','2013-02-15 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(419,'test13','SMPP','2013-02-16 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(420,'test13','SMPP','2013-02-17 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(421,'test13','SMPP','2013-02-18 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(422,'test13','SMPP','2013-02-19 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(423,'test13','SMPP','2013-02-20 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(424,'test13','SMPP','2013-02-21 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(425,'test13','SMPP','2013-02-22 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(426,'test13','SMPP','2013-02-23 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(427,'test13','SMPP','2013-02-24 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(428,'test13','SMPP','2013-02-25 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(429,'test13','SMPP','2013-02-26 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(430,'test13','SMPP','2013-02-27 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(431,'test13','SMPP','2013-02-28 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(435,'test13','SMPP','2013-03-01 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(436,'test13','SMPP','2013-03-02 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(437,'test13','SMPP','2013-03-03 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(438,'test13','SMPP','2013-03-04 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(439,'test13','SMPP','2013-03-05 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(440,'test13','SMPP','2013-03-06 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(441,'test13','SMPP','2013-03-07 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(442,'test13','SMPP','2013-03-08 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(443,'test13','SMPP','2013-03-09 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(444,'test13','SMPP','2013-03-10 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(445,'test13','SMPP','2013-03-11 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(446,'test13','SMPP','2013-03-12 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(447,'test13','SMPP','2013-03-13 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(448,'test13','SMPP','2013-03-14 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(449,'test13','SMPP','2013-03-15 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(450,'test13','SMPP','2013-03-16 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(451,'test13','SMPP','2013-03-17 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(452,'test13','SMPP','2013-03-18 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(453,'test13','SMPP','2013-03-19 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(454,'test13','SMPP','2013-03-20 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(455,'test13','SMPP','2013-03-21 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(456,'test13','SMPP','2013-03-22 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(457,'test13','SMPP','2013-03-23 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(458,'test13','SMPP','2013-03-24 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(459,'test13','SMPP','2013-03-25 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(460,'test13','SMPP','2013-03-26 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(461,'test13','SMPP','2013-03-27 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(462,'test13','SMPP','2013-03-28 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(463,'test13','SMPP','2013-03-29 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(464,'test13','SMPP','2013-03-30 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(465,'test13','SMPP','2013-03-31 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(466,'test13','SMPP','2013-04-01 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(467,'test13','SMPP','2013-04-02 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(468,'test13','SMPP','2013-04-03 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(469,'test13','SMPP','2013-04-04 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(470,'test13','SMPP','2013-04-05 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(471,'test13','SMPP','2013-04-06 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(472,'test13','SMPP','2013-04-07 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(473,'test13','SMPP','2013-04-08 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(474,'test13','SMPP','2013-04-09 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(475,'test13','SMPP','2013-04-10 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(476,'test13','SMPP','2013-04-11 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(477,'test13','SMPP','2013-04-12 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(478,'test13','SMPP','2013-04-13 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(479,'test13','SMPP','2013-04-14 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(480,'test13','SMPP','2013-04-15 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(481,'test13','SMPP','2013-04-16 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(482,'test13','SMPP','2013-04-17 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(483,'test13','SMPP','2013-04-18 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(484,'test13','SMPP','2013-04-19 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(485,'test13','SMPP','2013-04-20 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(486,'test13','SMPP','2013-04-21 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(487,'test13','SMPP','2013-04-22 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(488,'test13','SMPP','2013-04-23 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(489,'test13','SMPP','2013-04-24 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(490,'test13','SMPP','2013-04-25 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(491,'test13','SMPP','2013-04-26 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(492,'test13','SMPP','2013-04-27 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(493,'test13','SMPP','2013-04-28 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(494,'test13','SMPP','2013-04-29 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(495,'test13','SMPP','2013-04-30 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(497,'test13','SMPP','2013-05-01 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(498,'test13','SMPP','2013-05-02 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(499,'test13','SMPP','2013-05-03 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(500,'test13','SMPP','2013-05-04 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(501,'test13','SMPP','2013-05-05 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(502,'test13','SMPP','2013-05-06 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(503,'test13','SMPP','2013-05-07 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(504,'test13','SMPP','2013-05-08 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(505,'test13','SMPP','2013-05-09 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(506,'test13','SMPP','2013-05-10 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(507,'test13','SMPP','2013-05-11 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(508,'test13','SMPP','2013-05-12 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(509,'test13','SMPP','2013-05-13 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(510,'test13','SMPP','2013-05-14 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(511,'test13','SMPP','2013-05-15 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(512,'test13','SMPP','2013-05-16 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(513,'test13','SMPP','2013-05-17 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(514,'test13','SMPP','2013-05-18 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(515,'test13','SMPP','2013-05-19 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(516,'test13','SMPP','2013-05-20 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(517,'test13','SMPP','2013-05-21 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(518,'test13','SMPP','2013-05-22 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(519,'test13','SMPP','2013-05-23 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(520,'test13','SMPP','2013-05-24 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(521,'test13','SMPP','2013-05-25 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(522,'test13','SMPP','2013-05-26 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(523,'test13','SMPP','2013-05-27 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(524,'test13','SMPP','2013-05-28 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(525,'test13','SMPP','2013-05-29 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(526,'test13','SMPP','2013-05-30 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(527,'test13','SMPP','2013-05-31 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(528,'test13','SMPP','2013-06-01 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(529,'test13','SMPP','2013-06-02 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(530,'test13','SMPP','2013-06-03 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(531,'test13','SMPP','2013-06-04 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(532,'test13','SMPP','2013-06-05 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(533,'test13','SMPP','2013-06-06 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(534,'test13','SMPP','2013-06-07 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(535,'test13','SMPP','2013-06-08 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(536,'test13','SMPP','2013-06-09 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(537,'test13','SMPP','2013-06-10 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(538,'test13','SMPP','2013-06-11 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(539,'test13','SMPP','2013-06-12 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(540,'test13','SMPP','2013-06-13 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(541,'test13','SMPP','2013-06-14 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(542,'test13','SMPP','2013-06-15 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(543,'test13','SMPP','2013-06-16 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(544,'test13','SMPP','2013-06-17 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(545,'test13','SMPP','2013-06-18 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(546,'test13','SMPP','2013-06-19 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(547,'test13','SMPP','2013-06-20 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(548,'test13','SMPP','2013-06-21 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(549,'test13','SMPP','2013-06-22 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(550,'test13','SMPP','2013-06-23 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(551,'test13','SMPP','2013-06-24 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(552,'test13','SMPP','2013-06-25 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(553,'test13','SMPP','2013-06-26 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(554,'test13','SMPP','2013-06-27 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(555,'test13','SMPP','2013-06-28 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(556,'test13','SMPP','2013-06-29 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(557,'test13','SMPP','2013-06-30 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(559,'test13','SMPP','2013-07-01 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(560,'test13','SMPP','2013-07-02 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(561,'test13','SMPP','2013-07-03 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(562,'test13','SMPP','2013-07-04 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(563,'test13','SMPP','2013-07-05 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(564,'test13','SMPP','2013-07-06 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(565,'test13','SMPP','2013-07-07 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(566,'test13','SMPP','2013-07-08 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(567,'test13','SMPP','2013-07-09 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(568,'test13','SMPP','2013-07-10 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(569,'test13','SMPP','2013-07-11 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(570,'test13','SMPP','2013-07-12 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(571,'test13','SMPP','2013-07-13 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(572,'test13','SMPP','2013-07-14 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(573,'test13','SMPP','2013-07-15 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(574,'test13','SMPP','2013-07-16 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(575,'test13','SMPP','2013-07-17 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(576,'test13','SMPP','2013-07-18 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(577,'test13','SMPP','2013-07-19 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(578,'test13','SMPP','2013-07-20 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(579,'test13','SMPP','2013-07-21 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(580,'test13','SMPP','2013-07-22 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(581,'test13','SMPP','2013-07-23 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(582,'test13','SMPP','2013-07-24 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(583,'test13','SMPP','2013-07-25 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(584,'test13','SMPP','2013-07-26 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(585,'test13','SMPP','2013-07-27 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(586,'test13','SMPP','2013-07-28 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(587,'test13','SMPP','2013-07-29 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(588,'test13','SMPP','2013-07-30 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(589,'test13','SMPP','2013-07-31 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(590,'test13','SMPP','2013-08-01 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(591,'test13','SMPP','2013-08-02 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(592,'test13','SMPP','2013-08-03 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(593,'test13','SMPP','2013-08-04 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(594,'test13','SMPP','2013-08-05 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(595,'test13','SMPP','2013-08-06 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(596,'test13','SMPP','2013-08-07 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(597,'test13','SMPP','2013-08-08 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(598,'test13','SMPP','2013-08-09 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(599,'test13','SMPP','2013-08-10 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(600,'test13','SMPP','2013-08-11 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(601,'test13','SMPP','2013-08-12 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(602,'test13','SMPP','2013-08-13 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(603,'test13','SMPP','2013-08-14 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(604,'test13','SMPP','2013-08-15 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(605,'test13','SMPP','2013-08-16 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(606,'test13','SMPP','2013-08-17 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(607,'test13','SMPP','2013-08-18 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(608,'test13','SMPP','2013-08-19 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(609,'test13','SMPP','2013-08-20 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(610,'test13','SMPP','2013-08-21 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(611,'test13','SMPP','2013-08-22 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(612,'test13','SMPP','2013-08-23 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(613,'test13','SMPP','2013-08-24 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(614,'test13','SMPP','2013-08-25 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(615,'test13','SMPP','2013-08-26 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(616,'test13','SMPP','2013-08-27 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(617,'test13','SMPP','2013-08-28 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(618,'test13','SMPP','2013-08-29 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(619,'test13','SMPP','2013-08-30 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(620,'test13','SMPP','2013-08-31 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(621,'test13','SMPP','2013-09-01 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(622,'test13','SMPP','2013-09-02 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(623,'test13','SMPP','2013-09-03 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(624,'test13','SMPP','2013-09-04 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(625,'test13','SMPP','2013-09-05 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(626,'test13','SMPP','2013-09-06 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(627,'test13','SMPP','2013-09-07 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(628,'test13','SMPP','2013-09-08 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(629,'test13','SMPP','2013-09-09 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(630,'test13','SMPP','2013-09-10 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(631,'test13','SMPP','2013-09-11 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(632,'test13','SMPP','2013-09-12 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(633,'test13','SMPP','2013-09-13 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(634,'test13','SMPP','2013-09-14 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(635,'test13','SMPP','2013-09-15 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(636,'test13','SMPP','2013-09-16 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(637,'test13','SMPP','2013-09-17 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(638,'test13','SMPP','2013-09-18 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(639,'test13','SMPP','2013-09-19 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(640,'test13','SMPP','2013-09-20 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(641,'test13','SMPP','2013-09-21 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(642,'test13','SMPP','2013-09-22 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(643,'test13','SMPP','2013-09-23 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(644,'test13','SMPP','2013-09-24 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(645,'test13','SMPP','2013-09-25 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(646,'test13','SMPP','2013-09-26 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(647,'test13','SMPP','2013-09-27 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(648,'test13','SMPP','2013-09-28 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(649,'test13','SMPP','2013-09-29 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(650,'test13','SMPP','2013-09-30 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(652,'test13','SMPP','2013-10-01 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(653,'test13','SMPP','2013-10-02 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(654,'test13','SMPP','2013-10-03 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(655,'test13','SMPP','2013-10-04 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(656,'test13','SMPP','2013-10-05 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(657,'test13','SMPP','2013-10-06 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(658,'test13','SMPP','2013-10-07 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(659,'test13','SMPP','2013-10-08 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(660,'test13','SMPP','2013-10-09 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(661,'test13','SMPP','2013-10-10 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(662,'test13','SMPP','2013-10-11 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(663,'test13','SMPP','2013-10-12 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(664,'test13','SMPP','2013-10-13 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(665,'test13','SMPP','2013-10-14 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(666,'test13','SMPP','2013-10-15 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(667,'test13','SMPP','2013-10-16 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(668,'test13','SMPP','2013-10-17 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(669,'test13','SMPP','2013-10-18 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(670,'test13','SMPP','2013-10-19 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(671,'test13','SMPP','2013-10-20 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(672,'test13','SMPP','2013-10-21 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(673,'test13','SMPP','2013-10-22 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(674,'test13','SMPP','2013-10-23 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(675,'test13','SMPP','2013-10-24 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(676,'test13','SMPP','2013-10-25 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(677,'test13','SMPP','2013-10-26 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(678,'test13','SMPP','2013-10-27 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(679,'test13','SMPP','2013-10-28 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(680,'test13','SMPP','2013-10-29 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(681,'test13','SMPP','2013-10-30 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(682,'test13','SMPP','2013-10-31 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(683,'test13','SMPP','2013-11-01 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(684,'test13','SMPP','2013-11-02 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(685,'test13','SMPP','2013-11-03 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(686,'test13','SMPP','2013-11-04 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(687,'test13','SMPP','2013-11-05 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(688,'test13','SMPP','2013-11-06 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(689,'test13','SMPP','2013-11-07 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(690,'test13','SMPP','2013-11-08 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(691,'test13','SMPP','2013-11-09 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(692,'test13','SMPP','2013-11-10 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(693,'test13','SMPP','2013-11-11 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(694,'test13','SMPP','2013-11-12 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(695,'test13','SMPP','2013-11-13 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(696,'test13','SMPP','2013-11-14 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(697,'test13','SMPP','2013-11-15 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(698,'test13','SMPP','2013-11-16 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(699,'test13','SMPP','2013-11-17 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(700,'test13','SMPP','2013-11-18 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(701,'test13','SMPP','2013-11-19 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(702,'test13','SMPP','2013-11-20 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(703,'test13','SMPP','2013-11-21 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(704,'test13','SMPP','2013-11-22 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(705,'test13','SMPP','2013-11-23 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(706,'test13','SMPP','2013-11-24 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(707,'test13','SMPP','2013-11-25 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(708,'test13','SMPP','2013-11-26 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(709,'test13','SMPP','2013-11-27 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(710,'test13','SMPP','2013-11-28 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(711,'test13','SMPP','2013-11-29 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(712,'test13','SMPP','2013-11-30 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(714,'test13','SMPP','2013-12-01 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(715,'test13','SMPP','2013-12-02 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(716,'test13','SMPP','2013-12-03 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(717,'test13','SMPP','2013-12-04 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(718,'test13','SMPP','2013-12-05 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(719,'test13','SMPP','2013-12-06 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(720,'test13','SMPP','2013-12-07 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(721,'test13','SMPP','2013-12-08 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(722,'test13','SMPP','2013-12-09 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(723,'test13','SMPP','2013-12-10 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(724,'test13','SMPP','2013-12-11 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(725,'test13','SMPP','2013-12-12 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(726,'test13','SMPP','2013-12-13 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(727,'test13','SMPP','2013-12-14 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(728,'test13','SMPP','2013-12-15 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(729,'test13','SMPP','2013-12-16 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(730,'test13','SMPP','2013-12-17 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(731,'test13','SMPP','2013-12-18 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(732,'test13','SMPP','2013-12-19 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(733,'test13','SMPP','2013-12-20 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(734,'test13','SMPP','2013-12-21 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(735,'test13','SMPP','2013-12-22 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(736,'test13','SMPP','2013-12-23 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(737,'test13','SMPP','2013-12-24 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(738,'test13','SMPP','2013-12-25 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(739,'test13','SMPP','2013-12-26 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(740,'test13','SMPP','2013-12-27 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(741,'test13','SMPP','2013-12-28 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(742,'test13','SMPP','2013-12-29 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(743,'test13','SMPP','2013-12-30 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(744,'test13','SMPP','2013-12-31 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(745,'test13','SMPP','2014-01-01 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(746,'test13','SMPP','2014-01-02 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(747,'test13','SMPP','2014-01-03 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(748,'test13','SMPP','2014-01-04 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(749,'test13','SMPP','2014-01-05 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(750,'test13','SMPP','2014-01-06 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(751,'test13','SMPP','2014-01-07 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(752,'test13','SMPP','2014-01-08 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(753,'test13','SMPP','2014-01-09 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(754,'test13','SMPP','2014-01-10 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(755,'test13','SMPP','2014-01-11 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(756,'test13','SMPP','2014-01-12 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(757,'test13','SMPP','2014-01-13 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(758,'test13','SMPP','2014-01-14 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(759,'test13','SMPP','2014-01-15 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(760,'test13','SMPP','2014-01-16 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(761,'test13','SMPP','2014-01-17 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(762,'test13','SMPP','2014-02-01 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(763,'test13','SMPP','2014-02-02 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(764,'test13','SMPP','2014-02-03 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(765,'test13','SMPP','2014-02-04 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(766,'test13','SMPP','2014-02-05 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(767,'test13','SMPP','2014-02-06 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(768,'test13','SMPP','2014-02-07 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(769,'test13','SMPP','2014-02-08 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(770,'test13','SMPP','2014-02-09 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(771,'test13','SMPP','2014-02-10 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(772,'test13','SMPP','2014-02-11 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(773,'test13','SMPP','2014-02-12 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(774,'test13','SMPP','2014-02-13 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(775,'test13','SMPP','2014-02-14 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(776,'test13','SMPP','2014-02-15 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(777,'test13','SMPP','2014-02-16 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(778,'test13','SMPP','2014-02-17 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(779,'test13','SMPP','2014-03-01 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(780,'test13','SMPP','2014-03-02 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(781,'test13','SMPP','2014-03-03 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(782,'test13','SMPP','2014-03-04 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(783,'test13','SMPP','2014-03-05 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(784,'test13','SMPP','2014-03-06 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(785,'test13','SMPP','2014-03-07 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(786,'test13','SMPP','2014-03-08 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(787,'test13','SMPP','2014-03-09 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(788,'test13','SMPP','2014-03-10 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(789,'test13','SMPP','2014-03-11 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(790,'test13','SMPP','2014-03-12 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(791,'test13','SMPP','2014-03-13 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(792,'test13','SMPP','2014-03-14 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(793,'test13','SMPP','2014-03-15 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(794,'test13','SMPP','2014-03-16 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(795,'test13','SMPP','2014-03-17 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(796,'test13','SMPP','2014-04-01 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(797,'test13','SMPP','2014-04-02 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(798,'test13','SMPP','2014-04-03 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(799,'test13','SMPP','2014-04-04 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(800,'test13','SMPP','2014-04-05 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(801,'test13','SMPP','2014-04-06 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(802,'test13','SMPP','2014-04-07 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(803,'test13','SMPP','2014-04-08 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(804,'test13','SMPP','2014-04-09 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(805,'test13','SMPP','2014-04-10 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(806,'test13','SMPP','2014-04-11 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(807,'test13','SMPP','2014-04-12 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(808,'test13','SMPP','2014-04-13 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(809,'test13','SMPP','2014-04-14 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(810,'test13','SMPP','2014-04-15 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(811,'test13','SMPP','2014-04-16 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(812,'test13','SMPP','2014-04-17 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(813,'test13','SMPP','2014-05-01 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(814,'test13','SMPP','2014-05-02 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(815,'test13','SMPP','2014-05-03 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(816,'test13','SMPP','2014-05-04 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(817,'test13','SMPP','2014-05-05 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(818,'test13','SMPP','2014-05-06 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(819,'test13','SMPP','2014-05-07 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(820,'test13','SMPP','2014-05-08 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(821,'test13','SMPP','2014-05-09 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(822,'test13','SMPP','2014-05-10 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(823,'test13','SMPP','2014-05-11 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(824,'test13','SMPP','2014-05-12 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(825,'test13','SMPP','2014-05-13 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(826,'test13','SMPP','2014-05-14 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(827,'test13','SMPP','2014-05-15 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(828,'test13','SMPP','2014-05-16 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(829,'test13','SMPP','2014-05-17 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(830,'test13','SMPP','2014-06-01 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(831,'test13','SMPP','2014-06-02 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(832,'test13','SMPP','2014-06-03 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(833,'test13','SMPP','2014-06-04 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(834,'test13','SMPP','2014-06-05 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(835,'test13','SMPP','2014-06-06 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(836,'test13','SMPP','2014-06-07 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(837,'test13','SMPP','2014-06-08 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(838,'test13','SMPP','2014-06-09 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(839,'test13','SMPP','2014-06-10 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(840,'test13','SMPP','2014-06-11 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(841,'test13','SMPP','2014-06-12 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(842,'test13','SMPP','2014-06-13 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(843,'test13','SMPP','2014-06-14 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(844,'test13','SMPP','2014-06-15 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(845,'test13','SMPP','2014-06-16 12:13:55','testing','MSISDNtest','test',1,'This is msg test'),(846,'test13','SMPP','2014-06-17 12:13:55','testing','MSISDNtest','test',1,'This is msg test'); /*!40000 ALTER TABLE `tblDataSentSMS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tblModelPrefixes` -- DROP TABLE IF EXISTS `tblModelPrefixes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tblModelPrefixes` ( `ModelName` char(16) NOT NULL, `ESNPrefix` char(12) NOT NULL, `ESNLength` smallint(5) unsigned NOT NULL DEFAULT '0', `DefaultModel` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ESNPrefix`), KEY `ModelName` (`ModelName`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='GPS Model Type ESN Prefixes'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tblModelPrefixes` -- LOCK TABLES `tblModelPrefixes` WRITE; /*!40000 ALTER TABLE `tblModelPrefixes` DISABLE KEYS */; INSERT INTO `tblModelPrefixes` VALUES ('NewModel','EMEI',123,2),('NewModel','EMEI1',123,2),('NewModel','EMEI2',123,2),('NewModel','EMEI4',223,3),('NewModel','EMEI5',223,3),('NewModel','EMEI6',223,4); /*!40000 ALTER TABLE `tblModelPrefixes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tblUnits` -- DROP TABLE IF EXISTS `tblUnits`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tblUnits` ( `UnitID` int(11) NOT NULL AUTO_INCREMENT, `ESN` char(16) NOT NULL, `ICCID` char(32) DEFAULT NULL, `MSISDN` char(20) DEFAULT NULL, `IMEI` char(16) DEFAULT NULL, `OwnerID` char(22) DEFAULT NULL, `VehicleID` char(22) DEFAULT NULL, `DesiredRateLevel` smallint(5) unsigned NOT NULL DEFAULT '0', `RateLevel` smallint(5) DEFAULT NULL, `Config` char(255) DEFAULT NULL, `ConfigLast` char(255) DEFAULT NULL, `ConfigLastTime` datetime DEFAULT NULL, `HardwareVersion` varchar(10) DEFAULT NULL, `SoftwareVersion` varchar(10) DEFAULT NULL, `Miles` int(11) DEFAULT NULL, `LastMiles` int(11) DEFAULT NULL, `LandmarkID` char(22) DEFAULT NULL, `ResellerID` char(22) DEFAULT NULL, `RA` varchar(50) NOT NULL, `RAReason` varchar(25) NOT NULL, `RAOther` text NOT NULL, `DevelopmentUnit` tinyint(4) NOT NULL DEFAULT '0', PRIMARY KEY (`UnitID`), KEY `OwnerID` (`OwnerID`), KEY `ResellerID` (`ResellerID`), KEY `VehicleID` (`VehicleID`), KEY `MSISDN` (`MSISDN`), KEY `ESN` (`ESN`), KEY `ICCID` (`ICCID`) ) ENGINE=InnoDB AUTO_INCREMENT=866 DEFAULT CHARSET=latin1 COMMENT='GPS Units'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tblUnits` -- LOCK TABLES `tblUnits` WRITE; /*!40000 ALTER TABLE `tblUnits` DISABLE KEYS */; INSERT INTO `tblUnits` VALUES (1,'11ESN','11ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(2,'12ESN','12ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(3,'13ESN','13ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(4,'14ESN','14ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(5,'15ESN','15ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(6,'16ESN','16ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(7,'17ESN','17ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(8,'18ESN','18ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(9,'19ESN','19ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(10,'110ESN','110ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(11,'111ESN','111ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(12,'112ESN','112ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(13,'113ESN','113ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(14,'114ESN','114ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(15,'115ESN','115ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(16,'116ESN','116ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(17,'117ESN','117ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(18,'118ESN','118ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(19,'119ESN','119ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(20,'120ESN','120ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(21,'121ESN','121ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(22,'122ESN','122ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(23,'123ESN','123ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(24,'124ESN','124ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(25,'125ESN','125ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(26,'126ESN','126ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(27,'127ESN','127ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(28,'128ESN','128ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(29,'129ESN','129ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(30,'130ESN','130ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(31,'131ESN','131ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-01-31 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(32,'21ESN','21ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(33,'22ESN','22ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(34,'23ESN','23ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(35,'24ESN','24ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(36,'25ESN','25ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(37,'26ESN','26ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(38,'27ESN','27ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(39,'28ESN','28ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(40,'29ESN','29ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(41,'210ESN','210ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(42,'211ESN','211ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(43,'212ESN','212ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(44,'213ESN','213ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(45,'214ESN','214ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(46,'215ESN','215ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(47,'216ESN','216ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(48,'217ESN','217ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(49,'218ESN','218ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(50,'219ESN','219ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(51,'220ESN','220ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(52,'221ESN','221ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(53,'222ESN','222ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(54,'223ESN','223ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(55,'224ESN','224ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(56,'225ESN','225ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(57,'226ESN','226ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(58,'227ESN','227ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(59,'228ESN','228ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(60,'229ESN','229ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-02-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(61,'230ESN','230ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','0000-00-00 00:00:00','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(62,'231ESN','231ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','0000-00-00 00:00:00','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(63,'31ESN','31ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(64,'32ESN','32ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(65,'33ESN','33ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(66,'34ESN','34ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(67,'35ESN','35ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(68,'36ESN','36ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(69,'37ESN','37ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(70,'38ESN','38ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(71,'39ESN','39ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(72,'310ESN','310ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(73,'311ESN','311ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(74,'312ESN','312ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(75,'313ESN','313ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(76,'314ESN','314ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(77,'315ESN','315ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(78,'316ESN','316ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(79,'317ESN','317ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(80,'318ESN','318ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(81,'319ESN','319ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(82,'320ESN','320ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(83,'321ESN','321ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(84,'322ESN','322ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(85,'323ESN','323ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(86,'324ESN','324ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(87,'325ESN','325ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(88,'326ESN','326ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(89,'327ESN','327ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(90,'328ESN','328ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(91,'329ESN','329ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(92,'330ESN','330ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(93,'331ESN','331ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-03-31 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(94,'41ESN','41ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(95,'42ESN','42ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(96,'43ESN','43ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(97,'44ESN','44ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(98,'45ESN','45ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(99,'46ESN','46ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(100,'47ESN','47ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(101,'48ESN','48ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(102,'49ESN','49ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(103,'410ESN','410ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(104,'411ESN','411ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(105,'412ESN','412ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(106,'413ESN','413ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(107,'414ESN','414ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(108,'415ESN','415ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(109,'416ESN','416ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(110,'417ESN','417ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(111,'418ESN','418ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(112,'419ESN','419ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(113,'420ESN','420ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(114,'421ESN','421ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(115,'422ESN','422ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(116,'423ESN','423ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(117,'424ESN','424ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(118,'425ESN','425ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(119,'426ESN','426ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(120,'427ESN','427ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(121,'428ESN','428ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(122,'429ESN','429ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(123,'430ESN','430ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-04-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(124,'431ESN','431ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','0000-00-00 00:00:00','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(125,'51ESN','51ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(126,'52ESN','52ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(127,'53ESN','53ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(128,'54ESN','54ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(129,'55ESN','55ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(130,'56ESN','56ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(131,'57ESN','57ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(132,'58ESN','58ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(133,'59ESN','59ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(134,'510ESN','510ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(135,'511ESN','511ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(136,'512ESN','512ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(137,'513ESN','513ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(138,'514ESN','514ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(139,'515ESN','515ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(140,'516ESN','516ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(141,'517ESN','517ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(142,'518ESN','518ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(143,'519ESN','519ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(144,'520ESN','520ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(145,'521ESN','521ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(146,'522ESN','522ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(147,'523ESN','523ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(148,'524ESN','524ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(149,'525ESN','525ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(150,'526ESN','526ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(151,'527ESN','527ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(152,'528ESN','528ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(153,'529ESN','529ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(154,'530ESN','530ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(155,'531ESN','531ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-05-31 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(156,'61ESN','61ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(157,'62ESN','62ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(158,'63ESN','63ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(159,'64ESN','64ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(160,'65ESN','65ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(161,'66ESN','66ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(162,'67ESN','67ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(163,'68ESN','68ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(164,'69ESN','69ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(165,'610ESN','610ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(166,'611ESN','611ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(167,'612ESN','612ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(168,'613ESN','613ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(169,'614ESN','614ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(170,'615ESN','615ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(171,'616ESN','616ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(172,'617ESN','617ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(173,'618ESN','618ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(174,'619ESN','619ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(175,'620ESN','620ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(176,'621ESN','621ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(177,'622ESN','622ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(178,'623ESN','623ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(179,'624ESN','624ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(180,'625ESN','625ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(181,'626ESN','626ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(182,'627ESN','627ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(183,'628ESN','628ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(184,'629ESN','629ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(185,'630ESN','630ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-06-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(186,'631ESN','631ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','0000-00-00 00:00:00','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(187,'71ESN','71ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(188,'72ESN','72ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(189,'73ESN','73ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(190,'74ESN','74ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(191,'75ESN','75ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(192,'76ESN','76ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(193,'77ESN','77ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(194,'78ESN','78ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(195,'79ESN','79ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(196,'710ESN','710ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(197,'711ESN','711ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(198,'712ESN','712ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(199,'713ESN','713ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(200,'714ESN','714ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(201,'715ESN','715ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(202,'716ESN','716ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(203,'717ESN','717ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(204,'718ESN','718ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(205,'719ESN','719ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(206,'720ESN','720ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(207,'721ESN','721ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(208,'722ESN','722ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(209,'723ESN','723ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(210,'724ESN','724ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(211,'725ESN','725ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(212,'726ESN','726ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(213,'727ESN','727ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(214,'728ESN','728ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(215,'729ESN','729ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(216,'730ESN','730ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(217,'731ESN','731ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-07-31 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(218,'81ESN','81ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(219,'82ESN','82ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(220,'83ESN','83ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(221,'84ESN','84ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(222,'85ESN','85ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(223,'86ESN','86ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(224,'87ESN','87ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(225,'88ESN','88ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(226,'89ESN','89ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(227,'810ESN','810ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(228,'811ESN','811ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(229,'812ESN','812ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(230,'813ESN','813ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(231,'814ESN','814ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(232,'815ESN','815ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(233,'816ESN','816ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(234,'817ESN','817ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(235,'818ESN','818ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(236,'819ESN','819ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(237,'820ESN','820ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(238,'821ESN','821ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(239,'822ESN','822ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(240,'823ESN','823ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(241,'824ESN','824ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(242,'825ESN','825ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(243,'826ESN','826ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(244,'827ESN','827ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(245,'828ESN','828ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(246,'829ESN','829ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(247,'830ESN','830ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(248,'831ESN','831ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-08-31 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(249,'91ESN','91ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(250,'92ESN','92ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(251,'93ESN','93ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(252,'94ESN','94ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(253,'95ESN','95ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(254,'96ESN','96ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(255,'97ESN','97ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(256,'98ESN','98ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(257,'99ESN','99ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(258,'910ESN','910ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(259,'911ESN','911ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(260,'912ESN','912ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(261,'913ESN','913ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(262,'914ESN','914ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(263,'915ESN','915ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(264,'916ESN','916ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(265,'917ESN','917ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(266,'918ESN','918ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(267,'919ESN','919ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(268,'920ESN','920ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(269,'921ESN','921ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(270,'922ESN','922ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(271,'923ESN','923ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(272,'924ESN','924ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(273,'925ESN','925ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(274,'926ESN','926ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(275,'927ESN','927ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(276,'928ESN','928ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(277,'929ESN','929ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(278,'930ESN','930ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-09-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(279,'931ESN','931ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','0000-00-00 00:00:00','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(280,'101ESN','101ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(281,'102ESN','102ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(282,'103ESN','103ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(283,'104ESN','104ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(284,'105ESN','105ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(285,'106ESN','106ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(286,'107ESN','107ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(287,'108ESN','108ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(288,'109ESN','109ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(289,'1010ESN','1010ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(290,'1011ESN','1011ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(291,'1012ESN','1012ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(292,'1013ESN','1013ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(293,'1014ESN','1014ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(294,'1015ESN','1015ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(295,'1016ESN','1016ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(296,'1017ESN','1017ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(297,'1018ESN','1018ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(298,'1019ESN','1019ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(299,'1020ESN','1020ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(300,'1021ESN','1021ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(301,'1022ESN','1022ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(302,'1023ESN','1023ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(303,'1024ESN','1024ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(304,'1025ESN','1025ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(305,'1026ESN','1026ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(306,'1027ESN','1027ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(307,'1028ESN','1028ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(308,'1029ESN','1029ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(309,'1030ESN','1030ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(310,'1031ESN','1031ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-10-31 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(312,'111ESN','111ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(313,'112ESN','112ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(314,'113ESN','113ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(315,'114ESN','114ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(316,'115ESN','115ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(317,'116ESN','116ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(318,'117ESN','117ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(319,'118ESN','118ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(320,'119ESN','119ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(321,'1110ESN','1110ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(322,'1111ESN','1111ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(323,'1112ESN','1112ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(324,'1113ESN','1113ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(325,'1114ESN','1114ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(326,'1115ESN','1115ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(327,'1116ESN','1116ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(328,'1117ESN','1117ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(329,'1118ESN','1118ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(330,'1119ESN','1119ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(331,'1120ESN','1120ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(332,'1121ESN','1121ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(333,'1122ESN','1122ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(334,'1123ESN','1123ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(335,'1124ESN','1124ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(336,'1125ESN','1125ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(337,'1126ESN','1126ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(338,'1127ESN','1127ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(339,'1128ESN','1128ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(340,'1129ESN','1129ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(341,'1130ESN','1130ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-11-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(342,'1131ESN','1131ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','0000-00-00 00:00:00','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(343,'121ESN','121ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(344,'122ESN','122ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(345,'123ESN','123ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(346,'124ESN','124ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(347,'125ESN','125ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(348,'126ESN','126ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(349,'127ESN','127ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(350,'128ESN','128ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(351,'129ESN','129ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(352,'1210ESN','1210ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(353,'1211ESN','1211ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(354,'1212ESN','1212ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(355,'1213ESN','1213ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(356,'1214ESN','1214ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(357,'1215ESN','1215ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(358,'1216ESN','1216ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(359,'1217ESN','1217ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(360,'1218ESN','1218ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(361,'1219ESN','1219ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(362,'1220ESN','1220ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(363,'1221ESN','1221ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(364,'1222ESN','1222ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(365,'1223ESN','1223ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(366,'1224ESN','1224ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(367,'1225ESN','1225ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(368,'1226ESN','1226ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(369,'1227ESN','1227ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(370,'1228ESN','1228ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(371,'1229ESN','1229ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(372,'1230ESN','1230ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(373,'1231ESN','1231ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2012-12-31 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(374,'11ESN','11ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(375,'12ESN','12ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(376,'13ESN','13ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(377,'14ESN','14ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(378,'15ESN','15ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(379,'16ESN','16ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(380,'17ESN','17ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(381,'18ESN','18ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(382,'19ESN','19ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(383,'110ESN','110ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(384,'111ESN','111ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(385,'112ESN','112ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(386,'113ESN','113ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(387,'114ESN','114ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(388,'115ESN','115ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(389,'116ESN','116ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(390,'117ESN','117ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(391,'118ESN','118ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(392,'119ESN','119ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(393,'120ESN','120ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(394,'121ESN','121ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(395,'122ESN','122ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(396,'123ESN','123ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(397,'124ESN','124ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(398,'125ESN','125ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(399,'126ESN','126ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(400,'127ESN','127ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(401,'128ESN','128ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(402,'129ESN','129ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(403,'130ESN','130ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(404,'131ESN','131ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-01-31 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(405,'21ESN','21ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(406,'22ESN','22ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(407,'23ESN','23ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(408,'24ESN','24ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(409,'25ESN','25ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(410,'26ESN','26ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(411,'27ESN','27ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(412,'28ESN','28ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(413,'29ESN','29ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(414,'210ESN','210ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(415,'211ESN','211ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(416,'212ESN','212ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(417,'213ESN','213ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(418,'214ESN','214ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(419,'215ESN','215ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(420,'216ESN','216ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(421,'217ESN','217ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(422,'218ESN','218ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(423,'219ESN','219ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(424,'220ESN','220ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(425,'221ESN','221ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(426,'222ESN','222ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(427,'223ESN','223ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(428,'224ESN','224ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(429,'225ESN','225ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(430,'226ESN','226ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(431,'227ESN','227ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(432,'228ESN','228ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-02-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(433,'229ESN','229ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','0000-00-00 00:00:00','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(434,'230ESN','230ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','0000-00-00 00:00:00','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(435,'231ESN','231ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','0000-00-00 00:00:00','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(436,'31ESN','31ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(437,'32ESN','32ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(438,'33ESN','33ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(439,'34ESN','34ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(440,'35ESN','35ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(441,'36ESN','36ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(442,'37ESN','37ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(443,'38ESN','38ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(444,'39ESN','39ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(445,'310ESN','310ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(446,'311ESN','311ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(447,'312ESN','312ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(448,'313ESN','313ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(449,'314ESN','314ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(450,'315ESN','315ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(451,'316ESN','316ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(452,'317ESN','317ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(453,'318ESN','318ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(454,'319ESN','319ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(455,'320ESN','320ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(456,'321ESN','321ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(457,'322ESN','322ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(458,'323ESN','323ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(459,'324ESN','324ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(460,'325ESN','325ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(461,'326ESN','326ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(462,'327ESN','327ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(463,'328ESN','328ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(464,'329ESN','329ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(465,'330ESN','330ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(466,'331ESN','331ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-03-31 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(467,'41ESN','41ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(468,'42ESN','42ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(469,'43ESN','43ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(470,'44ESN','44ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(471,'45ESN','45ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(472,'46ESN','46ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(473,'47ESN','47ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(474,'48ESN','48ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(475,'49ESN','49ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(476,'410ESN','410ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(477,'411ESN','411ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(478,'412ESN','412ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(479,'413ESN','413ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(480,'414ESN','414ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(481,'415ESN','415ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(482,'416ESN','416ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(483,'417ESN','417ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(484,'418ESN','418ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(485,'419ESN','419ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(486,'420ESN','420ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(487,'421ESN','421ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(488,'422ESN','422ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(489,'423ESN','423ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(490,'424ESN','424ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(491,'425ESN','425ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(492,'426ESN','426ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(493,'427ESN','427ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(494,'428ESN','428ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(495,'429ESN','429ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(496,'430ESN','430ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-04-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(497,'431ESN','431ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','0000-00-00 00:00:00','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(498,'51ESN','51ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(499,'52ESN','52ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(500,'53ESN','53ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(501,'54ESN','54ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(502,'55ESN','55ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(503,'56ESN','56ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(504,'57ESN','57ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(505,'58ESN','58ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(506,'59ESN','59ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(507,'510ESN','510ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(508,'511ESN','511ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(509,'512ESN','512ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(510,'513ESN','513ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(511,'514ESN','514ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(512,'515ESN','515ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(513,'516ESN','516ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(514,'517ESN','517ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(515,'518ESN','518ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(516,'519ESN','519ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(517,'520ESN','520ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(518,'521ESN','521ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(519,'522ESN','522ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(520,'523ESN','523ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(521,'524ESN','524ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(522,'525ESN','525ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(523,'526ESN','526ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(524,'527ESN','527ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(525,'528ESN','528ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(526,'529ESN','529ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(527,'530ESN','530ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(528,'531ESN','531ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-05-31 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(529,'61ESN','61ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(530,'62ESN','62ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(531,'63ESN','63ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(532,'64ESN','64ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(533,'65ESN','65ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(534,'66ESN','66ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(535,'67ESN','67ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(536,'68ESN','68ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(537,'69ESN','69ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(538,'610ESN','610ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(539,'611ESN','611ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(540,'612ESN','612ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(541,'613ESN','613ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(542,'614ESN','614ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(543,'615ESN','615ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(544,'616ESN','616ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(545,'617ESN','617ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(546,'618ESN','618ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(547,'619ESN','619ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(548,'620ESN','620ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(549,'621ESN','621ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(550,'622ESN','622ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(551,'623ESN','623ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(552,'624ESN','624ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(553,'625ESN','625ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(554,'626ESN','626ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(555,'627ESN','627ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(556,'628ESN','628ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(557,'629ESN','629ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(558,'630ESN','630ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-06-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(559,'631ESN','631ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','0000-00-00 00:00:00','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(560,'71ESN','71ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(561,'72ESN','72ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(562,'73ESN','73ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(563,'74ESN','74ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(564,'75ESN','75ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(565,'76ESN','76ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(566,'77ESN','77ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(567,'78ESN','78ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(568,'79ESN','79ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(569,'710ESN','710ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(570,'711ESN','711ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(571,'712ESN','712ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(572,'713ESN','713ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(573,'714ESN','714ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(574,'715ESN','715ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(575,'716ESN','716ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(576,'717ESN','717ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(577,'718ESN','718ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(578,'719ESN','719ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(579,'720ESN','720ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(580,'721ESN','721ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(581,'722ESN','722ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(582,'723ESN','723ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(583,'724ESN','724ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(584,'725ESN','725ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(585,'726ESN','726ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(586,'727ESN','727ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(587,'728ESN','728ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(588,'729ESN','729ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(589,'730ESN','730ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(590,'731ESN','731ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-07-31 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(591,'81ESN','81ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(592,'82ESN','82ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(593,'83ESN','83ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(594,'84ESN','84ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(595,'85ESN','85ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(596,'86ESN','86ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(597,'87ESN','87ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(598,'88ESN','88ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(599,'89ESN','89ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(600,'810ESN','810ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(601,'811ESN','811ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(602,'812ESN','812ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(603,'813ESN','813ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(604,'814ESN','814ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(605,'815ESN','815ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(606,'816ESN','816ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(607,'817ESN','817ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(608,'818ESN','818ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(609,'819ESN','819ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(610,'820ESN','820ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(611,'821ESN','821ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(612,'822ESN','822ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(613,'823ESN','823ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(614,'824ESN','824ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(615,'825ESN','825ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(616,'826ESN','826ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(617,'827ESN','827ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(618,'828ESN','828ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(619,'829ESN','829ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(620,'830ESN','830ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(621,'831ESN','831ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-08-31 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(622,'91ESN','91ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(623,'92ESN','92ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(624,'93ESN','93ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(625,'94ESN','94ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(626,'95ESN','95ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(627,'96ESN','96ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(628,'97ESN','97ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(629,'98ESN','98ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(630,'99ESN','99ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(631,'910ESN','910ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(632,'911ESN','911ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(633,'912ESN','912ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(634,'913ESN','913ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(635,'914ESN','914ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(636,'915ESN','915ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(637,'916ESN','916ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(638,'917ESN','917ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(639,'918ESN','918ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(640,'919ESN','919ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(641,'920ESN','920ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(642,'921ESN','921ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(643,'922ESN','922ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(644,'923ESN','923ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(645,'924ESN','924ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(646,'925ESN','925ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(647,'926ESN','926ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(648,'927ESN','927ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(649,'928ESN','928ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(650,'929ESN','929ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(651,'930ESN','930ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-09-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(652,'931ESN','931ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','0000-00-00 00:00:00','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(653,'101ESN','101ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(654,'102ESN','102ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(655,'103ESN','103ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(656,'104ESN','104ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(657,'105ESN','105ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(658,'106ESN','106ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(659,'107ESN','107ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(660,'108ESN','108ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(661,'109ESN','109ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(662,'1010ESN','1010ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(663,'1011ESN','1011ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(664,'1012ESN','1012ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(665,'1013ESN','1013ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(666,'1014ESN','1014ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(667,'1015ESN','1015ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(668,'1016ESN','1016ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(669,'1017ESN','1017ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(670,'1018ESN','1018ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(671,'1019ESN','1019ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(672,'1020ESN','1020ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(673,'1021ESN','1021ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(674,'1022ESN','1022ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(675,'1023ESN','1023ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(676,'1024ESN','1024ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(677,'1025ESN','1025ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(678,'1026ESN','1026ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(679,'1027ESN','1027ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(680,'1028ESN','1028ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(681,'1029ESN','1029ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(682,'1030ESN','1030ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(683,'1031ESN','1031ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-10-31 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(684,'111ESN','111ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(685,'112ESN','112ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(686,'113ESN','113ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(687,'114ESN','114ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(688,'115ESN','115ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(689,'116ESN','116ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(690,'117ESN','117ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(691,'118ESN','118ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(692,'119ESN','119ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(693,'1110ESN','1110ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(694,'1111ESN','1111ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(695,'1112ESN','1112ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(696,'1113ESN','1113ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(697,'1114ESN','1114ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(698,'1115ESN','1115ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(699,'1116ESN','1116ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(700,'1117ESN','1117ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(701,'1118ESN','1118ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(702,'1119ESN','1119ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(703,'1120ESN','1120ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(704,'1121ESN','1121ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(705,'1122ESN','1122ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(706,'1123ESN','1123ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(707,'1124ESN','1124ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(708,'1125ESN','1125ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(709,'1126ESN','1126ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(710,'1127ESN','1127ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(711,'1128ESN','1128ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(712,'1129ESN','1129ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(713,'1130ESN','1130ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-11-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(714,'1131ESN','1131ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','0000-00-00 00:00:00','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(715,'121ESN','121ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(716,'122ESN','122ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(717,'123ESN','123ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(718,'124ESN','124ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(719,'125ESN','125ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(720,'126ESN','126ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(721,'127ESN','127ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(722,'128ESN','128ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(723,'129ESN','129ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(724,'1210ESN','1210ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(725,'1211ESN','1211ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(726,'1212ESN','1212ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(727,'1213ESN','1213ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(728,'1214ESN','1214ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(729,'1215ESN','1215ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(730,'1216ESN','1216ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(731,'1217ESN','1217ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(732,'1218ESN','1218ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(733,'1219ESN','1219ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(734,'1220ESN','1220ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(735,'1221ESN','1221ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-21 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(736,'1222ESN','1222ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-22 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(737,'1223ESN','1223ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-23 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(738,'1224ESN','1224ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-24 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(739,'1225ESN','1225ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-25 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(740,'1226ESN','1226ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-26 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(741,'1227ESN','1227ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-27 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(742,'1228ESN','1228ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-28 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(743,'1229ESN','1229ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-29 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(744,'1230ESN','1230ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-30 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(745,'1231ESN','1231ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2013-12-31 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(746,'11ESN','11ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-01-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(747,'12ESN','12ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-01-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(748,'13ESN','13ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-01-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(749,'14ESN','14ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-01-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(750,'15ESN','15ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-01-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(751,'16ESN','16ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-01-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(752,'17ESN','17ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-01-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(753,'18ESN','18ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-01-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(754,'19ESN','19ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-01-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(755,'110ESN','110ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-01-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(756,'111ESN','111ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-01-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(757,'112ESN','112ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-01-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(758,'113ESN','113ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-01-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(759,'114ESN','114ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-01-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(760,'115ESN','115ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-01-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(761,'116ESN','116ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-01-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(762,'117ESN','117ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-01-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(763,'118ESN','118ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-01-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(764,'119ESN','119ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-01-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(765,'120ESN','120ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-01-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(766,'21ESN','21ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-02-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(767,'22ESN','22ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-02-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(768,'23ESN','23ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-02-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(769,'24ESN','24ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-02-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(770,'25ESN','25ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-02-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(771,'26ESN','26ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-02-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(772,'27ESN','27ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-02-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(773,'28ESN','28ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-02-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(774,'29ESN','29ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-02-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(775,'210ESN','210ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-02-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(776,'211ESN','211ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-02-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(777,'212ESN','212ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-02-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(778,'213ESN','213ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-02-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(779,'214ESN','214ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-02-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(780,'215ESN','215ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-02-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(781,'216ESN','216ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-02-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(782,'217ESN','217ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-02-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(783,'218ESN','218ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-02-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(784,'219ESN','219ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-02-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(785,'220ESN','220ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-02-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(786,'31ESN','31ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-03-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(787,'32ESN','32ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-03-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(788,'33ESN','33ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-03-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(789,'34ESN','34ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-03-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(790,'35ESN','35ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-03-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(791,'36ESN','36ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-03-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(792,'37ESN','37ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-03-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(793,'38ESN','38ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-03-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(794,'39ESN','39ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-03-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(795,'310ESN','310ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-03-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(796,'311ESN','311ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-03-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(797,'312ESN','312ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-03-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(798,'313ESN','313ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-03-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(799,'314ESN','314ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-03-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(800,'315ESN','315ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-03-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(801,'316ESN','316ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-03-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(802,'317ESN','317ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-03-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(803,'318ESN','318ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-03-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(804,'319ESN','319ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-03-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(805,'320ESN','320ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-03-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(806,'41ESN','41ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-04-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(807,'42ESN','42ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-04-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(808,'43ESN','43ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-04-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(809,'44ESN','44ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-04-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(810,'45ESN','45ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-04-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(811,'46ESN','46ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-04-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(812,'47ESN','47ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-04-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(813,'48ESN','48ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-04-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(814,'49ESN','49ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-04-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(815,'410ESN','410ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-04-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(816,'411ESN','411ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-04-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(817,'412ESN','412ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-04-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(818,'413ESN','413ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-04-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(819,'414ESN','414ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-04-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(820,'415ESN','415ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-04-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(821,'416ESN','416ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-04-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(822,'417ESN','417ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-04-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(823,'418ESN','418ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-04-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(824,'419ESN','419ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-04-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(825,'420ESN','420ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-04-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(826,'51ESN','51ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-05-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(827,'52ESN','52ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-05-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(828,'53ESN','53ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-05-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(829,'54ESN','54ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-05-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(830,'55ESN','55ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-05-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(831,'56ESN','56ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-05-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(832,'57ESN','57ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-05-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(833,'58ESN','58ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-05-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(834,'59ESN','59ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-05-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(835,'510ESN','510ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-05-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(836,'511ESN','511ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-05-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(837,'512ESN','512ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-05-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(838,'513ESN','513ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-05-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(839,'514ESN','514ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-05-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(840,'515ESN','515ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-05-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(841,'516ESN','516ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-05-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(842,'517ESN','517ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-05-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(843,'518ESN','518ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-05-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(844,'519ESN','519ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-05-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(845,'520ESN','520ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-05-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(846,'61ESN','61ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-06-01 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(847,'62ESN','62ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-06-02 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(848,'63ESN','63ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-06-03 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(849,'64ESN','64ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-06-04 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(850,'65ESN','65ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-06-05 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(851,'66ESN','66ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-06-06 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(852,'67ESN','67ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-06-07 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(853,'68ESN','68ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-06-08 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(854,'69ESN','69ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-06-09 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(855,'610ESN','610ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-06-10 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(856,'611ESN','611ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-06-11 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(857,'612ESN','612ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-06-12 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(858,'613ESN','613ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-06-13 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(859,'614ESN','614ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-06-14 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(860,'615ESN','615ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-06-15 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(861,'616ESN','616ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-06-16 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(862,'617ESN','617ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-06-17 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(863,'618ESN','618ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-06-18 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(864,'619ESN','619ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-06-19 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50),(865,'620ESN','620ICCID','myMISISON','myIMEI','testowner','A1',1,1,'myConfig','myConfigLast','2014-06-20 12:13:55','Hardwarete','Softwarete',10,100,'myLandmarkID','myResellerID','myRA','myRAReason','myRAOther',50); /*!40000 ALTER TABLE `tblUnits` ENABLE KEYS */; UNLOCK TABLES; -- -- Temporary table structure for view `vwUnits` -- DROP TABLE IF EXISTS `vwUnits`; /*!50001 DROP VIEW IF EXISTS `vwUnits`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE TABLE `vwUnits` ( `UnitID` tinyint NOT NULL, `ESN` tinyint NOT NULL, `ICCID` tinyint NOT NULL, `MSISDN` tinyint NOT NULL, `IMEI` tinyint NOT NULL, `OwnerID` tinyint NOT NULL, `VehicleID` tinyint NOT NULL, `DesiredRateLevel` tinyint NOT NULL, `RateLevel` tinyint NOT NULL, `Config` tinyint NOT NULL, `ConfigLast` tinyint NOT NULL, `ConfigLastTime` tinyint NOT NULL, `Miles` tinyint NOT NULL, `LastMiles` tinyint NOT NULL, `LandmarkID` tinyint NOT NULL, `ResellerID` tinyint NOT NULL, `RA` tinyint NOT NULL, `RAReason` tinyint NOT NULL, `RAOther` tinyint NOT NULL, `ModelName` tinyint NOT NULL, `CarrierName` tinyint NOT NULL, `CarrierSub` tinyint NOT NULL ) ENGINE=MyISAM */; SET character_set_client = @saved_cs_client; -- -- Final view structure for view `vwUnits` -- /*!50001 DROP TABLE IF EXISTS `vwUnits`*/; /*!50001 DROP VIEW IF EXISTS `vwUnits`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vwUnits` AS select `tblUnits`.`UnitID` AS `UnitID`,`tblUnits`.`ESN` AS `ESN`,`tblUnits`.`ICCID` AS `ICCID`,`tblUnits`.`MSISDN` AS `MSISDN`,`tblUnits`.`IMEI` AS `IMEI`,`tblUnits`.`OwnerID` AS `OwnerID`,`tblUnits`.`VehicleID` AS `VehicleID`,`tblUnits`.`DesiredRateLevel` AS `DesiredRateLevel`,`tblUnits`.`RateLevel` AS `RateLevel`,`tblUnits`.`Config` AS `Config`,`tblUnits`.`ConfigLast` AS `ConfigLast`,`tblUnits`.`ConfigLastTime` AS `ConfigLastTime`,`tblUnits`.`Miles` AS `Miles`,`tblUnits`.`LastMiles` AS `LastMiles`,`tblUnits`.`LandmarkID` AS `LandmarkID`,`tblUnits`.`ResellerID` AS `ResellerID`,`tblUnits`.`RA` AS `RA`,`tblUnits`.`RAReason` AS `RAReason`,`tblUnits`.`RAOther` AS `RAOther`,`tblModelPrefixes`.`ModelName` AS `ModelName`,`tblCellularCarriers`.`CarrierName` AS `CarrierName`,`tblCellularCarriers`.`CarrierSub` AS `CarrierSub` from ((`tblUnits` left join `tblModelPrefixes` on(((length(`tblUnits`.`ESN`) = `tblModelPrefixes`.`ESNLength`) and (`tblUnits`.`ESN` like concat(`tblModelPrefixes`.`ESNPrefix`,_latin1'%'))))) left join `tblCellularCarriers` on(((length(`tblUnits`.`ICCID`) = `tblCellularCarriers`.`ICCIDLength`) and (`tblUnits`.`ICCID` like concat(`tblCellularCarriers`.`ICCIDPrefix`,_latin1'%'))))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2014-06-19 3:22:51