-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathama1.sql
executable file
·652 lines (569 loc) · 840 KB
/
ama1.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
CREATE DATABASE IF NOT EXISTS `prescriptionnew` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `prescriptionnew`;
-- MySQL dump 10.13 Distrib 5.5.37, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: prescriptionnew
-- ------------------------------------------------------
-- Server version 5.5.37-0ubuntu0.12.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `unit_costs`
--
DROP TABLE IF EXISTS `unit_costs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `unit_costs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`amount` float DEFAULT NULL,
`created` datetime DEFAULT NULL,
`modified` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `unit_costs`
--
LOCK TABLES `unit_costs` WRITE;
/*!40000 ALTER TABLE `unit_costs` DISABLE KEYS */;
INSERT INTO `unit_costs` VALUES (1,'New Appointment',400,'2014-06-25 15:57:48','2014-06-25 15:57:48'),(2,'Follow Up',200,'2014-06-25 16:15:31','2014-06-25 16:15:31');
/*!40000 ALTER TABLE `unit_costs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) DEFAULT NULL,
`password` varchar(100) DEFAULT NULL,
`email` varchar(45) DEFAULT NULL,
`phone` varchar(45) DEFAULT NULL,
`gender` varchar(10) DEFAULT NULL,
`role_id` int(11) DEFAULT NULL,
`resetkey` varchar(100) DEFAULT NULL,
`status` tinyint(1) DEFAULT NULL,
`created` date DEFAULT NULL,
`modified` date DEFAULT NULL,
`doctor_identity` text CHARACTER SET big5 COLLATE big5_bin,
`image` varchar(50) DEFAULT NULL,
`thumbnail` varchar(50) DEFAULT NULL,
`is_logged` int(11) DEFAULT '0',
`available_time` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8 COMMENT=' Admin =1 Doctor = 2 , Patient = 3 ,RMP = 4';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'Dr. M. S. Tabriz','7e252689dd1c95c869684191b05a6238c46acbe9','[email protected]','01923456788',NULL,2,NULL,1,'2014-03-11','2014-04-17','Dr. Muhammed Shamsit Tabriz\r\nMBBS (DU), MPhil (course), CCD (Birdem), PGT (Medicine)','ed773511fc0800c6deba0b91f92dfd7f.png','634c52fa5f3c7b00ac8f2d874b3eb3f4.png',1,NULL),(2,'Admin','ee396230bb5788e1cf3c525c1db44576b63ac972','[email protected]','019123399000',NULL,1,NULL,1,'2014-03-18','2014-03-18',NULL,NULL,NULL,1,NULL),(3,'Emily','7e252689dd1c95c869684191b05a6238c46acbe9','[email protected]','019234456678',NULL,3,'7184afa456f6572192d94ff520abf681',1,'2014-03-18','2014-04-02',NULL,NULL,NULL,NULL,NULL),(4,'RMP','7e252689dd1c95c869684191b05a6238c46acbe9','[email protected]','01912556004',NULL,4,'f4c7f7faa6fb4e7d53eefa38c717ed74',1,'2014-03-18','2014-04-02',NULL,NULL,NULL,NULL,NULL),(5,'Bob','7e252689dd1c95c869684191b05a6238c46acbe9','[email protected]','101913456789',NULL,3,NULL,1,'2014-03-18','2014-03-18',NULL,NULL,NULL,NULL,NULL),(6,'Patients','7e252689dd1c95c869684191b05a6238c46acbe9','[email protected]','01234234567','Male',3,NULL,1,'2014-03-19','2014-03-19',NULL,NULL,NULL,NULL,NULL),(7,'rmp2','7e252689dd1c95c869684191b05a6238c46acbe9','[email protected]','01213456789',NULL,4,NULL,1,'2014-03-19','2014-03-19',NULL,NULL,NULL,NULL,NULL),(8,'Aric','7e252689dd1c95c869684191b05a6238c46acbe9','[email protected]','01213456789','Male',3,NULL,1,'2014-03-19','2014-03-19',NULL,NULL,NULL,NULL,NULL),(9,'rmp2','7e252689dd1c95c869684191b05a6238c46acbe9','[email protected]','01213456789',NULL,4,NULL,1,'2014-03-19','2014-03-19',NULL,NULL,NULL,NULL,NULL),(10,'lione','7e252689dd1c95c869684191b05a6238c46acbe9','[email protected]','01213456789','Male',3,NULL,1,'2014-03-20','2014-03-20',NULL,NULL,NULL,NULL,NULL),(11,'rmp4','4331d1304df5bb658f8e846f691363cbf41b1478','[email protected]','01213456789',NULL,4,NULL,1,'2014-03-20','2014-05-08',NULL,NULL,NULL,NULL,NULL),(13,'Patient 1','7e252689dd1c95c869684191b05a6238c46acbe9','[email protected]','09117383844','Female',3,NULL,1,'2014-03-24','2014-03-24',NULL,NULL,NULL,NULL,NULL),(14,'doctor_tani','7e252689dd1c95c869684191b05a6238c46acbe9','[email protected]','',NULL,2,NULL,1,'2014-03-24','2014-03-24',NULL,NULL,NULL,NULL,NULL),(15,'doctor_sylvia','7e252689dd1c95c869684191b05a6238c46acbe9','[email protected]','',NULL,2,NULL,1,'2014-03-24','2014-03-24',NULL,NULL,NULL,NULL,NULL),(18,'Maliha','7e252689dd1c95c869684191b05a6238c46acbe9','[email protected]','01777777777','Female',3,NULL,1,'2014-03-24','2014-03-24',NULL,NULL,NULL,NULL,NULL),(19,'Sumon','7e252689dd1c95c869684191b05a6238c46acbe9','[email protected]','','Male',3,NULL,1,'2014-03-24','2014-03-24',NULL,NULL,NULL,NULL,NULL),(20,'hasin','fd7d7d8c051df31e71b93eb76be06b7f12583061','[email protected]','','Male',3,NULL,1,'2014-03-24','2014-03-24',NULL,NULL,NULL,NULL,NULL),(21,'Tumpa','fd7d7d8c051df31e71b93eb76be06b7f12583061','[email protected]','cwebiwe','Female',3,NULL,1,'2014-03-25','2014-03-25',NULL,NULL,NULL,NULL,NULL),(22,'doctor 4','7e252689dd1c95c869684191b05a6238c46acbe9','[email protected]','123345656',NULL,2,NULL,1,'2014-03-27','2014-03-27','Dr. MuhammedShamsit Tabriz\r\nMBBS, Sher-e-Bangla Medical College','7b8ae3ce89577ba4cf80f3fed4c76693.jpg','ec1235deab734ad24a9a1c4c4d66b9aa.jpg',NULL,NULL),(23,'sadat','7e252689dd1c95c869684191b05a6238c46acbe9','[email protected]','',NULL,2,NULL,1,'2014-04-01','2014-04-02','Dr. MuhammedShamsit Tabriz\r\nMBBS, BRACK Medical College','a65adfc016ddd217cddfff4c042c5168.png','a58135f7804cf5b56b57917bf796ceb4.png',NULL,NULL),(24,'abdul kadir','7e252689dd1c95c869684191b05a6238c46acbe9','[email protected]','01923456789',NULL,2,NULL,1,'2014-04-03','2014-04-03','Dr. Abdul kadir Dhaka medical college','','',NULL,NULL),(25,'Ahmed ','3c250018d1604eb736b57a304ef8cb384d6e6087','[email protected]','',NULL,2,NULL,1,'2014-04-03','2014-04-06','Dr. Ahmed, Some Medical College\r\nDegree X (2006), Degree Y (2008), Degree Z (2010)','4cc499afaecda6c624288fc0f082b7fa.jpeg','a2cded461fc7208dae5d899367534f27.jjpg',NULL,NULL),(26,'Dr. Iftekhar','3c250018d1604eb736b57a304ef8cb384d6e6087','[email protected]','',NULL,2,NULL,1,'2014-04-03','2014-04-17','Dr. Iftekhar,\r\nDhaka Medical College, MRCP, FCPS','33e3865e305cce982be735d888be4b14.png','fdf91c7e305aa99f8c9a88cbc5d1ab5b.png',NULL,NULL),(27,'Dr. Mohammed Marufur Rahman','3c250018d1604eb736b57a304ef8cb384d6e6087','[email protected]','+8801670974253',NULL,2,NULL,1,'2014-04-20','2014-04-20','Dr. Md. Marufur Rahman, \r\nHMO (Dhaka Medical College Hospital), M.B.B.S. (SSMC)','dde4dcc542a42fddad827f1b51697a1a.png','f49085c9bdd658bd04985c4bf13a4f5e.png',NULL,NULL),(28,'Dr. M. Qamrul Ahsan','15615ef90ded3a7907a7213192ca7a30be9a8df1','[email protected]','01914752928',NULL,2,NULL,1,'2014-04-21','2014-04-21','Dr. M. Qamrul Ahsan\r\nMBBS, FCPS (P-II)','81ef673b9f463bc7dadc7020aba4646f.png','aa4e866e8ebba501e8337f8aff331a8b.png',NULL,NULL),(29,'Dr. Sharmin Binte Kader','7e252689dd1c95c869684191b05a6238c46acbe9','[email protected]','01722227672',NULL,2,NULL,1,'2014-06-05','2014-06-05','Something MBBS Something','6ac8129b46224f943ba1c36c14dc5fde.png','abccfd4d228019da0dd6038aa1124bfc.png',NULL,NULL),(32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2014-06-23','2014-06-23',NULL,NULL,NULL,0,NULL);
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `prescriptions`
--
DROP TABLE IF EXISTS `prescriptions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `prescriptions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`complain` text,
`doctor_id` int(11) DEFAULT NULL,
`disease_id` int(11) DEFAULT NULL,
`prescription` text,
`advice` text,
`investigations` text,
`pdf` varchar(100) DEFAULT NULL,
`system_id` int(11) DEFAULT NULL,
`appointment_id` int(11) DEFAULT NULL,
`modified` date DEFAULT NULL,
`created` date DEFAULT NULL,
`diagnosis` text,
`followupDate` date DEFAULT NULL,
`spentTime` varchar(30) DEFAULT NULL,
`paymentType` varchar(45) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `prescriptions`
--
LOCK TABLES `prescriptions` WRITE;
/*!40000 ALTER TABLE `prescriptions` DISABLE KEYS */;
INSERT INTO `prescriptions` VALUES (19,'fsdfs',1,NULL,'fsdf','dfsdf','sdfs','Rita_1.pdf',NULL,1,'2014-06-25','2014-06-25','dfsf','2014-06-11','0 mins','Paid');
/*!40000 ALTER TABLE `prescriptions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `transactions`
--
DROP TABLE IF EXISTS `transactions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `transactions` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`rmp_id` bigint(20) DEFAULT NULL,
`transaction_id` varchar(30) DEFAULT NULL,
`amount` float DEFAULT NULL,
`date` date DEFAULT NULL,
`created` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `transaction_id_UNIQUE` (`transaction_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `transactions`
--
LOCK TABLES `transactions` WRITE;
/*!40000 ALTER TABLE `transactions` DISABLE KEYS */;
/*!40000 ALTER TABLE `transactions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Ngo`
--
DROP TABLE IF EXISTS `Ngo`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Ngo` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Ngo`
--
LOCK TABLES `Ngo` WRITE;
/*!40000 ALTER TABLE `Ngo` DISABLE KEYS */;
INSERT INTO `Ngo` VALUES (1,'mPower-Health');
/*!40000 ALTER TABLE `Ngo` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Aco`
--
DROP TABLE IF EXISTS `Aco`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Aco` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`parent` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Aco`
--
LOCK TABLES `Aco` WRITE;
/*!40000 ALTER TABLE `Aco` DISABLE KEYS */;
INSERT INTO `Aco` VALUES (1,'View User','Users'),(2,'Edit User','Users'),(3,'Edit NGO','Users'),(4,'ACL','Users'),(5,'View Data','Respondents'),(6,'Export Data','Forms'),(7,'Edit Form','Forms'),(8,'Edit Data','Forms'),(9,'View Form','Forms'),(10,'Dashboard','Application'),(11,'View Role',NULL),(12,'Edit Role',NULL),(13,'View Ngo',NULL);
/*!40000 ALTER TABLE `Aco` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `appointments`
--
DROP TABLE IF EXISTS `appointments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `appointments` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`appearance` int(11) NOT NULL,
`bp` varchar(255) DEFAULT NULL,
`color` int(11) NOT NULL,
`consciousness` int(11) NOT NULL,
`created` datetime DEFAULT NULL,
`dehydration` int(11) NOT NULL,
`edema` int(11) NOT NULL,
`modified` datetime DEFAULT NULL,
`patient_id` int(11) NOT NULL,
`pulse` int(11) NOT NULL,
`respiration` int(11) NOT NULL,
`rmp_id` int(11) NOT NULL,
`status` int(11) NOT NULL,
`temperature` float NOT NULL,
`weight` varchar(255) DEFAULT NULL,
`lockby` int(11) NOT NULL DEFAULT '0',
`diseaseImage` varchar(255) DEFAULT NULL,
`reject` int(11) DEFAULT '0',
`comments` text,
`cancel` int(11) DEFAULT '0',
`doctor_id` int(11) DEFAULT NULL,
`spentTimeFrom` datetime DEFAULT NULL,
`spentTimeTo` datetime DEFAULT NULL,
`parent_id` bigint(20) DEFAULT NULL,
`is_followup` tinyint(4) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `appointments`
--
LOCK TABLES `appointments` WRITE;
/*!40000 ALTER TABLE `appointments` DISABLE KEYS */;
INSERT INTO `appointments` VALUES (1,2,'120 / 80',3,1,'2014-05-14 12:58:52',1,1,'2014-06-25 12:18:34',107,35,2,21,1,89,'55.0 Kg ',1,'1400050779353.jpg',0,NULL,1,NULL,'2014-06-25 11:53:26','2014-06-25 12:18:34',NULL,0),(2,2,'140 / 90',1,2,'2014-05-14 13:15:36',2,1,'2014-06-24 15:57:36',108,45,1,21,0,89,'68.0 Kg ',1,'1400051806412.jpg',0,NULL,1,NULL,'2014-06-24 15:57:19','2014-06-24 15:57:36',1,0),(3,3,'200 / 120',1,2,'2014-05-14 15:45:41',2,3,'2014-06-24 16:01:56',110,40,2,21,0,89,'65.0 Kg ',1,'1400060799518.jpg',0,NULL,1,NULL,'2014-06-24 15:59:59','2014-06-24 16:01:56',NULL,0),(4,3,'120 / 200',4,3,'2014-05-15 16:06:46',2,5,'2014-06-24 16:37:26',111,250,1,21,0,80,'55.0 Kg ',1,NULL,0,NULL,1,NULL,'2014-06-24 16:33:50',NULL,NULL,0),(5,3,'200 / 110',3,2,'2014-05-15 16:09:02',2,4,'2014-06-22 16:42:10',108,222,2,21,0,80,'55.0 Kg ',1,'1400148620572.jpg',0,NULL,1,NULL,NULL,NULL,NULL,0),(6,2,'110 / 80',1,2,'2014-05-15 17:15:36',2,5,'2014-06-24 10:39:33',108,35,2,21,0,89,'62.0 Kg ',1,'1400132661397.jpg',1,'NEerw f df f',1,NULL,NULL,NULL,NULL,0),(7,2,'120 / 80',4,3,'2014-05-15 17:15:49',1,6,'2014-06-24 15:55:24',110,38,2,21,0,89,'89.0 Kg ',1,'1400135283213.jpg',1,'dasdff',1,NULL,'2014-06-24 15:40:18','2014-06-24 15:55:24',NULL,0),(8,2,'80 / 120',1,1,'2014-05-15 17:35:32',1,5,'2014-06-22 16:42:33',108,50,1,21,0,89,'68.0 Kg ',1,NULL,0,NULL,1,NULL,NULL,NULL,NULL,0),(9,1,'70 / 120',1,2,'2014-05-15 17:37:13',2,7,'2014-05-29 16:50:06',107,35,2,21,0,89,'42.0 Kg ',0,'1400153887646.jpg',0,NULL,1,NULL,'2014-06-25 11:53:03',NULL,NULL,0);
/*!40000 ALTER TABLE `appointments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Role`
--
DROP TABLE IF EXISTS `Role`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Role` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Role`
--
LOCK TABLES `Role` WRITE;
/*!40000 ALTER TABLE `Role` DISABLE KEYS */;
INSERT INTO `Role` VALUES (1,'Admin'),(2,'Manager'),(3,'Field Worker'),(4,'RMP');
/*!40000 ALTER TABLE `Role` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `diseases`
--
DROP TABLE IF EXISTS `diseases`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `diseases` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`prescription` text,
`advice` text,
`investigations` text,
`system_id` int(11) DEFAULT NULL,
`created` date DEFAULT NULL,
`modified` date DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `diseases`
--
LOCK TABLES `diseases` WRITE;
/*!40000 ALTER TABLE `diseases` DISABLE KEYS */;
INSERT INTO `diseases` VALUES (11,'Fever','DIAGNOSIS: Fever\r\n\r\nTab Zimax 500mg od//Fimoxyl \r\n500mg tds /TabExolev \r\n500mg od/ cap.Cef-3 200mg \r\nbd /Inj enocef for 5/7days\r\nTab Parapyrol tds FOR fever\r\nAce suppository 1stick P/R sos(>102f)','Tepid sponging\r\nPlenty water intake','CBC,Widal test,Blood c/s,MP\r\nUrine-R/E',17,'2014-03-05','2014-04-10'),(12,'Common cold ','DIAGNOSIS: Common Cold\r\n\r\nTablet ace tds if fever\r\nTablet neocilor on\r\n','Avoid cold','CBC,Cxr',17,'2014-03-05','2014-04-10'),(13,'Peptic Ulcer Disease','DIAGNOSIS: Peptic Ulcer Disease\r\n\r\nTablet Trupan/ Capsule. Maxpro/ Seclo 20mg bd for 1 month\r\nTabletlet Entacyd bd for 1 month\r\nTablet Butapan/Algin bd for pain (10)\r\n','Avoid tea,coffee, smoking, anxiety stress,\r\nempty stomach, spicy-oily food, overnight awake\r\nRegular food habit','Endoscopy of upp.GIT',7,'2014-03-09','2014-04-10'),(14,'Diarrhea','DIAGNOSIS: Diarrhea\r\n\r\nORS/i/v saline\r\nCapsule cef 3 200mg bd/Tablet ciprocin500mg bd/ Capsule doxicap100mg od/Tablet filmet 400mg tds for 5/7days cap \r\nimotil 2Tablet stat and sos\r\nTablet nospa if needed\r\nTablet onaseron bd\r\nTablet neotack bd \r\nTablet.parapyrol\r\n','Wash hand before eating\r\nDrink pure water','Stool R/E,c/s',7,'2014-03-09','2014-04-10'),(15,'Amoebic Dysentery','DIAGNOSIS: Amoebic Dysentery\r\n\r\nTab Secnid 1g 2tab once/Tab Zox 500mg \r\nbd /Tab Flagyl 400mg tds/Diloxide500mg\r\n tds for 5/7days\r\nTab Butapan10mg bd/Norvis bd FOR pain\r\nTab Neoceptin R od\r\nORS','Drink pure water \r\nWash hand before eating','Stool R/E',7,'2014-03-09','2014-04-10'),(16,'Bacillary Dysentery','DIAGNOSIS: Bacillary Dysentery\r\n\r\nTablet Cotrim ds bd/Tablet Ciprocin500mgbd/\r\nCapsule cef 3 200mg bd/Eromycin qds\r\nfor 5/7 days\r\nTablet Spanil bd/Tablet.Parapyrol/Motigut bd/Neotack bd if needed\r\n\r\n','Wash hand before eating\r\nDrink pure water','Stool R/E',7,'2014-03-09','2014-04-10'),(17,'Pneumonia','DIAGNOSIS: Pneumonia\r\n\r\nCap moxaclav tds/Tab \r\nzimax500mg/furocef250mg/\r\nFimoxyl500/Sefrad500/\r\nVanprox/loracef/spacin \r\n200mg/Inj megion/Tazid\r\nTab Napa tds FOR fever\r\nTab Piriton bd/Loratin od','Avoid cold moist environment','Cxr, CBC',6,'2014-03-09','2014-04-10'),(18,'Bronchial Asthma','DIAGNOSIS: Bronchial Asthma\r\n\r\nNebulization with ventollin sol./Tab \r\nVentolin 4 mg bd\r\nInhaler ventolin sos/ salflu cozycap bd/ sulprex \r\nbd/beclomin bd\r\nTab cardophylin100mg tds/Tab Contin \r\n400mg ½+0+0 continued\r\nInj cotson 1vial i/v sos/Tab Prednisolone\r\n20mg 1+0+0 (6)\r\n½+0+0 (2)\r\nTab Fenadin 60mgbd/Tab Tofen bd\r\nTab ,Montair10mg od','Avoid dust, cold exposure\r\nAvoid particular food which causes allergy/breathlessness','Cxr, Spirometry',6,'2014-03-09','2014-04-10'),(19,'Bronchiolitis','DIAGNOSIS: Bronchiolitis\r\n\r\nNebulization with ventolin sol/Syp.salbutal bd\r\nSyp Tofen/adryl bd\r\nSusp Zymax od/Oracyn k qds/Fimoxyl \r\ntds/Sefrad tds/Vanprox bd/loracef tds\r\nPrednisolone/Dexamethasone','Keep baby warm /dry place with proper \r\nsunlight and ventilation','Cxr P/A view',6,'2014-03-09','2014-04-10'),(20,'Hyper Tension','DIAGNOSIS: Hyper Tension\r\n\r\nTab Betanol 50mg od/Bisocor \r\nplus/Olmecar plus/Camlodin \r\nplus/Ripril plus/Angilock plus 50mg od \r\nTab relaxen/laxyl at night','Avoid table salt,anxiety\r\nDrugs-steroid,ocp\r\nRegular taking of drugs','ECG, RBS, HbA1c\r\nLipid profile S. Creatinin',5,'2014-03-09','2014-04-10'),(21,'Diabetes Mellitus','DIAGNOSIS: Diabetes Mellitus\r\n\r\nTab.comet 500mg od/comprid80mg \r\nod/Secrin2mg/Daonil 5mg od/Tos \r\n15mg od 30 min before meal\r\nTab Neuro B bd /Berin bd','Avoid Sweet/sweetner food\r\nRegular physical activity/walking\r\nLimited CHO\r\nRegular taking of drugs','RBS,FBS,',9,'2014-03-09','2014-04-10'),(22,'Food Poisoning/Gastroenteritis','DIAGNOSIS: Food Poisoning/Gastroenteritis\r\n\r\nORS/i/v infusion\r\nCapsule doxicap od/Tablet quinox 500mg bd/ Capsule cef 3 200mg bd/ \r\nTablet Omidon tds FOR vomiting\r\nTablet butapan 1 mg bd FOR pain\r\nTablet pyralgin bd FOR fever\r\n','Wash hand before eating\r\nAvoid eating food from outside\r\nDrink pure water\r\n','Stool R/E,C/S',7,'2014-03-24','2014-04-10'),(23,'Worms/Helminthic Infestation','DIAGNOSIS: Worms/Helminthic Infestation\r\n\r\nTablet almex400mg 1Tablet single dose\\meben 100mg bd for 3 days\\susp delentin 2tsf single dose','Regular cutting of nail\r\nCleanliness\r\nWash hand with soap before taking food and after defecation\r\n','Stool for r\\e',7,'2014-03-24','2014-04-10'),(24,'Haemorrhoid','DIAGNOSIS: Haemorrhoid\r\n\r\nAnustat/erian/belnovate rectal ointment\r\nTablet Hemorif bd\r\nCapsule SK mox500mg tds\r\nTablet ace/rolac/\r\nEsupgula husk/laxenna/duralex\r\n','Avoid constipation\r\nDrink plenty of water\r\nEat fibre containing food,vegetables\r\nIf external pileswith severe pain /not relieved by conservative rx advice for surgery (longo operation)\r\n','',7,'2014-03-24','2014-04-10'),(25,'Gall Stone','DIAGNOSIS: Gall Stone\r\n\r\nTablet rolac 10mg\\ Capsule anadol 100mg bd\\Tablet tynium bd if pain\r\nCapsule seclo 20mg bd\r\nCapsule roxim200mg bd\r\nTablet sedil on\r\n','Avoid fatty food\r\nSurgery(cholecystectomy)\r\n','USG of HBS including Pancrease\r\nCBC',4,'2014-03-24','2014-04-10'),(26,'Hepatitis','DIAGNOSIS: Hepatitis\r\n\r\nTablet ace bd\r\nTablet deflux bd\r\nOrs\r\nCapsule losectil20mg bd\r\nTablet supravit m od\r\nDextrose \r\n','Drink plenty of water \r\nTake nutritious food,\r\nIntake more CHO containg food\r\nAvoid fat\r\n','S.Bilirubin,HBsag,\r\nUSG of HBS\r\n',4,'2014-03-24','2014-04-10'),(27,'Urinary Tract Infection','DIAGNOSIS: Urinary Tract Infection\r\n\r\nInj. enocef 2 gm/maxcef/Tablet cotrim ds bd\\Tablet azithroicin 500\\ Capsule cef 3 mg bd for 5\\7 days\r\nTablet ace bd\r\n','Plenty of water intake\r\nAvoid multiple partner\r\nUse protective measure (like condom)\r\n','URINE/R/E, C/S',3,'2014-03-24','2014-04-10'),(28,'Urinary Stone','DIAGNOSIS: Urinary Stone\r\n\r\nInj./Tablet rolac / norvis/anadol/clofenac plus \r\nTablet napa bd\r\nTablet omidon bd\r\nTablet trupan bd\r\n','Plenty of water intake\r\nsurgery\r\n','Urine R\\E\r\nUSG of KUB\r\nPlain X ray of KUB\r\nCBC\r\n',3,'2014-03-24','2014-04-10'),(29,'Rheumatic Fever','DIAGNOSIS: Rheumatic Fever\r\n\r\nTablet crystapen v 250mg bd for 5yrs\\inj benzapen 12 lac\r\n1 vial i\\m every 4weeks for 1year\r\nTablet disprin bd after meal if pain\r\nTablet cortan 20mg\r\n','Check ASO titre /4 month','CBC, ASO titre, ECGg,Throat Swab',5,'2014-03-24','2014-04-10'),(30,'Migraine','DIAGNOSIS: Migraine\r\n\r\nTablet ace plus bd\r\nTablet migranil .5mg\r\nTablet tryptin 25 mg\r\nTablet indever\r\nTablet nixalo .25mg\r\n','Avoid triggering factors like anxiety,stress,particular food,insomnia,noise,light','X-ray PNS OM view',2,'2014-03-24','2014-04-10'),(31,'Gout','DIAGNOSIS: Gout\r\n\r\nTablet napa 500mg/Tablet inflam400mg/Tablet flexi bd/ Capsule indomet 25 mg bd/sonap 500mg bd/melcam/flexicam\r\nTablet esloric 100 mg od\r\nTablet neoceptin R bd\r\n','Avoid meat/fish/aspirin/diuretics/alcohol\r\nOr other precipitating factors\r\n','CBC,s.urate\r\nXray of affected joint\r\nSynovial fluid analysis\r\n',10,'2014-03-24','2014-04-10'),(32,'Anemia','DIAGNOSIS: Anemia\r\n\r\nTablet folfetab bd/ Capsule feofol bd/ Capsule zif od/Tablet ziliron od/Inj Imferon\r\nTablet supravit M od\r\nBT if severe\r\n','Eat fresh vegetables/fruit','CBC, S.iron',12,'2014-03-24','2014-04-10'),(33,'Tineasis','DIAGNOSIS: Tineasis\r\n\r\nAfun/pevaryl/pevisone/fungidal HC /betnovate cl cream bd\r\nCapsule flugal 50 mg od\r\nTablet alatrol on\r\n','Maintain cleanliness\r\nWashing/Changes of cloth regularly\r\n','Skin scraping for r/e',13,'2014-03-24','2014-04-10'),(34,'Scabies','DIAGNOSIS: Scabies\r\n\r\nLorix/scabex cream all over body except face \r\nWash after 24 hrs\r\nTablet alatrol on\r\n','Washing of cloth /bedsheet with boiled water\r\nRx of other affected member\r\n','',13,'2014-03-24','2014-04-10'),(35,'Syphilis','DIAGNOSIS: Syphilis\r\n\r\nCapsule doxicap /inj dipen i/m for 15 days ','Avoid unprotected sexual contact\r\nPractice religious activity\r\n','VDRL/TPHA',14,'2014-03-24','2014-04-10'),(36,'Gonorrhea','DIAGNOSIS: Gonorrhea\r\n\r\nTablet cotrim ds bd\\Tablet azithroicin 500\\ Capsule cef 3 mg for 5\\7 days /inj ceftron 2gm od \r\nTablet ace bd\r\n','Avoid unprotected sexual contact\r\nPractice religious activity\r\nPlenty of water intake\r\n','URINE –R/E,C/S\r\nURETHRAL DISCHARGE\r\n',14,'2014-03-24','2014-04-10'),(37,'Conjunctivitis','DIAGNOSIS: Conjunctivitis\r\n\r\nCiprocin/iventi/mexlo /stenicol/aprodex eye drop 2 drops tds\r\nTablet ordain on\r\n','Avoid day light exposure\r\nWear sun glass\r\n','Conjunctival swab for c/s',15,'2014-03-24','2014-04-10'),(38,'Tonsillitis','DIAGNOSIS: Tonsillitis\r\n\r\nCapsule fimoxyl 500mg tds/Tablet trevox 500mg od\\Tablet azithroicin 500 od\\ Capsule sefrad 500mg tds for 5\\7 days\r\nTablet piriton bd\r\nTablet ace bd\r\n','Avoid cold exposure,cold water/drinks ,\r\nIf frequent attack after taking several group of antibiotics surgery is adviced(tonsillectomy)\r\n','Throat Swab for c/s',16,'2014-03-24','2014-04-10'),(39,'Sinusitis','DIAGNOSIS: Sinusitis\r\n\r\nCapsule fimoxyl 500mg tds/Tablet trevox 500mg od\\Tablet azithroicin 500 od\\cap sefrad 500mg tds for 5\\7 days\r\nMenthol/antazol/decomit nasal spray\r\nTablet ace plus bd\r\nTablet piriton bd','Avoid cold exposure','Xray PNS OM VIiew',16,'2014-03-24','2014-04-10'),(40,'CSOM','DIAGNOSIS: CSOM\r\n\r\nCapsule fimoxyl 500mg tds/Tablet trevox 500mg od\\Tablet azithroicin 500 od\\ Capsule sefrad 500mg tds/roxim 200mg bd for 5\\7 days\r\nChlorphen/Ciprocin /polycort ear drop 2drops tds\r\nTablet piriton bd\r\nTablet ace bd\r\n','Regular Aural toileting\r\nAvoid entry of water into ear\r\nAvoid swimming/diving\r\nIf relapse frequently after taking several groups of antibiotics advice for surgery myringoplasty (repair of tympanic membrane)\r\n','Aural swab for c/s',16,'2014-03-24','2014-04-10');
/*!40000 ALTER TABLE `diseases` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Aco_Role`
--
DROP TABLE IF EXISTS `Aco_Role`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Aco_Role` (
`Aco_id` bigint(20) NOT NULL,
`roles_id` bigint(20) NOT NULL,
KEY `FK9800E9284001C377` (`roles_id`),
KEY `FK9800E928299F20F6` (`Aco_id`),
CONSTRAINT `FK9800E928299F20F6` FOREIGN KEY (`Aco_id`) REFERENCES `Aco` (`id`),
CONSTRAINT `FK9800E9284001C377` FOREIGN KEY (`roles_id`) REFERENCES `Role` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Aco_Role`
--
LOCK TABLES `Aco_Role` WRITE;
/*!40000 ALTER TABLE `Aco_Role` DISABLE KEYS */;
INSERT INTO `Aco_Role` VALUES (2,1),(3,1),(4,1),(5,1),(6,1),(7,1),(8,1),(10,1),(11,1),(12,1),(13,1),(9,1),(1,1);
/*!40000 ALTER TABLE `Aco_Role` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Form`
--
DROP TABLE IF EXISTS `Form`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Form` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`created` datetime DEFAULT NULL,
`dataCount` bigint(20) NOT NULL,
`isActive` bit(1) NOT NULL,
`json` longblob,
`lastReceived` datetime DEFAULT NULL,
`title` varchar(255) DEFAULT NULL,
`version` int(11) NOT NULL,
`xml` longblob,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Form`
--
LOCK TABLES `Form` WRITE;
/*!40000 ALTER TABLE `Form` DISABLE KEYS */;
INSERT INTO `Form` VALUES (1,'2014-03-25 15:28:27',112,'','','2014-05-18 16:21:35','Patient Registration',1,'<?xml version=\"1.0\"?>\r\n<h:html xmlns=\"http://www.w3.org/2002/xforms\" xmlns:ev=\"http://www.w3.org/2001/xml-events\" xmlns:h=\"http://www.w3.org/1999/xhtml\" xmlns:jr=\"http://openrosa.org/javarosa\" xmlns:orx=\"http://openrosa.org/xforms/\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">\r\n<h:head>\r\n<h:title>Patient Registration</h:title>\r\n<model>\r\n<instance>\r\n<data id=\"1\">\r\n<i_start_time/>\r\n<Patient_Image/>\r\n<firstPage>\r\n<Patient_Name/>\r\n<mobile/>\r\n<Patient_MobileNo/>\r\n</firstPage>\r\n<SecondPage>\r\n<Age_note/>\r\n<Patient_Age_Year/>\r\n<Patient_Age_Month/>\r\n<Patient_Age_Day/>\r\n<gender/>\r\n<Patient_Gender/>\r\n</SecondPage>\r\n<Patient_ID/>\r\n<i_end_time/>\r\n</data>\r\n</instance>\r\n<itext>\r\n<translation lang=\"english\">\r\n<text id=\"/data/Patient_Image:label\"><value>রোগীর ছবি তুলুন</value></text>\r\n\r\n<text id=\"/data/firstPage:label\"><value></value></text>\r\n<text id=\"/data/firstPage/Patient_Name:label\"><value>রোগীর নাম লিখুন</value></text>\r\n<text id=\"/data/firstPage/mobile:label\"><value></value></text>\r\n<text id=\"/data/firstPage/Patient_MobileNo:label\"><value>রোগীর ফোন নম্বর লিখুন</value></text>\r\n\r\n<text id=\"/data/SecondPage:label\"><value>রোগীর বয়স</value></text>\r\n<text id=\"/data/SecondPage/Age_note:label\"><value>রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন</value></text>\r\n<text id=\"/data/SecondPage/Patient_Age_Year:label\"><value>রোগীর বয়স (বছর)</value></text>\r\n<text id=\"/data/SecondPage/Patient_Age_Month:label\"><value>রোগীর বয়স (মাস)</value></text>\r\n<text id=\"/data/SecondPage/Patient_Age_Day:label\"><value>রোগীর বয়স (দিন)</value></text>\r\n<text id=\"/data/SecondPage/gender:label\"><value></value></text>\r\n<text id=\"/data/SecondPage/Patient_Gender:label\"><value>রোগীর লিঙ্গ</value></text>\r\n<text id=\"/data/SecondPage/Patient_Gender:1\"><value>পুরুষ</value></text>\r\n<text id=\"/data/SecondPage/Patient_Gender:2\"><value>মহিলা</value></text>\r\n<text id=\"/data/Patient_ID:label\"><value>রোগীর কার্ড স্ক্যান করুন</value></text>\r\n\r\n</translation>\r\n</itext>\r\n\r\n<bind nodeset=\"/data/i_start_time\" jr:preload=\"timestamp\" jr:preloadParams=\"start\" type=\"dateTime\"/>\r\n<bind nodeset=\"/data/Patient_Image\" type=\"binary\" required=\"true()\" />\r\n\r\n<bind nodeset=\"/data/firstPage\"/>\r\n<bind nodeset=\"/data/firstPage/Patient_Name\" type=\"string\" required=\"true()\" />\r\n<bind nodeset=\"/data/firstPage/mobile\" readonly=\"true()\"/>\r\n<bind nodeset=\"/data/firstPage/Patient_MobileNo\" type=\"string\" constraint=\"(regex(., "^(\\d{11})$"))\" jr:constraintMsg=\"১১ ডিজিট প্রবেশ করুন\" required=\"true()\" />\r\n<bind nodeset=\"/data/SecondPage\"/>\r\n<bind nodeset=\"/data/SecondPage/Age_note\" type=\"string\" readonly=\"true()\" />\r\n<bind nodeset=\"/data/SecondPage/Patient_Age_Year\" type=\"int\" constraint=\".>=0 and .<=100\" required=\"true()\" />\r\n<bind nodeset=\"/data/SecondPage/Patient_Age_Month\" type=\"int\" constraint=\".>=0 and .<=11\" required=\"false()\"/>\r\n<bind nodeset=\"/data/SecondPage/Patient_Age_Day\" type=\"int\" constraint=\".>=0 and .<=29\" required=\"false()\"/>\r\n<bind nodeset=\"/data/SecondPage/gender\" readonly=\"true()\"/>\r\n<bind nodeset=\"/data/SecondPage/Patient_Gender\" type=\"select1\" required=\"true()\" />\r\n<bind nodeset=\"/data/Patient_ID\" type=\"barcode\" required=\"true()\" />\r\n<bind nodeset=\"/data/i_end_time\" jr:preload=\"timestamp\" jr:preloadParams=\"end\" type=\"dateTime\"/>\r\n</model>\r\n</h:head>\r\n<h:body>\r\n<upload ref=\"/data/Patient_Image\" mediatype=\"image/*\"><label ref=\"jr:itext(\'/data/Patient_Image:label\')\"/></upload>\r\n<group ref=\"/data/firstPage\" appearance=\"field-list\"><label ref=\"jr:itext(\'/data/firstPage:label\')\"/>\r\n<input ref=\"/data/firstPage/Patient_Name\"><label ref=\"jr:itext(\'/data/firstPage/Patient_Name:label\')\"/></input>\r\n<input ref=\"/data/firstPage/mobile\"><label ref=\"jr:itext(\'/data/firstPage/mobile:label\')\"/></input>\r\n<input appearance=\"numbers\" ref=\"/data/firstPage/Patient_MobileNo\"><label ref=\"jr:itext(\'/data/firstPage/Patient_MobileNo:label\')\"/></input>\r\n</group>\r\n<group ref=\"/data/SecondPage\" appearance=\"field-list\"><label ref=\"jr:itext(\'/data/SecondPage:label\')\"/>\r\n<input ref=\"/data/SecondPage/Age_note\"><label ref=\"jr:itext(\'/data/SecondPage/Age_note:label\')\"/></input>\r\n<input ref=\"/data/SecondPage/Patient_Age_Year\"><label ref=\"jr:itext(\'/data/SecondPage/Patient_Age_Year:label\')\"/><hint></hint></input>\r\n<input ref=\"/data/SecondPage/Patient_Age_Month\"><label ref=\"jr:itext(\'/data/SecondPage/Patient_Age_Month:label\')\"/><hint>বয়স ১১ মাসের বেশি হলে বছরের ঘরে \'১\' লিখুন এবং মাসের ঘরে বাড়তি কত মাস তা লিখুন</hint></input>\r\n<input ref=\"/data/SecondPage/Patient_Age_Day\"><label ref=\"jr:itext(\'/data/SecondPage/Patient_Age_Day:label\')\"/><hint>বয়স ২৯ দিনের বেশি হলে মাসের ঘরে \'১\' লিখুন এবং দিনের ঘরে বাড়তি কত দিন তা লিখুন</hint></input>\r\n\r\n<input ref=\"/data/SecondPage/gender\"><label ref=\"jr:itext(\'/data/SecondPage/gender:label\')\"/></input>\r\n<select1 ref=\"/data/SecondPage/Patient_Gender\"><label ref=\"jr:itext(\'/data/SecondPage/Patient_Gender:label\')\"/>\r\n<item><label ref=\"jr:itext(\'/data/SecondPage/Patient_Gender:1\')\"/><value>1</value></item>\r\n<item><label ref=\"jr:itext(\'/data/SecondPage/Patient_Gender:2\')\"/><value>2</value></item>\r\n</select1>\r\n</group>\r\n<input ref=\"/data/Patient_ID\" ><label ref=\"jr:itext(\'/data/Patient_ID:label\')\"/></input>\r\n</h:body>\r\n</h:html>'),(2,'2014-03-25 15:28:42',159,'','','2014-05-15 17:37:13','Patient Session',1,'<?xml version=\"1.0\"?>\r\n<h:html xmlns=\"http://www.w3.org/2002/xforms\" xmlns:ev=\"http://www.w3.org/2001/xml-events\" xmlns:h=\"http://www.w3.org/1999/xhtml\" xmlns:jr=\"http://openrosa.org/javarosa\" xmlns:orx=\"http://openrosa.org/xforms/\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">\r\n<h:head>\r\n<h:title>Patient Session</h:title>\r\n<model>\r\n<instance>\r\n<data id=\"2\">\r\n<i_start_time/>\r\n\r\n<Patient_ID/>\r\n\r\n<Second_page>\r\n<Patient_Weight_kg/>\r\n<temperature/>\r\n<Patient_Temperature/>\r\n</Second_page>\r\n\r\n<Third_page>\r\n<Patient_PulseRate/>\r\n<respiratory/>\r\n<Patient_RespiratoryRate/>\r\n<Patient_BP/>\r\n<Patient_BP_Systolic/>\r\n<Patient_BP_Diastolic/>\r\n</Third_page>\r\n\r\n<Fourth_page>\r\n<Patient_Appearance/>\r\n<color/>\r\n<Patient_Color/>\r\n<consciousness/>\r\n<Patient_Consciousness/>\r\n</Fourth_page>\r\n\r\n<Fifth_page>\r\n<Patient_Edema/>\r\n<dehydration/>\r\n<Patient_Dehydration/>\r\n</Fifth_page>\r\n\r\n<Patient_picture/>\r\n\r\n<i_end_time/>\r\n</data>\r\n</instance>\r\n<itext>\r\n<translation lang=\"english\">\r\n<text id=\"/data/Patient_ID:label\"><value>রোগীর কার্ড স্ক্যান করুন</value></text>\r\n<text id=\"/data/Second_page:label\"><value></value></text>\r\n<text id=\"/data/Second_page/Patient_Weight_kg:label\"><value>রোগীর ওজন (কে জি - kg)</value></text>\r\n<text id=\"/data/Second_page/temperature:label\"><value></value></text>\r\n<text id=\"/data/Second_page/Patient_Temperature:label\"><value>রোগীর তাপমাত্রা (ফারেনহাইট- F)</value></text>\r\n\r\n<text id=\"/data/Third_page:label\"><value></value></text>\r\n<text id=\"/data/Third_page/Patient_PulseRate:label\"><value>রোগীর পাল্স (বিট পার মিনিট - bpm)</value></text>\r\n<text id=\"/data/Third_page/respiratory:label\"><value></value></text>\r\n<text id=\"/data/Third_page/Patient_RespiratoryRate:label\"><value>রোগীর শ্বাস-প্রশ্বাস</value></text>\r\n<text id=\"/data/Third_page/Patient_RespiratoryRate:1\"><value>খুব বেশি</value></text>\r\n<text id=\"/data/Third_page/Patient_RespiratoryRate:2\"><value>স্বাভাবিক</value></text>\r\n<text id=\"/data/Third_page/Patient_RespiratoryRate:3\"><value>খুব কম</value></text>\r\n<text id=\"/data/Third_page/Patient_BP:label\"><value></value></text>\r\n<text id=\"/data/Third_page/Patient_BP_Systolic:label\"><value>রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)</value></text>\r\n<text id=\"/data/Third_page/Patient_BP_Diastolic:label\"><value>রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)</value></text>\r\n\r\n<text id=\"/data/Fourth_page:label\"><value></value></text>\r\n<text id=\"/data/Fourth_page/Patient_Appearance:label\"><value>রোগীর অবস্থা কেমন?</value></text>\r\n<text id=\"/data/Fourth_page/Patient_Appearance:1\"><value>স্বাভাবিক</value></text>\r\n<text id=\"/data/Fourth_page/Patient_Appearance:2\"><value>অসুস্থ</value></text>\r\n<text id=\"/data/Fourth_page/Patient_Appearance:3\"><value>খুব অসুস্থ</value></text>\r\n<text id=\"/data/Fourth_page/color:label\"><value></value></text>\r\n<text id=\"/data/Fourth_page/Patient_Color:label\"><value>রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?</value></text>\r\n<text id=\"/data/Fourth_page/Patient_Color:1\"><value>স্বাভাবিক</value></text>\r\n<text id=\"/data/Fourth_page/Patient_Color:2\"><value>জন্ডিস (হলুদ)</value></text>\r\n<text id=\"/data/Fourth_page/Patient_Color:3\"><value>অ্যানিমিয়া (ফ্যাকাশে)</value></text>\r\n<text id=\"/data/Fourth_page/Patient_Color:4\"><value>সায়ানোসিস (নীলচে ভাব)</value></text>\r\n<text id=\"/data/Fourth_page/consciousness:label\"><value></value></text>\r\n<text id=\"/data/Fourth_page/Patient_Consciousness:label\"><value>রোগীর জ্ঞান এর অবস্থা?</value></text>\r\n<text id=\"/data/Fourth_page/Patient_Consciousness:1\"><value>জ্ঞান আছে</value></text>\r\n<text id=\"/data/Fourth_page/Patient_Consciousness:2\"><value>অল্প জ্ঞান আছে</value></text>\r\n<text id=\"/data/Fourth_page/Patient_Consciousness:3\"><value>অজ্ঞান</value></text>\r\n\r\n<text id=\"/data/Fifth_page:label\"><value></value></text>\r\n<text id=\"/data/Fifth_page/Patient_Edema:label\"><value>রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?</value></text>\r\n<text id=\"/data/Fifth_page/Patient_Edema:1\"><value>ইডিমা নেই</value></text>\r\n<text id=\"/data/Fifth_page/Patient_Edema:2\"><value>এক পায়ে</value></text>\r\n<text id=\"/data/Fifth_page/Patient_Edema:3\"><value>দুই পায়ে</value></text>\r\n<text id=\"/data/Fifth_page/Patient_Edema:4\"><value>মুখ (চোখের চারপাশে)</value></text>\r\n<text id=\"/data/Fifth_page/Patient_Edema:5\"><value>পেটে</value></text>\r\n<text id=\"/data/Fifth_page/Patient_Edema:6\"><value>জননাঙ্গে</value></text>\r\n<text id=\"/data/Fifth_page/Patient_Edema:7\"><value>অন্য কোথাও</value></text>\r\n<text id=\"/data/Fifth_page/dehydration:label\"><value></value></text>\r\n<text id=\"/data/Fifth_page/Patient_Dehydration:label\"><value>রোগীর পানি শূন্যতা আছে কি না?</value></text>\r\n<text id=\"/data/Fifth_page/Patient_Dehydration:1\"><value>না</value></text>\r\n<text id=\"/data/Fifth_page/Patient_Dehydration:2\"><value>হ্যাঁ</value></text>\r\n\r\n<text id=\"/data/Patient_picture:label\"><value>প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন</value></text>\r\n\r\n</translation>\r\n</itext>\r\n\r\n<bind nodeset=\"/data/i_start_time\" jr:preload=\"timestamp\" jr:preloadParams=\"start\" type=\"dateTime\"/>\r\n<bind nodeset=\"/data/Patient_ID\" type=\"barcode\" required=\"true()\" />\r\n<bind nodeset=\"/data/Second_page\"/>\r\n<bind nodeset=\"/data/Second_page/Patient_Weight_kg\" type=\"decimal\" constraint=\".>=0 and .<=150\" required=\"true()\" />\r\n<bind nodeset=\"/data/Second_page/temperature\" readonly=\"true()\"/>\r\n<bind nodeset=\"/data/Second_page/Patient_Temperature\" type=\"decimal\" constraint=\".>=80 and .<=110\" required=\"true()\" />\r\n\r\n<bind nodeset=\"/data/Third_page\"/>\r\n<bind nodeset=\"/data/Third_page/Patient_PulseRate\" type=\"int\" constraint=\".>=0 and .<=250\" required=\"true()\" />\r\n<bind nodeset=\"/data/Third_page/respiratory\" readonly=\"true()\"/>\r\n<bind nodeset=\"/data/Third_page/Patient_RespiratoryRate\" type=\"select1\" required=\"true()\" />\r\n<bind nodeset=\"/data/Third_page/Patient_BP\" readonly=\"true()\"/>\r\n<bind nodeset=\"/data/Third_page/Patient_BP_Systolic\" type=\"int\" constraint=\".>=0 and .<=250\" required=\"true()\" />\r\n<bind nodeset=\"/data/Third_page/Patient_BP_Diastolic\" type=\"int\" constraint=\".>=0 and .<=250\" required=\"true()\" />\r\n\r\n<bind nodeset=\"/data/Fourth_page\"/>\r\n<bind nodeset=\"/data/Fourth_page/Patient_Appearance\" type=\"select1\" required=\"true()\" />\r\n<bind nodeset=\"/data/Fourth_page/color\" readonly=\"true()\"/>\r\n<bind nodeset=\"/data/Fourth_page/Patient_Color\" type=\"select1\" required=\"true()\" />\r\n<bind nodeset=\"/data/Fourth_page/consciousness\" readonly=\"true()\"/>\r\n<bind nodeset=\"/data/Fourth_page/Patient_Consciousness\" type=\"select1\" required=\"true()\" />\r\n\r\n<bind nodeset=\"/data/Fifth_page\"/>\r\n<bind nodeset=\"/data/Fifth_page/Patient_Edema\" type=\"select1\" required=\"true()\" />\r\n<bind nodeset=\"/data/Fifth_page/dehydration\" readonly=\"true()\"/>\r\n<bind nodeset=\"/data/Fifth_page/Patient_Dehydration\" type=\"select1\" required=\"true()\" />\r\n\r\n<bind nodeset=\"/data/Patient_picture\" type=\"binary\" required=\"false()\" />\r\n\r\n<bind nodeset=\"/data/i_end_time\" jr:preload=\"timestamp\" jr:preloadParams=\"end\" type=\"dateTime\"/>\r\n</model>\r\n</h:head>\r\n<h:body>\r\n<input ref=\"/data/Patient_ID\"><label ref=\"jr:itext(\'/data/Patient_ID:label\')\"/></input>\r\n\r\n<group appearance=\"field-list\" ref=\"/data/Second_page\"><label ref=\"jr:itext(\'/data/Second_page:label\')\"/>\r\n<input ref=\"/data/Second_page/Patient_Weight_kg\"><label ref=\"jr:itext(\'/data/Second_page/Patient_Weight_kg:label\')\"/><hint>ওজন গ্রামে হলে দশমিক ব্যবহার করে প্রকাশ করুন</hint></input>\r\n<input ref=\"/data/Second_page/temperature\"><label ref=\"jr:itext(\'/data/Second_page/temperature:label\')\"/></input>\r\n<input ref=\"/data/Second_page/Patient_Temperature\"><label ref=\"jr:itext(\'/data/Second_page/Patient_Temperature:label\')\"/></input>\r\n</group>\r\n\r\n<group appearance=\"field-list\" ref=\"/data/Third_page\"><label ref=\"jr:itext(\'/data/Third_page:label\')\"/>\r\n<input ref=\"/data/Third_page/Patient_PulseRate\"><label ref=\"jr:itext(\'/data/Third_page/Patient_PulseRate:label\')\"/></input>\r\n<input ref=\"/data/Third_page/respiratory\"><label ref=\"jr:itext(\'/data/Third_page/respiratory:label\')\"/></input>\r\n<select1 ref=\"/data/Third_page/Patient_RespiratoryRate\"><label ref=\"jr:itext(\'/data/Third_page/Patient_RespiratoryRate:label\')\"/>\r\n<item><label ref=\"jr:itext(\'/data/Third_page/Patient_RespiratoryRate:1\')\"/><value>1</value></item>\r\n<item><label ref=\"jr:itext(\'/data/Third_page/Patient_RespiratoryRate:2\')\"/><value>2</value></item>\r\n<item><label ref=\"jr:itext(\'/data/Third_page/Patient_RespiratoryRate:3\')\"/><value>3</value></item></select1>\r\n<input ref=\"/data/Third_page/Patient_BP\"><label ref=\"jr:itext(\'/data/Third_page/Patient_BP:label\')\"/></input>\r\n<input ref=\"/data/Third_page/Patient_BP_Systolic\"><label ref=\"jr:itext(\'/data/Third_page/Patient_BP_Systolic:label\')\"/></input>\r\n<input ref=\"/data/Third_page/Patient_BP_Diastolic\"><label ref=\"jr:itext(\'/data/Third_page/Patient_BP_Diastolic:label\')\"/></input>\r\n</group>\r\n\r\n<group appearance=\"field-list\" ref=\"/data/Fourth_page\"><label ref=\"jr:itext(\'/data/Fourth_page:label\')\"/>\r\n<select1 ref=\"/data/Fourth_page/Patient_Appearance\"><label ref=\"jr:itext(\'/data/Fourth_page/Patient_Appearance:label\')\"/>\r\n<item><label ref=\"jr:itext(\'/data/Fourth_page/Patient_Appearance:1\')\"/><value>1</value></item>\r\n<item><label ref=\"jr:itext(\'/data/Fourth_page/Patient_Appearance:2\')\"/><value>2</value></item>\r\n<item><label ref=\"jr:itext(\'/data/Fourth_page/Patient_Appearance:3\')\"/><value>3</value></item></select1>\r\n<input ref=\"/data/Fourth_page/color\"><label ref=\"jr:itext(\'/data/Fourth_page/color:label\')\"/></input>\r\n<select1 ref=\"/data/Fourth_page/Patient_Color\"><label ref=\"jr:itext(\'/data/Fourth_page/Patient_Color:label\')\"/>\r\n<item><label ref=\"jr:itext(\'/data/Fourth_page/Patient_Color:1\')\"/><value>1</value></item>\r\n<item><label ref=\"jr:itext(\'/data/Fourth_page/Patient_Color:2\')\"/><value>2</value></item>\r\n<item><label ref=\"jr:itext(\'/data/Fourth_page/Patient_Color:3\')\"/><value>3</value></item>\r\n<item><label ref=\"jr:itext(\'/data/Fourth_page/Patient_Color:4\')\"/><value>4</value></item>\r\n</select1>\r\n<input ref=\"/data/Fourth_page/consciousness\"><label ref=\"jr:itext(\'/data/Fourth_page/consciousness:label\')\"/></input>\r\n<select1 ref=\"/data/Fourth_page/Patient_Consciousness\"><label ref=\"jr:itext(\'/data/Fourth_page/Patient_Consciousness:label\')\"/>\r\n<item><label ref=\"jr:itext(\'/data/Fourth_page/Patient_Consciousness:1\')\"/><value>1</value></item>\r\n<item><label ref=\"jr:itext(\'/data/Fourth_page/Patient_Consciousness:2\')\"/><value>2</value></item>\r\n<item><label ref=\"jr:itext(\'/data/Fourth_page/Patient_Consciousness:3\')\"/><value>3</value></item></select1>\r\n</group>\r\n\r\n<group appearance=\"field-list\" ref=\"/data/Fifth_page\"><label ref=\"jr:itext(\'/data/Fifth_page:label\')\"/>\r\n<select1 ref=\"/data/Fifth_page/Patient_Edema\"><label ref=\"jr:itext(\'/data/Fifth_page/Patient_Edema:label\')\"/>\r\n<item><label ref=\"jr:itext(\'/data/Fifth_page/Patient_Edema:1\')\"/><value>1</value></item>\r\n<item><label ref=\"jr:itext(\'/data/Fifth_page/Patient_Edema:2\')\"/><value>2</value></item>\r\n<item><label ref=\"jr:itext(\'/data/Fifth_page/Patient_Edema:3\')\"/><value>3</value></item>\r\n<item><label ref=\"jr:itext(\'/data/Fifth_page/Patient_Edema:4\')\"/><value>4</value></item>\r\n<item><label ref=\"jr:itext(\'/data/Fifth_page/Patient_Edema:5\')\"/><value>5</value></item>\r\n<item><label ref=\"jr:itext(\'/data/Fifth_page/Patient_Edema:6\')\"/><value>6</value></item>\r\n<item><label ref=\"jr:itext(\'/data/Fifth_page/Patient_Edema:7\')\"/><value>7</value></item>\r\n</select1>\r\n<input ref=\"/data/Fifth_page/dehydration\"><label ref=\"jr:itext(\'/data/Fifth_page/dehydration:label\')\"/></input>\r\n<select1 ref=\"/data/Fifth_page/Patient_Dehydration\"><label ref=\"jr:itext(\'/data/Fifth_page/Patient_Dehydration:label\')\"/>\r\n<item><label ref=\"jr:itext(\'/data/Fifth_page/Patient_Dehydration:1\')\"/><value>1</value></item>\r\n<item><label ref=\"jr:itext(\'/data/Fifth_page/Patient_Dehydration:2\')\"/><value>2</value></item>\r\n</select1>\r\n</group>\r\n\r\n<upload ref=\"/data/Patient_picture\" mediatype=\"image/*\"><label ref=\"jr:itext(\'/data/Patient_picture:label\')\"/></upload>\r\n\r\n</h:body>\r\n</h:html>\r\n');
/*!40000 ALTER TABLE `Form` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `calls`
--
DROP TABLE IF EXISTS `calls`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `calls` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`doctor_id` bigint(20) DEFAULT NULL,
`rmp_id` bigint(20) DEFAULT NULL,
`patient_id` bigint(20) DEFAULT NULL,
`status` int(11) DEFAULT '0' COMMENT '1 = call requesting\n2 = on call',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `calls`
--
LOCK TABLES `calls` WRITE;
/*!40000 ALTER TABLE `calls` DISABLE KEYS */;
INSERT INTO `calls` VALUES (7,14,21,107,5),(8,14,21,108,8);
/*!40000 ALTER TABLE `calls` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `User_Ngo`
--
DROP TABLE IF EXISTS `User_Ngo`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `User_Ngo` (
`User_id` bigint(20) NOT NULL,
`ngos_id` bigint(20) NOT NULL,
PRIMARY KEY (`User_id`,`ngos_id`),
KEY `FKF3FCD362EF74C76F` (`ngos_id`),
KEY `FKF3FCD36247140EFE` (`User_id`),
CONSTRAINT `FKF3FCD36247140EFE` FOREIGN KEY (`User_id`) REFERENCES `User` (`id`),
CONSTRAINT `FKF3FCD362EF74C76F` FOREIGN KEY (`ngos_id`) REFERENCES `Ngo` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `User_Ngo`
--
LOCK TABLES `User_Ngo` WRITE;
/*!40000 ALTER TABLE `User_Ngo` DISABLE KEYS */;
INSERT INTO `User_Ngo` VALUES (5,1),(6,1),(7,1),(8,1),(9,1),(10,1),(11,1),(12,1),(13,1),(14,1),(15,1),(16,1),(17,1),(18,1),(19,1),(20,1),(21,1);
/*!40000 ALTER TABLE `User_Ngo` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `UnitData`
--
DROP TABLE IF EXISTS `UnitData`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `UnitData` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`extraValue` varchar(255) DEFAULT NULL,
`title` longtext,
`titleVar` varchar(255) DEFAULT NULL,
`type` varchar(255) DEFAULT NULL,
`value` longtext,
`valueVar` varchar(255) DEFAULT NULL,
`data_id` bigint(20) DEFAULT NULL,
`form_id` bigint(20) DEFAULT NULL,
`ngo_id` bigint(20) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FKF2613F6E4006B056` (`ngo_id`),
KEY `FKF2613F6EA5D68E9E` (`data_id`),
KEY `FKF2613F6E2771405E` (`form_id`),
CONSTRAINT `FKF2613F6E2771405E` FOREIGN KEY (`form_id`) REFERENCES `Form` (`id`),
CONSTRAINT `FKF2613F6E4006B056` FOREIGN KEY (`ngo_id`) REFERENCES `Ngo` (`id`),
CONSTRAINT `FKF2613F6EA5D68E9E` FOREIGN KEY (`data_id`) REFERENCES `Data` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4813 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `UnitData`
--
LOCK TABLES `UnitData` WRITE;
/*!40000 ALTER TABLE `UnitData` DISABLE KEYS */;
INSERT INTO `UnitData` VALUES (1,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1395739668885.jpg','1395739668885.jpg',1,1,1),(2,NULL,NULL,'firstPage','group','3','3',1,1,1),(3,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Sadat Sakif Ahmed','Sadat Sakif Ahmed',1,1,1),(4,NULL,NULL,'firstPage/mobile','group','0','0',1,1,1),(5,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01737233902','01737233902',1,1,1),(6,NULL,'রোগীর বয়স এবং লিঙ্গ','SecondPage','group','4','4',1,1,1),(7,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','25','25',1,1,1),(8,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','6','6',1,1,1),(9,NULL,NULL,'SecondPage/gender','group','0','0',1,1,1),(10,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',1,1,1),(11,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_patient_001','mpower_patient_001',1,1,1),(12,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_patient_001','mpower_patient_001',2,2,1),(13,NULL,'রোগীর ওজন','Second_page','group','2','2',2,2,1),(14,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','int','80','80',2,2,1),(15,NULL,'গ্রাম (Gram)','Second_page/Patient_Weight_gm','int','0','0',2,2,1),(16,NULL,NULL,'Third_page','group','8','8',2,2,1),(17,NULL,'পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','58','58',2,2,1),(18,NULL,NULL,'Third_page/Patient_BP','group','0','0',2,2,1),(19,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',2,2,1),(20,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',2,2,1),(21,NULL,NULL,'Third_page/temperature','group','0','0',2,2,1),(22,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Third_page/Patient_Temperature','decimal','96.0','96.0',2,2,1),(23,NULL,NULL,'Third_page/respiratory','group','0','0',2,2,1),(24,NULL,'শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',2,2,1),(25,NULL,NULL,'Fourth_page','group','9','9',2,2,1),(26,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',2,2,1),(27,NULL,NULL,'Fourth_page/color','group','0','0',2,2,1),(28,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',2,2,1),(29,NULL,NULL,'Fourth_page/consciousness','group','0','0',2,2,1),(30,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',2,2,1),(31,NULL,NULL,'Fourth_page/edema','group','0','0',2,2,1),(32,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',2,2,1),(33,NULL,NULL,'Fourth_page/dehydration','group','0','0',2,2,1),(34,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',2,2,1),(35,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_patient_001','mpower_patient_001',3,2,1),(36,NULL,'রোগীর ওজন','Second_page','group','2','2',3,2,1),(37,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','int','58','58',3,2,1),(38,NULL,'গ্রাম (Gram)','Second_page/Patient_Weight_gm','int','0','0',3,2,1),(39,NULL,NULL,'Third_page','group','8','8',3,2,1),(40,NULL,'পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','58','58',3,2,1),(41,NULL,NULL,'Third_page/Patient_BP','group','0','0',3,2,1),(42,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','140','140',3,2,1),(43,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','120','120',3,2,1),(44,NULL,NULL,'Third_page/temperature','group','0','0',3,2,1),(45,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Third_page/Patient_Temperature','decimal','96.5','96.5',3,2,1),(46,NULL,NULL,'Third_page/respiratory','group','0','0',3,2,1),(47,NULL,'শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব বেশি','1',3,2,1),(48,NULL,NULL,'Fourth_page','group','9','9',3,2,1),(49,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',3,2,1),(50,NULL,NULL,'Fourth_page/color','group','0','0',3,2,1),(51,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',3,2,1),(52,NULL,NULL,'Fourth_page/consciousness','group','0','0',3,2,1),(53,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',3,2,1),(54,NULL,NULL,'Fourth_page/edema','group','0','0',3,2,1),(55,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',3,2,1),(56,NULL,NULL,'Fourth_page/dehydration','group','0','0',3,2,1),(57,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',3,2,1),(58,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_patient_001','mpower_patient_001',4,2,1),(59,NULL,'রোগীর ওজন','Second_page','group','2','2',4,2,1),(60,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','int','58','58',4,2,1),(61,NULL,'গ্রাম (Gram)','Second_page/Patient_Weight_gm','int','0','0',4,2,1),(62,NULL,NULL,'Third_page','group','8','8',4,2,1),(63,NULL,'পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','58','58',4,2,1),(64,NULL,NULL,'Third_page/Patient_BP','group','0','0',4,2,1),(65,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',4,2,1),(66,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','140','140',4,2,1),(67,NULL,NULL,'Third_page/temperature','group','0','0',4,2,1),(68,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Third_page/Patient_Temperature','decimal','96.9','96.9',4,2,1),(69,NULL,NULL,'Third_page/respiratory','group','0','0',4,2,1),(70,NULL,'শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব বেশি','1',4,2,1),(71,NULL,NULL,'Fourth_page','group','9','9',4,2,1),(72,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',4,2,1),(73,NULL,NULL,'Fourth_page/color','group','0','0',4,2,1),(74,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',4,2,1),(75,NULL,NULL,'Fourth_page/consciousness','group','0','0',4,2,1),(76,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',4,2,1),(77,NULL,NULL,'Fourth_page/edema','group','0','0',4,2,1),(78,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',4,2,1),(79,NULL,NULL,'Fourth_page/dehydration','group','0','0',4,2,1),(80,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',4,2,1),(81,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1395744623267.jpg','1395744623267.jpg',5,1,1),(82,NULL,NULL,'firstPage','group','3','3',5,1,1),(83,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Ahmed Bakr','Ahmed Bakr',5,1,1),(84,NULL,NULL,'firstPage/mobile','group','0','0',5,1,1),(85,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','08523698564','08523698564',5,1,1),(86,NULL,'রোগীর বয়স এবং লিঙ্গ','SecondPage','group','4','4',5,1,1),(87,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','26','26',5,1,1),(88,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','5','5',5,1,1),(89,NULL,NULL,'SecondPage/gender','group','0','0',5,1,1),(90,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',5,1,1),(91,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_pat_02','mpower_pat_02',5,1,1),(92,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_pat_02','mpower_pat_02',6,2,1),(93,NULL,'রোগীর ওজন','Second_page','group','2','2',6,2,1),(94,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','int','78','78',6,2,1),(95,NULL,'গ্রাম (Gram)','Second_page/Patient_Weight_gm','int','0','0',6,2,1),(96,NULL,NULL,'Third_page','group','8','8',6,2,1),(97,NULL,'পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','85','85',6,2,1),(98,NULL,NULL,'Third_page/Patient_BP','group','0','0',6,2,1),(99,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',6,2,1),(100,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','100','100',6,2,1),(101,NULL,NULL,'Third_page/temperature','group','0','0',6,2,1),(102,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Third_page/Patient_Temperature','decimal','95.0','95.0',6,2,1),(103,NULL,NULL,'Third_page/respiratory','group','0','0',6,2,1),(104,NULL,'শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',6,2,1),(105,NULL,NULL,'Fourth_page','group','9','9',6,2,1),(106,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',6,2,1),(107,NULL,NULL,'Fourth_page/color','group','0','0',6,2,1),(108,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',6,2,1),(109,NULL,NULL,'Fourth_page/consciousness','group','0','0',6,2,1),(110,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',6,2,1),(111,NULL,NULL,'Fourth_page/edema','group','0','0',6,2,1),(112,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',6,2,1),(113,NULL,NULL,'Fourth_page/dehydration','group','0','0',6,2,1),(114,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',6,2,1),(115,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1395906294398.jpg','1395906294398.jpg',7,1,1),(116,NULL,NULL,'firstPage','group','3','3',7,1,1),(117,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Sadat','Sadat',7,1,1),(118,NULL,NULL,'firstPage/mobile','group','0','0',7,1,1),(119,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01737233902','01737233902',7,1,1),(120,NULL,'রোগীর বয়স এবং লিঙ্গ','SecondPage','group','4','4',7,1,1),(121,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','24','24',7,1,1),(122,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','6','6',7,1,1),(123,NULL,NULL,'SecondPage/gender','group','0','0',7,1,1),(124,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',7,1,1),(125,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','sample_patient_1','sample_patient_1',7,1,1),(126,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','sample_patient_1','sample_patient_1',8,2,1),(127,NULL,'রোগীর ওজন','Second_page','group','2','2',8,2,1),(128,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','int','52','52',8,2,1),(129,NULL,'গ্রাম (Gram)','Second_page/Patient_Weight_gm','int','0','0',8,2,1),(130,NULL,NULL,'Third_page','group','8','8',8,2,1),(131,NULL,'পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','58','58',8,2,1),(132,NULL,NULL,'Third_page/Patient_BP','group','0','0',8,2,1),(133,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',8,2,1),(134,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','100','100',8,2,1),(135,NULL,NULL,'Third_page/temperature','group','0','0',8,2,1),(136,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Third_page/Patient_Temperature','decimal','96.3','96.3',8,2,1),(137,NULL,NULL,'Third_page/respiratory','group','0','0',8,2,1),(138,NULL,'শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব বেশি','1',8,2,1),(139,NULL,NULL,'Fourth_page','group','9','9',8,2,1),(140,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',8,2,1),(141,NULL,NULL,'Fourth_page/color','group','0','0',8,2,1),(142,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',8,2,1),(143,NULL,NULL,'Fourth_page/consciousness','group','0','0',8,2,1),(144,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',8,2,1),(145,NULL,NULL,'Fourth_page/edema','group','0','0',8,2,1),(146,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','হ্যাঁ','2',8,2,1),(147,NULL,NULL,'Fourth_page/dehydration','group','0','0',8,2,1),(148,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',8,2,1),(195,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1396172548801.jpg','1396172548801.jpg',11,1,1),(196,NULL,NULL,'firstPage','group','3','3',11,1,1),(197,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Amina','Amina',11,1,1),(198,NULL,NULL,'firstPage/mobile','group','0','0',11,1,1),(199,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01711111111','01711111111',11,1,1),(200,NULL,'রোগীর বয়স এবং লিঙ্গ','SecondPage','group','4','4',11,1,1),(201,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','21','21',11,1,1),(202,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','0','0',11,1,1),(203,NULL,NULL,'SecondPage/gender','group','0','0',11,1,1),(204,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',11,1,1),(205,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','rmp_silvia:123456','rmp_silvia:123456',11,1,1),(229,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1396183784365.jpg','1396183784365.jpg',13,1,1),(230,NULL,NULL,'firstPage','group','3','3',13,1,1),(231,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Ghghhh%76354333','Ghghhh%76354333',13,1,1),(232,NULL,NULL,'firstPage/mobile','group','0','0',13,1,1),(233,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','33333333333','33333333333',13,1,1),(234,NULL,'রোগীর বয়স এবং লিঙ্গ','SecondPage','group','4','4',13,1,1),(235,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','3','3',13,1,1),(236,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','0','0',13,1,1),(237,NULL,NULL,'SecondPage/gender','group','0','0',13,1,1),(238,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',13,1,1),(239,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','rmp_silvia:1234567','rmp_silvia:1234567',13,1,1),(240,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1396244735415.jpg','1396244735415.jpg',14,1,1),(241,NULL,NULL,'firstPage','group','3','3',14,1,1),(242,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Silvia','Silvia',14,1,1),(243,NULL,NULL,'firstPage/mobile','group','0','0',14,1,1),(244,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01234567890','01234567890',14,1,1),(245,NULL,'রোগীর বয়স এবং লিঙ্গ','SecondPage','group','4','4',14,1,1),(246,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','25','25',14,1,1),(247,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','0','0',14,1,1),(248,NULL,NULL,'SecondPage/gender','group','0','0',14,1,1),(249,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',14,1,1),(250,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','105634','105634',14,1,1),(251,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1396331087230.jpg','1396331087230.jpg',15,1,1),(252,NULL,NULL,'firstPage','group','3','3',15,1,1),(253,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Ahmed and Proshanto','Ahmed and Proshanto',15,1,1),(254,NULL,NULL,'firstPage/mobile','group','0','0',15,1,1),(255,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','85214796358','85214796358',15,1,1),(256,NULL,'রোগীর বয়স এবং লিঙ্গ','SecondPage','group','4','4',15,1,1),(257,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','30','30',15,1,1),(258,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','6','6',15,1,1),(259,NULL,NULL,'SecondPage/gender','group','0','0',15,1,1),(260,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',15,1,1),(261,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_patient_005','mpower_patient_005',15,1,1),(308,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_patient_005','mpower_patient_005',18,2,1),(309,NULL,'রোগীর ওজন','Second_page','group','2','2',18,2,1),(310,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','int','99','99',18,2,1),(311,NULL,'গ্রাম (Gram)','Second_page/Patient_Weight_gm','int','999','999',18,2,1),(312,NULL,NULL,'Third_page','group','8','8',18,2,1),(313,NULL,'পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','66','66',18,2,1),(314,NULL,NULL,'Third_page/Patient_BP','group','0','0',18,2,1),(315,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','166','166',18,2,1),(316,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','122','122',18,2,1),(317,NULL,NULL,'Third_page/temperature','group','0','0',18,2,1),(318,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Third_page/Patient_Temperature','decimal','99.9','99.9',18,2,1),(319,NULL,NULL,'Third_page/respiratory','group','0','0',18,2,1),(320,NULL,'শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব বেশি','1',18,2,1),(321,NULL,NULL,'Fourth_page','group','9','9',18,2,1),(322,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',18,2,1),(323,NULL,NULL,'Fourth_page/color','group','0','0',18,2,1),(324,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',18,2,1),(325,NULL,NULL,'Fourth_page/consciousness','group','0','0',18,2,1),(326,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',18,2,1),(327,NULL,NULL,'Fourth_page/edema','group','0','0',18,2,1),(328,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',18,2,1),(329,NULL,NULL,'Fourth_page/dehydration','group','0','0',18,2,1),(330,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',18,2,1),(331,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_patient_005','mpower_patient_005',19,2,1),(332,NULL,'রোগীর ওজন','Second_page','group','9','9',19,2,1),(333,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','int','60.669','60.669',19,2,1),(334,NULL,'গ্রাম (Gram)','Second_page/Patient_Weight_gm','int',NULL,NULL,19,2,1),(335,NULL,NULL,'Third_page','group','0','0',19,2,1),(336,NULL,'পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int',NULL,NULL,19,2,1),(337,NULL,NULL,'Third_page/Patient_BP','group','0','0',19,2,1),(338,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int',NULL,NULL,19,2,1),(339,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int',NULL,NULL,19,2,1),(340,NULL,NULL,'Third_page/temperature','group','0','0',19,2,1),(341,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Third_page/Patient_Temperature','decimal',NULL,NULL,19,2,1),(342,NULL,NULL,'Third_page/respiratory','group','0','0',19,2,1),(343,NULL,'শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1',NULL,NULL,19,2,1),(344,NULL,NULL,'Fourth_page','group','9','9',19,2,1),(345,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',19,2,1),(346,NULL,NULL,'Fourth_page/color','group','0','0',19,2,1),(347,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',19,2,1),(348,NULL,NULL,'Fourth_page/consciousness','group','0','0',19,2,1),(349,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',19,2,1),(350,NULL,NULL,'Fourth_page/edema','group','0','0',19,2,1),(351,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','হ্যাঁ','2',19,2,1),(352,NULL,NULL,'Fourth_page/dehydration','group','0','0',19,2,1),(353,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',19,2,1),(354,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_patient_005','mpower_patient_005',20,2,1),(355,NULL,'রোগীর ওজন','Second_page','group','9','9',20,2,1),(356,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','69.336','69.336',20,2,1),(357,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','58','58',20,2,1),(358,NULL,NULL,'Second_page/Patient_BP','group','0','0',20,2,1),(359,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',20,2,1),(360,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','100','100',20,2,1),(361,NULL,NULL,'Second_page/temperature','group','0','0',20,2,1),(362,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','99.0','99.0',20,2,1),(363,NULL,NULL,'Second_page/respiratory','group','0','0',20,2,1),(364,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',20,2,1),(365,NULL,NULL,'Fourth_page','group','9','9',20,2,1),(366,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',20,2,1),(367,NULL,NULL,'Fourth_page/color','group','0','0',20,2,1),(368,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',20,2,1),(369,NULL,NULL,'Fourth_page/consciousness','group','0','0',20,2,1),(370,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অজ্ঞান','3',20,2,1),(371,NULL,NULL,'Fourth_page/edema','group','0','0',20,2,1),(372,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','হ্যাঁ','2',20,2,1),(373,NULL,NULL,'Fourth_page/dehydration','group','0','0',20,2,1),(374,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',20,2,1),(375,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1396507343262.jpg','1396507343262.jpg',21,1,1),(376,NULL,NULL,'firstPage','group','3','3',21,1,1),(377,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Sohel','Sohel',21,1,1),(378,NULL,NULL,'firstPage/mobile','group','0','0',21,1,1),(379,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','85236974158','85236974158',21,1,1),(380,NULL,'রোগীর বয়স এবং লিঙ্গ','SecondPage','group','4','4',21,1,1),(381,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','28','28',21,1,1),(382,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','8','8',21,1,1),(383,NULL,NULL,'SecondPage/gender','group','0','0',21,1,1),(384,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',21,1,1),(385,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_patient_test','mpower_patient_test',21,1,1),(386,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_patient_test','mpower_patient_test',22,2,1),(387,NULL,'রোগীর ওজন','Second_page','group','9','9',22,2,1),(388,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','68.0','68.0',22,2,1),(389,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','69','69',22,2,1),(390,NULL,NULL,'Second_page/Patient_BP','group','0','0',22,2,1),(391,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',22,2,1),(392,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',22,2,1),(393,NULL,NULL,'Second_page/temperature','group','0','0',22,2,1),(394,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','95.0','95.0',22,2,1),(395,NULL,NULL,'Second_page/respiratory','group','0','0',22,2,1),(396,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',22,2,1),(397,NULL,NULL,'Fourth_page','group','9','9',22,2,1),(398,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',22,2,1),(399,NULL,NULL,'Fourth_page/color','group','0','0',22,2,1),(400,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',22,2,1),(401,NULL,NULL,'Fourth_page/consciousness','group','0','0',22,2,1),(402,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',22,2,1),(403,NULL,NULL,'Fourth_page/edema','group','0','0',22,2,1),(404,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','হ্যাঁ','2',22,2,1),(405,NULL,NULL,'Fourth_page/dehydration','group','0','0',22,2,1),(406,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',22,2,1),(407,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_patient_test','mpower_patient_test',23,2,1),(408,NULL,'রোগীর ওজন','Second_page','group','9','9',23,2,1),(409,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','86.556','86.556',23,2,1),(410,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','60','60',23,2,1),(411,NULL,NULL,'Second_page/Patient_BP','group','0','0',23,2,1),(412,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',23,2,1),(413,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',23,2,1),(414,NULL,NULL,'Second_page/temperature','group','0','0',23,2,1),(415,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.3','96.3',23,2,1),(416,NULL,NULL,'Second_page/respiratory','group','0','0',23,2,1),(417,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',23,2,1),(418,NULL,NULL,'Fourth_page','group','9','9',23,2,1),(419,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',23,2,1),(420,NULL,NULL,'Fourth_page/color','group','0','0',23,2,1),(421,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',23,2,1),(422,NULL,NULL,'Fourth_page/consciousness','group','0','0',23,2,1),(423,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',23,2,1),(424,NULL,NULL,'Fourth_page/edema','group','0','0',23,2,1),(425,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',23,2,1),(426,NULL,NULL,'Fourth_page/dehydration','group','0','0',23,2,1),(427,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',23,2,1),(428,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1396510595578.jpg','1396510595578.jpg',24,1,1),(429,NULL,NULL,'firstPage','group','3','3',24,1,1),(430,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Sadat','Sadat',24,1,1),(431,NULL,NULL,'firstPage/mobile','group','0','0',24,1,1),(432,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01713311331','01713311331',24,1,1),(433,NULL,'রোগীর বয়স এবং লিঙ্গ','SecondPage','group','4','4',24,1,1),(434,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','25','25',24,1,1),(435,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','5','5',24,1,1),(436,NULL,NULL,'SecondPage/gender','group','0','0',24,1,1),(437,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',24,1,1),(438,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_patient_demo','mpower_patient_demo',24,1,1),(439,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_patient_demo','mpower_patient_demo',25,2,1),(440,NULL,'রোগীর ওজন','Second_page','group','9','9',25,2,1),(441,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','59.0','59.0',25,2,1),(442,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','80','80',25,2,1),(443,NULL,NULL,'Second_page/Patient_BP','group','0','0',25,2,1),(444,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','80','80',25,2,1),(445,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','120','120',25,2,1),(446,NULL,NULL,'Second_page/temperature','group','0','0',25,2,1),(447,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','97.8','97.8',25,2,1),(448,NULL,NULL,'Second_page/respiratory','group','0','0',25,2,1),(449,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',25,2,1),(450,NULL,NULL,'Fourth_page','group','9','9',25,2,1),(451,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',25,2,1),(452,NULL,NULL,'Fourth_page/color','group','0','0',25,2,1),(453,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',25,2,1),(454,NULL,NULL,'Fourth_page/consciousness','group','0','0',25,2,1),(455,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',25,2,1),(456,NULL,NULL,'Fourth_page/edema','group','0','0',25,2,1),(457,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',25,2,1),(458,NULL,NULL,'Fourth_page/dehydration','group','0','0',25,2,1),(459,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',25,2,1),(460,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1396534380972.jpg','1396534380972.jpg',26,1,1),(461,NULL,NULL,'firstPage','group','3','3',26,1,1),(462,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Shammi','Shammi',26,1,1),(463,NULL,NULL,'firstPage/mobile','group','0','0',26,1,1),(464,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01714565565','01714565565',26,1,1),(465,NULL,'রোগীর বয়স এবং লিঙ্গ','SecondPage','group','4','4',26,1,1),(466,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','27','27',26,1,1),(467,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','0','0',26,1,1),(468,NULL,NULL,'SecondPage/gender','group','0','0',26,1,1),(469,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',26,1,1),(470,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','patient:shammi','patient:shammi',26,1,1),(471,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','patient:shammi','patient:shammi',27,2,1),(472,NULL,'রোগীর ওজন','Second_page','group','9','9',27,2,1),(473,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','50.0','50.0',27,2,1),(474,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','70','70',27,2,1),(475,NULL,NULL,'Second_page/Patient_BP','group','0','0',27,2,1),(476,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','90','90',27,2,1),(477,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','110','110',27,2,1),(478,NULL,NULL,'Second_page/temperature','group','0','0',27,2,1),(479,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','97.8','97.8',27,2,1),(480,NULL,NULL,'Second_page/respiratory','group','0','0',27,2,1),(481,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব কম','3',27,2,1),(482,NULL,NULL,'Fourth_page','group','9','9',27,2,1),(483,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',27,2,1),(484,NULL,NULL,'Fourth_page/color','group','0','0',27,2,1),(485,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',27,2,1),(486,NULL,NULL,'Fourth_page/consciousness','group','0','0',27,2,1),(487,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',27,2,1),(488,NULL,NULL,'Fourth_page/edema','group','0','0',27,2,1),(489,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',27,2,1),(490,NULL,NULL,'Fourth_page/dehydration','group','0','0',27,2,1),(491,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',27,2,1),(492,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1396535903303.jpg','1396535903303.jpg',28,1,1),(493,NULL,NULL,'firstPage','group','3','3',28,1,1),(494,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Iftekhar','Iftekhar',28,1,1),(495,NULL,NULL,'firstPage/mobile','group','0','0',28,1,1),(496,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','85236914785','85236914785',28,1,1),(497,NULL,'রোগীর বয়স এবং লিঙ্গ','SecondPage','group','4','4',28,1,1),(498,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','30','30',28,1,1),(499,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','0','0',28,1,1),(500,NULL,NULL,'SecondPage/gender','group','0','0',28,1,1),(501,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',28,1,1),(502,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_patient_demo_2','mpower_patient_demo_2',28,1,1),(503,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_patient_demo_2','mpower_patient_demo_2',29,2,1),(504,NULL,'রোগীর ওজন','Second_page','group','9','9',29,2,1),(505,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','58.55','58.55',29,2,1),(506,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','56','56',29,2,1),(507,NULL,NULL,'Second_page/Patient_BP','group','0','0',29,2,1),(508,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',29,2,1),(509,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',29,2,1),(510,NULL,NULL,'Second_page/temperature','group','0','0',29,2,1),(511,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.3','96.3',29,2,1),(512,NULL,NULL,'Second_page/respiratory','group','0','0',29,2,1),(513,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',29,2,1),(514,NULL,NULL,'Fourth_page','group','9','9',29,2,1),(515,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',29,2,1),(516,NULL,NULL,'Fourth_page/color','group','0','0',29,2,1),(517,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',29,2,1),(518,NULL,NULL,'Fourth_page/consciousness','group','0','0',29,2,1),(519,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',29,2,1),(520,NULL,NULL,'Fourth_page/edema','group','0','0',29,2,1),(521,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',29,2,1),(522,NULL,NULL,'Fourth_page/dehydration','group','0','0',29,2,1),(523,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',29,2,1),(524,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1396621770204.jpg','1396621770204.jpg',30,1,1),(525,NULL,NULL,'firstPage','group','3','3',30,1,1),(526,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Test 1','Test 1',30,1,1),(527,NULL,NULL,'firstPage/mobile','group','0','0',30,1,1),(528,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01745858858','01745858858',30,1,1),(529,NULL,'রোগীর বয়স এবং লিঙ্গ','SecondPage','group','4','4',30,1,1),(530,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','54','54',30,1,1),(531,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','8','8',30,1,1),(532,NULL,NULL,'SecondPage/gender','group','0','0',30,1,1),(533,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',30,1,1),(534,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','testpatient1','testpatient1',30,1,1),(535,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','testpatient1','testpatient1',31,2,1),(536,NULL,'রোগীর ওজন','Second_page','group','9','9',31,2,1),(537,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','80.0','80.0',31,2,1),(538,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','80','80',31,2,1),(539,NULL,NULL,'Second_page/Patient_BP','group','0','0',31,2,1),(540,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','78','78',31,2,1),(541,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','47','47',31,2,1),(542,NULL,NULL,'Second_page/temperature','group','0','0',31,2,1),(543,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',31,2,1),(544,NULL,NULL,'Second_page/respiratory','group','0','0',31,2,1),(545,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',31,2,1),(546,NULL,NULL,'Fourth_page','group','9','9',31,2,1),(547,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',31,2,1),(548,NULL,NULL,'Fourth_page/color','group','0','0',31,2,1),(549,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',31,2,1),(550,NULL,NULL,'Fourth_page/consciousness','group','0','0',31,2,1),(551,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',31,2,1),(552,NULL,NULL,'Fourth_page/edema','group','0','0',31,2,1),(553,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',31,2,1),(554,NULL,NULL,'Fourth_page/dehydration','group','0','0',31,2,1),(555,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',31,2,1),(556,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','testpatient1','testpatient1',32,2,1),(557,NULL,'রোগীর ওজন','Second_page','group','9','9',32,2,1),(558,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','96.0','96.0',32,2,1),(559,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','96','96',32,2,1),(560,NULL,NULL,'Second_page/Patient_BP','group','0','0',32,2,1),(561,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','96','96',32,2,1),(562,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','96','96',32,2,1),(563,NULL,NULL,'Second_page/temperature','group','0','0',32,2,1),(564,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',32,2,1),(565,NULL,NULL,'Second_page/respiratory','group','0','0',32,2,1),(566,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',32,2,1),(567,NULL,NULL,'Fourth_page','group','9','9',32,2,1),(568,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',32,2,1),(569,NULL,NULL,'Fourth_page/color','group','0','0',32,2,1),(570,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',32,2,1),(571,NULL,NULL,'Fourth_page/consciousness','group','0','0',32,2,1),(572,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',32,2,1),(573,NULL,NULL,'Fourth_page/edema','group','0','0',32,2,1),(574,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',32,2,1),(575,NULL,NULL,'Fourth_page/dehydration','group','0','0',32,2,1),(576,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',32,2,1),(577,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','testpatient1','testpatient1',33,2,1),(578,NULL,'রোগীর ওজন','Second_page','group','9','9',33,2,1),(579,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','85.0','85.0',33,2,1),(580,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','85','85',33,2,1),(581,NULL,NULL,'Second_page/Patient_BP','group','0','0',33,2,1),(582,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','85','85',33,2,1),(583,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','85','85',33,2,1),(584,NULL,NULL,'Second_page/temperature','group','0','0',33,2,1),(585,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','85.0','85.0',33,2,1),(586,NULL,NULL,'Second_page/respiratory','group','0','0',33,2,1),(587,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',33,2,1),(588,NULL,NULL,'Fourth_page','group','9','9',33,2,1),(589,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',33,2,1),(590,NULL,NULL,'Fourth_page/color','group','0','0',33,2,1),(591,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',33,2,1),(592,NULL,NULL,'Fourth_page/consciousness','group','0','0',33,2,1),(593,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',33,2,1),(594,NULL,NULL,'Fourth_page/edema','group','0','0',33,2,1),(595,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',33,2,1),(596,NULL,NULL,'Fourth_page/dehydration','group','0','0',33,2,1),(597,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',33,2,1),(598,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','testpatient1','testpatient1',34,2,1),(599,NULL,'রোগীর ওজন','Second_page','group','9','9',34,2,1),(600,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','96.0','96.0',34,2,1),(601,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','96','96',34,2,1),(602,NULL,NULL,'Second_page/Patient_BP','group','0','0',34,2,1),(603,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','96','96',34,2,1),(604,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','96','96',34,2,1),(605,NULL,NULL,'Second_page/temperature','group','0','0',34,2,1),(606,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','85.0','85.0',34,2,1),(607,NULL,NULL,'Second_page/respiratory','group','0','0',34,2,1),(608,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',34,2,1),(609,NULL,NULL,'Fourth_page','group','9','9',34,2,1),(610,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',34,2,1),(611,NULL,NULL,'Fourth_page/color','group','0','0',34,2,1),(612,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',34,2,1),(613,NULL,NULL,'Fourth_page/consciousness','group','0','0',34,2,1),(614,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',34,2,1),(615,NULL,NULL,'Fourth_page/edema','group','0','0',34,2,1),(616,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',34,2,1),(617,NULL,NULL,'Fourth_page/dehydration','group','0','0',34,2,1),(618,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',34,2,1),(619,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','testpatient1','testpatient1',35,2,1),(620,NULL,'রোগীর ওজন','Second_page','group','9','9',35,2,1),(621,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','96.0','96.0',35,2,1),(622,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','96','96',35,2,1),(623,NULL,NULL,'Second_page/Patient_BP','group','0','0',35,2,1),(624,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','96','96',35,2,1),(625,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','96','96',35,2,1),(626,NULL,NULL,'Second_page/temperature','group','0','0',35,2,1),(627,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',35,2,1),(628,NULL,NULL,'Second_page/respiratory','group','0','0',35,2,1),(629,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',35,2,1),(630,NULL,NULL,'Fourth_page','group','9','9',35,2,1),(631,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',35,2,1),(632,NULL,NULL,'Fourth_page/color','group','0','0',35,2,1),(633,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',35,2,1),(634,NULL,NULL,'Fourth_page/consciousness','group','0','0',35,2,1),(635,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',35,2,1),(636,NULL,NULL,'Fourth_page/edema','group','0','0',35,2,1),(637,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',35,2,1),(638,NULL,NULL,'Fourth_page/dehydration','group','0','0',35,2,1),(639,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',35,2,1),(640,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','patient:shammi','patient:shammi',36,2,1),(641,NULL,'রোগীর ওজন','Second_page','group','9','9',36,2,1),(642,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','96.0','96.0',36,2,1),(643,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','96','96',36,2,1),(644,NULL,NULL,'Second_page/Patient_BP','group','0','0',36,2,1),(645,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','85','85',36,2,1),(646,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','58','58',36,2,1),(647,NULL,NULL,'Second_page/temperature','group','0','0',36,2,1),(648,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','85.0','85.0',36,2,1),(649,NULL,NULL,'Second_page/respiratory','group','0','0',36,2,1),(650,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',36,2,1),(651,NULL,NULL,'Fourth_page','group','9','9',36,2,1),(652,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',36,2,1),(653,NULL,NULL,'Fourth_page/color','group','0','0',36,2,1),(654,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',36,2,1),(655,NULL,NULL,'Fourth_page/consciousness','group','0','0',36,2,1),(656,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',36,2,1),(657,NULL,NULL,'Fourth_page/edema','group','0','0',36,2,1),(658,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',36,2,1),(659,NULL,NULL,'Fourth_page/dehydration','group','0','0',36,2,1),(660,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',36,2,1),(661,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1396676704102.jpg','1396676704102.jpg',37,1,1),(662,NULL,NULL,'firstPage','group','3','3',37,1,1),(663,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Proshanto kumar sorkar','Proshanto kumar sorkar',37,1,1),(664,NULL,NULL,'firstPage/mobile','group','0','0',37,1,1),(665,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01975759759','01975759759',37,1,1),(666,NULL,'রোগীর বয়স এবং লিঙ্গ','SecondPage','group','4','4',37,1,1),(667,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','25','25',37,1,1),(668,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','5','5',37,1,1),(669,NULL,NULL,'SecondPage/gender','group','0','0',37,1,1),(670,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',37,1,1),(671,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000060','mpower_0002_000000000060',37,1,1),(672,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000060','mpower_0002_000000000060',38,2,1),(673,NULL,'রোগীর ওজন','Second_page','group','9','9',38,2,1),(674,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','59.0','59.0',38,2,1),(675,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','80','80',38,2,1),(676,NULL,NULL,'Second_page/Patient_BP','group','0','0',38,2,1),(677,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','80','80',38,2,1),(678,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','110','110',38,2,1),(679,NULL,NULL,'Second_page/temperature','group','0','0',38,2,1),(680,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','97.9','97.9',38,2,1),(681,NULL,NULL,'Second_page/respiratory','group','0','0',38,2,1),(682,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',38,2,1),(683,NULL,NULL,'Fourth_page','group','9','9',38,2,1),(684,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','খুব অসুস্থ','3',38,2,1),(685,NULL,NULL,'Fourth_page/color','group','0','0',38,2,1),(686,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',38,2,1),(687,NULL,NULL,'Fourth_page/consciousness','group','0','0',38,2,1),(688,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অজ্ঞান','3',38,2,1),(689,NULL,NULL,'Fourth_page/edema','group','0','0',38,2,1),(690,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',38,2,1),(691,NULL,NULL,'Fourth_page/dehydration','group','0','0',38,2,1),(692,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',38,2,1),(693,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000060','mpower_0002_000000000060',39,2,1),(694,NULL,'রোগীর ওজন','Second_page','group','9','9',39,2,1),(695,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','54.0','54.0',39,2,1),(696,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','25','25',39,2,1),(697,NULL,NULL,'Second_page/Patient_BP','group','0','0',39,2,1),(698,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','80','80',39,2,1),(699,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','120','120',39,2,1),(700,NULL,NULL,'Second_page/temperature','group','0','0',39,2,1),(701,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.7','98.7',39,2,1),(702,NULL,NULL,'Second_page/respiratory','group','0','0',39,2,1),(703,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব কম','3',39,2,1),(704,NULL,NULL,'Fourth_page','group','9','9',39,2,1),(705,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',39,2,1),(706,NULL,NULL,'Fourth_page/color','group','0','0',39,2,1),(707,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',39,2,1),(708,NULL,NULL,'Fourth_page/consciousness','group','0','0',39,2,1),(709,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',39,2,1),(710,NULL,NULL,'Fourth_page/edema','group','0','0',39,2,1),(711,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',39,2,1),(712,NULL,NULL,'Fourth_page/dehydration','group','0','0',39,2,1),(713,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',39,2,1),(714,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000060','mpower_0002_000000000060',40,2,1),(715,NULL,'রোগীর ওজন','Second_page','group','9','9',40,2,1),(716,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','65.0','65.0',40,2,1),(717,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','68','68',40,2,1),(718,NULL,NULL,'Second_page/Patient_BP','group','0','0',40,2,1),(719,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','60','60',40,2,1),(720,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','90','90',40,2,1),(721,NULL,NULL,'Second_page/temperature','group','0','0',40,2,1),(722,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',40,2,1),(723,NULL,NULL,'Second_page/respiratory','group','0','0',40,2,1),(724,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',40,2,1),(725,NULL,NULL,'Fourth_page','group','9','9',40,2,1),(726,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',40,2,1),(727,NULL,NULL,'Fourth_page/color','group','0','0',40,2,1),(728,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',40,2,1),(729,NULL,NULL,'Fourth_page/consciousness','group','0','0',40,2,1),(730,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',40,2,1),(731,NULL,NULL,'Fourth_page/edema','group','0','0',40,2,1),(732,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','হ্যাঁ','2',40,2,1),(733,NULL,NULL,'Fourth_page/dehydration','group','0','0',40,2,1),(734,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',40,2,1),(735,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1396770938397.jpg','1396770938397.jpg',41,1,1),(736,NULL,NULL,'firstPage','group','3','3',41,1,1),(737,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Yasser','Yasser',41,1,1),(738,NULL,NULL,'firstPage/mobile','group','0','0',41,1,1),(739,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01975759759','01975759759',41,1,1),(740,NULL,'রোগীর বয়স এবং লিঙ্গ','SecondPage','group','4','4',41,1,1),(741,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','25','25',41,1,1),(742,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','5','5',41,1,1),(743,NULL,NULL,'SecondPage/gender','group','0','0',41,1,1),(744,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',41,1,1),(745,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000127','mpower_0002_000000000127',41,1,1),(746,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000127','mpower_0002_000000000127',42,2,1),(747,NULL,'রোগীর ওজন','Second_page','group','9','9',42,2,1),(748,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','95.0','95.0',42,2,1),(749,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','80','80',42,2,1),(750,NULL,NULL,'Second_page/Patient_BP','group','0','0',42,2,1),(751,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','80','80',42,2,1),(752,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','120','120',42,2,1),(753,NULL,NULL,'Second_page/temperature','group','0','0',42,2,1),(754,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.2','98.2',42,2,1),(755,NULL,NULL,'Second_page/respiratory','group','0','0',42,2,1),(756,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',42,2,1),(757,NULL,NULL,'Fourth_page','group','9','9',42,2,1),(758,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',42,2,1),(759,NULL,NULL,'Fourth_page/color','group','0','0',42,2,1),(760,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',42,2,1),(761,NULL,NULL,'Fourth_page/consciousness','group','0','0',42,2,1),(762,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অজ্ঞান','3',42,2,1),(763,NULL,NULL,'Fourth_page/edema','group','0','0',42,2,1),(764,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','হ্যাঁ','2',42,2,1),(765,NULL,NULL,'Fourth_page/dehydration','group','0','0',42,2,1),(766,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',42,2,1),(767,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000127','mpower_0002_000000000127',43,2,1),(768,NULL,'রোগীর ওজন','Second_page','group','9','9',43,2,1),(769,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','80.0','80.0',43,2,1),(770,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','80','80',43,2,1),(771,NULL,NULL,'Second_page/Patient_BP','group','0','0',43,2,1),(772,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','90','90',43,2,1),(773,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','120','120',43,2,1),(774,NULL,NULL,'Second_page/temperature','group','0','0',43,2,1),(775,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',43,2,1),(776,NULL,NULL,'Second_page/respiratory','group','0','0',43,2,1),(777,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',43,2,1),(778,NULL,NULL,'Fourth_page','group','9','9',43,2,1),(779,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',43,2,1),(780,NULL,NULL,'Fourth_page/color','group','0','0',43,2,1),(781,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',43,2,1),(782,NULL,NULL,'Fourth_page/consciousness','group','0','0',43,2,1),(783,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',43,2,1),(784,NULL,NULL,'Fourth_page/edema','group','0','0',43,2,1),(785,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',43,2,1),(786,NULL,NULL,'Fourth_page/dehydration','group','0','0',43,2,1),(787,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',43,2,1),(788,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1396855153959.jpg','1396855153959.jpg',44,1,1),(789,NULL,NULL,'firstPage','group','3','3',44,1,1),(790,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Safat','Safat',44,1,1),(791,NULL,NULL,'firstPage/mobile','group','0','0',44,1,1),(792,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','85653556545','85653556545',44,1,1),(793,NULL,'রোগীর বয়স','SecondPage','group','5','5',44,1,1),(794,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,44,1,1),(795,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','58','58',44,1,1),(796,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','8','8',44,1,1),(797,NULL,NULL,'SecondPage/gender','group','0','0',44,1,1),(798,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',44,1,1),(799,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_patient_010','mpower_patient_010',44,1,1),(800,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_patient_010','mpower_patient_010',45,2,1),(801,NULL,'রোগীর ওজন','Second_page','group','9','9',45,2,1),(802,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','56.8','56.8',45,2,1),(803,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','63','63',45,2,1),(804,NULL,NULL,'Second_page/Patient_BP','group','0','0',45,2,1),(805,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',45,2,1),(806,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',45,2,1),(807,NULL,NULL,'Second_page/temperature','group','0','0',45,2,1),(808,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',45,2,1),(809,NULL,NULL,'Second_page/respiratory','group','0','0',45,2,1),(810,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',45,2,1),(811,NULL,NULL,'Fourth_page','group','9','9',45,2,1),(812,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',45,2,1),(813,NULL,NULL,'Fourth_page/color','group','0','0',45,2,1),(814,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',45,2,1),(815,NULL,NULL,'Fourth_page/consciousness','group','0','0',45,2,1),(816,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',45,2,1),(817,NULL,NULL,'Fourth_page/edema','group','0','0',45,2,1),(818,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','হ্যাঁ','2',45,2,1),(819,NULL,NULL,'Fourth_page/dehydration','group','0','0',45,2,1),(820,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',45,2,1),(821,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1396861052617.jpg','1396861052617.jpg',46,1,1),(822,NULL,NULL,'firstPage','group','3','3',46,1,1),(823,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Android Test','Android Test',46,1,1),(824,NULL,NULL,'firstPage/mobile','group','0','0',46,1,1),(825,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','08523697418','08523697418',46,1,1),(826,NULL,'রোগীর বয়স','SecondPage','group','5','5',46,1,1),(827,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,46,1,1),(828,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','26','26',46,1,1),(829,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,46,1,1),(830,NULL,NULL,'SecondPage/gender','group','0','0',46,1,1),(831,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',46,1,1),(832,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','android_test','android_test',46,1,1),(833,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','android_test','android_test',47,2,1),(834,NULL,'রোগীর ওজন','Second_page','group','9','9',47,2,1),(835,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','56.3','56.3',47,2,1),(836,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','63','63',47,2,1),(837,NULL,NULL,'Second_page/Patient_BP','group','0','0',47,2,1),(838,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',47,2,1),(839,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',47,2,1),(840,NULL,NULL,'Second_page/temperature','group','0','0',47,2,1),(841,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.3','96.3',47,2,1),(842,NULL,NULL,'Second_page/respiratory','group','0','0',47,2,1),(843,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',47,2,1),(844,NULL,NULL,'Fourth_page','group','9','9',47,2,1),(845,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',47,2,1),(846,NULL,NULL,'Fourth_page/color','group','0','0',47,2,1),(847,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',47,2,1),(848,NULL,NULL,'Fourth_page/consciousness','group','0','0',47,2,1),(849,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',47,2,1),(850,NULL,NULL,'Fourth_page/edema','group','0','0',47,2,1),(851,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',47,2,1),(852,NULL,NULL,'Fourth_page/dehydration','group','0','0',47,2,1),(853,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',47,2,1),(854,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1396861543538.jpg','1396861543538.jpg',48,1,1),(855,NULL,NULL,'firstPage','group','3','3',48,1,1),(856,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Test 2','Test 2',48,1,1),(857,NULL,NULL,'firstPage/mobile','group','0','0',48,1,1),(858,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','85626358235','85626358235',48,1,1),(859,NULL,'রোগীর বয়স','SecondPage','group','5','5',48,1,1),(860,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,48,1,1),(861,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','25','25',48,1,1),(862,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,48,1,1),(863,NULL,NULL,'SecondPage/gender','group','0','0',48,1,1),(864,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',48,1,1),(865,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','android_test_1','android_test_1',48,1,1),(866,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1396941843159.jpg','1396941843159.jpg',49,1,1),(867,NULL,NULL,'firstPage','group','3','3',49,1,1),(868,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Ghbhn','Ghbhn',49,1,1),(869,NULL,NULL,'firstPage/mobile','group','0','0',49,1,1),(870,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01745885885','01745885885',49,1,1),(871,NULL,'রোগীর বয়স','SecondPage','group','5','5',49,1,1),(872,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,49,1,1),(873,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','58','58',49,1,1),(874,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','4','4',49,1,1),(875,NULL,NULL,'SecondPage/gender','group','0','0',49,1,1),(876,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',49,1,1),(877,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','testpatient2','testpatient2',49,1,1),(878,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','testpatient2','testpatient2',50,2,1),(879,NULL,'রোগীর ওজন','Second_page','group','9','9',50,2,1),(880,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','90.0','90.0',50,2,1),(881,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','90','90',50,2,1),(882,NULL,NULL,'Second_page/Patient_BP','group','0','0',50,2,1),(883,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','90','90',50,2,1),(884,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','90','90',50,2,1),(885,NULL,NULL,'Second_page/temperature','group','0','0',50,2,1),(886,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','90.0','90.0',50,2,1),(887,NULL,NULL,'Second_page/respiratory','group','0','0',50,2,1),(888,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',50,2,1),(889,NULL,NULL,'Fourth_page','group','9','9',50,2,1),(890,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',50,2,1),(891,NULL,NULL,'Fourth_page/color','group','0','0',50,2,1),(892,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',50,2,1),(893,NULL,NULL,'Fourth_page/consciousness','group','0','0',50,2,1),(894,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',50,2,1),(895,NULL,NULL,'Fourth_page/edema','group','0','0',50,2,1),(896,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',50,2,1),(897,NULL,NULL,'Fourth_page/dehydration','group','0','0',50,2,1),(898,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',50,2,1),(899,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','testpatient1','testpatient1',51,2,1),(900,NULL,'রোগীর ওজন','Second_page','group','9','9',51,2,1),(901,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','96.0','96.0',51,2,1),(902,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','96','96',51,2,1),(903,NULL,NULL,'Second_page/Patient_BP','group','0','0',51,2,1),(904,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','96','96',51,2,1),(905,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','58','58',51,2,1),(906,NULL,NULL,'Second_page/temperature','group','0','0',51,2,1),(907,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',51,2,1),(908,NULL,NULL,'Second_page/respiratory','group','0','0',51,2,1),(909,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',51,2,1),(910,NULL,NULL,'Fourth_page','group','9','9',51,2,1),(911,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',51,2,1),(912,NULL,NULL,'Fourth_page/color','group','0','0',51,2,1),(913,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',51,2,1),(914,NULL,NULL,'Fourth_page/consciousness','group','0','0',51,2,1),(915,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',51,2,1),(916,NULL,NULL,'Fourth_page/edema','group','0','0',51,2,1),(917,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',51,2,1),(918,NULL,NULL,'Fourth_page/dehydration','group','0','0',51,2,1),(919,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',51,2,1),(920,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','android_test','android_test',52,2,1),(921,NULL,'রোগীর ওজন','Second_page','group','9','9',52,2,1),(922,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','56.0','56.0',52,2,1),(923,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','56','56',52,2,1),(924,NULL,NULL,'Second_page/Patient_BP','group','0','0',52,2,1),(925,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',52,2,1),(926,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','230','230',52,2,1),(927,NULL,NULL,'Second_page/temperature','group','0','0',52,2,1),(928,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',52,2,1),(929,NULL,NULL,'Second_page/respiratory','group','0','0',52,2,1),(930,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',52,2,1),(931,NULL,NULL,'Fourth_page','group','9','9',52,2,1),(932,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',52,2,1),(933,NULL,NULL,'Fourth_page/color','group','0','0',52,2,1),(934,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',52,2,1),(935,NULL,NULL,'Fourth_page/consciousness','group','0','0',52,2,1),(936,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',52,2,1),(937,NULL,NULL,'Fourth_page/edema','group','0','0',52,2,1),(938,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',52,2,1),(939,NULL,NULL,'Fourth_page/dehydration','group','0','0',52,2,1),(940,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',52,2,1),(941,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','android_test','android_test',53,2,1),(942,NULL,'রোগীর ওজন','Second_page','group','9','9',53,2,1),(943,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','56.0','56.0',53,2,1),(944,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','86','86',53,2,1),(945,NULL,NULL,'Second_page/Patient_BP','group','0','0',53,2,1),(946,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',53,2,1),(947,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',53,2,1),(948,NULL,NULL,'Second_page/temperature','group','0','0',53,2,1),(949,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',53,2,1),(950,NULL,NULL,'Second_page/respiratory','group','0','0',53,2,1),(951,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব কম','3',53,2,1),(952,NULL,NULL,'Fourth_page','group','9','9',53,2,1),(953,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','খুব অসুস্থ','3',53,2,1),(954,NULL,NULL,'Fourth_page/color','group','0','0',53,2,1),(955,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',53,2,1),(956,NULL,NULL,'Fourth_page/consciousness','group','0','0',53,2,1),(957,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',53,2,1),(958,NULL,NULL,'Fourth_page/edema','group','0','0',53,2,1),(959,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',53,2,1),(960,NULL,NULL,'Fourth_page/dehydration','group','0','0',53,2,1),(961,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',53,2,1),(962,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1397120456848.jpg','1397120456848.jpg',54,1,1),(963,NULL,NULL,'firstPage','group','3','3',54,1,1),(964,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','/()+-*&%$#<>=:;;.,!?\"_ .,\'-_','/()+-*&%$#<>=:;;.,!?\"_ .,\'-_',54,1,1),(965,NULL,NULL,'firstPage/mobile','group','0','0',54,1,1),(966,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01725845625','01725845625',54,1,1),(967,NULL,'রোগীর বয়স','SecondPage','group','5','5',54,1,1),(968,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,54,1,1),(969,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','58','58',54,1,1),(970,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,54,1,1),(971,NULL,NULL,'SecondPage/gender','group','0','0',54,1,1),(972,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',54,1,1),(973,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','developer_test_1','developer_test_1',54,1,1),(974,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','developer_test_1','developer_test_1',55,2,1),(975,NULL,'রোগীর ওজন','Second_page','group','9','9',55,2,1),(976,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','58.0','58.0',55,2,1),(977,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','96','96',55,2,1),(978,NULL,NULL,'Second_page/Patient_BP','group','0','0',55,2,1),(979,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','150','150',55,2,1),(980,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','90','90',55,2,1),(981,NULL,NULL,'Second_page/temperature','group','0','0',55,2,1),(982,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','88.0','88.0',55,2,1),(983,NULL,NULL,'Second_page/respiratory','group','0','0',55,2,1),(984,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',55,2,1),(985,NULL,NULL,'Fourth_page','group','9','9',55,2,1),(986,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','খুব অসুস্থ','3',55,2,1),(987,NULL,NULL,'Fourth_page/color','group','0','0',55,2,1),(988,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',55,2,1),(989,NULL,NULL,'Fourth_page/consciousness','group','0','0',55,2,1),(990,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',55,2,1),(991,NULL,NULL,'Fourth_page/edema','group','0','0',55,2,1),(992,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',55,2,1),(993,NULL,NULL,'Fourth_page/dehydration','group','0','0',55,2,1),(994,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',55,2,1),(995,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1397120762824.jpg','1397120762824.jpg',56,1,1),(996,NULL,NULL,'firstPage','group','3','3',56,1,1),(997,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Sample is rtarded','Sample is rtarded',56,1,1),(998,NULL,NULL,'firstPage/mobile','group','0','0',56,1,1),(999,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','88666553662','88666553662',56,1,1),(1000,NULL,'রোগীর বয়স','SecondPage','group','5','5',56,1,1),(1001,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,56,1,1),(1002,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','85','85',56,1,1),(1003,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','7','7',56,1,1),(1004,NULL,NULL,'SecondPage/gender','group','0','0',56,1,1),(1005,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',56,1,1),(1006,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','developer_test_2','developer_test_2',56,1,1),(1007,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','developer_test_2','developer_test_2',57,2,1),(1008,NULL,'রোগীর ওজন','Second_page','group','9','9',57,2,1),(1009,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','58.0','58.0',57,2,1),(1010,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','56','56',57,2,1),(1011,NULL,NULL,'Second_page/Patient_BP','group','0','0',57,2,1),(1012,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','180','180',57,2,1),(1013,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','140','140',57,2,1),(1014,NULL,NULL,'Second_page/temperature','group','0','0',57,2,1),(1015,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','85.0','85.0',57,2,1),(1016,NULL,NULL,'Second_page/respiratory','group','0','0',57,2,1),(1017,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',57,2,1),(1018,NULL,NULL,'Fourth_page','group','9','9',57,2,1),(1019,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',57,2,1),(1020,NULL,NULL,'Fourth_page/color','group','0','0',57,2,1),(1021,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',57,2,1),(1022,NULL,NULL,'Fourth_page/consciousness','group','0','0',57,2,1),(1023,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',57,2,1),(1024,NULL,NULL,'Fourth_page/edema','group','0','0',57,2,1),(1025,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','হ্যাঁ','2',57,2,1),(1026,NULL,NULL,'Fourth_page/dehydration','group','0','0',57,2,1),(1027,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',57,2,1),(1028,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_patient_test','mpower_patient_test',58,2,1),(1029,NULL,'রোগীর ওজন','Second_page','group','9','9',58,2,1),(1030,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','56.0','56.0',58,2,1),(1031,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','56','56',58,2,1),(1032,NULL,NULL,'Second_page/Patient_BP','group','0','0',58,2,1),(1033,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','160','160',58,2,1),(1034,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','140','140',58,2,1),(1035,NULL,NULL,'Second_page/temperature','group','0','0',58,2,1),(1036,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',58,2,1),(1037,NULL,NULL,'Second_page/respiratory','group','0','0',58,2,1),(1038,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব কম','3',58,2,1),(1039,NULL,NULL,'Fourth_page','group','9','9',58,2,1),(1040,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',58,2,1),(1041,NULL,NULL,'Fourth_page/color','group','0','0',58,2,1),(1042,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',58,2,1),(1043,NULL,NULL,'Fourth_page/consciousness','group','0','0',58,2,1),(1044,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',58,2,1),(1045,NULL,NULL,'Fourth_page/edema','group','0','0',58,2,1),(1046,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',58,2,1),(1047,NULL,NULL,'Fourth_page/dehydration','group','0','0',58,2,1),(1048,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',58,2,1),(1049,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','testpatient1','testpatient1',59,2,1),(1050,NULL,'রোগীর ওজন','Second_page','group','9','9',59,2,1),(1051,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','90.0','90.0',59,2,1),(1052,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','78','78',59,2,1),(1053,NULL,NULL,'Second_page/Patient_BP','group','0','0',59,2,1),(1054,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','110','110',59,2,1),(1055,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','90','90',59,2,1),(1056,NULL,NULL,'Second_page/temperature','group','0','0',59,2,1),(1057,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.7','98.7',59,2,1),(1058,NULL,NULL,'Second_page/respiratory','group','0','0',59,2,1),(1059,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',59,2,1),(1060,NULL,NULL,'Fourth_page','group','9','9',59,2,1),(1061,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',59,2,1),(1062,NULL,NULL,'Fourth_page/color','group','0','0',59,2,1),(1063,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',59,2,1),(1064,NULL,NULL,'Fourth_page/consciousness','group','0','0',59,2,1),(1065,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',59,2,1),(1066,NULL,NULL,'Fourth_page/edema','group','0','0',59,2,1),(1067,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',59,2,1),(1068,NULL,NULL,'Fourth_page/dehydration','group','0','0',59,2,1),(1069,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',59,2,1),(1070,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1397557334563.jpg','1397557334563.jpg',60,1,1),(1071,NULL,NULL,'firstPage','group','3','3',60,1,1),(1072,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Test Parient','Test Parient',60,1,1),(1073,NULL,NULL,'firstPage/mobile','group','0','0',60,1,1),(1074,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','08523698547','08523698547',60,1,1),(1075,NULL,'রোগীর বয়স','SecondPage','group','5','5',60,1,1),(1076,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,60,1,1),(1077,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','24','24',60,1,1),(1078,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','6','6',60,1,1),(1079,NULL,NULL,'SecondPage/gender','group','0','0',60,1,1),(1080,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',60,1,1),(1081,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000040','mpower_0002_000000000040',60,1,1),(1082,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000040','mpower_0002_000000000040',61,2,1),(1083,NULL,'রোগীর ওজন','Second_page','group','9','9',61,2,1),(1084,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','65.0','65.0',61,2,1),(1085,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','56','56',61,2,1),(1086,NULL,NULL,'Second_page/Patient_BP','group','0','0',61,2,1),(1087,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',61,2,1),(1088,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',61,2,1),(1089,NULL,NULL,'Second_page/temperature','group','0','0',61,2,1),(1090,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',61,2,1),(1091,NULL,NULL,'Second_page/respiratory','group','0','0',61,2,1),(1092,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',61,2,1),(1093,NULL,NULL,'Fourth_page','group','9','9',61,2,1),(1094,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','খুব অসুস্থ','3',61,2,1),(1095,NULL,NULL,'Fourth_page/color','group','0','0',61,2,1),(1096,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',61,2,1),(1097,NULL,NULL,'Fourth_page/consciousness','group','0','0',61,2,1),(1098,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',61,2,1),(1099,NULL,NULL,'Fourth_page/edema','group','0','0',61,2,1),(1100,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','হ্যাঁ','2',61,2,1),(1101,NULL,NULL,'Fourth_page/dehydration','group','0','0',61,2,1),(1102,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',61,2,1),(1103,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1397624736360.jpg','1397624736360.jpg',62,1,1),(1104,NULL,NULL,'firstPage','group','3','3',62,1,1),(1105,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Arif','Arif',62,1,1),(1106,NULL,NULL,'firstPage/mobile','group','0','0',62,1,1),(1107,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01717648564','01717648564',62,1,1),(1108,NULL,'রোগীর বয়স','SecondPage','group','5','5',62,1,1),(1109,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,62,1,1),(1110,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','25','25',62,1,1),(1111,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','1','1',62,1,1),(1112,NULL,NULL,'SecondPage/gender','group','0','0',62,1,1),(1113,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',62,1,1),(1114,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','Arif:testpatient','Arif:testpatient',62,1,1),(1115,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','Arif:testpatient','Arif:testpatient',63,2,1),(1116,NULL,'রোগীর ওজন','Second_page','group','9','9',63,2,1),(1117,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','57.0','57.0',63,2,1),(1118,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','70','70',63,2,1),(1119,NULL,NULL,'Second_page/Patient_BP','group','0','0',63,2,1),(1120,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','80','80',63,2,1),(1121,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','130','130',63,2,1),(1122,NULL,NULL,'Second_page/temperature','group','0','0',63,2,1),(1123,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',63,2,1),(1124,NULL,NULL,'Second_page/respiratory','group','0','0',63,2,1),(1125,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',63,2,1),(1126,NULL,NULL,'Fourth_page','group','9','9',63,2,1),(1127,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',63,2,1),(1128,NULL,NULL,'Fourth_page/color','group','0','0',63,2,1),(1129,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',63,2,1),(1130,NULL,NULL,'Fourth_page/consciousness','group','0','0',63,2,1),(1131,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',63,2,1),(1132,NULL,NULL,'Fourth_page/edema','group','0','0',63,2,1),(1133,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',63,2,1),(1134,NULL,NULL,'Fourth_page/dehydration','group','0','0',63,2,1),(1135,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',63,2,1),(1136,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1397710760856.jpg','1397710760856.jpg',64,1,1),(1137,NULL,NULL,'firstPage','group','3','3',64,1,1),(1138,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Pritsh','Pritsh',64,1,1),(1139,NULL,NULL,'firstPage/mobile','group','0','0',64,1,1),(1140,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01713515966','01713515966',64,1,1),(1141,NULL,'রোগীর বয়স','SecondPage','group','5','5',64,1,1),(1142,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,64,1,1),(1143,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','29','29',64,1,1),(1144,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','5','5',64,1,1),(1145,NULL,NULL,'SecondPage/gender','group','0','0',64,1,1),(1146,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',64,1,1),(1147,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000041','mpower_0002_000000000041',64,1,1),(1148,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000041','mpower_0002_000000000041',65,2,1),(1149,NULL,'রোগীর ওজন','Second_page','group','9','9',65,2,1),(1150,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','50.0','50.0',65,2,1),(1151,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','96','96',65,2,1),(1152,NULL,NULL,'Second_page/Patient_BP','group','0','0',65,2,1),(1153,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',65,2,1),(1154,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',65,2,1),(1155,NULL,NULL,'Second_page/temperature','group','0','0',65,2,1),(1156,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',65,2,1),(1157,NULL,NULL,'Second_page/respiratory','group','0','0',65,2,1),(1158,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',65,2,1),(1159,NULL,NULL,'Fourth_page','group','9','9',65,2,1),(1160,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',65,2,1),(1161,NULL,NULL,'Fourth_page/color','group','0','0',65,2,1),(1162,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',65,2,1),(1163,NULL,NULL,'Fourth_page/consciousness','group','0','0',65,2,1),(1164,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',65,2,1),(1165,NULL,NULL,'Fourth_page/edema','group','0','0',65,2,1),(1166,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',65,2,1),(1167,NULL,NULL,'Fourth_page/dehydration','group','0','0',65,2,1),(1168,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',65,2,1),(1169,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1397713926957.jpg','1397713926957.jpg',66,1,1),(1170,NULL,NULL,'firstPage','group','3','3',66,1,1),(1171,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Salim hossain khan','Salim hossain khan',66,1,1),(1172,NULL,NULL,'firstPage/mobile','group','0','0',66,1,1),(1173,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01726564168','01726564168',66,1,1),(1174,NULL,'রোগীর বয়স','SecondPage','group','5','5',66,1,1),(1175,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,66,1,1),(1176,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','39','39',66,1,1),(1177,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','5','5',66,1,1),(1178,NULL,NULL,'SecondPage/gender','group','0','0',66,1,1),(1179,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',66,1,1),(1180,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000088','mpower_0002_000000000088',66,1,1),(1181,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000088','mpower_0002_000000000088',67,2,1),(1182,NULL,'রোগীর ওজন','Second_page','group','9','9',67,2,1),(1183,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','68.0','68.0',67,2,1),(1184,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','56','56',67,2,1),(1185,NULL,NULL,'Second_page/Patient_BP','group','0','0',67,2,1),(1186,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','122','122',67,2,1),(1187,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','88','88',67,2,1),(1188,NULL,NULL,'Second_page/temperature','group','0','0',67,2,1),(1189,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',67,2,1),(1190,NULL,NULL,'Second_page/respiratory','group','0','0',67,2,1),(1191,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',67,2,1),(1192,NULL,NULL,'Fourth_page','group','9','9',67,2,1),(1193,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',67,2,1),(1194,NULL,NULL,'Fourth_page/color','group','0','0',67,2,1),(1195,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',67,2,1),(1196,NULL,NULL,'Fourth_page/consciousness','group','0','0',67,2,1),(1197,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',67,2,1),(1198,NULL,NULL,'Fourth_page/edema','group','0','0',67,2,1),(1199,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',67,2,1),(1200,NULL,NULL,'Fourth_page/dehydration','group','0','0',67,2,1),(1201,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',67,2,1),(1202,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1397719977295.jpg','1397719977295.jpg',68,1,1),(1203,NULL,NULL,'firstPage','group','3','3',68,1,1),(1204,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Shammi Shawkat','Shammi Shawkat',68,1,1),(1205,NULL,NULL,'firstPage/mobile','group','0','0',68,1,1),(1206,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01975759759','01975759759',68,1,1),(1207,NULL,'রোগীর বয়স','SecondPage','group','5','5',68,1,1),(1208,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,68,1,1),(1209,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','28','28',68,1,1),(1210,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','8','8',68,1,1),(1211,NULL,NULL,'SecondPage/gender','group','0','0',68,1,1),(1212,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',68,1,1),(1213,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000071','mpower_0002_000000000071',68,1,1),(1214,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000071','mpower_0002_000000000071',69,2,1),(1215,NULL,'রোগীর ওজন','Second_page','group','9','9',69,2,1),(1216,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',69,2,1),(1217,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','80','80',69,2,1),(1218,NULL,NULL,'Second_page/Patient_BP','group','0','0',69,2,1),(1219,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','80','80',69,2,1),(1220,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','100','100',69,2,1),(1221,NULL,NULL,'Second_page/temperature','group','0','0',69,2,1),(1222,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.8','98.8',69,2,1),(1223,NULL,NULL,'Second_page/respiratory','group','0','0',69,2,1),(1224,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',69,2,1),(1225,NULL,NULL,'Fourth_page','group','9','9',69,2,1),(1226,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',69,2,1),(1227,NULL,NULL,'Fourth_page/color','group','0','0',69,2,1),(1228,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',69,2,1),(1229,NULL,NULL,'Fourth_page/consciousness','group','0','0',69,2,1),(1230,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',69,2,1),(1231,NULL,NULL,'Fourth_page/edema','group','0','0',69,2,1),(1232,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',69,2,1),(1233,NULL,NULL,'Fourth_page/dehydration','group','0','0',69,2,1),(1234,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',69,2,1),(1235,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1397723926097.jpg','1397723926097.jpg',70,1,1),(1236,NULL,NULL,'firstPage','group','3','3',70,1,1),(1237,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Mozzem hossen','Mozzem hossen',70,1,1),(1238,NULL,NULL,'firstPage/mobile','group','0','0',70,1,1),(1239,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01713599877','01713599877',70,1,1),(1240,NULL,'রোগীর বয়স','SecondPage','group','5','5',70,1,1),(1241,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,70,1,1),(1242,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','55','55',70,1,1),(1243,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','4','4',70,1,1),(1244,NULL,NULL,'SecondPage/gender','group','0','0',70,1,1),(1245,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',70,1,1),(1246,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000054','mpower_0002_000000000054',70,1,1),(1247,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000071','mpower_0002_000000000071',71,2,1),(1248,NULL,'রোগীর ওজন','Second_page','group','9','9',71,2,1),(1249,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','25.0','25.0',71,2,1),(1250,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','80','80',71,2,1),(1251,NULL,NULL,'Second_page/Patient_BP','group','0','0',71,2,1),(1252,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','80','80',71,2,1),(1253,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','100','100',71,2,1),(1254,NULL,NULL,'Second_page/temperature','group','0','0',71,2,1),(1255,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.7','98.7',71,2,1),(1256,NULL,NULL,'Second_page/respiratory','group','0','0',71,2,1),(1257,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',71,2,1),(1258,NULL,NULL,'Fourth_page','group','9','9',71,2,1),(1259,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',71,2,1),(1260,NULL,NULL,'Fourth_page/color','group','0','0',71,2,1),(1261,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',71,2,1),(1262,NULL,NULL,'Fourth_page/consciousness','group','0','0',71,2,1),(1263,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',71,2,1),(1264,NULL,NULL,'Fourth_page/edema','group','0','0',71,2,1),(1265,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',71,2,1),(1266,NULL,NULL,'Fourth_page/dehydration','group','0','0',71,2,1),(1267,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',71,2,1),(1268,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000071','mpower_0002_000000000071',72,2,1),(1269,NULL,'রোগীর ওজন','Second_page','group','9','9',72,2,1),(1270,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',72,2,1),(1271,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','80','80',72,2,1),(1272,NULL,NULL,'Second_page/Patient_BP','group','0','0',72,2,1),(1273,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','50','50',72,2,1),(1274,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','100','100',72,2,1),(1275,NULL,NULL,'Second_page/temperature','group','0','0',72,2,1),(1276,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.7','98.7',72,2,1),(1277,NULL,NULL,'Second_page/respiratory','group','0','0',72,2,1),(1278,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',72,2,1),(1279,NULL,NULL,'Fourth_page','group','9','9',72,2,1),(1280,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',72,2,1),(1281,NULL,NULL,'Fourth_page/color','group','0','0',72,2,1),(1282,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',72,2,1),(1283,NULL,NULL,'Fourth_page/consciousness','group','0','0',72,2,1),(1284,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',72,2,1),(1285,NULL,NULL,'Fourth_page/edema','group','0','0',72,2,1),(1286,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',72,2,1),(1287,NULL,NULL,'Fourth_page/dehydration','group','0','0',72,2,1),(1288,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',72,2,1),(1289,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000071','mpower_0002_000000000071',73,2,1),(1290,NULL,'রোগীর ওজন','Second_page','group','9','9',73,2,1),(1291,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',73,2,1),(1292,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','80','80',73,2,1),(1293,NULL,NULL,'Second_page/Patient_BP','group','0','0',73,2,1),(1294,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','80','80',73,2,1),(1295,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','120','120',73,2,1),(1296,NULL,NULL,'Second_page/temperature','group','0','0',73,2,1),(1297,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.7','98.7',73,2,1),(1298,NULL,NULL,'Second_page/respiratory','group','0','0',73,2,1),(1299,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',73,2,1),(1300,NULL,NULL,'Fourth_page','group','9','9',73,2,1),(1301,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',73,2,1),(1302,NULL,NULL,'Fourth_page/color','group','0','0',73,2,1),(1303,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',73,2,1),(1304,NULL,NULL,'Fourth_page/consciousness','group','0','0',73,2,1),(1305,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',73,2,1),(1306,NULL,NULL,'Fourth_page/edema','group','0','0',73,2,1),(1307,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','হ্যাঁ','2',73,2,1),(1308,NULL,NULL,'Fourth_page/dehydration','group','0','0',73,2,1),(1309,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',73,2,1),(1310,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000071','mpower_0002_000000000071',74,2,1),(1311,NULL,'রোগীর ওজন','Second_page','group','9','9',74,2,1),(1312,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',74,2,1),(1313,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','80','80',74,2,1),(1314,NULL,NULL,'Second_page/Patient_BP','group','0','0',74,2,1),(1315,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','80','80',74,2,1),(1316,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','120','120',74,2,1),(1317,NULL,NULL,'Second_page/temperature','group','0','0',74,2,1),(1318,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.7','98.7',74,2,1),(1319,NULL,NULL,'Second_page/respiratory','group','0','0',74,2,1),(1320,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',74,2,1),(1321,NULL,NULL,'Fourth_page','group','9','9',74,2,1),(1322,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',74,2,1),(1323,NULL,NULL,'Fourth_page/color','group','0','0',74,2,1),(1324,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',74,2,1),(1325,NULL,NULL,'Fourth_page/consciousness','group','0','0',74,2,1),(1326,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',74,2,1),(1327,NULL,NULL,'Fourth_page/edema','group','0','0',74,2,1),(1328,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',74,2,1),(1329,NULL,NULL,'Fourth_page/dehydration','group','0','0',74,2,1),(1330,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',74,2,1),(1331,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000071','mpower_0002_000000000071',75,2,1),(1332,NULL,'রোগীর ওজন','Second_page','group','9','9',75,2,1),(1333,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',75,2,1),(1334,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','80','80',75,2,1),(1335,NULL,NULL,'Second_page/Patient_BP','group','0','0',75,2,1),(1336,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','80','80',75,2,1),(1337,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','120','120',75,2,1),(1338,NULL,NULL,'Second_page/temperature','group','0','0',75,2,1),(1339,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.7','98.7',75,2,1),(1340,NULL,NULL,'Second_page/respiratory','group','0','0',75,2,1),(1341,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',75,2,1),(1342,NULL,NULL,'Fourth_page','group','9','9',75,2,1),(1343,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',75,2,1),(1344,NULL,NULL,'Fourth_page/color','group','0','0',75,2,1),(1345,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',75,2,1),(1346,NULL,NULL,'Fourth_page/consciousness','group','0','0',75,2,1),(1347,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',75,2,1),(1348,NULL,NULL,'Fourth_page/edema','group','0','0',75,2,1),(1349,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',75,2,1),(1350,NULL,NULL,'Fourth_page/dehydration','group','0','0',75,2,1),(1351,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',75,2,1),(1352,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1397735820318.jpg','1397735820318.jpg',76,1,1),(1353,NULL,NULL,'firstPage','group','3','3',76,1,1),(1354,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Joynal','Joynal',76,1,1),(1355,NULL,NULL,'firstPage/mobile','group','0','0',76,1,1),(1356,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01713584881','01713584881',76,1,1),(1357,NULL,'রোগীর বয়স','SecondPage','group','5','5',76,1,1),(1358,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,76,1,1),(1359,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','36','36',76,1,1),(1360,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','5','5',76,1,1),(1361,NULL,NULL,'SecondPage/gender','group','0','0',76,1,1),(1362,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',76,1,1),(1363,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000122','mpower_0002_000000000122',76,1,1),(1364,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000122','mpower_0002_000000000122',77,2,1),(1365,NULL,'রোগীর ওজন','Second_page','group','9','9',77,2,1),(1366,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','70.0','70.0',77,2,1),(1367,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','56','56',77,2,1),(1368,NULL,NULL,'Second_page/Patient_BP','group','0','0',77,2,1),(1369,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','122','122',77,2,1),(1370,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',77,2,1),(1371,NULL,NULL,'Second_page/temperature','group','0','0',77,2,1),(1372,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',77,2,1),(1373,NULL,NULL,'Second_page/respiratory','group','0','0',77,2,1),(1374,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',77,2,1),(1375,NULL,NULL,'Fourth_page','group','9','9',77,2,1),(1376,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',77,2,1),(1377,NULL,NULL,'Fourth_page/color','group','0','0',77,2,1),(1378,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',77,2,1),(1379,NULL,NULL,'Fourth_page/consciousness','group','0','0',77,2,1),(1380,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',77,2,1),(1381,NULL,NULL,'Fourth_page/edema','group','0','0',77,2,1),(1382,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',77,2,1),(1383,NULL,NULL,'Fourth_page/dehydration','group','0','0',77,2,1),(1384,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',77,2,1),(1385,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1397740420898.jpg','1397740420898.jpg',78,1,1),(1386,NULL,NULL,'firstPage','group','3','3',78,1,1),(1387,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Jgfddf','Jgfddf',78,1,1),(1388,NULL,NULL,'firstPage/mobile','group','0','0',78,1,1),(1389,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01717893915','01717893915',78,1,1),(1390,NULL,'রোগীর বয়স','SecondPage','group','5','5',78,1,1),(1391,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,78,1,1),(1392,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','34','34',78,1,1),(1393,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,78,1,1),(1394,NULL,NULL,'SecondPage/gender','group','0','0',78,1,1),(1395,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',78,1,1),(1396,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000102','mpower_0002_000000000102',78,1,1),(1397,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000102','mpower_0002_000000000102',79,2,1),(1398,NULL,'রোগীর ওজন','Second_page','group','9','9',79,2,1),(1399,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','45.0','45.0',79,2,1),(1400,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','70','70',79,2,1),(1401,NULL,NULL,'Second_page/Patient_BP','group','0','0',79,2,1),(1402,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','100','100',79,2,1),(1403,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',79,2,1),(1404,NULL,NULL,'Second_page/temperature','group','0','0',79,2,1),(1405,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.7','98.7',79,2,1),(1406,NULL,NULL,'Second_page/respiratory','group','0','0',79,2,1),(1407,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',79,2,1),(1408,NULL,NULL,'Fourth_page','group','9','9',79,2,1),(1409,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',79,2,1),(1410,NULL,NULL,'Fourth_page/color','group','0','0',79,2,1),(1411,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',79,2,1),(1412,NULL,NULL,'Fourth_page/consciousness','group','0','0',79,2,1),(1413,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',79,2,1),(1414,NULL,NULL,'Fourth_page/edema','group','0','0',79,2,1),(1415,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','হ্যাঁ','2',79,2,1),(1416,NULL,NULL,'Fourth_page/dehydration','group','0','0',79,2,1),(1417,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',79,2,1),(1418,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000071','mpower_0002_000000000071',80,2,1),(1419,NULL,'রোগীর ওজন','Second_page','group','9','9',80,2,1),(1420,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',80,2,1),(1421,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','80','80',80,2,1),(1422,NULL,NULL,'Second_page/Patient_BP','group','0','0',80,2,1),(1423,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',80,2,1),(1424,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',80,2,1),(1425,NULL,NULL,'Second_page/temperature','group','0','0',80,2,1),(1426,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.7','98.7',80,2,1),(1427,NULL,NULL,'Second_page/respiratory','group','0','0',80,2,1),(1428,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',80,2,1),(1429,NULL,NULL,'Fourth_page','group','9','9',80,2,1),(1430,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',80,2,1),(1431,NULL,NULL,'Fourth_page/color','group','0','0',80,2,1),(1432,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',80,2,1),(1433,NULL,NULL,'Fourth_page/consciousness','group','0','0',80,2,1),(1434,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',80,2,1),(1435,NULL,NULL,'Fourth_page/edema','group','0','0',80,2,1),(1436,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','হ্যাঁ','2',80,2,1),(1437,NULL,NULL,'Fourth_page/dehydration','group','0','0',80,2,1),(1438,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',80,2,1),(1439,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000071','mpower_0002_000000000071',81,2,1),(1440,NULL,'রোগীর ওজন','Second_page','group','9','9',81,2,1),(1441,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','50.0','50.0',81,2,1),(1442,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','25','25',81,2,1),(1443,NULL,NULL,'Second_page/Patient_BP','group','0','0',81,2,1),(1444,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','35','35',81,2,1),(1445,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','48','48',81,2,1),(1446,NULL,NULL,'Second_page/temperature','group','0','0',81,2,1),(1447,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.8','98.8',81,2,1),(1448,NULL,NULL,'Second_page/respiratory','group','0','0',81,2,1),(1449,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',81,2,1),(1450,NULL,NULL,'Fourth_page','group','9','9',81,2,1),(1451,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',81,2,1),(1452,NULL,NULL,'Fourth_page/color','group','0','0',81,2,1),(1453,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',81,2,1),(1454,NULL,NULL,'Fourth_page/consciousness','group','0','0',81,2,1),(1455,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',81,2,1),(1456,NULL,NULL,'Fourth_page/edema','group','0','0',81,2,1),(1457,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','হ্যাঁ','2',81,2,1),(1458,NULL,NULL,'Fourth_page/dehydration','group','0','0',81,2,1),(1459,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',81,2,1),(1460,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000071','mpower_0002_000000000071',82,2,1),(1461,NULL,'রোগীর ওজন','Second_page','group','9','9',82,2,1),(1462,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',82,2,1),(1463,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','55','55',82,2,1),(1464,NULL,NULL,'Second_page/Patient_BP','group','0','0',82,2,1),(1465,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','55','55',82,2,1),(1466,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','55','55',82,2,1),(1467,NULL,NULL,'Second_page/temperature','group','0','0',82,2,1),(1468,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',82,2,1),(1469,NULL,NULL,'Second_page/respiratory','group','0','0',82,2,1),(1470,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',82,2,1),(1471,NULL,NULL,'Fourth_page','group','9','9',82,2,1),(1472,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',82,2,1),(1473,NULL,NULL,'Fourth_page/color','group','0','0',82,2,1),(1474,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',82,2,1),(1475,NULL,NULL,'Fourth_page/consciousness','group','0','0',82,2,1),(1476,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',82,2,1),(1477,NULL,NULL,'Fourth_page/edema','group','0','0',82,2,1),(1478,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',82,2,1),(1479,NULL,NULL,'Fourth_page/dehydration','group','0','0',82,2,1),(1480,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',82,2,1),(1481,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000071','mpower_0002_000000000071',83,2,1),(1482,NULL,'রোগীর ওজন','Second_page','group','9','9',83,2,1),(1483,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','29.0','29.0',83,2,1),(1484,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','65','65',83,2,1),(1485,NULL,NULL,'Second_page/Patient_BP','group','0','0',83,2,1),(1486,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','80','80',83,2,1),(1487,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','120','120',83,2,1),(1488,NULL,NULL,'Second_page/temperature','group','0','0',83,2,1),(1489,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.2','98.2',83,2,1),(1490,NULL,NULL,'Second_page/respiratory','group','0','0',83,2,1),(1491,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',83,2,1),(1492,NULL,NULL,'Fourth_page','group','9','9',83,2,1),(1493,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',83,2,1),(1494,NULL,NULL,'Fourth_page/color','group','0','0',83,2,1),(1495,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',83,2,1),(1496,NULL,NULL,'Fourth_page/consciousness','group','0','0',83,2,1),(1497,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',83,2,1),(1498,NULL,NULL,'Fourth_page/edema','group','0','0',83,2,1),(1499,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',83,2,1),(1500,NULL,NULL,'Fourth_page/dehydration','group','0','0',83,2,1),(1501,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',83,2,1),(1502,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000071','mpower_0002_000000000071',84,2,1),(1503,NULL,'রোগীর ওজন','Second_page','group','9','9',84,2,1),(1504,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',84,2,1),(1505,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','80','80',84,2,1),(1506,NULL,NULL,'Second_page/Patient_BP','group','0','0',84,2,1),(1507,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',84,2,1),(1508,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',84,2,1),(1509,NULL,NULL,'Second_page/temperature','group','0','0',84,2,1),(1510,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',84,2,1),(1511,NULL,NULL,'Second_page/respiratory','group','0','0',84,2,1),(1512,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',84,2,1),(1513,NULL,NULL,'Fourth_page','group','9','9',84,2,1),(1514,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',84,2,1),(1515,NULL,NULL,'Fourth_page/color','group','0','0',84,2,1),(1516,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',84,2,1),(1517,NULL,NULL,'Fourth_page/consciousness','group','0','0',84,2,1),(1518,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',84,2,1),(1519,NULL,NULL,'Fourth_page/edema','group','0','0',84,2,1),(1520,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',84,2,1),(1521,NULL,NULL,'Fourth_page/dehydration','group','0','0',84,2,1),(1522,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',84,2,1),(1523,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1397739606611.jpg','1397739606611.jpg',85,1,1),(1524,NULL,NULL,'firstPage','group','3','3',85,1,1),(1525,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Hafizur rahman liton','Hafizur rahman liton',85,1,1),(1526,NULL,NULL,'firstPage/mobile','group','0','0',85,1,1),(1527,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01718329304','01718329304',85,1,1),(1528,NULL,'রোগীর বয়স','SecondPage','group','5','5',85,1,1),(1529,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,85,1,1),(1530,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','37','37',85,1,1),(1531,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','10','10',85,1,1),(1532,NULL,NULL,'SecondPage/gender','group','0','0',85,1,1),(1533,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',85,1,1),(1534,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000118','mpower_0002_000000000118',85,1,1),(1535,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1397795404895.jpg','1397795404895.jpg',86,1,1),(1536,NULL,NULL,'firstPage','group','3','3',86,1,1),(1537,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Aminul islam','Aminul islam',86,1,1),(1538,NULL,NULL,'firstPage/mobile','group','0','0',86,1,1),(1539,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01721405066','01721405066',86,1,1),(1540,NULL,'রোগীর বয়স','SecondPage','group','5','5',86,1,1),(1541,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,86,1,1),(1542,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','30','30',86,1,1),(1543,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','5','5',86,1,1),(1544,NULL,NULL,'SecondPage/gender','group','0','0',86,1,1),(1545,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',86,1,1),(1546,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000120','mpower_0002_000000000120',86,1,1),(1547,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1397889187967.jpg','1397889187967.jpg',87,1,1),(1548,NULL,NULL,'firstPage','group','3','3',87,1,1),(1549,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Etyggfff','Etyggfff',87,1,1),(1550,NULL,NULL,'firstPage/mobile','group','0','0',87,1,1),(1551,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01764564567','01764564567',87,1,1),(1552,NULL,'রোগীর বয়স','SecondPage','group','5','5',87,1,1),(1553,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,87,1,1),(1554,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','1','1',87,1,1),(1555,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','8','8',87,1,1),(1556,NULL,NULL,'SecondPage/gender','group','0','0',87,1,1),(1557,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',87,1,1),(1558,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','test_22','test_22',87,1,1),(1559,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1397892700586.jpg','1397892700586.jpg',88,1,1),(1560,NULL,NULL,'firstPage','group','3','3',88,1,1),(1561,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Sadat test','Sadat test',88,1,1),(1562,NULL,NULL,'firstPage/mobile','group','0','0',88,1,1),(1563,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01717666555','01717666555',88,1,1),(1564,NULL,'রোগীর বয়স','SecondPage','group','5','5',88,1,1),(1565,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,88,1,1),(1566,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','1','1',88,1,1),(1567,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','5','5',88,1,1),(1568,NULL,NULL,'SecondPage/gender','group','0','0',88,1,1),(1569,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',88,1,1),(1570,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','testpatient:1','testpatient:1',88,1,1),(1571,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','testpatient:1','testpatient:1',89,2,1),(1572,NULL,'রোগীর ওজন','Second_page','group','9','9',89,2,1),(1573,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','1.5','1.5',89,2,1),(1574,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','70','70',89,2,1),(1575,NULL,NULL,'Second_page/Patient_BP','group','0','0',89,2,1),(1576,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','110','110',89,2,1),(1577,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','90','90',89,2,1),(1578,NULL,NULL,'Second_page/temperature','group','0','0',89,2,1),(1579,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','97.0','97.0',89,2,1),(1580,NULL,NULL,'Second_page/respiratory','group','0','0',89,2,1),(1581,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',89,2,1),(1582,NULL,NULL,'Fourth_page','group','9','9',89,2,1),(1583,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',89,2,1),(1584,NULL,NULL,'Fourth_page/color','group','0','0',89,2,1),(1585,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',89,2,1),(1586,NULL,NULL,'Fourth_page/consciousness','group','0','0',89,2,1),(1587,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',89,2,1),(1588,NULL,NULL,'Fourth_page/edema','group','0','0',89,2,1),(1589,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',89,2,1),(1590,NULL,NULL,'Fourth_page/dehydration','group','0','0',89,2,1),(1591,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',89,2,1),(1592,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1397894761093.jpg','1397894761093.jpg',90,1,1),(1593,NULL,NULL,'firstPage','group','3','3',90,1,1),(1594,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Fhjkfyiikgh','Fhjkfyiikgh',90,1,1),(1595,NULL,NULL,'firstPage/mobile','group','0','0',90,1,1),(1596,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01717893915','01717893915',90,1,1),(1597,NULL,'রোগীর বয়স','SecondPage','group','5','5',90,1,1),(1598,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,90,1,1),(1599,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','1','1',90,1,1),(1600,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','8','8',90,1,1),(1601,NULL,NULL,'SecondPage/gender','group','0','0',90,1,1),(1602,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',90,1,1),(1603,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','testpatient:2','testpatient:2',90,1,1),(1604,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','testpatient:1','testpatient:1',91,2,1),(1605,NULL,'রোগীর ওজন','Second_page','group','9','9',91,2,1),(1606,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','1.5','1.5',91,2,1),(1607,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','70','70',91,2,1),(1608,NULL,NULL,'Second_page/Patient_BP','group','0','0',91,2,1),(1609,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','110','110',91,2,1),(1610,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','90','90',91,2,1),(1611,NULL,NULL,'Second_page/temperature','group','0','0',91,2,1),(1612,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','97.0','97.0',91,2,1),(1613,NULL,NULL,'Second_page/respiratory','group','0','0',91,2,1),(1614,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',91,2,1),(1615,NULL,NULL,'Fourth_page','group','9','9',91,2,1),(1616,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',91,2,1),(1617,NULL,NULL,'Fourth_page/color','group','0','0',91,2,1),(1618,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',91,2,1),(1619,NULL,NULL,'Fourth_page/consciousness','group','0','0',91,2,1),(1620,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',91,2,1),(1621,NULL,NULL,'Fourth_page/edema','group','0','0',91,2,1),(1622,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',91,2,1),(1623,NULL,NULL,'Fourth_page/dehydration','group','0','0',91,2,1),(1624,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',91,2,1),(1625,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','testpatient:2','testpatient:2',92,2,1),(1626,NULL,'রোগীর ওজন','Second_page','group','9','9',92,2,1),(1627,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','2.4','2.4',92,2,1),(1628,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','65','65',92,2,1),(1629,NULL,NULL,'Second_page/Patient_BP','group','0','0',92,2,1),(1630,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',92,2,1),(1631,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',92,2,1),(1632,NULL,NULL,'Second_page/temperature','group','0','0',92,2,1),(1633,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.6','98.6',92,2,1),(1634,NULL,NULL,'Second_page/respiratory','group','0','0',92,2,1),(1635,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব কম','3',92,2,1),(1636,NULL,NULL,'Fourth_page','group','9','9',92,2,1),(1637,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',92,2,1),(1638,NULL,NULL,'Fourth_page/color','group','0','0',92,2,1),(1639,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',92,2,1),(1640,NULL,NULL,'Fourth_page/consciousness','group','0','0',92,2,1),(1641,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',92,2,1),(1642,NULL,NULL,'Fourth_page/edema','group','0','0',92,2,1),(1643,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',92,2,1),(1644,NULL,NULL,'Fourth_page/dehydration','group','0','0',92,2,1),(1645,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',92,2,1),(1646,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','android_test','android_test',93,2,1),(1647,NULL,'রোগীর ওজন','Second_page','group','9','9',93,2,1),(1648,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',93,2,1),(1649,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','80','80',93,2,1),(1650,NULL,NULL,'Second_page/Patient_BP','group','0','0',93,2,1),(1651,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',93,2,1),(1652,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',93,2,1),(1653,NULL,NULL,'Second_page/temperature','group','0','0',93,2,1),(1654,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.6','98.6',93,2,1),(1655,NULL,NULL,'Second_page/respiratory','group','0','0',93,2,1),(1656,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',93,2,1),(1657,NULL,NULL,'Fourth_page','group','9','9',93,2,1),(1658,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',93,2,1),(1659,NULL,NULL,'Fourth_page/color','group','0','0',93,2,1),(1660,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',93,2,1),(1661,NULL,NULL,'Fourth_page/consciousness','group','0','0',93,2,1),(1662,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',93,2,1),(1663,NULL,NULL,'Fourth_page/edema','group','0','0',93,2,1),(1664,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','হ্যাঁ','2',93,2,1),(1665,NULL,NULL,'Fourth_page/dehydration','group','0','0',93,2,1),(1666,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',93,2,1),(1667,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398073682029.jpg','1398073682029.jpg',94,1,1),(1668,NULL,NULL,'firstPage','group','3','3',94,1,1),(1669,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Abdul Karim','Abdul Karim',94,1,1),(1670,NULL,NULL,'firstPage/mobile','group','0','0',94,1,1),(1671,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01724968467','01724968467',94,1,1),(1672,NULL,'রোগীর বয়স','SecondPage','group','5','5',94,1,1),(1673,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,94,1,1),(1674,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','1','1',94,1,1),(1675,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','11','11',94,1,1),(1676,NULL,NULL,'SecondPage/gender','group','0','0',94,1,1),(1677,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',94,1,1),(1678,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000013','mpower_0002_000000000013',94,1,1),(1679,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398075100857.jpg','1398075100857.jpg',95,1,1),(1680,NULL,NULL,'firstPage','group','3','3',95,1,1),(1681,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Rovil','Rovil',95,1,1),(1682,NULL,NULL,'firstPage/mobile','group','0','0',95,1,1),(1683,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01726564168','01726564168',95,1,1),(1684,NULL,'রোগীর বয়স','SecondPage','group','5','5',95,1,1),(1685,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,95,1,1),(1686,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','3','3',95,1,1),(1687,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','2','2',95,1,1),(1688,NULL,NULL,'SecondPage/gender','group','0','0',95,1,1),(1689,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',95,1,1),(1690,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000108','mpower_0002_000000000108',95,1,1),(1691,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398075097884.jpg','1398075097884.jpg',96,1,1),(1692,NULL,NULL,'firstPage','group','3','3',96,1,1),(1693,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Md Jaynal uddin','Md Jaynal uddin',96,1,1),(1694,NULL,NULL,'firstPage/mobile','group','0','0',96,1,1),(1695,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01713584881','01713584881',96,1,1),(1696,NULL,'রোগীর বয়স','SecondPage','group','5','5',96,1,1),(1697,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,96,1,1),(1698,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','37','37',96,1,1),(1699,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','2','2',96,1,1),(1700,NULL,NULL,'SecondPage/gender','group','0','0',96,1,1),(1701,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',96,1,1),(1702,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000024','mpower_0002_000000000024',96,1,1),(1703,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398075152187.jpg','1398075152187.jpg',97,1,1),(1704,NULL,NULL,'firstPage','group','3','3',97,1,1),(1705,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Kamal khan','Kamal khan',97,1,1),(1706,NULL,NULL,'firstPage/mobile','group','0','0',97,1,1),(1707,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01721405066','01721405066',97,1,1),(1708,NULL,'রোগীর বয়স','SecondPage','group','5','5',97,1,1),(1709,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,97,1,1),(1710,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','30','30',97,1,1),(1711,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,97,1,1),(1712,NULL,NULL,'SecondPage/gender','group','0','0',97,1,1),(1713,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',97,1,1),(1714,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000107','mpower_0002_000000000107',97,1,1),(1715,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398075173938.jpg','1398075173938.jpg',98,1,1),(1716,NULL,NULL,'firstPage','group','3','3',98,1,1),(1717,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Moyazzem Hossen','Moyazzem Hossen',98,1,1),(1718,NULL,NULL,'firstPage/mobile','group','0','0',98,1,1),(1719,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01713599877','01713599877',98,1,1),(1720,NULL,'রোগীর বয়স','SecondPage','group','5','5',98,1,1),(1721,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,98,1,1),(1722,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','50','50',98,1,1),(1723,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,98,1,1),(1724,NULL,NULL,'SecondPage/gender','group','0','0',98,1,1),(1725,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',98,1,1),(1726,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000150','mpower_0002_000000000150',98,1,1),(1727,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398075774999.jpg','1398075774999.jpg',99,1,1),(1728,NULL,NULL,'firstPage','group','3','3',99,1,1),(1729,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Sha Alam\n\n','Sha Alam\n\n',99,1,1),(1730,NULL,NULL,'firstPage/mobile','group','0','0',99,1,1),(1731,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01712338637','01712338637',99,1,1),(1732,NULL,'রোগীর বয়স','SecondPage','group','5','5',99,1,1),(1733,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,99,1,1),(1734,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','48','48',99,1,1),(1735,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','2','2',99,1,1),(1736,NULL,NULL,'SecondPage/gender','group','0','0',99,1,1),(1737,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',99,1,1),(1738,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000106','mpower_0002_000000000106',99,1,1),(1739,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398075942741.jpg','1398075942741.jpg',100,1,1),(1740,NULL,NULL,'firstPage','group','3','3',100,1,1),(1741,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Khalil','Khalil',100,1,1),(1742,NULL,NULL,'firstPage/mobile','group','0','0',100,1,1),(1743,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01724968467','01724968467',100,1,1),(1744,NULL,'রোগীর বয়স','SecondPage','group','5','5',100,1,1),(1745,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,100,1,1),(1746,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','38','38',100,1,1),(1747,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','5','5',100,1,1),(1748,NULL,NULL,'SecondPage/gender','group','0','0',100,1,1),(1749,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',100,1,1),(1750,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000117','mpower_0002_000000000117',100,1,1),(1751,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398075936355.jpg','1398075936355.jpg',101,1,1),(1752,NULL,NULL,'firstPage','group','3','3',101,1,1),(1753,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Liton khanmm','Liton khanmm',101,1,1),(1754,NULL,NULL,'firstPage/mobile','group','0','0',101,1,1),(1755,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01718329004','01718329004',101,1,1),(1756,NULL,'রোগীর বয়স','SecondPage','group','5','5',101,1,1),(1757,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,101,1,1),(1758,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','40','40',101,1,1),(1759,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,101,1,1),(1760,NULL,NULL,'SecondPage/gender','group','0','0',101,1,1),(1761,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',101,1,1),(1762,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','RMPtest3:rmptest3','RMPtest3:rmptest3',101,1,1),(1763,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398076397859.jpg','1398076397859.jpg',102,1,1),(1764,NULL,NULL,'firstPage','group','3','3',102,1,1),(1765,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','md Jaynal','md Jaynal',102,1,1),(1766,NULL,NULL,'firstPage/mobile','group','0','0',102,1,1),(1767,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01735881458','01735881458',102,1,1),(1768,NULL,'রোগীর বয়স','SecondPage','group','5','5',102,1,1),(1769,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,102,1,1),(1770,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','40','40',102,1,1),(1771,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','4','4',102,1,1),(1772,NULL,NULL,'SecondPage/gender','group','0','0',102,1,1),(1773,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',102,1,1),(1774,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000032','mpower_0002_000000000032',102,1,1),(1775,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398075991127.jpg','1398075991127.jpg',103,1,1),(1776,NULL,NULL,'firstPage','group','3','3',103,1,1),(1777,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Prithis','Prithis',103,1,1),(1778,NULL,NULL,'firstPage/mobile','group','0','0',103,1,1),(1779,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01713515966','01713515966',103,1,1),(1780,NULL,'রোগীর বয়স','SecondPage','group','5','5',103,1,1),(1781,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,103,1,1),(1782,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','28','28',103,1,1),(1783,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,103,1,1),(1784,NULL,NULL,'SecondPage/gender','group','0','0',103,1,1),(1785,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',103,1,1),(1786,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000129','mpower_0002_000000000129',103,1,1),(1787,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398076506437.jpg','1398076506437.jpg',104,1,1),(1788,NULL,NULL,'firstPage','group','3','3',104,1,1),(1789,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Aminul lsham','Aminul lsham',104,1,1),(1790,NULL,NULL,'firstPage/mobile','group','0','0',104,1,1),(1791,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01721405066','01721405066',104,1,1),(1792,NULL,'রোগীর বয়স','SecondPage','group','5','5',104,1,1),(1793,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,104,1,1),(1794,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','35','35',104,1,1),(1795,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,104,1,1),(1796,NULL,NULL,'SecondPage/gender','group','0','0',104,1,1),(1797,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',104,1,1),(1798,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000029','mpower_0002_000000000029',104,1,1),(1799,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398076359381.jpg','1398076359381.jpg',105,1,1),(1800,NULL,NULL,'firstPage','group','3','3',105,1,1),(1801,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Panna','Panna',105,1,1),(1802,NULL,NULL,'firstPage/mobile','group','0','0',105,1,1),(1803,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01711234567','01711234567',105,1,1),(1804,NULL,'রোগীর বয়স','SecondPage','group','5','5',105,1,1),(1805,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,105,1,1),(1806,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','30','30',105,1,1),(1807,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,105,1,1),(1808,NULL,NULL,'SecondPage/gender','group','0','0',105,1,1),(1809,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',105,1,1),(1810,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000090','mpower_0002_000000000090',105,1,1),(1811,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398076884099.jpg','1398076884099.jpg',106,1,1),(1812,NULL,NULL,'firstPage','group','3','3',106,1,1),(1813,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Md Jaynal','Md Jaynal',106,1,1),(1814,NULL,NULL,'firstPage/mobile','group','0','0',106,1,1),(1815,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01712338637','01712338637',106,1,1),(1816,NULL,'রোগীর বয়স','SecondPage','group','5','5',106,1,1),(1817,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,106,1,1),(1818,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','40','40',106,1,1),(1819,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','4','4',106,1,1),(1820,NULL,NULL,'SecondPage/gender','group','0','0',106,1,1),(1821,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',106,1,1),(1822,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000030','mpower_0002_000000000030',106,1,1),(1823,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398076892722.jpg','1398076892722.jpg',107,1,1),(1824,NULL,NULL,'firstPage','group','3','3',107,1,1),(1825,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Mone','Mone',107,1,1),(1826,NULL,NULL,'firstPage/mobile','group','0','0',107,1,1),(1827,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01745302402','01745302402',107,1,1),(1828,NULL,'রোগীর বয়স','SecondPage','group','5','5',107,1,1),(1829,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,107,1,1),(1830,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','28','28',107,1,1),(1831,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','0','0',107,1,1),(1832,NULL,NULL,'SecondPage/gender','group','0','0',107,1,1),(1833,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',107,1,1),(1834,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000042','mpower_0002_000000000042',107,1,1),(1835,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398077006855.jpg','1398077006855.jpg',108,1,1),(1836,NULL,NULL,'firstPage','group','3','3',108,1,1),(1837,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Sadat','Sadat',108,1,1),(1838,NULL,NULL,'firstPage/mobile','group','0','0',108,1,1),(1839,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01737233902','01737233902',108,1,1),(1840,NULL,'রোগীর বয়স','SecondPage','group','5','5',108,1,1),(1841,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,108,1,1),(1842,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','25','25',108,1,1),(1843,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','6','6',108,1,1),(1844,NULL,NULL,'SecondPage/gender','group','0','0',108,1,1),(1845,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',108,1,1),(1846,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000028','mpower_0002_000000000028',108,1,1),(1847,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398077072840.jpg','1398077072840.jpg',109,1,1),(1848,NULL,NULL,'firstPage','group','3','3',109,1,1),(1849,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Liton mia','Liton mia',109,1,1),(1850,NULL,NULL,'firstPage/mobile','group','0','0',109,1,1),(1851,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01718329304','01718329304',109,1,1),(1852,NULL,'রোগীর বয়স','SecondPage','group','5','5',109,1,1),(1853,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,109,1,1),(1854,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','45','45',109,1,1),(1855,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,109,1,1),(1856,NULL,NULL,'SecondPage/gender','group','0','0',109,1,1),(1857,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',109,1,1),(1858,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000033','mpower_0002_000000000033',109,1,1),(1859,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398077279657.jpg','1398077279657.jpg',110,1,1),(1860,NULL,NULL,'firstPage','group','3','3',110,1,1),(1861,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','shah Alam','shah Alam',110,1,1),(1862,NULL,NULL,'firstPage/mobile','group','0','0',110,1,1),(1863,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01712338637','01712338637',110,1,1),(1864,NULL,'রোগীর বয়স','SecondPage','group','5','5',110,1,1),(1865,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,110,1,1),(1866,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','40','40',110,1,1),(1867,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','6','6',110,1,1),(1868,NULL,NULL,'SecondPage/gender','group','0','0',110,1,1),(1869,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',110,1,1),(1870,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000039','mpower_0002_000000000039',110,1,1),(1871,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398077240174.jpg','1398077240174.jpg',111,1,1),(1872,NULL,NULL,'firstPage','group','3','3',111,1,1),(1873,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Roxe','Roxe',111,1,1),(1874,NULL,NULL,'firstPage/mobile','group','0','0',111,1,1),(1875,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01836175868','01836175868',111,1,1),(1876,NULL,'রোগীর বয়স','SecondPage','group','5','5',111,1,1),(1877,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,111,1,1),(1878,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','20','20',111,1,1),(1879,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','0','0',111,1,1),(1880,NULL,NULL,'SecondPage/gender','group','0','0',111,1,1),(1881,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',111,1,1),(1882,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000045','mpower_0002_000000000045',111,1,1),(1883,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398077404963.jpg','1398077404963.jpg',112,1,1),(1884,NULL,NULL,'firstPage','group','3','3',112,1,1),(1885,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Salim','Salim',112,1,1),(1886,NULL,NULL,'firstPage/mobile','group','0','0',112,1,1),(1887,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01711342654','01711342654',112,1,1),(1888,NULL,'রোগীর বয়স','SecondPage','group','5','5',112,1,1),(1889,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,112,1,1),(1890,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','40','40',112,1,1),(1891,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,112,1,1),(1892,NULL,NULL,'SecondPage/gender','group','0','0',112,1,1),(1893,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',112,1,1),(1894,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000031','mpower_0002_000000000031',112,1,1),(1895,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398077465074.jpg','1398077465074.jpg',113,1,1),(1896,NULL,NULL,'firstPage','group','3','3',113,1,1),(1897,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Marufur Rahman','Marufur Rahman',113,1,1),(1898,NULL,NULL,'firstPage/mobile','group','0','0',113,1,1),(1899,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01710974253','01710974253',113,1,1),(1900,NULL,'রোগীর বয়স','SecondPage','group','5','5',113,1,1),(1901,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,113,1,1),(1902,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','27','27',113,1,1),(1903,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','6','6',113,1,1),(1904,NULL,NULL,'SecondPage/gender','group','0','0',113,1,1),(1905,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',113,1,1),(1906,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000018','mpower_0002_000000000018',113,1,1),(1907,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398077470677.jpg','1398077470677.jpg',114,1,1),(1908,NULL,NULL,'firstPage','group','3','3',114,1,1),(1909,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Salam khan','Salam khan',114,1,1),(1910,NULL,NULL,'firstPage/mobile','group','0','0',114,1,1),(1911,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01718329304','01718329304',114,1,1),(1912,NULL,'রোগীর বয়স','SecondPage','group','5','5',114,1,1),(1913,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,114,1,1),(1914,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','33','33',114,1,1),(1915,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,114,1,1),(1916,NULL,NULL,'SecondPage/gender','group','0','0',114,1,1),(1917,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',114,1,1),(1918,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000023','mpower_0002_000000000023',114,1,1),(1919,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000106','mpower_0002_000000000106',115,2,1),(1920,NULL,'রোগীর ওজন','Second_page','group','9','9',115,2,1),(1921,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','67.0','67.0',115,2,1),(1922,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','78','78',115,2,1),(1923,NULL,NULL,'Second_page/Patient_BP','group','0','0',115,2,1),(1924,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',115,2,1),(1925,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',115,2,1),(1926,NULL,NULL,'Second_page/temperature','group','0','0',115,2,1),(1927,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','97.0','97.0',115,2,1),(1928,NULL,NULL,'Second_page/respiratory','group','0','0',115,2,1),(1929,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',115,2,1),(1930,NULL,NULL,'Fourth_page','group','9','9',115,2,1),(1931,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',115,2,1),(1932,NULL,NULL,'Fourth_page/color','group','0','0',115,2,1),(1933,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',115,2,1),(1934,NULL,NULL,'Fourth_page/consciousness','group','0','0',115,2,1),(1935,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',115,2,1),(1936,NULL,NULL,'Fourth_page/edema','group','0','0',115,2,1),(1937,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',115,2,1),(1938,NULL,NULL,'Fourth_page/dehydration','group','0','0',115,2,1),(1939,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',115,2,1),(1940,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000029','mpower_0002_000000000029',116,2,1),(1941,NULL,'রোগীর ওজন','Second_page','group','9','9',116,2,1),(1942,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','56.0','56.0',116,2,1),(1943,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','85','85',116,2,1),(1944,NULL,NULL,'Second_page/Patient_BP','group','0','0',116,2,1),(1945,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',116,2,1),(1946,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',116,2,1),(1947,NULL,NULL,'Second_page/temperature','group','0','0',116,2,1),(1948,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',116,2,1),(1949,NULL,NULL,'Second_page/respiratory','group','0','0',116,2,1),(1950,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',116,2,1),(1951,NULL,NULL,'Fourth_page','group','9','9',116,2,1),(1952,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','খুব অসুস্থ','3',116,2,1),(1953,NULL,NULL,'Fourth_page/color','group','0','0',116,2,1),(1954,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',116,2,1),(1955,NULL,NULL,'Fourth_page/consciousness','group','0','0',116,2,1),(1956,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',116,2,1),(1957,NULL,NULL,'Fourth_page/edema','group','0','0',116,2,1),(1958,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',116,2,1),(1959,NULL,NULL,'Fourth_page/dehydration','group','0','0',116,2,1),(1960,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',116,2,1),(1961,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000029','mpower_0002_000000000029',117,2,1),(1962,NULL,'রোগীর ওজন','Second_page','group','9','9',117,2,1),(1963,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','50.0','50.0',117,2,1),(1964,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','96','96',117,2,1),(1965,NULL,NULL,'Second_page/Patient_BP','group','0','0',117,2,1),(1966,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',117,2,1),(1967,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',117,2,1),(1968,NULL,NULL,'Second_page/temperature','group','0','0',117,2,1),(1969,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',117,2,1),(1970,NULL,NULL,'Second_page/respiratory','group','0','0',117,2,1),(1971,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',117,2,1),(1972,NULL,NULL,'Fourth_page','group','9','9',117,2,1),(1973,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',117,2,1),(1974,NULL,NULL,'Fourth_page/color','group','0','0',117,2,1),(1975,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',117,2,1),(1976,NULL,NULL,'Fourth_page/consciousness','group','0','0',117,2,1),(1977,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',117,2,1),(1978,NULL,NULL,'Fourth_page/edema','group','0','0',117,2,1),(1979,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','হ্যাঁ','2',117,2,1),(1980,NULL,NULL,'Fourth_page/dehydration','group','0','0',117,2,1),(1981,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',117,2,1),(1982,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000108','mpower_0002_000000000108',118,2,1),(1983,NULL,'রোগীর ওজন','Second_page','group','9','9',118,2,1),(1984,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','70.0','70.0',118,2,1),(1985,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','76','76',118,2,1),(1986,NULL,NULL,'Second_page/Patient_BP','group','0','0',118,2,1),(1987,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',118,2,1),(1988,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','60','60',118,2,1),(1989,NULL,NULL,'Second_page/temperature','group','0','0',118,2,1),(1990,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',118,2,1),(1991,NULL,NULL,'Second_page/respiratory','group','0','0',118,2,1),(1992,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',118,2,1),(1993,NULL,NULL,'Fourth_page','group','9','9',118,2,1),(1994,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',118,2,1),(1995,NULL,NULL,'Fourth_page/color','group','0','0',118,2,1),(1996,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',118,2,1),(1997,NULL,NULL,'Fourth_page/consciousness','group','0','0',118,2,1),(1998,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',118,2,1),(1999,NULL,NULL,'Fourth_page/edema','group','0','0',118,2,1),(2000,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',118,2,1),(2001,NULL,NULL,'Fourth_page/dehydration','group','0','0',118,2,1),(2002,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',118,2,1),(2003,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000106','mpower_0002_000000000106',119,2,1),(2004,NULL,'রোগীর ওজন','Second_page','group','9','9',119,2,1),(2005,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','70.0','70.0',119,2,1),(2006,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','76','76',119,2,1),(2007,NULL,NULL,'Second_page/Patient_BP','group','0','0',119,2,1),(2008,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',119,2,1),(2009,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',119,2,1),(2010,NULL,NULL,'Second_page/temperature','group','0','0',119,2,1),(2011,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','80.0','80.0',119,2,1),(2012,NULL,NULL,'Second_page/respiratory','group','0','0',119,2,1),(2013,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',119,2,1),(2014,NULL,NULL,'Fourth_page','group','9','9',119,2,1),(2015,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','খুব অসুস্থ','3',119,2,1),(2016,NULL,NULL,'Fourth_page/color','group','0','0',119,2,1),(2017,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',119,2,1),(2018,NULL,NULL,'Fourth_page/consciousness','group','0','0',119,2,1),(2019,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',119,2,1),(2020,NULL,NULL,'Fourth_page/edema','group','0','0',119,2,1),(2021,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',119,2,1),(2022,NULL,NULL,'Fourth_page/dehydration','group','0','0',119,2,1),(2023,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',119,2,1),(2024,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000120','mpower_0002_000000000120',120,2,1),(2025,NULL,'রোগীর ওজন','Second_page','group','9','9',120,2,1),(2026,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','56.0','56.0',120,2,1),(2027,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','54','54',120,2,1),(2028,NULL,NULL,'Second_page/Patient_BP','group','0','0',120,2,1),(2029,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',120,2,1),(2030,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',120,2,1),(2031,NULL,NULL,'Second_page/temperature','group','0','0',120,2,1),(2032,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',120,2,1),(2033,NULL,NULL,'Second_page/respiratory','group','0','0',120,2,1),(2034,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',120,2,1),(2035,NULL,NULL,'Fourth_page','group','9','9',120,2,1),(2036,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','খুব অসুস্থ','3',120,2,1),(2037,NULL,NULL,'Fourth_page/color','group','0','0',120,2,1),(2038,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',120,2,1),(2039,NULL,NULL,'Fourth_page/consciousness','group','0','0',120,2,1),(2040,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',120,2,1),(2041,NULL,NULL,'Fourth_page/edema','group','0','0',120,2,1),(2042,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',120,2,1),(2043,NULL,NULL,'Fourth_page/dehydration','group','0','0',120,2,1),(2044,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',120,2,1),(2045,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000042','mpower_0002_000000000042',121,2,1),(2046,NULL,'রোগীর ওজন','Second_page','group','9','9',121,2,1),(2047,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','45.0','45.0',121,2,1),(2048,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','75','75',121,2,1),(2049,NULL,NULL,'Second_page/Patient_BP','group','0','0',121,2,1),(2050,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','140','140',121,2,1),(2051,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','90','90',121,2,1),(2052,NULL,NULL,'Second_page/temperature','group','0','0',121,2,1),(2053,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',121,2,1),(2054,NULL,NULL,'Second_page/respiratory','group','0','0',121,2,1),(2055,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',121,2,1),(2056,NULL,NULL,'Fourth_page','group','9','9',121,2,1),(2057,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',121,2,1),(2058,NULL,NULL,'Fourth_page/color','group','0','0',121,2,1),(2059,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',121,2,1),(2060,NULL,NULL,'Fourth_page/consciousness','group','0','0',121,2,1),(2061,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',121,2,1),(2062,NULL,NULL,'Fourth_page/edema','group','0','0',121,2,1),(2063,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',121,2,1),(2064,NULL,NULL,'Fourth_page/dehydration','group','0','0',121,2,1),(2065,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',121,2,1),(2066,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000024','mpower_0002_000000000024',122,2,1),(2067,NULL,'রোগীর ওজন','Second_page','group','9','9',122,2,1),(2068,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','45.0','45.0',122,2,1),(2069,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','77','77',122,2,1),(2070,NULL,NULL,'Second_page/Patient_BP','group','0','0',122,2,1),(2071,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','140','140',122,2,1),(2072,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','90','90',122,2,1),(2073,NULL,NULL,'Second_page/temperature','group','0','0',122,2,1),(2074,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','99.0','99.0',122,2,1),(2075,NULL,NULL,'Second_page/respiratory','group','0','0',122,2,1),(2076,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',122,2,1),(2077,NULL,NULL,'Fourth_page','group','9','9',122,2,1),(2078,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',122,2,1),(2079,NULL,NULL,'Fourth_page/color','group','0','0',122,2,1),(2080,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',122,2,1),(2081,NULL,NULL,'Fourth_page/consciousness','group','0','0',122,2,1),(2082,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',122,2,1),(2083,NULL,NULL,'Fourth_page/edema','group','0','0',122,2,1),(2084,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',122,2,1),(2085,NULL,NULL,'Fourth_page/dehydration','group','0','0',122,2,1),(2086,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',122,2,1),(2087,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000033','mpower_0002_000000000033',123,2,1),(2088,NULL,'রোগীর ওজন','Second_page','group','9','9',123,2,1),(2089,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',123,2,1),(2090,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','45','45',123,2,1),(2091,NULL,NULL,'Second_page/Patient_BP','group','0','0',123,2,1),(2092,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',123,2,1),(2093,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',123,2,1),(2094,NULL,NULL,'Second_page/temperature','group','0','0',123,2,1),(2095,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',123,2,1),(2096,NULL,NULL,'Second_page/respiratory','group','0','0',123,2,1),(2097,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',123,2,1),(2098,NULL,NULL,'Fourth_page','group','9','9',123,2,1),(2099,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',123,2,1),(2100,NULL,NULL,'Fourth_page/color','group','0','0',123,2,1),(2101,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',123,2,1),(2102,NULL,NULL,'Fourth_page/consciousness','group','0','0',123,2,1),(2103,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',123,2,1),(2104,NULL,NULL,'Fourth_page/edema','group','0','0',123,2,1),(2105,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',123,2,1),(2106,NULL,NULL,'Fourth_page/dehydration','group','0','0',123,2,1),(2107,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',123,2,1),(2108,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000150','mpower_0002_000000000150',124,2,1),(2109,NULL,'রোগীর ওজন','Second_page','group','9','9',124,2,1),(2110,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',124,2,1),(2111,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','86','86',124,2,1),(2112,NULL,NULL,'Second_page/Patient_BP','group','0','0',124,2,1),(2113,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','150','150',124,2,1),(2114,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','90','90',124,2,1),(2115,NULL,NULL,'Second_page/temperature','group','0','0',124,2,1),(2116,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','101.0','101.0',124,2,1),(2117,NULL,NULL,'Second_page/respiratory','group','0','0',124,2,1),(2118,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',124,2,1),(2119,NULL,NULL,'Fourth_page','group','9','9',124,2,1),(2120,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',124,2,1),(2121,NULL,NULL,'Fourth_page/color','group','0','0',124,2,1),(2122,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',124,2,1),(2123,NULL,NULL,'Fourth_page/consciousness','group','0','0',124,2,1),(2124,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',124,2,1),(2125,NULL,NULL,'Fourth_page/edema','group','0','0',124,2,1),(2126,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','হ্যাঁ','2',124,2,1),(2127,NULL,NULL,'Fourth_page/dehydration','group','0','0',124,2,1),(2128,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',124,2,1),(2129,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000033','mpower_0002_000000000033',125,2,1),(2130,NULL,'রোগীর ওজন','Second_page','group','9','9',125,2,1),(2131,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','65.0','65.0',125,2,1),(2132,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','75','75',125,2,1),(2133,NULL,NULL,'Second_page/Patient_BP','group','0','0',125,2,1),(2134,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',125,2,1),(2135,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',125,2,1),(2136,NULL,NULL,'Second_page/temperature','group','0','0',125,2,1),(2137,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',125,2,1),(2138,NULL,NULL,'Second_page/respiratory','group','0','0',125,2,1),(2139,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',125,2,1),(2140,NULL,NULL,'Fourth_page','group','9','9',125,2,1),(2141,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','খুব অসুস্থ','3',125,2,1),(2142,NULL,NULL,'Fourth_page/color','group','0','0',125,2,1),(2143,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',125,2,1),(2144,NULL,NULL,'Fourth_page/consciousness','group','0','0',125,2,1),(2145,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',125,2,1),(2146,NULL,NULL,'Fourth_page/edema','group','0','0',125,2,1),(2147,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',125,2,1),(2148,NULL,NULL,'Fourth_page/dehydration','group','0','0',125,2,1),(2149,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',125,2,1),(2150,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398097899964.jpg','1398097899964.jpg',126,1,1),(2151,NULL,NULL,'firstPage','group','3','3',126,1,1),(2152,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Josna','Josna',126,1,1),(2153,NULL,NULL,'firstPage/mobile','group','0','0',126,1,1),(2154,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01724968467','01724968467',126,1,1),(2155,NULL,'রোগীর বয়স','SecondPage','group','5','5',126,1,1),(2156,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,126,1,1),(2157,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','55','55',126,1,1),(2158,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','0','0',126,1,1),(2159,NULL,NULL,'SecondPage/gender','group','0','0',126,1,1),(2160,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',126,1,1),(2161,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000096','mpower_0002_000000000096',126,1,1),(2162,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398098177354.jpg','1398098177354.jpg',127,1,1),(2163,NULL,NULL,'firstPage','group','3','3',127,1,1),(2164,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Shafiulla','Shafiulla',127,1,1),(2165,NULL,NULL,'firstPage/mobile','group','0','0',127,1,1),(2166,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01912816322','01912816322',127,1,1),(2167,NULL,'রোগীর বয়স','SecondPage','group','5','5',127,1,1),(2168,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,127,1,1),(2169,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','14','14',127,1,1),(2170,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','6','6',127,1,1),(2171,NULL,NULL,'SecondPage/gender','group','0','0',127,1,1),(2172,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',127,1,1),(2173,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000094','mpower_0002_000000000094',127,1,1),(2174,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398098514331.jpg','1398098514331.jpg',128,1,1),(2175,NULL,NULL,'firstPage','group','3','3',128,1,1),(2176,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','SHohel','SHohel',128,1,1),(2177,NULL,NULL,'firstPage/mobile','group','0','0',128,1,1),(2178,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01721405066','01721405066',128,1,1),(2179,NULL,'রোগীর বয়স','SecondPage','group','5','5',128,1,1),(2180,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,128,1,1),(2181,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','35','35',128,1,1),(2182,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,128,1,1),(2183,NULL,NULL,'SecondPage/gender','group','0','0',128,1,1),(2184,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',128,1,1),(2185,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000111','mpower_0002_000000000111',128,1,1),(2186,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398099296487.jpg','1398099296487.jpg',129,1,1),(2187,NULL,NULL,'firstPage','group','3','3',129,1,1),(2188,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Mustafa Kamal','Mustafa Kamal',129,1,1),(2189,NULL,NULL,'firstPage/mobile','group','0','0',129,1,1),(2190,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01715091051','01715091051',129,1,1),(2191,NULL,'রোগীর বয়স','SecondPage','group','5','5',129,1,1),(2192,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,129,1,1),(2193,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','49','49',129,1,1),(2194,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','5','5',129,1,1),(2195,NULL,NULL,'SecondPage/gender','group','0','0',129,1,1),(2196,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',129,1,1),(2197,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000140','mpower_0002_000000000140',129,1,1),(2198,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398099209549.jpg','1398099209549.jpg',130,1,1),(2199,NULL,NULL,'firstPage','group','3','3',130,1,1),(2200,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Jobada','Jobada',130,1,1),(2201,NULL,NULL,'firstPage/mobile','group','0','0',130,1,1),(2202,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01949197100','01949197100',130,1,1),(2203,NULL,'রোগীর বয়স','SecondPage','group','5','5',130,1,1),(2204,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,130,1,1),(2205,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','55','55',130,1,1),(2206,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,130,1,1),(2207,NULL,NULL,'SecondPage/gender','group','0','0',130,1,1),(2208,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',130,1,1),(2209,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000105','mpower_0002_000000000105',130,1,1),(2210,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398099808623.jpg','1398099808623.jpg',131,1,1),(2211,NULL,NULL,'firstPage','group','3','3',131,1,1),(2212,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Helal Mia','Helal Mia',131,1,1),(2213,NULL,NULL,'firstPage/mobile','group','0','0',131,1,1),(2214,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01723276545','01723276545',131,1,1),(2215,NULL,'রোগীর বয়স','SecondPage','group','5','5',131,1,1),(2216,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,131,1,1),(2217,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','45','45',131,1,1),(2218,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,131,1,1),(2219,NULL,NULL,'SecondPage/gender','group','0','0',131,1,1),(2220,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',131,1,1),(2221,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000144','mpower_0002_000000000144',131,1,1),(2222,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398100010706.jpg','1398100010706.jpg',132,1,1),(2223,NULL,NULL,'firstPage','group','3','3',132,1,1),(2224,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Kamal khan','Kamal khan',132,1,1),(2225,NULL,NULL,'firstPage/mobile','group','0','0',132,1,1),(2226,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01718329904','01718329904',132,1,1),(2227,NULL,'রোগীর বয়স','SecondPage','group','5','5',132,1,1),(2228,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,132,1,1),(2229,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','45','45',132,1,1),(2230,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,132,1,1),(2231,NULL,NULL,'SecondPage/gender','group','0','0',132,1,1),(2232,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',132,1,1),(2233,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000027','mpower_0002_000000000027',132,1,1),(2234,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398099894092.jpg','1398099894092.jpg',133,1,1),(2235,NULL,NULL,'firstPage','group','3','3',133,1,1),(2236,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Rebaka','Rebaka',133,1,1),(2237,NULL,NULL,'firstPage/mobile','group','0','0',133,1,1),(2238,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01740936169','01740936169',133,1,1),(2239,NULL,'রোগীর বয়স','SecondPage','group','5','5',133,1,1),(2240,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,133,1,1),(2241,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','42','42',133,1,1),(2242,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','5','5',133,1,1),(2243,NULL,NULL,'SecondPage/gender','group','0','0',133,1,1),(2244,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',133,1,1),(2245,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000141','mpower_0002_000000000141',133,1,1),(2246,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398100663010.jpg','1398100663010.jpg',134,1,1),(2247,NULL,NULL,'firstPage','group','3','3',134,1,1),(2248,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Shammi akter','Shammi akter',134,1,1),(2249,NULL,NULL,'firstPage/mobile','group','0','0',134,1,1),(2250,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01915886877','01915886877',134,1,1),(2251,NULL,'রোগীর বয়স','SecondPage','group','5','5',134,1,1),(2252,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,134,1,1),(2253,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','35','35',134,1,1),(2254,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,134,1,1),(2255,NULL,NULL,'SecondPage/gender','group','0','0',134,1,1),(2256,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',134,1,1),(2257,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000091','mpower_0002_000000000091',134,1,1),(2258,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398100814116.jpg','1398100814116.jpg',135,1,1),(2259,NULL,NULL,'firstPage','group','3','3',135,1,1),(2260,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Mamod ali','Mamod ali',135,1,1),(2261,NULL,NULL,'firstPage/mobile','group','0','0',135,1,1),(2262,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01736015280','01736015280',135,1,1),(2263,NULL,'রোগীর বয়স','SecondPage','group','5','5',135,1,1),(2264,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,135,1,1),(2265,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','45','45',135,1,1),(2266,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','5','5',135,1,1),(2267,NULL,NULL,'SecondPage/gender','group','0','0',135,1,1),(2268,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',135,1,1),(2269,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','RMPtest1:rmptest1','RMPtest1:rmptest1',135,1,1),(2270,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398111848096.jpg','1398111848096.jpg',136,1,1),(2271,NULL,NULL,'firstPage','group','3','3',136,1,1),(2272,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Roton','Roton',136,1,1),(2273,NULL,NULL,'firstPage/mobile','group','0','0',136,1,1),(2274,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01772640055','01772640055',136,1,1),(2275,NULL,'রোগীর বয়স','SecondPage','group','5','5',136,1,1),(2276,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,136,1,1),(2277,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','28','28',136,1,1),(2278,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','0','0',136,1,1),(2279,NULL,NULL,'SecondPage/gender','group','0','0',136,1,1),(2280,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',136,1,1),(2281,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000147','mpower_0002_000000000147',136,1,1),(2282,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398112603778.jpg','1398112603778.jpg',137,1,1),(2283,NULL,NULL,'firstPage','group','3','3',137,1,1),(2284,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Rove','Rove',137,1,1),(2285,NULL,NULL,'firstPage/mobile','group','0','0',137,1,1),(2286,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01912371498','01912371498',137,1,1),(2287,NULL,'রোগীর বয়স','SecondPage','group','5','5',137,1,1),(2288,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,137,1,1),(2289,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','50','50',137,1,1),(2290,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','0','0',137,1,1),(2291,NULL,NULL,'SecondPage/gender','group','0','0',137,1,1),(2292,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',137,1,1),(2293,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000137','mpower_0002_000000000137',137,1,1),(2294,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000094','mpower_0002_000000000094',138,2,1),(2295,NULL,'রোগীর ওজন','Second_page','group','9','9',138,2,1),(2296,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','96.0','96.0',138,2,1),(2297,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','90','90',138,2,1),(2298,NULL,NULL,'Second_page/Patient_BP','group','0','0',138,2,1),(2299,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','125','125',138,2,1),(2300,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',138,2,1),(2301,NULL,NULL,'Second_page/temperature','group','0','0',138,2,1),(2302,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',138,2,1),(2303,NULL,NULL,'Second_page/respiratory','group','0','0',138,2,1),(2304,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',138,2,1),(2305,NULL,NULL,'Fourth_page','group','9','9',138,2,1),(2306,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',138,2,1),(2307,NULL,NULL,'Fourth_page/color','group','0','0',138,2,1),(2308,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',138,2,1),(2309,NULL,NULL,'Fourth_page/consciousness','group','0','0',138,2,1),(2310,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',138,2,1),(2311,NULL,NULL,'Fourth_page/edema','group','0','0',138,2,1),(2312,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','হ্যাঁ','2',138,2,1),(2313,NULL,NULL,'Fourth_page/dehydration','group','0','0',138,2,1),(2314,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',138,2,1),(2315,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000129','mpower_0002_000000000129',139,2,1),(2316,NULL,'রোগীর ওজন','Second_page','group','9','9',139,2,1),(2317,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','50.0','50.0',139,2,1),(2318,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','75','75',139,2,1),(2319,NULL,NULL,'Second_page/Patient_BP','group','0','0',139,2,1),(2320,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',139,2,1),(2321,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',139,2,1),(2322,NULL,NULL,'Second_page/temperature','group','0','0',139,2,1),(2323,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',139,2,1),(2324,NULL,NULL,'Second_page/respiratory','group','0','0',139,2,1),(2325,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',139,2,1),(2326,NULL,NULL,'Fourth_page','group','9','9',139,2,1),(2327,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',139,2,1),(2328,NULL,NULL,'Fourth_page/color','group','0','0',139,2,1),(2329,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',139,2,1),(2330,NULL,NULL,'Fourth_page/consciousness','group','0','0',139,2,1),(2331,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',139,2,1),(2332,NULL,NULL,'Fourth_page/edema','group','0','0',139,2,1),(2333,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',139,2,1),(2334,NULL,NULL,'Fourth_page/dehydration','group','0','0',139,2,1),(2335,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',139,2,1),(2336,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','RMPtest3:rmptest3','RMPtest3:rmptest3',140,2,1),(2337,NULL,'রোগীর ওজন','Second_page','group','9','9',140,2,1),(2338,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',140,2,1),(2339,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','65','65',140,2,1),(2340,NULL,NULL,'Second_page/Patient_BP','group','0','0',140,2,1),(2341,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','110','110',140,2,1),(2342,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','70','70',140,2,1),(2343,NULL,NULL,'Second_page/temperature','group','0','0',140,2,1),(2344,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',140,2,1),(2345,NULL,NULL,'Second_page/respiratory','group','0','0',140,2,1),(2346,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',140,2,1),(2347,NULL,NULL,'Fourth_page','group','9','9',140,2,1),(2348,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',140,2,1),(2349,NULL,NULL,'Fourth_page/color','group','0','0',140,2,1),(2350,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',140,2,1),(2351,NULL,NULL,'Fourth_page/consciousness','group','0','0',140,2,1),(2352,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',140,2,1),(2353,NULL,NULL,'Fourth_page/edema','group','0','0',140,2,1),(2354,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',140,2,1),(2355,NULL,NULL,'Fourth_page/dehydration','group','0','0',140,2,1),(2356,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',140,2,1),(2357,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','RMPtest1:rmptest1','RMPtest1:rmptest1',141,2,1),(2358,NULL,'রোগীর ওজন','Second_page','group','9','9',141,2,1),(2359,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','50.0','50.0',141,2,1),(2360,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','75','75',141,2,1),(2361,NULL,NULL,'Second_page/Patient_BP','group','0','0',141,2,1),(2362,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',141,2,1),(2363,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',141,2,1),(2364,NULL,NULL,'Second_page/temperature','group','0','0',141,2,1),(2365,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',141,2,1),(2366,NULL,NULL,'Second_page/respiratory','group','0','0',141,2,1),(2367,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',141,2,1),(2368,NULL,NULL,'Fourth_page','group','9','9',141,2,1),(2369,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',141,2,1),(2370,NULL,NULL,'Fourth_page/color','group','0','0',141,2,1),(2371,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',141,2,1),(2372,NULL,NULL,'Fourth_page/consciousness','group','0','0',141,2,1),(2373,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',141,2,1),(2374,NULL,NULL,'Fourth_page/edema','group','0','0',141,2,1),(2375,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',141,2,1),(2376,NULL,NULL,'Fourth_page/dehydration','group','0','0',141,2,1),(2377,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',141,2,1),(2378,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398103757837.jpg','1398103757837.jpg',142,1,1),(2379,NULL,NULL,'firstPage','group','3','3',142,1,1),(2380,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Eycin','Eycin',142,1,1),(2381,NULL,NULL,'firstPage/mobile','group','0','0',142,1,1),(2382,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01989228530','01989228530',142,1,1),(2383,NULL,'রোগীর বয়স','SecondPage','group','5','5',142,1,1),(2384,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,142,1,1),(2385,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','8','8',142,1,1),(2386,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','11','11',142,1,1),(2387,NULL,NULL,'SecondPage/gender','group','0','0',142,1,1),(2388,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',142,1,1),(2389,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000139','mpower_0002_000000000139',142,1,1),(2390,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000024','mpower_0002_000000000024',143,2,1),(2391,NULL,'রোগীর ওজন','Second_page','group','9','9',143,2,1),(2392,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','50.0','50.0',143,2,1),(2393,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','86','86',143,2,1),(2394,NULL,NULL,'Second_page/Patient_BP','group','0','0',143,2,1),(2395,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',143,2,1),(2396,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',143,2,1),(2397,NULL,NULL,'Second_page/temperature','group','0','0',143,2,1),(2398,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','102.0','102.0',143,2,1),(2399,NULL,NULL,'Second_page/respiratory','group','0','0',143,2,1),(2400,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',143,2,1),(2401,NULL,NULL,'Fourth_page','group','9','9',143,2,1),(2402,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',143,2,1),(2403,NULL,NULL,'Fourth_page/color','group','0','0',143,2,1),(2404,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',143,2,1),(2405,NULL,NULL,'Fourth_page/consciousness','group','0','0',143,2,1),(2406,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',143,2,1),(2407,NULL,NULL,'Fourth_page/edema','group','0','0',143,2,1),(2408,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','হ্যাঁ','2',143,2,1),(2409,NULL,NULL,'Fourth_page/dehydration','group','0','0',143,2,1),(2410,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',143,2,1),(2411,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000139','mpower_0002_000000000139',144,2,1),(2412,NULL,'রোগীর ওজন','Second_page','group','9','9',144,2,1),(2413,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','20.0','20.0',144,2,1),(2414,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','100','100',144,2,1),(2415,NULL,NULL,'Second_page/Patient_BP','group','0','0',144,2,1),(2416,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','100','100',144,2,1),(2417,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','60','60',144,2,1),(2418,NULL,NULL,'Second_page/temperature','group','0','0',144,2,1),(2419,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','99.0','99.0',144,2,1),(2420,NULL,NULL,'Second_page/respiratory','group','0','0',144,2,1),(2421,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',144,2,1),(2422,NULL,NULL,'Fourth_page','group','9','9',144,2,1),(2423,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',144,2,1),(2424,NULL,NULL,'Fourth_page/color','group','0','0',144,2,1),(2425,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',144,2,1),(2426,NULL,NULL,'Fourth_page/consciousness','group','0','0',144,2,1),(2427,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',144,2,1),(2428,NULL,NULL,'Fourth_page/edema','group','0','0',144,2,1),(2429,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',144,2,1),(2430,NULL,NULL,'Fourth_page/dehydration','group','0','0',144,2,1),(2431,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',144,2,1),(2432,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398100834687.jpg','1398100834687.jpg',145,1,1),(2433,NULL,NULL,'firstPage','group','3','3',145,1,1),(2434,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Salim khan','Salim khan',145,1,1),(2435,NULL,NULL,'firstPage/mobile','group','0','0',145,1,1),(2436,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01718525352','01718525352',145,1,1),(2437,NULL,'রোগীর বয়স','SecondPage','group','5','5',145,1,1),(2438,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,145,1,1),(2439,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','35','35',145,1,1),(2440,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,145,1,1),(2441,NULL,NULL,'SecondPage/gender','group','0','0',145,1,1),(2442,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',145,1,1),(2443,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000036','mpower_0002_000000000036',145,1,1),(2444,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000027','mpower_0002_000000000027',146,2,1),(2445,NULL,'রোগীর ওজন','Second_page','group','9','9',146,2,1),(2446,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',146,2,1),(2447,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','65','65',146,2,1),(2448,NULL,NULL,'Second_page/Patient_BP','group','0','0',146,2,1),(2449,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','110','110',146,2,1),(2450,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','70','70',146,2,1),(2451,NULL,NULL,'Second_page/temperature','group','0','0',146,2,1),(2452,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',146,2,1),(2453,NULL,NULL,'Second_page/respiratory','group','0','0',146,2,1),(2454,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',146,2,1),(2455,NULL,NULL,'Fourth_page','group','9','9',146,2,1),(2456,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',146,2,1),(2457,NULL,NULL,'Fourth_page/color','group','0','0',146,2,1),(2458,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',146,2,1),(2459,NULL,NULL,'Fourth_page/consciousness','group','0','0',146,2,1),(2460,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',146,2,1),(2461,NULL,NULL,'Fourth_page/edema','group','0','0',146,2,1),(2462,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',146,2,1),(2463,NULL,NULL,'Fourth_page/dehydration','group','0','0',146,2,1),(2464,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',146,2,1),(2465,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000105','mpower_0002_000000000105',147,2,1),(2466,NULL,'রোগীর ওজন','Second_page','group','9','9',147,2,1),(2467,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','50.0','50.0',147,2,1),(2468,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','70','70',147,2,1),(2469,NULL,NULL,'Second_page/Patient_BP','group','0','0',147,2,1),(2470,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','110','110',147,2,1),(2471,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',147,2,1),(2472,NULL,NULL,'Second_page/temperature','group','0','0',147,2,1),(2473,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',147,2,1),(2474,NULL,NULL,'Second_page/respiratory','group','0','0',147,2,1),(2475,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',147,2,1),(2476,NULL,NULL,'Fourth_page','group','9','9',147,2,1),(2477,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',147,2,1),(2478,NULL,NULL,'Fourth_page/color','group','0','0',147,2,1),(2479,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',147,2,1),(2480,NULL,NULL,'Fourth_page/consciousness','group','0','0',147,2,1),(2481,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',147,2,1),(2482,NULL,NULL,'Fourth_page/edema','group','0','0',147,2,1),(2483,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',147,2,1),(2484,NULL,NULL,'Fourth_page/dehydration','group','0','0',147,2,1),(2485,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',147,2,1),(2486,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000091','mpower_0002_000000000091',148,2,1),(2487,NULL,'রোগীর ওজন','Second_page','group','9','9',148,2,1),(2488,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','50.0','50.0',148,2,1),(2489,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','88','88',148,2,1),(2490,NULL,NULL,'Second_page/Patient_BP','group','0','0',148,2,1),(2491,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',148,2,1),(2492,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',148,2,1),(2493,NULL,NULL,'Second_page/temperature','group','0','0',148,2,1),(2494,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','99.0','99.0',148,2,1),(2495,NULL,NULL,'Second_page/respiratory','group','0','0',148,2,1),(2496,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',148,2,1),(2497,NULL,NULL,'Fourth_page','group','9','9',148,2,1),(2498,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',148,2,1),(2499,NULL,NULL,'Fourth_page/color','group','0','0',148,2,1),(2500,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',148,2,1),(2501,NULL,NULL,'Fourth_page/consciousness','group','0','0',148,2,1),(2502,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',148,2,1),(2503,NULL,NULL,'Fourth_page/edema','group','0','0',148,2,1),(2504,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',148,2,1),(2505,NULL,NULL,'Fourth_page/dehydration','group','0','0',148,2,1),(2506,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',148,2,1),(2507,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000030','mpower_0002_000000000030',149,2,1),(2508,NULL,'রোগীর ওজন','Second_page','group','9','9',149,2,1),(2509,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','58.0','58.0',149,2,1),(2510,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','68','68',149,2,1),(2511,NULL,NULL,'Second_page/Patient_BP','group','0','0',149,2,1),(2512,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',149,2,1),(2513,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','90','90',149,2,1),(2514,NULL,NULL,'Second_page/temperature','group','0','0',149,2,1),(2515,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',149,2,1),(2516,NULL,NULL,'Second_page/respiratory','group','0','0',149,2,1),(2517,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',149,2,1),(2518,NULL,NULL,'Fourth_page','group','9','9',149,2,1),(2519,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',149,2,1),(2520,NULL,NULL,'Fourth_page/color','group','0','0',149,2,1),(2521,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',149,2,1),(2522,NULL,NULL,'Fourth_page/consciousness','group','0','0',149,2,1),(2523,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',149,2,1),(2524,NULL,NULL,'Fourth_page/edema','group','0','0',149,2,1),(2525,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',149,2,1),(2526,NULL,NULL,'Fourth_page/dehydration','group','0','0',149,2,1),(2527,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',149,2,1),(2528,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000024','mpower_0002_000000000024',150,2,1),(2529,NULL,'রোগীর ওজন','Second_page','group','9','9',150,2,1),(2530,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','58.0','58.0',150,2,1),(2531,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','89','89',150,2,1),(2532,NULL,NULL,'Second_page/Patient_BP','group','0','0',150,2,1),(2533,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','130','130',150,2,1),(2534,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','90','90',150,2,1),(2535,NULL,NULL,'Second_page/temperature','group','0','0',150,2,1),(2536,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','99.0','99.0',150,2,1),(2537,NULL,NULL,'Second_page/respiratory','group','0','0',150,2,1),(2538,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',150,2,1),(2539,NULL,NULL,'Fourth_page','group','9','9',150,2,1),(2540,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',150,2,1),(2541,NULL,NULL,'Fourth_page/color','group','0','0',150,2,1),(2542,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',150,2,1),(2543,NULL,NULL,'Fourth_page/consciousness','group','0','0',150,2,1),(2544,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',150,2,1),(2545,NULL,NULL,'Fourth_page/edema','group','0','0',150,2,1),(2546,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',150,2,1),(2547,NULL,NULL,'Fourth_page/dehydration','group','0','0',150,2,1),(2548,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',150,2,1),(2549,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398162517268.jpg','1398162517268.jpg',151,1,1),(2550,NULL,NULL,'firstPage','group','3','3',151,1,1),(2551,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Amd','Amd',151,1,1),(2552,NULL,NULL,'firstPage/mobile','group','0','0',151,1,1),(2553,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01715666777','01715666777',151,1,1),(2554,NULL,'রোগীর বয়স','SecondPage','group','5','5',151,1,1),(2555,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,151,1,1),(2556,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','25','25',151,1,1),(2557,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,151,1,1),(2558,NULL,NULL,'SecondPage/gender','group','0','0',151,1,1),(2559,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',151,1,1),(2560,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000047','mpower_0002_000000000047',151,1,1),(2561,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000047','mpower_0002_000000000047',152,2,1),(2562,NULL,'রোগীর ওজন','Second_page','group','9','9',152,2,1),(2563,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',152,2,1),(2564,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','65','65',152,2,1),(2565,NULL,NULL,'Second_page/Patient_BP','group','0','0',152,2,1),(2566,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','110','110',152,2,1),(2567,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',152,2,1),(2568,NULL,NULL,'Second_page/temperature','group','0','0',152,2,1),(2569,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',152,2,1),(2570,NULL,NULL,'Second_page/respiratory','group','0','0',152,2,1),(2571,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',152,2,1),(2572,NULL,NULL,'Fourth_page','group','9','9',152,2,1),(2573,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',152,2,1),(2574,NULL,NULL,'Fourth_page/color','group','0','0',152,2,1),(2575,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',152,2,1),(2576,NULL,NULL,'Fourth_page/consciousness','group','0','0',152,2,1),(2577,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',152,2,1),(2578,NULL,NULL,'Fourth_page/edema','group','0','0',152,2,1),(2579,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',152,2,1),(2580,NULL,NULL,'Fourth_page/dehydration','group','0','0',152,2,1),(2581,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',152,2,1),(2582,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398165926937.jpg','1398165926937.jpg',153,1,1),(2583,NULL,NULL,'firstPage','group','3','3',153,1,1),(2584,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Aminu l','Aminu l',153,1,1),(2585,NULL,NULL,'firstPage/mobile','group','0','0',153,1,1),(2586,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01721405066','01721405066',153,1,1),(2587,NULL,'রোগীর বয়স','SecondPage','group','5','5',153,1,1),(2588,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,153,1,1),(2589,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','30','30',153,1,1),(2590,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','0','0',153,1,1),(2591,NULL,NULL,'SecondPage/gender','group','0','0',153,1,1),(2592,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',153,1,1),(2593,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000022','mpower_0002_000000000022',153,1,1),(2594,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000137','mpower_0002_000000000137',154,2,1),(2595,NULL,'রোগীর ওজন','Second_page','group','9','9',154,2,1),(2596,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','50.0','50.0',154,2,1),(2597,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','76','76',154,2,1),(2598,NULL,NULL,'Second_page/Patient_BP','group','0','0',154,2,1),(2599,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','140','140',154,2,1),(2600,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','90','90',154,2,1),(2601,NULL,NULL,'Second_page/temperature','group','0','0',154,2,1),(2602,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','99.0','99.0',154,2,1),(2603,NULL,NULL,'Second_page/respiratory','group','0','0',154,2,1),(2604,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',154,2,1),(2605,NULL,NULL,'Fourth_page','group','9','9',154,2,1),(2606,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',154,2,1),(2607,NULL,NULL,'Fourth_page/color','group','0','0',154,2,1),(2608,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',154,2,1),(2609,NULL,NULL,'Fourth_page/consciousness','group','0','0',154,2,1),(2610,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',154,2,1),(2611,NULL,NULL,'Fourth_page/edema','group','0','0',154,2,1),(2612,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','হ্যাঁ','2',154,2,1),(2613,NULL,NULL,'Fourth_page/dehydration','group','0','0',154,2,1),(2614,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',154,2,1),(2615,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398166566867.jpg','1398166566867.jpg',155,1,1),(2616,NULL,NULL,'firstPage','group','3','3',155,1,1),(2617,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Shammi','Shammi',155,1,1),(2618,NULL,NULL,'firstPage/mobile','group','0','0',155,1,1),(2619,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01975759759','01975759759',155,1,1),(2620,NULL,'রোগীর বয়স','SecondPage','group','5','5',155,1,1),(2621,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,155,1,1),(2622,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','28','28',155,1,1),(2623,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','1','1',155,1,1),(2624,NULL,NULL,'SecondPage/gender','group','0','0',155,1,1),(2625,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',155,1,1),(2626,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000078','mpower_0002_000000000078',155,1,1),(2627,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398166455189.jpg','1398166455189.jpg',156,1,1),(2628,NULL,NULL,'firstPage','group','3','3',156,1,1),(2629,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Amin ','Amin ',156,1,1),(2630,NULL,NULL,'firstPage/mobile','group','0','0',156,1,1),(2631,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01715686786','01715686786',156,1,1),(2632,NULL,'রোগীর বয়স','SecondPage','group','5','5',156,1,1),(2633,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,156,1,1),(2634,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','25','25',156,1,1),(2635,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,156,1,1),(2636,NULL,NULL,'SecondPage/gender','group','0','0',156,1,1),(2637,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',156,1,1),(2638,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000038','mpower_0002_000000000038',156,1,1),(2639,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398166858946.jpg','1398166858946.jpg',157,1,1),(2640,NULL,NULL,'firstPage','group','3','3',157,1,1),(2641,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','shahin','shahin',157,1,1),(2642,NULL,NULL,'firstPage/mobile','group','0','0',157,1,1),(2643,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01717893915','01717893915',157,1,1),(2644,NULL,'রোগীর বয়স','SecondPage','group','5','5',157,1,1),(2645,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,157,1,1),(2646,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','45','45',157,1,1),(2647,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','6','6',157,1,1),(2648,NULL,NULL,'SecondPage/gender','group','0','0',157,1,1),(2649,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',157,1,1),(2650,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000067','mpower_0002_000000000067',157,1,1),(2651,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000078','mpower_0002_000000000078',158,2,1),(2652,NULL,'রোগীর ওজন','Second_page','group','9','9',158,2,1),(2653,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',158,2,1),(2654,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','96','96',158,2,1),(2655,NULL,NULL,'Second_page/Patient_BP','group','0','0',158,2,1),(2656,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',158,2,1),(2657,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',158,2,1),(2658,NULL,NULL,'Second_page/temperature','group','0','0',158,2,1),(2659,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',158,2,1),(2660,NULL,NULL,'Second_page/respiratory','group','0','0',158,2,1),(2661,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',158,2,1),(2662,NULL,NULL,'Fourth_page','group','9','9',158,2,1),(2663,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',158,2,1),(2664,NULL,NULL,'Fourth_page/color','group','0','0',158,2,1),(2665,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',158,2,1),(2666,NULL,NULL,'Fourth_page/consciousness','group','0','0',158,2,1),(2667,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',158,2,1),(2668,NULL,NULL,'Fourth_page/edema','group','0','0',158,2,1),(2669,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',158,2,1),(2670,NULL,NULL,'Fourth_page/dehydration','group','0','0',158,2,1),(2671,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',158,2,1),(2672,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000067','mpower_0002_000000000067',159,2,1),(2673,NULL,'রোগীর ওজন','Second_page','group','9','9',159,2,1),(2674,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','65.0','65.0',159,2,1),(2675,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','80','80',159,2,1),(2676,NULL,NULL,'Second_page/Patient_BP','group','0','0',159,2,1),(2677,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',159,2,1),(2678,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',159,2,1),(2679,NULL,NULL,'Second_page/temperature','group','0','0',159,2,1),(2680,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','100.0','100.0',159,2,1),(2681,NULL,NULL,'Second_page/respiratory','group','0','0',159,2,1),(2682,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',159,2,1),(2683,NULL,NULL,'Fourth_page','group','9','9',159,2,1),(2684,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',159,2,1),(2685,NULL,NULL,'Fourth_page/color','group','0','0',159,2,1),(2686,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',159,2,1),(2687,NULL,NULL,'Fourth_page/consciousness','group','0','0',159,2,1),(2688,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',159,2,1),(2689,NULL,NULL,'Fourth_page/edema','group','0','0',159,2,1),(2690,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',159,2,1),(2691,NULL,NULL,'Fourth_page/dehydration','group','0','0',159,2,1),(2692,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',159,2,1),(2693,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000038','mpower_0002_000000000038',160,2,1),(2694,NULL,'রোগীর ওজন','Second_page','group','9','9',160,2,1),(2695,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','80.0','80.0',160,2,1),(2696,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','76','76',160,2,1),(2697,NULL,NULL,'Second_page/Patient_BP','group','0','0',160,2,1),(2698,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',160,2,1),(2699,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','70','70',160,2,1),(2700,NULL,NULL,'Second_page/temperature','group','0','0',160,2,1),(2701,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','102.0','102.0',160,2,1),(2702,NULL,NULL,'Second_page/respiratory','group','0','0',160,2,1),(2703,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',160,2,1),(2704,NULL,NULL,'Fourth_page','group','9','9',160,2,1),(2705,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',160,2,1),(2706,NULL,NULL,'Fourth_page/color','group','0','0',160,2,1),(2707,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',160,2,1),(2708,NULL,NULL,'Fourth_page/consciousness','group','0','0',160,2,1),(2709,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',160,2,1),(2710,NULL,NULL,'Fourth_page/edema','group','0','0',160,2,1),(2711,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',160,2,1),(2712,NULL,NULL,'Fourth_page/dehydration','group','0','0',160,2,1),(2713,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',160,2,1),(2714,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398167957180.jpg','1398167957180.jpg',161,1,1),(2715,NULL,NULL,'firstPage','group','3','3',161,1,1),(2716,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Shamml ','Shamml ',161,1,1),(2717,NULL,NULL,'firstPage/mobile','group','0','0',161,1,1),(2718,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01975759759','01975759759',161,1,1),(2719,NULL,'রোগীর বয়স','SecondPage','group','5','5',161,1,1),(2720,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,161,1,1),(2721,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','28','28',161,1,1),(2722,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','0','0',161,1,1),(2723,NULL,NULL,'SecondPage/gender','group','0','0',161,1,1),(2724,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',161,1,1),(2725,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000116','mpower_0002_000000000116',161,1,1),(2726,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000116','mpower_0002_000000000116',162,2,1),(2727,NULL,'রোগীর ওজন','Second_page','group','9','9',162,2,1),(2728,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',162,2,1),(2729,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','76','76',162,2,1),(2730,NULL,NULL,'Second_page/Patient_BP','group','0','0',162,2,1),(2731,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','110','110',162,2,1),(2732,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','70','70',162,2,1),(2733,NULL,NULL,'Second_page/temperature','group','0','0',162,2,1),(2734,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','99.0','99.0',162,2,1),(2735,NULL,NULL,'Second_page/respiratory','group','0','0',162,2,1),(2736,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',162,2,1),(2737,NULL,NULL,'Fourth_page','group','9','9',162,2,1),(2738,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',162,2,1),(2739,NULL,NULL,'Fourth_page/color','group','0','0',162,2,1),(2740,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',162,2,1),(2741,NULL,NULL,'Fourth_page/consciousness','group','0','0',162,2,1),(2742,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',162,2,1),(2743,NULL,NULL,'Fourth_page/edema','group','0','0',162,2,1),(2744,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',162,2,1),(2745,NULL,NULL,'Fourth_page/dehydration','group','0','0',162,2,1),(2746,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',162,2,1),(2747,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000013','mpower_0002_000000000013',163,2,1),(2748,NULL,'রোগীর ওজন','Second_page','group','9','9',163,2,1),(2749,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','60.0','60.0',163,2,1),(2750,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','86','86',163,2,1),(2751,NULL,NULL,'Second_page/Patient_BP','group','0','0',163,2,1),(2752,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',163,2,1),(2753,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',163,2,1),(2754,NULL,NULL,'Second_page/temperature','group','0','0',163,2,1),(2755,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','102.0','102.0',163,2,1),(2756,NULL,NULL,'Second_page/respiratory','group','0','0',163,2,1),(2757,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',163,2,1),(2758,NULL,NULL,'Fourth_page','group','9','9',163,2,1),(2759,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',163,2,1),(2760,NULL,NULL,'Fourth_page/color','group','0','0',163,2,1),(2761,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',163,2,1),(2762,NULL,NULL,'Fourth_page/consciousness','group','0','0',163,2,1),(2763,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',163,2,1),(2764,NULL,NULL,'Fourth_page/edema','group','0','0',163,2,1),(2765,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',163,2,1),(2766,NULL,NULL,'Fourth_page/dehydration','group','0','0',163,2,1),(2767,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',163,2,1),(2768,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398168435916.jpg','1398168435916.jpg',164,1,1),(2769,NULL,NULL,'firstPage','group','3','3',164,1,1),(2770,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Ahmet','Ahmet',164,1,1),(2771,NULL,NULL,'firstPage/mobile','group','0','0',164,1,1),(2772,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01715666777','01715666777',164,1,1),(2773,NULL,'রোগীর বয়স','SecondPage','group','5','5',164,1,1),(2774,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,164,1,1),(2775,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','40','40',164,1,1),(2776,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','0','0',164,1,1),(2777,NULL,NULL,'SecondPage/gender','group','0','0',164,1,1),(2778,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',164,1,1),(2779,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000048','mpower_0002_000000000048',164,1,1),(2780,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000048','mpower_0002_000000000048',165,2,1),(2781,NULL,'রোগীর ওজন','Second_page','group','9','9',165,2,1),(2782,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',165,2,1),(2783,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','75','75',165,2,1),(2784,NULL,NULL,'Second_page/Patient_BP','group','0','0',165,2,1),(2785,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',165,2,1),(2786,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',165,2,1),(2787,NULL,NULL,'Second_page/temperature','group','0','0',165,2,1),(2788,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','99.8','99.8',165,2,1),(2789,NULL,NULL,'Second_page/respiratory','group','0','0',165,2,1),(2790,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',165,2,1),(2791,NULL,NULL,'Fourth_page','group','9','9',165,2,1),(2792,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',165,2,1),(2793,NULL,NULL,'Fourth_page/color','group','0','0',165,2,1),(2794,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',165,2,1),(2795,NULL,NULL,'Fourth_page/consciousness','group','0','0',165,2,1),(2796,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',165,2,1),(2797,NULL,NULL,'Fourth_page/edema','group','0','0',165,2,1),(2798,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','হ্যাঁ','2',165,2,1),(2799,NULL,NULL,'Fourth_page/dehydration','group','0','0',165,2,1),(2800,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',165,2,1),(2801,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398169838837.jpg','1398169838837.jpg',166,1,1),(2802,NULL,NULL,'firstPage','group','3','3',166,1,1),(2803,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Shammi','Shammi',166,1,1),(2804,NULL,NULL,'firstPage/mobile','group','0','0',166,1,1),(2805,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01975759759','01975759759',166,1,1),(2806,NULL,'রোগীর বয়স','SecondPage','group','5','5',166,1,1),(2807,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,166,1,1),(2808,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','28','28',166,1,1),(2809,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','1','1',166,1,1),(2810,NULL,NULL,'SecondPage/gender','group','0','0',166,1,1),(2811,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',166,1,1),(2812,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000130','mpower_0002_000000000130',166,1,1),(2813,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000130','mpower_0002_000000000130',167,2,1),(2814,NULL,'রোগীর ওজন','Second_page','group','9','9',167,2,1),(2815,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','35.0','35.0',167,2,1),(2816,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','99','99',167,2,1),(2817,NULL,NULL,'Second_page/Patient_BP','group','0','0',167,2,1),(2818,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','125','125',167,2,1),(2819,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','75','75',167,2,1),(2820,NULL,NULL,'Second_page/temperature','group','0','0',167,2,1),(2821,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','97.0','97.0',167,2,1),(2822,NULL,NULL,'Second_page/respiratory','group','0','0',167,2,1),(2823,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',167,2,1),(2824,NULL,NULL,'Fourth_page','group','9','9',167,2,1),(2825,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',167,2,1),(2826,NULL,NULL,'Fourth_page/color','group','0','0',167,2,1),(2827,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',167,2,1),(2828,NULL,NULL,'Fourth_page/consciousness','group','0','0',167,2,1),(2829,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',167,2,1),(2830,NULL,NULL,'Fourth_page/edema','group','0','0',167,2,1),(2831,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',167,2,1),(2832,NULL,NULL,'Fourth_page/dehydration','group','0','0',167,2,1),(2833,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',167,2,1),(2834,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398250912024.jpg','1398250912024.jpg',168,1,1),(2835,NULL,NULL,'firstPage','group','3','3',168,1,1),(2836,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Mina','Mina',168,1,1),(2837,NULL,NULL,'firstPage/mobile','group','0','0',168,1,1),(2838,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01752373139','01752373139',168,1,1),(2839,NULL,'রোগীর বয়স','SecondPage','group','5','5',168,1,1),(2840,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,168,1,1),(2841,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','25','25',168,1,1),(2842,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','5','5',168,1,1),(2843,NULL,NULL,'SecondPage/gender','group','0','0',168,1,1),(2844,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',168,1,1),(2845,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000035','mpower_0002_000000000035',168,1,1),(2846,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000035','mpower_0002_000000000035',169,2,1),(2847,NULL,'রোগীর ওজন','Second_page','group','9','9',169,2,1),(2848,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','56.0','56.0',169,2,1),(2849,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','65','65',169,2,1),(2850,NULL,NULL,'Second_page/Patient_BP','group','0','0',169,2,1),(2851,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','122','122',169,2,1),(2852,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','78','78',169,2,1),(2853,NULL,NULL,'Second_page/temperature','group','0','0',169,2,1),(2854,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',169,2,1),(2855,NULL,NULL,'Second_page/respiratory','group','0','0',169,2,1),(2856,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',169,2,1),(2857,NULL,NULL,'Fourth_page','group','9','9',169,2,1),(2858,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',169,2,1),(2859,NULL,NULL,'Fourth_page/color','group','0','0',169,2,1),(2860,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',169,2,1),(2861,NULL,NULL,'Fourth_page/consciousness','group','0','0',169,2,1),(2862,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',169,2,1),(2863,NULL,NULL,'Fourth_page/edema','group','0','0',169,2,1),(2864,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',169,2,1),(2865,NULL,NULL,'Fourth_page/dehydration','group','0','0',169,2,1),(2866,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',169,2,1),(2867,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398315027358.jpg','1398315027358.jpg',170,1,1),(2868,NULL,NULL,'firstPage','group','3','3',170,1,1),(2869,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Hamed','Hamed',170,1,1),(2870,NULL,NULL,'firstPage/mobile','group','0','0',170,1,1),(2871,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01752373139','01752373139',170,1,1),(2872,NULL,'রোগীর বয়স','SecondPage','group','5','5',170,1,1),(2873,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,170,1,1),(2874,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','45','45',170,1,1),(2875,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','6','6',170,1,1),(2876,NULL,NULL,'SecondPage/gender','group','0','0',170,1,1),(2877,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',170,1,1),(2878,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000095','mpower_0002_000000000095',170,1,1),(2879,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398582102080.jpg','1398582102080.jpg',171,1,1),(2880,NULL,NULL,'firstPage','group','3','3',171,1,1),(2881,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Khalil','Khalil',171,1,1),(2882,NULL,NULL,'firstPage/mobile','group','0','0',171,1,1),(2883,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01718583463','01718583463',171,1,1),(2884,NULL,'রোগীর বয়স','SecondPage','group','5','5',171,1,1),(2885,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,171,1,1),(2886,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','38','38',171,1,1),(2887,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','2','2',171,1,1),(2888,NULL,NULL,'SecondPage/gender','group','0','0',171,1,1),(2889,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',171,1,1),(2890,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000131','mpower_0002_000000000131',171,1,1),(2891,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000131','mpower_0002_000000000131',172,2,1),(2892,NULL,'রোগীর ওজন','Second_page','group','9','9',172,2,1),(2893,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','70.0','70.0',172,2,1),(2894,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','75','75',172,2,1),(2895,NULL,NULL,'Second_page/Patient_BP','group','0','0',172,2,1),(2896,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',172,2,1),(2897,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',172,2,1),(2898,NULL,NULL,'Second_page/temperature','group','0','0',172,2,1),(2899,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',172,2,1),(2900,NULL,NULL,'Second_page/respiratory','group','0','0',172,2,1),(2901,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',172,2,1),(2902,NULL,NULL,'Fourth_page','group','9','9',172,2,1),(2903,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',172,2,1),(2904,NULL,NULL,'Fourth_page/color','group','0','0',172,2,1),(2905,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',172,2,1),(2906,NULL,NULL,'Fourth_page/consciousness','group','0','0',172,2,1),(2907,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',172,2,1),(2908,NULL,NULL,'Fourth_page/edema','group','0','0',172,2,1),(2909,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',172,2,1),(2910,NULL,NULL,'Fourth_page/dehydration','group','0','0',172,2,1),(2911,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',172,2,1),(2912,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398583795007.jpg','1398583795007.jpg',173,1,1),(2913,NULL,NULL,'firstPage','group','3','3',173,1,1),(2914,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Biplov','Biplov',173,1,1),(2915,NULL,NULL,'firstPage/mobile','group','0','0',173,1,1),(2916,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01736577333','01736577333',173,1,1),(2917,NULL,'রোগীর বয়স','SecondPage','group','5','5',173,1,1),(2918,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,173,1,1),(2919,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','40','40',173,1,1),(2920,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','2','2',173,1,1),(2921,NULL,NULL,'SecondPage/gender','group','0','0',173,1,1),(2922,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',173,1,1),(2923,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000132','mpower_0002_000000000132',173,1,1),(2924,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000132','mpower_0002_000000000132',174,2,1),(2925,NULL,'রোগীর ওজন','Second_page','group','9','9',174,2,1),(2926,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','75.0','75.0',174,2,1),(2927,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','80','80',174,2,1),(2928,NULL,NULL,'Second_page/Patient_BP','group','0','0',174,2,1),(2929,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',174,2,1),(2930,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','85','85',174,2,1),(2931,NULL,NULL,'Second_page/temperature','group','0','0',174,2,1),(2932,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',174,2,1),(2933,NULL,NULL,'Second_page/respiratory','group','0','0',174,2,1),(2934,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',174,2,1),(2935,NULL,NULL,'Fourth_page','group','9','9',174,2,1),(2936,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',174,2,1),(2937,NULL,NULL,'Fourth_page/color','group','0','0',174,2,1),(2938,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',174,2,1),(2939,NULL,NULL,'Fourth_page/consciousness','group','0','0',174,2,1),(2940,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',174,2,1),(2941,NULL,NULL,'Fourth_page/edema','group','0','0',174,2,1),(2942,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',174,2,1),(2943,NULL,NULL,'Fourth_page/dehydration','group','0','0',174,2,1),(2944,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',174,2,1),(2945,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398680945283.jpg','1398680945283.jpg',175,1,1),(2946,NULL,NULL,'firstPage','group','3','3',175,1,1),(2947,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Riyad','Riyad',175,1,1),(2948,NULL,NULL,'firstPage/mobile','group','0','0',175,1,1),(2949,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01710005566','01710005566',175,1,1),(2950,NULL,'রোগীর বয়স','SecondPage','group','5','5',175,1,1),(2951,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,175,1,1),(2952,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','28','28',175,1,1),(2953,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','7','7',175,1,1),(2954,NULL,NULL,'SecondPage/gender','group','0','0',175,1,1),(2955,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',175,1,1),(2956,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000057','mpower_0002_000000000057',175,1,1),(2957,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000057','mpower_0002_000000000057',176,2,1),(2958,NULL,'রোগীর ওজন','Second_page','group','9','9',176,2,1),(2959,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','58.0','58.0',176,2,1),(2960,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','78','78',176,2,1),(2961,NULL,NULL,'Second_page/Patient_BP','group','0','0',176,2,1),(2962,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',176,2,1),(2963,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','84','84',176,2,1),(2964,NULL,NULL,'Second_page/temperature','group','0','0',176,2,1),(2965,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',176,2,1),(2966,NULL,NULL,'Second_page/respiratory','group','0','0',176,2,1),(2967,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',176,2,1),(2968,NULL,NULL,'Fourth_page','group','9','9',176,2,1),(2969,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',176,2,1),(2970,NULL,NULL,'Fourth_page/color','group','0','0',176,2,1),(2971,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',176,2,1),(2972,NULL,NULL,'Fourth_page/consciousness','group','0','0',176,2,1),(2973,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',176,2,1),(2974,NULL,NULL,'Fourth_page/edema','group','0','0',176,2,1),(2975,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',176,2,1),(2976,NULL,NULL,'Fourth_page/dehydration','group','0','0',176,2,1),(2977,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',176,2,1),(2978,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000057','mpower_0002_000000000057',177,2,1),(2979,NULL,'রোগীর ওজন','Second_page','group','9','9',177,2,1),(2980,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','58.0','58.0',177,2,1),(2981,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','78','78',177,2,1),(2982,NULL,NULL,'Second_page/Patient_BP','group','0','0',177,2,1),(2983,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',177,2,1),(2984,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','90','90',177,2,1),(2985,NULL,NULL,'Second_page/temperature','group','0','0',177,2,1),(2986,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',177,2,1),(2987,NULL,NULL,'Second_page/respiratory','group','0','0',177,2,1),(2988,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',177,2,1),(2989,NULL,NULL,'Fourth_page','group','9','9',177,2,1),(2990,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',177,2,1),(2991,NULL,NULL,'Fourth_page/color','group','0','0',177,2,1),(2992,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',177,2,1),(2993,NULL,NULL,'Fourth_page/consciousness','group','0','0',177,2,1),(2994,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',177,2,1),(2995,NULL,NULL,'Fourth_page/edema','group','0','0',177,2,1),(2996,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',177,2,1),(2997,NULL,NULL,'Fourth_page/dehydration','group','0','0',177,2,1),(2998,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',177,2,1),(2999,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000057','mpower_0002_000000000057',178,2,1),(3000,NULL,'রোগীর ওজন','Second_page','group','9','9',178,2,1),(3001,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','56.0','56.0',178,2,1),(3002,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','78','78',178,2,1),(3003,NULL,NULL,'Second_page/Patient_BP','group','0','0',178,2,1),(3004,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',178,2,1),(3005,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','90','90',178,2,1),(3006,NULL,NULL,'Second_page/temperature','group','0','0',178,2,1),(3007,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',178,2,1),(3008,NULL,NULL,'Second_page/respiratory','group','0','0',178,2,1),(3009,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',178,2,1),(3010,NULL,NULL,'Fourth_page','group','9','9',178,2,1),(3011,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',178,2,1),(3012,NULL,NULL,'Fourth_page/color','group','0','0',178,2,1),(3013,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',178,2,1),(3014,NULL,NULL,'Fourth_page/consciousness','group','0','0',178,2,1),(3015,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',178,2,1),(3016,NULL,NULL,'Fourth_page/edema','group','0','0',178,2,1),(3017,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',178,2,1),(3018,NULL,NULL,'Fourth_page/dehydration','group','0','0',178,2,1),(3019,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',178,2,1),(3020,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000057','mpower_0002_000000000057',179,2,1),(3021,NULL,'রোগীর ওজন','Second_page','group','9','9',179,2,1),(3022,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',179,2,1),(3023,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','78','78',179,2,1),(3024,NULL,NULL,'Second_page/Patient_BP','group','0','0',179,2,1),(3025,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',179,2,1),(3026,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',179,2,1),(3027,NULL,NULL,'Second_page/temperature','group','0','0',179,2,1),(3028,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',179,2,1),(3029,NULL,NULL,'Second_page/respiratory','group','0','0',179,2,1),(3030,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',179,2,1),(3031,NULL,NULL,'Fourth_page','group','9','9',179,2,1),(3032,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',179,2,1),(3033,NULL,NULL,'Fourth_page/color','group','0','0',179,2,1),(3034,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',179,2,1),(3035,NULL,NULL,'Fourth_page/consciousness','group','0','0',179,2,1),(3036,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',179,2,1),(3037,NULL,NULL,'Fourth_page/edema','group','0','0',179,2,1),(3038,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',179,2,1),(3039,NULL,NULL,'Fourth_page/dehydration','group','0','0',179,2,1),(3040,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',179,2,1),(3041,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398752123151.jpg','1398752123151.jpg',180,1,1),(3042,NULL,NULL,'firstPage','group','3','3',180,1,1),(3043,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Jutonb paul\n\n','Jutonb paul\n\n',180,1,1),(3044,NULL,NULL,'firstPage/mobile','group','0','0',180,1,1),(3045,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01711705253','01711705253',180,1,1),(3046,NULL,'রোগীর বয়স','SecondPage','group','5','5',180,1,1),(3047,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,180,1,1),(3048,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','30','30',180,1,1),(3049,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','6','6',180,1,1),(3050,NULL,NULL,'SecondPage/gender','group','0','0',180,1,1),(3051,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',180,1,1),(3052,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000026','mpower_0002_000000000026',180,1,1),(3053,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000026','mpower_0002_000000000026',181,2,1),(3054,NULL,'রোগীর ওজন','Second_page','group','9','9',181,2,1),(3055,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','65.0','65.0',181,2,1),(3056,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','75','75',181,2,1),(3057,NULL,NULL,'Second_page/Patient_BP','group','0','0',181,2,1),(3058,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',181,2,1),(3059,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','88','88',181,2,1),(3060,NULL,NULL,'Second_page/temperature','group','0','0',181,2,1),(3061,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',181,2,1),(3062,NULL,NULL,'Second_page/respiratory','group','0','0',181,2,1),(3063,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',181,2,1),(3064,NULL,NULL,'Fourth_page','group','9','9',181,2,1),(3065,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',181,2,1),(3066,NULL,NULL,'Fourth_page/color','group','0','0',181,2,1),(3067,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',181,2,1),(3068,NULL,NULL,'Fourth_page/consciousness','group','0','0',181,2,1),(3069,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',181,2,1),(3070,NULL,NULL,'Fourth_page/edema','group','0','0',181,2,1),(3071,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',181,2,1),(3072,NULL,NULL,'Fourth_page/dehydration','group','0','0',181,2,1),(3073,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','হ্যাঁ','2',181,2,1),(3074,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398753351459.jpg','1398753351459.jpg',182,1,1),(3075,NULL,NULL,'firstPage','group','3','3',182,1,1),(3076,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Juton','Juton',182,1,1),(3077,NULL,NULL,'firstPage/mobile','group','0','0',182,1,1),(3078,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01711705253','01711705253',182,1,1),(3079,NULL,'রোগীর বয়স','SecondPage','group','5','5',182,1,1),(3080,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,182,1,1),(3081,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','30','30',182,1,1),(3082,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','6','6',182,1,1),(3083,NULL,NULL,'SecondPage/gender','group','0','0',182,1,1),(3084,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',182,1,1),(3085,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000017','mpower_0002_000000000017',182,1,1),(3086,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000017','mpower_0002_000000000017',183,2,1),(3087,NULL,'রোগীর ওজন','Second_page','group','9','9',183,2,1),(3088,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','50.0','50.0',183,2,1),(3089,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','96','96',183,2,1),(3090,NULL,NULL,'Second_page/Patient_BP','group','0','0',183,2,1),(3091,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',183,2,1),(3092,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','80','80',183,2,1),(3093,NULL,NULL,'Second_page/temperature','group','0','0',183,2,1),(3094,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',183,2,1),(3095,NULL,NULL,'Second_page/respiratory','group','0','0',183,2,1),(3096,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',183,2,1),(3097,NULL,NULL,'Fourth_page','group','9','9',183,2,1),(3098,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',183,2,1),(3099,NULL,NULL,'Fourth_page/color','group','0','0',183,2,1),(3100,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',183,2,1),(3101,NULL,NULL,'Fourth_page/consciousness','group','0','0',183,2,1),(3102,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',183,2,1),(3103,NULL,NULL,'Fourth_page/edema','group','0','0',183,2,1),(3104,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',183,2,1),(3105,NULL,NULL,'Fourth_page/dehydration','group','0','0',183,2,1),(3106,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',183,2,1),(3107,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398756041391.jpg','1398756041391.jpg',184,1,1),(3108,NULL,NULL,'firstPage','group','3','3',184,1,1),(3109,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Jahanara begum','Jahanara begum',184,1,1),(3110,NULL,NULL,'firstPage/mobile','group','0','0',184,1,1),(3111,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01715288355','01715288355',184,1,1),(3112,NULL,'রোগীর বয়স','SecondPage','group','5','5',184,1,1),(3113,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,184,1,1),(3114,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','48','48',184,1,1),(3115,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','5','5',184,1,1),(3116,NULL,NULL,'SecondPage/gender','group','0','0',184,1,1),(3117,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',184,1,1),(3118,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000097','mpower_0002_000000000097',184,1,1),(3119,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000097','mpower_0002_000000000097',185,2,1),(3120,NULL,'রোগীর ওজন','Second_page','group','9','9',185,2,1),(3121,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','52.0','52.0',185,2,1),(3122,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','78','78',185,2,1),(3123,NULL,NULL,'Second_page/Patient_BP','group','0','0',185,2,1),(3124,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','120','120',185,2,1),(3125,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','90','90',185,2,1),(3126,NULL,NULL,'Second_page/temperature','group','0','0',185,2,1),(3127,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',185,2,1),(3128,NULL,NULL,'Second_page/respiratory','group','0','0',185,2,1),(3129,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',185,2,1),(3130,NULL,NULL,'Fourth_page','group','9','9',185,2,1),(3131,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',185,2,1),(3132,NULL,NULL,'Fourth_page/color','group','0','0',185,2,1),(3133,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',185,2,1),(3134,NULL,NULL,'Fourth_page/consciousness','group','0','0',185,2,1),(3135,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',185,2,1),(3136,NULL,NULL,'Fourth_page/edema','group','0','0',185,2,1),(3137,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',185,2,1),(3138,NULL,NULL,'Fourth_page/dehydration','group','0','0',185,2,1),(3139,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',185,2,1),(3140,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398757962191.jpg','1398757962191.jpg',186,1,1),(3141,NULL,NULL,'firstPage','group','3','3',186,1,1),(3142,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Rashidee','Rashidee',186,1,1),(3143,NULL,NULL,'firstPage/mobile','group','0','0',186,1,1),(3144,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01715464464','01715464464',186,1,1),(3145,NULL,'রোগীর বয়স','SecondPage','group','5','5',186,1,1),(3146,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,186,1,1),(3147,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','35','35',186,1,1),(3148,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,186,1,1),(3149,NULL,NULL,'SecondPage/gender','group','0','0',186,1,1),(3150,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',186,1,1),(3151,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000037','mpower_0002_000000000037',186,1,1),(3152,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000037','mpower_0002_000000000037',187,2,1),(3153,NULL,'রোগীর ওজন','Second_page','group','9','9',187,2,1),(3154,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','70.0','70.0',187,2,1),(3155,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','75','75',187,2,1),(3156,NULL,NULL,'Second_page/Patient_BP','group','0','0',187,2,1),(3157,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','110','110',187,2,1),(3158,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','90','90',187,2,1),(3159,NULL,NULL,'Second_page/temperature','group','0','0',187,2,1),(3160,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','97.6','97.6',187,2,1),(3161,NULL,NULL,'Second_page/respiratory','group','0','0',187,2,1),(3162,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',187,2,1),(3163,NULL,NULL,'Fourth_page','group','9','9',187,2,1),(3164,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',187,2,1),(3165,NULL,NULL,'Fourth_page/color','group','0','0',187,2,1),(3166,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',187,2,1),(3167,NULL,NULL,'Fourth_page/consciousness','group','0','0',187,2,1),(3168,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',187,2,1),(3169,NULL,NULL,'Fourth_page/edema','group','0','0',187,2,1),(3170,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',187,2,1),(3171,NULL,NULL,'Fourth_page/dehydration','group','0','0',187,2,1),(3172,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',187,2,1),(3173,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398764789232.jpg','1398764789232.jpg',188,1,1),(3174,NULL,NULL,'firstPage','group','3','3',188,1,1),(3175,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Jumon','Jumon',188,1,1),(3176,NULL,NULL,'firstPage/mobile','group','0','0',188,1,1),(3177,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01718583462','01718583462',188,1,1),(3178,NULL,'রোগীর বয়স','SecondPage','group','5','5',188,1,1),(3179,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,188,1,1),(3180,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','22','22',188,1,1),(3181,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','3','3',188,1,1),(3182,NULL,NULL,'SecondPage/gender','group','0','0',188,1,1),(3183,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',188,1,1),(3184,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000020','mpower_0002_000000000020',188,1,1),(3185,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000020','mpower_0002_000000000020',189,2,1),(3186,NULL,'রোগীর ওজন','Second_page','group','9','9',189,2,1),(3187,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','65.0','65.0',189,2,1),(3188,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','85','85',189,2,1),(3189,NULL,NULL,'Second_page/Patient_BP','group','0','0',189,2,1),(3190,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','150','150',189,2,1),(3191,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','100','100',189,2,1),(3192,NULL,NULL,'Second_page/temperature','group','0','0',189,2,1),(3193,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',189,2,1),(3194,NULL,NULL,'Second_page/respiratory','group','0','0',189,2,1),(3195,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','খুব বেশি','1',189,2,1),(3196,NULL,NULL,'Fourth_page','group','9','9',189,2,1),(3197,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',189,2,1),(3198,NULL,NULL,'Fourth_page/color','group','0','0',189,2,1),(3199,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',189,2,1),(3200,NULL,NULL,'Fourth_page/consciousness','group','0','0',189,2,1),(3201,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',189,2,1),(3202,NULL,NULL,'Fourth_page/edema','group','0','0',189,2,1),(3203,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',189,2,1),(3204,NULL,NULL,'Fourth_page/dehydration','group','0','0',189,2,1),(3205,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',189,2,1),(3206,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398836932249.jpg','1398836932249.jpg',190,1,1),(3207,NULL,NULL,'firstPage','group','3','3',190,1,1),(3208,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Ismil Mia','Ismil Mia',190,1,1),(3209,NULL,NULL,'firstPage/mobile','group','0','0',190,1,1),(3210,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01849562303','01849562303',190,1,1),(3211,NULL,'রোগীর বয়স','SecondPage','group','5','5',190,1,1),(3212,NULL,'রোগীর বয়স ১২ মাসের কম হলে বছরের ঘরে \'০\' লিখুন এবং মাসের ঘরে কত মাস তা লিখুন। আর বয়স ১২-২৩ মাসের মধ্যে হলে বছরের ঘরে \'১\' এবং মাসের ঘরে বাড়তি মাস লিখুন','SecondPage/Age_note','string',NULL,NULL,190,1,1),(3213,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','35','35',190,1,1),(3214,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','2','2',190,1,1),(3215,NULL,NULL,'SecondPage/gender','group','0','0',190,1,1),(3216,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',190,1,1),(3217,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000093','mpower_0002_000000000093',190,1,1),(3218,NULL,'কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000093','mpower_0002_000000000093',191,2,1),(3219,NULL,'রোগীর ওজন','Second_page','group','9','9',191,2,1),(3220,NULL,'কে জি (kg)','Second_page/Patient_Weight_kg','decimal','65.0','65.0',191,2,1),(3221,NULL,'পাল্স (বিট পার মিনিট - bpm)','Second_page/Patient_PulseRate','int','75','75',191,2,1),(3222,NULL,NULL,'Second_page/Patient_BP','group','0','0',191,2,1),(3223,NULL,'ব্লাড প্রেসার সিস্টলিক (mmHg)','Second_page/Patient_BP_Systolic','int','125','125',191,2,1),(3224,NULL,'ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Second_page/Patient_BP_Diastolic','int','85','85',191,2,1),(3225,NULL,NULL,'Second_page/temperature','group','0','0',191,2,1),(3226,NULL,'তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',191,2,1),(3227,NULL,NULL,'Second_page/respiratory','group','0','0',191,2,1),(3228,NULL,'শ্বাস-প্রশ্বাস','Second_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',191,2,1),(3229,NULL,NULL,'Fourth_page','group','9','9',191,2,1),(3230,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',191,2,1),(3231,NULL,NULL,'Fourth_page/color','group','0','0',191,2,1),(3232,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',191,2,1),(3233,NULL,NULL,'Fourth_page/consciousness','group','0','0',191,2,1),(3234,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',191,2,1),(3235,NULL,NULL,'Fourth_page/edema','group','0','0',191,2,1),(3236,NULL,'রোগীর এডিমা আছে কি না?','Fourth_page/Patient_Edema','select1','না','1',191,2,1),(3237,NULL,NULL,'Fourth_page/dehydration','group','0','0',191,2,1),(3238,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fourth_page/Patient_Dehydration','select1','না','1',191,2,1),(3239,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398838745699.jpg','1398838745699.jpg',192,1,1),(3240,NULL,NULL,'firstPage','group','3','3',192,1,1),(3241,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Proshanto Test','Proshanto Test',192,1,1),(3242,NULL,NULL,'firstPage/mobile','group','0','0',192,1,1),(3243,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','08523697412','08523697412',192,1,1),(3244,NULL,'রোগীর বয়স','SecondPage','group','6','6',192,1,1),(3245,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,192,1,1),(3246,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','30','30',192,1,1),(3247,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','11','11',192,1,1),(3248,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int','29','29',192,1,1),(3249,NULL,NULL,'SecondPage/gender','group','0','0',192,1,1),(3250,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',192,1,1),(3251,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_proshanto','test_proshanto',192,1,1),(3252,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_proshanto','test_proshanto',193,2,1),(3253,NULL,NULL,'Second_page','group','3','3',193,2,1),(3254,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','70.0','70.0',193,2,1),(3255,NULL,NULL,'Second_page/temperature','group','0','0',193,2,1),(3256,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',193,2,1),(3257,NULL,NULL,'Third_page','group','6','6',193,2,1),(3258,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','70','70',193,2,1),(3259,NULL,NULL,'Third_page/respiratory','group','0','0',193,2,1),(3260,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',193,2,1),(3261,NULL,NULL,'Third_page/Patient_BP','group','0','0',193,2,1),(3262,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',193,2,1),(3263,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',193,2,1),(3264,NULL,NULL,'Fourth_page','group','5','5',193,2,1),(3265,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',193,2,1),(3266,NULL,NULL,'Fourth_page/color','group','0','0',193,2,1),(3267,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','সায়ানোসিস (নীলচে ভাব)','4',193,2,1),(3268,NULL,NULL,'Fourth_page/consciousness','group','0','0',193,2,1),(3269,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',193,2,1),(3270,NULL,NULL,'Fifth_page','group','3','3',193,2,1),(3271,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','অন্য কোথাও','7',193,2,1),(3272,NULL,NULL,'Fifth_page/dehydration','group','0','0',193,2,1),(3273,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',193,2,1),(3274,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1398838915446.jpg','1398838915446.jpg',193,2,1),(3275,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398838873344.jpg','1398838873344.jpg',194,1,1),(3276,NULL,NULL,'firstPage','group','3','3',194,1,1),(3277,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Khlalil biy','Khlalil biy',194,1,1),(3278,NULL,NULL,'firstPage/mobile','group','0','0',194,1,1),(3279,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01723577333','01723577333',194,1,1),(3280,NULL,'রোগীর বয়স','SecondPage','group','5','5',194,1,1),(3281,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,194,1,1),(3282,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','40','40',194,1,1),(3283,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','2','2',194,1,1),(3284,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int',NULL,NULL,194,1,1),(3285,NULL,NULL,'SecondPage/gender','group','0','0',194,1,1),(3286,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',194,1,1),(3287,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000148','mpower_0002_000000000148',194,1,1),(3288,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398839801690.jpg','1398839801690.jpg',195,1,1),(3289,NULL,NULL,'firstPage','group','3','3',195,1,1),(3290,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Liton','Liton',195,1,1),(3291,NULL,NULL,'firstPage/mobile','group','0','0',195,1,1),(3292,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01912816322','01912816322',195,1,1),(3293,NULL,'রোগীর বয়স','SecondPage','group','6','6',195,1,1),(3294,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,195,1,1),(3295,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','39','39',195,1,1),(3296,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','6','6',195,1,1),(3297,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int',NULL,NULL,195,1,1),(3298,NULL,NULL,'SecondPage/gender','group','0','0',195,1,1),(3299,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',195,1,1),(3300,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000125','mpower_0002_000000000125',195,1,1),(3301,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000125','mpower_0002_000000000125',196,2,1),(3302,NULL,NULL,'Second_page','group','3','3',196,2,1),(3303,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','65.0','65.0',196,2,1),(3304,NULL,NULL,'Second_page/temperature','group','0','0',196,2,1),(3305,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','99.0','99.0',196,2,1),(3306,NULL,NULL,'Third_page','group','6','6',196,2,1),(3307,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','75','75',196,2,1),(3308,NULL,NULL,'Third_page/respiratory','group','0','0',196,2,1),(3309,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',196,2,1),(3310,NULL,NULL,'Third_page/Patient_BP','group','0','0',196,2,1),(3311,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','125','125',196,2,1),(3312,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','90','90',196,2,1),(3313,NULL,NULL,'Fourth_page','group','5','5',196,2,1),(3314,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',196,2,1),(3315,NULL,NULL,'Fourth_page/color','group','0','0',196,2,1),(3316,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',196,2,1),(3317,NULL,NULL,'Fourth_page/consciousness','group','0','0',196,2,1),(3318,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',196,2,1),(3319,NULL,NULL,'Fifth_page','group','3','3',196,2,1),(3320,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','ইডিমা নেই','1',196,2,1),(3321,NULL,NULL,'Fifth_page/dehydration','group','0','0',196,2,1),(3322,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',196,2,1),(3323,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1398840926063.jpg','1398840926063.jpg',196,2,1),(3324,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_proshanto','test_proshanto',197,2,1),(3325,NULL,NULL,'Second_page','group','3','3',197,2,1),(3326,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','56.0','56.0',197,2,1),(3327,NULL,NULL,'Second_page/temperature','group','0','0',197,2,1),(3328,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',197,2,1),(3329,NULL,NULL,'Third_page','group','6','6',197,2,1),(3330,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','80','80',197,2,1),(3331,NULL,NULL,'Third_page/respiratory','group','0','0',197,2,1),(3332,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',197,2,1),(3333,NULL,NULL,'Third_page/Patient_BP','group','0','0',197,2,1),(3334,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',197,2,1),(3335,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',197,2,1),(3336,NULL,NULL,'Fourth_page','group','5','5',197,2,1),(3337,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',197,2,1),(3338,NULL,NULL,'Fourth_page/color','group','0','0',197,2,1),(3339,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','সায়ানোসিস (নীলচে ভাব)','4',197,2,1),(3340,NULL,NULL,'Fourth_page/consciousness','group','0','0',197,2,1),(3341,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অজ্ঞান','3',197,2,1),(3342,NULL,NULL,'Fifth_page','group','3','3',197,2,1),(3343,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','জননাঙ্গে','6',197,2,1),(3344,NULL,NULL,'Fifth_page/dehydration','group','0','0',197,2,1),(3345,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',197,2,1),(3346,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1398841954936.jpg','1398841954936.jpg',197,2,1),(3347,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398852366086.jpg','1398852366086.jpg',198,1,1),(3348,NULL,NULL,'firstPage','group','3','3',198,1,1),(3349,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Aniuwar','Aniuwar',198,1,1),(3350,NULL,NULL,'firstPage/mobile','group','0','0',198,1,1),(3351,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01771515602','01771515602',198,1,1),(3352,NULL,'রোগীর বয়স','SecondPage','group','6','6',198,1,1),(3353,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,198,1,1),(3354,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','20','20',198,1,1),(3355,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,198,1,1),(3356,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int',NULL,NULL,198,1,1),(3357,NULL,NULL,'SecondPage/gender','group','0','0',198,1,1),(3358,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',198,1,1),(3359,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000134','mpower_0002_000000000134',198,1,1),(3360,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000134','mpower_0002_000000000134',199,2,1),(3361,NULL,NULL,'Second_page','group','3','3',199,2,1),(3362,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','65.0','65.0',199,2,1),(3363,NULL,NULL,'Second_page/temperature','group','0','0',199,2,1),(3364,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','102.0','102.0',199,2,1),(3365,NULL,NULL,'Third_page','group','6','6',199,2,1),(3366,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','65','65',199,2,1),(3367,NULL,NULL,'Third_page/respiratory','group','0','0',199,2,1),(3368,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',199,2,1),(3369,NULL,NULL,'Third_page/Patient_BP','group','0','0',199,2,1),(3370,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','140','140',199,2,1),(3371,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','90','90',199,2,1),(3372,NULL,NULL,'Fourth_page','group','5','5',199,2,1),(3373,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',199,2,1),(3374,NULL,NULL,'Fourth_page/color','group','0','0',199,2,1),(3375,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',199,2,1),(3376,NULL,NULL,'Fourth_page/consciousness','group','0','0',199,2,1),(3377,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',199,2,1),(3378,NULL,NULL,'Fifth_page','group','3','3',199,2,1),(3379,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','ইডিমা নেই','1',199,2,1),(3380,NULL,NULL,'Fifth_page/dehydration','group','0','0',199,2,1),(3381,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',199,2,1),(3382,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,199,2,1),(3390,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1398853687610.jpg','1398853687610.jpg',201,1,1),(3391,NULL,NULL,'firstPage','group','3','3',201,1,1),(3392,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Emrun','Emrun',201,1,1),(3393,NULL,NULL,'firstPage/mobile','group','0','0',201,1,1),(3394,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01718329304','01718329304',201,1,1),(3395,NULL,'রোগীর বয়স','SecondPage','group','6','6',201,1,1),(3396,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,201,1,1),(3397,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','15','15',201,1,1),(3398,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,201,1,1),(3399,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int',NULL,NULL,201,1,1),(3400,NULL,NULL,'SecondPage/gender','group','0','0',201,1,1),(3401,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',201,1,1),(3402,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000011','mpower_0002_000000000011',201,1,1),(3403,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_proshanto','test_proshanto',202,2,1),(3404,NULL,NULL,'Second_page','group','3','3',202,2,1),(3405,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','69.0','69.0',202,2,1),(3406,NULL,NULL,'Second_page/temperature','group','0','0',202,2,1),(3407,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',202,2,1),(3408,NULL,NULL,'Third_page','group','6','6',202,2,1),(3409,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','56','56',202,2,1),(3410,NULL,NULL,'Third_page/respiratory','group','0','0',202,2,1),(3411,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',202,2,1),(3412,NULL,NULL,'Third_page/Patient_BP','group','0','0',202,2,1),(3413,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',202,2,1),(3414,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',202,2,1),(3415,NULL,NULL,'Fourth_page','group','5','5',202,2,1),(3416,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',202,2,1),(3417,NULL,NULL,'Fourth_page/color','group','0','0',202,2,1),(3418,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','সায়ানোসিস (নীলচে ভাব)','4',202,2,1),(3419,NULL,NULL,'Fourth_page/consciousness','group','0','0',202,2,1),(3420,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',202,2,1),(3421,NULL,NULL,'Fifth_page','group','3','3',202,2,1),(3422,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','পেটে','5',202,2,1),(3423,NULL,NULL,'Fifth_page/dehydration','group','0','0',202,2,1),(3424,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',202,2,1),(3425,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1398854192316.jpg','1398854192316.jpg',202,2,1),(3426,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000054','mpower_0002_000000000054',203,2,1),(3427,NULL,NULL,'Second_page','group','3','3',203,2,1),(3428,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','85.0','85.0',203,2,1),(3429,NULL,NULL,'Second_page/temperature','group','0','0',203,2,1),(3430,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.7','96.7',203,2,1),(3431,NULL,NULL,'Third_page','group','6','6',203,2,1),(3432,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','85','85',203,2,1),(3433,NULL,NULL,'Third_page/respiratory','group','0','0',203,2,1),(3434,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব বেশি','1',203,2,1),(3435,NULL,NULL,'Third_page/Patient_BP','group','0','0',203,2,1),(3436,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',203,2,1),(3437,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',203,2,1),(3438,NULL,NULL,'Fourth_page','group','5','5',203,2,1),(3439,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',203,2,1),(3440,NULL,NULL,'Fourth_page/color','group','0','0',203,2,1),(3441,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',203,2,1),(3442,NULL,NULL,'Fourth_page/consciousness','group','0','0',203,2,1),(3443,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',203,2,1),(3444,NULL,NULL,'Fifth_page','group','3','3',203,2,1),(3445,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','ইডিমা নেই','1',203,2,1),(3446,NULL,NULL,'Fifth_page/dehydration','group','0','0',203,2,1),(3447,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',203,2,1),(3448,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1398854254442.jpg','1398854254442.jpg',203,2,1),(3449,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000011','mpower_0002_000000000011',204,2,1),(3450,NULL,NULL,'Second_page','group','3','3',204,2,1),(3451,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','65.0','65.0',204,2,1),(3452,NULL,NULL,'Second_page/temperature','group','0','0',204,2,1),(3453,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',204,2,1),(3454,NULL,NULL,'Third_page','group','6','6',204,2,1),(3455,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','55','55',204,2,1),(3456,NULL,NULL,'Third_page/respiratory','group','0','0',204,2,1),(3457,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',204,2,1),(3458,NULL,NULL,'Third_page/Patient_BP','group','0','0',204,2,1),(3459,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','110','110',204,2,1),(3460,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','60','60',204,2,1),(3461,NULL,NULL,'Fourth_page','group','5','5',204,2,1),(3462,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',204,2,1),(3463,NULL,NULL,'Fourth_page/color','group','0','0',204,2,1),(3464,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',204,2,1),(3465,NULL,NULL,'Fourth_page/consciousness','group','0','0',204,2,1),(3466,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',204,2,1),(3467,NULL,NULL,'Fifth_page','group','3','3',204,2,1),(3468,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','ইডিমা নেই','1',204,2,1),(3469,NULL,NULL,'Fifth_page/dehydration','group','0','0',204,2,1),(3470,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',204,2,1),(3471,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1398854236033.jpg','1398854236033.jpg',204,2,1),(3472,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000054','mpower_0002_000000000054',205,2,1),(3473,NULL,NULL,'Second_page','group','3','3',205,2,1),(3474,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','85.0','85.0',205,2,1),(3475,NULL,NULL,'Second_page/temperature','group','0','0',205,2,1),(3476,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',205,2,1),(3477,NULL,NULL,'Third_page','group','6','6',205,2,1),(3478,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','90','90',205,2,1),(3479,NULL,NULL,'Third_page/respiratory','group','0','0',205,2,1),(3480,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব বেশি','1',205,2,1),(3481,NULL,NULL,'Third_page/Patient_BP','group','0','0',205,2,1),(3482,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',205,2,1),(3483,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',205,2,1),(3484,NULL,NULL,'Fourth_page','group','5','5',205,2,1),(3485,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',205,2,1),(3486,NULL,NULL,'Fourth_page/color','group','0','0',205,2,1),(3487,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',205,2,1),(3488,NULL,NULL,'Fourth_page/consciousness','group','0','0',205,2,1),(3489,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',205,2,1),(3490,NULL,NULL,'Fifth_page','group','3','3',205,2,1),(3491,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','মুখ (চোখের চারপাশে)','4',205,2,1),(3492,NULL,NULL,'Fifth_page/dehydration','group','0','0',205,2,1),(3493,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',205,2,1),(3494,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,205,2,1),(3495,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000011','mpower_0002_000000000011',206,2,1),(3496,NULL,NULL,'Second_page','group','3','3',206,2,1),(3497,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','65.0','65.0',206,2,1),(3498,NULL,NULL,'Second_page/temperature','group','0','0',206,2,1),(3499,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',206,2,1),(3500,NULL,NULL,'Third_page','group','6','6',206,2,1),(3501,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','75','75',206,2,1),(3502,NULL,NULL,'Third_page/respiratory','group','0','0',206,2,1),(3503,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',206,2,1),(3504,NULL,NULL,'Third_page/Patient_BP','group','0','0',206,2,1),(3505,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','140','140',206,2,1),(3506,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','85','85',206,2,1),(3507,NULL,NULL,'Fourth_page','group','5','5',206,2,1),(3508,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',206,2,1),(3509,NULL,NULL,'Fourth_page/color','group','0','0',206,2,1),(3510,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',206,2,1),(3511,NULL,NULL,'Fourth_page/consciousness','group','0','0',206,2,1),(3512,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',206,2,1),(3513,NULL,NULL,'Fifth_page','group','3','3',206,2,1),(3514,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','ইডিমা নেই','1',206,2,1),(3515,NULL,NULL,'Fifth_page/dehydration','group','0','0',206,2,1),(3516,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',206,2,1),(3517,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,206,2,1),(3518,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000054','mpower_0002_000000000054',207,2,1),(3519,NULL,NULL,'Second_page','group','3','3',207,2,1),(3520,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','54.0','54.0',207,2,1),(3521,NULL,NULL,'Second_page/temperature','group','0','0',207,2,1),(3522,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',207,2,1),(3523,NULL,NULL,'Third_page','group','6','6',207,2,1),(3524,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','25','25',207,2,1),(3525,NULL,NULL,'Third_page/respiratory','group','0','0',207,2,1),(3526,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব বেশি','1',207,2,1),(3527,NULL,NULL,'Third_page/Patient_BP','group','0','0',207,2,1),(3528,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',207,2,1),(3529,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',207,2,1),(3530,NULL,NULL,'Fourth_page','group','5','5',207,2,1),(3531,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','খুব অসুস্থ','3',207,2,1),(3532,NULL,NULL,'Fourth_page/color','group','0','0',207,2,1),(3533,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',207,2,1),(3534,NULL,NULL,'Fourth_page/consciousness','group','0','0',207,2,1),(3535,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',207,2,1),(3536,NULL,NULL,'Fifth_page','group','3','3',207,2,1),(3537,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','দুই পায়ে','3',207,2,1),(3538,NULL,NULL,'Fifth_page/dehydration','group','0','0',207,2,1),(3539,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',207,2,1),(3540,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1398856631956.jpg','1398856631956.jpg',207,2,1),(3541,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_proshanto','test_proshanto',208,2,1),(3542,NULL,NULL,'Second_page','group','3','3',208,2,1),(3543,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','96.0','96.0',208,2,1),(3544,NULL,NULL,'Second_page/temperature','group','0','0',208,2,1),(3545,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',208,2,1),(3546,NULL,NULL,'Third_page','group','6','6',208,2,1),(3547,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','56','56',208,2,1),(3548,NULL,NULL,'Third_page/respiratory','group','0','0',208,2,1),(3549,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',208,2,1),(3550,NULL,NULL,'Third_page/Patient_BP','group','0','0',208,2,1),(3551,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',208,2,1),(3552,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',208,2,1),(3553,NULL,NULL,'Fourth_page','group','5','5',208,2,1),(3554,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',208,2,1),(3555,NULL,NULL,'Fourth_page/color','group','0','0',208,2,1),(3556,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','সায়ানোসিস (নীলচে ভাব)','4',208,2,1),(3557,NULL,NULL,'Fourth_page/consciousness','group','0','0',208,2,1),(3558,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',208,2,1),(3559,NULL,NULL,'Fifth_page','group','3','3',208,2,1),(3560,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','জননাঙ্গে','6',208,2,1),(3561,NULL,NULL,'Fifth_page/dehydration','group','0','0',208,2,1),(3562,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',208,2,1),(3563,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1398857001969.jpg','1398857001969.jpg',208,2,1),(3564,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000054','mpower_0002_000000000054',209,2,1),(3565,NULL,NULL,'Second_page','group','3','3',209,2,1),(3566,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',209,2,1),(3567,NULL,NULL,'Second_page/temperature','group','0','0',209,2,1),(3568,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',209,2,1),(3569,NULL,NULL,'Third_page','group','6','6',209,2,1),(3570,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','58','58',209,2,1),(3571,NULL,NULL,'Third_page/respiratory','group','0','0',209,2,1),(3572,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',209,2,1),(3573,NULL,NULL,'Third_page/Patient_BP','group','0','0',209,2,1),(3574,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','58','58',209,2,1),(3575,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','58','58',209,2,1),(3576,NULL,NULL,'Fourth_page','group','5','5',209,2,1),(3577,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',209,2,1),(3578,NULL,NULL,'Fourth_page/color','group','0','0',209,2,1),(3579,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',209,2,1),(3580,NULL,NULL,'Fourth_page/consciousness','group','0','0',209,2,1),(3581,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',209,2,1),(3582,NULL,NULL,'Fifth_page','group','3','3',209,2,1),(3583,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','দুই পায়ে','3',209,2,1),(3584,NULL,NULL,'Fifth_page/dehydration','group','0','0',209,2,1),(3585,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',209,2,1),(3586,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1398857487763.jpg','1398857487763.jpg',209,2,1),(3587,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000054','mpower_0002_000000000054',210,2,1),(3588,NULL,NULL,'Second_page','group','3','3',210,2,1),(3589,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',210,2,1),(3590,NULL,NULL,'Second_page/temperature','group','0','0',210,2,1),(3591,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',210,2,1),(3592,NULL,NULL,'Third_page','group','6','6',210,2,1),(3593,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','58','58',210,2,1),(3594,NULL,NULL,'Third_page/respiratory','group','0','0',210,2,1),(3595,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব বেশি','1',210,2,1),(3596,NULL,NULL,'Third_page/Patient_BP','group','0','0',210,2,1),(3597,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','128','128',210,2,1),(3598,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','58','58',210,2,1),(3599,NULL,NULL,'Fourth_page','group','5','5',210,2,1),(3600,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',210,2,1),(3601,NULL,NULL,'Fourth_page/color','group','0','0',210,2,1),(3602,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',210,2,1),(3603,NULL,NULL,'Fourth_page/consciousness','group','0','0',210,2,1),(3604,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',210,2,1),(3605,NULL,NULL,'Fifth_page','group','3','3',210,2,1),(3606,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','এক পায়ে','2',210,2,1),(3607,NULL,NULL,'Fifth_page/dehydration','group','0','0',210,2,1),(3608,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',210,2,1),(3609,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,210,2,1),(3610,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1399182814790.jpg','1399182814790.jpg',211,1,1),(3611,NULL,NULL,'firstPage','group','3','3',211,1,1),(3612,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Salim','Salim',211,1,1),(3613,NULL,NULL,'firstPage/mobile','group','0','0',211,1,1),(3614,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01726564168','01726564168',211,1,1),(3615,NULL,'রোগীর বয়স','SecondPage','group','6','6',211,1,1),(3616,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,211,1,1),(3617,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','39','39',211,1,1),(3618,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,211,1,1),(3619,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int',NULL,NULL,211,1,1),(3620,NULL,NULL,'SecondPage/gender','group','0','0',211,1,1),(3621,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',211,1,1),(3622,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000008','mpower_0002_000000000008',211,1,1),(3623,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000008','mpower_0002_000000000008',212,2,1),(3624,NULL,NULL,'Second_page','group','3','3',212,2,1),(3625,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','52.0','52.0',212,2,1),(3626,NULL,NULL,'Second_page/temperature','group','0','0',212,2,1),(3627,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','97.0','97.0',212,2,1),(3628,NULL,NULL,'Third_page','group','6','6',212,2,1),(3629,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','75','75',212,2,1),(3630,NULL,NULL,'Third_page/respiratory','group','0','0',212,2,1),(3631,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',212,2,1),(3632,NULL,NULL,'Third_page/Patient_BP','group','0','0',212,2,1),(3633,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','130','130',212,2,1),(3634,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',212,2,1),(3635,NULL,NULL,'Fourth_page','group','5','5',212,2,1),(3636,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',212,2,1),(3637,NULL,NULL,'Fourth_page/color','group','0','0',212,2,1),(3638,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',212,2,1),(3639,NULL,NULL,'Fourth_page/consciousness','group','0','0',212,2,1),(3640,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',212,2,1),(3641,NULL,NULL,'Fifth_page','group','3','3',212,2,1),(3642,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','ইডিমা নেই','1',212,2,1),(3643,NULL,NULL,'Fifth_page/dehydration','group','0','0',212,2,1),(3644,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',212,2,1),(3645,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,212,2,1),(3646,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1399188454360.jpg','1399188454360.jpg',213,1,1),(3647,NULL,NULL,'firstPage','group','3','3',213,1,1),(3648,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Ujjal','Ujjal',213,1,1),(3649,NULL,NULL,'firstPage/mobile','group','0','0',213,1,1),(3650,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01720218581','01720218581',213,1,1),(3651,NULL,'রোগীর বয়স','SecondPage','group','6','6',213,1,1),(3652,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,213,1,1),(3653,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','19','19',213,1,1),(3654,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,213,1,1),(3655,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int',NULL,NULL,213,1,1),(3656,NULL,NULL,'SecondPage/gender','group','0','0',213,1,1),(3657,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',213,1,1),(3658,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000010','mpower_0002_000000000010',213,1,1),(3659,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000010','mpower_0002_000000000010',214,2,1),(3660,NULL,NULL,'Second_page','group','3','3',214,2,1),(3661,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','60.0','60.0',214,2,1),(3662,NULL,NULL,'Second_page/temperature','group','0','0',214,2,1),(3663,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','100.0','100.0',214,2,1),(3664,NULL,NULL,'Third_page','group','6','6',214,2,1),(3665,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','75','75',214,2,1),(3666,NULL,NULL,'Third_page/respiratory','group','0','0',214,2,1),(3667,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',214,2,1),(3668,NULL,NULL,'Third_page/Patient_BP','group','0','0',214,2,1),(3669,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','130','130',214,2,1),(3670,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','90','90',214,2,1),(3671,NULL,NULL,'Fourth_page','group','5','5',214,2,1),(3672,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',214,2,1),(3673,NULL,NULL,'Fourth_page/color','group','0','0',214,2,1),(3674,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',214,2,1),(3675,NULL,NULL,'Fourth_page/consciousness','group','0','0',214,2,1),(3676,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',214,2,1),(3677,NULL,NULL,'Fifth_page','group','3','3',214,2,1),(3678,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','ইডিমা নেই','1',214,2,1),(3679,NULL,NULL,'Fifth_page/dehydration','group','0','0',214,2,1),(3680,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',214,2,1),(3681,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,214,2,1),(3682,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1399189635397.jpg','1399189635397.jpg',215,1,1),(3683,NULL,NULL,'firstPage','group','3','3',215,1,1),(3684,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Salim','Salim',215,1,1),(3685,NULL,NULL,'firstPage/mobile','group','0','0',215,1,1),(3686,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01726564168','01726564168',215,1,1),(3687,NULL,'রোগীর বয়স','SecondPage','group','6','6',215,1,1),(3688,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,215,1,1),(3689,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','40','40',215,1,1),(3690,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,215,1,1),(3691,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int',NULL,NULL,215,1,1),(3692,NULL,NULL,'SecondPage/gender','group','0','0',215,1,1),(3693,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',215,1,1),(3694,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000073','mpower_0002_000000000073',215,1,1),(3695,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000073','mpower_0002_000000000073',216,2,1),(3696,NULL,NULL,'Second_page','group','3','3',216,2,1),(3697,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','52.0','52.0',216,2,1),(3698,NULL,NULL,'Second_page/temperature','group','0','0',216,2,1),(3699,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','99.0','99.0',216,2,1),(3700,NULL,NULL,'Third_page','group','6','6',216,2,1),(3701,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','76','76',216,2,1),(3702,NULL,NULL,'Third_page/respiratory','group','0','0',216,2,1),(3703,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',216,2,1),(3704,NULL,NULL,'Third_page/Patient_BP','group','0','0',216,2,1),(3705,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',216,2,1),(3706,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',216,2,1),(3707,NULL,NULL,'Fourth_page','group','5','5',216,2,1),(3708,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',216,2,1),(3709,NULL,NULL,'Fourth_page/color','group','0','0',216,2,1),(3710,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',216,2,1),(3711,NULL,NULL,'Fourth_page/consciousness','group','0','0',216,2,1),(3712,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',216,2,1),(3713,NULL,NULL,'Fifth_page','group','3','3',216,2,1),(3714,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','ইডিমা নেই','1',216,2,1),(3715,NULL,NULL,'Fifth_page/dehydration','group','0','0',216,2,1),(3716,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',216,2,1),(3717,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1399190000274.jpg','1399190000274.jpg',216,2,1),(3718,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_proshanto','test_proshanto',217,2,1),(3719,NULL,NULL,'Second_page','group','3','3',217,2,1),(3720,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','85.0','85.0',217,2,1),(3721,NULL,NULL,'Second_page/temperature','group','0','0',217,2,1),(3722,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.5','96.5',217,2,1),(3723,NULL,NULL,'Third_page','group','6','6',217,2,1),(3724,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','100','100',217,2,1),(3725,NULL,NULL,'Third_page/respiratory','group','0','0',217,2,1),(3726,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব বেশি','1',217,2,1),(3727,NULL,NULL,'Third_page/Patient_BP','group','0','0',217,2,1),(3728,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','115','115',217,2,1),(3729,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','95','95',217,2,1),(3730,NULL,NULL,'Fourth_page','group','5','5',217,2,1),(3731,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',217,2,1),(3732,NULL,NULL,'Fourth_page/color','group','0','0',217,2,1),(3733,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',217,2,1),(3734,NULL,NULL,'Fourth_page/consciousness','group','0','0',217,2,1),(3735,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',217,2,1),(3736,NULL,NULL,'Fifth_page','group','3','3',217,2,1),(3737,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','পেটে','5',217,2,1),(3738,NULL,NULL,'Fifth_page/dehydration','group','0','0',217,2,1),(3739,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',217,2,1),(3740,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,217,2,1),(3741,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1399266320393.jpg','1399266320393.jpg',218,1,1),(3742,NULL,NULL,'firstPage','group','3','3',218,1,1),(3743,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Repon','Repon',218,1,1),(3744,NULL,NULL,'firstPage/mobile','group','0','0',218,1,1),(3745,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01713568180','01713568180',218,1,1),(3746,NULL,'রোগীর বয়স','SecondPage','group','6','6',218,1,1),(3747,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,218,1,1),(3748,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','30','30',218,1,1),(3749,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,218,1,1),(3750,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int',NULL,NULL,218,1,1),(3751,NULL,NULL,'SecondPage/gender','group','0','0',218,1,1),(3752,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',218,1,1),(3753,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000053','mpower_0002_000000000053',218,1,1),(3754,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000053','mpower_0002_000000000053',219,2,1),(3755,NULL,NULL,'Second_page','group','3','3',219,2,1),(3756,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','50.0','50.0',219,2,1),(3757,NULL,NULL,'Second_page/temperature','group','0','0',219,2,1),(3758,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','97.0','97.0',219,2,1),(3759,NULL,NULL,'Third_page','group','6','6',219,2,1),(3760,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','85','85',219,2,1),(3761,NULL,NULL,'Third_page/respiratory','group','0','0',219,2,1),(3762,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',219,2,1),(3763,NULL,NULL,'Third_page/Patient_BP','group','0','0',219,2,1),(3764,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','125','125',219,2,1),(3765,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','85','85',219,2,1),(3766,NULL,NULL,'Fourth_page','group','5','5',219,2,1),(3767,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',219,2,1),(3768,NULL,NULL,'Fourth_page/color','group','0','0',219,2,1),(3769,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',219,2,1),(3770,NULL,NULL,'Fourth_page/consciousness','group','0','0',219,2,1),(3771,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',219,2,1),(3772,NULL,NULL,'Fifth_page','group','3','3',219,2,1),(3773,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','ইডিমা নেই','1',219,2,1),(3774,NULL,NULL,'Fifth_page/dehydration','group','0','0',219,2,1),(3775,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',219,2,1),(3776,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,219,2,1),(3777,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1399272200189.jpg','1399272200189.jpg',220,1,1),(3778,NULL,NULL,'firstPage','group','3','3',220,1,1),(3779,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Ronjon Debnarh','Ronjon Debnarh',220,1,1),(3780,NULL,NULL,'firstPage/mobile','group','0','0',220,1,1),(3781,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01756744607','01756744607',220,1,1),(3782,NULL,'রোগীর বয়স','SecondPage','group','6','6',220,1,1),(3783,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,220,1,1),(3784,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','20','20',220,1,1),(3785,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,220,1,1),(3786,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int',NULL,NULL,220,1,1),(3787,NULL,NULL,'SecondPage/gender','group','0','0',220,1,1),(3788,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',220,1,1),(3789,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000021','mpower_0002_000000000021',220,1,1),(3790,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000021','mpower_0002_000000000021',221,2,1),(3791,NULL,NULL,'Second_page','group','3','3',221,2,1),(3792,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',221,2,1),(3793,NULL,NULL,'Second_page/temperature','group','0','0',221,2,1),(3794,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',221,2,1),(3795,NULL,NULL,'Third_page','group','6','6',221,2,1),(3796,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','75','75',221,2,1),(3797,NULL,NULL,'Third_page/respiratory','group','0','0',221,2,1),(3798,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',221,2,1),(3799,NULL,NULL,'Third_page/Patient_BP','group','0','0',221,2,1),(3800,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',221,2,1),(3801,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','85','85',221,2,1),(3802,NULL,NULL,'Fourth_page','group','5','5',221,2,1),(3803,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',221,2,1),(3804,NULL,NULL,'Fourth_page/color','group','0','0',221,2,1),(3805,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',221,2,1),(3806,NULL,NULL,'Fourth_page/consciousness','group','0','0',221,2,1),(3807,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',221,2,1),(3808,NULL,NULL,'Fifth_page','group','3','3',221,2,1),(3809,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','ইডিমা নেই','1',221,2,1),(3810,NULL,NULL,'Fifth_page/dehydration','group','0','0',221,2,1),(3811,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',221,2,1),(3812,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,221,2,1),(3813,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1399272671205.jpg','1399272671205.jpg',222,1,1),(3814,NULL,NULL,'firstPage','group','3','3',222,1,1),(3815,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Salim','Salim',222,1,1),(3816,NULL,NULL,'firstPage/mobile','group','0','0',222,1,1),(3817,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01726564168','01726564168',222,1,1),(3818,NULL,'রোগীর বয়স','SecondPage','group','6','6',222,1,1),(3819,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,222,1,1),(3820,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','39','39',222,1,1),(3821,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,222,1,1),(3822,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int',NULL,NULL,222,1,1),(3823,NULL,NULL,'SecondPage/gender','group','0','0',222,1,1),(3824,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',222,1,1),(3825,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000124','mpower_0002_000000000124',222,1,1),(3826,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1399276591895.jpg','1399276591895.jpg',223,1,1),(3827,NULL,NULL,'firstPage','group','3','3',223,1,1),(3828,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Test Auto','Test Auto',223,1,1),(3829,NULL,NULL,'firstPage/mobile','group','0','0',223,1,1),(3830,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','11111111111','11111111111',223,1,1),(3831,NULL,'রোগীর বয়স','SecondPage','group','6','6',223,1,1),(3832,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,223,1,1),(3833,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','11','11',223,1,1),(3834,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','11','11',223,1,1),(3835,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int','11','11',223,1,1),(3836,NULL,NULL,'SecondPage/gender','group','0','0',223,1,1),(3837,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',223,1,1),(3838,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_auto','test_auto',223,1,1),(3839,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_auto','test_auto',224,2,1),(3840,NULL,NULL,'Second_page','group','3','3',224,2,1),(3841,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','111.0','111.0',224,2,1),(3842,NULL,NULL,'Second_page/temperature','group','0','0',224,2,1),(3843,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','101.1','101.1',224,2,1),(3844,NULL,NULL,'Third_page','group','6','6',224,2,1),(3845,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','111','111',224,2,1),(3846,NULL,NULL,'Third_page/respiratory','group','0','0',224,2,1),(3847,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',224,2,1),(3848,NULL,NULL,'Third_page/Patient_BP','group','0','0',224,2,1),(3849,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','111','111',224,2,1),(3850,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','101','101',224,2,1),(3851,NULL,NULL,'Fourth_page','group','5','5',224,2,1),(3852,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',224,2,1),(3853,NULL,NULL,'Fourth_page/color','group','0','0',224,2,1),(3854,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','সায়ানোসিস (নীলচে ভাব)','4',224,2,1),(3855,NULL,NULL,'Fourth_page/consciousness','group','0','0',224,2,1),(3856,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অজ্ঞান','3',224,2,1),(3857,NULL,NULL,'Fifth_page','group','3','3',224,2,1),(3858,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','জননাঙ্গে','6',224,2,1),(3859,NULL,NULL,'Fifth_page/dehydration','group','0','0',224,2,1),(3860,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',224,2,1),(3861,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,224,2,1),(3862,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_auto','test_auto',225,2,1),(3863,NULL,NULL,'Second_page','group','3','3',225,2,1),(3864,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','58.0','58.0',225,2,1),(3865,NULL,NULL,'Second_page/temperature','group','0','0',225,2,1),(3866,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',225,2,1),(3867,NULL,NULL,'Third_page','group','6','6',225,2,1),(3868,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','86','86',225,2,1),(3869,NULL,NULL,'Third_page/respiratory','group','0','0',225,2,1),(3870,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',225,2,1),(3871,NULL,NULL,'Third_page/Patient_BP','group','0','0',225,2,1),(3872,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',225,2,1),(3873,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',225,2,1),(3874,NULL,NULL,'Fourth_page','group','5','5',225,2,1),(3875,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',225,2,1),(3876,NULL,NULL,'Fourth_page/color','group','0','0',225,2,1),(3877,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',225,2,1),(3878,NULL,NULL,'Fourth_page/consciousness','group','0','0',225,2,1),(3879,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অজ্ঞান','3',225,2,1),(3880,NULL,NULL,'Fifth_page','group','3','3',225,2,1),(3881,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','মুখ (চোখের চারপাশে)','4',225,2,1),(3882,NULL,NULL,'Fifth_page/dehydration','group','0','0',225,2,1),(3883,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',225,2,1),(3884,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,225,2,1),(3885,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_auto','test_auto',226,2,1),(3886,NULL,NULL,'Second_page','group','3','3',226,2,1),(3887,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','58.0','58.0',226,2,1),(3888,NULL,NULL,'Second_page/temperature','group','0','0',226,2,1),(3889,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',226,2,1),(3890,NULL,NULL,'Third_page','group','6','6',226,2,1),(3891,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','86','86',226,2,1),(3892,NULL,NULL,'Third_page/respiratory','group','0','0',226,2,1),(3893,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',226,2,1),(3894,NULL,NULL,'Third_page/Patient_BP','group','0','0',226,2,1),(3895,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',226,2,1),(3896,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',226,2,1),(3897,NULL,NULL,'Fourth_page','group','5','5',226,2,1),(3898,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',226,2,1),(3899,NULL,NULL,'Fourth_page/color','group','0','0',226,2,1),(3900,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',226,2,1),(3901,NULL,NULL,'Fourth_page/consciousness','group','0','0',226,2,1),(3902,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অজ্ঞান','3',226,2,1),(3903,NULL,NULL,'Fifth_page','group','3','3',226,2,1),(3904,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','মুখ (চোখের চারপাশে)','4',226,2,1),(3905,NULL,NULL,'Fifth_page/dehydration','group','0','0',226,2,1),(3906,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',226,2,1),(3907,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,226,2,1),(3908,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_auto','test_auto',227,2,1),(3909,NULL,NULL,'Second_page','group','3','3',227,2,1),(3910,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','58.0','58.0',227,2,1),(3911,NULL,NULL,'Second_page/temperature','group','0','0',227,2,1),(3912,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',227,2,1),(3913,NULL,NULL,'Third_page','group','6','6',227,2,1),(3914,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','86','86',227,2,1),(3915,NULL,NULL,'Third_page/respiratory','group','0','0',227,2,1),(3916,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',227,2,1),(3917,NULL,NULL,'Third_page/Patient_BP','group','0','0',227,2,1),(3918,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',227,2,1),(3919,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',227,2,1),(3920,NULL,NULL,'Fourth_page','group','5','5',227,2,1),(3921,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',227,2,1),(3922,NULL,NULL,'Fourth_page/color','group','0','0',227,2,1),(3923,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',227,2,1),(3924,NULL,NULL,'Fourth_page/consciousness','group','0','0',227,2,1),(3925,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অজ্ঞান','3',227,2,1),(3926,NULL,NULL,'Fifth_page','group','3','3',227,2,1),(3927,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','মুখ (চোখের চারপাশে)','4',227,2,1),(3928,NULL,NULL,'Fifth_page/dehydration','group','0','0',227,2,1),(3929,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',227,2,1),(3930,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,227,2,1),(3931,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_auto','test_auto',228,2,1),(3932,NULL,NULL,'Second_page','group','3','3',228,2,1),(3933,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','58.0','58.0',228,2,1),(3934,NULL,NULL,'Second_page/temperature','group','0','0',228,2,1),(3935,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',228,2,1),(3936,NULL,NULL,'Third_page','group','6','6',228,2,1),(3937,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','86','86',228,2,1),(3938,NULL,NULL,'Third_page/respiratory','group','0','0',228,2,1),(3939,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',228,2,1),(3940,NULL,NULL,'Third_page/Patient_BP','group','0','0',228,2,1),(3941,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',228,2,1),(3942,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',228,2,1),(3943,NULL,NULL,'Fourth_page','group','5','5',228,2,1),(3944,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',228,2,1),(3945,NULL,NULL,'Fourth_page/color','group','0','0',228,2,1),(3946,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',228,2,1),(3947,NULL,NULL,'Fourth_page/consciousness','group','0','0',228,2,1),(3948,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অজ্ঞান','3',228,2,1),(3949,NULL,NULL,'Fifth_page','group','3','3',228,2,1),(3950,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','মুখ (চোখের চারপাশে)','4',228,2,1),(3951,NULL,NULL,'Fifth_page/dehydration','group','0','0',228,2,1),(3952,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',228,2,1),(3953,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,228,2,1),(3954,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_auto','test_auto',229,2,1),(3955,NULL,NULL,'Second_page','group','3','3',229,2,1),(3956,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','58.0','58.0',229,2,1),(3957,NULL,NULL,'Second_page/temperature','group','0','0',229,2,1),(3958,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','99.0','99.0',229,2,1),(3959,NULL,NULL,'Third_page','group','6','6',229,2,1),(3960,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','58','58',229,2,1),(3961,NULL,NULL,'Third_page/respiratory','group','0','0',229,2,1),(3962,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব কম','3',229,2,1),(3963,NULL,NULL,'Third_page/Patient_BP','group','0','0',229,2,1),(3964,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',229,2,1),(3965,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',229,2,1),(3966,NULL,NULL,'Fourth_page','group','5','5',229,2,1),(3967,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','খুব অসুস্থ','3',229,2,1),(3968,NULL,NULL,'Fourth_page/color','group','0','0',229,2,1),(3969,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',229,2,1),(3970,NULL,NULL,'Fourth_page/consciousness','group','0','0',229,2,1),(3971,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',229,2,1),(3972,NULL,NULL,'Fifth_page','group','3','3',229,2,1),(3973,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','জননাঙ্গে','6',229,2,1),(3974,NULL,NULL,'Fifth_page/dehydration','group','0','0',229,2,1),(3975,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',229,2,1),(3976,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,229,2,1),(3977,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_auto','test_auto',230,2,1),(3978,NULL,NULL,'Second_page','group','3','3',230,2,1),(3979,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','58.0','58.0',230,2,1),(3980,NULL,NULL,'Second_page/temperature','group','0','0',230,2,1),(3981,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',230,2,1),(3982,NULL,NULL,'Third_page','group','6','6',230,2,1),(3983,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','88','88',230,2,1),(3984,NULL,NULL,'Third_page/respiratory','group','0','0',230,2,1),(3985,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব বেশি','1',230,2,1),(3986,NULL,NULL,'Third_page/Patient_BP','group','0','0',230,2,1),(3987,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',230,2,1),(3988,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',230,2,1),(3989,NULL,NULL,'Fourth_page','group','5','5',230,2,1),(3990,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',230,2,1),(3991,NULL,NULL,'Fourth_page/color','group','0','0',230,2,1),(3992,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','সায়ানোসিস (নীলচে ভাব)','4',230,2,1),(3993,NULL,NULL,'Fourth_page/consciousness','group','0','0',230,2,1),(3994,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',230,2,1),(3995,NULL,NULL,'Fifth_page','group','3','3',230,2,1),(3996,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','জননাঙ্গে','6',230,2,1),(3997,NULL,NULL,'Fifth_page/dehydration','group','0','0',230,2,1),(3998,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',230,2,1),(3999,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,230,2,1),(4000,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_auto','test_auto',231,2,1),(4001,NULL,NULL,'Second_page','group','3','3',231,2,1),(4002,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','58.0','58.0',231,2,1),(4003,NULL,NULL,'Second_page/temperature','group','0','0',231,2,1),(4004,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',231,2,1),(4005,NULL,NULL,'Third_page','group','6','6',231,2,1),(4006,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','88','88',231,2,1),(4007,NULL,NULL,'Third_page/respiratory','group','0','0',231,2,1),(4008,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',231,2,1),(4009,NULL,NULL,'Third_page/Patient_BP','group','0','0',231,2,1),(4010,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',231,2,1),(4011,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',231,2,1),(4012,NULL,NULL,'Fourth_page','group','5','5',231,2,1),(4013,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',231,2,1),(4014,NULL,NULL,'Fourth_page/color','group','0','0',231,2,1),(4015,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','সায়ানোসিস (নীলচে ভাব)','4',231,2,1),(4016,NULL,NULL,'Fourth_page/consciousness','group','0','0',231,2,1),(4017,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',231,2,1),(4018,NULL,NULL,'Fifth_page','group','3','3',231,2,1),(4019,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','জননাঙ্গে','6',231,2,1),(4020,NULL,NULL,'Fifth_page/dehydration','group','0','0',231,2,1),(4021,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',231,2,1),(4022,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,231,2,1),(4023,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_auto','test_auto',232,2,1),(4024,NULL,NULL,'Second_page','group','3','3',232,2,1),(4025,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','58.0','58.0',232,2,1),(4026,NULL,NULL,'Second_page/temperature','group','0','0',232,2,1),(4027,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','99.0','99.0',232,2,1),(4028,NULL,NULL,'Third_page','group','6','6',232,2,1),(4029,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','69','69',232,2,1),(4030,NULL,NULL,'Third_page/respiratory','group','0','0',232,2,1),(4031,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',232,2,1),(4032,NULL,NULL,'Third_page/Patient_BP','group','0','0',232,2,1),(4033,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',232,2,1),(4034,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',232,2,1),(4035,NULL,NULL,'Fourth_page','group','5','5',232,2,1),(4036,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',232,2,1),(4037,NULL,NULL,'Fourth_page/color','group','0','0',232,2,1),(4038,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','সায়ানোসিস (নীলচে ভাব)','4',232,2,1),(4039,NULL,NULL,'Fourth_page/consciousness','group','0','0',232,2,1),(4040,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',232,2,1),(4041,NULL,NULL,'Fifth_page','group','3','3',232,2,1),(4042,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','জননাঙ্গে','6',232,2,1),(4043,NULL,NULL,'Fifth_page/dehydration','group','0','0',232,2,1),(4044,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',232,2,1),(4045,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,232,2,1),(4046,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_auto','test_auto',233,2,1),(4047,NULL,NULL,'Second_page','group','3','3',233,2,1),(4048,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','85.0','85.0',233,2,1),(4049,NULL,NULL,'Second_page/temperature','group','0','0',233,2,1),(4050,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',233,2,1),(4051,NULL,NULL,'Third_page','group','6','6',233,2,1),(4052,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','85','85',233,2,1),(4053,NULL,NULL,'Third_page/respiratory','group','0','0',233,2,1),(4054,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব বেশি','1',233,2,1),(4055,NULL,NULL,'Third_page/Patient_BP','group','0','0',233,2,1),(4056,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',233,2,1),(4057,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',233,2,1),(4058,NULL,NULL,'Fourth_page','group','5','5',233,2,1),(4059,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',233,2,1),(4060,NULL,NULL,'Fourth_page/color','group','0','0',233,2,1),(4061,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',233,2,1),(4062,NULL,NULL,'Fourth_page/consciousness','group','0','0',233,2,1),(4063,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',233,2,1),(4064,NULL,NULL,'Fifth_page','group','3','3',233,2,1),(4065,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','অন্য কোথাও','7',233,2,1),(4066,NULL,NULL,'Fifth_page/dehydration','group','0','0',233,2,1),(4067,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',233,2,1),(4068,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,233,2,1),(4069,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_auto','test_auto',234,2,1),(4070,NULL,NULL,'Second_page','group','3','3',234,2,1),(4071,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','58.0','58.0',234,2,1),(4072,NULL,NULL,'Second_page/temperature','group','0','0',234,2,1),(4073,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',234,2,1),(4074,NULL,NULL,'Third_page','group','6','6',234,2,1),(4075,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','88','88',234,2,1),(4076,NULL,NULL,'Third_page/respiratory','group','0','0',234,2,1),(4077,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',234,2,1),(4078,NULL,NULL,'Third_page/Patient_BP','group','0','0',234,2,1),(4079,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',234,2,1),(4080,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',234,2,1),(4081,NULL,NULL,'Fourth_page','group','5','5',234,2,1),(4082,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',234,2,1),(4083,NULL,NULL,'Fourth_page/color','group','0','0',234,2,1),(4084,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',234,2,1),(4085,NULL,NULL,'Fourth_page/consciousness','group','0','0',234,2,1),(4086,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অজ্ঞান','3',234,2,1),(4087,NULL,NULL,'Fifth_page','group','3','3',234,2,1),(4088,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','পেটে','5',234,2,1),(4089,NULL,NULL,'Fifth_page/dehydration','group','0','0',234,2,1),(4090,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',234,2,1),(4091,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,234,2,1),(4092,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_auto','test_auto',235,2,1),(4093,NULL,NULL,'Second_page','group','3','3',235,2,1),(4094,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','85.0','85.0',235,2,1),(4095,NULL,NULL,'Second_page/temperature','group','0','0',235,2,1),(4096,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','99.0','99.0',235,2,1),(4097,NULL,NULL,'Third_page','group','6','6',235,2,1),(4098,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','86','86',235,2,1),(4099,NULL,NULL,'Third_page/respiratory','group','0','0',235,2,1),(4100,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',235,2,1),(4101,NULL,NULL,'Third_page/Patient_BP','group','0','0',235,2,1),(4102,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',235,2,1),(4103,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',235,2,1),(4104,NULL,NULL,'Fourth_page','group','5','5',235,2,1),(4105,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',235,2,1),(4106,NULL,NULL,'Fourth_page/color','group','0','0',235,2,1),(4107,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',235,2,1),(4108,NULL,NULL,'Fourth_page/consciousness','group','0','0',235,2,1),(4109,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',235,2,1),(4110,NULL,NULL,'Fifth_page','group','3','3',235,2,1),(4111,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','মুখ (চোখের চারপাশে)','4',235,2,1),(4112,NULL,NULL,'Fifth_page/dehydration','group','0','0',235,2,1),(4113,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',235,2,1),(4114,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,235,2,1),(4115,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1399356111159.jpg','1399356111159.jpg',236,1,1),(4116,NULL,NULL,'firstPage','group','3','3',236,1,1),(4117,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Sunju','Sunju',236,1,1),(4118,NULL,NULL,'firstPage/mobile','group','0','0',236,1,1),(4119,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01944785768','01944785768',236,1,1),(4120,NULL,'রোগীর বয়স','SecondPage','group','6','6',236,1,1),(4121,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,236,1,1),(4122,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','30','30',236,1,1),(4123,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,236,1,1),(4124,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int',NULL,NULL,236,1,1),(4125,NULL,NULL,'SecondPage/gender','group','0','0',236,1,1),(4126,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',236,1,1),(4127,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000081','mpower_0002_000000000081',236,1,1),(4128,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000081','mpower_0002_000000000081',237,2,1),(4129,NULL,NULL,'Second_page','group','3','3',237,2,1),(4130,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',237,2,1),(4131,NULL,NULL,'Second_page/temperature','group','0','0',237,2,1),(4132,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','103.0','103.0',237,2,1),(4133,NULL,NULL,'Third_page','group','6','6',237,2,1),(4134,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','76','76',237,2,1),(4135,NULL,NULL,'Third_page/respiratory','group','0','0',237,2,1),(4136,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব বেশি','1',237,2,1),(4137,NULL,NULL,'Third_page/Patient_BP','group','0','0',237,2,1),(4138,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','130','130',237,2,1),(4139,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','90','90',237,2,1),(4140,NULL,NULL,'Fourth_page','group','5','5',237,2,1),(4141,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','খুব অসুস্থ','3',237,2,1),(4142,NULL,NULL,'Fourth_page/color','group','0','0',237,2,1),(4143,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',237,2,1),(4144,NULL,NULL,'Fourth_page/consciousness','group','0','0',237,2,1),(4145,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',237,2,1),(4146,NULL,NULL,'Fifth_page','group','3','3',237,2,1),(4147,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','ইডিমা নেই','1',237,2,1),(4148,NULL,NULL,'Fifth_page/dehydration','group','0','0',237,2,1),(4149,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',237,2,1),(4150,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1399356606264.jpg','1399356606264.jpg',237,2,1),(4151,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_proshanto','test_proshanto',238,2,1),(4152,NULL,NULL,'Second_page','group','3','3',238,2,1),(4153,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','58.0','58.0',238,2,1),(4154,NULL,NULL,'Second_page/temperature','group','0','0',238,2,1),(4155,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',238,2,1),(4156,NULL,NULL,'Third_page','group','6','6',238,2,1),(4157,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','56','56',238,2,1),(4158,NULL,NULL,'Third_page/respiratory','group','0','0',238,2,1),(4159,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',238,2,1),(4160,NULL,NULL,'Third_page/Patient_BP','group','0','0',238,2,1),(4161,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',238,2,1),(4162,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',238,2,1),(4163,NULL,NULL,'Fourth_page','group','5','5',238,2,1),(4164,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',238,2,1),(4165,NULL,NULL,'Fourth_page/color','group','0','0',238,2,1),(4166,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','সায়ানোসিস (নীলচে ভাব)','4',238,2,1),(4167,NULL,NULL,'Fourth_page/consciousness','group','0','0',238,2,1),(4168,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',238,2,1),(4169,NULL,NULL,'Fifth_page','group','3','3',238,2,1),(4170,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','মুখ (চোখের চারপাশে)','4',238,2,1),(4171,NULL,NULL,'Fifth_page/dehydration','group','0','0',238,2,1),(4172,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',238,2,1),(4173,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,238,2,1),(4174,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1399357705291.jpg','1399357705291.jpg',239,1,1),(4175,NULL,NULL,'firstPage','group','3','3',239,1,1),(4176,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Noyon Mia','Noyon Mia',239,1,1),(4177,NULL,NULL,'firstPage/mobile','group','0','0',239,1,1),(4178,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01741017553','01741017553',239,1,1),(4179,NULL,'রোগীর বয়স','SecondPage','group','6','6',239,1,1),(4180,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,239,1,1),(4181,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','40','40',239,1,1),(4182,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,239,1,1),(4183,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int',NULL,NULL,239,1,1),(4184,NULL,NULL,'SecondPage/gender','group','0','0',239,1,1),(4185,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',239,1,1),(4186,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000051','mpower_0002_000000000051',239,1,1),(4187,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000051','mpower_0002_000000000051',240,2,1),(4188,NULL,NULL,'Second_page','group','3','3',240,2,1),(4189,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','60.0','60.0',240,2,1),(4190,NULL,NULL,'Second_page/temperature','group','0','0',240,2,1),(4191,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','101.0','101.0',240,2,1),(4192,NULL,NULL,'Third_page','group','6','6',240,2,1),(4193,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','76','76',240,2,1),(4194,NULL,NULL,'Third_page/respiratory','group','0','0',240,2,1),(4195,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব বেশি','1',240,2,1),(4196,NULL,NULL,'Third_page/Patient_BP','group','0','0',240,2,1),(4197,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','135','135',240,2,1),(4198,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','90','90',240,2,1),(4199,NULL,NULL,'Fourth_page','group','5','5',240,2,1),(4200,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',240,2,1),(4201,NULL,NULL,'Fourth_page/color','group','0','0',240,2,1),(4202,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',240,2,1),(4203,NULL,NULL,'Fourth_page/consciousness','group','0','0',240,2,1),(4204,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',240,2,1),(4205,NULL,NULL,'Fifth_page','group','3','3',240,2,1),(4206,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','ইডিমা নেই','1',240,2,1),(4207,NULL,NULL,'Fifth_page/dehydration','group','0','0',240,2,1),(4208,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',240,2,1),(4209,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,240,2,1),(4210,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1399360112390.jpg','1399360112390.jpg',241,1,1),(4211,NULL,NULL,'firstPage','group','3','3',241,1,1),(4212,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Walton','Walton',241,1,1),(4213,NULL,NULL,'firstPage/mobile','group','0','0',241,1,1),(4214,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','11111111111','11111111111',241,1,1),(4215,NULL,'রোগীর বয়স','SecondPage','group','6','6',241,1,1),(4216,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,241,1,1),(4217,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','33','33',241,1,1),(4218,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,241,1,1),(4219,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int',NULL,NULL,241,1,1),(4220,NULL,NULL,'SecondPage/gender','group','0','0',241,1,1),(4221,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',241,1,1),(4222,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_proshanto_1','test_proshanto_1',241,1,1),(4223,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1399360367800.jpg','1399360367800.jpg',242,1,1),(4224,NULL,NULL,'firstPage','group','3','3',242,1,1),(4225,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Test','Test',242,1,1),(4226,NULL,NULL,'firstPage/mobile','group','0','0',242,1,1),(4227,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','53562356235','53562356235',242,1,1),(4228,NULL,'রোগীর বয়স','SecondPage','group','6','6',242,1,1),(4229,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,242,1,1),(4230,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','56','56',242,1,1),(4231,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','10','10',242,1,1),(4232,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int','15','15',242,1,1),(4233,NULL,NULL,'SecondPage/gender','group','0','0',242,1,1),(4234,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',242,1,1),(4235,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_987654','test_987654',242,1,1),(4236,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_987654','test_987654',243,2,1),(4237,NULL,NULL,'Second_page','group','3','3',243,2,1),(4238,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','56.0','56.0',243,2,1),(4239,NULL,NULL,'Second_page/temperature','group','0','0',243,2,1),(4240,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',243,2,1),(4241,NULL,NULL,'Third_page','group','6','6',243,2,1),(4242,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','58','58',243,2,1),(4243,NULL,NULL,'Third_page/respiratory','group','0','0',243,2,1),(4244,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',243,2,1),(4245,NULL,NULL,'Third_page/Patient_BP','group','0','0',243,2,1),(4246,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',243,2,1),(4247,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',243,2,1),(4248,NULL,NULL,'Fourth_page','group','5','5',243,2,1),(4249,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',243,2,1),(4250,NULL,NULL,'Fourth_page/color','group','0','0',243,2,1),(4251,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','সায়ানোসিস (নীলচে ভাব)','4',243,2,1),(4252,NULL,NULL,'Fourth_page/consciousness','group','0','0',243,2,1),(4253,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',243,2,1),(4254,NULL,NULL,'Fifth_page','group','3','3',243,2,1),(4255,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','মুখ (চোখের চারপাশে)','4',243,2,1),(4256,NULL,NULL,'Fifth_page/dehydration','group','0','0',243,2,1),(4257,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',243,2,1),(4258,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1399360678874.jpg','1399360678874.jpg',243,2,1),(4259,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_987654','test_987654',244,2,1),(4260,NULL,NULL,'Second_page','group','3','3',244,2,1),(4261,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','58.0','58.0',244,2,1),(4262,NULL,NULL,'Second_page/temperature','group','0','0',244,2,1),(4263,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',244,2,1),(4264,NULL,NULL,'Third_page','group','6','6',244,2,1),(4265,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','56','56',244,2,1),(4266,NULL,NULL,'Third_page/respiratory','group','0','0',244,2,1),(4267,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব কম','3',244,2,1),(4268,NULL,NULL,'Third_page/Patient_BP','group','0','0',244,2,1),(4269,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',244,2,1),(4270,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',244,2,1),(4271,NULL,NULL,'Fourth_page','group','5','5',244,2,1),(4272,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',244,2,1),(4273,NULL,NULL,'Fourth_page/color','group','0','0',244,2,1),(4274,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',244,2,1),(4275,NULL,NULL,'Fourth_page/consciousness','group','0','0',244,2,1),(4276,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',244,2,1),(4277,NULL,NULL,'Fifth_page','group','3','3',244,2,1),(4278,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','মুখ (চোখের চারপাশে)','4',244,2,1),(4279,NULL,NULL,'Fifth_page/dehydration','group','0','0',244,2,1),(4280,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',244,2,1),(4281,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,244,2,1),(4282,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_proshanto','test_proshanto',245,2,1),(4283,NULL,NULL,'Second_page','group','3','3',245,2,1),(4284,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','58.0','58.0',245,2,1),(4285,NULL,NULL,'Second_page/temperature','group','0','0',245,2,1),(4286,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',245,2,1),(4287,NULL,NULL,'Third_page','group','6','6',245,2,1),(4288,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','58','58',245,2,1),(4289,NULL,NULL,'Third_page/respiratory','group','0','0',245,2,1),(4290,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',245,2,1),(4291,NULL,NULL,'Third_page/Patient_BP','group','0','0',245,2,1),(4292,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',245,2,1),(4293,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',245,2,1),(4294,NULL,NULL,'Fourth_page','group','5','5',245,2,1),(4295,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',245,2,1),(4296,NULL,NULL,'Fourth_page/color','group','0','0',245,2,1),(4297,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','সায়ানোসিস (নীলচে ভাব)','4',245,2,1),(4298,NULL,NULL,'Fourth_page/consciousness','group','0','0',245,2,1),(4299,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',245,2,1),(4300,NULL,NULL,'Fifth_page','group','3','3',245,2,1),(4301,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','পেটে','5',245,2,1),(4302,NULL,NULL,'Fifth_page/dehydration','group','0','0',245,2,1),(4303,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',245,2,1),(4304,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1399364324135.jpg','1399364324135.jpg',245,2,1),(4305,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_proshanto','test_proshanto',246,2,1),(4306,NULL,NULL,'Second_page','group','3','3',246,2,1),(4307,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','99.0','99.0',246,2,1),(4308,NULL,NULL,'Second_page/temperature','group','0','0',246,2,1),(4309,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',246,2,1),(4310,NULL,NULL,'Third_page','group','6','6',246,2,1),(4311,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','88','88',246,2,1),(4312,NULL,NULL,'Third_page/respiratory','group','0','0',246,2,1),(4313,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',246,2,1),(4314,NULL,NULL,'Third_page/Patient_BP','group','0','0',246,2,1),(4315,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',246,2,1),(4316,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',246,2,1),(4317,NULL,NULL,'Fourth_page','group','5','5',246,2,1),(4318,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','খুব অসুস্থ','3',246,2,1),(4319,NULL,NULL,'Fourth_page/color','group','0','0',246,2,1),(4320,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','সায়ানোসিস (নীলচে ভাব)','4',246,2,1),(4321,NULL,NULL,'Fourth_page/consciousness','group','0','0',246,2,1),(4322,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',246,2,1),(4323,NULL,NULL,'Fifth_page','group','3','3',246,2,1),(4324,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','দুই পায়ে','3',246,2,1),(4325,NULL,NULL,'Fifth_page/dehydration','group','0','0',246,2,1),(4326,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',246,2,1),(4327,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,246,2,1),(4328,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_proshanto','test_proshanto',247,2,1),(4329,NULL,NULL,'Second_page','group','3','3',247,2,1),(4330,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','58.0','58.0',247,2,1),(4331,NULL,NULL,'Second_page/temperature','group','0','0',247,2,1),(4332,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',247,2,1),(4333,NULL,NULL,'Third_page','group','6','6',247,2,1),(4334,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','55','55',247,2,1),(4335,NULL,NULL,'Third_page/respiratory','group','0','0',247,2,1),(4336,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',247,2,1),(4337,NULL,NULL,'Third_page/Patient_BP','group','0','0',247,2,1),(4338,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',247,2,1),(4339,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',247,2,1),(4340,NULL,NULL,'Fourth_page','group','5','5',247,2,1),(4341,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',247,2,1),(4342,NULL,NULL,'Fourth_page/color','group','0','0',247,2,1),(4343,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',247,2,1),(4344,NULL,NULL,'Fourth_page/consciousness','group','0','0',247,2,1),(4345,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',247,2,1),(4346,NULL,NULL,'Fifth_page','group','3','3',247,2,1),(4347,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','পেটে','5',247,2,1),(4348,NULL,NULL,'Fifth_page/dehydration','group','0','0',247,2,1),(4349,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',247,2,1),(4350,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,247,2,1),(4351,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000124','mpower_0002_000000000124',248,2,1),(4352,NULL,NULL,'Second_page','group','3','3',248,2,1),(4353,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','60.0','60.0',248,2,1),(4354,NULL,NULL,'Second_page/temperature','group','0','0',248,2,1),(4355,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','102.0','102.0',248,2,1),(4356,NULL,NULL,'Third_page','group','6','6',248,2,1),(4357,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','98','98',248,2,1),(4358,NULL,NULL,'Third_page/respiratory','group','0','0',248,2,1),(4359,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব বেশি','1',248,2,1),(4360,NULL,NULL,'Third_page/Patient_BP','group','0','0',248,2,1),(4361,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',248,2,1),(4362,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','85','85',248,2,1),(4363,NULL,NULL,'Fourth_page','group','5','5',248,2,1),(4364,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',248,2,1),(4365,NULL,NULL,'Fourth_page/color','group','0','0',248,2,1),(4366,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',248,2,1),(4367,NULL,NULL,'Fourth_page/consciousness','group','0','0',248,2,1),(4368,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',248,2,1),(4369,NULL,NULL,'Fifth_page','group','3','3',248,2,1),(4370,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','ইডিমা নেই','1',248,2,1),(4371,NULL,NULL,'Fifth_page/dehydration','group','0','0',248,2,1),(4372,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',248,2,1),(4373,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,248,2,1),(4374,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1399450508075.jpg','1399450508075.jpg',249,1,1),(4375,NULL,NULL,'firstPage','group','3','3',249,1,1),(4376,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Yhf','Yhf',249,1,1),(4377,NULL,NULL,'firstPage/mobile','group','0','0',249,1,1),(4378,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','12121212121','12121212121',249,1,1),(4379,NULL,'রোগীর বয়স','SecondPage','group','6','6',249,1,1),(4380,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,249,1,1),(4381,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','55','55',249,1,1),(4382,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,249,1,1),(4383,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int',NULL,NULL,249,1,1),(4384,NULL,NULL,'SecondPage/gender','group','0','0',249,1,1),(4385,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',249,1,1),(4386,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test123125235','test123125235',249,1,1),(4387,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test123125235','test123125235',250,2,1),(4388,NULL,NULL,'Second_page','group','3','3',250,2,1),(4389,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','59.0','59.0',250,2,1),(4390,NULL,NULL,'Second_page/temperature','group','0','0',250,2,1),(4391,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',250,2,1),(4392,NULL,NULL,'Third_page','group','6','6',250,2,1),(4393,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','80','80',250,2,1),(4394,NULL,NULL,'Third_page/respiratory','group','0','0',250,2,1),(4395,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব বেশি','1',250,2,1),(4396,NULL,NULL,'Third_page/Patient_BP','group','0','0',250,2,1),(4397,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',250,2,1),(4398,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',250,2,1),(4399,NULL,NULL,'Fourth_page','group','5','5',250,2,1),(4400,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',250,2,1),(4401,NULL,NULL,'Fourth_page/color','group','0','0',250,2,1),(4402,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','জন্ডিস (হলুদ)','2',250,2,1),(4403,NULL,NULL,'Fourth_page/consciousness','group','0','0',250,2,1),(4404,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',250,2,1),(4405,NULL,NULL,'Fifth_page','group','3','3',250,2,1),(4406,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','এক পায়ে','2',250,2,1),(4407,NULL,NULL,'Fifth_page/dehydration','group','0','0',250,2,1),(4408,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',250,2,1),(4409,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1399450632214.jpg','1399450632214.jpg',250,2,1),(4410,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000054','mpower_0002_000000000054',251,2,1),(4411,NULL,NULL,'Second_page','group','3','3',251,2,1),(4412,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',251,2,1),(4413,NULL,NULL,'Second_page/temperature','group','0','0',251,2,1),(4414,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','98.0','98.0',251,2,1),(4415,NULL,NULL,'Third_page','group','6','6',251,2,1),(4416,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','85','85',251,2,1),(4417,NULL,NULL,'Third_page/respiratory','group','0','0',251,2,1),(4418,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',251,2,1),(4419,NULL,NULL,'Third_page/Patient_BP','group','0','0',251,2,1),(4420,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',251,2,1),(4421,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',251,2,1),(4422,NULL,NULL,'Fourth_page','group','5','5',251,2,1),(4423,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',251,2,1),(4424,NULL,NULL,'Fourth_page/color','group','0','0',251,2,1),(4425,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','সায়ানোসিস (নীলচে ভাব)','4',251,2,1),(4426,NULL,NULL,'Fourth_page/consciousness','group','0','0',251,2,1),(4427,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',251,2,1),(4428,NULL,NULL,'Fifth_page','group','3','3',251,2,1),(4429,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','পেটে','5',251,2,1),(4430,NULL,NULL,'Fifth_page/dehydration','group','0','0',251,2,1),(4431,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',251,2,1),(4432,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1399451784350.jpg','1399451784350.jpg',251,2,1),(4433,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1399460924752.jpg','1399460924752.jpg',252,1,1),(4434,NULL,NULL,'firstPage','group','3','3',252,1,1),(4435,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Sadat','Sadat',252,1,1),(4436,NULL,NULL,'firstPage/mobile','group','0','0',252,1,1),(4437,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','85285285258','85285285258',252,1,1),(4438,NULL,'রোগীর বয়স','SecondPage','group','6','6',252,1,1),(4439,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,252,1,1),(4440,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','28','28',252,1,1),(4441,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,252,1,1),(4442,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int',NULL,NULL,252,1,1),(4443,NULL,NULL,'SecondPage/gender','group','0','0',252,1,1),(4444,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',252,1,1),(4445,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','shammiishere','shammiishere',252,1,1),(4446,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000054','mpower_0002_000000000054',253,2,1),(4447,NULL,NULL,'Second_page','group','3','3',253,2,1),(4448,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','58.0','58.0',253,2,1),(4449,NULL,NULL,'Second_page/temperature','group','0','0',253,2,1),(4450,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',253,2,1),(4451,NULL,NULL,'Third_page','group','6','6',253,2,1),(4452,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','58','58',253,2,1),(4453,NULL,NULL,'Third_page/respiratory','group','0','0',253,2,1),(4454,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব কম','3',253,2,1),(4455,NULL,NULL,'Third_page/Patient_BP','group','0','0',253,2,1),(4456,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',253,2,1),(4457,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',253,2,1),(4458,NULL,NULL,'Fourth_page','group','5','5',253,2,1),(4459,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','খুব অসুস্থ','3',253,2,1),(4460,NULL,NULL,'Fourth_page/color','group','0','0',253,2,1),(4461,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',253,2,1),(4462,NULL,NULL,'Fourth_page/consciousness','group','0','0',253,2,1),(4463,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অজ্ঞান','3',253,2,1),(4464,NULL,NULL,'Fifth_page','group','3','3',253,2,1),(4465,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','পেটে','5',253,2,1),(4466,NULL,NULL,'Fifth_page/dehydration','group','0','0',253,2,1),(4467,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',253,2,1),(4468,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1399461136468.jpg','1399461136468.jpg',253,2,1),(4469,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','test_proshanto','test_proshanto',254,2,1),(4470,NULL,NULL,'Second_page','group','3','3',254,2,1),(4471,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','88.0','88.0',254,2,1),(4472,NULL,NULL,'Second_page/temperature','group','0','0',254,2,1),(4473,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','96.0','96.0',254,2,1),(4474,NULL,NULL,'Third_page','group','6','6',254,2,1),(4475,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','58','58',254,2,1),(4476,NULL,NULL,'Third_page/respiratory','group','0','0',254,2,1),(4477,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',254,2,1),(4478,NULL,NULL,'Third_page/Patient_BP','group','0','0',254,2,1),(4479,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',254,2,1),(4480,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',254,2,1),(4481,NULL,NULL,'Fourth_page','group','5','5',254,2,1),(4482,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',254,2,1),(4483,NULL,NULL,'Fourth_page/color','group','0','0',254,2,1),(4484,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','সায়ানোসিস (নীলচে ভাব)','4',254,2,1),(4485,NULL,NULL,'Fourth_page/consciousness','group','0','0',254,2,1),(4486,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',254,2,1),(4487,NULL,NULL,'Fifth_page','group','3','3',254,2,1),(4488,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','দুই পায়ে','3',254,2,1),(4489,NULL,NULL,'Fifth_page/dehydration','group','0','0',254,2,1),(4490,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',254,2,1),(4491,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1399531379806.jpg','1399531379806.jpg',254,2,1),(4492,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1399551092736.jpg','1399551092736.jpg',255,1,1),(4493,NULL,NULL,'firstPage','group','3','3',255,1,1),(4494,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Alex','Alex',255,1,1),(4495,NULL,NULL,'firstPage/mobile','group','0','0',255,1,1),(4496,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01714555666','01714555666',255,1,1),(4497,NULL,'রোগীর বয়স','SecondPage','group','6','6',255,1,1),(4498,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,255,1,1),(4499,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','28','28',255,1,1),(4500,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int',NULL,NULL,255,1,1),(4501,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int',NULL,NULL,255,1,1),(4502,NULL,NULL,'SecondPage/gender','group','0','0',255,1,1),(4503,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',255,1,1),(4504,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000072','mpower_0002_000000000072',255,1,1),(4505,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','mpower_0002_000000000072','mpower_0002_000000000072',256,2,1),(4506,NULL,NULL,'Second_page','group','3','3',256,2,1),(4507,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','50.0','50.0',256,2,1),(4508,NULL,NULL,'Second_page/temperature','group','0','0',256,2,1),(4509,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','97.0','97.0',256,2,1),(4510,NULL,NULL,'Third_page','group','6','6',256,2,1),(4511,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','70','70',256,2,1),(4512,NULL,NULL,'Third_page/respiratory','group','0','0',256,2,1),(4513,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',256,2,1),(4514,NULL,NULL,'Third_page/Patient_BP','group','0','0',256,2,1),(4515,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',256,2,1),(4516,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',256,2,1),(4517,NULL,NULL,'Fourth_page','group','5','5',256,2,1),(4518,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',256,2,1),(4519,NULL,NULL,'Fourth_page/color','group','0','0',256,2,1),(4520,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',256,2,1),(4521,NULL,NULL,'Fourth_page/consciousness','group','0','0',256,2,1),(4522,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',256,2,1),(4523,NULL,NULL,'Fifth_page','group','3','3',256,2,1),(4524,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','ইডিমা নেই','1',256,2,1),(4525,NULL,NULL,'Fifth_page/dehydration','group','0','0',256,2,1),(4526,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',256,2,1),(4527,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1399551331104.jpg','1399551331104.jpg',256,2,1),(4528,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1400050567908.jpg','1400050567908.jpg',257,1,1),(4529,NULL,NULL,'firstPage','group','3','3',257,1,1),(4530,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Rita','Rita',257,1,1),(4531,NULL,NULL,'firstPage/mobile','group','0','0',257,1,1),(4532,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01912345678','01912345678',257,1,1),(4533,NULL,'রোগীর বয়স','SecondPage','group','6','6',257,1,1),(4534,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,257,1,1),(4535,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','26','26',257,1,1),(4536,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','1','1',257,1,1),(4537,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int','1','1',257,1,1),(4538,NULL,NULL,'SecondPage/gender','group','0','0',257,1,1),(4539,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',257,1,1),(4540,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','rita','rita',257,1,1),(4541,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','rita','rita',258,2,1),(4542,NULL,NULL,'Second_page','group','3','3',258,2,1),(4543,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',258,2,1),(4544,NULL,NULL,'Second_page/temperature','group','0','0',258,2,1),(4545,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','89.0','89.0',258,2,1),(4546,NULL,NULL,'Third_page','group','6','6',258,2,1),(4547,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','35','35',258,2,1),(4548,NULL,NULL,'Third_page/respiratory','group','0','0',258,2,1),(4549,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',258,2,1),(4550,NULL,NULL,'Third_page/Patient_BP','group','0','0',258,2,1),(4551,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',258,2,1),(4552,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',258,2,1),(4553,NULL,NULL,'Fourth_page','group','5','5',258,2,1),(4554,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',258,2,1),(4555,NULL,NULL,'Fourth_page/color','group','0','0',258,2,1),(4556,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',258,2,1),(4557,NULL,NULL,'Fourth_page/consciousness','group','0','0',258,2,1),(4558,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',258,2,1),(4559,NULL,NULL,'Fifth_page','group','3','3',258,2,1),(4560,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','ইডিমা নেই','1',258,2,1),(4561,NULL,NULL,'Fifth_page/dehydration','group','0','0',258,2,1),(4562,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',258,2,1),(4563,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1400050779353.jpg','1400050779353.jpg',258,2,1),(4564,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1400051482755.jpg','1400051482755.jpg',259,1,1),(4565,NULL,NULL,'firstPage','group','3','3',259,1,1),(4566,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Salman','Salman',259,1,1),(4567,NULL,NULL,'firstPage/mobile','group','0','0',259,1,1),(4568,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01912345678','01912345678',259,1,1),(4569,NULL,'রোগীর বয়স','SecondPage','group','6','6',259,1,1),(4570,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,259,1,1),(4571,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','22','22',259,1,1),(4572,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','0','0',259,1,1),(4573,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int','0','0',259,1,1),(4574,NULL,NULL,'SecondPage/gender','group','0','0',259,1,1),(4575,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',259,1,1),(4576,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','Salman','Salman',259,1,1),(4577,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','Salman','Salman',260,2,1),(4578,NULL,NULL,'Second_page','group','3','3',260,2,1),(4579,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','68.0','68.0',260,2,1),(4580,NULL,NULL,'Second_page/temperature','group','0','0',260,2,1),(4581,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','89.0','89.0',260,2,1),(4582,NULL,NULL,'Third_page','group','6','6',260,2,1),(4583,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','45','45',260,2,1),(4584,NULL,NULL,'Third_page/respiratory','group','0','0',260,2,1),(4585,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব বেশি','1',260,2,1),(4586,NULL,NULL,'Third_page/Patient_BP','group','0','0',260,2,1),(4587,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','140','140',260,2,1),(4588,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','90','90',260,2,1),(4589,NULL,NULL,'Fourth_page','group','5','5',260,2,1),(4590,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',260,2,1),(4591,NULL,NULL,'Fourth_page/color','group','0','0',260,2,1),(4592,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',260,2,1),(4593,NULL,NULL,'Fourth_page/consciousness','group','0','0',260,2,1),(4594,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',260,2,1),(4595,NULL,NULL,'Fifth_page','group','3','3',260,2,1),(4596,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','ইডিমা নেই','1',260,2,1),(4597,NULL,NULL,'Fifth_page/dehydration','group','0','0',260,2,1),(4598,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',260,2,1),(4599,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1400051806412.jpg','1400051806412.jpg',260,2,1),(4600,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1400058753870.jpg','1400058753870.jpg',261,1,1),(4601,NULL,NULL,'firstPage','group','3','3',261,1,1),(4602,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Sujan khan','Sujan khan',261,1,1),(4603,NULL,NULL,'firstPage/mobile','group','0','0',261,1,1),(4604,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','08523697410','08523697410',261,1,1),(4605,NULL,'রোগীর বয়স','SecondPage','group','6','6',261,1,1),(4606,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,261,1,1),(4607,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','5','5',261,1,1),(4608,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','6','6',261,1,1),(4609,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int','2','2',261,1,1),(4610,NULL,NULL,'SecondPage/gender','group','0','0',261,1,1),(4611,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',261,1,1),(4612,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','Sujan khan','Sujan khan',261,1,1),(4613,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1400059760590.jpg','1400059760590.jpg',262,1,1),(4614,NULL,NULL,'firstPage','group','3','3',262,1,1),(4615,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Jalaluddin','Jalaluddin',262,1,1),(4616,NULL,NULL,'firstPage/mobile','group','0','0',262,1,1),(4617,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','00000000000','00000000000',262,1,1),(4618,NULL,'রোগীর বয়স','SecondPage','group','6','6',262,1,1),(4619,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,262,1,1),(4620,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','0','0',262,1,1),(4621,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','0','0',262,1,1),(4622,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int','0','0',262,1,1),(4623,NULL,NULL,'SecondPage/gender','group','0','0',262,1,1),(4624,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','পুরুষ','1',262,1,1),(4625,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','jalaluddin','jalaluddin',262,1,1),(4626,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','jalaluddin','jalaluddin',263,2,1),(4627,NULL,NULL,'Second_page','group','3','3',263,2,1),(4628,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','65.0','65.0',263,2,1),(4629,NULL,NULL,'Second_page/temperature','group','0','0',263,2,1),(4630,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','89.0','89.0',263,2,1),(4631,NULL,NULL,'Third_page','group','6','6',263,2,1),(4632,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','40','40',263,2,1),(4633,NULL,NULL,'Third_page/respiratory','group','0','0',263,2,1),(4634,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',263,2,1),(4635,NULL,NULL,'Third_page/Patient_BP','group','0','0',263,2,1),(4636,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','200','200',263,2,1),(4637,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','120','120',263,2,1),(4638,NULL,NULL,'Fourth_page','group','5','5',263,2,1),(4639,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','খুব অসুস্থ','3',263,2,1),(4640,NULL,NULL,'Fourth_page/color','group','0','0',263,2,1),(4641,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',263,2,1),(4642,NULL,NULL,'Fourth_page/consciousness','group','0','0',263,2,1),(4643,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',263,2,1),(4644,NULL,NULL,'Fifth_page','group','3','3',263,2,1),(4645,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','দুই পায়ে','3',263,2,1),(4646,NULL,NULL,'Fifth_page/dehydration','group','0','0',263,2,1),(4647,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',263,2,1),(4648,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1400060799518.jpg','1400060799518.jpg',263,2,1),(4649,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1400138527439.jpg','1400138527439.jpg',264,1,1),(4650,NULL,NULL,'firstPage','group','3','3',264,1,1),(4651,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Bubly','Bubly',264,1,1),(4652,NULL,NULL,'firstPage/mobile','group','0','0',264,1,1),(4653,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','08520852085','08520852085',264,1,1),(4654,NULL,'রোগীর বয়স','SecondPage','group','6','6',264,1,1),(4655,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,264,1,1),(4656,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','0','0',264,1,1),(4657,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','11','11',264,1,1),(4658,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int','3','3',264,1,1),(4659,NULL,NULL,'SecondPage/gender','group','0','0',264,1,1),(4660,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',264,1,1),(4661,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','bubly','bubly',264,1,1),(4662,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','bubly','bubly',265,2,1),(4663,NULL,NULL,'Second_page','group','3','3',265,2,1),(4664,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',265,2,1),(4665,NULL,NULL,'Second_page/temperature','group','0','0',265,2,1),(4666,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','80.0','80.0',265,2,1),(4667,NULL,NULL,'Third_page','group','6','6',265,2,1),(4668,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','250','250',265,2,1),(4669,NULL,NULL,'Third_page/respiratory','group','0','0',265,2,1),(4670,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব বেশি','1',265,2,1),(4671,NULL,NULL,'Third_page/Patient_BP','group','0','0',265,2,1),(4672,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',265,2,1),(4673,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','200','200',265,2,1),(4674,NULL,NULL,'Fourth_page','group','5','5',265,2,1),(4675,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','খুব অসুস্থ','3',265,2,1),(4676,NULL,NULL,'Fourth_page/color','group','0','0',265,2,1),(4677,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','সায়ানোসিস (নীলচে ভাব)','4',265,2,1),(4678,NULL,NULL,'Fourth_page/consciousness','group','0','0',265,2,1),(4679,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অজ্ঞান','3',265,2,1),(4680,NULL,NULL,'Fifth_page','group','3','3',265,2,1),(4681,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','পেটে','5',265,2,1),(4682,NULL,NULL,'Fifth_page/dehydration','group','0','0',265,2,1),(4683,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',265,2,1),(4684,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,265,2,1),(4685,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','salman','salman',266,2,1),(4686,NULL,NULL,'Second_page','group','3','3',266,2,1),(4687,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','55.0','55.0',266,2,1),(4688,NULL,NULL,'Second_page/temperature','group','0','0',266,2,1),(4689,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','80.0','80.0',266,2,1),(4690,NULL,NULL,'Third_page','group','6','6',266,2,1),(4691,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','222','222',266,2,1),(4692,NULL,NULL,'Third_page/respiratory','group','0','0',266,2,1),(4693,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',266,2,1),(4694,NULL,NULL,'Third_page/Patient_BP','group','0','0',266,2,1),(4695,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','200','200',266,2,1),(4696,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','110','110',266,2,1),(4697,NULL,NULL,'Fourth_page','group','5','5',266,2,1),(4698,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','খুব অসুস্থ','3',266,2,1),(4699,NULL,NULL,'Fourth_page/color','group','0','0',266,2,1),(4700,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','অ্যানিমিয়া (ফ্যাকাশে)','3',266,2,1),(4701,NULL,NULL,'Fourth_page/consciousness','group','0','0',266,2,1),(4702,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',266,2,1),(4703,NULL,NULL,'Fifth_page','group','3','3',266,2,1),(4704,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','মুখ (চোখের চারপাশে)','4',266,2,1),(4705,NULL,NULL,'Fifth_page/dehydration','group','0','0',266,2,1),(4706,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',266,2,1),(4707,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1400148620572.jpg','1400148620572.jpg',266,2,1),(4708,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','salman','salman',267,2,1),(4709,NULL,NULL,'Second_page','group','3','3',267,2,1),(4710,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','62.0','62.0',267,2,1),(4711,NULL,NULL,'Second_page/temperature','group','0','0',267,2,1),(4712,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','89.0','89.0',267,2,1),(4713,NULL,NULL,'Third_page','group','6','6',267,2,1),(4714,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','35','35',267,2,1),(4715,NULL,NULL,'Third_page/respiratory','group','0','0',267,2,1),(4716,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',267,2,1),(4717,NULL,NULL,'Third_page/Patient_BP','group','0','0',267,2,1),(4718,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','110','110',267,2,1),(4719,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',267,2,1),(4720,NULL,NULL,'Fourth_page','group','5','5',267,2,1),(4721,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',267,2,1),(4722,NULL,NULL,'Fourth_page/color','group','0','0',267,2,1),(4723,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',267,2,1),(4724,NULL,NULL,'Fourth_page/consciousness','group','0','0',267,2,1),(4725,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',267,2,1),(4726,NULL,NULL,'Fifth_page','group','3','3',267,2,1),(4727,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','পেটে','5',267,2,1),(4728,NULL,NULL,'Fifth_page/dehydration','group','0','0',267,2,1),(4729,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',267,2,1),(4730,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1400132661397.jpg','1400132661397.jpg',267,2,1),(4731,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','jalaluddin','jalaluddin',268,2,1),(4732,NULL,NULL,'Second_page','group','3','3',268,2,1),(4733,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','89.0','89.0',268,2,1),(4734,NULL,NULL,'Second_page/temperature','group','0','0',268,2,1),(4735,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','89.0','89.0',268,2,1),(4736,NULL,NULL,'Third_page','group','6','6',268,2,1),(4737,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','38','38',268,2,1),(4738,NULL,NULL,'Third_page/respiratory','group','0','0',268,2,1),(4739,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',268,2,1),(4740,NULL,NULL,'Third_page/Patient_BP','group','0','0',268,2,1),(4741,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','120','120',268,2,1),(4742,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','80','80',268,2,1),(4743,NULL,NULL,'Fourth_page','group','5','5',268,2,1),(4744,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',268,2,1),(4745,NULL,NULL,'Fourth_page/color','group','0','0',268,2,1),(4746,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','সায়ানোসিস (নীলচে ভাব)','4',268,2,1),(4747,NULL,NULL,'Fourth_page/consciousness','group','0','0',268,2,1),(4748,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অজ্ঞান','3',268,2,1),(4749,NULL,NULL,'Fifth_page','group','3','3',268,2,1),(4750,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','জননাঙ্গে','6',268,2,1),(4751,NULL,NULL,'Fifth_page/dehydration','group','0','0',268,2,1),(4752,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',268,2,1),(4753,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1400135283213.jpg','1400135283213.jpg',268,2,1),(4754,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','salman','salman',269,2,1),(4755,NULL,NULL,'Second_page','group','3','3',269,2,1),(4756,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','68.0','68.0',269,2,1),(4757,NULL,NULL,'Second_page/temperature','group','0','0',269,2,1),(4758,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','89.0','89.0',269,2,1),(4759,NULL,NULL,'Third_page','group','6','6',269,2,1),(4760,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','50','50',269,2,1),(4761,NULL,NULL,'Third_page/respiratory','group','0','0',269,2,1),(4762,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','খুব বেশি','1',269,2,1),(4763,NULL,NULL,'Third_page/Patient_BP','group','0','0',269,2,1),(4764,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','80','80',269,2,1),(4765,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','120','120',269,2,1),(4766,NULL,NULL,'Fourth_page','group','5','5',269,2,1),(4767,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','অসুস্থ','2',269,2,1),(4768,NULL,NULL,'Fourth_page/color','group','0','0',269,2,1),(4769,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',269,2,1),(4770,NULL,NULL,'Fourth_page/consciousness','group','0','0',269,2,1),(4771,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','জ্ঞান আছে','1',269,2,1),(4772,NULL,NULL,'Fifth_page','group','3','3',269,2,1),(4773,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','পেটে','5',269,2,1),(4774,NULL,NULL,'Fifth_page/dehydration','group','0','0',269,2,1),(4775,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','না','1',269,2,1),(4776,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','binary',NULL,NULL,269,2,1),(4777,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','rita','rita',270,2,1),(4778,NULL,NULL,'Second_page','group','3','3',270,2,1),(4779,NULL,'রোগীর ওজন (কে জি - kg)','Second_page/Patient_Weight_kg','decimal','42.0','42.0',270,2,1),(4780,NULL,NULL,'Second_page/temperature','group','0','0',270,2,1),(4781,NULL,'রোগীর তাপমাত্রা (ফারেনহাইট- F)','Second_page/Patient_Temperature','decimal','89.0','89.0',270,2,1),(4782,NULL,NULL,'Third_page','group','6','6',270,2,1),(4783,NULL,'রোগীর পাল্স (বিট পার মিনিট - bpm)','Third_page/Patient_PulseRate','int','35','35',270,2,1),(4784,NULL,NULL,'Third_page/respiratory','group','0','0',270,2,1),(4785,NULL,'রোগীর শ্বাস-প্রশ্বাস','Third_page/Patient_RespiratoryRate','select1','স্বাভাবিক','2',270,2,1),(4786,NULL,NULL,'Third_page/Patient_BP','group','0','0',270,2,1),(4787,NULL,'রোগীর ব্লাড প্রেসার সিস্টলিক (mmHg)','Third_page/Patient_BP_Systolic','int','70','70',270,2,1),(4788,NULL,'রোগীর ব্লাড প্রেসার ডায়াস্টলিক (mmHg)','Third_page/Patient_BP_Diastolic','int','120','120',270,2,1),(4789,NULL,NULL,'Fourth_page','group','5','5',270,2,1),(4790,NULL,'রোগীর অবস্থা কেমন?','Fourth_page/Patient_Appearance','select1','স্বাভাবিক','1',270,2,1),(4791,NULL,NULL,'Fourth_page/color','group','0','0',270,2,1),(4792,NULL,'রোগীর শরীরের রঙ দেখে কি মনে হচ্ছে?','Fourth_page/Patient_Color','select1','স্বাভাবিক','1',270,2,1),(4793,NULL,NULL,'Fourth_page/consciousness','group','0','0',270,2,1),(4794,NULL,'রোগীর জ্ঞান এর অবস্থা?','Fourth_page/Patient_Consciousness','select1','অল্প জ্ঞান আছে','2',270,2,1),(4795,NULL,NULL,'Fifth_page','group','3','3',270,2,1),(4796,NULL,'রোগীর ইডিমা আছে কি না? থাকলে কোথায় আছে?','Fifth_page/Patient_Edema','select1','অন্য কোথাও','7',270,2,1),(4797,NULL,NULL,'Fifth_page/dehydration','group','0','0',270,2,1),(4798,NULL,'রোগীর পানি শূন্যতা আছে কি না?','Fifth_page/Patient_Dehydration','select1','হ্যাঁ','2',270,2,1),(4799,NULL,'প্রযোজ্য ক্ষেত্রে, আক্রান্ত / ক্ষত স্থানের ছবি তুলুন','Patient_picture','image','1400153887646.jpg','1400153887646.jpg',270,2,1),(4800,NULL,'রোগীর ছবি তুলুন','Patient_Image','image','1400408436464.jpg','1400408436464.jpg',271,1,1),(4801,NULL,NULL,'firstPage','group','3','3',271,1,1),(4802,NULL,'রোগীর নাম লিখুন','firstPage/Patient_Name','string','Shammi','Shammi',271,1,1),(4803,NULL,NULL,'firstPage/mobile','group','0','0',271,1,1),(4804,NULL,'রোগীর ফোন নম্বর লিখুন','firstPage/Patient_MobileNo','string','01975759759','01975759759',271,1,1),(4805,NULL,'রোগীর বয়স','SecondPage','group','6','6',271,1,1),(4806,NULL,'রোগীর বয়স ২ বছরের কম হলে \"মাস\" প্রযোজ্য এবং ২ মাসের কম হলে \"দিন\" প্রযোজ্য। বয়স ১ বছরের কম হলে বছরের ঘরে \'০\' লিখুন এবং প্রযোজ্য ক্ষেত্রে \'মাস\'এর ঘরে কত মাস এবং \'দিন\' এর ঘরে কত দিন তা লিখুন','SecondPage/Age_note','string',NULL,NULL,271,1,1),(4807,NULL,'রোগীর বয়স (বছর)','SecondPage/Patient_Age_Year','int','28','28',271,1,1),(4808,NULL,'রোগীর বয়স (মাস)','SecondPage/Patient_Age_Month','int','2','2',271,1,1),(4809,NULL,'রোগীর বয়স (দিন)','SecondPage/Patient_Age_Day','int',NULL,NULL,271,1,1),(4810,NULL,NULL,'SecondPage/gender','group','0','0',271,1,1),(4811,NULL,'রোগীর লিঙ্গ','SecondPage/Patient_Gender','select1','মহিলা','2',271,1,1),(4812,NULL,'রোগীর কার্ড স্ক্যান করুন','Patient_ID','barcode','ADp:00749','ADp:00749',271,1,1);
/*!40000 ALTER TABLE `UnitData` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `patients`
--
DROP TABLE IF EXISTS `patients`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `patients` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`age` varchar(255) DEFAULT NULL,
`code` varchar(255) DEFAULT NULL,
`created` datetime DEFAULT NULL,
`gender` int(11) NOT NULL,
`modified` datetime DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`phone` varchar(255) DEFAULT NULL,
`status` int(11) NOT NULL,
`image` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=113 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `patients`
--
LOCK TABLES `patients` WRITE;
/*!40000 ALTER TABLE `patients` DISABLE KEYS */;
INSERT INTO `patients` VALUES (1,'25 Year(s) 6 Month(s)','mpower_patient_001','2014-03-25 15:33:08',1,'2014-03-25 15:33:08','Sadat Sakif Ahmed','01737233902',1,NULL),(2,'26 Year(s) 5 Month(s)','mpower_pat_02','2014-03-25 16:51:10',1,'2014-03-25 16:51:10','Ahmed Bakr','08523698564',1,NULL),(3,'24 Year(s) 6 Month(s)','sample_patient_1','2014-03-27 13:45:58',1,'2014-03-27 13:45:58','Sadat','01737233902',1,NULL),(4,'21 Year(s) 0 Month(s)','rmp_silvia:123456','2014-03-30 15:44:51',2,'2014-03-30 15:44:51','Amina','01711111111',1,NULL),(5,'3 Year(s) 0 Month(s)','rmp_silvia:1234567','2014-03-30 18:55:40',2,'2014-03-30 18:55:40','Ghghhh%76354333','33333333333',1,NULL),(6,'25 Year(s) 0 Month(s)','105634','2014-03-31 11:49:39',2,'2014-03-31 11:49:39','Silvia','01234567890',1,NULL),(7,'30 Year(s) 6 Month(s)','mpower_patient_005','2014-04-01 11:45:16',1,'2014-04-01 11:45:16','Ahmed and Proshanto','85214796358',1,'1396331087230.jpg'),(8,'28 Year(s) 8 Month(s)','mpower_patient_test','2014-04-03 12:43:18',1,'2014-04-03 12:43:18','Sohel','85236974158',1,'1396507343262.jpg'),(9,'25 Year(s) 5 Month(s)','mpower_patient_demo','2014-04-03 13:39:29',2,'2014-04-03 13:39:29','Sadat','01713311331',1,'1396510595578.jpg'),(10,'27 Year(s) 0 Month(s)','patient:shammi','2014-04-03 20:13:59',2,'2014-04-03 20:13:59','Shammi','01714565565',1,'1396534380972.jpg'),(11,'30 Year(s) 0 Month(s)','mpower_patient_demo_2','2014-04-03 20:39:16',1,'2014-04-03 20:39:16','Iftekhar','85236914785',1,'1396535903303.jpg'),(12,'54 Year(s) 8 Month(s)','testpatient1','2014-04-04 20:29:59',1,'2014-04-04 20:29:59','Test 1','01745858858',1,'1396621770204.jpg'),(13,'25 Year(s) 5 Month(s)','mpower_0002_000000000049','2014-04-05 11:49:20',1,'2014-04-05 11:49:20','Proshanto kumar sorkar','01975759759',1,'1396676704102.jpg'),(14,'25 Year(s) 5 Month(s)','mpower_0002_000000000127','2014-04-06 13:57:40',1,'2014-04-06 13:57:40','Yasser','01975759759',1,'1396770938397.jpg'),(15,'58 Year(s) 8 Month(s)','mpower_patient_010','2014-04-07 13:21:08',1,'2014-04-07 13:21:08','Safat','85653556545',1,'1396855153959.jpg'),(16,'26 Year(s) null Month(s)','android_test','2014-04-07 14:58:53',2,'2014-04-07 14:58:53','Android Test','08523697418',1,'1396861052617.jpg'),(17,'25 Year(s)','android_test_1','2014-04-07 15:06:12',2,'2014-04-07 15:06:12','Test 2','85626358235',1,'1396861543538.jpg'),(18,'58 Year(s) 4 Month(s)','testpatient2','2014-04-08 13:25:00',1,'2014-04-08 13:25:00','Ghbhn','01745885885',1,'1396941843159.jpg'),(19,'58 Year(s)','developer_test_1','2014-04-10 15:02:25',2,'2014-04-10 15:02:25','/()+-*&%$#<>=:;;.,!?\"_ .,\'-_','01725845625',1,'1397120456848.jpg'),(20,'85 Year(s) 7 Month(s)','developer_test_2','2014-04-10 15:06:50',1,'2014-04-10 15:06:50','Sample is rtarded','88666553662',1,'1397120762824.jpg'),(21,'24 Year(s) 6 Month(s)','mpower_0002_000000000040','2014-04-15 16:24:17',2,'2014-04-15 16:24:17','Test Parient','08523698547',1,'1397557334563.jpg'),(22,'25 Year(s) 1 Month(s)','Arif:testpatient','2014-04-16 11:10:07',1,'2014-04-16 11:10:07','Arif','01717648564',1,'1397624736360.jpg'),(23,'29 Year(s) 5 Month(s)','mpower_0002_000000000041','2014-04-17 11:05:53',1,'2014-04-17 11:05:53','Pritsh','01713515966',1,'1397710760856.jpg'),(24,'39 Year(s) 5 Month(s)','mpower_0002_000000000088','2014-04-17 12:01:17',1,'2014-04-17 12:01:17','Salim hossain khan','01726564168',1,'1397713926957.jpg'),(25,'28 Year(s) 8 Month(s)','mpower_0002_000000000071','2014-04-17 13:32:44',2,'2014-04-17 13:32:44','Shammi Shawkat','01975759759',1,'1397719977295.jpg'),(26,'55 Year(s) 4 Month(s)','mpower_0002_000000000054','2014-04-17 14:42:37',1,'2014-04-17 14:42:37','Mozzem hossen','01713599877',1,'1397723926097.jpg'),(27,'36 Year(s) 5 Month(s)','mpower_0002_000000000122','2014-04-17 18:05:31',1,'2014-04-17 18:05:31','Joynal','01713584881',1,'1397735820318.jpg'),(28,'34 Year(s)','mpower_0002_000000000102','2014-04-17 19:10:05',2,'2014-04-17 19:10:05','Jgfddf','01717893915',1,'1397740420898.jpg'),(29,'37 Year(s) 10 Month(s)','mpower_0002_000000000118','2014-04-17 22:38:18',1,'2014-04-17 22:38:18','Hafizur rahman liton','01718329304',1,'1397739606611.jpg'),(30,'30 Year(s) 5 Month(s)','mpower_0002_000000000120','2014-04-18 10:33:21',1,'2014-04-18 10:33:21','Aminul islam','01721405066',1,'1397795404895.jpg'),(31,'1 Year(s) 8 Month(s)','test_22','2014-04-19 12:28:31',1,'2014-04-19 12:28:31','Etyggfff','01764564567',1,'1397889187967.jpg'),(32,'1 Year(s) 5 Month(s)','testpatient:1','2014-04-19 13:29:27',1,'2014-04-19 13:29:27','Sadat test','01717666555',1,'1397892700586.jpg'),(33,'1 Year(s) 8 Month(s)','testpatient:2','2014-04-19 14:07:41',1,'2014-04-19 14:07:41','Fhjkfyiikgh','01717893915',1,'1397894761093.jpg'),(34,'1 Year(s) 11 Month(s)','mpower_0002_000000000013','2014-04-21 15:59:05',1,'2014-04-21 15:59:05','Abdul Karim','01724968467',1,'1398073682029.jpg'),(35,'3 Year(s) 2 Month(s)','mpower_0002_000000000108','2014-04-21 16:16:42',1,'2014-04-21 16:16:42','Rovil','01726564168',1,'1398075100857.jpg'),(36,'37 Year(s) 2 Month(s)','mpower_0002_000000000024','2014-04-21 16:17:40',1,'2014-04-21 16:17:40','Md Jaynal uddin','01713584881',1,'1398075097884.jpg'),(37,'30 Year(s)','mpower_0002_000000000107','2014-04-21 16:18:16',1,'2014-04-21 16:18:16','Kamal khan','01721405066',1,'1398075152187.jpg'),(38,'50 Year(s)','mpower_0002_000000000150','2014-04-21 16:21:14',1,'2014-04-21 16:21:14','Moyazzem Hossen','01713599877',1,'1398075173938.jpg'),(39,'48 Year(s) 2 Month(s)','mpower_0002_000000000106','2014-04-21 16:25:57',1,'2014-04-21 16:25:57','Sha Alam\n\n','01712338637',1,'1398075774999.jpg'),(40,'38 Year(s) 5 Month(s)','mpower_0002_000000000117','2014-04-21 16:29:11',1,'2014-04-21 16:29:11','Khalil','01724968467',1,'1398075942741.jpg'),(41,'40 Year(s)','RMPtest3:rmptest3','2014-04-21 16:31:18',1,'2014-04-21 16:31:18','Liton khanmm','01718329004',1,'1398075936355.jpg'),(42,'40 Year(s) 4 Month(s)','mpower_0002_000000000032','2014-04-21 16:36:18',1,'2014-04-21 16:36:18','md Jaynal','01735881458',1,'1398076397859.jpg'),(43,'28 Year(s)','mpower_0002_000000000129','2014-04-21 16:37:06',1,'2014-04-21 16:37:06','Prithis','01713515966',1,'1398075991127.jpg'),(44,'35 Year(s)','mpower_0002_000000000029','2014-04-21 16:39:33',1,'2014-04-21 16:39:33','Aminul lsham','01721405066',1,'1398076506437.jpg'),(45,'30 Year(s)','mpower_0002_000000000090','2014-04-21 16:41:14',1,'2014-04-21 16:41:14','Panna','01711234567',1,'1398076359381.jpg'),(46,'40 Year(s) 4 Month(s)','mpower_0002_000000000030','2014-04-21 16:44:27',1,'2014-04-21 16:44:27','Md Jaynal','01712338637',1,'1398076884099.jpg'),(47,'28 Year(s) 0 Month(s)','mpower_0002_000000000042','2014-04-21 16:45:12',1,'2014-04-21 16:45:12','Mone','01745302402',1,'1398076892722.jpg'),(48,'25 Year(s) 6 Month(s)','mpower_0002_000000000028','2014-04-21 16:46:44',1,'2014-04-21 16:46:44','Sadat','01737233902',1,'1398077006855.jpg'),(49,'45 Year(s)','mpower_0002_000000000033','2014-04-21 16:47:18',1,'2014-04-21 16:47:18','Liton mia','01718329304',1,'1398077072840.jpg'),(50,'40 Year(s) 6 Month(s)','mpower_0002_000000000039','2014-04-21 16:49:55',1,'2014-04-21 16:49:55','shah Alam','01712338637',1,'1398077279657.jpg'),(51,'20 Year(s) 0 Month(s)','mpower_0002_000000000045','2014-04-21 16:50:12',1,'2014-04-21 16:50:12','Roxe','01836175868',1,'1398077240174.jpg'),(52,'40 Year(s)','mpower_0002_000000000031','2014-04-21 16:54:40',1,'2014-04-21 16:54:40','Salim','01711342654',1,'1398077404963.jpg'),(53,'27 Year(s) 6 Month(s)','mpower_0002_000000000018','2014-04-21 16:55:05',1,'2014-04-21 16:55:05','Marufur Rahman','01710974253',1,'1398077465074.jpg'),(54,'33 Year(s)','mpower_0002_000000000023','2014-04-21 16:57:00',1,'2014-04-21 16:57:00','Salam khan','01718329304',1,'1398077470677.jpg'),(55,'55 Year(s) 0 Month(s)','mpower_0002_000000000096','2014-04-21 22:33:47',2,'2014-04-21 22:33:47','Josna','01724968467',1,'1398097899964.jpg'),(56,'14 Year(s) 6 Month(s)','mpower_0002_000000000094','2014-04-21 22:38:52',1,'2014-04-21 22:38:52','Shafiulla','01912816322',1,'1398098177354.jpg'),(57,'35 Year(s)','mpower_0002_000000000111','2014-04-21 22:45:08',1,'2014-04-21 22:45:08','SHohel','01721405066',1,'1398098514331.jpg'),(58,'49 Year(s) 5 Month(s)','mpower_0002_000000000140','2014-04-21 22:55:40',1,'2014-04-21 22:55:40','Mustafa Kamal','01715091051',1,'1398099296487.jpg'),(59,'55 Year(s)','mpower_0002_000000000105','2014-04-21 22:57:09',2,'2014-04-21 22:57:09','Jobada','01949197100',1,'1398099209549.jpg'),(60,'45 Year(s)','mpower_0002_000000000144','2014-04-21 23:05:54',1,'2014-04-21 23:05:54','Helal Mia','01723276545',1,'1398099808623.jpg'),(61,'45 Year(s)','mpower_0002_000000000027','2014-04-21 23:09:24',1,'2014-04-21 23:09:24','Kamal khan','01718329904',1,'1398100010706.jpg'),(62,'42 Year(s) 5 Month(s)','mpower_0002_000000000141','2014-04-21 23:14:28',2,'2014-04-21 23:14:28','Rebaka','01740936169',1,'1398099894092.jpg'),(63,'35 Year(s)','mpower_0002_000000000091','2014-04-21 23:17:38',2,'2014-04-21 23:17:38','Shammi akter','01915886877',1,'1398100663010.jpg'),(64,'45 Year(s) 5 Month(s)','RMPtest1:rmptest1','2014-04-22 02:21:04',1,'2014-04-22 02:21:04','Mamod ali','01736015280',1,'1398100814116.jpg'),(65,'28 Year(s) 0 Month(s)','mpower_0002_000000000147','2014-04-22 02:32:22',1,'2014-04-22 02:32:22','Roton','01772640055',1,'1398111848096.jpg'),(66,'50 Year(s) 0 Month(s)','mpower_0002_000000000137','2014-04-22 02:40:42',1,'2014-04-22 02:40:42','Rove','01912371498',1,'1398112603778.jpg'),(67,'8 Year(s) 11 Month(s)','mpower_0002_000000000139','2014-04-22 13:28:34',1,'2014-04-22 13:28:34','Eycin','01989228530',1,'1398103757837.jpg'),(68,'35 Year(s)','mpower_0002_000000000036','2014-04-22 14:33:02',1,'2014-04-22 14:33:02','Salim khan','01718525352',1,'1398100834687.jpg'),(69,'25 Year(s)','mpower_0002_000000000047','2014-04-22 16:32:10',1,'2014-04-22 16:32:10','Amd','01715666777',1,'1398162517268.jpg'),(70,'30 Year(s) 0 Month(s)','mpower_0002_000000000022','2014-04-22 17:28:26',1,'2014-04-22 17:28:26','Aminu l','01721405066',1,'1398165926937.jpg'),(71,'28 Year(s) 1 Month(s)','mpower_0002_000000000078','2014-04-22 17:37:28',2,'2014-04-22 17:37:28','Shammi','01975759759',1,'1398166566867.jpg'),(72,'25 Year(s)','mpower_0002_000000000038','2014-04-22 17:39:49',1,'2014-04-22 17:39:49','Amin ','01715686786',1,'1398166455189.jpg'),(73,'45 Year(s) 6 Month(s)','mpower_0002_000000000067','2014-04-22 17:42:17',1,'2014-04-22 17:42:17','shahin','01717893915',1,'1398166858946.jpg'),(74,'28 Year(s) 0 Month(s)','mpower_0002_000000000116','2014-04-22 18:01:30',2,'2014-04-22 18:01:30','Shamml ','01975759759',1,'1398167957180.jpg'),(75,'40 Year(s) 0 Month(s)','mpower_0002_000000000048','2014-04-22 18:11:06',1,'2014-04-22 18:11:06','Ahmet','01715666777',1,'1398168435916.jpg'),(76,'28 Year(s) 1 Month(s)','mpower_0002_000000000130','2014-04-22 18:32:58',2,'2014-04-22 18:32:58','Shammi','01975759759',1,'1398169838837.jpg'),(77,'25 Year(s) 5 Month(s)','mpower_0002_000000000035','2014-04-23 17:03:00',2,'2014-04-23 17:03:00','Mina','01752373139',1,'1398250912024.jpg'),(78,'45 Year(s) 6 Month(s)','mpower_0002_000000000095','2014-04-24 10:51:09',1,'2014-04-24 10:51:09','Hamed','01752373139',1,'1398315027358.jpg'),(79,'38 Year(s) 2 Month(s)','mpower_0002_000000000131','2014-04-27 13:04:18',1,'2014-04-27 13:04:18','Khalil','01718583463',1,'1398582102080.jpg'),(80,'40 Year(s) 2 Month(s)','mpower_0002_000000000132','2014-04-27 13:32:46',1,'2014-04-27 13:32:46','Biplov','01736577333',1,'1398583795007.jpg'),(81,'28 Year(s) 7 Month(s)','mpower_0002_000000000057','2014-04-28 16:29:39',1,'2014-04-28 16:29:39','Riyad','01710005566',1,'1398680945283.jpg'),(82,'30 Year(s) 6 Month(s)','mpower_0002_000000000026','2014-04-29 12:16:43',1,'2014-04-29 12:16:43','Jutonb paul\n\n','01711705253',1,'1398752123151.jpg'),(83,'30 Year(s) 6 Month(s)','mpower_0002_000000000017','2014-04-29 12:37:30',1,'2014-04-29 12:37:30','Juton','01711705253',1,'1398753351459.jpg'),(84,'48 Year(s) 5 Month(s)','mpower_0002_000000000097','2014-04-29 13:24:17',2,'2014-04-29 13:24:17','Jahanara begum','01715288355',1,'1398756041391.jpg'),(85,'35 Year(s)','mpower_0002_000000000037','2014-04-29 13:54:04',1,'2014-04-29 13:54:04','Rashidee','01715464464',1,'1398757962191.jpg'),(86,'22 Year(s) 3 Month(s)','mpower_0002_000000000020','2014-04-29 15:47:36',1,'2014-04-29 15:47:36','Jumon','01718583462',1,'1398764789232.jpg'),(87,'35 Year(s) 2 Month(s)','mpower_0002_000000000093','2014-04-30 11:52:02',1,'2014-04-30 11:52:02','Ismil Mia','01849562303',1,'1398836932249.jpg'),(88,'30 Year(s) 11 Month(s) 29 Day(s)','test_proshanto','2014-04-30 12:19:25',1,'2014-04-30 12:19:25','Proshanto Test','08523697412',1,'1398838745699.jpg'),(89,'40 Year(s) 2 Month(s)','mpower_0002_000000000148','2014-04-30 12:23:48',1,'2014-04-30 12:23:48','Khlalil biy','01723577333',1,'1398838873344.jpg'),(90,'39 Year(s) 6 Month(s)','mpower_0002_000000000125','2014-04-30 12:39:26',1,'2014-04-30 12:39:26','Liton','01912816322',1,'1398839801690.jpg'),(91,'20 Year(s)','mpower_0002_000000000134','2014-04-30 16:09:45',1,'2014-04-30 16:09:45','Aniuwar','01771515602',1,'1398852366086.jpg'),(92,'15 Year(s)','mpower_0002_000000000011','2014-04-30 16:32:26',1,'2014-04-30 16:32:26','Emrun','01718329304',1,'1398853687610.jpg'),(93,'39 Year(s)','mpower_0002_000000000008','2014-05-04 11:57:49',1,'2014-05-04 11:57:49','Salim','01726564168',1,'1399182814790.jpg'),(94,'19 Year(s)','mpower_0002_000000000010','2014-05-04 13:30:10',1,'2014-05-04 13:30:10','Ujjal','01720218581',1,'1399188454360.jpg'),(95,'40 Year(s)','mpower_0002_000000000073','2014-05-04 13:49:28',1,'2014-05-04 13:49:28','Salim','01726564168',1,'1399189635397.jpg'),(96,'30 Year(s)','mpower_0002_000000000053','2014-05-05 11:11:38',1,'2014-05-05 11:11:38','Repon','01713568180',1,'1399266320393.jpg'),(97,'20 Year(s)','mpower_0002_000000000021','2014-05-05 12:44:04',1,'2014-05-05 12:44:04','Ronjon Debnarh','01756744607',1,'1399272200189.jpg'),(98,'39 Year(s)','mpower_0002_000000000124','2014-05-05 12:52:44',1,'2014-05-05 12:52:44','Salim','01726564168',1,'1399272671205.jpg'),(99,'11 Year(s) 11 Month(s) 11 Day(s)','test_auto','2014-05-05 13:57:54',1,'2014-05-05 13:57:54','Test Auto','11111111111',1,'1399276591895.jpg'),(100,'30 Year(s)','mpower_0002_000000000081','2014-05-06 12:04:37',1,'2014-05-06 12:04:37','Sunju','01944785768',1,'1399356111159.jpg'),(101,'40 Year(s)','mpower_0002_000000000051','2014-05-06 12:30:51',1,'2014-05-06 12:30:51','Noyon Mia','01741017553',1,'1399357705291.jpg'),(102,'33 Year(s)','test_proshanto_1','2014-05-06 13:07:56',2,'2014-05-06 13:07:56','Walton','11111111111',1,'1399360112390.jpg'),(103,'56 Year(s) 10 Month(s) 15 Day(s)','test_987654','2014-05-06 13:12:27',1,'2014-05-06 13:12:27','Test','53562356235',1,'1399360367800.jpg'),(104,'55 Year(s)','test123125235','2014-05-07 14:14:05',1,'2014-05-07 14:14:05','Yhf','12121212121',1,'1399450508075.jpg'),(105,'28 Year(s)','shammiishere','2014-05-07 17:08:39',1,'2014-05-07 17:08:39','Sadat','85285285258',1,'1399460924752.jpg'),(106,'28 Year(s)','mpower_0002_000000000072','2014-05-08 18:11:46',2,'2014-05-08 18:11:46','Alex','01714555666',1,'1399551092736.jpg'),(107,'26 Year(s) 1 Month(s) 1 Day(s)','rita','2014-05-14 12:56:46',2,'2014-05-14 12:56:46','Rita','01912345678',1,'1400050567908.jpg'),(108,'22 Year(s) 0 Month(s) 0 Day(s)','Salman','2014-05-14 13:10:56',1,'2014-05-14 13:10:56','Salman','01912345678',1,'1400051482755.jpg'),(109,'5 Year(s) 6 Month(s) 2 Day(s)','Sujan khan','2014-05-14 15:16:09',2,'2014-05-14 15:16:09','Sujan khan','08523697410',1,'1400058753870.jpg'),(110,'0 Year(s) 0 Month(s) 0 Day(s)','jalaluddin','2014-05-14 15:34:27',1,'2014-05-14 15:34:27','Jalaluddin','00000000000',1,'1400059760590.jpg'),(111,'0 Year(s) 11 Month(s) 3 Day(s)','bubly','2014-05-15 15:48:54',2,'2014-05-15 15:48:54','Bubly','08520852085',1,'1400138527439.jpg'),(112,'28 Year(s) 2 Month(s)','ADp:00749','2014-05-18 16:21:35',2,'2014-05-18 16:21:35','Shammi','01975759759',1,'1400408436464.jpg');
/*!40000 ALTER TABLE `patients` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `rmps`
--
DROP TABLE IF EXISTS `rmps`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rmps` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`address` varchar(255) DEFAULT NULL,
`age` varchar(255) DEFAULT NULL,
`phone` varchar(255) DEFAULT NULL,
`user_id` bigint(20) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `rmps`
--
LOCK TABLES `rmps` WRITE;
/*!40000 ALTER TABLE `rmps` DISABLE KEYS */;
/*!40000 ALTER TABLE `rmps` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `systems`
--
DROP TABLE IF EXISTS `systems`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `systems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`created` date DEFAULT NULL,
`modified` date DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `systems`
--
LOCK TABLES `systems` WRITE;
/*!40000 ALTER TABLE `systems` DISABLE KEYS */;
INSERT INTO `systems` VALUES (2,'Nervous','2014-03-10','2014-03-24'),(3,'Renal/Urinary','2014-03-10','2014-03-24'),(4,'Hepatobilliary','2014-03-10','2014-03-24'),(5,'Cardiovascular','2014-03-10','2014-03-24'),(6,'Respiratory','2014-03-10','2014-03-24'),(7,'GIT','2014-03-10','2014-03-24'),(9,'Endocrine','2014-03-24','2014-03-24'),(10,'Musculoskeletal','2014-03-24','2014-03-24'),(11,'Reproductive/Genital','2014-03-24','2014-03-24'),(12,'Blood','2014-03-24','2014-03-24'),(13,'Skin','2014-03-24','2014-03-24'),(14,'STD','2014-03-24','2014-03-24'),(15,'Eye','2014-03-24','2014-03-24'),(16,'ENT','2014-03-24','2014-03-24'),(17,'General','2014-03-24','2014-03-25');
/*!40000 ALTER TABLE `systems` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `accounts`
--
DROP TABLE IF EXISTS `accounts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `accounts` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`unitcost` float DEFAULT NULL,
`appointment_id` bigint(20) DEFAULT NULL,
`rmp_id` bigint(20) DEFAULT NULL,
`date` date DEFAULT NULL,
`created` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `accounts`
--
LOCK TABLES `accounts` WRITE;
/*!40000 ALTER TABLE `accounts` DISABLE KEYS */;
/*!40000 ALTER TABLE `accounts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Data`
--
DROP TABLE IF EXISTS `Data`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Data` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`accuracy` double DEFAULT NULL,
`audioData` tinyblob,
`endTime` datetime DEFAULT NULL,
`image` varchar(255) DEFAULT NULL,
`isExtracted` bit(1) DEFAULT NULL,
`latitude` double DEFAULT NULL,
`longitude` double DEFAULT NULL,
`received` datetime DEFAULT NULL,
`respondentId` varchar(255) DEFAULT NULL,
`respondentNumber` varchar(255) DEFAULT NULL,
`startTime` datetime DEFAULT NULL,
`xml` longblob,
`form_id` bigint(20) DEFAULT NULL,
`ngo_id` bigint(20) DEFAULT NULL,
`sender_id` bigint(20) DEFAULT NULL,
`respondentName` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FK2063CA4006B056` (`ngo_id`),
KEY `FK2063CA2771405E` (`form_id`),
KEY `FK2063CA51C45054` (`sender_id`),
CONSTRAINT `FK2063CA2771405E` FOREIGN KEY (`form_id`) REFERENCES `Form` (`id`),
CONSTRAINT `FK2063CA4006B056` FOREIGN KEY (`ngo_id`) REFERENCES `Ngo` (`id`),
CONSTRAINT `FK2063CA51C45054` FOREIGN KEY (`sender_id`) REFERENCES `User` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=272 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Data`
--
LOCK TABLES `Data` WRITE;
/*!40000 ALTER TABLE `Data` DISABLE KEYS */;
INSERT INTO `Data` VALUES (1,NULL,NULL,'2014-03-25 15:33:03',NULL,'\0',NULL,NULL,'2014-03-25 15:33:07','mpower_patient_001',NULL,'2014-03-25 15:27:40','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-03-25T15:27:40.847+06</i_start_time><Patient_Image>1395739668885.jpg</Patient_Image><firstPage><Patient_Name>Sadat Sakif Ahmed</Patient_Name><mobile /><Patient_MobileNo>01737233902</Patient_MobileNo></firstPage><SecondPage><Patient_Age_Year>25</Patient_Age_Year><Patient_Age_Month>6</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_patient_001</Patient_ID><i_end_time>2014-03-25T15:33:03.222+06</i_end_time></data>',1,1,5,NULL),(2,NULL,NULL,'2014-03-25 15:35:55',NULL,'\0',NULL,NULL,'2014-03-25 15:35:54','mpower_patient_001',NULL,'2014-03-25 15:34:53','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-03-25T15:34:53.753+06</i_start_time><Patient_ID>mpower_patient_001</Patient_ID><Second_page><Patient_Weight_kg>80</Patient_Weight_kg><Patient_Weight_gm>0</Patient_Weight_gm></Second_page><Third_page><Patient_PulseRate>58</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Third_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-03-25T15:35:55.108+06</i_end_time></data>',2,1,5,NULL),(3,NULL,NULL,'2014-03-25 15:51:29',NULL,'\0',NULL,NULL,'2014-03-25 15:51:30','mpower_patient_001',NULL,'2014-03-25 15:38:48','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-03-25T15:38:48.995+06</i_start_time><Patient_ID>mpower_patient_001</Patient_ID><Second_page><Patient_Weight_kg>58</Patient_Weight_kg><Patient_Weight_gm>0</Patient_Weight_gm></Second_page><Third_page><Patient_PulseRate>58</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>140</Patient_BP_Systolic><Patient_BP_Diastolic>120</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.5</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Third_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-03-25T15:51:29.827+06</i_end_time></data>',2,1,5,NULL),(4,NULL,NULL,'2014-03-25 15:54:53',NULL,'\0',NULL,NULL,'2014-03-25 15:54:52','mpower_patient_001',NULL,'2014-03-25 15:53:41','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-03-25T15:53:41.525+06</i_start_time><Patient_ID>mpower_patient_001</Patient_ID><Second_page><Patient_Weight_kg>58</Patient_Weight_kg><Patient_Weight_gm>0</Patient_Weight_gm></Second_page><Third_page><Patient_PulseRate>58</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>140</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.9</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Third_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-03-25T15:54:53.463+06</i_end_time></data>',2,1,5,NULL),(5,NULL,NULL,'2014-03-25 16:51:19',NULL,'\0',NULL,NULL,'2014-03-25 16:51:10','mpower_pat_02',NULL,'2014-03-25 16:50:12','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-03-25T16:50:12.331+06</i_start_time><Patient_Image>1395744623267.jpg</Patient_Image><firstPage><Patient_Name>Ahmed Bakr</Patient_Name><mobile /><Patient_MobileNo>08523698564</Patient_MobileNo></firstPage><SecondPage><Patient_Age_Year>26</Patient_Age_Year><Patient_Age_Month>5</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_pat_02</Patient_ID><i_end_time>2014-03-25T16:51:19.023+06</i_end_time></data>',1,1,5,NULL),(6,NULL,NULL,'2014-03-25 16:52:19',NULL,'\0',NULL,NULL,'2014-03-25 16:55:57','mpower_pat_02',NULL,'2014-03-25 16:51:36','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-03-25T16:51:36.982+06</i_start_time><Patient_ID>mpower_pat_02</Patient_ID><Second_page><Patient_Weight_kg>78</Patient_Weight_kg><Patient_Weight_gm>0</Patient_Weight_gm></Second_page><Third_page><Patient_PulseRate>85</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>100</Patient_BP_Diastolic><temperature /><Patient_Temperature>95.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Third_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-03-25T16:52:19.148+06</i_end_time></data>',2,1,5,NULL),(7,NULL,NULL,'2014-03-27 13:45:48',NULL,'\0',NULL,NULL,'2014-03-27 13:45:58','sample_patient_1',NULL,'2014-03-27 13:44:43','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-03-27T13:44:43.577+06</i_start_time><Patient_Image>1395906294398.jpg</Patient_Image><firstPage><Patient_Name>Sadat</Patient_Name><mobile /><Patient_MobileNo>01737233902</Patient_MobileNo></firstPage><SecondPage><Patient_Age_Year>24</Patient_Age_Year><Patient_Age_Month>6</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>sample_patient_1</Patient_ID><i_end_time>2014-03-27T13:45:48.358+06</i_end_time></data>',1,1,5,NULL),(8,NULL,NULL,'2014-03-27 13:47:47',NULL,'\0',NULL,NULL,'2014-03-27 13:47:50','sample_patient_1',NULL,'2014-03-27 13:46:10','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-03-27T13:46:10.872+06</i_start_time><Patient_ID>sample_patient_1</Patient_ID><Second_page><Patient_Weight_kg>52</Patient_Weight_kg><Patient_Weight_gm>0</Patient_Weight_gm></Second_page><Third_page><Patient_PulseRate>58</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>100</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.3</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Third_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-03-27T13:47:47.661+06</i_end_time></data>',2,1,5,NULL),(9,NULL,NULL,'2014-03-27 17:05:20',NULL,'\0',NULL,NULL,'2014-03-27 17:14:32','sample_patient_1',NULL,'2014-03-27 17:04:43','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-03-27T17:04:43.634+06</i_start_time><Patient_ID>sample_patient_1</Patient_ID><Second_page><Patient_Weight_kg>58</Patient_Weight_kg><Patient_Weight_gm>25</Patient_Weight_gm></Second_page><Third_page><Patient_PulseRate>58</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>100</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.3</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-03-27T17:05:20.014+06</i_end_time></data>',2,1,5,NULL),(10,NULL,NULL,'2014-03-27 17:15:39',NULL,'\0',NULL,NULL,'2014-03-27 17:15:55','sample_patient_1',NULL,'2014-03-27 17:14:54','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-03-27T17:14:54.674+06</i_start_time><Patient_ID>sample_patient_1</Patient_ID><Second_page><Patient_Weight_kg>58</Patient_Weight_kg><Patient_Weight_gm>25</Patient_Weight_gm></Second_page><Third_page><Patient_PulseRate>86</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>100</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.3</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-03-27T17:15:39.689+06</i_end_time></data>',2,1,5,NULL),(11,NULL,NULL,'2014-03-30 15:44:29',NULL,'\0',NULL,NULL,'2014-03-30 15:44:51','rmp_silvia:123456',NULL,'2014-03-30 15:42:07','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-03-30T15:42:07.008+06</i_start_time><Patient_Image>1396172548801.jpg</Patient_Image><firstPage><Patient_Name>Amina</Patient_Name><mobile /><Patient_MobileNo>01711111111</Patient_MobileNo></firstPage><SecondPage><Patient_Age_Year>21</Patient_Age_Year><Patient_Age_Month>0</Patient_Age_Month><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>rmp_silvia:123456</Patient_ID><i_end_time>2014-03-30T15:44:29.411+06</i_end_time></data>',1,1,7,NULL),(12,NULL,NULL,'2014-03-30 16:01:44',NULL,'\0',NULL,NULL,'2014-03-30 16:01:29','rmp_silvia:123456',NULL,'2014-03-30 15:57:20','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-03-30T15:57:20.069+06</i_start_time><Patient_ID>rmp_silvia:123456</Patient_ID><Second_page><Patient_Weight_kg>65</Patient_Weight_kg><Patient_Weight_gm>20</Patient_Weight_gm></Second_page><Third_page><Patient_PulseRate>250</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>250</Patient_BP_Systolic><Patient_BP_Diastolic>250</Patient_BP_Diastolic><temperature /><Patient_Temperature>80.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Third_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-03-30T16:01:44.048+06</i_end_time></data>',2,1,7,NULL),(13,NULL,NULL,'2014-03-30 18:54:36',NULL,'\0',NULL,NULL,'2014-03-30 18:55:40','rmp_silvia:1234567',NULL,'2014-03-30 18:45:51','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-03-30T18:45:51.691+06</i_start_time><Patient_Image>1396183784365.jpg</Patient_Image><firstPage><Patient_Name>Ghghhh%76354333</Patient_Name><mobile /><Patient_MobileNo>33333333333</Patient_MobileNo></firstPage><SecondPage><Patient_Age_Year>3</Patient_Age_Year><Patient_Age_Month>0</Patient_Age_Month><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>rmp_silvia:1234567</Patient_ID><i_end_time>2014-03-30T18:54:36.859+06</i_end_time></data>',1,1,7,NULL),(14,NULL,NULL,'2014-03-31 11:49:40',NULL,'\0',NULL,NULL,'2014-03-31 11:49:39','105634',NULL,'2014-03-31 11:44:34','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-03-31T11:44:34.240+06</i_start_time><Patient_Image>1396244735415.jpg</Patient_Image><firstPage><Patient_Name>Silvia</Patient_Name><mobile /><Patient_MobileNo>01234567890</Patient_MobileNo></firstPage><SecondPage><Patient_Age_Year>25</Patient_Age_Year><Patient_Age_Month>0</Patient_Age_Month><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>105634</Patient_ID><i_end_time>2014-03-31T11:49:40.414+06</i_end_time></data>',1,1,6,NULL),(15,NULL,NULL,'2014-04-01 11:45:36',NULL,'\0',NULL,NULL,'2014-04-01 11:45:16','mpower_patient_005',NULL,'2014-04-01 11:44:33','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-01T11:44:33.589+06</i_start_time><Patient_Image>1396331087230.jpg</Patient_Image><firstPage><Patient_Name>Ahmed and Proshanto</Patient_Name><mobile /><Patient_MobileNo>85214796358</Patient_MobileNo></firstPage><SecondPage><Patient_Age_Year>30</Patient_Age_Year><Patient_Age_Month>6</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_patient_005</Patient_ID><i_end_time>2014-04-01T11:45:36.149+06</i_end_time></data>',1,1,5,NULL),(16,NULL,NULL,'2014-04-01 11:46:55',NULL,'\0',NULL,NULL,'2014-04-01 11:46:23','mpower_patient_005',NULL,'2014-04-01 11:46:04','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-01T11:46:04.715+06</i_start_time><Patient_ID>mpower_patient_005</Patient_ID><Second_page><Patient_Weight_kg>99</Patient_Weight_kg><Patient_Weight_gm>999</Patient_Weight_gm></Second_page><Third_page><Patient_PulseRate>66</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>166</Patient_BP_Systolic><Patient_BP_Diastolic>122</Patient_BP_Diastolic><temperature /><Patient_Temperature>99.9</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-01T11:46:55.767+06</i_end_time></data>',2,1,5,NULL),(17,NULL,NULL,'2014-04-01 11:52:08',NULL,'\0',NULL,NULL,'2014-04-01 11:53:57','mpower_patient_005',NULL,'2014-04-01 11:51:27','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-01T11:51:27.350+06</i_start_time><Patient_ID>mpower_patient_005</Patient_ID><Second_page><Patient_Weight_kg>99</Patient_Weight_kg><Patient_Weight_gm>999</Patient_Weight_gm></Second_page><Third_page><Patient_PulseRate>66</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>166</Patient_BP_Systolic><Patient_BP_Diastolic>122</Patient_BP_Diastolic><temperature /><Patient_Temperature>99.9</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Third_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-01T11:52:08.653+06</i_end_time></data>',2,1,5,NULL),(18,NULL,NULL,'2014-04-01 11:58:17',NULL,'\0',NULL,NULL,'2014-04-01 11:58:01','mpower_patient_005',NULL,'2014-04-01 11:57:32','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-01T11:57:32.913+06</i_start_time><Patient_ID>mpower_patient_005</Patient_ID><Second_page><Patient_Weight_kg>99</Patient_Weight_kg><Patient_Weight_gm>999</Patient_Weight_gm></Second_page><Third_page><Patient_PulseRate>66</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>166</Patient_BP_Systolic><Patient_BP_Diastolic>122</Patient_BP_Diastolic><temperature /><Patient_Temperature>99.9</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-01T11:58:17.665+06</i_end_time></data>',2,1,5,NULL),(19,NULL,NULL,'2014-04-01 16:09:55',NULL,'\0',NULL,NULL,'2014-04-01 16:14:11','mpower_patient_005',NULL,'2014-04-01 16:08:45','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-01T16:08:45.731+06</i_start_time><Patient_ID>mpower_patient_005</Patient_ID><Second_page><Patient_Weight_kg>60.669</Patient_Weight_kg><Patient_PulseRate>69</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>140</Patient_BP_Systolic><Patient_BP_Diastolic>120</Patient_BP_Diastolic><temperature /><Patient_Temperature>99.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-01T16:09:55.064+06</i_end_time></data>',2,1,5,NULL),(20,NULL,NULL,'2014-04-01 16:25:11',NULL,'\0',NULL,NULL,'2014-04-01 16:26:53','mpower_patient_005',NULL,'2014-04-01 16:24:12','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-01T16:24:12.064+06</i_start_time><Patient_ID>mpower_patient_005</Patient_ID><Second_page><Patient_Weight_kg>69.336</Patient_Weight_kg><Patient_PulseRate>58</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>100</Patient_BP_Diastolic><temperature /><Patient_Temperature>99.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>3</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-01T16:25:11.924+06</i_end_time></data>',2,1,5,NULL),(21,NULL,NULL,'2014-04-03 12:43:08',NULL,'\0',NULL,NULL,'2014-04-03 12:43:17','mpower_patient_test',NULL,'2014-04-03 12:41:46','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-03T12:41:46.021+06</i_start_time><Patient_Image>1396507343262.jpg</Patient_Image><firstPage><Patient_Name>Sohel</Patient_Name><mobile /><Patient_MobileNo>85236974158</Patient_MobileNo></firstPage><SecondPage><Patient_Age_Year>28</Patient_Age_Year><Patient_Age_Month>8</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_patient_test</Patient_ID><i_end_time>2014-04-03T12:43:08.289+06</i_end_time></data>',1,1,5,NULL),(22,NULL,NULL,'2014-04-03 12:44:45',NULL,'\0',NULL,NULL,'2014-04-03 12:44:50','mpower_patient_test',NULL,'2014-04-03 12:44:03','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-03T12:44:03.222+06</i_start_time><Patient_ID>mpower_patient_test</Patient_ID><Second_page><Patient_Weight_kg>68.0</Patient_Weight_kg><Patient_PulseRate>69</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>95.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-03T12:44:45.808+06</i_end_time></data>',2,1,5,NULL),(23,NULL,NULL,'2014-04-03 13:18:57',NULL,'\0',NULL,NULL,'2014-04-03 13:18:30','mpower_patient_test',NULL,'2014-04-03 13:18:06','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-03T13:18:06.317+06</i_start_time><Patient_ID>mpower_patient_test</Patient_ID><Second_page><Patient_Weight_kg>86.556</Patient_Weight_kg><Patient_PulseRate>60</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.3</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-03T13:18:57.224+06</i_end_time></data>',2,1,5,NULL),(24,NULL,NULL,'2014-04-03 13:39:56',NULL,'\0',NULL,NULL,'2014-04-03 13:39:29','mpower_patient_demo',NULL,'2014-04-03 13:36:11','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-03T13:36:11.147+06</i_start_time><Patient_Image>1396510595578.jpg</Patient_Image><firstPage><Patient_Name>Sadat</Patient_Name><mobile /><Patient_MobileNo>01713311331</Patient_MobileNo></firstPage><SecondPage><Patient_Age_Year>25</Patient_Age_Year><Patient_Age_Month>5</Patient_Age_Month><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>mpower_patient_demo</Patient_ID><i_end_time>2014-04-03T13:39:56.607+06</i_end_time></data>',1,1,8,NULL),(25,NULL,NULL,'2014-04-03 13:46:13',NULL,'\0',NULL,NULL,'2014-04-03 13:45:49','mpower_patient_demo',NULL,'2014-04-03 13:41:32','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-03T13:41:32.577+06</i_start_time><Patient_ID>mpower_patient_demo</Patient_ID><Second_page><Patient_Weight_kg>59.0</Patient_Weight_kg><Patient_PulseRate>80</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>80</Patient_BP_Systolic><Patient_BP_Diastolic>120</Patient_BP_Diastolic><temperature /><Patient_Temperature>97.8</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-03T13:46:13.124+06</i_end_time></data>',2,1,8,NULL),(26,NULL,NULL,'2014-04-03 20:14:06',NULL,'\0',NULL,NULL,'2014-04-03 20:13:59','patient:shammi',NULL,'2014-04-03 20:12:50','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-03T20:12:50.330+06</i_start_time><Patient_Image>1396534380972.jpg</Patient_Image><firstPage><Patient_Name>Shammi</Patient_Name><mobile /><Patient_MobileNo>01714565565</Patient_MobileNo></firstPage><SecondPage><Patient_Age_Year>27</Patient_Age_Year><Patient_Age_Month>0</Patient_Age_Month><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>patient:shammi</Patient_ID><i_end_time>2014-04-03T20:14:06.519+06</i_end_time></data>',1,1,8,NULL),(27,NULL,NULL,'2014-04-03 20:16:00',NULL,'\0',NULL,NULL,'2014-04-03 20:15:16','patient:shammi',NULL,'2014-04-03 20:14:59','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-03T20:14:59.552+06</i_start_time><Patient_ID>patient:shammi</Patient_ID><Second_page><Patient_Weight_kg>50.0</Patient_Weight_kg><Patient_PulseRate>70</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>90</Patient_BP_Systolic><Patient_BP_Diastolic>110</Patient_BP_Diastolic><temperature /><Patient_Temperature>97.8</Patient_Temperature><respiratory /><Patient_RespiratoryRate>3</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-03T20:16:00.287+06</i_end_time></data>',2,1,8,NULL),(28,NULL,NULL,'2014-04-03 20:39:03',NULL,'\0',NULL,NULL,'2014-04-03 20:39:16','mpower_patient_demo_2',NULL,'2014-04-03 20:38:12','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-03T20:38:12.702+06</i_start_time><Patient_Image>1396535903303.jpg</Patient_Image><firstPage><Patient_Name>Iftekhar</Patient_Name><mobile /><Patient_MobileNo>85236914785</Patient_MobileNo></firstPage><SecondPage><Patient_Age_Year>30</Patient_Age_Year><Patient_Age_Month>0</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_patient_demo_2</Patient_ID><i_end_time>2014-04-03T20:39:03.166+06</i_end_time></data>',1,1,5,NULL),(29,NULL,NULL,'2014-04-03 20:39:35',NULL,'\0',NULL,NULL,'2014-04-03 20:39:24','mpower_patient_demo_2',NULL,'2014-04-03 20:39:06','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-03T20:39:06.381+06</i_start_time><Patient_ID>mpower_patient_demo_2</Patient_ID><Second_page><Patient_Weight_kg>58.55</Patient_Weight_kg><Patient_PulseRate>56</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.3</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-03T20:39:35.443+06</i_end_time></data>',2,1,5,NULL),(30,NULL,NULL,'2014-04-04 20:30:11',NULL,'\0',NULL,NULL,'2014-04-04 20:29:59','testpatient1',NULL,'2014-04-04 20:29:06','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-04T20:29:06.959+06</i_start_time><Patient_Image>1396621770204.jpg</Patient_Image><firstPage><Patient_Name>Test 1</Patient_Name><mobile /><Patient_MobileNo>01745858858</Patient_MobileNo></firstPage><SecondPage><Patient_Age_Year>54</Patient_Age_Year><Patient_Age_Month>8</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>testpatient1</Patient_ID><i_end_time>2014-04-04T20:30:11.263+06</i_end_time></data>',1,1,8,NULL),(31,NULL,NULL,'2014-04-04 20:32:07',NULL,'\0',NULL,NULL,'2014-04-04 20:31:35','testpatient1',NULL,'2014-04-04 20:31:22','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-04T20:31:22.848+06</i_start_time><Patient_ID>testpatient1</Patient_ID><Second_page><Patient_Weight_kg>80.0</Patient_Weight_kg><Patient_PulseRate>80</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>78</Patient_BP_Systolic><Patient_BP_Diastolic>47</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-04T20:32:07.221+06</i_end_time></data>',2,1,8,NULL),(32,NULL,NULL,'2014-04-04 20:37:28',NULL,'\0',NULL,NULL,'2014-04-04 20:39:42','testpatient1',NULL,'2014-04-04 20:36:54','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-04T20:36:54.692+06</i_start_time><Patient_ID>testpatient1</Patient_ID><Second_page><Patient_Weight_kg>96.0</Patient_Weight_kg><Patient_PulseRate>96</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>96</Patient_BP_Systolic><Patient_BP_Diastolic>96</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-04T20:37:28.606+06</i_end_time></data>',2,1,8,NULL),(33,NULL,NULL,'2014-04-04 20:43:25',NULL,'\0',NULL,NULL,'2014-04-04 20:42:40','testpatient1',NULL,'2014-04-04 20:42:47','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-04T20:42:47.645+06</i_start_time><Patient_ID>testpatient1</Patient_ID><Second_page><Patient_Weight_kg>85.0</Patient_Weight_kg><Patient_PulseRate>85</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>85</Patient_BP_Systolic><Patient_BP_Diastolic>85</Patient_BP_Diastolic><temperature /><Patient_Temperature>85.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-04T20:43:25.133+06</i_end_time></data>',2,1,8,NULL),(34,NULL,NULL,'2014-04-04 20:46:42',NULL,'\0',NULL,NULL,'2014-04-04 20:45:59','testpatient1',NULL,'2014-04-04 20:46:01','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-04T20:46:01.114+06</i_start_time><Patient_ID>testpatient1</Patient_ID><Second_page><Patient_Weight_kg>96.0</Patient_Weight_kg><Patient_PulseRate>96</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>96</Patient_BP_Systolic><Patient_BP_Diastolic>96</Patient_BP_Diastolic><temperature /><Patient_Temperature>85.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-04T20:46:42.647+06</i_end_time></data>',2,1,8,NULL),(35,NULL,NULL,'2014-04-05 10:51:18',NULL,'\0',NULL,NULL,'2014-04-05 10:50:37','testpatient1',NULL,'2014-04-05 10:50:52','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-05T10:50:52.953+06</i_start_time><Patient_ID>testpatient1</Patient_ID><Second_page><Patient_Weight_kg>96.0</Patient_Weight_kg><Patient_PulseRate>96</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>96</Patient_BP_Systolic><Patient_BP_Diastolic>96</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-05T10:51:18.517+06</i_end_time></data>',2,1,8,NULL),(36,NULL,NULL,'2014-04-05 11:27:24',NULL,'\0',NULL,NULL,'2014-04-05 11:26:40','patient:shammi',NULL,'2014-04-05 11:26:43','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-05T11:26:43.361+06</i_start_time><Patient_ID>patient:shammi</Patient_ID><Second_page><Patient_Weight_kg>96.0</Patient_Weight_kg><Patient_PulseRate>96</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>85</Patient_BP_Systolic><Patient_BP_Diastolic>58</Patient_BP_Diastolic><temperature /><Patient_Temperature>85.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-05T11:27:24.112+06</i_end_time></data>',2,1,8,NULL),(37,NULL,NULL,'2014-04-05 11:47:26',NULL,'\0',NULL,NULL,'2014-04-05 11:49:19','mpower_0002_000000000060',NULL,'2014-04-05 11:44:47','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-05T11:44:47.414+06</i_start_time><Patient_Image>1396676704102.jpg</Patient_Image><firstPage><Patient_Name>Proshanto kumar sorkar</Patient_Name><mobile /><Patient_MobileNo>01975759759</Patient_MobileNo></firstPage><SecondPage><Patient_Age_Year>25</Patient_Age_Year><Patient_Age_Month>5</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000060</Patient_ID><i_end_time>2014-04-05T11:47:26.797+06</i_end_time></data>',1,1,8,NULL),(38,NULL,NULL,'2014-04-05 11:49:18',NULL,'\0',NULL,NULL,'2014-04-05 11:49:20','mpower_0002_000000000060',NULL,'2014-04-05 11:47:39','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-05T11:47:39.404+06</i_start_time><Patient_ID>mpower_0002_000000000060</Patient_ID><Second_page><Patient_Weight_kg>59.0</Patient_Weight_kg><Patient_PulseRate>80</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>80</Patient_BP_Systolic><Patient_BP_Diastolic>110</Patient_BP_Diastolic><temperature /><Patient_Temperature>97.9</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>3</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>3</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-05T11:49:18.094+06</i_end_time></data>',2,1,8,NULL),(39,NULL,NULL,'2014-04-05 12:03:30',NULL,'\0',NULL,NULL,'2014-04-05 12:03:35','mpower_0002_000000000060',NULL,'2014-04-05 12:02:43','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-05T12:02:43.776+06</i_start_time><Patient_ID>mpower_0002_000000000060</Patient_ID><Second_page><Patient_Weight_kg>54.0</Patient_Weight_kg><Patient_PulseRate>25</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>80</Patient_BP_Systolic><Patient_BP_Diastolic>120</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.7</Patient_Temperature><respiratory /><Patient_RespiratoryRate>3</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-05T12:03:30.656+06</i_end_time></data>',2,1,8,NULL),(40,NULL,NULL,'2014-04-05 12:34:08',NULL,'\0',NULL,NULL,'2014-04-05 12:33:21','mpower_0002_000000000060',NULL,'2014-04-05 12:33:12','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-05T12:33:12.506+06</i_start_time><Patient_ID>mpower_0002_000000000060</Patient_ID><Second_page><Patient_Weight_kg>65.0</Patient_Weight_kg><Patient_PulseRate>68</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>60</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-05T12:34:08.228+06</i_end_time></data>',2,1,8,NULL),(41,NULL,NULL,'2014-04-06 13:57:57',NULL,'\0',NULL,NULL,'2014-04-06 13:57:40','mpower_0002_000000000127',NULL,'2014-04-06 13:55:20','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-06T13:55:20.801+06</i_start_time><Patient_Image>1396770938397.jpg</Patient_Image><firstPage><Patient_Name>Yasser</Patient_Name><mobile /><Patient_MobileNo>01975759759</Patient_MobileNo></firstPage><SecondPage><Patient_Age_Year>25</Patient_Age_Year><Patient_Age_Month>5</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000127</Patient_ID><i_end_time>2014-04-06T13:57:57.004+06</i_end_time></data>',1,1,8,NULL),(42,NULL,NULL,'2014-04-06 14:07:54',NULL,'\0',NULL,NULL,'2014-04-06 14:07:51','mpower_0002_000000000127',NULL,'2014-04-06 13:59:33','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-06T13:59:33.797+06</i_start_time><Patient_ID>mpower_0002_000000000127</Patient_ID><Second_page><Patient_Weight_kg>95.0</Patient_Weight_kg><Patient_PulseRate>80</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>80</Patient_BP_Systolic><Patient_BP_Diastolic>120</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.2</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>3</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-06T14:07:54.240+06</i_end_time></data>',2,1,8,NULL),(43,NULL,NULL,'2014-04-06 18:42:41',NULL,'\0',NULL,NULL,'2014-04-06 18:41:54','mpower_0002_000000000127',NULL,'2014-04-06 18:41:54','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-06T18:41:54.118+06</i_start_time><Patient_ID>mpower_0002_000000000127</Patient_ID><Second_page><Patient_Weight_kg>80.0</Patient_Weight_kg><Patient_PulseRate>80</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>90</Patient_BP_Systolic><Patient_BP_Diastolic>120</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-06T18:42:41.838+06</i_end_time></data>',2,1,8,NULL),(44,NULL,NULL,'2014-04-07 13:21:03',NULL,'\0',NULL,NULL,'2014-04-07 13:21:08','mpower_patient_010',NULL,'2014-04-07 13:19:02','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-07T13:19:02.948+06</i_start_time><Patient_Image>1396855153959.jpg</Patient_Image><firstPage><Patient_Name>Safat</Patient_Name><mobile /><Patient_MobileNo>85653556545</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>58</Patient_Age_Year><Patient_Age_Month>8</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_patient_010</Patient_ID><i_end_time>2014-04-07T13:21:03.716+06</i_end_time></data>',1,1,5,NULL),(45,NULL,NULL,'2014-04-07 13:24:01',NULL,'\0',NULL,NULL,'2014-04-07 13:23:55','mpower_patient_010',NULL,'2014-04-07 13:21:38','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-07T13:21:38.343+06</i_start_time><Patient_ID>mpower_patient_010</Patient_ID><Second_page><Patient_Weight_kg>56.8</Patient_Weight_kg><Patient_PulseRate>63</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-07T13:24:01.178+06</i_end_time></data>',2,1,5,NULL),(46,NULL,NULL,'2014-04-07 14:58:18',NULL,'\0',NULL,NULL,'2014-04-07 14:58:53','android_test',NULL,'2014-04-07 14:56:49','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-07T14:56:49.771+06</i_start_time><Patient_Image>1396861052617.jpg</Patient_Image><firstPage><Patient_Name>Android Test</Patient_Name><mobile /><Patient_MobileNo>08523697418</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>26</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>android_test</Patient_ID><i_end_time>2014-04-07T14:58:18.305+06</i_end_time></data>',1,1,5,NULL),(47,NULL,NULL,'2014-04-07 14:59:03',NULL,'\0',NULL,NULL,'2014-04-07 14:58:56','android_test',NULL,'2014-04-07 14:58:26','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-07T14:58:26.317+06</i_start_time><Patient_ID>android_test</Patient_ID><Second_page><Patient_Weight_kg>56.3</Patient_Weight_kg><Patient_PulseRate>63</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.3</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-07T14:59:03.474+06</i_end_time></data>',2,1,5,NULL),(48,NULL,NULL,'2014-04-07 15:06:16',NULL,'\0',NULL,NULL,'2014-04-07 15:06:12','android_test_1',NULL,'2014-04-07 15:05:37','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-07T15:05:37.055+06</i_start_time><Patient_Image>1396861543538.jpg</Patient_Image><firstPage><Patient_Name>Test 2</Patient_Name><mobile /><Patient_MobileNo>85626358235</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>25</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>android_test_1</Patient_ID><i_end_time>2014-04-07T15:06:16.828+06</i_end_time></data>',1,1,5,NULL),(49,NULL,NULL,'2014-04-08 13:24:40',NULL,'\0',NULL,NULL,'2014-04-08 13:25:00','testpatient2',NULL,'2014-04-08 13:23:44','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-08T13:23:44.461+06</i_start_time><Patient_Image>1396941843159.jpg</Patient_Image><firstPage><Patient_Name>Ghbhn</Patient_Name><mobile /><Patient_MobileNo>01745885885</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>58</Patient_Age_Year><Patient_Age_Month>4</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>testpatient2</Patient_ID><i_end_time>2014-04-08T13:24:40.905+06</i_end_time></data>',1,1,5,NULL),(50,NULL,NULL,'2014-04-08 13:26:05',NULL,'\0',NULL,NULL,'2014-04-08 13:26:01','testpatient2',NULL,'2014-04-08 13:25:31','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-08T13:25:31.967+06</i_start_time><Patient_ID>testpatient2</Patient_ID><Second_page><Patient_Weight_kg>90.0</Patient_Weight_kg><Patient_PulseRate>90</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>90</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic><temperature /><Patient_Temperature>90.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-08T13:26:05.593+06</i_end_time></data>',2,1,5,NULL),(51,NULL,NULL,'2014-04-09 13:10:49',NULL,'\0',NULL,NULL,'2014-04-09 13:10:40','testpatient1',NULL,'2014-04-09 13:09:57','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-09T13:09:57.907+06</i_start_time><Patient_ID>testpatient1</Patient_ID><Second_page><Patient_Weight_kg>96.0</Patient_Weight_kg><Patient_PulseRate>96</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>96</Patient_BP_Systolic><Patient_BP_Diastolic>58</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-09T13:10:49.794+06</i_end_time></data>',2,1,5,NULL),(52,NULL,NULL,'2014-04-10 14:47:06',NULL,'\0',NULL,NULL,'2014-04-10 14:46:49','android_test',NULL,'2014-04-10 14:45:54','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-10T14:45:54.750+06</i_start_time><Patient_ID>android_test</Patient_ID><Second_page><Patient_Weight_kg>56.0</Patient_Weight_kg><Patient_PulseRate>56</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>230</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-10T14:47:06.433+06</i_end_time></data>',2,1,5,NULL),(53,NULL,NULL,'2014-04-10 14:52:04',NULL,'\0',NULL,NULL,'2014-04-10 14:51:42','android_test',NULL,'2014-04-10 14:49:11','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-10T14:49:11.548+06</i_start_time><Patient_ID>android_test</Patient_ID><Second_page><Patient_Weight_kg>56.0</Patient_Weight_kg><Patient_PulseRate>86</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>3</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>3</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-10T14:52:04.217+06</i_end_time></data>',2,1,5,NULL),(54,NULL,NULL,'2014-04-10 15:02:13',NULL,'\0',NULL,NULL,'2014-04-10 15:02:25','developer_test_1',NULL,'2014-04-10 15:00:37','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-10T15:00:37.783+06</i_start_time><Patient_Image>1397120456848.jpg</Patient_Image><firstPage><Patient_Name>/()+-*&%$#<>=:;;.,!?\"_ .,\'-_</Patient_Name><mobile /><Patient_MobileNo>01725845625</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>58</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>developer_test_1</Patient_ID><i_end_time>2014-04-10T15:02:13.549+06</i_end_time></data>',1,1,5,NULL),(55,NULL,NULL,'2014-04-10 15:02:45',NULL,'\0',NULL,NULL,'2014-04-10 15:02:26','developer_test_1',NULL,'2014-04-10 15:02:16','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-10T15:02:16.052+06</i_start_time><Patient_ID>developer_test_1</Patient_ID><Second_page><Patient_Weight_kg>58.0</Patient_Weight_kg><Patient_PulseRate>96</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>150</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic><temperature /><Patient_Temperature>88.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>3</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-10T15:02:45.622+06</i_end_time></data>',2,1,5,NULL),(56,NULL,NULL,'2014-04-10 15:06:42',NULL,'\0',NULL,NULL,'2014-04-10 15:06:50','developer_test_2',NULL,'2014-04-10 15:05:48','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-10T15:05:48.607+06</i_start_time><Patient_Image>1397120762824.jpg</Patient_Image><firstPage><Patient_Name>Sample is rtarded</Patient_Name><mobile /><Patient_MobileNo>88666553662</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>85</Patient_Age_Year><Patient_Age_Month>7</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>developer_test_2</Patient_ID><i_end_time>2014-04-10T15:06:42.565+06</i_end_time></data>',1,1,5,NULL),(57,NULL,NULL,'2014-04-10 15:07:27',NULL,'\0',NULL,NULL,'2014-04-10 15:06:52','developer_test_2',NULL,'2014-04-10 15:06:45','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-10T15:06:45.618+06</i_start_time><Patient_ID>developer_test_2</Patient_ID><Second_page><Patient_Weight_kg>58.0</Patient_Weight_kg><Patient_PulseRate>56</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>180</Patient_BP_Systolic><Patient_BP_Diastolic>140</Patient_BP_Diastolic><temperature /><Patient_Temperature>85.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-10T15:07:27.898+06</i_end_time></data>',2,1,5,NULL),(58,NULL,NULL,'2014-04-15 12:11:31',NULL,'\0',NULL,NULL,'2014-04-15 12:11:41','mpower_patient_test',NULL,'2014-04-15 12:10:58','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-15T12:10:58.962+06</i_start_time><Patient_ID>mpower_patient_test</Patient_ID><Second_page><Patient_Weight_kg>56.0</Patient_Weight_kg><Patient_PulseRate>56</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>160</Patient_BP_Systolic><Patient_BP_Diastolic>140</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>3</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-15T12:11:31.636+06</i_end_time></data>',2,1,5,NULL),(59,NULL,NULL,'2014-04-15 13:33:23',NULL,'\0',NULL,NULL,'2014-04-15 13:32:18','testpatient1',NULL,'2014-04-15 13:32:36','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-15T13:32:36.874+06</i_start_time><Patient_ID>testpatient1</Patient_ID><Second_page><Patient_Weight_kg>90.0</Patient_Weight_kg><Patient_PulseRate>78</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>110</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.7</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-15T13:33:23.694+06</i_end_time></data>',2,1,8,NULL),(60,NULL,NULL,'2014-04-15 16:25:09',NULL,'\0',NULL,NULL,'2014-04-15 16:24:17','mpower_0002_000000000040',NULL,'2014-04-15 16:21:44','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-15T16:21:44.429+06</i_start_time><Patient_Image>1397557334563.jpg</Patient_Image><firstPage><Patient_Name>Test Parient</Patient_Name><mobile /><Patient_MobileNo>08523698547</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>24</Patient_Age_Year><Patient_Age_Month>6</Patient_Age_Month><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000040</Patient_ID><i_end_time>2014-04-15T16:25:09.119+06</i_end_time></data>',1,1,8,NULL),(61,NULL,NULL,'2014-04-15 16:27:10',NULL,'\0',NULL,NULL,'2014-04-15 16:26:06','mpower_0002_000000000040',NULL,'2014-04-15 16:25:48','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-15T16:25:48.988+06</i_start_time><Patient_ID>mpower_0002_000000000040</Patient_ID><Second_page><Patient_Weight_kg>65.0</Patient_Weight_kg><Patient_PulseRate>56</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>3</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-15T16:27:10.128+06</i_end_time></data>',2,1,8,NULL),(62,NULL,NULL,'2014-04-16 11:07:25',NULL,'\0',NULL,NULL,'2014-04-16 11:10:07','Arif:testpatient',NULL,'2014-04-16 11:05:21','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-16T11:05:21.363+06</i_start_time><Patient_Image>1397624736360.jpg</Patient_Image><firstPage><Patient_Name>Arif</Patient_Name><mobile /><Patient_MobileNo>01717648564</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>25</Patient_Age_Year><Patient_Age_Month>1</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>Arif:testpatient</Patient_ID><i_end_time>2014-04-16T11:07:25.884+06</i_end_time></data>',1,1,8,NULL),(63,NULL,NULL,'2014-04-16 11:11:57',NULL,'\0',NULL,NULL,'2014-04-16 11:11:33','Arif:testpatient',NULL,'2014-04-16 11:10:47','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-16T11:10:47.279+06</i_start_time><Patient_ID>Arif:testpatient</Patient_ID><Second_page><Patient_Weight_kg>57.0</Patient_Weight_kg><Patient_PulseRate>70</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>80</Patient_BP_Systolic><Patient_BP_Diastolic>130</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-16T11:11:57.968+06</i_end_time></data>',2,1,8,NULL),(64,NULL,NULL,'2014-04-17 11:00:19',NULL,'\0',NULL,NULL,'2014-04-17 11:05:51','mpower_0002_000000000041',NULL,'2014-04-17 10:59:06','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-17T10:59:06.986+06</i_start_time><Patient_Image>1397710760856.jpg</Patient_Image><firstPage><Patient_Name>Pritsh</Patient_Name><mobile /><Patient_MobileNo>01713515966</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>29</Patient_Age_Year><Patient_Age_Month>5</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000041</Patient_ID><i_end_time>2014-04-17T11:00:19.189+06</i_end_time></data>',1,1,8,NULL),(65,NULL,NULL,'2014-04-17 11:12:15',NULL,'\0',NULL,NULL,'2014-04-17 11:12:03','mpower_0002_000000000041',NULL,'2014-04-17 11:11:05','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-17T11:11:05.153+06</i_start_time><Patient_ID>mpower_0002_000000000041</Patient_ID><Second_page><Patient_Weight_kg>50.0</Patient_Weight_kg><Patient_PulseRate>96</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-17T11:12:15.292+06</i_end_time></data>',2,1,8,NULL),(66,NULL,NULL,'2014-04-17 11:55:55',NULL,'\0',NULL,NULL,'2014-04-17 12:01:17','mpower_0002_000000000088',NULL,'2014-04-17 11:51:54','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-17T11:51:54.883+06</i_start_time><Patient_Image>1397713926957.jpg</Patient_Image><firstPage><Patient_Name>Salim hossain khan</Patient_Name><mobile /><Patient_MobileNo>01726564168</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>39</Patient_Age_Year><Patient_Age_Month>5</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000088</Patient_ID><i_end_time>2014-04-17T11:55:55.714+06</i_end_time></data>',1,1,8,NULL),(67,NULL,NULL,'2014-04-17 12:04:42',NULL,'\0',NULL,NULL,'2014-04-17 12:04:53','mpower_0002_000000000088',NULL,'2014-04-17 12:03:41','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-17T12:03:41.033+06</i_start_time><Patient_ID>mpower_0002_000000000088</Patient_ID><Second_page><Patient_Weight_kg>68.0</Patient_Weight_kg><Patient_PulseRate>56</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>122</Patient_BP_Systolic><Patient_BP_Diastolic>88</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-17T12:04:42.618+06</i_end_time></data>',2,1,8,NULL),(68,NULL,NULL,'2014-04-17 13:33:49',NULL,'\0',NULL,NULL,'2014-04-17 13:32:44','mpower_0002_000000000071',NULL,'2014-04-17 13:32:18','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-17T13:32:18.796+06</i_start_time><Patient_Image>1397719977295.jpg</Patient_Image><firstPage><Patient_Name>Shammi Shawkat</Patient_Name><mobile /><Patient_MobileNo>01975759759</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>28</Patient_Age_Year><Patient_Age_Month>8</Patient_Age_Month><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000071</Patient_ID><i_end_time>2014-04-17T13:33:49.515+06</i_end_time></data>',1,1,5,NULL),(69,NULL,NULL,'2014-04-17 13:35:12',NULL,'\0',NULL,NULL,'2014-04-17 13:34:00','mpower_0002_000000000071',NULL,'2014-04-17 13:34:35','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-17T13:34:35.812+06</i_start_time><Patient_ID>mpower_0002_000000000071</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><Patient_PulseRate>80</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>80</Patient_BP_Systolic><Patient_BP_Diastolic>100</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.8</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-17T13:35:12.096+06</i_end_time></data>',2,1,5,NULL),(70,NULL,NULL,'2014-04-17 14:39:50',NULL,'\0',NULL,NULL,'2014-04-17 14:42:37','mpower_0002_000000000054',NULL,'2014-04-17 14:38:32','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-17T14:38:32.681+06</i_start_time><Patient_Image>1397723926097.jpg</Patient_Image><firstPage><Patient_Name>Mozzem hossen</Patient_Name><mobile /><Patient_MobileNo>01713599877</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>55</Patient_Age_Year><Patient_Age_Month>4</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000054</Patient_ID><i_end_time>2014-04-17T14:39:50.303+06</i_end_time></data>',1,1,8,NULL),(71,NULL,NULL,'2014-04-17 15:27:51',NULL,'\0',NULL,NULL,'2014-04-17 15:27:12','mpower_0002_000000000071',NULL,'2014-04-17 15:27:12','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-17T15:27:12.412+06</i_start_time><Patient_ID>mpower_0002_000000000071</Patient_ID><Second_page><Patient_Weight_kg>25.0</Patient_Weight_kg><Patient_PulseRate>80</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>80</Patient_BP_Systolic><Patient_BP_Diastolic>100</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.7</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-17T15:27:51.065+06</i_end_time></data>',2,1,5,NULL),(72,NULL,NULL,'2014-04-17 15:36:30',NULL,'\0',NULL,NULL,'2014-04-17 15:35:17','mpower_0002_000000000071',NULL,'2014-04-17 15:36:04','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-17T15:36:04.174+06</i_start_time><Patient_ID>mpower_0002_000000000071</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><Patient_PulseRate>80</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>50</Patient_BP_Systolic><Patient_BP_Diastolic>100</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.7</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-17T15:36:30.478+06</i_end_time></data>',2,1,5,NULL),(73,NULL,NULL,'2014-04-17 15:42:01',NULL,'\0',NULL,NULL,'2014-04-17 15:40:53','mpower_0002_000000000071',NULL,'2014-04-17 15:41:27','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-17T15:41:27.707+06</i_start_time><Patient_ID>mpower_0002_000000000071</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><Patient_PulseRate>80</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>80</Patient_BP_Systolic><Patient_BP_Diastolic>120</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.7</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-17T15:42:01.940+06</i_end_time></data>',2,1,5,NULL),(74,NULL,NULL,'2014-04-17 15:48:18',NULL,'\0',NULL,NULL,'2014-04-17 15:47:04','mpower_0002_000000000071',NULL,'2014-04-17 15:47:49','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-17T15:47:49.867+06</i_start_time><Patient_ID>mpower_0002_000000000071</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><Patient_PulseRate>80</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>80</Patient_BP_Systolic><Patient_BP_Diastolic>120</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.7</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-17T15:48:18.312+06</i_end_time></data>',2,1,5,NULL),(75,NULL,NULL,'2014-04-17 15:51:51',NULL,'\0',NULL,NULL,'2014-04-17 15:50:38','mpower_0002_000000000071',NULL,'2014-04-17 15:51:20','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-17T15:51:20.513+06</i_start_time><Patient_ID>mpower_0002_000000000071</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><Patient_PulseRate>80</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>80</Patient_BP_Systolic><Patient_BP_Diastolic>120</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.7</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-17T15:51:51.305+06</i_end_time></data>',2,1,5,NULL),(76,NULL,NULL,'2014-04-17 17:57:49',NULL,'\0',NULL,NULL,'2014-04-17 18:05:31','mpower_0002_000000000122',NULL,'2014-04-17 17:56:38','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-17T17:56:38.745+06</i_start_time><Patient_Image>1397735820318.jpg</Patient_Image><firstPage><Patient_Name>Joynal</Patient_Name><mobile /><Patient_MobileNo>01713584881</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>36</Patient_Age_Year><Patient_Age_Month>5</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000122</Patient_ID><i_end_time>2014-04-17T17:57:49.467+06</i_end_time></data>',1,1,8,NULL),(77,NULL,NULL,'2014-04-17 18:09:23',NULL,'\0',NULL,NULL,'2014-04-17 18:09:24','mpower_0002_000000000122',NULL,'2014-04-17 18:07:47','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-17T18:07:47.419+06</i_start_time><Patient_ID>mpower_0002_000000000122</Patient_ID><Second_page><Patient_Weight_kg>70.0</Patient_Weight_kg><Patient_PulseRate>56</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>122</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-17T18:09:23.128+06</i_end_time></data>',2,1,8,NULL),(78,NULL,NULL,'2014-04-17 19:15:56',NULL,'\0',NULL,NULL,'2014-04-17 19:10:05','mpower_0002_000000000102',NULL,'2014-04-17 19:12:40','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-17T19:12:40.308+06</i_start_time><Patient_Image>1397740420898.jpg</Patient_Image><firstPage><Patient_Name>Jgfddf</Patient_Name><mobile /><Patient_MobileNo>01717893915</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>34</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000102</Patient_ID><i_end_time>2014-04-17T19:15:56.756+06</i_end_time></data>',1,1,5,NULL),(79,NULL,NULL,'2014-04-17 19:20:50',NULL,'\0',NULL,NULL,'2014-04-17 19:15:55','mpower_0002_000000000102',NULL,'2014-04-17 19:17:21','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-17T19:17:21.757+06</i_start_time><Patient_ID>mpower_0002_000000000102</Patient_ID><Second_page><Patient_Weight_kg>45.0</Patient_Weight_kg><Patient_PulseRate>70</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>100</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.7</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-17T19:20:50.694+06</i_end_time></data>',2,1,5,NULL),(80,NULL,NULL,'2014-04-17 19:27:54',NULL,'\0',NULL,NULL,'2014-04-17 19:27:06','mpower_0002_000000000071',NULL,'2014-04-17 19:27:16','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-17T19:27:16.374+06</i_start_time><Patient_ID>mpower_0002_000000000071</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><Patient_PulseRate>80</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.7</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-17T19:27:54.415+06</i_end_time></data>',2,1,5,NULL),(81,NULL,NULL,'2014-04-17 19:46:14',NULL,'\0',NULL,NULL,'2014-04-17 19:45:13','mpower_0002_000000000071',NULL,'2014-04-17 19:45:12','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-17T19:45:12.827+06</i_start_time><Patient_ID>mpower_0002_000000000071</Patient_ID><Second_page><Patient_Weight_kg>50.0</Patient_Weight_kg><Patient_PulseRate>25</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>35</Patient_BP_Systolic><Patient_BP_Diastolic>48</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.8</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-17T19:46:14.598+06</i_end_time></data>',2,1,5,NULL),(82,NULL,NULL,'2014-04-17 19:56:44',NULL,'\0',NULL,NULL,'2014-04-17 19:55:33','mpower_0002_000000000071',NULL,'2014-04-17 19:56:05','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-17T19:56:05.550+06</i_start_time><Patient_ID>mpower_0002_000000000071</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><Patient_PulseRate>55</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>55</Patient_BP_Systolic><Patient_BP_Diastolic>55</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-17T19:56:44.812+06</i_end_time></data>',2,1,5,NULL),(83,NULL,NULL,'2014-04-17 20:02:10',NULL,'\0',NULL,NULL,'2014-04-17 20:00:59','mpower_0002_000000000071',NULL,'2014-04-17 20:01:18','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-17T20:01:18.966+06</i_start_time><Patient_ID>mpower_0002_000000000071</Patient_ID><Second_page><Patient_Weight_kg>29.0</Patient_Weight_kg><Patient_PulseRate>65</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>80</Patient_BP_Systolic><Patient_BP_Diastolic>120</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.2</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-17T20:02:10.844+06</i_end_time></data>',2,1,5,NULL),(84,NULL,NULL,'2014-04-17 19:51:45',NULL,'\0',NULL,NULL,'2014-04-17 20:01:03','mpower_0002_000000000071',NULL,'2014-04-17 19:51:17','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-17T19:51:17.257+06</i_start_time><Patient_ID>mpower_0002_000000000071</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><Patient_PulseRate>80</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-17T19:51:45.586+06</i_end_time></data>',2,1,5,NULL),(85,NULL,NULL,'2014-04-17 19:01:19',NULL,'\0',NULL,NULL,'2014-04-17 22:38:18','mpower_0002_000000000118',NULL,'2014-04-17 18:59:49','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-17T18:59:49.669+06</i_start_time><Patient_Image>1397739606611.jpg</Patient_Image><firstPage><Patient_Name>Hafizur rahman liton</Patient_Name><mobile /><Patient_MobileNo>01718329304</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>37</Patient_Age_Year><Patient_Age_Month>10</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000118</Patient_ID><i_end_time>2014-04-17T19:01:19.000+06</i_end_time></data>',1,1,8,NULL),(86,NULL,NULL,'2014-04-18 10:30:51',NULL,'\0',NULL,NULL,'2014-04-18 10:33:21','mpower_0002_000000000120',NULL,'2014-04-18 10:29:54','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-18T10:29:54.412+06</i_start_time><Patient_Image>1397795404895.jpg</Patient_Image><firstPage><Patient_Name>Aminul islam</Patient_Name><mobile /><Patient_MobileNo>01721405066</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>30</Patient_Age_Year><Patient_Age_Month>5</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000120</Patient_ID><i_end_time>2014-04-18T10:30:51.017+06</i_end_time></data>',1,1,8,NULL),(87,NULL,NULL,'2014-04-19 12:35:04',NULL,'\0',NULL,NULL,'2014-04-19 12:28:31','test_22',NULL,'2014-04-19 12:32:15','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-19T12:32:15.393+06</i_start_time><Patient_Image>1397889187967.jpg</Patient_Image><firstPage><Patient_Name>Etyggfff</Patient_Name><mobile /><Patient_MobileNo>01764564567</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>1</Patient_Age_Year><Patient_Age_Month>8</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>test_22</Patient_ID><i_end_time>2014-04-19T12:35:04.986+06</i_end_time></data>',1,1,19,NULL),(88,NULL,NULL,'2014-04-19 13:35:25',NULL,'\0',NULL,NULL,'2014-04-19 13:29:27','testpatient:1',NULL,'2014-04-19 13:31:06','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-19T13:31:06.195+06</i_start_time><Patient_Image>1397892700586.jpg</Patient_Image><firstPage><Patient_Name>Sadat test</Patient_Name><mobile /><Patient_MobileNo>01717666555</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>1</Patient_Age_Year><Patient_Age_Month>5</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>testpatient:1</Patient_ID><i_end_time>2014-04-19T13:35:25.642+06</i_end_time></data>',1,1,19,NULL),(89,NULL,NULL,'2014-04-19 13:43:55',NULL,'\0',NULL,NULL,'2014-04-19 13:37:14','testpatient:1',NULL,'2014-04-19 13:41:33','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-19T13:41:33.027+06</i_start_time><Patient_ID>testpatient:1</Patient_ID><Second_page><Patient_Weight_kg>1.5</Patient_Weight_kg><Patient_PulseRate>70</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>110</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic><temperature /><Patient_Temperature>97.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-19T13:43:55.607+06</i_end_time></data>',2,1,19,NULL),(90,NULL,NULL,'2014-04-19 14:11:25',NULL,'\0',NULL,NULL,'2014-04-19 14:07:41','testpatient:2',NULL,'2014-04-19 14:04:06','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-19T14:04:06.098+06</i_start_time><Patient_Image>1397894761093.jpg</Patient_Image><firstPage><Patient_Name>Fhjkfyiikgh</Patient_Name><mobile /><Patient_MobileNo>01717893915</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>1</Patient_Age_Year><Patient_Age_Month>8</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>testpatient:2</Patient_ID><i_end_time>2014-04-19T14:11:25.638+06</i_end_time></data>',1,1,19,NULL),(91,NULL,NULL,'2014-04-19 13:43:55',NULL,'\0',NULL,NULL,'2014-04-19 14:08:10','testpatient:1',NULL,'2014-04-19 13:41:33','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-19T13:41:33.027+06</i_start_time><Patient_ID>testpatient:1</Patient_ID><Second_page><Patient_Weight_kg>1.5</Patient_Weight_kg><Patient_PulseRate>70</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>110</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic><temperature /><Patient_Temperature>97.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-19T13:43:55.607+06</i_end_time></data>',2,1,19,NULL),(92,NULL,NULL,'2014-04-19 14:19:01',NULL,'\0',NULL,NULL,'2014-04-19 14:12:29','testpatient:2',NULL,'2014-04-19 14:15:47','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-19T14:15:47.493+06</i_start_time><Patient_ID>testpatient:2</Patient_ID><Second_page><Patient_Weight_kg>2.4</Patient_Weight_kg><Patient_PulseRate>65</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.6</Patient_Temperature><respiratory /><Patient_RespiratoryRate>3</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-19T14:19:01.035+06</i_end_time></data>',2,1,19,NULL),(93,NULL,NULL,'2014-04-20 18:12:57',NULL,'\0',NULL,NULL,'2014-04-20 18:13:08','android_test',NULL,'2014-04-20 18:11:17','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-20T18:11:17.620+06</i_start_time><Patient_ID>android_test</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><Patient_PulseRate>80</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.6</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-20T18:12:57.859+06</i_end_time></data>',2,1,20,NULL),(94,NULL,NULL,'2014-04-21 15:57:49',NULL,'\0',NULL,NULL,'2014-04-21 15:59:05','mpower_0002_000000000013',NULL,'2014-04-21 15:46:08','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T15:46:08.113+06</i_start_time><Patient_Image>1398073682029.jpg</Patient_Image><firstPage><Patient_Name>Abdul Karim</Patient_Name><mobile /><Patient_MobileNo>01724968467</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>1</Patient_Age_Year><Patient_Age_Month>11</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000013</Patient_ID><i_end_time>2014-04-21T15:57:49.654+06</i_end_time></data>',1,1,9,NULL),(95,NULL,NULL,'2014-04-21 16:16:03',NULL,'\0',NULL,NULL,'2014-04-21 16:16:42','mpower_0002_000000000108',NULL,'2014-04-21 16:10:39','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T16:10:39.966+06</i_start_time><Patient_Image>1398075100857.jpg</Patient_Image><firstPage><Patient_Name>Rovil</Patient_Name><mobile /><Patient_MobileNo>01726564168</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>3</Patient_Age_Year><Patient_Age_Month>2</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000108</Patient_ID><i_end_time>2014-04-21T16:16:03.929+06</i_end_time></data>',1,1,13,NULL),(96,NULL,NULL,'2014-04-21 16:18:17',NULL,'\0',NULL,NULL,'2014-04-21 16:17:40','mpower_0002_000000000024',NULL,'2014-04-21 16:09:42','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T16:09:42.552+06</i_start_time><Patient_Image>1398075097884.jpg</Patient_Image><firstPage><Patient_Name>Md Jaynal uddin</Patient_Name><mobile /><Patient_MobileNo>01713584881</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>37</Patient_Age_Year><Patient_Age_Month>2</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000024</Patient_ID><i_end_time>2014-04-21T16:18:17.999+06</i_end_time></data>',1,1,12,NULL),(97,NULL,NULL,'2014-04-21 16:17:02',NULL,'\0',NULL,NULL,'2014-04-21 16:18:16','mpower_0002_000000000107',NULL,'2014-04-21 16:11:50','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T16:11:50.876+06</i_start_time><Patient_Image>1398075152187.jpg</Patient_Image><firstPage><Patient_Name>Kamal khan</Patient_Name><mobile /><Patient_MobileNo>01721405066</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>30</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000107</Patient_ID><i_end_time>2014-04-21T16:17:02.493+06</i_end_time></data>',1,1,11,NULL),(98,NULL,NULL,'2014-04-21 16:21:03',NULL,'\0',NULL,NULL,'2014-04-21 16:21:14','mpower_0002_000000000150',NULL,'2014-04-21 16:10:24','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T16:10:24.182+06</i_start_time><Patient_Image>1398075173938.jpg</Patient_Image><firstPage><Patient_Name>Moyazzem Hossen</Patient_Name><mobile /><Patient_MobileNo>01713599877</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>50</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000150</Patient_ID><i_end_time>2014-04-21T16:21:03.212+06</i_end_time></data>',1,1,9,NULL),(99,NULL,NULL,'2014-04-21 16:26:27',NULL,'\0',NULL,NULL,'2014-04-21 16:25:57','mpower_0002_000000000106',NULL,'2014-04-21 16:22:38','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T16:22:38.089+06</i_start_time><Patient_Image>1398075774999.jpg</Patient_Image><firstPage><Patient_Name>Sha Alam\n\n</Patient_Name><mobile /><Patient_MobileNo>01712338637</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>48</Patient_Age_Year><Patient_Age_Month>2</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000106</Patient_ID><i_end_time>2014-04-21T16:26:27.720+06</i_end_time></data>',1,1,17,NULL),(100,NULL,NULL,'2014-04-21 16:29:17',NULL,'\0',NULL,NULL,'2014-04-21 16:29:11','mpower_0002_000000000117',NULL,'2014-04-21 16:25:01','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T16:25:01.211+06</i_start_time><Patient_Image>1398075942741.jpg</Patient_Image><firstPage><Patient_Name>Khalil</Patient_Name><mobile /><Patient_MobileNo>01724968467</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>38</Patient_Age_Year><Patient_Age_Month>5</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000117</Patient_ID><i_end_time>2014-04-21T16:29:17.855+06</i_end_time></data>',1,1,15,NULL),(101,NULL,NULL,'2014-04-21 16:30:56',NULL,'\0',NULL,NULL,'2014-04-21 16:31:18','RMPtest3:rmptest3',NULL,'2014-04-21 16:23:59','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T16:23:59.193+06</i_start_time><Patient_Image>1398075936355.jpg</Patient_Image><firstPage><Patient_Name>Liton khanmm</Patient_Name><mobile /><Patient_MobileNo>01718329004</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>40</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>RMPtest3:rmptest3</Patient_ID><i_end_time>2014-04-21T16:30:56.036+06</i_end_time></data>',1,1,16,NULL),(102,NULL,NULL,'2014-04-21 16:37:05',NULL,'\0',NULL,NULL,'2014-04-21 16:36:18','mpower_0002_000000000032',NULL,'2014-04-21 16:32:05','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T16:32:05.870+06</i_start_time><Patient_Image>1398076397859.jpg</Patient_Image><firstPage><Patient_Name>md Jaynal</Patient_Name><mobile /><Patient_MobileNo>01735881458</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>40</Patient_Age_Year><Patient_Age_Month>4</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000032</Patient_ID><i_end_time>2014-04-21T16:37:05.614+06</i_end_time></data>',1,1,12,NULL),(103,NULL,NULL,'2014-04-21 16:35:07',NULL,'\0',NULL,NULL,'2014-04-21 16:37:06','mpower_0002_000000000129',NULL,'2014-04-21 16:25:31','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T16:25:31.028+06</i_start_time><Patient_Image>1398075991127.jpg</Patient_Image><firstPage><Patient_Name>Prithis</Patient_Name><mobile /><Patient_MobileNo>01713515966</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>28</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000129</Patient_ID><i_end_time>2014-04-21T16:35:07.813+06</i_end_time></data>',1,1,10,NULL),(104,NULL,NULL,'2014-04-21 16:39:13',NULL,'\0',NULL,NULL,'2014-04-21 16:39:33','mpower_0002_000000000029',NULL,'2014-04-21 16:34:17','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T16:34:17.032+06</i_start_time><Patient_Image>1398076506437.jpg</Patient_Image><firstPage><Patient_Name>Aminul lsham</Patient_Name><mobile /><Patient_MobileNo>01721405066</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>35</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000029</Patient_ID><i_end_time>2014-04-21T16:39:13.430+06</i_end_time></data>',1,1,11,NULL),(105,NULL,NULL,'2014-04-21 16:40:25',NULL,'\0',NULL,NULL,'2014-04-21 16:41:14','mpower_0002_000000000090',NULL,'2014-04-21 16:30:18','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T16:30:18.460+06</i_start_time><Patient_Image>1398076359381.jpg</Patient_Image><firstPage><Patient_Name>Panna</Patient_Name><mobile /><Patient_MobileNo>01711234567</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>30</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000090</Patient_ID><i_end_time>2014-04-21T16:40:25.359+06</i_end_time></data>',1,1,14,NULL),(106,NULL,NULL,'2014-04-21 16:45:15',NULL,'\0',NULL,NULL,'2014-04-21 16:44:27','mpower_0002_000000000030',NULL,'2014-04-21 16:40:58','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T16:40:58.347+06</i_start_time><Patient_Image>1398076884099.jpg</Patient_Image><firstPage><Patient_Name>Md Jaynal</Patient_Name><mobile /><Patient_MobileNo>01712338637</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>40</Patient_Age_Year><Patient_Age_Month>4</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000030</Patient_ID><i_end_time>2014-04-21T16:45:15.729+06</i_end_time></data>',1,1,12,NULL),(107,NULL,NULL,'2014-04-21 16:45:21',NULL,'\0',NULL,NULL,'2014-04-21 16:45:12','mpower_0002_000000000042',NULL,'2014-04-21 16:41:05','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T16:41:05.737+06</i_start_time><Patient_Image>1398076892722.jpg</Patient_Image><firstPage><Patient_Name>Mone</Patient_Name><mobile /><Patient_MobileNo>01745302402</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>28</Patient_Age_Year><Patient_Age_Month>0</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000042</Patient_ID><i_end_time>2014-04-21T16:45:21.796+06</i_end_time></data>',1,1,9,NULL),(108,NULL,NULL,'2014-04-21 16:46:25',NULL,'\0',NULL,NULL,'2014-04-21 16:46:44','mpower_0002_000000000028',NULL,'2014-04-21 16:42:56','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T16:42:56.523+06</i_start_time><Patient_Image>1398077006855.jpg</Patient_Image><firstPage><Patient_Name>Sadat</Patient_Name><mobile /><Patient_MobileNo>01737233902</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>25</Patient_Age_Year><Patient_Age_Month>6</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000028</Patient_ID><i_end_time>2014-04-21T16:46:25.287+06</i_end_time></data>',1,1,15,NULL),(109,NULL,NULL,'2014-04-21 16:47:08',NULL,'\0',NULL,NULL,'2014-04-21 16:47:18','mpower_0002_000000000033',NULL,'2014-04-21 16:43:15','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T16:43:15.445+06</i_start_time><Patient_Image>1398077072840.jpg</Patient_Image><firstPage><Patient_Name>Liton mia</Patient_Name><mobile /><Patient_MobileNo>01718329304</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>45</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000033</Patient_ID><i_end_time>2014-04-21T16:47:08.556+06</i_end_time></data>',1,1,16,NULL),(110,NULL,NULL,'2014-04-21 16:50:55',NULL,'\0',NULL,NULL,'2014-04-21 16:49:55','mpower_0002_000000000039',NULL,'2014-04-21 16:47:23','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T16:47:23.889+06</i_start_time><Patient_Image>1398077279657.jpg</Patient_Image><firstPage><Patient_Name>shah Alam</Patient_Name><mobile /><Patient_MobileNo>01712338637</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>40</Patient_Age_Year><Patient_Age_Month>6</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000039</Patient_ID><i_end_time>2014-04-21T16:50:55.088+06</i_end_time></data>',1,1,17,NULL),(111,NULL,NULL,'2014-04-21 16:50:29',NULL,'\0',NULL,NULL,'2014-04-21 16:50:12','mpower_0002_000000000045',NULL,'2014-04-21 16:46:56','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T16:46:56.025+06</i_start_time><Patient_Image>1398077240174.jpg</Patient_Image><firstPage><Patient_Name>Roxe</Patient_Name><mobile /><Patient_MobileNo>01836175868</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>20</Patient_Age_Year><Patient_Age_Month>0</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000045</Patient_ID><i_end_time>2014-04-21T16:50:29.716+06</i_end_time></data>',1,1,9,NULL),(112,NULL,NULL,'2014-04-21 16:54:26',NULL,'\0',NULL,NULL,'2014-04-21 16:54:40','mpower_0002_000000000031',NULL,'2014-04-21 16:48:55','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T16:48:55.047+06</i_start_time><Patient_Image>1398077404963.jpg</Patient_Image><firstPage><Patient_Name>Salim</Patient_Name><mobile /><Patient_MobileNo>01711342654</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>40</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000031</Patient_ID><i_end_time>2014-04-21T16:54:26.547+06</i_end_time></data>',1,1,14,NULL),(113,NULL,NULL,'2014-04-21 16:55:16',NULL,'\0',NULL,NULL,'2014-04-21 16:55:05','mpower_0002_000000000018',NULL,'2014-04-21 16:50:31','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T16:50:31.616+06</i_start_time><Patient_Image>1398077465074.jpg</Patient_Image><firstPage><Patient_Name>Marufur Rahman</Patient_Name><mobile /><Patient_MobileNo>01710974253</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>27</Patient_Age_Year><Patient_Age_Month>6</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000018</Patient_ID><i_end_time>2014-04-21T16:55:16.492+06</i_end_time></data>',1,1,15,NULL),(114,NULL,NULL,'2014-04-21 16:56:57',NULL,'\0',NULL,NULL,'2014-04-21 16:57:00','mpower_0002_000000000023',NULL,'2014-04-21 16:49:53','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T16:49:53.965+06</i_start_time><Patient_Image>1398077470677.jpg</Patient_Image><firstPage><Patient_Name>Salam khan</Patient_Name><mobile /><Patient_MobileNo>01718329304</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>33</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000023</Patient_ID><i_end_time>2014-04-21T16:56:57.819+06</i_end_time></data>',1,1,11,NULL),(115,NULL,NULL,'2014-04-21 18:56:02',NULL,'\0',NULL,NULL,'2014-04-21 18:56:46','mpower_0002_000000000106',NULL,'2014-04-21 18:25:44','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-21T18:25:44.848+06</i_start_time><Patient_ID>mpower_0002_000000000106</Patient_ID><Second_page><Patient_Weight_kg>67.0</Patient_Weight_kg><Patient_PulseRate>78</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>97.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-21T18:56:02.600+06</i_end_time></data>',2,1,18,NULL),(116,NULL,NULL,'2014-04-21 19:29:40',NULL,'\0',NULL,NULL,'2014-04-21 19:29:35','mpower_0002_000000000029',NULL,'2014-04-21 19:26:04','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-21T19:26:04.613+06</i_start_time><Patient_ID>mpower_0002_000000000029</Patient_ID><Second_page><Patient_Weight_kg>56.0</Patient_Weight_kg><Patient_PulseRate>85</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>3</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-21T19:29:40.139+06</i_end_time></data>',2,1,15,NULL),(117,NULL,NULL,'2014-04-21 20:13:28',NULL,'\0',NULL,NULL,'2014-04-21 20:12:40','mpower_0002_000000000029',NULL,'2014-04-21 20:11:05','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-21T20:11:05.758+06</i_start_time><Patient_ID>mpower_0002_000000000029</Patient_ID><Second_page><Patient_Weight_kg>50.0</Patient_Weight_kg><Patient_PulseRate>96</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-21T20:13:28.148+06</i_end_time></data>',2,1,15,NULL),(118,NULL,NULL,'2014-04-21 20:14:02',NULL,'\0',NULL,NULL,'2014-04-21 20:13:54','mpower_0002_000000000108',NULL,'2014-04-21 20:11:17','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-21T20:11:17.537+06</i_start_time><Patient_ID>mpower_0002_000000000108</Patient_ID><Second_page><Patient_Weight_kg>70.0</Patient_Weight_kg><Patient_PulseRate>76</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>60</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-21T20:14:02.144+06</i_end_time></data>',2,1,14,NULL),(119,NULL,NULL,'2014-04-21 20:18:52',NULL,'\0',NULL,NULL,'2014-04-21 20:21:18','mpower_0002_000000000106',NULL,'2014-04-21 20:12:06','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-21T20:12:06.921+06</i_start_time><Patient_ID>mpower_0002_000000000106</Patient_ID><Second_page><Patient_Weight_kg>70.0</Patient_Weight_kg><Patient_PulseRate>76</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>80.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>3</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-21T20:18:52.055+06</i_end_time></data>',2,1,12,NULL),(120,NULL,NULL,'2014-04-18 10:42:24',NULL,'\0',NULL,NULL,'2014-04-21 20:21:26','mpower_0002_000000000120',NULL,'2014-04-18 10:41:32','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-18T10:41:32.907+06</i_start_time><Patient_ID>mpower_0002_000000000120</Patient_ID><Second_page><Patient_Weight_kg>56.0</Patient_Weight_kg><Patient_PulseRate>54</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>3</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-18T10:42:24.643+06</i_end_time></data>',2,1,13,NULL),(121,NULL,NULL,'2014-04-21 20:30:04',NULL,'\0',NULL,NULL,'2014-04-21 20:29:56','mpower_0002_000000000042',NULL,'2014-04-21 20:27:30','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-21T20:27:30.242+06</i_start_time><Patient_ID>mpower_0002_000000000042</Patient_ID><Second_page><Patient_Weight_kg>45.0</Patient_Weight_kg><Patient_PulseRate>75</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>140</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-21T20:30:04.994+06</i_end_time></data>',2,1,9,NULL),(122,NULL,NULL,'2014-04-21 20:15:18',NULL,'\0',NULL,NULL,'2014-04-21 20:30:35','mpower_0002_000000000024',NULL,'2014-04-21 20:11:03','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-21T20:11:03.496+06</i_start_time><Patient_ID>mpower_0002_000000000024</Patient_ID><Second_page><Patient_Weight_kg>45.0</Patient_Weight_kg><Patient_PulseRate>77</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>140</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic><temperature /><Patient_Temperature>99.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-21T20:15:18.785+06</i_end_time></data>',2,1,9,NULL),(123,NULL,NULL,'2014-04-21 20:37:57',NULL,'\0',NULL,NULL,'2014-04-21 20:38:45','mpower_0002_000000000033',NULL,'2014-04-21 20:35:14','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-21T20:35:14.327+06</i_start_time><Patient_ID>mpower_0002_000000000033</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><Patient_PulseRate>45</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-21T20:37:57.794+06</i_end_time></data>',2,1,11,NULL),(124,NULL,NULL,'2014-04-21 20:50:48',NULL,'\0',NULL,NULL,'2014-04-21 20:50:52','mpower_0002_000000000150',NULL,'2014-04-21 20:48:36','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-21T20:48:36.187+06</i_start_time><Patient_ID>mpower_0002_000000000150</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><Patient_PulseRate>86</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>150</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic><temperature /><Patient_Temperature>101.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-21T20:50:48.896+06</i_end_time></data>',2,1,17,NULL),(125,NULL,NULL,'2014-04-21 20:35:09',NULL,'\0',NULL,NULL,'2014-04-21 22:26:06','mpower_0002_000000000033',NULL,'2014-04-21 20:32:42','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-21T20:32:42.850+06</i_start_time><Patient_ID>mpower_0002_000000000033</Patient_ID><Second_page><Patient_Weight_kg>65.0</Patient_Weight_kg><Patient_PulseRate>75</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>3</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-21T20:35:09.667+06</i_end_time></data>',2,1,11,NULL),(126,NULL,NULL,'2014-04-21 22:33:35',NULL,'\0',NULL,NULL,'2014-04-21 22:33:47','mpower_0002_000000000096',NULL,'2014-04-21 22:31:28','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T22:31:28.408+06</i_start_time><Patient_Image>1398097899964.jpg</Patient_Image><firstPage><Patient_Name>Josna</Patient_Name><mobile /><Patient_MobileNo>01724968467</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>55</Patient_Age_Year><Patient_Age_Month>0</Patient_Age_Month><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000096</Patient_ID><i_end_time>2014-04-21T22:33:35.898+06</i_end_time></data>',1,1,15,NULL),(127,NULL,NULL,'2014-04-21 22:39:28',NULL,'\0',NULL,NULL,'2014-04-21 22:38:52','mpower_0002_000000000094',NULL,'2014-04-21 22:36:03','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T22:36:03.917+06</i_start_time><Patient_Image>1398098177354.jpg</Patient_Image><firstPage><Patient_Name>Shafiulla</Patient_Name><mobile /><Patient_MobileNo>01912816322</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>14</Patient_Age_Year><Patient_Age_Month>6</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000094</Patient_ID><i_end_time>2014-04-21T22:39:28.082+06</i_end_time></data>',1,1,15,NULL),(128,NULL,NULL,'2014-04-21 22:45:33',NULL,'\0',NULL,NULL,'2014-04-21 22:45:08','mpower_0002_000000000111',NULL,'2014-04-21 22:41:24','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T22:41:24.411+06</i_start_time><Patient_Image>1398098514331.jpg</Patient_Image><firstPage><Patient_Name>SHohel</Patient_Name><mobile /><Patient_MobileNo>01721405066</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>35</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000111</Patient_ID><i_end_time>2014-04-21T22:45:33.166+06</i_end_time></data>',1,1,15,NULL),(129,NULL,NULL,'2014-04-21 22:55:51',NULL,'\0',NULL,NULL,'2014-04-21 22:55:40','mpower_0002_000000000140',NULL,'2014-04-21 22:54:42','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T22:54:42.472+06</i_start_time><Patient_Image>1398099296487.jpg</Patient_Image><firstPage><Patient_Name>Mustafa Kamal</Patient_Name><mobile /><Patient_MobileNo>01715091051</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>49</Patient_Age_Year><Patient_Age_Month>5</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000140</Patient_ID><i_end_time>2014-04-21T22:55:51.855+06</i_end_time></data>',1,1,10,NULL),(130,NULL,NULL,'2014-04-21 22:57:32',NULL,'\0',NULL,NULL,'2014-04-21 22:57:09','mpower_0002_000000000105',NULL,'2014-04-21 22:53:11','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T22:53:11.025+06</i_start_time><Patient_Image>1398099209549.jpg</Patient_Image><firstPage><Patient_Name>Jobada</Patient_Name><mobile /><Patient_MobileNo>01949197100</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>55</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000105</Patient_ID><i_end_time>2014-04-21T22:57:32.499+06</i_end_time></data>',1,1,16,NULL),(131,NULL,NULL,'2014-04-21 23:06:31',NULL,'\0',NULL,NULL,'2014-04-21 23:05:54','mpower_0002_000000000144',NULL,'2014-04-21 23:02:49','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T23:02:49.538+06</i_start_time><Patient_Image>1398099808623.jpg</Patient_Image><firstPage><Patient_Name>Helal Mia</Patient_Name><mobile /><Patient_MobileNo>01723276545</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>45</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000144</Patient_ID><i_end_time>2014-04-21T23:06:31.987+06</i_end_time></data>',1,1,17,NULL),(132,NULL,NULL,'2014-04-21 23:09:21',NULL,'\0',NULL,NULL,'2014-04-21 23:09:24','mpower_0002_000000000027',NULL,'2014-04-21 23:06:15','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T23:06:15.623+06</i_start_time><Patient_Image>1398100010706.jpg</Patient_Image><firstPage><Patient_Name>Kamal khan</Patient_Name><mobile /><Patient_MobileNo>01718329904</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>45</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000027</Patient_ID><i_end_time>2014-04-21T23:09:21.672+06</i_end_time></data>',1,1,11,NULL),(133,NULL,NULL,'2014-04-21 23:12:31',NULL,'\0',NULL,NULL,'2014-04-21 23:14:28','mpower_0002_000000000141',NULL,'2014-04-21 23:04:26','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T23:04:26.867+06</i_start_time><Patient_Image>1398099894092.jpg</Patient_Image><firstPage><Patient_Name>Rebaka</Patient_Name><mobile /><Patient_MobileNo>01740936169</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>42</Patient_Age_Year><Patient_Age_Month>5</Patient_Age_Month><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000141</Patient_ID><i_end_time>2014-04-21T23:12:31.405+06</i_end_time></data>',1,1,10,NULL),(134,NULL,NULL,'2014-04-21 23:18:47',NULL,'\0',NULL,NULL,'2014-04-21 23:17:38','mpower_0002_000000000091',NULL,'2014-04-21 23:17:30','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T23:17:30.013+06</i_start_time><Patient_Image>1398100663010.jpg</Patient_Image><firstPage><Patient_Name>Shammi akter</Patient_Name><mobile /><Patient_MobileNo>01915886877</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>35</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000091</Patient_ID><i_end_time>2014-04-21T23:18:47.789+06</i_end_time></data>',1,1,17,NULL),(135,NULL,NULL,'2014-04-22 02:21:11',NULL,'\0',NULL,NULL,'2014-04-22 02:21:04','RMPtest1:rmptest1',NULL,'2014-04-21 23:19:52','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T23:19:52.769+06</i_start_time><Patient_Image>1398100814116.jpg</Patient_Image><firstPage><Patient_Name>Mamod ali</Patient_Name><mobile /><Patient_MobileNo>01736015280</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>45</Patient_Age_Year><Patient_Age_Month>5</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>RMPtest1:rmptest1</Patient_ID><i_end_time>2014-04-22T02:21:11.492+06</i_end_time></data>',1,1,10,NULL),(136,NULL,NULL,'2014-04-22 02:32:23',NULL,'\0',NULL,NULL,'2014-04-22 02:32:22','mpower_0002_000000000147',NULL,'2014-04-22 02:23:33','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-22T02:23:33.304+06</i_start_time><Patient_Image>1398111848096.jpg</Patient_Image><firstPage><Patient_Name>Roton</Patient_Name><mobile /><Patient_MobileNo>01772640055</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>28</Patient_Age_Year><Patient_Age_Month>0</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000147</Patient_ID><i_end_time>2014-04-22T02:32:23.610+06</i_end_time></data>',1,1,10,NULL),(137,NULL,NULL,'2014-04-22 02:40:55',NULL,'\0',NULL,NULL,'2014-04-22 02:40:42','mpower_0002_000000000137',NULL,'2014-04-22 02:35:57','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-22T02:35:57.060+06</i_start_time><Patient_Image>1398112603778.jpg</Patient_Image><firstPage><Patient_Name>Rove</Patient_Name><mobile /><Patient_MobileNo>01912371498</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>50</Patient_Age_Year><Patient_Age_Month>0</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000137</Patient_ID><i_end_time>2014-04-22T02:40:55.014+06</i_end_time></data>',1,1,10,NULL),(138,NULL,NULL,'2014-04-22 13:04:15',NULL,'\0',NULL,NULL,'2014-04-22 13:03:34','mpower_0002_000000000094',NULL,'2014-04-22 13:02:06','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-22T13:02:06.500+06</i_start_time><Patient_ID>mpower_0002_000000000094</Patient_ID><Second_page><Patient_Weight_kg>96.0</Patient_Weight_kg><Patient_PulseRate>90</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>125</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-22T13:04:15.628+06</i_end_time></data>',2,1,15,NULL),(139,NULL,NULL,'2014-04-22 13:05:37',NULL,'\0',NULL,NULL,'2014-04-22 13:07:09','mpower_0002_000000000129',NULL,'2014-04-22 13:02:04','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-22T13:02:04.187+06</i_start_time><Patient_ID>mpower_0002_000000000129</Patient_ID><Second_page><Patient_Weight_kg>50.0</Patient_Weight_kg><Patient_PulseRate>75</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-22T13:05:37.322+06</i_end_time></data>',2,1,9,NULL),(140,NULL,NULL,'2014-04-22 13:08:02',NULL,'\0',NULL,NULL,'2014-04-22 13:07:43','RMPtest3:rmptest3',NULL,'2014-04-22 13:06:09','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-22T13:06:09.503+06</i_start_time><Patient_ID>RMPtest3:rmptest3</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><Patient_PulseRate>65</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>110</Patient_BP_Systolic><Patient_BP_Diastolic>70</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-22T13:08:02.768+06</i_end_time></data>',2,1,11,NULL),(141,NULL,NULL,'2014-04-22 13:12:17',NULL,'\0',NULL,NULL,'2014-04-22 13:11:54','RMPtest1:rmptest1',NULL,'2014-04-22 13:10:11','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-22T13:10:11.789+06</i_start_time><Patient_ID>RMPtest1:rmptest1</Patient_ID><Second_page><Patient_Weight_kg>50.0</Patient_Weight_kg><Patient_PulseRate>75</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-22T13:12:17.236+06</i_end_time></data>',2,1,9,NULL),(142,NULL,NULL,'2014-04-22 00:11:26',NULL,'\0',NULL,NULL,'2014-04-22 13:28:34','mpower_0002_000000000139',NULL,'2014-04-22 00:08:59','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-22T00:08:59.131+06</i_start_time><Patient_Image>1398103757837.jpg</Patient_Image><firstPage><Patient_Name>Eycin</Patient_Name><mobile /><Patient_MobileNo>01989228530</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>8</Patient_Age_Year><Patient_Age_Month>11</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000139</Patient_ID><i_end_time>2014-04-22T00:11:26.786+06</i_end_time></data>',1,1,13,NULL),(143,NULL,NULL,'2014-04-22 13:28:01',NULL,'\0',NULL,NULL,'2014-04-22 13:28:49','mpower_0002_000000000024',NULL,'2014-04-22 13:25:50','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-22T13:25:50.581+06</i_start_time><Patient_ID>mpower_0002_000000000024</Patient_ID><Second_page><Patient_Weight_kg>50.0</Patient_Weight_kg><Patient_PulseRate>86</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>102.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-22T13:28:01.990+06</i_end_time></data>',2,1,17,NULL),(144,NULL,NULL,'2014-04-22 13:05:46',NULL,'\0',NULL,NULL,'2014-04-22 13:29:06','mpower_0002_000000000139',NULL,'2014-04-22 13:01:20','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-22T13:01:20.536+06</i_start_time><Patient_ID>mpower_0002_000000000139</Patient_ID><Second_page><Patient_Weight_kg>20.0</Patient_Weight_kg><Patient_PulseRate>100</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>100</Patient_BP_Systolic><Patient_BP_Diastolic>60</Patient_BP_Diastolic><temperature /><Patient_Temperature>99.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-22T13:05:46.375+06</i_end_time></data>',2,1,13,NULL),(145,NULL,NULL,'2014-04-21 23:23:53',NULL,'\0',NULL,NULL,'2014-04-22 14:33:02','mpower_0002_000000000036',NULL,'2014-04-21 23:19:11','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-21T23:19:11.960+06</i_start_time><Patient_Image>1398100834687.jpg</Patient_Image><firstPage><Patient_Name>Salim khan</Patient_Name><mobile /><Patient_MobileNo>01718525352</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>35</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000036</Patient_ID><i_end_time>2014-04-21T23:23:53.543+06</i_end_time></data>',1,1,14,NULL),(146,NULL,NULL,'2014-04-22 13:05:07',NULL,'\0',NULL,NULL,'2014-04-22 14:33:03','mpower_0002_000000000027',NULL,'2014-04-22 13:02:19','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-22T13:02:19.427+06</i_start_time><Patient_ID>mpower_0002_000000000027</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><Patient_PulseRate>65</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>110</Patient_BP_Systolic><Patient_BP_Diastolic>70</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-22T13:05:07.000+06</i_end_time></data>',2,1,14,NULL),(147,NULL,NULL,'2014-04-22 14:43:05',NULL,'\0',NULL,NULL,'2014-04-22 14:42:55','mpower_0002_000000000105',NULL,'2014-04-22 13:29:36','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-22T13:29:36.573+06</i_start_time><Patient_ID>mpower_0002_000000000105</Patient_ID><Second_page><Patient_Weight_kg>50.0</Patient_Weight_kg><Patient_PulseRate>70</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>110</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-22T14:43:05.267+06</i_end_time></data>',2,1,16,NULL),(148,NULL,NULL,'2014-04-22 14:44:51',NULL,'\0',NULL,NULL,'2014-04-22 14:46:47','mpower_0002_000000000091',NULL,'2014-04-22 14:42:47','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-22T14:42:47.860+06</i_start_time><Patient_ID>mpower_0002_000000000091</Patient_ID><Second_page><Patient_Weight_kg>50.0</Patient_Weight_kg><Patient_PulseRate>88</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>99.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-22T14:44:51.501+06</i_end_time></data>',2,1,12,NULL),(149,NULL,NULL,'2014-04-22 15:22:48',NULL,'\0',NULL,NULL,'2014-04-22 15:23:09','mpower_0002_000000000030',NULL,'2014-04-22 15:16:45','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-22T15:16:45.196+06</i_start_time><Patient_ID>mpower_0002_000000000030</Patient_ID><Second_page><Patient_Weight_kg>58.0</Patient_Weight_kg><Patient_PulseRate>68</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-22T15:22:48.229+06</i_end_time></data>',2,1,18,NULL),(150,NULL,NULL,'2014-04-22 16:30:30',NULL,'\0',NULL,NULL,'2014-04-22 16:31:32','mpower_0002_000000000024',NULL,'2014-04-22 16:29:05','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-22T16:29:05.960+06</i_start_time><Patient_ID>mpower_0002_000000000024</Patient_ID><Second_page><Patient_Weight_kg>58.0</Patient_Weight_kg><Patient_PulseRate>89</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>130</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic><temperature /><Patient_Temperature>99.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-22T16:30:30.157+06</i_end_time></data>',2,1,17,NULL),(151,NULL,NULL,'2014-04-22 16:32:33',NULL,'\0',NULL,NULL,'2014-04-22 16:32:10','mpower_0002_000000000047',NULL,'2014-04-22 16:27:40','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-22T16:27:40.655+06</i_start_time><Patient_Image>1398162517268.jpg</Patient_Image><firstPage><Patient_Name>Amd</Patient_Name><mobile /><Patient_MobileNo>01715666777</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>25</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000047</Patient_ID><i_end_time>2014-04-22T16:32:33.439+06</i_end_time></data>',1,1,11,NULL),(152,NULL,NULL,'2014-04-22 16:37:14',NULL,'\0',NULL,NULL,'2014-04-22 16:37:11','mpower_0002_000000000047',NULL,'2014-04-22 16:33:47','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-22T16:33:47.586+06</i_start_time><Patient_ID>mpower_0002_000000000047</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><Patient_PulseRate>65</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>110</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-22T16:37:14.889+06</i_end_time></data>',2,1,11,NULL),(153,NULL,NULL,'2014-04-22 17:28:45',NULL,'\0',NULL,NULL,'2014-04-22 17:28:26','mpower_0002_000000000022',NULL,'2014-04-22 17:25:04','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-22T17:25:04.862+06</i_start_time><Patient_Image>1398165926937.jpg</Patient_Image><firstPage><Patient_Name>Aminu l</Patient_Name><mobile /><Patient_MobileNo>01721405066</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>30</Patient_Age_Year><Patient_Age_Month>0</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000022</Patient_ID><i_end_time>2014-04-22T17:28:45.181+06</i_end_time></data>',1,1,9,NULL),(154,NULL,NULL,'2014-04-22 17:37:07',NULL,'\0',NULL,NULL,'2014-04-22 17:36:47','mpower_0002_000000000137',NULL,'2014-04-22 17:34:06','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-22T17:34:06.302+06</i_start_time><Patient_ID>mpower_0002_000000000137</Patient_ID><Second_page><Patient_Weight_kg>50.0</Patient_Weight_kg><Patient_PulseRate>76</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>140</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic><temperature /><Patient_Temperature>99.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-22T17:37:07.681+06</i_end_time></data>',2,1,9,NULL),(155,NULL,NULL,'2014-04-22 17:37:25',NULL,'\0',NULL,NULL,'2014-04-22 17:37:28','mpower_0002_000000000078',NULL,'2014-04-22 17:35:51','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-22T17:35:51.619+06</i_start_time><Patient_Image>1398166566867.jpg</Patient_Image><firstPage><Patient_Name>Shammi</Patient_Name><mobile /><Patient_MobileNo>01975759759</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>28</Patient_Age_Year><Patient_Age_Month>1</Patient_Age_Month><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000078</Patient_ID><i_end_time>2014-04-22T17:37:25.547+06</i_end_time></data>',1,1,15,NULL),(156,NULL,NULL,'2014-04-22 17:39:40',NULL,'\0',NULL,NULL,'2014-04-22 17:39:49','mpower_0002_000000000038',NULL,'2014-04-22 17:32:22','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-22T17:32:22.422+06</i_start_time><Patient_Image>1398166455189.jpg</Patient_Image><firstPage><Patient_Name>Amin </Patient_Name><mobile /><Patient_MobileNo>01715686786</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>25</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000038</Patient_ID><i_end_time>2014-04-22T17:39:40.860+06</i_end_time></data>',1,1,14,NULL),(157,NULL,NULL,'2014-04-22 17:42:58',NULL,'\0',NULL,NULL,'2014-04-22 17:42:17','mpower_0002_000000000067',NULL,'2014-04-22 17:40:28','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-22T17:40:28.630+06</i_start_time><Patient_Image>1398166858946.jpg</Patient_Image><firstPage><Patient_Name>shahin</Patient_Name><mobile /><Patient_MobileNo>01717893915</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>45</Patient_Age_Year><Patient_Age_Month>6</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000067</Patient_ID><i_end_time>2014-04-22T17:42:58.152+06</i_end_time></data>',1,1,12,NULL),(158,NULL,NULL,'2014-04-22 17:42:10',NULL,'\0',NULL,NULL,'2014-04-22 17:44:57','mpower_0002_000000000078',NULL,'2014-04-22 17:40:16','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-22T17:40:16.476+06</i_start_time><Patient_ID>mpower_0002_000000000078</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><Patient_PulseRate>96</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-22T17:42:10.589+06</i_end_time></data>',2,1,15,NULL),(159,NULL,NULL,'2014-04-22 17:46:36',NULL,'\0',NULL,NULL,'2014-04-22 17:45:43','mpower_0002_000000000067',NULL,'2014-04-22 17:44:24','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-22T17:44:24.074+06</i_start_time><Patient_ID>mpower_0002_000000000067</Patient_ID><Second_page><Patient_Weight_kg>65.0</Patient_Weight_kg><Patient_PulseRate>80</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>100.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-22T17:46:36.675+06</i_end_time></data>',2,1,12,NULL),(160,NULL,NULL,'2014-04-22 17:46:39',NULL,'\0',NULL,NULL,'2014-04-22 17:47:00','mpower_0002_000000000038',NULL,'2014-04-22 17:41:45','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-22T17:41:45.634+06</i_start_time><Patient_ID>mpower_0002_000000000038</Patient_ID><Second_page><Patient_Weight_kg>80.0</Patient_Weight_kg><Patient_PulseRate>76</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>70</Patient_BP_Diastolic><temperature /><Patient_Temperature>102.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-22T17:46:39.130+06</i_end_time></data>',2,1,14,NULL),(161,NULL,NULL,'2014-04-22 18:01:27',NULL,'\0',NULL,NULL,'2014-04-22 18:01:30','mpower_0002_000000000116',NULL,'2014-04-22 17:58:53','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-22T17:58:53.483+06</i_start_time><Patient_Image>1398167957180.jpg</Patient_Image><firstPage><Patient_Name>Shamml </Patient_Name><mobile /><Patient_MobileNo>01975759759</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>28</Patient_Age_Year><Patient_Age_Month>0</Patient_Age_Month><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000116</Patient_ID><i_end_time>2014-04-22T18:01:27.022+06</i_end_time></data>',1,1,9,NULL),(162,NULL,NULL,'2014-04-22 18:04:58',NULL,'\0',NULL,NULL,'2014-04-22 18:05:22','mpower_0002_000000000116',NULL,'2014-04-22 18:02:31','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-22T18:02:31.537+06</i_start_time><Patient_ID>mpower_0002_000000000116</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><Patient_PulseRate>76</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>110</Patient_BP_Systolic><Patient_BP_Diastolic>70</Patient_BP_Diastolic><temperature /><Patient_Temperature>99.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-22T18:04:58.506+06</i_end_time></data>',2,1,9,NULL),(163,NULL,NULL,'2014-04-22 18:09:02',NULL,'\0',NULL,NULL,'2014-04-22 18:08:50','mpower_0002_000000000013',NULL,'2014-04-22 18:07:40','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-22T18:07:40.882+06</i_start_time><Patient_ID>mpower_0002_000000000013</Patient_ID><Second_page><Patient_Weight_kg>60.0</Patient_Weight_kg><Patient_PulseRate>86</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>102.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-22T18:09:02.194+06</i_end_time></data>',2,1,17,NULL),(164,NULL,NULL,'2014-04-22 18:10:56',NULL,'\0',NULL,NULL,'2014-04-22 18:11:06','mpower_0002_000000000048',NULL,'2014-04-22 18:06:45','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-22T18:06:45.844+06</i_start_time><Patient_Image>1398168435916.jpg</Patient_Image><firstPage><Patient_Name>Ahmet</Patient_Name><mobile /><Patient_MobileNo>01715666777</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>40</Patient_Age_Year><Patient_Age_Month>0</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000048</Patient_ID><i_end_time>2014-04-22T18:10:56.014+06</i_end_time></data>',1,1,16,NULL),(165,NULL,NULL,'2014-04-22 18:17:50',NULL,'\0',NULL,NULL,'2014-04-22 18:18:28','mpower_0002_000000000048',NULL,'2014-04-22 18:12:18','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-22T18:12:18.230+06</i_start_time><Patient_ID>mpower_0002_000000000048</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><Patient_PulseRate>75</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>99.8</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-22T18:17:50.393+06</i_end_time></data>',2,1,16,NULL),(166,NULL,NULL,'2014-04-22 18:32:53',NULL,'\0',NULL,NULL,'2014-04-22 18:32:58','mpower_0002_000000000130',NULL,'2014-04-22 18:30:06','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-22T18:30:06.489+06</i_start_time><Patient_Image>1398169838837.jpg</Patient_Image><firstPage><Patient_Name>Shammi</Patient_Name><mobile /><Patient_MobileNo>01975759759</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>28</Patient_Age_Year><Patient_Age_Month>1</Patient_Age_Month><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000130</Patient_ID><i_end_time>2014-04-22T18:32:53.103+06</i_end_time></data>',1,1,10,NULL),(167,NULL,NULL,'2014-04-22 18:39:59',NULL,'\0',NULL,NULL,'2014-04-22 18:40:02','mpower_0002_000000000130',NULL,'2014-04-22 18:34:22','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-22T18:34:22.989+06</i_start_time><Patient_ID>mpower_0002_000000000130</Patient_ID><Second_page><Patient_Weight_kg>35.0</Patient_Weight_kg><Patient_PulseRate>99</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>125</Patient_BP_Systolic><Patient_BP_Diastolic>75</Patient_BP_Diastolic><temperature /><Patient_Temperature>97.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-22T18:39:59.623+06</i_end_time></data>',2,1,10,NULL),(168,NULL,NULL,'2014-04-23 17:02:59',NULL,'\0',NULL,NULL,'2014-04-23 17:03:00','mpower_0002_000000000035',NULL,'2014-04-23 17:01:35','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-23T17:01:35.654+06</i_start_time><Patient_Image>1398250912024.jpg</Patient_Image><firstPage><Patient_Name>Mina</Patient_Name><mobile /><Patient_MobileNo>01752373139</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>25</Patient_Age_Year><Patient_Age_Month>5</Patient_Age_Month><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000035</Patient_ID><i_end_time>2014-04-23T17:02:59.213+06</i_end_time></data>',1,1,13,NULL),(169,NULL,NULL,'2014-04-23 17:06:36',NULL,'\0',NULL,NULL,'2014-04-23 17:06:13','mpower_0002_000000000035',NULL,'2014-04-23 17:05:40','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-23T17:05:40.695+06</i_start_time><Patient_ID>mpower_0002_000000000035</Patient_ID><Second_page><Patient_Weight_kg>56.0</Patient_Weight_kg><Patient_PulseRate>65</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>122</Patient_BP_Systolic><Patient_BP_Diastolic>78</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-23T17:06:36.956+06</i_end_time></data>',2,1,13,NULL),(170,NULL,NULL,'2014-04-24 10:51:11',NULL,'\0',NULL,NULL,'2014-04-24 10:51:09','mpower_0002_000000000095',NULL,'2014-04-24 10:49:56','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-24T10:49:56.496+06</i_start_time><Patient_Image>1398315027358.jpg</Patient_Image><firstPage><Patient_Name>Hamed</Patient_Name><mobile /><Patient_MobileNo>01752373139</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>45</Patient_Age_Year><Patient_Age_Month>6</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000095</Patient_ID><i_end_time>2014-04-24T10:51:11.900+06</i_end_time></data>',1,1,13,NULL),(171,NULL,NULL,'2014-04-27 13:03:26',NULL,'\0',NULL,NULL,'2014-04-27 13:04:18','mpower_0002_000000000131',NULL,'2014-04-27 12:59:51','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-27T12:59:51.471+06</i_start_time><Patient_Image>1398582102080.jpg</Patient_Image><firstPage><Patient_Name>Khalil</Patient_Name><mobile /><Patient_MobileNo>01718583463</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>38</Patient_Age_Year><Patient_Age_Month>2</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000131</Patient_ID><i_end_time>2014-04-27T13:03:26.672+06</i_end_time></data>',1,1,13,'Khalil'),(172,NULL,NULL,'2014-04-27 13:07:35',NULL,'\0',NULL,NULL,'2014-04-27 13:07:11','mpower_0002_000000000131',NULL,'2014-04-27 13:05:30','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-27T13:05:30.458+06</i_start_time><Patient_ID>mpower_0002_000000000131</Patient_ID><Second_page><Patient_Weight_kg>70.0</Patient_Weight_kg><Patient_PulseRate>75</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-27T13:07:35.791+06</i_end_time></data>',2,1,13,NULL),(173,NULL,NULL,'2014-04-27 13:31:16',NULL,'\0',NULL,NULL,'2014-04-27 13:32:46','mpower_0002_000000000132',NULL,'2014-04-27 13:29:35','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-27T13:29:35.688+06</i_start_time><Patient_Image>1398583795007.jpg</Patient_Image><firstPage><Patient_Name>Biplov</Patient_Name><mobile /><Patient_MobileNo>01736577333</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>40</Patient_Age_Year><Patient_Age_Month>2</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000132</Patient_ID><i_end_time>2014-04-27T13:31:16.106+06</i_end_time></data>',1,1,13,'Biplov'),(174,NULL,NULL,'2014-04-27 13:38:49',NULL,'\0',NULL,NULL,'2014-04-27 13:38:54','mpower_0002_000000000132',NULL,'2014-04-27 13:35:23','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-27T13:35:23.720+06</i_start_time><Patient_ID>mpower_0002_000000000132</Patient_ID><Second_page><Patient_Weight_kg>75.0</Patient_Weight_kg><Patient_PulseRate>80</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>85</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-27T13:38:49.773+06</i_end_time></data>',2,1,13,NULL),(175,NULL,NULL,'2014-04-28 16:30:36',NULL,'\0',NULL,NULL,'2014-04-28 16:29:39','mpower_0002_000000000057',NULL,'2014-04-28 16:28:33','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-28T16:28:33.717+06</i_start_time><Patient_Image>1398680945283.jpg</Patient_Image><firstPage><Patient_Name>Riyad</Patient_Name><mobile /><Patient_MobileNo>01710005566</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>28</Patient_Age_Year><Patient_Age_Month>7</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000057</Patient_ID><i_end_time>2014-04-28T16:30:36.901+06</i_end_time></data>',1,1,19,'Riyad'),(176,NULL,NULL,'2014-04-28 16:35:30',NULL,'\0',NULL,NULL,'2014-04-28 16:34:00','mpower_0002_000000000057',NULL,'2014-04-28 16:31:48','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-28T16:31:48.471+06</i_start_time><Patient_ID>mpower_0002_000000000057</Patient_ID><Second_page><Patient_Weight_kg>58.0</Patient_Weight_kg><Patient_PulseRate>78</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>84</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-28T16:35:30.193+06</i_end_time></data>',2,1,19,NULL),(177,NULL,NULL,'2014-04-28 16:57:43',NULL,'\0',NULL,NULL,'2014-04-28 16:56:53','mpower_0002_000000000057',NULL,'2014-04-28 16:56:30','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-28T16:56:30.722+06</i_start_time><Patient_ID>mpower_0002_000000000057</Patient_ID><Second_page><Patient_Weight_kg>58.0</Patient_Weight_kg><Patient_PulseRate>78</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-28T16:57:43.087+06</i_end_time></data>',2,1,19,NULL),(178,NULL,NULL,'2014-04-28 17:11:31',NULL,'\0',NULL,NULL,'2014-04-28 17:10:22','mpower_0002_000000000057',NULL,'2014-04-28 17:10:28','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-28T17:10:28.179+06</i_start_time><Patient_ID>mpower_0002_000000000057</Patient_ID><Second_page><Patient_Weight_kg>56.0</Patient_Weight_kg><Patient_PulseRate>78</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-28T17:11:31.185+06</i_end_time></data>',2,1,19,NULL),(179,NULL,NULL,'2014-04-29 11:44:31',NULL,'\0',NULL,NULL,'2014-04-29 11:42:53','mpower_0002_000000000057',NULL,'2014-04-29 11:42:29','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-29T11:42:29.479+06</i_start_time><Patient_ID>mpower_0002_000000000057</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><Patient_PulseRate>78</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-29T11:44:31.342+06</i_end_time></data>',2,1,20,NULL),(180,NULL,NULL,'2014-04-29 12:17:03',NULL,'\0',NULL,NULL,'2014-04-29 12:16:43','mpower_0002_000000000026',NULL,'2014-04-29 12:14:18','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-29T12:14:18.508+06</i_start_time><Patient_Image>1398752123151.jpg</Patient_Image><firstPage><Patient_Name>Jutonb paul\n\n</Patient_Name><mobile /><Patient_MobileNo>01711705253</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>30</Patient_Age_Year><Patient_Age_Month>6</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000026</Patient_ID><i_end_time>2014-04-29T12:17:03.748+06</i_end_time></data>',1,1,15,'Jutonb paul\n\n'),(181,NULL,NULL,'2014-04-29 12:18:38',NULL,'\0',NULL,NULL,'2014-04-29 12:18:01','mpower_0002_000000000026',NULL,'2014-04-29 12:17:39','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-29T12:17:39.866+06</i_start_time><Patient_ID>mpower_0002_000000000026</Patient_ID><Second_page><Patient_Weight_kg>65.0</Patient_Weight_kg><Patient_PulseRate>75</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>88</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fourth_page><i_end_time>2014-04-29T12:18:38.614+06</i_end_time></data>',2,1,15,NULL),(182,NULL,NULL,'2014-04-29 12:37:47',NULL,'\0',NULL,NULL,'2014-04-29 12:37:30','mpower_0002_000000000017',NULL,'2014-04-29 12:34:54','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-29T12:34:54.312+06</i_start_time><Patient_Image>1398753351459.jpg</Patient_Image><firstPage><Patient_Name>Juton</Patient_Name><mobile /><Patient_MobileNo>01711705253</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>30</Patient_Age_Year><Patient_Age_Month>6</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000017</Patient_ID><i_end_time>2014-04-29T12:37:47.744+06</i_end_time></data>',1,1,15,'Juton'),(183,NULL,NULL,'2014-04-29 12:40:03',NULL,'\0',NULL,NULL,'2014-04-29 12:39:35','mpower_0002_000000000017',NULL,'2014-04-29 12:38:24','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-29T12:38:24.816+06</i_start_time><Patient_ID>mpower_0002_000000000017</Patient_ID><Second_page><Patient_Weight_kg>50.0</Patient_Weight_kg><Patient_PulseRate>96</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-29T12:40:03.932+06</i_end_time></data>',2,1,15,NULL),(184,NULL,NULL,'2014-04-29 13:22:24',NULL,'\0',NULL,NULL,'2014-04-29 13:24:17','mpower_0002_000000000097',NULL,'2014-04-29 13:20:21','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-29T13:20:21.158+06</i_start_time><Patient_Image>1398756041391.jpg</Patient_Image><firstPage><Patient_Name>Jahanara begum</Patient_Name><mobile /><Patient_MobileNo>01715288355</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>48</Patient_Age_Year><Patient_Age_Month>5</Patient_Age_Month><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000097</Patient_ID><i_end_time>2014-04-29T13:22:24.177+06</i_end_time></data>',1,1,19,'Jahanara begum'),(185,NULL,NULL,'2014-04-29 13:28:20',NULL,'\0',NULL,NULL,'2014-04-29 13:27:24','mpower_0002_000000000097',NULL,'2014-04-29 13:27:01','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-29T13:27:01.971+06</i_start_time><Patient_ID>mpower_0002_000000000097</Patient_ID><Second_page><Patient_Weight_kg>52.0</Patient_Weight_kg><Patient_PulseRate>78</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic><temperature /><Patient_Temperature>96.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-29T13:28:20.612+06</i_end_time></data>',2,1,19,NULL),(186,NULL,NULL,'2014-04-29 13:54:40',NULL,'\0',NULL,NULL,'2014-04-29 13:54:04','mpower_0002_000000000037',NULL,'2014-04-29 13:52:17','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-29T13:52:17.713+06</i_start_time><Patient_Image>1398757962191.jpg</Patient_Image><firstPage><Patient_Name>Rashidee</Patient_Name><mobile /><Patient_MobileNo>01715464464</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>35</Patient_Age_Year><Patient_Age_Month /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000037</Patient_ID><i_end_time>2014-04-29T13:54:40.427+06</i_end_time></data>',1,1,8,'Rashidee'),(187,NULL,NULL,'2014-04-29 14:01:00',NULL,'\0',NULL,NULL,'2014-04-29 14:00:36','mpower_0002_000000000037',NULL,'2014-04-29 13:57:59','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-29T13:57:59.241+06</i_start_time><Patient_ID>mpower_0002_000000000037</Patient_ID><Second_page><Patient_Weight_kg>70.0</Patient_Weight_kg><Patient_PulseRate>75</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>110</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic><temperature /><Patient_Temperature>97.6</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-29T14:01:00.295+06</i_end_time></data>',2,1,8,NULL),(188,NULL,NULL,'2014-04-29 15:47:24',NULL,'\0',NULL,NULL,'2014-04-29 15:47:36','mpower_0002_000000000020',NULL,'2014-04-29 15:45:37','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-29T15:45:37.773+06</i_start_time><Patient_Image>1398764789232.jpg</Patient_Image><firstPage><Patient_Name>Jumon</Patient_Name><mobile /><Patient_MobileNo>01718583462</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>22</Patient_Age_Year><Patient_Age_Month>3</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000020</Patient_ID><i_end_time>2014-04-29T15:47:24.466+06</i_end_time></data>',1,1,17,'Jumon'),(189,NULL,NULL,'2014-04-29 15:49:27',NULL,'\0',NULL,NULL,'2014-04-29 15:48:52','mpower_0002_000000000020',NULL,'2014-04-29 15:48:33','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-29T15:48:33.895+06</i_start_time><Patient_ID>mpower_0002_000000000020</Patient_ID><Second_page><Patient_Weight_kg>65.0</Patient_Weight_kg><Patient_PulseRate>85</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>150</Patient_BP_Systolic><Patient_BP_Diastolic>100</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-29T15:49:27.232+06</i_end_time></data>',2,1,17,NULL),(190,NULL,NULL,'2014-04-30 11:50:10',NULL,'\0',NULL,NULL,'2014-04-30 11:52:02','mpower_0002_000000000093',NULL,'2014-04-30 11:48:35','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-30T11:48:35.961+06</i_start_time><Patient_Image>1398836932249.jpg</Patient_Image><firstPage><Patient_Name>Ismil Mia</Patient_Name><mobile /><Patient_MobileNo>01849562303</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>35</Patient_Age_Year><Patient_Age_Month>2</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000093</Patient_ID><i_end_time>2014-04-30T11:50:10.588+06</i_end_time></data>',1,1,13,'Ismil Mia'),(191,NULL,NULL,'2014-04-30 11:54:06',NULL,'\0',NULL,NULL,'2014-04-30 12:00:18','mpower_0002_000000000093',NULL,'2014-04-30 11:53:07','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-30T11:53:07.020+06</i_start_time><Patient_ID>mpower_0002_000000000093</Patient_ID><Second_page><Patient_Weight_kg>65.0</Patient_Weight_kg><Patient_PulseRate>75</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>125</Patient_BP_Systolic><Patient_BP_Diastolic>85</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-30T11:54:06.966+06</i_end_time></data>',2,1,13,NULL),(192,NULL,NULL,'2014-04-30 12:20:02',NULL,'\0',NULL,NULL,'2014-04-30 12:19:25','test_proshanto',NULL,'2014-04-30 12:18:56','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-30T12:18:56.129+06</i_start_time><Patient_Image>1398838745699.jpg</Patient_Image><firstPage><Patient_Name>Proshanto Test</Patient_Name><mobile /><Patient_MobileNo>08523697412</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>30</Patient_Age_Year><Patient_Age_Month>11</Patient_Age_Month><Patient_Age_Day>29</Patient_Age_Day><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>test_proshanto</Patient_ID><i_end_time>2014-04-30T12:20:02.913+06</i_end_time></data>',1,1,5,'Proshanto Test'),(193,NULL,NULL,'2014-04-30 12:21:58',NULL,'\0',NULL,NULL,'2014-04-30 12:21:24','test_proshanto',NULL,'2014-04-30 12:20:41','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-30T12:20:41.422+06</i_start_time><Patient_ID>test_proshanto</Patient_ID><Second_page><Patient_Weight_kg>70.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>70</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>4</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>7</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture>1398838915446.jpg</Patient_picture><i_end_time>2014-04-30T12:21:58.330+06</i_end_time></data>',2,1,5,NULL),(194,NULL,NULL,'2014-04-30 12:23:58',NULL,'\0',NULL,NULL,'2014-04-30 12:23:48','mpower_0002_000000000148',NULL,'2014-04-30 12:20:19','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-30T12:20:19.400+06</i_start_time><Patient_Image>1398838873344.jpg</Patient_Image><firstPage><Patient_Name>Khlalil biy</Patient_Name><mobile /><Patient_MobileNo>01723577333</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>40</Patient_Age_Year><Patient_Age_Month>2</Patient_Age_Month><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000148</Patient_ID><i_end_time>2014-04-30T12:23:58.683+06</i_end_time></data>',1,1,13,'Khlalil biy'),(195,NULL,NULL,'2014-04-30 12:38:57',NULL,'\0',NULL,NULL,'2014-04-30 12:39:25','mpower_0002_000000000125',NULL,'2014-04-30 12:36:12','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-30T12:36:12.221+06</i_start_time><Patient_Image>1398839801690.jpg</Patient_Image><firstPage><Patient_Name>Liton</Patient_Name><mobile /><Patient_MobileNo>01912816322</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>39</Patient_Age_Year><Patient_Age_Month>6</Patient_Age_Month><Patient_Age_Day /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000125</Patient_ID><i_end_time>2014-04-30T12:38:57.610+06</i_end_time></data>',1,1,13,'Liton'),(196,NULL,NULL,'2014-04-30 12:55:59',NULL,'\0',NULL,NULL,'2014-04-30 12:56:07','mpower_0002_000000000125',NULL,'2014-04-30 12:53:53','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-30T12:53:53.018+06</i_start_time><Patient_ID>mpower_0002_000000000125</Patient_ID><Second_page><Patient_Weight_kg>65.0</Patient_Weight_kg><temperature /><Patient_Temperature>99.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>75</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>125</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture>1398840926063.jpg</Patient_picture><i_end_time>2014-04-30T12:55:59.529+06</i_end_time></data>',2,1,13,NULL),(197,NULL,NULL,'2014-04-30 13:12:37',NULL,'\0',NULL,NULL,'2014-04-30 13:12:14','test_proshanto',NULL,'2014-04-30 13:11:54','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-30T13:11:54.376+06</i_start_time><Patient_ID>test_proshanto</Patient_ID><Second_page><Patient_Weight_kg>56.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>80</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>4</Patient_Color><consciousness /><Patient_Consciousness>3</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>6</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture>1398841954936.jpg</Patient_picture><i_end_time>2014-04-30T13:12:37.636+06</i_end_time></data>',2,1,5,NULL),(198,NULL,NULL,'2014-04-30 16:08:28',NULL,'\0',NULL,NULL,'2014-04-30 16:09:45','mpower_0002_000000000134',NULL,'2014-04-30 16:05:05','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-30T16:05:05.287+06</i_start_time><Patient_Image>1398852366086.jpg</Patient_Image><firstPage><Patient_Name>Aniuwar</Patient_Name><mobile /><Patient_MobileNo>01771515602</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>20</Patient_Age_Year><Patient_Age_Month /><Patient_Age_Day /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000134</Patient_ID><i_end_time>2014-04-30T16:08:28.692+06</i_end_time></data>',1,1,11,'Aniuwar'),(199,NULL,NULL,'2014-04-30 16:16:08',NULL,'\0',NULL,NULL,'2014-04-30 16:15:38','mpower_0002_000000000134',NULL,'2014-04-30 16:10:54','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-30T16:10:54.872+06</i_start_time><Patient_ID>mpower_0002_000000000134</Patient_ID><Second_page><Patient_Weight_kg>65.0</Patient_Weight_kg><temperature /><Patient_Temperature>102.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>65</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>140</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-04-30T16:16:08.026+06</i_end_time></data>',2,1,11,NULL),(200,NULL,NULL,'2014-04-30 16:31:18',NULL,'\0',NULL,NULL,'2014-04-30 16:29:37','mpower_0002_000000000054',NULL,'2014-04-30 16:30:45','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-30T16:30:45.311+06</i_start_time><Patient_ID>mpower_0002_000000000054</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><Patient_PulseRate>55</Patient_PulseRate><Patient_BP /><Patient_BP_Systolic>55</Patient_BP_Systolic><Patient_BP_Diastolic>55</Patient_BP_Diastolic><temperature /><Patient_Temperature>98.0</Patient_Temperature><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate></Second_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness><edema /><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fourth_page><i_end_time>2014-04-30T16:31:18.951+06</i_end_time></data>',2,1,18,NULL),(201,NULL,NULL,'2014-04-30 16:30:31',NULL,'\0',NULL,NULL,'2014-04-30 16:32:26','mpower_0002_000000000011',NULL,'2014-04-30 16:27:45','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-04-30T16:27:45.717+06</i_start_time><Patient_Image>1398853687610.jpg</Patient_Image><firstPage><Patient_Name>Emrun</Patient_Name><mobile /><Patient_MobileNo>01718329304</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>15</Patient_Age_Year><Patient_Age_Month /><Patient_Age_Day /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000011</Patient_ID><i_end_time>2014-04-30T16:30:31.294+06</i_end_time></data>',1,1,11,'Emrun'),(202,NULL,NULL,'2014-04-30 16:36:34',NULL,'\0',NULL,NULL,'2014-04-30 16:35:57','test_proshanto',NULL,'2014-04-30 16:35:48','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-30T16:35:48.407+06</i_start_time><Patient_ID>test_proshanto</Patient_ID><Second_page><Patient_Weight_kg>69.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>56</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>4</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>5</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture>1398854192316.jpg</Patient_picture><i_end_time>2014-04-30T16:36:34.930+06</i_end_time></data>',2,1,5,NULL),(203,NULL,NULL,'2014-04-30 16:37:37',NULL,'\0',NULL,NULL,'2014-04-30 16:36:31','mpower_0002_000000000054',NULL,'2014-04-30 16:35:34','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-30T16:35:34.317+06</i_start_time><Patient_ID>mpower_0002_000000000054</Patient_ID><Second_page><Patient_Weight_kg>85.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.7</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>85</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture>1398854254442.jpg</Patient_picture><i_end_time>2014-04-30T16:37:37.531+06</i_end_time></data>',2,1,5,NULL),(204,NULL,NULL,'2014-04-30 16:37:51',NULL,'\0',NULL,NULL,'2014-04-30 16:40:46','mpower_0002_000000000011',NULL,'2014-04-30 16:34:56','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-30T16:34:56.484+06</i_start_time><Patient_ID>mpower_0002_000000000011</Patient_ID><Second_page><Patient_Weight_kg>65.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>55</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>110</Patient_BP_Systolic><Patient_BP_Diastolic>60</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture>1398854236033.jpg</Patient_picture><i_end_time>2014-04-30T16:37:51.310+06</i_end_time></data>',2,1,11,NULL),(205,NULL,NULL,'2014-04-30 16:56:56',NULL,'\0',NULL,NULL,'2014-04-30 16:56:51','mpower_0002_000000000054',NULL,'2014-04-30 16:56:19','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-30T16:56:19.072+06</i_start_time><Patient_ID>mpower_0002_000000000054</Patient_ID><Second_page><Patient_Weight_kg>85.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>90</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>4</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-04-30T16:56:56.955+06</i_end_time></data>',2,1,18,NULL),(206,NULL,NULL,'2014-04-30 17:15:51',NULL,'\0',NULL,NULL,'2014-04-30 17:16:01','mpower_0002_000000000011',NULL,'2014-04-30 17:14:32','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-30T17:14:32.749+06</i_start_time><Patient_ID>mpower_0002_000000000011</Patient_ID><Second_page><Patient_Weight_kg>65.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>75</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>140</Patient_BP_Systolic><Patient_BP_Diastolic>85</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-04-30T17:15:51.682+06</i_end_time></data>',2,1,11,NULL),(207,NULL,NULL,'2014-04-30 17:17:14',NULL,'\0',NULL,NULL,'2014-04-30 17:16:37','mpower_0002_000000000054',NULL,'2014-04-30 17:16:19','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-30T17:16:19.407+06</i_start_time><Patient_ID>mpower_0002_000000000054</Patient_ID><Second_page><Patient_Weight_kg>54.0</Patient_Weight_kg><temperature /><Patient_Temperature>98.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>25</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>3</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>3</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture>1398856631956.jpg</Patient_picture><i_end_time>2014-04-30T17:17:14.789+06</i_end_time></data>',2,1,18,NULL),(208,NULL,NULL,'2014-04-30 17:23:27',NULL,'\0',NULL,NULL,'2014-04-30 17:22:51','test_proshanto',NULL,'2014-04-30 17:22:29','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-30T17:22:29.772+06</i_start_time><Patient_ID>test_proshanto</Patient_ID><Second_page><Patient_Weight_kg>96.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>56</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>4</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>6</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture>1398857001969.jpg</Patient_picture><i_end_time>2014-04-30T17:23:27.308+06</i_end_time></data>',2,1,5,NULL),(209,NULL,NULL,'2014-04-30 17:31:30',NULL,'\0',NULL,NULL,'2014-04-30 17:30:55','mpower_0002_000000000054',NULL,'2014-04-30 17:30:41','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-30T17:30:41.296+06</i_start_time><Patient_ID>mpower_0002_000000000054</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><temperature /><Patient_Temperature>98.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>58</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>58</Patient_BP_Systolic><Patient_BP_Diastolic>58</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>3</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture>1398857487763.jpg</Patient_picture><i_end_time>2014-04-30T17:31:30.696+06</i_end_time></data>',2,1,18,NULL),(210,NULL,NULL,'2014-04-30 17:35:09',NULL,'\0',NULL,NULL,'2014-04-30 17:34:25','mpower_0002_000000000054',NULL,'2014-04-30 17:34:32','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-04-30T17:34:32.952+06</i_start_time><Patient_ID>mpower_0002_000000000054</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><temperature /><Patient_Temperature>98.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>58</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>128</Patient_BP_Systolic><Patient_BP_Diastolic>58</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-04-30T17:35:09.954+06</i_end_time></data>',2,1,18,NULL),(211,NULL,NULL,'2014-05-04 11:56:20',NULL,'\0',NULL,NULL,'2014-05-04 11:57:49','mpower_0002_000000000008',NULL,'2014-05-04 11:52:21','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-05-04T11:52:21.248+06</i_start_time><Patient_Image>1399182814790.jpg</Patient_Image><firstPage><Patient_Name>Salim</Patient_Name><mobile /><Patient_MobileNo>01726564168</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>39</Patient_Age_Year><Patient_Age_Month /><Patient_Age_Day /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000008</Patient_ID><i_end_time>2014-05-04T11:56:20.134+06</i_end_time></data>',1,1,11,'Salim'),(212,NULL,NULL,'2014-05-04 12:01:50',NULL,'\0',NULL,NULL,'2014-05-04 12:01:11','mpower_0002_000000000008',NULL,'2014-05-04 11:58:56','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-04T11:58:56.124+06</i_start_time><Patient_ID>mpower_0002_000000000008</Patient_ID><Second_page><Patient_Weight_kg>52.0</Patient_Weight_kg><temperature /><Patient_Temperature>97.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>75</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>130</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-04T12:01:50.804+06</i_end_time></data>',2,1,11,NULL),(213,NULL,NULL,'2014-05-04 13:29:14',NULL,'\0',NULL,NULL,'2014-05-04 13:30:10','mpower_0002_000000000010',NULL,'2014-05-04 13:27:14','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-05-04T13:27:14.390+06</i_start_time><Patient_Image>1399188454360.jpg</Patient_Image><firstPage><Patient_Name>Ujjal</Patient_Name><mobile /><Patient_MobileNo>01720218581</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>19</Patient_Age_Year><Patient_Age_Month /><Patient_Age_Day /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000010</Patient_ID><i_end_time>2014-05-04T13:29:14.544+06</i_end_time></data>',1,1,12,'Ujjal'),(214,NULL,NULL,'2014-05-04 13:32:43',NULL,'\0',NULL,NULL,'2014-05-04 13:32:06','mpower_0002_000000000010',NULL,'2014-05-04 13:31:11','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-04T13:31:11.054+06</i_start_time><Patient_ID>mpower_0002_000000000010</Patient_ID><Second_page><Patient_Weight_kg>60.0</Patient_Weight_kg><temperature /><Patient_Temperature>100.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>75</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>130</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-04T13:32:43.284+06</i_end_time></data>',2,1,12,NULL),(215,NULL,NULL,'2014-05-04 13:49:58',NULL,'\0',NULL,NULL,'2014-05-04 13:49:28','mpower_0002_000000000073',NULL,'2014-05-04 13:46:13','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-05-04T13:46:13.755+06</i_start_time><Patient_Image>1399189635397.jpg</Patient_Image><firstPage><Patient_Name>Salim</Patient_Name><mobile /><Patient_MobileNo>01726564168</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>40</Patient_Age_Year><Patient_Age_Month /><Patient_Age_Day /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000073</Patient_ID><i_end_time>2014-05-04T13:49:58.835+06</i_end_time></data>',1,1,12,'Salim'),(216,NULL,NULL,'2014-05-04 13:53:44',NULL,'\0',NULL,NULL,'2014-05-04 13:53:20','mpower_0002_000000000073',NULL,'2014-05-04 13:50:32','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-04T13:50:32.761+06</i_start_time><Patient_ID>mpower_0002_000000000073</Patient_ID><Second_page><Patient_Weight_kg>52.0</Patient_Weight_kg><temperature /><Patient_Temperature>99.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>76</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture>1399190000274.jpg</Patient_picture><i_end_time>2014-05-04T13:53:44.060+06</i_end_time></data>',2,1,12,NULL),(217,NULL,NULL,'2014-05-04 16:18:58',NULL,'\0',NULL,NULL,'2014-05-04 16:18:04','test_proshanto',NULL,'2014-05-04 16:17:45','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-04T16:17:45.032+06</i_start_time><Patient_ID>test_proshanto</Patient_ID><Second_page><Patient_Weight_kg>85.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.5</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>100</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>115</Patient_BP_Systolic><Patient_BP_Diastolic>95</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>5</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-04T16:18:58.795+06</i_end_time></data>',2,1,5,NULL),(218,NULL,NULL,'2014-05-05 11:07:56',NULL,'\0',NULL,NULL,'2014-05-05 11:11:38','mpower_0002_000000000053',NULL,'2014-05-05 11:04:43','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-05-05T11:04:43.822+06</i_start_time><Patient_Image>1399266320393.jpg</Patient_Image><firstPage><Patient_Name>Repon</Patient_Name><mobile /><Patient_MobileNo>01713568180</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>30</Patient_Age_Year><Patient_Age_Month /><Patient_Age_Day /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000053</Patient_ID><i_end_time>2014-05-05T11:07:56.329+06</i_end_time></data>',1,1,13,'Repon'),(219,NULL,NULL,'2014-05-05 11:11:26',NULL,'\0',NULL,NULL,'2014-05-05 11:11:43','mpower_0002_000000000053',NULL,'2014-05-05 11:08:22','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-05T11:08:22.602+06</i_start_time><Patient_ID>mpower_0002_000000000053</Patient_ID><Second_page><Patient_Weight_kg>50.0</Patient_Weight_kg><temperature /><Patient_Temperature>97.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>85</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>125</Patient_BP_Systolic><Patient_BP_Diastolic>85</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-05T11:11:26.830+06</i_end_time></data>',2,1,13,NULL),(220,NULL,NULL,'2014-05-05 12:44:36',NULL,'\0',NULL,NULL,'2014-05-05 12:44:04','mpower_0002_000000000021',NULL,'2014-05-05 12:42:59','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-05-05T12:42:59.103+06</i_start_time><Patient_Image>1399272200189.jpg</Patient_Image><firstPage><Patient_Name>Ronjon Debnarh</Patient_Name><mobile /><Patient_MobileNo>01756744607</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>20</Patient_Age_Year><Patient_Age_Month /><Patient_Age_Day /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000021</Patient_ID><i_end_time>2014-05-05T12:44:36.928+06</i_end_time></data>',1,1,15,'Ronjon Debnarh'),(221,NULL,NULL,'2014-05-05 12:45:59',NULL,'\0',NULL,NULL,'2014-05-05 12:45:11','mpower_0002_000000000021',NULL,'2014-05-05 12:45:06','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-05T12:45:06.542+06</i_start_time><Patient_ID>mpower_0002_000000000021</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><temperature /><Patient_Temperature>98.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>75</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>85</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-05T12:45:59.423+06</i_end_time></data>',2,1,15,NULL),(222,NULL,NULL,'2014-05-05 12:53:14',NULL,'\0',NULL,NULL,'2014-05-05 12:52:44','mpower_0002_000000000124',NULL,'2014-05-05 12:50:16','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-05-05T12:50:16.511+06</i_start_time><Patient_Image>1399272671205.jpg</Patient_Image><firstPage><Patient_Name>Salim</Patient_Name><mobile /><Patient_MobileNo>01726564168</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>39</Patient_Age_Year><Patient_Age_Month /><Patient_Age_Day /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000124</Patient_ID><i_end_time>2014-05-05T12:53:14.034+06</i_end_time></data>',1,1,15,'Salim'),(223,NULL,NULL,'2014-05-05 13:57:09',NULL,'\0',NULL,NULL,'2014-05-05 13:57:54','test_auto',NULL,'2014-05-05 13:56:21','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-05-05T13:56:21.650+06</i_start_time><Patient_Image>1399276591895.jpg</Patient_Image><firstPage><Patient_Name>Test Auto</Patient_Name><mobile /><Patient_MobileNo>11111111111</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>11</Patient_Age_Year><Patient_Age_Month>11</Patient_Age_Month><Patient_Age_Day>11</Patient_Age_Day><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>test_auto</Patient_ID><i_end_time>2014-05-05T13:57:09.324+06</i_end_time></data>',1,1,5,'Test Auto'),(224,NULL,NULL,'2014-05-05 14:00:58',NULL,'\0',NULL,NULL,'2014-05-05 13:59:49','test_auto',NULL,'2014-05-05 14:00:01','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-05T14:00:01.499+06</i_start_time><Patient_ID>test_auto</Patient_ID><Second_page><Patient_Weight_kg>111.0</Patient_Weight_kg><temperature /><Patient_Temperature>101.1</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>111</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>111</Patient_BP_Systolic><Patient_BP_Diastolic>101</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>4</Patient_Color><consciousness /><Patient_Consciousness>3</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>6</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-05T14:00:58.524+06</i_end_time></data>',2,1,5,NULL),(225,NULL,NULL,'2014-05-05 14:57:12',NULL,'\0',NULL,NULL,'2014-05-05 14:55:43','test_auto',NULL,'2014-05-05 14:52:07','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-05T14:52:07.521+06</i_start_time><Patient_ID>test_auto</Patient_ID><Second_page><Patient_Weight_kg>58.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>86</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>3</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>4</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-05T14:57:12.897+06</i_end_time></data>',2,1,5,NULL),(226,NULL,NULL,'2014-05-05 14:57:58',NULL,'\0',NULL,NULL,'2014-05-05 14:56:29','test_auto',NULL,'2014-05-05 14:52:07','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-05T14:52:07.521+06</i_start_time><Patient_ID>test_auto</Patient_ID><Second_page><Patient_Weight_kg>58.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>86</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>3</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>4</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-05T14:57:58.870+06</i_end_time></data>',2,1,5,NULL),(227,NULL,NULL,'2014-05-05 14:57:58',NULL,'\0',NULL,NULL,'2014-05-05 14:56:35','test_auto',NULL,'2014-05-05 14:52:07','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-05T14:52:07.521+06</i_start_time><Patient_ID>test_auto</Patient_ID><Second_page><Patient_Weight_kg>58.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>86</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>3</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>4</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-05T14:57:58.870+06</i_end_time></data>',2,1,5,NULL),(228,NULL,NULL,'2014-05-05 14:58:09',NULL,'\0',NULL,NULL,'2014-05-05 14:56:40','test_auto',NULL,'2014-05-05 14:52:07','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-05T14:52:07.521+06</i_start_time><Patient_ID>test_auto</Patient_ID><Second_page><Patient_Weight_kg>58.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>86</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>3</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>4</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-05T14:58:09.890+06</i_end_time></data>',2,1,5,NULL),(229,NULL,NULL,'2014-05-05 15:01:06',NULL,'\0',NULL,NULL,'2014-05-05 14:59:36','test_auto',NULL,'2014-05-05 15:00:31','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-05T15:00:31.299+06</i_start_time><Patient_ID>test_auto</Patient_ID><Second_page><Patient_Weight_kg>58.0</Patient_Weight_kg><temperature /><Patient_Temperature>99.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>58</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>3</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>3</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>6</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-05T15:01:06.128+06</i_end_time></data>',2,1,5,NULL),(230,NULL,NULL,'2014-05-05 15:02:30',NULL,'\0',NULL,NULL,'2014-05-05 15:01:00','test_auto',NULL,'2014-05-05 15:02:01','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-05T15:02:01.514+06</i_start_time><Patient_ID>test_auto</Patient_ID><Second_page><Patient_Weight_kg>58.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>88</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>4</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>6</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-05T15:02:30.214+06</i_end_time></data>',2,1,5,NULL),(231,NULL,NULL,'2014-05-05 15:05:20',NULL,'\0',NULL,NULL,'2014-05-05 15:48:27','test_auto',NULL,'2014-05-05 15:04:46','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-05T15:04:46.458+06</i_start_time><Patient_ID>test_auto</Patient_ID><Second_page><Patient_Weight_kg>58.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>88</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>4</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>6</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-05T15:05:20.787+06</i_end_time></data>',2,1,5,NULL),(232,NULL,NULL,'2014-05-05 15:29:18',NULL,'\0',NULL,NULL,'2014-05-05 16:06:03','test_auto',NULL,'2014-05-05 15:28:36','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-05T15:28:36.334+06</i_start_time><Patient_ID>test_auto</Patient_ID><Second_page><Patient_Weight_kg>58.0</Patient_Weight_kg><temperature /><Patient_Temperature>99.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>69</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>4</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>6</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-05T15:29:18.298+06</i_end_time></data>',2,1,5,NULL),(233,NULL,NULL,'2014-05-05 16:14:11',NULL,'\0',NULL,NULL,'2014-05-05 16:12:42','test_auto',NULL,'2014-05-05 16:06:37','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-05T16:06:37.835+06</i_start_time><Patient_ID>test_auto</Patient_ID><Second_page><Patient_Weight_kg>85.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>85</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>7</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-05T16:14:11.453+06</i_end_time></data>',2,1,5,NULL),(234,NULL,NULL,'2014-05-05 16:21:46',NULL,'\0',NULL,NULL,'2014-05-05 16:20:16','test_auto',NULL,'2014-05-05 16:21:05','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-05T16:21:05.060+06</i_start_time><Patient_ID>test_auto</Patient_ID><Second_page><Patient_Weight_kg>58.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>88</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>3</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>5</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-05T16:21:46.224+06</i_end_time></data>',2,1,5,NULL),(235,NULL,NULL,'2014-05-05 16:27:29',NULL,'\0',NULL,NULL,'2014-05-05 16:26:00','test_auto',NULL,'2014-05-05 16:26:56','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-05T16:26:56.078+06</i_start_time><Patient_ID>test_auto</Patient_ID><Second_page><Patient_Weight_kg>85.0</Patient_Weight_kg><temperature /><Patient_Temperature>99.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>86</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>4</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-05T16:27:29.907+06</i_end_time></data>',2,1,5,NULL),(236,NULL,NULL,'2014-05-06 12:04:10',NULL,'\0',NULL,NULL,'2014-05-06 12:04:36','mpower_0002_000000000081',NULL,'2014-05-06 12:00:02','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-05-06T12:00:02.200+06</i_start_time><Patient_Image>1399356111159.jpg</Patient_Image><firstPage><Patient_Name>Sunju</Patient_Name><mobile /><Patient_MobileNo>01944785768</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>30</Patient_Age_Year><Patient_Age_Month /><Patient_Age_Day /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000081</Patient_ID><i_end_time>2014-05-06T12:04:10.073+06</i_end_time></data>',1,1,17,'Sunju'),(237,NULL,NULL,'2014-05-06 12:11:08',NULL,'\0',NULL,NULL,'2014-05-06 12:11:10','mpower_0002_000000000081',NULL,'2014-05-06 12:06:15','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-06T12:06:15.730+06</i_start_time><Patient_ID>mpower_0002_000000000081</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><temperature /><Patient_Temperature>103.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>76</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>130</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>3</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture>1399356606264.jpg</Patient_picture><i_end_time>2014-05-06T12:11:08.931+06</i_end_time></data>',2,1,17,NULL),(238,NULL,NULL,'2014-05-06 12:28:41',NULL,'\0',NULL,NULL,'2014-05-06 12:27:22','test_proshanto',NULL,'2014-05-06 12:28:02','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-06T12:28:02.545+06</i_start_time><Patient_ID>test_proshanto</Patient_ID><Second_page><Patient_Weight_kg>58.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>56</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>4</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>4</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-06T12:28:41.828+06</i_end_time></data>',2,1,5,NULL),(239,NULL,NULL,'2014-05-06 12:30:53',NULL,'\0',NULL,NULL,'2014-05-06 12:30:50','mpower_0002_000000000051',NULL,'2014-05-06 12:27:47','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-05-06T12:27:47.184+06</i_start_time><Patient_Image>1399357705291.jpg</Patient_Image><firstPage><Patient_Name>Noyon Mia</Patient_Name><mobile /><Patient_MobileNo>01741017553</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>40</Patient_Age_Year><Patient_Age_Month /><Patient_Age_Day /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000051</Patient_ID><i_end_time>2014-05-06T12:30:53.682+06</i_end_time></data>',1,1,17,'Noyon Mia'),(240,NULL,NULL,'2014-05-06 12:34:00',NULL,'\0',NULL,NULL,'2014-05-06 12:33:24','mpower_0002_000000000051',NULL,'2014-05-06 12:31:57','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-06T12:31:57.555+06</i_start_time><Patient_ID>mpower_0002_000000000051</Patient_ID><Second_page><Patient_Weight_kg>60.0</Patient_Weight_kg><temperature /><Patient_Temperature>101.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>76</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>135</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-06T12:34:00.512+06</i_end_time></data>',2,1,17,NULL),(241,NULL,NULL,'2014-05-06 13:09:19',NULL,'\0',NULL,NULL,'2014-05-06 13:07:56','test_proshanto_1',NULL,'2014-05-06 13:08:17','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-05-06T13:08:17.095+06</i_start_time><Patient_Image>1399360112390.jpg</Patient_Image><firstPage><Patient_Name>Walton</Patient_Name><mobile /><Patient_MobileNo>11111111111</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>33</Patient_Age_Year><Patient_Age_Month /><Patient_Age_Day /><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>test_proshanto_1</Patient_ID><i_end_time>2014-05-06T13:09:19.899+06</i_end_time></data>',1,1,5,'Walton'),(242,NULL,NULL,'2014-05-06 13:13:54',NULL,'\0',NULL,NULL,'2014-05-06 13:12:27','test_987654',NULL,'2014-05-06 13:12:22','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-05-06T13:12:22.065+06</i_start_time><Patient_Image>1399360367800.jpg</Patient_Image><firstPage><Patient_Name>Test</Patient_Name><mobile /><Patient_MobileNo>53562356235</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>56</Patient_Age_Year><Patient_Age_Month>10</Patient_Age_Month><Patient_Age_Day>15</Patient_Age_Day><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>test_987654</Patient_ID><i_end_time>2014-05-06T13:13:54.023+06</i_end_time></data>',1,1,5,'Test'),(243,NULL,NULL,'2014-05-06 13:18:03',NULL,'\0',NULL,NULL,'2014-05-06 13:16:37','test_987654',NULL,'2014-05-06 13:14:40','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-06T13:14:40.042+06</i_start_time><Patient_ID>test_987654</Patient_ID><Second_page><Patient_Weight_kg>56.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>58</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>4</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>4</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture>1399360678874.jpg</Patient_picture><i_end_time>2014-05-06T13:18:03.203+06</i_end_time></data>',2,1,5,NULL),(244,NULL,NULL,'2014-05-06 14:05:55',NULL,'\0',NULL,NULL,'2014-05-06 14:04:30','test_987654',NULL,'2014-05-06 13:46:43','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-06T13:46:43.255+06</i_start_time><Patient_ID>test_987654</Patient_ID><Second_page><Patient_Weight_kg>58.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>56</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>3</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>4</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-06T14:05:55.873+06</i_end_time></data>',2,1,5,NULL),(245,NULL,NULL,'2014-05-06 14:20:39',NULL,'\0',NULL,NULL,'2014-05-06 14:19:20','test_proshanto',NULL,'2014-05-06 14:16:54','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-06T14:16:54.081+06</i_start_time><Patient_ID>test_proshanto</Patient_ID><Second_page><Patient_Weight_kg>58.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>58</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>4</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>5</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture>1399364324135.jpg</Patient_picture><i_end_time>2014-05-06T14:20:39.696+06</i_end_time></data>',2,1,5,NULL),(246,NULL,NULL,'2014-05-06 15:09:26',NULL,'\0',NULL,NULL,'2014-05-06 15:07:58','test_proshanto',NULL,'2014-05-06 15:08:17','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-06T15:08:17.402+06</i_start_time><Patient_ID>test_proshanto</Patient_ID><Second_page><Patient_Weight_kg>99.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>88</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>3</Patient_Appearance><color /><Patient_Color>4</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>3</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-06T15:09:26.766+06</i_end_time></data>',2,1,5,NULL),(247,NULL,NULL,'2014-05-06 15:10:09',NULL,'\0',NULL,NULL,'2014-05-06 15:09:06','test_proshanto',NULL,'2014-05-06 15:09:43','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-06T15:09:43.470+06</i_start_time><Patient_ID>test_proshanto</Patient_ID><Second_page><Patient_Weight_kg>58.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>55</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>5</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-06T15:10:09.357+06</i_end_time></data>',2,1,5,NULL),(248,NULL,NULL,'2014-05-05 12:56:01',NULL,'\0',NULL,NULL,'2014-05-07 11:39:08','mpower_0002_000000000124',NULL,'2014-05-05 12:53:50','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-05T12:53:50.683+06</i_start_time><Patient_ID>mpower_0002_000000000124</Patient_ID><Second_page><Patient_Weight_kg>60.0</Patient_Weight_kg><temperature /><Patient_Temperature>102.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>98</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>85</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-05T12:56:01.659+06</i_end_time></data>',2,1,15,NULL),(249,NULL,NULL,'2014-05-07 14:15:35',NULL,'\0',NULL,NULL,'2014-05-07 14:14:05','test123125235',NULL,'2014-05-07 14:14:53','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-05-07T14:14:53.818+06</i_start_time><Patient_Image>1399450508075.jpg</Patient_Image><firstPage><Patient_Name>Yhf</Patient_Name><mobile /><Patient_MobileNo>12121212121</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>55</Patient_Age_Year><Patient_Age_Month /><Patient_Age_Day /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>test123125235</Patient_ID><i_end_time>2014-05-07T14:15:35.368+06</i_end_time></data>',1,1,5,'Yhf'),(250,NULL,NULL,'2014-05-07 14:17:31',NULL,'\0',NULL,NULL,'2014-05-07 14:16:07','test123125235',NULL,'2014-05-07 14:15:54','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-07T14:15:54.279+06</i_start_time><Patient_ID>test123125235</Patient_ID><Second_page><Patient_Weight_kg>59.0</Patient_Weight_kg><temperature /><Patient_Temperature>98.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>80</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>2</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>2</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture>1399450632214.jpg</Patient_picture><i_end_time>2014-05-07T14:17:31.900+06</i_end_time></data>',2,1,5,NULL),(251,NULL,NULL,'2014-05-07 14:36:40',NULL,'\0',NULL,NULL,'2014-05-07 14:35:12','mpower_0002_000000000054',NULL,'2014-05-07 14:33:49','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-07T14:33:49.691+06</i_start_time><Patient_ID>mpower_0002_000000000054</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><temperature /><Patient_Temperature>98.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>85</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>4</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>5</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture>1399451784350.jpg</Patient_picture><i_end_time>2014-05-07T14:36:40.564+06</i_end_time></data>',2,1,18,NULL),(252,NULL,NULL,'2014-05-07 17:10:06',NULL,'\0',NULL,NULL,'2014-05-07 17:08:39','shammiishere',NULL,'2014-05-07 17:08:20','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-05-07T17:08:20.737+06</i_start_time><Patient_Image>1399460924752.jpg</Patient_Image><firstPage><Patient_Name>Sadat</Patient_Name><mobile /><Patient_MobileNo>85285285258</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>28</Patient_Age_Year><Patient_Age_Month /><Patient_Age_Day /><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>shammiishere</Patient_ID><i_end_time>2014-05-07T17:10:06.203+06</i_end_time></data>',1,1,18,'Sadat'),(253,NULL,NULL,'2014-05-07 17:12:19',NULL,'\0',NULL,NULL,'2014-05-07 17:10:52','mpower_0002_000000000054',NULL,'2014-05-07 17:10:25','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-07T17:10:25.450+06</i_start_time><Patient_ID>mpower_0002_000000000054</Patient_ID><Second_page><Patient_Weight_kg>58.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>58</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>3</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>3</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>3</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>5</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture>1399461136468.jpg</Patient_picture><i_end_time>2014-05-07T17:12:19.462+06</i_end_time></data>',2,1,18,NULL),(254,NULL,NULL,'2014-05-08 12:43:04',NULL,'\0',NULL,NULL,'2014-05-08 12:41:39','test_proshanto',NULL,'2014-05-08 12:41:47','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-08T12:41:47.776+06</i_start_time><Patient_ID>test_proshanto</Patient_ID><Second_page><Patient_Weight_kg>88.0</Patient_Weight_kg><temperature /><Patient_Temperature>96.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>58</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>4</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>3</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture>1399531379806.jpg</Patient_picture><i_end_time>2014-05-08T12:43:04.240+06</i_end_time></data>',2,1,5,NULL),(255,NULL,NULL,'2014-05-08 18:12:51',NULL,'\0',NULL,NULL,'2014-05-08 18:11:46','mpower_0002_000000000072',NULL,'2014-05-08 18:11:11','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-05-08T18:11:11.882+06</i_start_time><Patient_Image>1399551092736.jpg</Patient_Image><firstPage><Patient_Name>Alex</Patient_Name><mobile /><Patient_MobileNo>01714555666</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>28</Patient_Age_Year><Patient_Age_Month /><Patient_Age_Day /><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>mpower_0002_000000000072</Patient_ID><i_end_time>2014-05-08T18:12:51.847+06</i_end_time></data>',1,1,18,'Alex'),(256,NULL,NULL,'2014-05-08 18:15:34',NULL,'\0',NULL,NULL,'2014-05-08 18:14:04','mpower_0002_000000000072',NULL,'2014-05-08 18:13:31','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-08T18:13:31.837+06</i_start_time><Patient_ID>mpower_0002_000000000072</Patient_ID><Second_page><Patient_Weight_kg>50.0</Patient_Weight_kg><temperature /><Patient_Temperature>97.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>70</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture>1399551331104.jpg</Patient_picture><i_end_time>2014-05-08T18:15:34.269+06</i_end_time></data>',2,1,18,NULL),(257,NULL,NULL,'2014-05-14 12:57:59',NULL,'\0',NULL,NULL,'2014-05-14 12:56:46','rita',NULL,'2014-05-14 12:55:10','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-05-14T12:55:10.033+06</i_start_time><Patient_Image>1400050567908.jpg</Patient_Image><firstPage><Patient_Name>Rita</Patient_Name><mobile /><Patient_MobileNo>01912345678</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>26</Patient_Age_Year><Patient_Age_Month>1</Patient_Age_Month><Patient_Age_Day>1</Patient_Age_Day><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>rita</Patient_ID><i_end_time>2014-05-14T12:57:59.868+06</i_end_time></data>',1,1,21,'Rita'),(258,NULL,NULL,'2014-05-14 12:59:58',NULL,'\0',NULL,NULL,'2014-05-14 12:58:52','rita',NULL,'2014-05-14 12:58:17','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-14T12:58:17.887+06</i_start_time><Patient_ID>rita</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><temperature /><Patient_Temperature>89.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>35</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture>1400050779353.jpg</Patient_picture><i_end_time>2014-05-14T12:59:58.885+06</i_end_time></data>',2,1,21,NULL),(259,NULL,NULL,'2014-05-14 13:12:09',NULL,'\0',NULL,NULL,'2014-05-14 13:10:56','Salman',NULL,'2014-05-14 13:11:13','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-05-14T13:11:13.030+06</i_start_time><Patient_Image>1400051482755.jpg</Patient_Image><firstPage><Patient_Name>Salman</Patient_Name><mobile /><Patient_MobileNo>01912345678</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>22</Patient_Age_Year><Patient_Age_Month>0</Patient_Age_Month><Patient_Age_Day>0</Patient_Age_Day><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>Salman</Patient_ID><i_end_time>2014-05-14T13:12:09.847+06</i_end_time></data>',1,1,21,'Salman'),(260,NULL,NULL,'2014-05-14 13:16:49',NULL,'\0',NULL,NULL,'2014-05-14 13:15:36','Salman',NULL,'2014-05-14 13:14:02','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-14T13:14:02.728+06</i_start_time><Patient_ID>Salman</Patient_ID><Second_page><Patient_Weight_kg>68.0</Patient_Weight_kg><temperature /><Patient_Temperature>89.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>45</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>140</Patient_BP_Systolic><Patient_BP_Diastolic>90</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>1</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture>1400051806412.jpg</Patient_picture><i_end_time>2014-05-14T13:16:49.941+06</i_end_time></data>',2,1,21,NULL),(261,NULL,NULL,'2014-05-14 15:17:15',NULL,'\0',NULL,NULL,'2014-05-14 15:16:09','Sujan khan',NULL,'2014-05-14 15:12:06','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-05-14T15:12:06.323+06</i_start_time><Patient_Image>1400058753870.jpg</Patient_Image><firstPage><Patient_Name>Sujan khan</Patient_Name><mobile /><Patient_MobileNo>08523697410</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>5</Patient_Age_Year><Patient_Age_Month>6</Patient_Age_Month><Patient_Age_Day>2</Patient_Age_Day><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>Sujan khan</Patient_ID><i_end_time>2014-05-14T15:17:15.750+06</i_end_time></data>',1,1,21,'Sujan khan'),(262,NULL,NULL,'2014-05-14 15:35:34',NULL,'\0',NULL,NULL,'2014-05-14 15:34:27','jalaluddin',NULL,'2014-05-14 15:29:11','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-05-14T15:29:11.327+06</i_start_time><Patient_Image>1400059760590.jpg</Patient_Image><firstPage><Patient_Name>Jalaluddin</Patient_Name><mobile /><Patient_MobileNo>00000000000</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>0</Patient_Age_Year><Patient_Age_Month>0</Patient_Age_Month><Patient_Age_Day>0</Patient_Age_Day><gender /><Patient_Gender>1</Patient_Gender></SecondPage><Patient_ID>jalaluddin</Patient_ID><i_end_time>2014-05-14T15:35:34.062+06</i_end_time></data>',1,1,21,'Jalaluddin'),(263,NULL,NULL,'2014-05-14 15:46:42',NULL,'\0',NULL,NULL,'2014-05-14 15:45:41','jalaluddin',NULL,'2014-05-14 15:40:44','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-14T15:40:44.304+06</i_start_time><Patient_ID>jalaluddin</Patient_ID><Second_page><Patient_Weight_kg>65.0</Patient_Weight_kg><temperature /><Patient_Temperature>89.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>40</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>200</Patient_BP_Systolic><Patient_BP_Diastolic>120</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>3</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>3</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture>1400060799518.jpg</Patient_picture><i_end_time>2014-05-14T15:46:42.680+06</i_end_time></data>',2,1,21,NULL),(264,NULL,NULL,'2014-05-15 15:50:00',NULL,'\0',NULL,NULL,'2014-05-15 15:48:54','bubly',NULL,'2014-05-15 13:21:59','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-05-15T13:21:59.013+06</i_start_time><Patient_Image>1400138527439.jpg</Patient_Image><firstPage><Patient_Name>Bubly</Patient_Name><mobile /><Patient_MobileNo>08520852085</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>0</Patient_Age_Year><Patient_Age_Month>11</Patient_Age_Month><Patient_Age_Day>3</Patient_Age_Day><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>bubly</Patient_ID><i_end_time>2014-05-15T15:50:00.422+06</i_end_time></data>',1,1,21,'Bubly'),(265,NULL,NULL,'2014-05-15 16:07:53',NULL,'\0',NULL,NULL,'2014-05-15 16:06:46','bubly',NULL,'2014-05-15 16:01:31','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-15T16:01:31.091+06</i_start_time><Patient_ID>bubly</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><temperature /><Patient_Temperature>80.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>250</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>200</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>3</Patient_Appearance><color /><Patient_Color>4</Patient_Color><consciousness /><Patient_Consciousness>3</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>5</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-15T16:07:53.895+06</i_end_time></data>',2,1,21,NULL),(266,NULL,NULL,'2014-05-15 16:10:23',NULL,'\0',NULL,NULL,'2014-05-15 16:09:01','salman',NULL,'2014-05-15 16:08:33','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-15T16:08:33.872+06</i_start_time><Patient_ID>salman</Patient_ID><Second_page><Patient_Weight_kg>55.0</Patient_Weight_kg><temperature /><Patient_Temperature>80.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>222</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>200</Patient_BP_Systolic><Patient_BP_Diastolic>110</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>3</Patient_Appearance><color /><Patient_Color>3</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>4</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture>1400148620572.jpg</Patient_picture><i_end_time>2014-05-15T16:10:23.953+06</i_end_time></data>',2,1,21,NULL),(267,NULL,NULL,'2014-05-15 11:44:24',NULL,'\0',NULL,NULL,'2014-05-15 17:15:36','salman',NULL,'2014-05-15 11:43:12','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-15T11:43:12.860+06</i_start_time><Patient_ID>salman</Patient_ID><Second_page><Patient_Weight_kg>62.0</Patient_Weight_kg><temperature /><Patient_Temperature>89.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>35</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>110</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>5</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture>1400132661397.jpg</Patient_picture><i_end_time>2014-05-15T11:44:24.311+06</i_end_time></data>',2,1,21,NULL),(268,NULL,NULL,'2014-05-15 12:28:05',NULL,'\0',NULL,NULL,'2014-05-15 17:15:49','jalaluddin',NULL,'2014-05-15 11:45:12','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-15T11:45:12.239+06</i_start_time><Patient_ID>jalaluddin</Patient_ID><Second_page><Patient_Weight_kg>89.0</Patient_Weight_kg><temperature /><Patient_Temperature>89.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>38</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>120</Patient_BP_Systolic><Patient_BP_Diastolic>80</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>4</Patient_Color><consciousness /><Patient_Consciousness>3</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>6</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture>1400135283213.jpg</Patient_picture><i_end_time>2014-05-15T12:28:05.725+06</i_end_time></data>',2,1,21,NULL),(269,NULL,NULL,'2014-05-15 17:36:53',NULL,'\0',NULL,NULL,'2014-05-15 17:35:32','salman',NULL,'2014-05-15 17:35:50','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-15T17:35:50.398+06</i_start_time><Patient_ID>salman</Patient_ID><Second_page><Patient_Weight_kg>68.0</Patient_Weight_kg><temperature /><Patient_Temperature>89.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>50</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>1</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>80</Patient_BP_Systolic><Patient_BP_Diastolic>120</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>2</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>1</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>5</Patient_Edema><dehydration /><Patient_Dehydration>1</Patient_Dehydration></Fifth_page><Patient_picture /><i_end_time>2014-05-15T17:36:53.463+06</i_end_time></data>',2,1,21,NULL),(270,NULL,NULL,'2014-05-15 17:38:19',NULL,'\0',NULL,NULL,'2014-05-15 17:37:13','rita',NULL,'2014-05-15 17:37:06','<?xml version=\'1.0\' ?><data id=\"2\"><i_start_time>2014-05-15T17:37:06.976+06</i_start_time><Patient_ID>rita</Patient_ID><Second_page><Patient_Weight_kg>42.0</Patient_Weight_kg><temperature /><Patient_Temperature>89.0</Patient_Temperature></Second_page><Third_page><Patient_PulseRate>35</Patient_PulseRate><respiratory /><Patient_RespiratoryRate>2</Patient_RespiratoryRate><Patient_BP /><Patient_BP_Systolic>70</Patient_BP_Systolic><Patient_BP_Diastolic>120</Patient_BP_Diastolic></Third_page><Fourth_page><Patient_Appearance>1</Patient_Appearance><color /><Patient_Color>1</Patient_Color><consciousness /><Patient_Consciousness>2</Patient_Consciousness></Fourth_page><Fifth_page><Patient_Edema>7</Patient_Edema><dehydration /><Patient_Dehydration>2</Patient_Dehydration></Fifth_page><Patient_picture>1400153887646.jpg</Patient_picture><i_end_time>2014-05-15T17:38:19.801+06</i_end_time></data>',2,1,21,NULL),(271,NULL,NULL,'2014-05-18 16:21:58',NULL,'\0',NULL,NULL,'2014-05-18 16:21:35','ADp:00749',NULL,'2014-05-18 16:20:18','<?xml version=\'1.0\' ?><data id=\"1\"><i_start_time>2014-05-18T16:20:18.594+06</i_start_time><Patient_Image>1400408436464.jpg</Patient_Image><firstPage><Patient_Name>Shammi</Patient_Name><mobile /><Patient_MobileNo>01975759759</Patient_MobileNo></firstPage><SecondPage><Age_note /><Patient_Age_Year>28</Patient_Age_Year><Patient_Age_Month>2</Patient_Age_Month><Patient_Age_Day /><gender /><Patient_Gender>2</Patient_Gender></SecondPage><Patient_ID>ADp:00749</Patient_ID><i_end_time>2014-05-18T16:21:58.588+06</i_end_time></data>',1,1,8,'Shammi');
/*!40000 ALTER TABLE `Data` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `User`
--
DROP TABLE IF EXISTS `User`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `User` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`login` varchar(255) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`password` varchar(255) DEFAULT NULL,
`role_id` bigint(20) DEFAULT NULL,
`age` varchar(255) DEFAULT NULL,
`location` varchar(255) DEFAULT NULL,
`phone` varchar(255) DEFAULT NULL,
`currentBalance` float DEFAULT NULL,
`creditLimit` float DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FK285FEBA1E94B1E` (`role_id`),
CONSTRAINT `FK285FEBA1E94B1E` FOREIGN KEY (`role_id`) REFERENCES `Role` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `User`
--
LOCK TABLES `User` WRITE;
/*!40000 ALTER TABLE `User` DISABLE KEYS */;
INSERT INTO `User` VALUES (1,'root','Root','ma3CMbBFMx5RSlFrS3aA9YjjgjITq+kBc4vDrWey9vyzxk77k9GAAliNPMwaSe+64c4gy0PfNrOGUfEfp1Z46A==',1,NULL,NULL,NULL,NULL,NULL),(2,'manager','Manager 01','X8LKbwhZGfL3dibx4oD6ucyStO3J7cU6xu7j9yxcUI6GnunWepbWOYbRTBwrgsNf9fMUlL6oMQFUJPWclv/2ZA==',2,NULL,NULL,NULL,NULL,NULL),(3,'001','Field Worker 1','1ARVn2Auq2/WAqx2gNrL+q3RNjAzXpUfCXrzkA6d4Xa22yhRLy4AC50E+6UTPoscbo31nbOoq51gvkuXzJ6B2w==',3,NULL,NULL,NULL,NULL,NULL),(4,'sadat','Sadat Sakif Ahmed','x61Ey612Kl2gpFL56FT9weDnpSo4AV8j8+qx2AuTHdRyY036xxzTTrw10Wq3+4qQyB+XURPWx1ONxp3Y3pB37A==',1,NULL,NULL,NULL,NULL,NULL),(5,'abul','Abul Kalam Azad','YglGQ0R82vxdzoVTpU4hCoaSnNJZQGZI9ionLaAWkPTgrJnznCP6lNOdfQQv0Fi5AeS/YYPHqGMk3MhdhM8MlA==',4,'36',NULL,'01737233902',NULL,NULL),(6,'rmp_tani','Rmp Tani','ujJTh2rta8ItSm/1PYQGxq2GQZXtFEq1yHYhtsIztUi66uaVbfNG7IwX9eoQ817jy8UUeX7X3dMUVGTioLq0Ew==',4,NULL,NULL,NULL,NULL,NULL),(7,'rmp_silvia','rmp Silvia','ujJTh2rta8ItSm/1PYQGxq2GQZXtFEq1yHYhtsIztUi66uaVbfNG7IwX9eoQ817jy8UUeX7X3dMUVGTioLq0Ew==',4,NULL,NULL,NULL,NULL,NULL),(8,'bachchu','Bachchu Daktar','k9KS5EVx6nFknnkEhCV5zmRRL65qEKxUlCF+33eZWKUnwTr9fKV/q1TVOWUOCgGcZKDlDpcwTF7cQF2RakU8oA==',4,'45',NULL,'239129381381',NULL,NULL),(9,'RMPtest1','Prithish Debnath','9Hhzeo6ri7UORC59SfZlHKasMB7JUYIf58JO2U0VYNsEt9TRDd/BO2x7Bwt9qmPCjBRE5T3VtGoSt+wxge0RwQ==',4,'35',NULL,'01795743105',NULL,NULL),(10,'RMPtest2','Md. Moyazzem Hossen Bhuiyan','4N8if1o0yOecuB+ApO6JuJLD+4cM74olFY85z27ZcfQL8Bg/9tVZreqeqbKn9rM4jXUQsz0G+SjKMMpmq+SLvg==',4,'35',NULL,'01795743105',NULL,NULL),(11,'RMPtest3','Md. Hafizur Rahman Liton','9JhDziCTjsWKiKTMDwEultk1LuudttDn/xQC1d8NSvEz8NI72vFEEtHqrJEU50yFJvXiNbBr8gS3hZ9y1jIWfg==',4,'35',NULL,'01795743105',NULL,NULL),(12,'RMPtest4','Khandaker Shah Alam Kabir','VLOvb2p3qJs3jhM9s7heV1Xtx9UIHy3PREC5NyorKQJ6rbgsz5bjKZrXt1/UmNQjJpIkGykj1K1bYbBeMgvnAg==',4,'35',NULL,'01795743105',NULL,NULL),(13,'RMPtest5','Salim Hossain Khan','SqnoIPE6YiVbvNZAM0u2uasVb/1SoElu3LdBDyYx6jwVXek+tTF9hQiymogQL4dFFEDmGi3pa2agZmeC097GJg==',4,'35',NULL,'01795743105',NULL,NULL),(14,'RMPtest6','Emdadul Haque','CIUF58EPEWm0+6ZxreZFuZbjUVdWXV6CS83lWFwks6zz2WPm/lOFJROrdRq+KKtFxgo6MLO9FGmxbft80k9d8g==',4,'35',NULL,'01795743105',NULL,NULL),(15,'RMPtest7','Ershad Uddin','GIcTWZHaeGldjkLNQPemS0HTp5fzP8nKPaMtDhBVpXzpefvwaYGQkwaF+k7WPOJmbzSkk1j3IGhEWD/j7ujGoQ==',4,'35',NULL,'01795743105',NULL,NULL),(16,'RMPtest8','Aminul Islam','ZbR417D7l49MOcTasXiOkgS0l5nnXl/xZqxjNlF6GQjR78oHnhjYFHqFbHHl9P9rUuDHhggvvLRllrLIDWLewQ==',4,'35',NULL,'01795743105',NULL,NULL),(17,'RMPtest9','Joynal Uddin','qk7C2UTBf7C9EF+CWzLMaeZmtX1oONbHyFk975GwA8Yfd1mvadliQY6z9kJ0F6zXKI+rMTCZmBAxIPUY+t8+Rw==',4,'35',NULL,'01795743105',NULL,NULL),(18,'RMPtest10','RMP Test 10','QiD0hhvm5d1I1qguN+UPXGXW2izVjjMhA5xLfr0Uyb8A1d9BxApOn1z9u5Zge4kphg8EfPjYfdG13zSDdWXdyg==',4,'35',NULL,'01795743105',NULL,NULL),(19,'RMPtest11','RMP Test 11','r48dZyn1uPbm1ld2pSFgs65DzniLiaYv80tGyAdGLq/8w4ehIzQPCNrloikJJdnDsa3SrVhFC79KUXvMVY3a+Q==',4,'35',NULL,'0178272822',NULL,12383),(20,'RMPtest12','RMP Test 12','JpfDhoA3R9nGlhMagHxQgNduUiGDJr3tP8MGFafV9XtG2410pMbbDPNTl1h8oeedGz+u2/0Gw3cT+abehmTsmQ==',4,'35',NULL,'01795743105',NULL,40000),(21,'rmp_tany','rmp_tany','ujJTh2rta8ItSm/1PYQGxq2GQZXtFEq1yHYhtsIztUi66uaVbfNG7IwX9eoQ817jy8UUeX7X3dMUVGTioLq0Ew==',4,'25',NULL,'01712345678',NULL,123);
/*!40000 ALTER TABLE `User` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2014-06-25 19:16:37