added ending dates of service
[openemr.git] / sql / database.sql
blob2fc52692a725b73ea0d11d8527f8a1115ad3d2c1
1 -- phpMyAdmin SQL Dump
2 -- version 2.6.4-pl4
3 -- http://www.phpmyadmin.net
4 -- 
5 -- Host: localhost
6 -- Generation Time: Feb 21, 2008 at 06:19 PM
7 -- Server version: 5.0.17
8 -- PHP Version: 5.1.1
9 -- 
10 -- Database: `openemr`
11 -- 
13 -- --------------------------------------------------------
15 -- 
16 -- Table structure for table `addresses`
17 -- 
19 DROP TABLE IF EXISTS `addresses`;
20 CREATE TABLE `addresses` (
21   `id` int(11) NOT NULL default '0',
22   `line1` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
23   `line2` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
24   `city` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
25   `state` varchar(35) character set utf8 collate utf8_unicode_ci default NULL,
26   `zip` varchar(10) character set utf8 collate utf8_unicode_ci default NULL,
27   `plus_four` varchar(4) character set utf8 collate utf8_unicode_ci default NULL,
28   `country` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
29   `foreign_id` int(11) default NULL,
30   PRIMARY KEY  (`id`),
31   KEY `foreign_id` (`foreign_id`)
32 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
34 -- 
35 -- Dumping data for table `addresses`
36 -- 
39 -- --------------------------------------------------------
41 -- 
42 -- Table structure for table `array`
43 -- 
45 DROP TABLE IF EXISTS `array`;
46 CREATE TABLE `array` (
47   `array_key` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
48   `array_value` longtext character set utf8 collate utf8_unicode_ci
49 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
51 -- 
52 -- Dumping data for table `array`
53 -- 
56 -- --------------------------------------------------------
58 -- 
59 -- Table structure for table `batchcom`
60 -- 
62 DROP TABLE IF EXISTS `batchcom`;
63 CREATE TABLE `batchcom` (
64   `id` bigint(20) NOT NULL auto_increment,
65   `patient_id` int(11) NOT NULL default '0',
66   `sent_by` bigint(20) NOT NULL default '0',
67   `msg_type` varchar(60) character set utf8 collate utf8_unicode_ci default NULL,
68   `msg_subject` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
69   `msg_text` mediumtext character set utf8 collate utf8_unicode_ci,
70   `msg_date_sent` datetime NOT NULL default '0000-00-00 00:00:00',
71   PRIMARY KEY  (`id`)
72 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
74 -- 
75 -- Dumping data for table `batchcom`
76 -- 
79 -- --------------------------------------------------------
81 -- 
82 -- Table structure for table `billing`
83 -- 
85 DROP TABLE IF EXISTS `billing`;
86 CREATE TABLE `billing` (
87   `id` int(11) NOT NULL auto_increment,
88   `date` datetime default NULL,
89   `code_type` varchar(7) character set utf8 collate utf8_unicode_ci default NULL,
90   `code` varchar(9) character set utf8 collate utf8_unicode_ci default NULL,
91   `pid` int(11) default NULL,
92   `provider_id` int(11) default NULL,
93   `user` int(11) default NULL,
94   `groupname` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
95   `authorized` tinyint(1) default NULL,
96   `encounter` int(11) default NULL,
97   `code_text` longtext character set utf8 collate utf8_unicode_ci,
98   `billed` tinyint(1) default NULL,
99   `activity` tinyint(1) default NULL,
100   `payer_id` int(11) default NULL,
101   `bill_process` tinyint(2) NOT NULL default '0',
102   `bill_date` datetime default NULL,
103   `process_date` datetime default NULL,
104   `process_file` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
105   `modifier` varchar(5) character set utf8 collate utf8_unicode_ci default NULL,
106   `units` tinyint(3) default NULL,
107   `fee` decimal(12,2) default NULL,
108   `justify` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
109   `target` varchar(30) character set utf8 collate utf8_unicode_ci default NULL,
110   `x12_partner_id` int(11) default NULL,
111   `ndc_info` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
112   PRIMARY KEY  (`id`)
113 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
115 -- 
116 -- Dumping data for table `billing`
117 -- 
120 -- --------------------------------------------------------
122 -- 
123 -- Table structure for table `categories`
124 -- 
126 DROP TABLE IF EXISTS `categories`;
127 CREATE TABLE `categories` (
128   `id` int(11) NOT NULL default '0',
129   `name` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
130   `value` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
131   `parent` int(11) NOT NULL default '0',
132   `lft` int(11) NOT NULL default '0',
133   `rght` int(11) NOT NULL default '0',
134   PRIMARY KEY  (`id`),
135   KEY `parent` (`parent`),
136   KEY `lft` (`lft`,`rght`)
137 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
139 -- 
140 -- Dumping data for table `categories`
141 -- 
143 INSERT INTO `categories` VALUES (1, 'Categories', '', 0, 0, 9);
144 INSERT INTO `categories` VALUES (2, 'Lab Report', '', 1, 1, 2);
145 INSERT INTO `categories` VALUES (3, 'Medical Record', '', 1, 3, 4);
146 INSERT INTO `categories` VALUES (4, 'Patient Information', '', 1, 5, 8);
147 INSERT INTO `categories` VALUES (5, 'Patient ID card', '', 4, 6, 7);
149 -- --------------------------------------------------------
151 -- 
152 -- Table structure for table `categories_seq`
153 -- 
155 DROP TABLE IF EXISTS `categories_seq`;
156 CREATE TABLE `categories_seq` (
157   `id` int(11) NOT NULL default '0',
158   PRIMARY KEY  (`id`)
159 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
161 -- 
162 -- Dumping data for table `categories_seq`
163 -- 
165 INSERT INTO `categories_seq` VALUES (5);
167 -- --------------------------------------------------------
169 -- 
170 -- Table structure for table `categories_to_documents`
171 -- 
173 DROP TABLE IF EXISTS `categories_to_documents`;
174 CREATE TABLE `categories_to_documents` (
175   `category_id` int(11) NOT NULL default '0',
176   `document_id` int(11) NOT NULL default '0',
177   PRIMARY KEY  (`category_id`,`document_id`)
178 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
180 -- 
181 -- Dumping data for table `categories_to_documents`
182 -- 
185 -- --------------------------------------------------------
187 -- 
188 -- Table structure for table `claims`
189 -- 
191 DROP TABLE IF EXISTS `claims`;
192 CREATE TABLE `claims` (
193   `patient_id` int(11) NOT NULL,
194   `encounter_id` int(11) NOT NULL,
195   `version` int(10) unsigned NOT NULL auto_increment,
196   `payer_id` int(11) NOT NULL default '0',
197   `status` tinyint(2) NOT NULL default '0',
198   `payer_type` tinyint(4) NOT NULL default '0',
199   `bill_process` tinyint(2) NOT NULL default '0',
200   `bill_time` datetime default NULL,
201   `process_time` datetime default NULL,
202   `process_file` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
203   `target` varchar(30) character set utf8 collate utf8_unicode_ci default NULL,
204   `x12_partner_id` int(11) NOT NULL default '0',
205   PRIMARY KEY  (`patient_id`,`encounter_id`,`version`)
206 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
208 -- 
209 -- Dumping data for table `claims`
210 -- 
213 -- --------------------------------------------------------
215 -- 
216 -- Table structure for table `codes`
217 -- 
219 DROP TABLE IF EXISTS `codes`;
220 CREATE TABLE `codes` (
221   `id` int(11) NOT NULL auto_increment,
222   `code_text` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
223   `code_text_short` varchar(24) character set utf8 collate utf8_unicode_ci NOT NULL default '',
224   `code` varchar(10) character set utf8 collate utf8_unicode_ci NOT NULL default '',
225   `code_type` tinyint(2) default NULL,
226   `modifier` varchar(5) character set utf8 collate utf8_unicode_ci NOT NULL default '',
227   `units` tinyint(3) default NULL,
228   `fee` decimal(12,2) default NULL,
229   `superbill` varchar(31) character set utf8 collate utf8_unicode_ci NOT NULL default '',
230   `related_code` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
231   `taxrates` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
232   `cyp_factor` float NOT NULL DEFAULT 0 COMMENT 'quantity representing a years supply',
233   PRIMARY KEY  (`id`),
234   KEY `code` (`code`)
235 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
237 -- 
238 -- Dumping data for table `codes`
239 -- 
242 -- --------------------------------------------------------
244 -- 
245 -- Table structure for table `config`
246 -- 
248 DROP TABLE IF EXISTS `config`;
249 CREATE TABLE `config` (
250   `id` int(11) NOT NULL default '0',
251   `name` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
252   `value` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
253   `parent` int(11) NOT NULL default '0',
254   `lft` int(11) NOT NULL default '0',
255   `rght` int(11) NOT NULL default '0',
256   PRIMARY KEY  (`id`),
257   KEY `parent` (`parent`),
258   KEY `lft` (`lft`,`rght`)
259 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
261 -- 
262 -- Dumping data for table `config`
263 -- 
266 -- --------------------------------------------------------
268 -- 
269 -- Table structure for table `config_seq`
270 -- 
272 DROP TABLE IF EXISTS `config_seq`;
273 CREATE TABLE `config_seq` (
274   `id` int(11) NOT NULL default '0',
275   PRIMARY KEY  (`id`)
276 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
278 -- 
279 -- Dumping data for table `config_seq`
280 -- 
282 INSERT INTO `config_seq` VALUES (0);
284 -- --------------------------------------------------------
286 -- 
287 -- Table structure for table `documents`
288 -- 
290 DROP TABLE IF EXISTS `documents`;
291 CREATE TABLE `documents` (
292   `id` int(11) NOT NULL default '0',
293   `type` enum('file_url','blob','web_url') character set latin1 default NULL,
294   `size` int(11) default NULL,
295   `date` datetime default NULL,
296   `url` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
297   `mimetype` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
298   `pages` int(11) default NULL,
299   `owner` int(11) default NULL,
300   `revision` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
301   `foreign_id` int(11) default NULL,
302   `docdate` date default NULL,
303   `list_id` bigint(20) NOT NULL default '0',
304   PRIMARY KEY  (`id`),
305   KEY `revision` (`revision`),
306   KEY `foreign_id` (`foreign_id`),
307   KEY `owner` (`owner`)
308 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
310 -- 
311 -- Dumping data for table `documents`
312 -- 
315 -- --------------------------------------------------------
317 -- 
318 -- Table structure for table `drug_inventory`
319 -- 
321 DROP TABLE IF EXISTS `drug_inventory`;
322 CREATE TABLE `drug_inventory` (
323   `inventory_id` int(11) NOT NULL auto_increment,
324   `drug_id` int(11) NOT NULL,
325   `lot_number` varchar(20) character set utf8 collate utf8_unicode_ci default NULL,
326   `expiration` date default NULL,
327   `manufacturer` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
328   `on_hand` int(11) NOT NULL default '0',
329   `last_notify` date NOT NULL default '0000-00-00',
330   `destroy_date` date default NULL,
331   `destroy_method` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
332   `destroy_witness` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
333   `destroy_notes` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
334   PRIMARY KEY  (`inventory_id`)
335 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
337 -- 
338 -- Dumping data for table `drug_inventory`
339 -- 
342 -- --------------------------------------------------------
344 -- 
345 -- Table structure for table `drug_sales`
346 -- 
348 DROP TABLE IF EXISTS `drug_sales`;
349 CREATE TABLE `drug_sales` (
350   `sale_id` int(11) NOT NULL auto_increment,
351   `drug_id` int(11) NOT NULL,
352   `inventory_id` int(11) NOT NULL,
353   `prescription_id` int(11) NOT NULL default '0',
354   `pid` int(11) NOT NULL default '0',
355   `encounter` int(11) NOT NULL default '0',
356   `user` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
357   `sale_date` date NOT NULL,
358   `quantity` int(11) NOT NULL default '0',
359   `fee` decimal(12,2) NOT NULL default '0.00',
360   `billed` tinyint(1) NOT NULL default '0' COMMENT 'indicates if the sale is posted to accounting',
361   PRIMARY KEY  (`sale_id`)
362 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
364 -- 
365 -- Dumping data for table `drug_sales`
366 -- 
369 -- --------------------------------------------------------
371 -- 
372 -- Table structure for table `drug_templates`
373 -- 
375 DROP TABLE IF EXISTS `drug_templates`;
376 CREATE TABLE `drug_templates` (
377   `drug_id` int(11) NOT NULL,
378   `selector` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
379   `dosage` varchar(10) character set utf8 collate utf8_unicode_ci default NULL,
380   `period` int(11) NOT NULL default '0',
381   `quantity` int(11) NOT NULL default '0',
382   `refills` int(11) NOT NULL default '0',
383   `taxrates` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
384   PRIMARY KEY  (`drug_id`,`selector`)
385 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
387 -- 
388 -- Dumping data for table `drug_templates`
389 -- 
392 -- --------------------------------------------------------
394 -- 
395 -- Table structure for table `drugs`
396 -- 
398 DROP TABLE IF EXISTS `drugs`;
399 CREATE TABLE `drugs` (
400   `drug_id` int(11) NOT NULL auto_increment,
401   `name` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
402   `ndc_number` varchar(20) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
403   `on_order` int(11) NOT NULL default '0',
404   `reorder_point` int(11) NOT NULL default '0',
405   `last_notify` date NOT NULL default '0000-00-00',
406   `reactions` text character set utf8 collate utf8_unicode_ci,
407   `form` int(3) NOT NULL default '0',
408   `size` float unsigned NOT NULL default '0',
409   `unit` int(11) NOT NULL default '0',
410   `route` int(11) NOT NULL default '0',
411   `substitute` int(11) NOT NULL default '0',
412   `related_code` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'may reference a related codes.code',
413   `cyp_factor` float NOT NULL DEFAULT 0 COMMENT 'quantity representing a years supply',
414   PRIMARY KEY  (`drug_id`)
415 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
417 -- 
418 -- Dumping data for table `drugs`
419 -- 
422 -- --------------------------------------------------------
424 -- 
425 -- Table structure for table `employer_data`
426 -- 
428 DROP TABLE IF EXISTS `employer_data`;
429 CREATE TABLE `employer_data` (
430   `id` bigint(20) NOT NULL auto_increment,
431   `name` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
432   `street` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
433   `postal_code` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
434   `city` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
435   `state` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
436   `country` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
437   `date` datetime default NULL,
438   `pid` bigint(20) NOT NULL default '0',
439   PRIMARY KEY  (`id`),
440   KEY `pid` (`pid`)
441 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
443 -- 
444 -- Dumping data for table `employer_data`
445 -- 
448 -- --------------------------------------------------------
450 -- 
451 -- Table structure for table `facility`
452 -- 
454 DROP TABLE IF EXISTS `facility`;
455 CREATE TABLE `facility` (
456   `id` int(11) NOT NULL auto_increment,
457   `name` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
458   `phone` varchar(30) character set utf8 collate utf8_unicode_ci default NULL,
459   `fax` varchar(30) character set utf8 collate utf8_unicode_ci default NULL,
460   `street` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
461   `city` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
462   `state` varchar(50) character set utf8 collate utf8_unicode_ci default NULL,
463   `postal_code` varchar(11) character set utf8 collate utf8_unicode_ci default NULL,
464   `country_code` varchar(10) character set utf8 collate utf8_unicode_ci default NULL,
465   `federal_ein` varchar(15) character set utf8 collate utf8_unicode_ci default NULL,
466   `service_location` tinyint(1) NOT NULL default '1',
467   `billing_location` tinyint(1) NOT NULL default '0',
468   `accepts_assignment` tinyint(1) NOT NULL default '0',
469   `pos_code` tinyint(4) default NULL,
470   `x12_sender_id` varchar(25) character set utf8 collate utf8_unicode_ci default NULL,
471   `attn` varchar(65) character set utf8 collate utf8_unicode_ci default NULL,
472   `domain_identifier` varchar(60) character set utf8 collate utf8_unicode_ci default NULL,
473   `facility_npi` varchar(15) character set utf8 collate utf8_unicode_ci default NULL,
474   PRIMARY KEY  (`id`)
475 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=4 ;
477 -- 
478 -- Dumping data for table `facility`
479 -- 
481 INSERT INTO `facility` VALUES (3, 'Your Clinic Name Here', '000-000-0000', '000-000-0000', '', '', '', '', '', '', 1, 0, 0, NULL, '', '', '', '');
483 -- --------------------------------------------------------
485 -- 
486 -- Table structure for table `fee_sheet_options`
487 -- 
489 DROP TABLE IF EXISTS `fee_sheet_options`;
490 CREATE TABLE `fee_sheet_options` (
491   `fs_category` varchar(63) character set utf8 collate utf8_unicode_ci default NULL,
492   `fs_option` varchar(63) character set utf8 collate utf8_unicode_ci default NULL,
493   `fs_codes` varchar(255) character set utf8 collate utf8_unicode_ci default NULL
494 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
496 -- 
497 -- Dumping data for table `fee_sheet_options`
498 -- 
500 INSERT INTO `fee_sheet_options` VALUES ('1New Patient', '1Brief', 'CPT4|99201|');
501 INSERT INTO `fee_sheet_options` VALUES ('1New Patient', '2Limited', 'CPT4|99202|');
502 INSERT INTO `fee_sheet_options` VALUES ('1New Patient', '3Detailed', 'CPT4|99203|');
503 INSERT INTO `fee_sheet_options` VALUES ('1New Patient', '4Extended', 'CPT4|99204|');
504 INSERT INTO `fee_sheet_options` VALUES ('1New Patient', '5Comprehensive', 'CPT4|99205|');
505 INSERT INTO `fee_sheet_options` VALUES ('2Established Patient', '1Brief', 'CPT4|99211|');
506 INSERT INTO `fee_sheet_options` VALUES ('2Established Patient', '2Limited', 'CPT4|99212|');
507 INSERT INTO `fee_sheet_options` VALUES ('2Established Patient', '3Detailed', 'CPT4|99213|');
508 INSERT INTO `fee_sheet_options` VALUES ('2Established Patient', '4Extended', 'CPT4|99214|');
509 INSERT INTO `fee_sheet_options` VALUES ('2Established Patient', '5Comprehensive', 'CPT4|99215|');
511 -- --------------------------------------------------------
513 -- 
514 -- Table structure for table `form_dictation`
515 -- 
517 DROP TABLE IF EXISTS `form_dictation`;
518 CREATE TABLE `form_dictation` (
519   `id` bigint(20) NOT NULL auto_increment,
520   `date` datetime default NULL,
521   `pid` bigint(20) default NULL,
522   `user` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
523   `groupname` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
524   `authorized` tinyint(4) default NULL,
525   `activity` tinyint(4) default NULL,
526   `dictation` longtext character set utf8 collate utf8_unicode_ci,
527   `additional_notes` longtext character set utf8 collate utf8_unicode_ci,
528   PRIMARY KEY  (`id`)
529 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
531 -- 
532 -- Dumping data for table `form_dictation`
533 -- 
536 -- --------------------------------------------------------
538 -- 
539 -- Table structure for table `form_encounter`
540 -- 
542 DROP TABLE IF EXISTS `form_encounter`;
543 CREATE TABLE `form_encounter` (
544   `id` bigint(20) NOT NULL auto_increment,
545   `date` datetime default NULL,
546   `reason` longtext character set utf8 collate utf8_unicode_ci,
547   `facility` longtext character set utf8 collate utf8_unicode_ci,
548   `facility_id` int(11) NOT NULL default '0',
549   `pid` bigint(20) default NULL,
550   `encounter` bigint(20) default NULL,
551   `onset_date` datetime default NULL,
552   `sensitivity` varchar(30) character set utf8 collate utf8_unicode_ci default NULL,
553   `billing_note` text character set utf8 collate utf8_unicode_ci,
554   `pc_catid` int(11) NOT NULL default '5' COMMENT 'event category from openemr_postcalendar_categories',
555   PRIMARY KEY  (`id`)
556 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
558 -- 
559 -- Dumping data for table `form_encounter`
560 -- 
563 -- --------------------------------------------------------
565 -- 
566 -- Table structure for table `form_misc_billing_options`
567 -- 
569 DROP TABLE IF EXISTS `form_misc_billing_options`;
570 CREATE TABLE `form_misc_billing_options` (
571   `id` bigint(20) NOT NULL auto_increment,
572   `date` datetime default NULL,
573   `pid` bigint(20) default NULL,
574   `user` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
575   `groupname` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
576   `authorized` tinyint(4) default NULL,
577   `activity` tinyint(4) default NULL,
578   `employment_related` tinyint(1) default NULL,
579   `auto_accident` tinyint(1) default NULL,
580   `accident_state` varchar(2) character set utf8 collate utf8_unicode_ci default NULL,
581   `other_accident` tinyint(1) default NULL,
582   `outside_lab` tinyint(1) default NULL,
583   `lab_amount` decimal(5,2) default NULL,
584   `is_unable_to_work` tinyint(1) default NULL,
585   `off_work_from` date default NULL,
586   `off_work_to` date default NULL,
587   `is_hospitalized` tinyint(1) default NULL,
588   `hospitalization_date_from` date default NULL,
589   `hospitalization_date_to` date default NULL,
590   `medicaid_resubmission_code` varchar(10) character set utf8 collate utf8_unicode_ci default NULL,
591   `medicaid_original_reference` varchar(15) character set utf8 collate utf8_unicode_ci default NULL,
592   `prior_auth_number` varchar(20) character set utf8 collate utf8_unicode_ci default NULL,
593   `comments` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
594   PRIMARY KEY  (`id`)
595 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
597 -- 
598 -- Dumping data for table `form_misc_billing_options`
599 -- 
602 -- --------------------------------------------------------
604 -- 
605 -- Table structure for table `form_reviewofs`
606 -- 
608 DROP TABLE IF EXISTS `form_reviewofs`;
609 CREATE TABLE `form_reviewofs` (
610   `id` bigint(20) NOT NULL auto_increment,
611   `date` datetime default NULL,
612   `pid` bigint(20) default NULL,
613   `user` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
614   `groupname` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
615   `authorized` tinyint(4) default NULL,
616   `activity` tinyint(4) default NULL,
617   `fever` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
618   `chills` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
619   `night_sweats` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
620   `weight_loss` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
621   `poor_appetite` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
622   `insomnia` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
623   `fatigued` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
624   `depressed` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
625   `hyperactive` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
626   `exposure_to_foreign_countries` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
627   `cataracts` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
628   `cataract_surgery` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
629   `glaucoma` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
630   `double_vision` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
631   `blurred_vision` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
632   `poor_hearing` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
633   `headaches` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
634   `ringing_in_ears` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
635   `bloody_nose` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
636   `sinusitis` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
637   `sinus_surgery` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
638   `dry_mouth` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
639   `strep_throat` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
640   `tonsillectomy` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
641   `swollen_lymph_nodes` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
642   `throat_cancer` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
643   `throat_cancer_surgery` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
644   `heart_attack` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
645   `irregular_heart_beat` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
646   `chest_pains` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
647   `shortness_of_breath` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
648   `high_blood_pressure` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
649   `heart_failure` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
650   `poor_circulation` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
651   `vascular_surgery` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
652   `cardiac_catheterization` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
653   `coronary_artery_bypass` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
654   `heart_transplant` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
655   `stress_test` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
656   `emphysema` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
657   `chronic_bronchitis` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
658   `interstitial_lung_disease` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
659   `shortness_of_breath_2` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
660   `lung_cancer` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
661   `lung_cancer_surgery` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
662   `pheumothorax` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
663   `stomach_pains` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
664   `peptic_ulcer_disease` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
665   `gastritis` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
666   `endoscopy` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
667   `polyps` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
668   `colonoscopy` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
669   `colon_cancer` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
670   `colon_cancer_surgery` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
671   `ulcerative_colitis` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
672   `crohns_disease` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
673   `appendectomy` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
674   `divirticulitis` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
675   `divirticulitis_surgery` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
676   `gall_stones` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
677   `cholecystectomy` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
678   `hepatitis` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
679   `cirrhosis_of_the_liver` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
680   `splenectomy` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
681   `kidney_failure` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
682   `kidney_stones` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
683   `kidney_cancer` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
684   `kidney_infections` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
685   `bladder_infections` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
686   `bladder_cancer` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
687   `prostate_problems` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
688   `prostate_cancer` varchar(255) character set latin1 default NULL,
689   `kidney_transplant` varchar(255) character set latin1 default NULL,
690   `sexually_transmitted_disease` varchar(255) character set latin1 default NULL,
691   `burning_with_urination` varchar(255) character set latin1 default NULL,
692   `discharge_from_urethra` varchar(255) character set latin1 default NULL,
693   `rashes` varchar(255) character set latin1 default NULL,
694   `infections` varchar(255) character set latin1 default NULL,
695   `ulcerations` varchar(255) character set latin1 default NULL,
696   `pemphigus` varchar(255) character set latin1 default NULL,
697   `herpes` varchar(255) character set latin1 default NULL,
698   `osetoarthritis` varchar(255) character set latin1 default NULL,
699   `rheumotoid_arthritis` varchar(255) character set latin1 default NULL,
700   `lupus` varchar(255) character set latin1 default NULL,
701   `ankylosing_sondlilitis` varchar(255) character set latin1 default NULL,
702   `swollen_joints` varchar(255) character set latin1 default NULL,
703   `stiff_joints` varchar(255) character set latin1 default NULL,
704   `broken_bones` varchar(255) character set latin1 default NULL,
705   `neck_problems` varchar(255) character set latin1 default NULL,
706   `back_problems` varchar(255) character set latin1 default NULL,
707   `back_surgery` varchar(255) character set latin1 default NULL,
708   `scoliosis` varchar(255) character set latin1 default NULL,
709   `herniated_disc` varchar(255) character set latin1 default NULL,
710   `shoulder_problems` varchar(255) character set latin1 default NULL,
711   `elbow_problems` varchar(255) character set latin1 default NULL,
712   `wrist_problems` varchar(255) character set latin1 default NULL,
713   `hand_problems` varchar(255) character set latin1 default NULL,
714   `hip_problems` varchar(255) character set latin1 default NULL,
715   `knee_problems` varchar(255) character set latin1 default NULL,
716   `ankle_problems` varchar(255) character set latin1 default NULL,
717   `foot_problems` varchar(255) character set latin1 default NULL,
718   `insulin_dependent_diabetes` varchar(255) character set latin1 default NULL,
719   `noninsulin_dependent_diabetes` varchar(255) character set latin1 default NULL,
720   `hypothyroidism` varchar(255) character set latin1 default NULL,
721   `hyperthyroidism` varchar(255) character set latin1 default NULL,
722   `cushing_syndrom` varchar(255) character set latin1 default NULL,
723   `addison_syndrom` varchar(255) character set latin1 default NULL,
724   `additional_notes` longtext character set utf8 collate utf8_unicode_ci,
725   PRIMARY KEY  (`id`)
726 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
728 -- 
729 -- Dumping data for table `form_reviewofs`
730 -- 
733 -- --------------------------------------------------------
735 -- 
736 -- Table structure for table `form_ros`
737 -- 
739 DROP TABLE IF EXISTS `form_ros`;
740 CREATE TABLE `form_ros` (
741   `id` int(11) NOT NULL auto_increment,
742   `pid` int(11) NOT NULL,
743   `activity` int(11) NOT NULL default '1',
744   `date` datetime default NULL,
745   `weight_change` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
746   `weakness` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
747   `fatigue` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
748   `anorexia` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
749   `fever` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
750   `chills` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
751   `night_sweats` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
752   `insomnia` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
753   `irritability` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
754   `heat_or_cold` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
755   `intolerance` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
756   `change_in_vision` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
757   `glaucoma_history` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
758   `eye_pain` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
759   `irritation` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
760   `redness` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
761   `excessive_tearing` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
762   `double_vision` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
763   `blind_spots` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
764   `photophobia` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
765   `hearing_loss` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
766   `discharge` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
767   `pain` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
768   `vertigo` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
769   `tinnitus` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
770   `frequent_colds` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
771   `sore_throat` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
772   `sinus_problems` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
773   `post_nasal_drip` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
774   `nosebleed` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
775   `snoring` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
776   `apnea` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
777   `breast_mass` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
778   `breast_discharge` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
779   `biopsy` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
780   `abnormal_mammogram` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
781   `cough` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
782   `sputum` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
783   `shortness_of_breath` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
784   `wheezing` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
785   `hemoptsyis` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
786   `asthma` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
787   `copd` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
788   `chest_pain` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
789   `palpitation` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
790   `syncope` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
791   `pnd` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
792   `doe` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
793   `orthopnea` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
794   `peripheal` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
795   `edema` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
796   `legpain_cramping` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
797   `history_murmur` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
798   `arrythmia` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
799   `heart_problem` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
800   `dysphagia` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
801   `heartburn` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
802   `bloating` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
803   `belching` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
804   `flatulence` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
805   `nausea` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
806   `vomiting` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
807   `hematemesis` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
808   `gastro_pain` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
809   `food_intolerance` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
810   `hepatitis` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
811   `jaundice` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
812   `hematochezia` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
813   `changed_bowel` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
814   `diarrhea` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
815   `constipation` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
816   `polyuria` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
817   `polydypsia` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
818   `dysuria` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
819   `hematuria` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
820   `frequency` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
821   `urgency` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
822   `incontinence` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
823   `renal_stones` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
824   `utis` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
825   `hesitancy` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
826   `dribbling` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
827   `stream` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
828   `nocturia` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
829   `erections` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
830   `ejaculations` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
831   `g` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
832   `p` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
833   `ap` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
834   `lc` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
835   `mearche` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
836   `menopause` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
837   `lmp` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
838   `f_frequency` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
839   `f_flow` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
840   `f_symptoms` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
841   `abnormal_hair_growth` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
842   `f_hirsutism` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
843   `joint_pain` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
844   `swelling` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
845   `m_redness` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
846   `m_warm` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
847   `m_stiffness` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
848   `muscle` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
849   `m_aches` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
850   `fms` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
851   `arthritis` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
852   `loc` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
853   `seizures` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
854   `stroke` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
855   `tia` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
856   `n_numbness` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
857   `n_weakness` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
858   `paralysis` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
859   `intellectual_decline` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
860   `memory_problems` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
861   `dementia` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
862   `n_headache` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
863   `s_cancer` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
864   `psoriasis` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
865   `s_acne` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
866   `s_other` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
867   `s_disease` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
868   `p_diagnosis` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
869   `p_medication` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
870   `depression` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
871   `anxiety` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
872   `social_difficulties` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
873   `thyroid_problems` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
874   `diabetes` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
875   `abnormal_blood` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
876   `anemia` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
877   `fh_blood_problems` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
878   `bleeding_problems` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
879   `allergies` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
880   `frequent_illness` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
881   `hiv` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
882   `hai_status` varchar(3) character set utf8 collate utf8_unicode_ci default NULL,
883   PRIMARY KEY  (`id`)
884 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
886 -- 
887 -- Dumping data for table `form_ros`
888 -- 
891 -- --------------------------------------------------------
893 -- 
894 -- Table structure for table `form_soap`
895 -- 
897 DROP TABLE IF EXISTS `form_soap`;
898 CREATE TABLE `form_soap` (
899   `id` bigint(20) NOT NULL auto_increment,
900   `date` datetime default NULL,
901   `pid` bigint(20) default '0',
902   `user` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
903   `groupname` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
904   `authorized` tinyint(4) default '0',
905   `activity` tinyint(4) default '0',
906   `subjective` text character set utf8 collate utf8_unicode_ci,
907   `objective` text character set utf8 collate utf8_unicode_ci,
908   `assessment` text character set utf8 collate utf8_unicode_ci,
909   `plan` text character set utf8 collate utf8_unicode_ci,
910   PRIMARY KEY  (`id`)
911 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
913 -- 
914 -- Dumping data for table `form_soap`
915 -- 
918 -- --------------------------------------------------------
920 -- 
921 -- Table structure for table `form_vitals`
922 -- 
924 DROP TABLE IF EXISTS `form_vitals`;
925 CREATE TABLE `form_vitals` (
926   `id` bigint(20) NOT NULL auto_increment,
927   `date` datetime default NULL,
928   `pid` bigint(20) default '0',
929   `user` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
930   `groupname` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
931   `authorized` tinyint(4) default '0',
932   `activity` tinyint(4) default '0',
933   `bps` varchar(40) character set utf8 collate utf8_unicode_ci default NULL,
934   `bpd` varchar(40) character set utf8 collate utf8_unicode_ci default NULL,
935   `weight` float(5,2) default '0.00',
936   `height` float(5,2) default '0.00',
937   `temperature` float(5,2) default '0.00',
938   `temp_method` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
939   `pulse` float(5,2) default '0.00',
940   `respiration` float(5,2) default '0.00',
941   `note` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
942   `BMI` float(4,1) default '0.0',
943   `BMI_status` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
944   `waist_circ` float(5,2) default '0.00',
945   `head_circ` float(4,2) default '0.00',
946   `oxygen_saturation` float(5,2) default '0.00',
947   PRIMARY KEY  (`id`)
948 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
950 -- 
951 -- Dumping data for table `form_vitals`
952 -- 
955 -- --------------------------------------------------------
957 -- 
958 -- Table structure for table `forms`
959 -- 
961 DROP TABLE IF EXISTS `forms`;
962 CREATE TABLE `forms` (
963   `id` bigint(20) NOT NULL auto_increment,
964   `date` datetime default NULL,
965   `encounter` bigint(20) default NULL,
966   `form_name` longtext character set utf8 collate utf8_unicode_ci,
967   `form_id` bigint(20) default NULL,
968   `pid` bigint(20) default NULL,
969   `user` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
970   `groupname` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
971   `authorized` tinyint(4) default NULL,
972   `formdir` longtext character set utf8 collate utf8_unicode_ci,
973   PRIMARY KEY  (`id`)
974 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
976 -- 
977 -- Dumping data for table `forms`
978 -- 
981 -- --------------------------------------------------------
983 -- 
984 -- Table structure for table `geo_country_reference`
985 -- 
987 DROP TABLE IF EXISTS `geo_country_reference`;
988 CREATE TABLE `geo_country_reference` (
989   `countries_id` int(5) NOT NULL auto_increment,
990   `countries_name` varchar(64) character set utf8 collate utf8_unicode_ci default NULL,
991   `countries_iso_code_2` char(2) character set latin1 NOT NULL default '',
992   `countries_iso_code_3` char(3) character set latin1 NOT NULL default '',
993   PRIMARY KEY  (`countries_id`),
994   KEY `IDX_COUNTRIES_NAME` (`countries_name`)
995 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=240 ;
997 -- 
998 -- Dumping data for table `geo_country_reference`
999 -- 
1001 INSERT INTO `geo_country_reference` VALUES (1, 'Afghanistan', 'AF', 'AFG');
1002 INSERT INTO `geo_country_reference` VALUES (2, 'Albania', 'AL', 'ALB');
1003 INSERT INTO `geo_country_reference` VALUES (3, 'Algeria', 'DZ', 'DZA');
1004 INSERT INTO `geo_country_reference` VALUES (4, 'American Samoa', 'AS', 'ASM');
1005 INSERT INTO `geo_country_reference` VALUES (5, 'Andorra', 'AD', 'AND');
1006 INSERT INTO `geo_country_reference` VALUES (6, 'Angola', 'AO', 'AGO');
1007 INSERT INTO `geo_country_reference` VALUES (7, 'Anguilla', 'AI', 'AIA');
1008 INSERT INTO `geo_country_reference` VALUES (8, 'Antarctica', 'AQ', 'ATA');
1009 INSERT INTO `geo_country_reference` VALUES (9, 'Antigua and Barbuda', 'AG', 'ATG');
1010 INSERT INTO `geo_country_reference` VALUES (10, 'Argentina', 'AR', 'ARG');
1011 INSERT INTO `geo_country_reference` VALUES (11, 'Armenia', 'AM', 'ARM');
1012 INSERT INTO `geo_country_reference` VALUES (12, 'Aruba', 'AW', 'ABW');
1013 INSERT INTO `geo_country_reference` VALUES (13, 'Australia', 'AU', 'AUS');
1014 INSERT INTO `geo_country_reference` VALUES (14, 'Austria', 'AT', 'AUT');
1015 INSERT INTO `geo_country_reference` VALUES (15, 'Azerbaijan', 'AZ', 'AZE');
1016 INSERT INTO `geo_country_reference` VALUES (16, 'Bahamas', 'BS', 'BHS');
1017 INSERT INTO `geo_country_reference` VALUES (17, 'Bahrain', 'BH', 'BHR');
1018 INSERT INTO `geo_country_reference` VALUES (18, 'Bangladesh', 'BD', 'BGD');
1019 INSERT INTO `geo_country_reference` VALUES (19, 'Barbados', 'BB', 'BRB');
1020 INSERT INTO `geo_country_reference` VALUES (20, 'Belarus', 'BY', 'BLR');
1021 INSERT INTO `geo_country_reference` VALUES (21, 'Belgium', 'BE', 'BEL');
1022 INSERT INTO `geo_country_reference` VALUES (22, 'Belize', 'BZ', 'BLZ');
1023 INSERT INTO `geo_country_reference` VALUES (23, 'Benin', 'BJ', 'BEN');
1024 INSERT INTO `geo_country_reference` VALUES (24, 'Bermuda', 'BM', 'BMU');
1025 INSERT INTO `geo_country_reference` VALUES (25, 'Bhutan', 'BT', 'BTN');
1026 INSERT INTO `geo_country_reference` VALUES (26, 'Bolivia', 'BO', 'BOL');
1027 INSERT INTO `geo_country_reference` VALUES (27, 'Bosnia and Herzegowina', 'BA', 'BIH');
1028 INSERT INTO `geo_country_reference` VALUES (28, 'Botswana', 'BW', 'BWA');
1029 INSERT INTO `geo_country_reference` VALUES (29, 'Bouvet Island', 'BV', 'BVT');
1030 INSERT INTO `geo_country_reference` VALUES (30, 'Brazil', 'BR', 'BRA');
1031 INSERT INTO `geo_country_reference` VALUES (31, 'British Indian Ocean Territory', 'IO', 'IOT');
1032 INSERT INTO `geo_country_reference` VALUES (32, 'Brunei Darussalam', 'BN', 'BRN');
1033 INSERT INTO `geo_country_reference` VALUES (33, 'Bulgaria', 'BG', 'BGR');
1034 INSERT INTO `geo_country_reference` VALUES (34, 'Burkina Faso', 'BF', 'BFA');
1035 INSERT INTO `geo_country_reference` VALUES (35, 'Burundi', 'BI', 'BDI');
1036 INSERT INTO `geo_country_reference` VALUES (36, 'Cambodia', 'KH', 'KHM');
1037 INSERT INTO `geo_country_reference` VALUES (37, 'Cameroon', 'CM', 'CMR');
1038 INSERT INTO `geo_country_reference` VALUES (38, 'Canada', 'CA', 'CAN');
1039 INSERT INTO `geo_country_reference` VALUES (39, 'Cape Verde', 'CV', 'CPV');
1040 INSERT INTO `geo_country_reference` VALUES (40, 'Cayman Islands', 'KY', 'CYM');
1041 INSERT INTO `geo_country_reference` VALUES (41, 'Central African Republic', 'CF', 'CAF');
1042 INSERT INTO `geo_country_reference` VALUES (42, 'Chad', 'TD', 'TCD');
1043 INSERT INTO `geo_country_reference` VALUES (43, 'Chile', 'CL', 'CHL');
1044 INSERT INTO `geo_country_reference` VALUES (44, 'China', 'CN', 'CHN');
1045 INSERT INTO `geo_country_reference` VALUES (45, 'Christmas Island', 'CX', 'CXR');
1046 INSERT INTO `geo_country_reference` VALUES (46, 'Cocos (Keeling) Islands', 'CC', 'CCK');
1047 INSERT INTO `geo_country_reference` VALUES (47, 'Colombia', 'CO', 'COL');
1048 INSERT INTO `geo_country_reference` VALUES (48, 'Comoros', 'KM', 'COM');
1049 INSERT INTO `geo_country_reference` VALUES (49, 'Congo', 'CG', 'COG');
1050 INSERT INTO `geo_country_reference` VALUES (50, 'Cook Islands', 'CK', 'COK');
1051 INSERT INTO `geo_country_reference` VALUES (51, 'Costa Rica', 'CR', 'CRI');
1052 INSERT INTO `geo_country_reference` VALUES (52, 'Cote D Ivoire', 'CI', 'CIV');
1053 INSERT INTO `geo_country_reference` VALUES (53, 'Croatia', 'HR', 'HRV');
1054 INSERT INTO `geo_country_reference` VALUES (54, 'Cuba', 'CU', 'CUB');
1055 INSERT INTO `geo_country_reference` VALUES (55, 'Cyprus', 'CY', 'CYP');
1056 INSERT INTO `geo_country_reference` VALUES (56, 'Czech Republic', 'CZ', 'CZE');
1057 INSERT INTO `geo_country_reference` VALUES (57, 'Denmark', 'DK', 'DNK');
1058 INSERT INTO `geo_country_reference` VALUES (58, 'Djibouti', 'DJ', 'DJI');
1059 INSERT INTO `geo_country_reference` VALUES (59, 'Dominica', 'DM', 'DMA');
1060 INSERT INTO `geo_country_reference` VALUES (60, 'Dominican Republic', 'DO', 'DOM');
1061 INSERT INTO `geo_country_reference` VALUES (61, 'East Timor', 'TP', 'TMP');
1062 INSERT INTO `geo_country_reference` VALUES (62, 'Ecuador', 'EC', 'ECU');
1063 INSERT INTO `geo_country_reference` VALUES (63, 'Egypt', 'EG', 'EGY');
1064 INSERT INTO `geo_country_reference` VALUES (64, 'El Salvador', 'SV', 'SLV');
1065 INSERT INTO `geo_country_reference` VALUES (65, 'Equatorial Guinea', 'GQ', 'GNQ');
1066 INSERT INTO `geo_country_reference` VALUES (66, 'Eritrea', 'ER', 'ERI');
1067 INSERT INTO `geo_country_reference` VALUES (67, 'Estonia', 'EE', 'EST');
1068 INSERT INTO `geo_country_reference` VALUES (68, 'Ethiopia', 'ET', 'ETH');
1069 INSERT INTO `geo_country_reference` VALUES (69, 'Falkland Islands (Malvinas)', 'FK', 'FLK');
1070 INSERT INTO `geo_country_reference` VALUES (70, 'Faroe Islands', 'FO', 'FRO');
1071 INSERT INTO `geo_country_reference` VALUES (71, 'Fiji', 'FJ', 'FJI');
1072 INSERT INTO `geo_country_reference` VALUES (72, 'Finland', 'FI', 'FIN');
1073 INSERT INTO `geo_country_reference` VALUES (73, 'France', 'FR', 'FRA');
1074 INSERT INTO `geo_country_reference` VALUES (74, 'France, MEtropolitan', 'FX', 'FXX');
1075 INSERT INTO `geo_country_reference` VALUES (75, 'French Guiana', 'GF', 'GUF');
1076 INSERT INTO `geo_country_reference` VALUES (76, 'French Polynesia', 'PF', 'PYF');
1077 INSERT INTO `geo_country_reference` VALUES (77, 'French Southern Territories', 'TF', 'ATF');
1078 INSERT INTO `geo_country_reference` VALUES (78, 'Gabon', 'GA', 'GAB');
1079 INSERT INTO `geo_country_reference` VALUES (79, 'Gambia', 'GM', 'GMB');
1080 INSERT INTO `geo_country_reference` VALUES (80, 'Georgia', 'GE', 'GEO');
1081 INSERT INTO `geo_country_reference` VALUES (81, 'Germany', 'DE', 'DEU');
1082 INSERT INTO `geo_country_reference` VALUES (82, 'Ghana', 'GH', 'GHA');
1083 INSERT INTO `geo_country_reference` VALUES (83, 'Gibraltar', 'GI', 'GIB');
1084 INSERT INTO `geo_country_reference` VALUES (84, 'Greece', 'GR', 'GRC');
1085 INSERT INTO `geo_country_reference` VALUES (85, 'Greenland', 'GL', 'GRL');
1086 INSERT INTO `geo_country_reference` VALUES (86, 'Grenada', 'GD', 'GRD');
1087 INSERT INTO `geo_country_reference` VALUES (87, 'Guadeloupe', 'GP', 'GLP');
1088 INSERT INTO `geo_country_reference` VALUES (88, 'Guam', 'GU', 'GUM');
1089 INSERT INTO `geo_country_reference` VALUES (89, 'Guatemala', 'GT', 'GTM');
1090 INSERT INTO `geo_country_reference` VALUES (90, 'Guinea', 'GN', 'GIN');
1091 INSERT INTO `geo_country_reference` VALUES (91, 'Guinea-bissau', 'GW', 'GNB');
1092 INSERT INTO `geo_country_reference` VALUES (92, 'Guyana', 'GY', 'GUY');
1093 INSERT INTO `geo_country_reference` VALUES (93, 'Haiti', 'HT', 'HTI');
1094 INSERT INTO `geo_country_reference` VALUES (94, 'Heard and Mc Donald Islands', 'HM', 'HMD');
1095 INSERT INTO `geo_country_reference` VALUES (95, 'Honduras', 'HN', 'HND');
1096 INSERT INTO `geo_country_reference` VALUES (96, 'Hong Kong', 'HK', 'HKG');
1097 INSERT INTO `geo_country_reference` VALUES (97, 'Hungary', 'HU', 'HUN');
1098 INSERT INTO `geo_country_reference` VALUES (98, 'Iceland', 'IS', 'ISL');
1099 INSERT INTO `geo_country_reference` VALUES (99, 'India', 'IN', 'IND');
1100 INSERT INTO `geo_country_reference` VALUES (100, 'Indonesia', 'ID', 'IDN');
1101 INSERT INTO `geo_country_reference` VALUES (101, 'Iran (Islamic Republic of)', 'IR', 'IRN');
1102 INSERT INTO `geo_country_reference` VALUES (102, 'Iraq', 'IQ', 'IRQ');
1103 INSERT INTO `geo_country_reference` VALUES (103, 'Ireland', 'IE', 'IRL');
1104 INSERT INTO `geo_country_reference` VALUES (104, 'Israel', 'IL', 'ISR');
1105 INSERT INTO `geo_country_reference` VALUES (105, 'Italy', 'IT', 'ITA');
1106 INSERT INTO `geo_country_reference` VALUES (106, 'Jamaica', 'JM', 'JAM');
1107 INSERT INTO `geo_country_reference` VALUES (107, 'Japan', 'JP', 'JPN');
1108 INSERT INTO `geo_country_reference` VALUES (108, 'Jordan', 'JO', 'JOR');
1109 INSERT INTO `geo_country_reference` VALUES (109, 'Kazakhstan', 'KZ', 'KAZ');
1110 INSERT INTO `geo_country_reference` VALUES (110, 'Kenya', 'KE', 'KEN');
1111 INSERT INTO `geo_country_reference` VALUES (111, 'Kiribati', 'KI', 'KIR');
1112 INSERT INTO `geo_country_reference` VALUES (112, 'Korea, Democratic Peoples Republic of', 'KP', 'PRK');
1113 INSERT INTO `geo_country_reference` VALUES (113, 'Korea, Republic of', 'KR', 'KOR');
1114 INSERT INTO `geo_country_reference` VALUES (114, 'Kuwait', 'KW', 'KWT');
1115 INSERT INTO `geo_country_reference` VALUES (115, 'Kyrgyzstan', 'KG', 'KGZ');
1116 INSERT INTO `geo_country_reference` VALUES (116, 'Lao Peoples Democratic Republic', 'LA', 'LAO');
1117 INSERT INTO `geo_country_reference` VALUES (117, 'Latvia', 'LV', 'LVA');
1118 INSERT INTO `geo_country_reference` VALUES (118, 'Lebanon', 'LB', 'LBN');
1119 INSERT INTO `geo_country_reference` VALUES (119, 'Lesotho', 'LS', 'LSO');
1120 INSERT INTO `geo_country_reference` VALUES (120, 'Liberia', 'LR', 'LBR');
1121 INSERT INTO `geo_country_reference` VALUES (121, 'Libyan Arab Jamahiriya', 'LY', 'LBY');
1122 INSERT INTO `geo_country_reference` VALUES (122, 'Liechtenstein', 'LI', 'LIE');
1123 INSERT INTO `geo_country_reference` VALUES (123, 'Lithuania', 'LT', 'LTU');
1124 INSERT INTO `geo_country_reference` VALUES (124, 'Luxembourg', 'LU', 'LUX');
1125 INSERT INTO `geo_country_reference` VALUES (125, 'Macau', 'MO', 'MAC');
1126 INSERT INTO `geo_country_reference` VALUES (126, 'Macedonia, The Former Yugoslav Republic of', 'MK', 'MKD');
1127 INSERT INTO `geo_country_reference` VALUES (127, 'Madagascar', 'MG', 'MDG');
1128 INSERT INTO `geo_country_reference` VALUES (128, 'Malawi', 'MW', 'MWI');
1129 INSERT INTO `geo_country_reference` VALUES (129, 'Malaysia', 'MY', 'MYS');
1130 INSERT INTO `geo_country_reference` VALUES (130, 'Maldives', 'MV', 'MDV');
1131 INSERT INTO `geo_country_reference` VALUES (131, 'Mali', 'ML', 'MLI');
1132 INSERT INTO `geo_country_reference` VALUES (132, 'Malta', 'MT', 'MLT');
1133 INSERT INTO `geo_country_reference` VALUES (133, 'Marshall Islands', 'MH', 'MHL');
1134 INSERT INTO `geo_country_reference` VALUES (134, 'Martinique', 'MQ', 'MTQ');
1135 INSERT INTO `geo_country_reference` VALUES (135, 'Mauritania', 'MR', 'MRT');
1136 INSERT INTO `geo_country_reference` VALUES (136, 'Mauritius', 'MU', 'MUS');
1137 INSERT INTO `geo_country_reference` VALUES (137, 'Mayotte', 'YT', 'MYT');
1138 INSERT INTO `geo_country_reference` VALUES (138, 'Mexico', 'MX', 'MEX');
1139 INSERT INTO `geo_country_reference` VALUES (139, 'Micronesia, Federated States of', 'FM', 'FSM');
1140 INSERT INTO `geo_country_reference` VALUES (140, 'Moldova, Republic of', 'MD', 'MDA');
1141 INSERT INTO `geo_country_reference` VALUES (141, 'Monaco', 'MC', 'MCO');
1142 INSERT INTO `geo_country_reference` VALUES (142, 'Mongolia', 'MN', 'MNG');
1143 INSERT INTO `geo_country_reference` VALUES (143, 'Montserrat', 'MS', 'MSR');
1144 INSERT INTO `geo_country_reference` VALUES (144, 'Morocco', 'MA', 'MAR');
1145 INSERT INTO `geo_country_reference` VALUES (145, 'Mozambique', 'MZ', 'MOZ');
1146 INSERT INTO `geo_country_reference` VALUES (146, 'Myanmar', 'MM', 'MMR');
1147 INSERT INTO `geo_country_reference` VALUES (147, 'Namibia', 'NA', 'NAM');
1148 INSERT INTO `geo_country_reference` VALUES (148, 'Nauru', 'NR', 'NRU');
1149 INSERT INTO `geo_country_reference` VALUES (149, 'Nepal', 'NP', 'NPL');
1150 INSERT INTO `geo_country_reference` VALUES (150, 'Netherlands', 'NL', 'NLD');
1151 INSERT INTO `geo_country_reference` VALUES (151, 'Netherlands Antilles', 'AN', 'ANT');
1152 INSERT INTO `geo_country_reference` VALUES (152, 'New Caledonia', 'NC', 'NCL');
1153 INSERT INTO `geo_country_reference` VALUES (153, 'New Zealand', 'NZ', 'NZL');
1154 INSERT INTO `geo_country_reference` VALUES (154, 'Nicaragua', 'NI', 'NIC');
1155 INSERT INTO `geo_country_reference` VALUES (155, 'Niger', 'NE', 'NER');
1156 INSERT INTO `geo_country_reference` VALUES (156, 'Nigeria', 'NG', 'NGA');
1157 INSERT INTO `geo_country_reference` VALUES (157, 'Niue', 'NU', 'NIU');
1158 INSERT INTO `geo_country_reference` VALUES (158, 'Norfolk Island', 'NF', 'NFK');
1159 INSERT INTO `geo_country_reference` VALUES (159, 'Northern Mariana Islands', 'MP', 'MNP');
1160 INSERT INTO `geo_country_reference` VALUES (160, 'Norway', 'NO', 'NOR');
1161 INSERT INTO `geo_country_reference` VALUES (161, 'Oman', 'OM', 'OMN');
1162 INSERT INTO `geo_country_reference` VALUES (162, 'Pakistan', 'PK', 'PAK');
1163 INSERT INTO `geo_country_reference` VALUES (163, 'Palau', 'PW', 'PLW');
1164 INSERT INTO `geo_country_reference` VALUES (164, 'Panama', 'PA', 'PAN');
1165 INSERT INTO `geo_country_reference` VALUES (165, 'Papua New Guinea', 'PG', 'PNG');
1166 INSERT INTO `geo_country_reference` VALUES (166, 'Paraguay', 'PY', 'PRY');
1167 INSERT INTO `geo_country_reference` VALUES (167, 'Peru', 'PE', 'PER');
1168 INSERT INTO `geo_country_reference` VALUES (168, 'Philippines', 'PH', 'PHL');
1169 INSERT INTO `geo_country_reference` VALUES (169, 'Pitcairn', 'PN', 'PCN');
1170 INSERT INTO `geo_country_reference` VALUES (170, 'Poland', 'PL', 'POL');
1171 INSERT INTO `geo_country_reference` VALUES (171, 'Portugal', 'PT', 'PRT');
1172 INSERT INTO `geo_country_reference` VALUES (172, 'Puerto Rico', 'PR', 'PRI');
1173 INSERT INTO `geo_country_reference` VALUES (173, 'Qatar', 'QA', 'QAT');
1174 INSERT INTO `geo_country_reference` VALUES (174, 'Reunion', 'RE', 'REU');
1175 INSERT INTO `geo_country_reference` VALUES (175, 'Romania', 'RO', 'ROM');
1176 INSERT INTO `geo_country_reference` VALUES (176, 'Russian Federation', 'RU', 'RUS');
1177 INSERT INTO `geo_country_reference` VALUES (177, 'Rwanda', 'RW', 'RWA');
1178 INSERT INTO `geo_country_reference` VALUES (178, 'Saint Kitts and Nevis', 'KN', 'KNA');
1179 INSERT INTO `geo_country_reference` VALUES (179, 'Saint Lucia', 'LC', 'LCA');
1180 INSERT INTO `geo_country_reference` VALUES (180, 'Saint Vincent and the Grenadines', 'VC', 'VCT');
1181 INSERT INTO `geo_country_reference` VALUES (181, 'Samoa', 'WS', 'WSM');
1182 INSERT INTO `geo_country_reference` VALUES (182, 'San Marino', 'SM', 'SMR');
1183 INSERT INTO `geo_country_reference` VALUES (183, 'Sao Tome and Principe', 'ST', 'STP');
1184 INSERT INTO `geo_country_reference` VALUES (184, 'Saudi Arabia', 'SA', 'SAU');
1185 INSERT INTO `geo_country_reference` VALUES (185, 'Senegal', 'SN', 'SEN');
1186 INSERT INTO `geo_country_reference` VALUES (186, 'Seychelles', 'SC', 'SYC');
1187 INSERT INTO `geo_country_reference` VALUES (187, 'Sierra Leone', 'SL', 'SLE');
1188 INSERT INTO `geo_country_reference` VALUES (188, 'Singapore', 'SG', 'SGP');
1189 INSERT INTO `geo_country_reference` VALUES (189, 'Slovakia (Slovak Republic)', 'SK', 'SVK');
1190 INSERT INTO `geo_country_reference` VALUES (190, 'Slovenia', 'SI', 'SVN');
1191 INSERT INTO `geo_country_reference` VALUES (191, 'Solomon Islands', 'SB', 'SLB');
1192 INSERT INTO `geo_country_reference` VALUES (192, 'Somalia', 'SO', 'SOM');
1193 INSERT INTO `geo_country_reference` VALUES (193, 'south Africa', 'ZA', 'ZAF');
1194 INSERT INTO `geo_country_reference` VALUES (194, 'South Georgia and the South Sandwich Islands', 'GS', 'SGS');
1195 INSERT INTO `geo_country_reference` VALUES (195, 'Spain', 'ES', 'ESP');
1196 INSERT INTO `geo_country_reference` VALUES (196, 'Sri Lanka', 'LK', 'LKA');
1197 INSERT INTO `geo_country_reference` VALUES (197, 'St. Helena', 'SH', 'SHN');
1198 INSERT INTO `geo_country_reference` VALUES (198, 'St. Pierre and Miquelon', 'PM', 'SPM');
1199 INSERT INTO `geo_country_reference` VALUES (199, 'Sudan', 'SD', 'SDN');
1200 INSERT INTO `geo_country_reference` VALUES (200, 'Suriname', 'SR', 'SUR');
1201 INSERT INTO `geo_country_reference` VALUES (201, 'Svalbard and Jan Mayen Islands', 'SJ', 'SJM');
1202 INSERT INTO `geo_country_reference` VALUES (202, 'Swaziland', 'SZ', 'SWZ');
1203 INSERT INTO `geo_country_reference` VALUES (203, 'Sweden', 'SE', 'SWE');
1204 INSERT INTO `geo_country_reference` VALUES (204, 'Switzerland', 'CH', 'CHE');
1205 INSERT INTO `geo_country_reference` VALUES (205, 'Syrian Arab Republic', 'SY', 'SYR');
1206 INSERT INTO `geo_country_reference` VALUES (206, 'Taiwan, Province of China', 'TW', 'TWN');
1207 INSERT INTO `geo_country_reference` VALUES (207, 'Tajikistan', 'TJ', 'TJK');
1208 INSERT INTO `geo_country_reference` VALUES (208, 'Tanzania, United Republic of', 'TZ', 'TZA');
1209 INSERT INTO `geo_country_reference` VALUES (209, 'Thailand', 'TH', 'THA');
1210 INSERT INTO `geo_country_reference` VALUES (210, 'Togo', 'TG', 'TGO');
1211 INSERT INTO `geo_country_reference` VALUES (211, 'Tokelau', 'TK', 'TKL');
1212 INSERT INTO `geo_country_reference` VALUES (212, 'Tonga', 'TO', 'TON');
1213 INSERT INTO `geo_country_reference` VALUES (213, 'Trinidad and Tobago', 'TT', 'TTO');
1214 INSERT INTO `geo_country_reference` VALUES (214, 'Tunisia', 'TN', 'TUN');
1215 INSERT INTO `geo_country_reference` VALUES (215, 'Turkey', 'TR', 'TUR');
1216 INSERT INTO `geo_country_reference` VALUES (216, 'Turkmenistan', 'TM', 'TKM');
1217 INSERT INTO `geo_country_reference` VALUES (217, 'Turks and Caicos Islands', 'TC', 'TCA');
1218 INSERT INTO `geo_country_reference` VALUES (218, 'Tuvalu', 'TV', 'TUV');
1219 INSERT INTO `geo_country_reference` VALUES (219, 'Uganda', 'UG', 'UGA');
1220 INSERT INTO `geo_country_reference` VALUES (220, 'Ukraine', 'UA', 'UKR');
1221 INSERT INTO `geo_country_reference` VALUES (221, 'United Arab Emirates', 'AE', 'ARE');
1222 INSERT INTO `geo_country_reference` VALUES (222, 'United Kingdom', 'GB', 'GBR');
1223 INSERT INTO `geo_country_reference` VALUES (223, 'United States', 'US', 'USA');
1224 INSERT INTO `geo_country_reference` VALUES (224, 'United States Minor Outlying Islands', 'UM', 'UMI');
1225 INSERT INTO `geo_country_reference` VALUES (225, 'Uruguay', 'UY', 'URY');
1226 INSERT INTO `geo_country_reference` VALUES (226, 'Uzbekistan', 'UZ', 'UZB');
1227 INSERT INTO `geo_country_reference` VALUES (227, 'Vanuatu', 'VU', 'VUT');
1228 INSERT INTO `geo_country_reference` VALUES (228, 'Vatican City State (Holy See)', 'VA', 'VAT');
1229 INSERT INTO `geo_country_reference` VALUES (229, 'Venezuela', 'VE', 'VEN');
1230 INSERT INTO `geo_country_reference` VALUES (230, 'Viet Nam', 'VN', 'VNM');
1231 INSERT INTO `geo_country_reference` VALUES (231, 'Virgin Islands (British)', 'VG', 'VGB');
1232 INSERT INTO `geo_country_reference` VALUES (232, 'Virgin Islands (U.S.)', 'VI', 'VIR');
1233 INSERT INTO `geo_country_reference` VALUES (233, 'Wallis and Futuna Islands', 'WF', 'WLF');
1234 INSERT INTO `geo_country_reference` VALUES (234, 'Western Sahara', 'EH', 'ESH');
1235 INSERT INTO `geo_country_reference` VALUES (235, 'Yemen', 'YE', 'YEM');
1236 INSERT INTO `geo_country_reference` VALUES (236, 'Yugoslavia', 'YU', 'YUG');
1237 INSERT INTO `geo_country_reference` VALUES (237, 'Zaire', 'ZR', 'ZAR');
1238 INSERT INTO `geo_country_reference` VALUES (238, 'Zambia', 'ZM', 'ZMB');
1239 INSERT INTO `geo_country_reference` VALUES (239, 'Zimbabwe', 'ZW', 'ZWE');
1241 -- --------------------------------------------------------
1243 -- 
1244 -- Table structure for table `geo_zone_reference`
1245 -- 
1247 DROP TABLE IF EXISTS `geo_zone_reference`;
1248 CREATE TABLE `geo_zone_reference` (
1249   `zone_id` int(5) NOT NULL auto_increment,
1250   `zone_country_id` int(5) NOT NULL default '0',
1251   `zone_code` varchar(5) character set utf8 collate utf8_unicode_ci default NULL,
1252   `zone_name` varchar(32) character set utf8 collate utf8_unicode_ci default NULL,
1253   PRIMARY KEY  (`zone_id`)
1254 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=83 ;
1256 -- 
1257 -- Dumping data for table `geo_zone_reference`
1258 -- 
1260 INSERT INTO `geo_zone_reference` VALUES (1, 223, 'AL', 'Alabama');
1261 INSERT INTO `geo_zone_reference` VALUES (2, 223, 'AK', 'Alaska');
1262 INSERT INTO `geo_zone_reference` VALUES (3, 223, 'AS', 'American Samoa');
1263 INSERT INTO `geo_zone_reference` VALUES (4, 223, 'AZ', 'Arizona');
1264 INSERT INTO `geo_zone_reference` VALUES (5, 223, 'AR', 'Arkansas');
1265 INSERT INTO `geo_zone_reference` VALUES (6, 223, 'AF', 'Armed Forces Africa');
1266 INSERT INTO `geo_zone_reference` VALUES (7, 223, 'AA', 'Armed Forces Americas');
1267 INSERT INTO `geo_zone_reference` VALUES (8, 223, 'AC', 'Armed Forces Canada');
1268 INSERT INTO `geo_zone_reference` VALUES (9, 223, 'AE', 'Armed Forces Europe');
1269 INSERT INTO `geo_zone_reference` VALUES (10, 223, 'AM', 'Armed Forces Middle East');
1270 INSERT INTO `geo_zone_reference` VALUES (11, 223, 'AP', 'Armed Forces Pacific');
1271 INSERT INTO `geo_zone_reference` VALUES (12, 223, 'CA', 'California');
1272 INSERT INTO `geo_zone_reference` VALUES (13, 223, 'CO', 'Colorado');
1273 INSERT INTO `geo_zone_reference` VALUES (14, 223, 'CT', 'Connecticut');
1274 INSERT INTO `geo_zone_reference` VALUES (15, 223, 'DE', 'Delaware');
1275 INSERT INTO `geo_zone_reference` VALUES (16, 223, 'DC', 'District of Columbia');
1276 INSERT INTO `geo_zone_reference` VALUES (17, 223, 'FM', 'Federated States Of Micronesia');
1277 INSERT INTO `geo_zone_reference` VALUES (18, 223, 'FL', 'Florida');
1278 INSERT INTO `geo_zone_reference` VALUES (19, 223, 'GA', 'Georgia');
1279 INSERT INTO `geo_zone_reference` VALUES (20, 223, 'GU', 'Guam');
1280 INSERT INTO `geo_zone_reference` VALUES (21, 223, 'HI', 'Hawaii');
1281 INSERT INTO `geo_zone_reference` VALUES (22, 223, 'ID', 'Idaho');
1282 INSERT INTO `geo_zone_reference` VALUES (23, 223, 'IL', 'Illinois');
1283 INSERT INTO `geo_zone_reference` VALUES (24, 223, 'IN', 'Indiana');
1284 INSERT INTO `geo_zone_reference` VALUES (25, 223, 'IA', 'Iowa');
1285 INSERT INTO `geo_zone_reference` VALUES (26, 223, 'KS', 'Kansas');
1286 INSERT INTO `geo_zone_reference` VALUES (27, 223, 'KY', 'Kentucky');
1287 INSERT INTO `geo_zone_reference` VALUES (28, 223, 'LA', 'Louisiana');
1288 INSERT INTO `geo_zone_reference` VALUES (29, 223, 'ME', 'Maine');
1289 INSERT INTO `geo_zone_reference` VALUES (30, 223, 'MH', 'Marshall Islands');
1290 INSERT INTO `geo_zone_reference` VALUES (31, 223, 'MD', 'Maryland');
1291 INSERT INTO `geo_zone_reference` VALUES (32, 223, 'MA', 'Massachusetts');
1292 INSERT INTO `geo_zone_reference` VALUES (33, 223, 'MI', 'Michigan');
1293 INSERT INTO `geo_zone_reference` VALUES (34, 223, 'MN', 'Minnesota');
1294 INSERT INTO `geo_zone_reference` VALUES (35, 223, 'MS', 'Mississippi');
1295 INSERT INTO `geo_zone_reference` VALUES (36, 223, 'MO', 'Missouri');
1296 INSERT INTO `geo_zone_reference` VALUES (37, 223, 'MT', 'Montana');
1297 INSERT INTO `geo_zone_reference` VALUES (38, 223, 'NE', 'Nebraska');
1298 INSERT INTO `geo_zone_reference` VALUES (39, 223, 'NV', 'Nevada');
1299 INSERT INTO `geo_zone_reference` VALUES (40, 223, 'NH', 'New Hampshire');
1300 INSERT INTO `geo_zone_reference` VALUES (41, 223, 'NJ', 'New Jersey');
1301 INSERT INTO `geo_zone_reference` VALUES (42, 223, 'NM', 'New Mexico');
1302 INSERT INTO `geo_zone_reference` VALUES (43, 223, 'NY', 'New York');
1303 INSERT INTO `geo_zone_reference` VALUES (44, 223, 'NC', 'North Carolina');
1304 INSERT INTO `geo_zone_reference` VALUES (45, 223, 'ND', 'North Dakota');
1305 INSERT INTO `geo_zone_reference` VALUES (46, 223, 'MP', 'Northern Mariana Islands');
1306 INSERT INTO `geo_zone_reference` VALUES (47, 223, 'OH', 'Ohio');
1307 INSERT INTO `geo_zone_reference` VALUES (48, 223, 'OK', 'Oklahoma');
1308 INSERT INTO `geo_zone_reference` VALUES (49, 223, 'OR', 'Oregon');
1309 INSERT INTO `geo_zone_reference` VALUES (50, 223, 'PW', 'Palau');
1310 INSERT INTO `geo_zone_reference` VALUES (51, 223, 'PA', 'Pennsylvania');
1311 INSERT INTO `geo_zone_reference` VALUES (52, 223, 'PR', 'Puerto Rico');
1312 INSERT INTO `geo_zone_reference` VALUES (53, 223, 'RI', 'Rhode Island');
1313 INSERT INTO `geo_zone_reference` VALUES (54, 223, 'SC', 'South Carolina');
1314 INSERT INTO `geo_zone_reference` VALUES (55, 223, 'SD', 'South Dakota');
1315 INSERT INTO `geo_zone_reference` VALUES (56, 223, 'TN', 'Tenessee');
1316 INSERT INTO `geo_zone_reference` VALUES (57, 223, 'TX', 'Texas');
1317 INSERT INTO `geo_zone_reference` VALUES (58, 223, 'UT', 'Utah');
1318 INSERT INTO `geo_zone_reference` VALUES (59, 223, 'VT', 'Vermont');
1319 INSERT INTO `geo_zone_reference` VALUES (60, 223, 'VI', 'Virgin Islands');
1320 INSERT INTO `geo_zone_reference` VALUES (61, 223, 'VA', 'Virginia');
1321 INSERT INTO `geo_zone_reference` VALUES (62, 223, 'WA', 'Washington');
1322 INSERT INTO `geo_zone_reference` VALUES (63, 223, 'WV', 'West Virginia');
1323 INSERT INTO `geo_zone_reference` VALUES (64, 223, 'WI', 'Wisconsin');
1324 INSERT INTO `geo_zone_reference` VALUES (65, 223, 'WY', 'Wyoming');
1325 INSERT INTO `geo_zone_reference` VALUES (66, 38, 'AB', 'Alberta');
1326 INSERT INTO `geo_zone_reference` VALUES (67, 38, 'BC', 'British Columbia');
1327 INSERT INTO `geo_zone_reference` VALUES (68, 38, 'MB', 'Manitoba');
1328 INSERT INTO `geo_zone_reference` VALUES (69, 38, 'NF', 'Newfoundland');
1329 INSERT INTO `geo_zone_reference` VALUES (70, 38, 'NB', 'New Brunswick');
1330 INSERT INTO `geo_zone_reference` VALUES (71, 38, 'NS', 'Nova Scotia');
1331 INSERT INTO `geo_zone_reference` VALUES (72, 38, 'NT', 'Northwest Territories');
1332 INSERT INTO `geo_zone_reference` VALUES (73, 38, 'NU', 'Nunavut');
1333 INSERT INTO `geo_zone_reference` VALUES (74, 38, 'ON', 'Ontario');
1334 INSERT INTO `geo_zone_reference` VALUES (75, 38, 'PE', 'Prince Edward Island');
1335 INSERT INTO `geo_zone_reference` VALUES (76, 38, 'QC', 'Quebec');
1336 INSERT INTO `geo_zone_reference` VALUES (77, 38, 'SK', 'Saskatchewan');
1337 INSERT INTO `geo_zone_reference` VALUES (78, 38, 'YT', 'Yukon Territory');
1338 INSERT INTO `geo_zone_reference` VALUES (79, 61, 'QLD', 'Queensland');
1339 INSERT INTO `geo_zone_reference` VALUES (80, 61, 'SA', 'South Australia');
1340 INSERT INTO `geo_zone_reference` VALUES (81, 61, 'ACT', 'Australian Capital Territory');
1341 INSERT INTO `geo_zone_reference` VALUES (82, 61, 'VIC', 'Victoria');
1343 -- --------------------------------------------------------
1345 -- 
1346 -- Table structure for table `groups`
1347 -- 
1349 DROP TABLE IF EXISTS `groups`;
1350 CREATE TABLE `groups` (
1351   `id` bigint(20) NOT NULL auto_increment,
1352   `name` longtext character set utf8 collate utf8_unicode_ci,
1353   `user` longtext character set utf8 collate utf8_unicode_ci,
1354   PRIMARY KEY  (`id`)
1355 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
1357 -- 
1358 -- Dumping data for table `groups`
1359 -- 
1362 -- --------------------------------------------------------
1364 -- 
1365 -- Table structure for table `history_data`
1366 -- 
1368 DROP TABLE IF EXISTS `history_data`;
1369 CREATE TABLE `history_data` (
1370   `id` bigint(20) NOT NULL auto_increment,
1371   `coffee` longtext character set utf8 collate utf8_unicode_ci,
1372   `tobacco` longtext character set utf8 collate utf8_unicode_ci,
1373   `alcohol` longtext character set utf8 collate utf8_unicode_ci,
1374   `sleep_patterns` longtext character set utf8 collate utf8_unicode_ci,
1375   `exercise_patterns` longtext character set utf8 collate utf8_unicode_ci,
1376   `seatbelt_use` longtext character set utf8 collate utf8_unicode_ci,
1377   `counseling` longtext character set utf8 collate utf8_unicode_ci,
1378   `hazardous_activities` longtext character set utf8 collate utf8_unicode_ci,
1379   `last_breast_exam` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1380   `last_mammogram` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1381   `last_gynocological_exam` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1382   `last_rectal_exam` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1383   `last_prostate_exam` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1384   `last_physical_exam` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1385   `last_sigmoidoscopy_colonoscopy` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1386   `last_ecg` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1387   `last_cardiac_echo` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1388   `last_retinal` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1389   `last_fluvax` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1390   `last_pneuvax` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1391   `last_ldl` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1392   `last_hemoglobin` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1393   `last_psa` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1394   `last_exam_results` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1395   `history_mother` longtext character set utf8 collate utf8_unicode_ci,
1396   `history_father` longtext character set utf8 collate utf8_unicode_ci,
1397   `history_siblings` longtext character set utf8 collate utf8_unicode_ci,
1398   `history_offspring` longtext character set utf8 collate utf8_unicode_ci,
1399   `history_spouse` longtext character set utf8 collate utf8_unicode_ci,
1400   `relatives_cancer` longtext character set utf8 collate utf8_unicode_ci,
1401   `relatives_tuberculosis` longtext character set utf8 collate utf8_unicode_ci,
1402   `relatives_diabetes` longtext character set utf8 collate utf8_unicode_ci,
1403   `relatives_high_blood_pressure` longtext character set utf8 collate utf8_unicode_ci,
1404   `relatives_heart_problems` longtext character set utf8 collate utf8_unicode_ci,
1405   `relatives_stroke` longtext character set utf8 collate utf8_unicode_ci,
1406   `relatives_epilepsy` longtext character set utf8 collate utf8_unicode_ci,
1407   `relatives_mental_illness` longtext character set utf8 collate utf8_unicode_ci,
1408   `relatives_suicide` longtext character set utf8 collate utf8_unicode_ci,
1409   `cataract_surgery` datetime default NULL,
1410   `tonsillectomy` datetime default NULL,
1411   `cholecystestomy` datetime default NULL,
1412   `heart_surgery` datetime default NULL,
1413   `hysterectomy` datetime default NULL,
1414   `hernia_repair` datetime default NULL,
1415   `hip_replacement` datetime default NULL,
1416   `knee_replacement` datetime default NULL,
1417   `appendectomy` datetime default NULL,
1418   `date` datetime default NULL,
1419   `pid` bigint(20) NOT NULL default '0',
1420   `name_1` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1421   `value_1` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1422   `name_2` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1423   `value_2` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1424   `additional_history` text character set utf8 collate utf8_unicode_ci,
1425   `exams`      text         character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1426   `usertext11` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1427   `usertext12` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1428   `usertext13` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1429   `usertext14` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1430   `usertext15` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1431   `usertext16` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1432   `usertext17` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1433   `usertext18` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1434   `usertext19` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1435   `usertext20` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1436   `usertext21` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1437   `usertext22` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1438   `usertext23` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1439   `usertext24` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1440   `usertext25` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1441   `usertext26` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1442   `usertext27` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1443   `usertext28` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1444   `usertext29` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1445   `usertext30` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1446   `userdate11` date DEFAULT NULL,
1447   `userdate12` date DEFAULT NULL,
1448   `userdate13` date DEFAULT NULL,
1449   `userdate14` date DEFAULT NULL,
1450   `userdate15` date DEFAULT NULL,
1451   `userarea11` text character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1452   `userarea12` text character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
1453   PRIMARY KEY  (`id`),
1454   KEY `pid` (`pid`)
1455 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
1457 -- 
1458 -- Dumping data for table `history_data`
1459 -- 
1462 -- --------------------------------------------------------
1464 -- 
1465 -- Table structure for table `immunization`
1466 -- 
1468 DROP TABLE IF EXISTS `immunization`;
1469 CREATE TABLE `immunization` (
1470   `id` int(11) NOT NULL auto_increment,
1471   `name` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1472   PRIMARY KEY  (`id`),
1473   KEY `immunization_name` (`name`)
1474 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=36 ;
1476 -- 
1477 -- Dumping data for table `immunization`
1478 -- 
1480 INSERT INTO `immunization` VALUES (1, 'DTaP 1');
1481 INSERT INTO `immunization` VALUES (2, 'DTaP 2');
1482 INSERT INTO `immunization` VALUES (3, 'DTaP 3');
1483 INSERT INTO `immunization` VALUES (4, 'DTaP 4');
1484 INSERT INTO `immunization` VALUES (5, 'DTaP 5');
1485 INSERT INTO `immunization` VALUES (6, 'DT 1');
1486 INSERT INTO `immunization` VALUES (7, 'DT 2');
1487 INSERT INTO `immunization` VALUES (8, 'DT 3');
1488 INSERT INTO `immunization` VALUES (9, 'DT 4');
1489 INSERT INTO `immunization` VALUES (10, 'DT 5');
1490 INSERT INTO `immunization` VALUES (11, 'IPV 1');
1491 INSERT INTO `immunization` VALUES (12, 'IPV 2');
1492 INSERT INTO `immunization` VALUES (13, 'IPV 3');
1493 INSERT INTO `immunization` VALUES (14, 'IPV 4');
1494 INSERT INTO `immunization` VALUES (15, 'Hib 1');
1495 INSERT INTO `immunization` VALUES (16, 'Hib 2');
1496 INSERT INTO `immunization` VALUES (17, 'Hib 3');
1497 INSERT INTO `immunization` VALUES (18, 'Hib 4');
1498 INSERT INTO `immunization` VALUES (19, 'Pneumococcal Conjugate 1');
1499 INSERT INTO `immunization` VALUES (20, 'Pneumococcal Conjugate 2');
1500 INSERT INTO `immunization` VALUES (21, 'Pneumococcal Conjugate 3');
1501 INSERT INTO `immunization` VALUES (22, 'Pneumococcal Conjugate 4');
1502 INSERT INTO `immunization` VALUES (23, 'MMR 1');
1503 INSERT INTO `immunization` VALUES (24, 'MMR 2');
1504 INSERT INTO `immunization` VALUES (25, 'Varicella 1');
1505 INSERT INTO `immunization` VALUES (26, 'Varicella 2');
1506 INSERT INTO `immunization` VALUES (27, 'Hepatitis B 1');
1507 INSERT INTO `immunization` VALUES (28, 'Hepatitis B 2');
1508 INSERT INTO `immunization` VALUES (29, 'Hepatitis B 3');
1509 INSERT INTO `immunization` VALUES (30, 'Influenza 1');
1510 INSERT INTO `immunization` VALUES (31, 'Influenza 2');
1511 INSERT INTO `immunization` VALUES (32, 'Td');
1512 INSERT INTO `immunization` VALUES (33, 'Hepatitis A 1');
1513 INSERT INTO `immunization` VALUES (34, 'Hepatitis A 2');
1514 INSERT INTO `immunization` VALUES (35, 'Other');
1516 -- --------------------------------------------------------
1518 -- 
1519 -- Table structure for table `immunizations`
1520 -- 
1522 DROP TABLE IF EXISTS `immunizations`;
1523 CREATE TABLE `immunizations` (
1524   `id` bigint(20) NOT NULL auto_increment,
1525   `patient_id` int(11) default NULL,
1526   `administered_date` date default NULL,
1527   `immunization_id` int(11) default NULL,
1528   `manufacturer` varchar(100) character set utf8 collate utf8_unicode_ci default NULL,
1529   `lot_number` varchar(50) character set utf8 collate utf8_unicode_ci default NULL,
1530   `administered_by_id` bigint(20) default NULL,
1531   `education_date` date default NULL,
1532   `note` text character set utf8 collate utf8_unicode_ci,
1533   `create_date` datetime default NULL,
1534   `update_date` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
1535   `created_by` bigint(20) default NULL,
1536   `updated_by` bigint(20) default NULL,
1537   PRIMARY KEY  (`id`)
1538 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
1540 -- 
1541 -- Dumping data for table `immunizations`
1542 -- 
1545 -- --------------------------------------------------------
1547 -- 
1548 -- Table structure for table `insurance_companies`
1549 -- 
1551 DROP TABLE IF EXISTS `insurance_companies`;
1552 CREATE TABLE `insurance_companies` (
1553   `id` int(11) NOT NULL default '0',
1554   `name` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1555   `attn` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1556   `cms_id` varchar(15) character set utf8 collate utf8_unicode_ci default NULL,
1557   `freeb_type` tinyint(2) default NULL,
1558   `x12_receiver_id` varchar(25) character set utf8 collate utf8_unicode_ci default NULL,
1559   `x12_default_partner_id` int(11) default NULL,
1560   PRIMARY KEY  (`id`)
1561 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1563 -- 
1564 -- Dumping data for table `insurance_companies`
1565 -- 
1568 -- --------------------------------------------------------
1570 -- 
1571 -- Table structure for table `insurance_data`
1572 -- 
1574 DROP TABLE IF EXISTS `insurance_data`;
1575 CREATE TABLE `insurance_data` (
1576   `id` bigint(20) NOT NULL auto_increment,
1577   `type` enum('primary','secondary','tertiary') character set latin1 default NULL,
1578   `provider` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1579   `plan_name` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1580   `policy_number` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1581   `group_number` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1582   `subscriber_lname` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1583   `subscriber_mname` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1584   `subscriber_fname` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1585   `subscriber_relationship` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1586   `subscriber_ss` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1587   `subscriber_DOB` date default NULL,
1588   `subscriber_street` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1589   `subscriber_postal_code` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1590   `subscriber_city` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1591   `subscriber_state` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1592   `subscriber_country` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1593   `subscriber_phone` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1594   `subscriber_employer` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1595   `subscriber_employer_street` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1596   `subscriber_employer_postal_code` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1597   `subscriber_employer_state` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1598   `subscriber_employer_country` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1599   `subscriber_employer_city` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1600   `copay` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1601   `date` date NOT NULL default '0000-00-00',
1602   `pid` bigint(20) NOT NULL default '0',
1603   `subscriber_sex` varchar(25) character set utf8 collate utf8_unicode_ci default NULL,
1604   PRIMARY KEY  (`id`),
1605   UNIQUE KEY `pid_type_date` (`pid`,`type`,`date`)
1606 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
1608 -- 
1609 -- Dumping data for table `insurance_data`
1610 -- 
1613 -- --------------------------------------------------------
1615 -- 
1616 -- Table structure for table `insurance_numbers`
1617 -- 
1619 DROP TABLE IF EXISTS `insurance_numbers`;
1620 CREATE TABLE `insurance_numbers` (
1621   `id` int(11) NOT NULL default '0',
1622   `provider_id` int(11) NOT NULL default '0',
1623   `insurance_company_id` int(11) default NULL,
1624   `provider_number` varchar(20) character set utf8 collate utf8_unicode_ci default NULL,
1625   `rendering_provider_number` varchar(20) character set utf8 collate utf8_unicode_ci default NULL,
1626   `group_number` varchar(20) character set utf8 collate utf8_unicode_ci default NULL,
1627   `provider_number_type` varchar(4) character set utf8 collate utf8_unicode_ci default NULL,
1628   `rendering_provider_number_type` varchar(4) character set utf8 collate utf8_unicode_ci default NULL,
1629   PRIMARY KEY  (`id`)
1630 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1632 -- 
1633 -- Dumping data for table `insurance_numbers`
1634 -- 
1637 -- --------------------------------------------------------
1639 -- 
1640 -- Table structure for table `integration_mapping`
1641 -- 
1643 DROP TABLE IF EXISTS `integration_mapping`;
1644 CREATE TABLE `integration_mapping` (
1645   `id` int(11) NOT NULL default '0',
1646   `foreign_id` int(11) NOT NULL default '0',
1647   `foreign_table` varchar(125) character set utf8 collate utf8_unicode_ci default NULL,
1648   `local_id` int(11) NOT NULL default '0',
1649   `local_table` varchar(125) character set utf8 collate utf8_unicode_ci default NULL,
1650   PRIMARY KEY  (`id`),
1651   UNIQUE KEY `foreign_id` (`foreign_id`,`foreign_table`,`local_id`,`local_table`)
1652 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1654 -- 
1655 -- Dumping data for table `integration_mapping`
1656 -- 
1659 -- --------------------------------------------------------
1661 -- 
1662 -- Table structure for table `issue_encounter`
1663 -- 
1665 DROP TABLE IF EXISTS `issue_encounter`;
1666 CREATE TABLE `issue_encounter` (
1667   `pid` int(11) NOT NULL,
1668   `list_id` int(11) NOT NULL,
1669   `encounter` int(11) NOT NULL,
1670   `resolved` tinyint(1) NOT NULL,
1671   PRIMARY KEY  (`pid`,`list_id`,`encounter`)
1672 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
1674 -- 
1675 -- Dumping data for table `issue_encounter`
1676 -- 
1679 -- --------------------------------------------------------
1681 -- 
1682 -- Table structure for table `lang_constants`
1683 -- 
1685 DROP TABLE IF EXISTS `lang_constants`;
1686 CREATE TABLE `lang_constants` (
1687   `cons_id` int(11) NOT NULL auto_increment,
1688   `constant_name` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
1689   UNIQUE KEY `cons_id` (`cons_id`),
1690   KEY `cons_name` (`constant_name`)
1691 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=2640 ;
1693 -- 
1694 -- Dumping data for table `lang_constants`
1695 -- 
1697 INSERT INTO `lang_constants` VALUES (1, 'Upload this file:');
1698 INSERT INTO `lang_constants` VALUES (2, 'Start Date');
1699 INSERT INTO `lang_constants` VALUES (3, 'Template:');
1700 INSERT INTO `lang_constants` VALUES (4, 'Edit Structure');
1701 INSERT INTO `lang_constants` VALUES (5, 'Completed');
1702 INSERT INTO `lang_constants` VALUES (6, 'Full Play');
1703 INSERT INTO `lang_constants` VALUES (7, 'Full Training');
1704 INSERT INTO `lang_constants` VALUES (8, 'Restricted Training');
1705 INSERT INTO `lang_constants` VALUES (9, 'Injured Out');
1706 INSERT INTO `lang_constants` VALUES (10, 'Rehabilitation');
1707 INSERT INTO `lang_constants` VALUES (11, 'Illness');
1708 INSERT INTO `lang_constants` VALUES (12, 'International Duty');
1709 INSERT INTO `lang_constants` VALUES (13, 'Unknown or N/A');
1710 INSERT INTO `lang_constants` VALUES (14, 'First');
1711 INSERT INTO `lang_constants` VALUES (15, 'Late Recurrence (2-12 Mo)');
1712 INSERT INTO `lang_constants` VALUES (16, 'Delayed Recurrence (> 12 Mo)');
1713 INSERT INTO `lang_constants` VALUES (17, 'Second');
1714 INSERT INTO `lang_constants` VALUES (18, 'Third');
1715 INSERT INTO `lang_constants` VALUES (19, 'Chronic/Recurrent');
1716 INSERT INTO `lang_constants` VALUES (20, 'Acute on Chronic');
1717 INSERT INTO `lang_constants` VALUES (21, 'Trauma');
1718 INSERT INTO `lang_constants` VALUES (22, 'Overuse');
1719 INSERT INTO `lang_constants` VALUES (23, 'There is no match for invoice id');
1720 INSERT INTO `lang_constants` VALUES (24, 'but was');
1721 INSERT INTO `lang_constants` VALUES (25, 'Imported from Accounting');
1722 INSERT INTO `lang_constants` VALUES (26, 'Group:');
1723 INSERT INTO `lang_constants` VALUES (27, 'Username:');
1724 INSERT INTO `lang_constants` VALUES (28, 'Password:');
1725 INSERT INTO `lang_constants` VALUES (29, 'Copyright Notice');
1726 INSERT INTO `lang_constants` VALUES (30, 'Blocked');
1727 INSERT INTO `lang_constants` VALUES (31, 'Sent successfully');
1728 INSERT INTO `lang_constants` VALUES (32, 'Failed');
1729 INSERT INTO `lang_constants` VALUES (33, 'Pending');
1730 INSERT INTO `lang_constants` VALUES (34, 'Send in progress');
1731 INSERT INTO `lang_constants` VALUES (35, 'Sleeping');
1732 INSERT INTO `lang_constants` VALUES (36, 'Suspended');
1733 INSERT INTO `lang_constants` VALUES (37, 'Waiting');
1734 INSERT INTO `lang_constants` VALUES (38, 'Received Faxes');
1735 INSERT INTO `lang_constants` VALUES (39, 'Faxes In');
1736 INSERT INTO `lang_constants` VALUES (40, 'Faxes Out');
1737 INSERT INTO `lang_constants` VALUES (41, 'Scanner In');
1738 INSERT INTO `lang_constants` VALUES (42, 'Document');
1739 INSERT INTO `lang_constants` VALUES (43, 'Received');
1740 INSERT INTO `lang_constants` VALUES (44, 'From');
1741 INSERT INTO `lang_constants` VALUES (45, 'Pages');
1742 INSERT INTO `lang_constants` VALUES (46, 'Dispatch');
1743 INSERT INTO `lang_constants` VALUES (47, 'Job ID');
1744 INSERT INTO `lang_constants` VALUES (48, 'To');
1745 INSERT INTO `lang_constants` VALUES (49, 'Dials');
1746 INSERT INTO `lang_constants` VALUES (50, 'TTS');
1747 INSERT INTO `lang_constants` VALUES (51, 'Status');
1748 INSERT INTO `lang_constants` VALUES (52, 'Filename');
1749 INSERT INTO `lang_constants` VALUES (53, 'Scanned');
1750 INSERT INTO `lang_constants` VALUES (54, 'Length');
1751 INSERT INTO `lang_constants` VALUES (55, 'Internal error - patient ID was not provided!');
1752 INSERT INTO `lang_constants` VALUES (56, 'You did not choose any actions.');
1753 INSERT INTO `lang_constants` VALUES (57, 'Dispatch Received Document');
1754 INSERT INTO `lang_constants` VALUES (58, 'Copy Pages to Patient Chart');
1755 INSERT INTO `lang_constants` VALUES (59, 'Patient');
1756 INSERT INTO `lang_constants` VALUES (60, 'Click to select');
1757 INSERT INTO `lang_constants` VALUES (61, 'Category');
1758 INSERT INTO `lang_constants` VALUES (62, 'Create Patient Note');
1759 INSERT INTO `lang_constants` VALUES (63, 'Type');
1760 INSERT INTO `lang_constants` VALUES (64, 'Close');
1761 INSERT INTO `lang_constants` VALUES (65, 'Message');
1762 INSERT INTO `lang_constants` VALUES (66, 'Forward Pages via Fax');
1763 INSERT INTO `lang_constants` VALUES (67, 'Fax');
1764 INSERT INTO `lang_constants` VALUES (68, 'Quality');
1765 INSERT INTO `lang_constants` VALUES (69, 'Delete Document from Queue');
1766 INSERT INTO `lang_constants` VALUES (70, 'Please select the desired pages to copy or forward:');
1767 INSERT INTO `lang_constants` VALUES (71, 'Logged in');
1768 INSERT INTO `lang_constants` VALUES (72, 'New Patient');
1769 INSERT INTO `lang_constants` VALUES (73, 'Title');
1770 INSERT INTO `lang_constants` VALUES (74, 'Mrs.');
1771 INSERT INTO `lang_constants` VALUES (75, 'Ms.');
1772 INSERT INTO `lang_constants` VALUES (76, 'Mr.');
1773 INSERT INTO `lang_constants` VALUES (77, 'Dr.');
1774 INSERT INTO `lang_constants` VALUES (78, 'First Name');
1775 INSERT INTO `lang_constants` VALUES (79, 'Middle Name');
1776 INSERT INTO `lang_constants` VALUES (80, 'Last Name');
1777 INSERT INTO `lang_constants` VALUES (81, 'Referral Source');
1778 INSERT INTO `lang_constants` VALUES (82, 'Patient Number');
1779 INSERT INTO `lang_constants` VALUES (83, 'omit to autoassign');
1780 INSERT INTO `lang_constants` VALUES (84, 'Navigation');
1781 INSERT INTO `lang_constants` VALUES (85, 'ID');
1782 INSERT INTO `lang_constants` VALUES (86, 'SSN');
1783 INSERT INTO `lang_constants` VALUES (87, 'DOB');
1784 INSERT INTO `lang_constants` VALUES (88, 'Find Patient');
1785 INSERT INTO `lang_constants` VALUES (89, 'Back');
1786 INSERT INTO `lang_constants` VALUES (90, 'Name');
1787 INSERT INTO `lang_constants` VALUES (91, 'Find');
1788 INSERT INTO `lang_constants` VALUES (92, 'New');
1789 INSERT INTO `lang_constants` VALUES (93, 'Password');
1790 INSERT INTO `lang_constants` VALUES (94, 'Administration');
1791 INSERT INTO `lang_constants` VALUES (95, 'Reports');
1792 INSERT INTO `lang_constants` VALUES (96, 'Notes');
1793 INSERT INTO `lang_constants` VALUES (97, 'AB');
1794 INSERT INTO `lang_constants` VALUES (98, 'Docs');
1795 INSERT INTO `lang_constants` VALUES (99, 'Billing');
1796 INSERT INTO `lang_constants` VALUES (100, 'Roster');
1797 INSERT INTO `lang_constants` VALUES (101, 'Calendar');
1798 INSERT INTO `lang_constants` VALUES (102, 'Home');
1799 INSERT INTO `lang_constants` VALUES (103, 'Logout');
1800 INSERT INTO `lang_constants` VALUES (104, 'Just Mine');
1801 INSERT INTO `lang_constants` VALUES (105, 'See All');
1802 INSERT INTO `lang_constants` VALUES (106, 'Patient Notes');
1803 INSERT INTO `lang_constants` VALUES (107, 'and');
1804 INSERT INTO `lang_constants` VALUES (108, 'Authorizations');
1805 INSERT INTO `lang_constants` VALUES (109, 'Note Type');
1806 INSERT INTO `lang_constants` VALUES (110, 'Timestamp and Text');
1807 INSERT INTO `lang_constants` VALUES (111, 'Some authorizations were not displayed. Click here to view all');
1808 INSERT INTO `lang_constants` VALUES (112, 'Authorize');
1809 INSERT INTO `lang_constants` VALUES (113, 'Provider');
1810 INSERT INTO `lang_constants` VALUES (114, 'Transactions');
1811 INSERT INTO `lang_constants` VALUES (115, 'Encounter Forms');
1812 INSERT INTO `lang_constants` VALUES (116, 'Patient Finder');
1813 INSERT INTO `lang_constants` VALUES (117, 'Search by:');
1814 INSERT INTO `lang_constants` VALUES (118, 'for:');
1815 INSERT INTO `lang_constants` VALUES (119, 'If name, any part of lastname or lastname,firstname');
1816 INSERT INTO `lang_constants` VALUES (120, 'SS');
1817 INSERT INTO `lang_constants` VALUES (121, 'Find Available Appointments');
1818 INSERT INTO `lang_constants` VALUES (122, 'The destination form was closed; I cannot act on your selection.');
1819 INSERT INTO `lang_constants` VALUES (123, 'Start date:');
1820 INSERT INTO `lang_constants` VALUES (124, 'for');
1821 INSERT INTO `lang_constants` VALUES (125, 'days');
1822 INSERT INTO `lang_constants` VALUES (126, 'Day');
1823 INSERT INTO `lang_constants` VALUES (127, 'Date');
1824 INSERT INTO `lang_constants` VALUES (128, 'Available Times');
1825 INSERT INTO `lang_constants` VALUES (129, 'No openings were found for this period.');
1826 INSERT INTO `lang_constants` VALUES (130, '* Reminder done');
1827 INSERT INTO `lang_constants` VALUES (131, '+ Chart pulled');
1828 INSERT INTO `lang_constants` VALUES (132, '? No show');
1829 INSERT INTO `lang_constants` VALUES (133, '@ Arrived');
1830 INSERT INTO `lang_constants` VALUES (134, '~ Arrived late');
1831 INSERT INTO `lang_constants` VALUES (135, '! Left w/o visit');
1832 INSERT INTO `lang_constants` VALUES (136, 'Ins/fin issue');
1833 INSERT INTO `lang_constants` VALUES (137, '< In exam room');
1834 INSERT INTO `lang_constants` VALUES (138, '> Checked out');
1835 INSERT INTO `lang_constants` VALUES (139, '$ Coding done');
1836 INSERT INTO `lang_constants` VALUES (140, 'Event');
1837 INSERT INTO `lang_constants` VALUES (141, 'All day event');
1838 INSERT INTO `lang_constants` VALUES (142, 'yyyy-mm-dd event date or starting date');
1839 INSERT INTO `lang_constants` VALUES (143, 'Click here to choose a date');
1840 INSERT INTO `lang_constants` VALUES (144, 'Time');
1841 INSERT INTO `lang_constants` VALUES (145, 'Event start time');
1842 INSERT INTO `lang_constants` VALUES (146, 'AM');
1843 INSERT INTO `lang_constants` VALUES (147, 'PM');
1844 INSERT INTO `lang_constants` VALUES (148, 'Event title');
1845 INSERT INTO `lang_constants` VALUES (149, 'duration');
1846 INSERT INTO `lang_constants` VALUES (150, 'Event duration in minutes');
1847 INSERT INTO `lang_constants` VALUES (151, 'Click to select patient');
1848 INSERT INTO `lang_constants` VALUES (152, 'Repeats');
1849 INSERT INTO `lang_constants` VALUES (153, 'Pref Cat');
1850 INSERT INTO `lang_constants` VALUES (154, 'Appointment status');
1851 INSERT INTO `lang_constants` VALUES (155, 'Preferred Event Category');
1852 INSERT INTO `lang_constants` VALUES (156, 'until');
1853 INSERT INTO `lang_constants` VALUES (157, 'yyyy-mm-dd last date of this event');
1854 INSERT INTO `lang_constants` VALUES (158, 'Comments');
1855 INSERT INTO `lang_constants` VALUES (159, 'Optional information about this event');
1856 INSERT INTO `lang_constants` VALUES (160, 'DOB is missing, please enter if possible');
1857 INSERT INTO `lang_constants` VALUES (161, 'yyyy-mm-dd date of birth');
1858 INSERT INTO `lang_constants` VALUES (162, 'Patient Appointment');
1859 INSERT INTO `lang_constants` VALUES (163, '(Notes and Authorizations)');
1860 INSERT INTO `lang_constants` VALUES (164, '(Patient Notes)');
1861 INSERT INTO `lang_constants` VALUES (165, 'Search');
1862 INSERT INTO `lang_constants` VALUES (166, 'Records Found');
1863 INSERT INTO `lang_constants` VALUES (167, '(New Patient)');
1864 INSERT INTO `lang_constants` VALUES (168, 'Please enter some information');
1865 INSERT INTO `lang_constants` VALUES (169, 'Select Patient');
1866 INSERT INTO `lang_constants` VALUES (170, 'by');
1867 INSERT INTO `lang_constants` VALUES (171, 'Office Notes');
1868 INSERT INTO `lang_constants` VALUES (172, 'Add New Note');
1869 INSERT INTO `lang_constants` VALUES (173, 'View:');
1870 INSERT INTO `lang_constants` VALUES (174, 'All');
1871 INSERT INTO `lang_constants` VALUES (175, 'Only Active');
1872 INSERT INTO `lang_constants` VALUES (176, 'Only Inactive');
1873 INSERT INTO `lang_constants` VALUES (177, 'Change Activity');
1874 INSERT INTO `lang_constants` VALUES (178, 'Previous');
1875 INSERT INTO `lang_constants` VALUES (179, 'Next');
1876 INSERT INTO `lang_constants` VALUES (180, 'Popups');
1877 INSERT INTO `lang_constants` VALUES (181, 'Issues');
1878 INSERT INTO `lang_constants` VALUES (182, 'Export');
1879 INSERT INTO `lang_constants` VALUES (183, 'Import');
1880 INSERT INTO `lang_constants` VALUES (184, 'Appts');
1881 INSERT INTO `lang_constants` VALUES (185, 'Refer');
1882 INSERT INTO `lang_constants` VALUES (186, 'Payment');
1883 INSERT INTO `lang_constants` VALUES (187, 'Debug Information');
1884 INSERT INTO `lang_constants` VALUES (188, 'Pennington Firm OpenEMR v');
1885 INSERT INTO `lang_constants` VALUES (189, 'Due Ins');
1886 INSERT INTO `lang_constants` VALUES (190, 'Due Pt');
1887 INSERT INTO `lang_constants` VALUES (191, 'Collections Report');
1888 INSERT INTO `lang_constants` VALUES (192, 'Svc Date:');
1889 INSERT INTO `lang_constants` VALUES (193, 'To:');
1890 INSERT INTO `lang_constants` VALUES (194, 'Open');
1891 INSERT INTO `lang_constants` VALUES (195, 'Credits');
1892 INSERT INTO `lang_constants` VALUES (196, 'Insurance');
1893 INSERT INTO `lang_constants` VALUES (197, 'Phone');
1894 INSERT INTO `lang_constants` VALUES (198, 'City');
1895 INSERT INTO `lang_constants` VALUES (199, 'Invoice');
1896 INSERT INTO `lang_constants` VALUES (200, 'Svc Date');
1897 INSERT INTO `lang_constants` VALUES (201, 'Charge');
1898 INSERT INTO `lang_constants` VALUES (202, 'Adjust');
1899 INSERT INTO `lang_constants` VALUES (203, 'Paid');
1900 INSERT INTO `lang_constants` VALUES (204, 'Balance');
1901 INSERT INTO `lang_constants` VALUES (205, 'Prv');
1902 INSERT INTO `lang_constants` VALUES (206, 'Sel');
1903 INSERT INTO `lang_constants` VALUES (207, 'End Date');
1904 INSERT INTO `lang_constants` VALUES (208, 'Patient Data');
1905 INSERT INTO `lang_constants` VALUES (209, 'Primary Insurance Data');
1906 INSERT INTO `lang_constants` VALUES (210, 'Secondary Insurance Data');
1907 INSERT INTO `lang_constants` VALUES (211, 'Tertiary Insurance Data');
1908 INSERT INTO `lang_constants` VALUES (212, 'Billing Information');
1909 INSERT INTO `lang_constants` VALUES (213, 'Code');
1910 INSERT INTO `lang_constants` VALUES (214, 'Fee');
1911 INSERT INTO `lang_constants` VALUES (215, 'Sub-Total');
1912 INSERT INTO `lang_constants` VALUES (216, 'Total');
1913 INSERT INTO `lang_constants` VALUES (217, 'Physician Signature');
1914 INSERT INTO `lang_constants` VALUES (218, 'Patient Insurance Distribution');
1915 INSERT INTO `lang_constants` VALUES (219, 'Primary Insurance');
1916 INSERT INTO `lang_constants` VALUES (220, 'Patients');
1917 INSERT INTO `lang_constants` VALUES (221, 'Percent');
1918 INSERT INTO `lang_constants` VALUES (222, 'Front Office Receipts');
1919 INSERT INTO `lang_constants` VALUES (223, 'Unique Seen Patients');
1920 INSERT INTO `lang_constants` VALUES (224, 'Visits From');
1921 INSERT INTO `lang_constants` VALUES (225, 'Last Visit');
1922 INSERT INTO `lang_constants` VALUES (226, 'Visits');
1923 INSERT INTO `lang_constants` VALUES (227, 'Age');
1924 INSERT INTO `lang_constants` VALUES (228, 'Sex');
1925 INSERT INTO `lang_constants` VALUES (229, 'Race');
1926 INSERT INTO `lang_constants` VALUES (230, 'Secondary Insurance');
1927 INSERT INTO `lang_constants` VALUES (231, 'Total Number of Patients');
1928 INSERT INTO `lang_constants` VALUES (232, 'Injury Overview Report');
1929 INSERT INTO `lang_constants` VALUES (233, 'Hold down Ctrl to select multiple squads');
1930 INSERT INTO `lang_constants` VALUES (234, 'Click to generate the report');
1931 INSERT INTO `lang_constants` VALUES (235, 'Receipts by Payment Method');
1932 INSERT INTO `lang_constants` VALUES (236, 'Payment Date');
1933 INSERT INTO `lang_constants` VALUES (237, 'Invoice Date');
1934 INSERT INTO `lang_constants` VALUES (238, 'From:');
1935 INSERT INTO `lang_constants` VALUES (239, 'Method');
1936 INSERT INTO `lang_constants` VALUES (240, 'Procedure');
1937 INSERT INTO `lang_constants` VALUES (241, 'Amount');
1938 INSERT INTO `lang_constants` VALUES (242, 'Total for');
1939 INSERT INTO `lang_constants` VALUES (243, 'Grand Total');
1940 INSERT INTO `lang_constants` VALUES (244, 'Absences by Diagnosis');
1941 INSERT INTO `lang_constants` VALUES (245, 'Days and Games Missed');
1942 INSERT INTO `lang_constants` VALUES (246, 'By:');
1943 INSERT INTO `lang_constants` VALUES (247, 'Diagnosis');
1944 INSERT INTO `lang_constants` VALUES (248, 'Player');
1945 INSERT INTO `lang_constants` VALUES (249, 'Description');
1946 INSERT INTO `lang_constants` VALUES (250, 'Games');
1947 INSERT INTO `lang_constants` VALUES (251, 'Sales by Item');
1948 INSERT INTO `lang_constants` VALUES (252, 'Item');
1949 INSERT INTO `lang_constants` VALUES (253, 'Qty');
1950 INSERT INTO `lang_constants` VALUES (254, 'Activity Type');
1951 INSERT INTO `lang_constants` VALUES (255, 'Body Region');
1952 INSERT INTO `lang_constants` VALUES (256, 'Footwear Type');
1953 INSERT INTO `lang_constants` VALUES (257, 'Game Period');
1954 INSERT INTO `lang_constants` VALUES (258, 'Injury Mechanism');
1955 INSERT INTO `lang_constants` VALUES (259, 'Injury Type');
1956 INSERT INTO `lang_constants` VALUES (260, 'Playing Position');
1957 INSERT INTO `lang_constants` VALUES (261, 'Sanction Type');
1958 INSERT INTO `lang_constants` VALUES (262, 'Surface Type');
1959 INSERT INTO `lang_constants` VALUES (263, 'Training Type');
1960 INSERT INTO `lang_constants` VALUES (264, 'Ankle + heel');
1961 INSERT INTO `lang_constants` VALUES (265, 'Buttock + S.I.');
1962 INSERT INTO `lang_constants` VALUES (266, 'Chest');
1963 INSERT INTO `lang_constants` VALUES (267, 'Thoracic spine');
1964 INSERT INTO `lang_constants` VALUES (268, 'Elbow');
1965 INSERT INTO `lang_constants` VALUES (269, 'Foot');
1966 INSERT INTO `lang_constants` VALUES (270, 'Hip + groin');
1967 INSERT INTO `lang_constants` VALUES (271, 'Head');
1968 INSERT INTO `lang_constants` VALUES (272, 'Knee');
1969 INSERT INTO `lang_constants` VALUES (273, 'Lumbar spine');
1970 INSERT INTO `lang_constants` VALUES (274, 'Medical problem');
1971 INSERT INTO `lang_constants` VALUES (275, 'Neck');
1972 INSERT INTO `lang_constants` VALUES (276, 'Abdominal');
1973 INSERT INTO `lang_constants` VALUES (277, 'Hand + fingers');
1974 INSERT INTO `lang_constants` VALUES (278, 'Lower leg');
1975 INSERT INTO `lang_constants` VALUES (279, 'Forearm');
1976 INSERT INTO `lang_constants` VALUES (280, 'Shoulder + clavicle');
1977 INSERT INTO `lang_constants` VALUES (281, 'Thigh + hamstring');
1978 INSERT INTO `lang_constants` VALUES (282, 'Upper arm');
1979 INSERT INTO `lang_constants` VALUES (283, 'Wrist');
1980 INSERT INTO `lang_constants` VALUES (284, 'Multiple areas');
1981 INSERT INTO `lang_constants` VALUES (285, 'Area not specified');
1982 INSERT INTO `lang_constants` VALUES (286, 'Environmental');
1983 INSERT INTO `lang_constants` VALUES (287, 'Fluid and electrolyte problem');
1984 INSERT INTO `lang_constants` VALUES (288, 'Arthritis / degen joint disease');
1985 INSERT INTO `lang_constants` VALUES (289, 'Developmental abnormality');
1986 INSERT INTO `lang_constants` VALUES (290, 'Cartilage / chondral / disc damage');
1987 INSERT INTO `lang_constants` VALUES (291, 'Dislocation');
1988 INSERT INTO `lang_constants` VALUES (292, 'Tumour');
1989 INSERT INTO `lang_constants` VALUES (293, 'Fracture');
1990 INSERT INTO `lang_constants` VALUES (294, 'Avulsion / avulsion fracture');
1991 INSERT INTO `lang_constants` VALUES (295, 'Haematoma / bruising');
1992 INSERT INTO `lang_constants` VALUES (296, 'Infection / Abscess');
1993 INSERT INTO `lang_constants` VALUES (297, 'Minor joint strain +/- synovitis');
1994 INSERT INTO `lang_constants` VALUES (298, 'Laceration / skin condition');
1995 INSERT INTO `lang_constants` VALUES (299, 'Ligament tear or sprain');
1996 INSERT INTO `lang_constants` VALUES (300, 'Strain of muscle');
1997 INSERT INTO `lang_constants` VALUES (301, 'Neural condition / nerve damage');
1998 INSERT INTO `lang_constants` VALUES (302, 'Visceral damage/trauma/surgery');
1999 INSERT INTO `lang_constants` VALUES (303, 'Chronic synovitis / effusion / joint pain / gout');
2000 INSERT INTO `lang_constants` VALUES (304, 'Old fracture non / malunion');
2001 INSERT INTO `lang_constants` VALUES (305, 'Rupture');
2002 INSERT INTO `lang_constants` VALUES (306, 'Stress fracture');
2003 INSERT INTO `lang_constants` VALUES (307, 'Tendonitis / osis / bursitis');
2004 INSERT INTO `lang_constants` VALUES (308, 'Instability / subluxation');
2005 INSERT INTO `lang_constants` VALUES (309, 'Vascular condition');
2006 INSERT INTO `lang_constants` VALUES (310, 'Trigger point / compartment syndrome / DOMS / cramp');
2007 INSERT INTO `lang_constants` VALUES (311, 'Undiagnosed');
2008 INSERT INTO `lang_constants` VALUES (312, 'Arthritis / degen joint diseas');
2009 INSERT INTO `lang_constants` VALUES (313, 'Football Injury Report');
2010 INSERT INTO `lang_constants` VALUES (314, 'Hold down Ctrl to select multiple items');
2011 INSERT INTO `lang_constants` VALUES (315, 'Team Roster');
2012 INSERT INTO `lang_constants` VALUES (316, 'Squad');
2013 INSERT INTO `lang_constants` VALUES (317, 'Fitness');
2014 INSERT INTO `lang_constants` VALUES (318, 'Last Encounter');
2015 INSERT INTO `lang_constants` VALUES (319, 'Source');
2016 INSERT INTO `lang_constants` VALUES (320, 'Today');
2017 INSERT INTO `lang_constants` VALUES (321, 'Totals');
2018 INSERT INTO `lang_constants` VALUES (322, 'Patient List');
2019 INSERT INTO `lang_constants` VALUES (323, 'Street');
2020 INSERT INTO `lang_constants` VALUES (324, 'State');
2021 INSERT INTO `lang_constants` VALUES (325, 'Zip');
2022 INSERT INTO `lang_constants` VALUES (326, 'Home Phone');
2023 INSERT INTO `lang_constants` VALUES (327, 'Work Phone');
2024 INSERT INTO `lang_constants` VALUES (328, 'Appointments Report');
2025 INSERT INTO `lang_constants` VALUES (329, 'Appointments and Encounters');
2026 INSERT INTO `lang_constants` VALUES (330, 'Booking Date');
2027 INSERT INTO `lang_constants` VALUES (331, 'Practitioner');
2028 INSERT INTO `lang_constants` VALUES (332, 'Chart');
2029 INSERT INTO `lang_constants` VALUES (333, 'Encounter');
2030 INSERT INTO `lang_constants` VALUES (334, 'Billed');
2031 INSERT INTO `lang_constants` VALUES (335, 'Error');
2032 INSERT INTO `lang_constants` VALUES (336, 'Destroyed Drugs');
2033 INSERT INTO `lang_constants` VALUES (337, 'Drug Name');
2034 INSERT INTO `lang_constants` VALUES (338, 'NDC');
2035 INSERT INTO `lang_constants` VALUES (339, 'Lot');
2036 INSERT INTO `lang_constants` VALUES (340, 'Date Destroyed');
2037 INSERT INTO `lang_constants` VALUES (341, 'Witness');
2038 INSERT INTO `lang_constants` VALUES (342, 'Prescriptions and Dispensations');
2039 INSERT INTO `lang_constants` VALUES (343, 'Patient ID');
2040 INSERT INTO `lang_constants` VALUES (344, 'Drug');
2041 INSERT INTO `lang_constants` VALUES (345, 'RX');
2042 INSERT INTO `lang_constants` VALUES (346, 'Units');
2043 INSERT INTO `lang_constants` VALUES (347, 'Refills');
2044 INSERT INTO `lang_constants` VALUES (348, 'Instructed');
2045 INSERT INTO `lang_constants` VALUES (349, 'Reactions');
2046 INSERT INTO `lang_constants` VALUES (350, 'Dispensed');
2047 INSERT INTO `lang_constants` VALUES (351, 'Manufacturer');
2048 INSERT INTO `lang_constants` VALUES (352, 'NDC Number');
2049 INSERT INTO `lang_constants` VALUES (353, 'On Order');
2050 INSERT INTO `lang_constants` VALUES (354, 'Reorder At');
2051 INSERT INTO `lang_constants` VALUES (355, 'Form');
2052 INSERT INTO `lang_constants` VALUES (356, 'Pill Size');
2053 INSERT INTO `lang_constants` VALUES (357, 'Route');
2054 INSERT INTO `lang_constants` VALUES (358, 'Templates');
2055 INSERT INTO `lang_constants` VALUES (359, 'Schedule');
2056 INSERT INTO `lang_constants` VALUES (360, 'Interval');
2057 INSERT INTO `lang_constants` VALUES (361, 'suspension');
2058 INSERT INTO `lang_constants` VALUES (362, 'tablet');
2059 INSERT INTO `lang_constants` VALUES (363, 'capsule');
2060 INSERT INTO `lang_constants` VALUES (364, 'solution');
2061 INSERT INTO `lang_constants` VALUES (365, 'tsp');
2062 INSERT INTO `lang_constants` VALUES (366, 'ml');
2063 INSERT INTO `lang_constants` VALUES (367, 'inhalations');
2064 INSERT INTO `lang_constants` VALUES (368, 'gtts(drops)');
2065 INSERT INTO `lang_constants` VALUES (369, 'Per Oris');
2066 INSERT INTO `lang_constants` VALUES (370, 'Per Rectum');
2067 INSERT INTO `lang_constants` VALUES (371, 'To Skin');
2068 INSERT INTO `lang_constants` VALUES (372, 'To Affected Area');
2069 INSERT INTO `lang_constants` VALUES (373, 'Sublingual');
2070 INSERT INTO `lang_constants` VALUES (374, 'OS');
2071 INSERT INTO `lang_constants` VALUES (375, 'OD');
2072 INSERT INTO `lang_constants` VALUES (376, 'OU');
2073 INSERT INTO `lang_constants` VALUES (377, 'SQ');
2074 INSERT INTO `lang_constants` VALUES (378, 'IM');
2075 INSERT INTO `lang_constants` VALUES (379, 'IV');
2076 INSERT INTO `lang_constants` VALUES (380, 'Per Nostril');
2077 INSERT INTO `lang_constants` VALUES (381, 'twice daily');
2078 INSERT INTO `lang_constants` VALUES (382, '3 times daily');
2079 INSERT INTO `lang_constants` VALUES (383, '4 times daily');
2080 INSERT INTO `lang_constants` VALUES (384, 'every 3 hours');
2081 INSERT INTO `lang_constants` VALUES (385, 'every 4 hours');
2082 INSERT INTO `lang_constants` VALUES (386, 'every 5 hours');
2083 INSERT INTO `lang_constants` VALUES (387, 'every 6 hours');
2084 INSERT INTO `lang_constants` VALUES (388, 'every 8 hours');
2085 INSERT INTO `lang_constants` VALUES (389, 'daily');
2086 INSERT INTO `lang_constants` VALUES (390, 'by mouth');
2087 INSERT INTO `lang_constants` VALUES (391, 'rectally');
2088 INSERT INTO `lang_constants` VALUES (392, 'under tongue');
2089 INSERT INTO `lang_constants` VALUES (393, 'in left eye');
2090 INSERT INTO `lang_constants` VALUES (394, 'in right eye');
2091 INSERT INTO `lang_constants` VALUES (395, 'in each eye');
2092 INSERT INTO `lang_constants` VALUES (396, 'subcutaneously');
2093 INSERT INTO `lang_constants` VALUES (397, 'intramuscularly');
2094 INSERT INTO `lang_constants` VALUES (398, 'intravenously');
2095 INSERT INTO `lang_constants` VALUES (399, 'in nostril');
2096 INSERT INTO `lang_constants` VALUES (400, 'Allowed');
2097 INSERT INTO `lang_constants` VALUES (401, 'Drug Inventory');
2098 INSERT INTO `lang_constants` VALUES (402, 'Size');
2099 INSERT INTO `lang_constants` VALUES (403, 'Unit');
2100 INSERT INTO `lang_constants` VALUES (404, 'Add');
2101 INSERT INTO `lang_constants` VALUES (405, 'QOH');
2102 INSERT INTO `lang_constants` VALUES (406, 'Expires');
2103 INSERT INTO `lang_constants` VALUES (407, 'Destroy Lot');
2104 INSERT INTO `lang_constants` VALUES (408, 'Lot Number');
2105 INSERT INTO `lang_constants` VALUES (409, 'Quantity On Hand');
2106 INSERT INTO `lang_constants` VALUES (410, 'Expiration Date');
2107 INSERT INTO `lang_constants` VALUES (411, 'Method of Destruction');
2108 INSERT INTO `lang_constants` VALUES (412, 'Prescription Label');
2109 INSERT INTO `lang_constants` VALUES (413, 'Expiration');
2110 INSERT INTO `lang_constants` VALUES (414, 'On Hand');
2111 INSERT INTO `lang_constants` VALUES (415, 'Work/School Note');
2112 INSERT INTO `lang_constants` VALUES (416, 'Save');
2113 INSERT INTO `lang_constants` VALUES (417, 'Don''t Save');
2114 INSERT INTO `lang_constants` VALUES (418, 'WORK NOTE');
2115 INSERT INTO `lang_constants` VALUES (419, 'SCHOOL NOTE');
2116 INSERT INTO `lang_constants` VALUES (420, 'MESSAGE:');
2117 INSERT INTO `lang_constants` VALUES (421, 'Signature:');
2118 INSERT INTO `lang_constants` VALUES (422, 'Doctor:');
2119 INSERT INTO `lang_constants` VALUES (423, 'Don''t Save Changes');
2120 INSERT INTO `lang_constants` VALUES (424, 'Date:');
2121 INSERT INTO `lang_constants` VALUES (425, 'Review of Systems Checks');
2122 INSERT INTO `lang_constants` VALUES (426, 'General');
2123 INSERT INTO `lang_constants` VALUES (427, 'Skin');
2124 INSERT INTO `lang_constants` VALUES (428, 'HEENT');
2125 INSERT INTO `lang_constants` VALUES (429, 'Cardiovascular');
2126 INSERT INTO `lang_constants` VALUES (430, 'Endocrine');
2127 INSERT INTO `lang_constants` VALUES (431, 'Pulmonary');
2128 INSERT INTO `lang_constants` VALUES (432, 'Genitourinary');
2129 INSERT INTO `lang_constants` VALUES (433, 'Gastrointestinal');
2130 INSERT INTO `lang_constants` VALUES (434, 'Musculoskeletal');
2131 INSERT INTO `lang_constants` VALUES (435, 'Additional Notes:');
2132 INSERT INTO `lang_constants` VALUES (436, 'Previous Encounter CAMOS entries');
2133 INSERT INTO `lang_constants` VALUES (437, 'Subcategory');
2134 INSERT INTO `lang_constants` VALUES (438, 'Content');
2135 INSERT INTO `lang_constants` VALUES (439, 'do not save');
2136 INSERT INTO `lang_constants` VALUES (440, 'help');
2137 INSERT INTO `lang_constants` VALUES (441, 'CAMOS');
2138 INSERT INTO `lang_constants` VALUES (442, 'do nothing');
2139 INSERT INTO `lang_constants` VALUES (443, 'Computer Aided Medical Ordering System');
2140 INSERT INTO `lang_constants` VALUES (444, 'Ankle Evaluation Form');
2141 INSERT INTO `lang_constants` VALUES (445, 'Date of Injury');
2142 INSERT INTO `lang_constants` VALUES (446, 'Work related?');
2143 INSERT INTO `lang_constants` VALUES (447, 'Foot:');
2144 INSERT INTO `lang_constants` VALUES (448, 'Left');
2145 INSERT INTO `lang_constants` VALUES (449, 'Right');
2146 INSERT INTO `lang_constants` VALUES (450, 'Severity of Pain');
2147 INSERT INTO `lang_constants` VALUES (451, 'Significant Swelling:');
2148 INSERT INTO `lang_constants` VALUES (452, 'Onset of Swelling:');
2149 INSERT INTO `lang_constants` VALUES (453, 'within minutes');
2150 INSERT INTO `lang_constants` VALUES (454, 'within hours');
2151 INSERT INTO `lang_constants` VALUES (455, 'How did Injury Occur?');
2152 INSERT INTO `lang_constants` VALUES (456, 'Ottawa Ankle Rules');
2153 INSERT INTO `lang_constants` VALUES (457, 'Bone Tenderness: Medial Malleolus');
2154 INSERT INTO `lang_constants` VALUES (458, 'Lateral Malleolus');
2155 INSERT INTO `lang_constants` VALUES (459, 'Base of fifth (5th) Metarsal');
2156 INSERT INTO `lang_constants` VALUES (460, 'At the Navicular');
2157 INSERT INTO `lang_constants` VALUES (461, 'Able to Bear Weight four (4) steps:');
2158 INSERT INTO `lang_constants` VALUES (462, 'Yes');
2159 INSERT INTO `lang_constants` VALUES (463, 'No');
2160 INSERT INTO `lang_constants` VALUES (464, 'X-RAY Interpretation:');
2161 INSERT INTO `lang_constants` VALUES (465, 'Normal');
2162 INSERT INTO `lang_constants` VALUES (466, 'Avulsion medial malleolus');
2163 INSERT INTO `lang_constants` VALUES (467, 'Avulsion lateral malleolus');
2164 INSERT INTO `lang_constants` VALUES (468, 'Fracture, Base of fifth (5th) Metatarsal');
2165 INSERT INTO `lang_constants` VALUES (469, 'Trimalleolar');
2166 INSERT INTO `lang_constants` VALUES (470, 'Fracture at the Navicula');
2167 INSERT INTO `lang_constants` VALUES (471, 'Fracture medial malleolus');
2168 INSERT INTO `lang_constants` VALUES (472, 'Fracture lateral malleolus');
2169 INSERT INTO `lang_constants` VALUES (473, 'Other');
2170 INSERT INTO `lang_constants` VALUES (474, 'Diagnosis:');
2171 INSERT INTO `lang_constants` VALUES (475, 'None');
2172 INSERT INTO `lang_constants` VALUES (476, '845.00 ankle sprain NOS');
2173 INSERT INTO `lang_constants` VALUES (477, '845.01 Sprain Medial (Deltoid) Lig.');
2174 INSERT INTO `lang_constants` VALUES (478, '845.02 Sprain, Calcaneal fibular');
2175 INSERT INTO `lang_constants` VALUES (479, '825.35 Fracture, Base of fifth (5th) Metatarsal');
2176 INSERT INTO `lang_constants` VALUES (480, '825.32 Fracture, of Navicular (ankle)');
2177 INSERT INTO `lang_constants` VALUES (481, '824.2 Fracture, lateral malleolus, closed');
2178 INSERT INTO `lang_constants` VALUES (482, '824.0 Fracture, medial malleolus, closed');
2179 INSERT INTO `lang_constants` VALUES (483, '824.6 Fracture, Trimalleolar, closed');
2180 INSERT INTO `lang_constants` VALUES (484, 'Add ICD Code');
2181 INSERT INTO `lang_constants` VALUES (485, 'CPT Codes');
2182 INSERT INTO `lang_constants` VALUES (486, 'Plan:');
2183 INSERT INTO `lang_constants` VALUES (487, 'Left:');
2184 INSERT INTO `lang_constants` VALUES (488, 'Right:');
2185 INSERT INTO `lang_constants` VALUES (489, 'Severity of Pain:');
2186 INSERT INTO `lang_constants` VALUES (490, 'within minutes:');
2187 INSERT INTO `lang_constants` VALUES (491, 'within hours:');
2188 INSERT INTO `lang_constants` VALUES (492, 'How did Injury Occur?:');
2189 INSERT INTO `lang_constants` VALUES (493, 'Bone Tenderness:');
2190 INSERT INTO `lang_constants` VALUES (494, 'Medial malleolus:');
2191 INSERT INTO `lang_constants` VALUES (495, 'Lateral malleolus:');
2192 INSERT INTO `lang_constants` VALUES (496, 'Base of fifth (5th) Metarsal:');
2193 INSERT INTO `lang_constants` VALUES (497, 'At the Navicular:');
2194 INSERT INTO `lang_constants` VALUES (498, 'Yes:');
2195 INSERT INTO `lang_constants` VALUES (499, 'No:');
2196 INSERT INTO `lang_constants` VALUES (500, 'New encounters not authorized');
2197 INSERT INTO `lang_constants` VALUES (501, 'New Encounter');
2198 INSERT INTO `lang_constants` VALUES (502, 'New Encounter Form');
2199 INSERT INTO `lang_constants` VALUES (503, 'Chief Complaint:');
2200 INSERT INTO `lang_constants` VALUES (504, 'Issues (Problems, Medications, Surgeries, Allergies):');
2201 INSERT INTO `lang_constants` VALUES (505, 'Hold down [Ctrl] for multiple selections or to unselect');
2202 INSERT INTO `lang_constants` VALUES (506, 'Facility:');
2203 INSERT INTO `lang_constants` VALUES (507, 'Date of Service:');
2204 INSERT INTO `lang_constants` VALUES (508, 'yyyy-mm-dd Date of service');
2205 INSERT INTO `lang_constants` VALUES (509, 'Onset/hospitalization date:');
2206 INSERT INTO `lang_constants` VALUES (510, 'yyyy-mm-dd Date of onset or hospitalization');
2207 INSERT INTO `lang_constants` VALUES (511, 'Cancel');
2208 INSERT INTO `lang_constants` VALUES (512, 'Add Issue');
2209 INSERT INTO `lang_constants` VALUES (513, 'Patient Encounter');
2210 INSERT INTO `lang_constants` VALUES (514, 'Patient Encounter Form');
2211 INSERT INTO `lang_constants` VALUES (515, 'Sensitivity:');
2212 INSERT INTO `lang_constants` VALUES (516, 'Sheet');
2213 INSERT INTO `lang_constants` VALUES (517, 'Mod');
2214 INSERT INTO `lang_constants` VALUES (518, 'Auth');
2215 INSERT INTO `lang_constants` VALUES (519, 'Delete');
2216 INSERT INTO `lang_constants` VALUES (520, 'PROVIDER:');
2217 INSERT INTO `lang_constants` VALUES (521, 'UCSMC codes provided by the University of Calgary Sports Medicine Centre');
2218 INSERT INTO `lang_constants` VALUES (522, 'Bronchitis Form');
2219 INSERT INTO `lang_constants` VALUES (523, 'Onset of Illness:');
2220 INSERT INTO `lang_constants` VALUES (524, 'HPI:');
2221 INSERT INTO `lang_constants` VALUES (525, 'Other Pertinent Symptoms:');
2222 INSERT INTO `lang_constants` VALUES (526, 'Fever:');
2223 INSERT INTO `lang_constants` VALUES (527, 'Cough:');
2224 INSERT INTO `lang_constants` VALUES (528, 'Dizziness:');
2225 INSERT INTO `lang_constants` VALUES (529, 'Chest Pain:');
2226 INSERT INTO `lang_constants` VALUES (530, 'Dyspnea:');
2227 INSERT INTO `lang_constants` VALUES (531, 'Sweating:');
2228 INSERT INTO `lang_constants` VALUES (532, 'Wheezing:');
2229 INSERT INTO `lang_constants` VALUES (533, 'Malaise:');
2230 INSERT INTO `lang_constants` VALUES (534, 'Sputum:');
2231 INSERT INTO `lang_constants` VALUES (535, 'Appearance:');
2232 INSERT INTO `lang_constants` VALUES (536, 'All Reviewed and Negative:');
2233 INSERT INTO `lang_constants` VALUES (537, 'Review of PMH:');
2234 INSERT INTO `lang_constants` VALUES (538, 'Medications:');
2235 INSERT INTO `lang_constants` VALUES (539, 'Allergies:');
2236 INSERT INTO `lang_constants` VALUES (540, 'Social History:');
2237 INSERT INTO `lang_constants` VALUES (541, 'Family History:');
2238 INSERT INTO `lang_constants` VALUES (542, 'TM''S:');
2239 INSERT INTO `lang_constants` VALUES (543, 'Normal Right:');
2240 INSERT INTO `lang_constants` VALUES (544, 'NARES:');
2241 INSERT INTO `lang_constants` VALUES (545, 'Normal Right');
2242 INSERT INTO `lang_constants` VALUES (546, 'Thickened Right:');
2243 INSERT INTO `lang_constants` VALUES (547, 'Swelling Right');
2244 INSERT INTO `lang_constants` VALUES (548, 'A/F Level Right:');
2245 INSERT INTO `lang_constants` VALUES (549, 'Discharge Right:');
2246 INSERT INTO `lang_constants` VALUES (550, 'Retracted Right:');
2247 INSERT INTO `lang_constants` VALUES (551, 'Bulging Right:');
2248 INSERT INTO `lang_constants` VALUES (552, 'Perforated Right:');
2249 INSERT INTO `lang_constants` VALUES (553, 'Not Examined:');
2250 INSERT INTO `lang_constants` VALUES (554, 'SINUS TENDERNESS:');
2251 INSERT INTO `lang_constants` VALUES (555, 'No Sinus Tenderness:');
2252 INSERT INTO `lang_constants` VALUES (556, 'OROPHARYNX:');
2253 INSERT INTO `lang_constants` VALUES (557, 'Normal Oropharynx:');
2254 INSERT INTO `lang_constants` VALUES (558, 'Frontal Right:');
2255 INSERT INTO `lang_constants` VALUES (559, 'Erythema:');
2256 INSERT INTO `lang_constants` VALUES (560, 'Exudate:');
2257 INSERT INTO `lang_constants` VALUES (561, 'Abcess:');
2258 INSERT INTO `lang_constants` VALUES (562, 'Ulcers:');
2259 INSERT INTO `lang_constants` VALUES (563, 'Maxillary Right:');
2260 INSERT INTO `lang_constants` VALUES (564, 'HEART:');
2261 INSERT INTO `lang_constants` VALUES (565, 'laterally displaced PMI:');
2262 INSERT INTO `lang_constants` VALUES (566, 'S3:');
2263 INSERT INTO `lang_constants` VALUES (567, 'S4:');
2264 INSERT INTO `lang_constants` VALUES (568, 'Click:');
2265 INSERT INTO `lang_constants` VALUES (569, 'Rub:');
2266 INSERT INTO `lang_constants` VALUES (570, 'Murmur:');
2267 INSERT INTO `lang_constants` VALUES (571, 'Grade:');
2268 INSERT INTO `lang_constants` VALUES (572, 'Location:');
2269 INSERT INTO `lang_constants` VALUES (573, 'Normal Cardiac Exam:');
2270 INSERT INTO `lang_constants` VALUES (574, 'LUNGS:');
2271 INSERT INTO `lang_constants` VALUES (575, 'Breath Sounds:');
2272 INSERT INTO `lang_constants` VALUES (576, 'normal:');
2273 INSERT INTO `lang_constants` VALUES (577, 'reduced:');
2274 INSERT INTO `lang_constants` VALUES (578, 'increased:');
2275 INSERT INTO `lang_constants` VALUES (579, 'Crackles:');
2276 INSERT INTO `lang_constants` VALUES (580, 'LLL:');
2277 INSERT INTO `lang_constants` VALUES (581, 'RLL:');
2278 INSERT INTO `lang_constants` VALUES (582, 'Bilateral:');
2279 INSERT INTO `lang_constants` VALUES (583, 'Rubs:');
2280 INSERT INTO `lang_constants` VALUES (584, 'Wheezes:');
2281 INSERT INTO `lang_constants` VALUES (585, 'Diffuse:');
2282 INSERT INTO `lang_constants` VALUES (586, 'Normal Lung Exam:');
2283 INSERT INTO `lang_constants` VALUES (587, 'Diagnostic Tests:');
2284 INSERT INTO `lang_constants` VALUES (588, '465.9, URI');
2285 INSERT INTO `lang_constants` VALUES (589, '466.0, Bronchitis, Acute NOS');
2286 INSERT INTO `lang_constants` VALUES (590, '493.92, Asthma, Acute Exac.');
2287 INSERT INTO `lang_constants` VALUES (591, '491.8, Bronchitis, Chronic');
2288 INSERT INTO `lang_constants` VALUES (592, '496.0, COPD');
2289 INSERT INTO `lang_constants` VALUES (593, '491.21, COPD Exacerbation');
2290 INSERT INTO `lang_constants` VALUES (594, '486.0, Pneumonia, Acute');
2291 INSERT INTO `lang_constants` VALUES (595, '519.7, Bronchospasm');
2292 INSERT INTO `lang_constants` VALUES (596, 'Additional Diagnosis:');
2293 INSERT INTO `lang_constants` VALUES (597, 'Treatment:');
2294 INSERT INTO `lang_constants` VALUES (598, 'Onset of Ilness:');
2295 INSERT INTO `lang_constants` VALUES (599, 'Other Pertinent Symptoms');
2296 INSERT INTO `lang_constants` VALUES (600, 'NARES: Normal Right');
2297 INSERT INTO `lang_constants` VALUES (601, 'Discharge Right');
2298 INSERT INTO `lang_constants` VALUES (602, 'Not Examined');
2299 INSERT INTO `lang_constants` VALUES (603, 'Edit Diagnoses for');
2300 INSERT INTO `lang_constants` VALUES (604, 'Order');
2301 INSERT INTO `lang_constants` VALUES (605, 'WNL');
2302 INSERT INTO `lang_constants` VALUES (606, 'ABN1');
2303 INSERT INTO `lang_constants` VALUES (607, 'System');
2304 INSERT INTO `lang_constants` VALUES (608, 'Specific');
2305 INSERT INTO `lang_constants` VALUES (609, 'Appearance');
2306 INSERT INTO `lang_constants` VALUES (610, 'Conjuntiva, pupils');
2307 INSERT INTO `lang_constants` VALUES (611, 'TMs/EAMs/EE, ext nose');
2308 INSERT INTO `lang_constants` VALUES (612, 'Nasal mucosa pink, septum midline');
2309 INSERT INTO `lang_constants` VALUES (613, 'Oral mucosa pink, throat clear');
2310 INSERT INTO `lang_constants` VALUES (614, 'Neck supple');
2311 INSERT INTO `lang_constants` VALUES (615, 'Thyroid normal');
2312 INSERT INTO `lang_constants` VALUES (616, 'RRR without MOR');
2313 INSERT INTO `lang_constants` VALUES (617, 'No thrills or heaves');
2314 INSERT INTO `lang_constants` VALUES (618, 'Cartoid pulsations nl, pedal pulses nl');
2315 INSERT INTO `lang_constants` VALUES (619, 'No peripheral edema');
2316 INSERT INTO `lang_constants` VALUES (620, 'No skin dimpling or breast nodules');
2317 INSERT INTO `lang_constants` VALUES (621, 'Chest CTAB');
2318 INSERT INTO `lang_constants` VALUES (622, 'Respirator effort unlabored');
2319 INSERT INTO `lang_constants` VALUES (623, 'No masses, tenderness');
2320 INSERT INTO `lang_constants` VALUES (624, 'No ogrganomegoly');
2321 INSERT INTO `lang_constants` VALUES (625, 'No hernia');
2322 INSERT INTO `lang_constants` VALUES (626, 'Anus nl, no rectal tenderness/mass');
2323 INSERT INTO `lang_constants` VALUES (627, 'No testicular tenderness, masses');
2324 INSERT INTO `lang_constants` VALUES (628, 'Prostate w/o enlrgmt, nodules, tender');
2325 INSERT INTO `lang_constants` VALUES (629, 'Nl ext genitalia, vag mucosa, cervix');
2326 INSERT INTO `lang_constants` VALUES (630, 'No adnexal tenderness/masses');
2327 INSERT INTO `lang_constants` VALUES (631, 'No adenopathy (2 areas required)');
2328 INSERT INTO `lang_constants` VALUES (632, 'Strength');
2329 INSERT INTO `lang_constants` VALUES (633, 'ROM');
2330 INSERT INTO `lang_constants` VALUES (634, 'Stability');
2331 INSERT INTO `lang_constants` VALUES (635, 'Inspection');
2332 INSERT INTO `lang_constants` VALUES (636, 'CN2-12 intact');
2333 INSERT INTO `lang_constants` VALUES (637, 'Reflexes normal');
2334 INSERT INTO `lang_constants` VALUES (638, 'Sensory exam normal');
2335 INSERT INTO `lang_constants` VALUES (639, 'Orientated x 3');
2336 INSERT INTO `lang_constants` VALUES (640, 'Affect normal');
2337 INSERT INTO `lang_constants` VALUES (641, 'No rash or abnormal lesions');
2338 INSERT INTO `lang_constants` VALUES (642, 'Labs');
2339 INSERT INTO `lang_constants` VALUES (643, 'X-ray');
2340 INSERT INTO `lang_constants` VALUES (644, 'Return Visit');
2341 INSERT INTO `lang_constants` VALUES (645, 'Speech Dictation');
2342 INSERT INTO `lang_constants` VALUES (646, 'Dictation:');
2343 INSERT INTO `lang_constants` VALUES (647, 'Checked box = yes , empty = no');
2344 INSERT INTO `lang_constants` VALUES (648, 'BOX 10 A. Employment related');
2345 INSERT INTO `lang_constants` VALUES (649, 'BOX 10 B. Auto Accident');
2346 INSERT INTO `lang_constants` VALUES (650, 'BOX 10 C. Other Accident');
2347 INSERT INTO `lang_constants` VALUES (651, 'BOX 16. Date unable to work from (yyyy-mm-dd):');
2348 INSERT INTO `lang_constants` VALUES (652, 'BOX 16. Date unable to work to (yyyy-mm-dd):');
2349 INSERT INTO `lang_constants` VALUES (653, 'BOX 18. Hospitalization date from (yyyy-mm-dd):');
2350 INSERT INTO `lang_constants` VALUES (654, 'BOX 18. Hospitalization date to (yyyy-mm-dd):');
2351 INSERT INTO `lang_constants` VALUES (655, 'BOX 20. Is Outside Lab used?');
2352 INSERT INTO `lang_constants` VALUES (656, 'BOX 22. Medicaid Resubmission Code (ICD-9)');
2353 INSERT INTO `lang_constants` VALUES (657, 'Medicaid Original Reference No.');
2354 INSERT INTO `lang_constants` VALUES (658, 'BOX 23. Prior Authorization No.');
2355 INSERT INTO `lang_constants` VALUES (659, 'Follow manually');
2356 INSERT INTO `lang_constants` VALUES (660, 'OpenEMR requires Javascript to perform user authentication.');
2357 INSERT INTO `lang_constants` VALUES (661, 'Logs Viewer');
2358 INSERT INTO `lang_constants` VALUES (662, 'Refresh');
2359 INSERT INTO `lang_constants` VALUES (663, 'List Insurance Companies');
2360 INSERT INTO `lang_constants` VALUES (664, 'Attn');
2361 INSERT INTO `lang_constants` VALUES (665, 'Address');
2362 INSERT INTO `lang_constants` VALUES (666, 'Other HCFA');
2363 INSERT INTO `lang_constants` VALUES (667, 'Medicare Part B');
2364 INSERT INTO `lang_constants` VALUES (668, 'Medicaid');
2365 INSERT INTO `lang_constants` VALUES (669, 'ChampUSVA');
2366 INSERT INTO `lang_constants` VALUES (670, 'ChampUS');
2367 INSERT INTO `lang_constants` VALUES (671, 'Blue Cross Blue Shield');
2368 INSERT INTO `lang_constants` VALUES (672, 'FECA');
2369 INSERT INTO `lang_constants` VALUES (673, 'Self Pay');
2370 INSERT INTO `lang_constants` VALUES (674, 'Central Certification');
2371 INSERT INTO `lang_constants` VALUES (675, 'Other Non-Federal Programs');
2372 INSERT INTO `lang_constants` VALUES (676, 'Preferred Provider Organization (PPO)');
2373 INSERT INTO `lang_constants` VALUES (677, 'Point of Service (POS)');
2374 INSERT INTO `lang_constants` VALUES (678, 'Exclusive Provider Organization (EPO)');
2375 INSERT INTO `lang_constants` VALUES (679, 'Indemnity Insurance');
2376 INSERT INTO `lang_constants` VALUES (680, 'Health Maintenance Organization (HMO) Medicare Risk');
2377 INSERT INTO `lang_constants` VALUES (681, 'Automobile Medical');
2378 INSERT INTO `lang_constants` VALUES (682, 'Commercial Insurance Co.');
2379 INSERT INTO `lang_constants` VALUES (683, 'Disability');
2380 INSERT INTO `lang_constants` VALUES (684, 'Health Maintenance Organization');
2381 INSERT INTO `lang_constants` VALUES (685, 'Liability');
2382 INSERT INTO `lang_constants` VALUES (686, 'Liability Medical');
2383 INSERT INTO `lang_constants` VALUES (687, 'Other Federal Program');
2384 INSERT INTO `lang_constants` VALUES (688, 'Title V');
2385 INSERT INTO `lang_constants` VALUES (689, 'Veterans Administration Plan');
2386 INSERT INTO `lang_constants` VALUES (690, 'Workers Compensation Health Plan');
2387 INSERT INTO `lang_constants` VALUES (691, 'Mutually Defined');
2388 INSERT INTO `lang_constants` VALUES (692, 'Insurance Company Search/Add');
2389 INSERT INTO `lang_constants` VALUES (693, 'Name of insurance company');
2390 INSERT INTO `lang_constants` VALUES (694, 'Attention');
2391 INSERT INTO `lang_constants` VALUES (695, 'Contact name');
2392 INSERT INTO `lang_constants` VALUES (696, 'Address1');
2393 INSERT INTO `lang_constants` VALUES (697, 'Address2');
2394 INSERT INTO `lang_constants` VALUES (698, 'City/State');
2395 INSERT INTO `lang_constants` VALUES (699, 'Zip/Country:');
2396 INSERT INTO `lang_constants` VALUES (700, 'CMS ID');
2397 INSERT INTO `lang_constants` VALUES (701, 'Payer Type');
2398 INSERT INTO `lang_constants` VALUES (702, 'X12 Partner');
2399 INSERT INTO `lang_constants` VALUES (703, 'None');
2400 INSERT INTO `lang_constants` VALUES (704, 'Forms Administration');
2401 INSERT INTO `lang_constants` VALUES (705, 'Registered');
2402 INSERT INTO `lang_constants` VALUES (706, 'click here to update priority, category and nickname settings');
2403 INSERT INTO `lang_constants` VALUES (707, 'Priority');
2404 INSERT INTO `lang_constants` VALUES (708, 'Nickname');
2405 INSERT INTO `lang_constants` VALUES (709, 'disabled');
2406 INSERT INTO `lang_constants` VALUES (710, 'enabled');
2407 INSERT INTO `lang_constants` VALUES (711, 'PHP extracted');
2408 INSERT INTO `lang_constants` VALUES (712, 'PHP compressed');
2409 INSERT INTO `lang_constants` VALUES (713, 'DB installed');
2410 INSERT INTO `lang_constants` VALUES (714, 'install DB');
2411 INSERT INTO `lang_constants` VALUES (715, 'Unregistered');
2412 INSERT INTO `lang_constants` VALUES (716, 'msec');
2413 INSERT INTO `lang_constants` VALUES (717, 'Logged in as:');
2414 INSERT INTO `lang_constants` VALUES (718, 'Superbill');
2415 INSERT INTO `lang_constants` VALUES (719, 'Codes');
2416 INSERT INTO `lang_constants` VALUES (720, 'Some codes were not displayed.');
2417 INSERT INTO `lang_constants` VALUES (721, 'Clear Justification');
2418 INSERT INTO `lang_constants` VALUES (722, 'Copay');
2419 INSERT INTO `lang_constants` VALUES (723, 'Generated on');
2420 INSERT INTO `lang_constants` VALUES (724, 'Date Of Service');
2421 INSERT INTO `lang_constants` VALUES (725, 'History Data');
2422 INSERT INTO `lang_constants` VALUES (726, 'Employer Data');
2423 INSERT INTO `lang_constants` VALUES (727, 'Patient Immunization');
2424 INSERT INTO `lang_constants` VALUES (728, 'Patient Transactions');
2425 INSERT INTO `lang_constants` VALUES (729, 'Note');
2426 INSERT INTO `lang_constants` VALUES (730, 'cannot be displayed inline becuase its type is not supported by the browser');
2427 INSERT INTO `lang_constants` VALUES (731, 'Thank You');
2428 INSERT INTO `lang_constants` VALUES (732, 'code type');
2429 INSERT INTO `lang_constants` VALUES (733, 'Please pay this amount');
2430 INSERT INTO `lang_constants` VALUES (734, 'This Encounter');
2431 INSERT INTO `lang_constants` VALUES (735, 'Walt Pennington');
2432 INSERT INTO `lang_constants` VALUES (736, 'Info test 1');
2433 INSERT INTO `lang_constants` VALUES (737, 'Info test 2');
2434 INSERT INTO `lang_constants` VALUES (738, 'Info test 3');
2435 INSERT INTO `lang_constants` VALUES (739, 'Info test 4');
2436 INSERT INTO `lang_constants` VALUES (740, 'Info test 5');
2437 INSERT INTO `lang_constants` VALUES (741, 'Info test 6');
2438 INSERT INTO `lang_constants` VALUES (742, 'Superbill Codes');
2439 INSERT INTO `lang_constants` VALUES (743, 'Not all fields are required for all codes or code types.');
2440 INSERT INTO `lang_constants` VALUES (744, 'Code Text');
2441 INSERT INTO `lang_constants` VALUES (745, 'Modifier');
2442 INSERT INTO `lang_constants` VALUES (746, 'Include in Superbill');
2443 INSERT INTO `lang_constants` VALUES (747, 'Add Code');
2444 INSERT INTO `lang_constants` VALUES (748, 'Prev 100');
2445 INSERT INTO `lang_constants` VALUES (749, 'Next 100');
2446 INSERT INTO `lang_constants` VALUES (750, 'Coding not authorized');
2447 INSERT INTO `lang_constants` VALUES (751, 'Receipt');
2448 INSERT INTO `lang_constants` VALUES (752, 'Patient Encounters');
2449 INSERT INTO `lang_constants` VALUES (753, 'New Patient Encounter');
2450 INSERT INTO `lang_constants` VALUES (754, 'Coding');
2451 INSERT INTO `lang_constants` VALUES (755, 'Prescriptions');
2452 INSERT INTO `lang_constants` VALUES (756, 'List Prescriptions');
2453 INSERT INTO `lang_constants` VALUES (757, 'Add Prescription');
2454 INSERT INTO `lang_constants` VALUES (758, 'You are not authorized for this.');
2455 INSERT INTO `lang_constants` VALUES (759, 'Issues and Encounters');
2456 INSERT INTO `lang_constants` VALUES (760, 'Issues and Encounters for');
2457 INSERT INTO `lang_constants` VALUES (761, 'Issues Section');
2458 INSERT INTO `lang_constants` VALUES (762, 'Encounters Section');
2459 INSERT INTO `lang_constants` VALUES (763, 'Presenting Complaint');
2460 INSERT INTO `lang_constants` VALUES (764, 'Instructions:');
2461 INSERT INTO `lang_constants` VALUES (765, 'Cash');
2462 INSERT INTO `lang_constants` VALUES (766, 'Check');
2463 INSERT INTO `lang_constants` VALUES (767, 'MC');
2464 INSERT INTO `lang_constants` VALUES (768, 'VISA');
2465 INSERT INTO `lang_constants` VALUES (769, 'AMEX');
2466 INSERT INTO `lang_constants` VALUES (770, 'DISC');
2467 INSERT INTO `lang_constants` VALUES (771, 'Receipt for Payment');
2468 INSERT INTO `lang_constants` VALUES (772, 'Paid Via');
2469 INSERT INTO `lang_constants` VALUES (773, 'Check/Ref Number');
2470 INSERT INTO `lang_constants` VALUES (774, 'Amount for This Visit');
2471 INSERT INTO `lang_constants` VALUES (775, 'Amount for Past Balance');
2472 INSERT INTO `lang_constants` VALUES (776, 'Received By');
2473 INSERT INTO `lang_constants` VALUES (777, 'Print');
2474 INSERT INTO `lang_constants` VALUES (778, 'Record Payment');
2475 INSERT INTO `lang_constants` VALUES (779, 'Accept Payment for');
2476 INSERT INTO `lang_constants` VALUES (780, 'Payment Method');
2477 INSERT INTO `lang_constants` VALUES (781, 'Check/Reference Number');
2478 INSERT INTO `lang_constants` VALUES (782, 'Amount for Todays Visit');
2479 INSERT INTO `lang_constants` VALUES (783, 'Amount for Prior Balance');
2480 INSERT INTO `lang_constants` VALUES (784, 'Logged in as');
2481 INSERT INTO `lang_constants` VALUES (785, 'New Appointment');
2482 INSERT INTO `lang_constants` VALUES (786, 'Patient Issues');
2483 INSERT INTO `lang_constants` VALUES (787, 'Begin');
2484 INSERT INTO `lang_constants` VALUES (788, 'End');
2485 INSERT INTO `lang_constants` VALUES (789, 'Diag');
2486 INSERT INTO `lang_constants` VALUES (790, 'Occurrence');
2487 INSERT INTO `lang_constants` VALUES (791, 'Missed');
2488 INSERT INTO `lang_constants` VALUES (792, 'RefBy');
2489 INSERT INTO `lang_constants` VALUES (793, 'Enc');
2490 INSERT INTO `lang_constants` VALUES (794, 'Patient Summary');
2491 INSERT INTO `lang_constants` VALUES (795, 'Issue');
2492 INSERT INTO `lang_constants` VALUES (796, 'Begin Date');
2493 INSERT INTO `lang_constants` VALUES (797, 'yyyy-mm-dd date of onset, surgery or start of medication');
2494 INSERT INTO `lang_constants` VALUES (798, 'yyyy-mm-dd date of recovery or end of medication');
2495 INSERT INTO `lang_constants` VALUES (799, 'leave blank if still active');
2496 INSERT INTO `lang_constants` VALUES (800, 'Active');
2497 INSERT INTO `lang_constants` VALUES (801, 'Indicates if this issue is currently active');
2498 INSERT INTO `lang_constants` VALUES (802, 'Returned to Play');
2499 INSERT INTO `lang_constants` VALUES (803, 'yyyy-mm-dd date returned to play');
2500 INSERT INTO `lang_constants` VALUES (804, 'Diagnosis must be coded into a linked encounter');
2501 INSERT INTO `lang_constants` VALUES (805, 'Classification');
2502 INSERT INTO `lang_constants` VALUES (806, 'Number of games or events missed, if any');
2503 INSERT INTO `lang_constants` VALUES (807, 'games/events');
2504 INSERT INTO `lang_constants` VALUES (808, 'Referred by');
2505 INSERT INTO `lang_constants` VALUES (809, 'Referring physician and practice');
2506 INSERT INTO `lang_constants` VALUES (810, 'Outcome');
2507 INSERT INTO `lang_constants` VALUES (811, 'Destination');
2508 INSERT INTO `lang_constants` VALUES (812, 'Demographics');
2509 INSERT INTO `lang_constants` VALUES (813, 'Mrs');
2510 INSERT INTO `lang_constants` VALUES (814, 'Ms');
2511 INSERT INTO `lang_constants` VALUES (815, 'Mr');
2512 INSERT INTO `lang_constants` VALUES (816, 'Dr');
2513 INSERT INTO `lang_constants` VALUES (817, 'Number');
2514 INSERT INTO `lang_constants` VALUES (818, 'Emergency Contact');
2515 INSERT INTO `lang_constants` VALUES (819, 'Female');
2516 INSERT INTO `lang_constants` VALUES (820, 'Male');
2517 INSERT INTO `lang_constants` VALUES (821, 'Emergency Phone');
2518 INSERT INTO `lang_constants` VALUES (822, 'S.S.');
2519 INSERT INTO `lang_constants` VALUES (823, 'Mobile Phone');
2520 INSERT INTO `lang_constants` VALUES (824, 'License/ID');
2521 INSERT INTO `lang_constants` VALUES (825, 'Contact Email');
2522 INSERT INTO `lang_constants` VALUES (826, 'Country');
2523 INSERT INTO `lang_constants` VALUES (827, 'List Immediate Family Members');
2524 INSERT INTO `lang_constants` VALUES (828, 'User Defined Fields');
2525 INSERT INTO `lang_constants` VALUES (829, 'Marital Status');
2526 INSERT INTO `lang_constants` VALUES (830, 'Unassigned');
2527 INSERT INTO `lang_constants` VALUES (831, 'Pharmacy');
2528 INSERT INTO `lang_constants` VALUES (832, 'Save Patient Demographics');
2529 INSERT INTO `lang_constants` VALUES (833, 'HIPAA Choices');
2530 INSERT INTO `lang_constants` VALUES (834, 'Did you receive a copy of the HIPAA Notice?');
2531 INSERT INTO `lang_constants` VALUES (835, 'Allow Voice Msg');
2532 INSERT INTO `lang_constants` VALUES (836, 'Allow Mail');
2533 INSERT INTO `lang_constants` VALUES (837, 'Who may we leave a message with?');
2534 INSERT INTO `lang_constants` VALUES (838, 'Occupation');
2535 INSERT INTO `lang_constants` VALUES (839, 'Employer');
2536 INSERT INTO `lang_constants` VALUES (840, 'if unemployed enter Student, PT Student, or leave blank');
2537 INSERT INTO `lang_constants` VALUES (841, 'Employer Address');
2538 INSERT INTO `lang_constants` VALUES (842, 'Language');
2539 INSERT INTO `lang_constants` VALUES (843, 'Race/Ethnicity');
2540 INSERT INTO `lang_constants` VALUES (844, 'Financial Review Date');
2541 INSERT INTO `lang_constants` VALUES (845, 'Family Size');
2542 INSERT INTO `lang_constants` VALUES (846, 'Monthly Income');
2543 INSERT INTO `lang_constants` VALUES (847, 'Homeless, etc.');
2544 INSERT INTO `lang_constants` VALUES (848, 'Interpreter');
2545 INSERT INTO `lang_constants` VALUES (849, 'Migrant/Seasonal');
2546 INSERT INTO `lang_constants` VALUES (850, 'Search/Add Insurer');
2547 INSERT INTO `lang_constants` VALUES (851, 'Plan Name');
2548 INSERT INTO `lang_constants` VALUES (852, 'Policy Number');
2549 INSERT INTO `lang_constants` VALUES (853, 'Group Number');
2550 INSERT INTO `lang_constants` VALUES (854, 'Subscriber Employer (SE)');
2551 INSERT INTO `lang_constants` VALUES (855, 'if unemployed enter Student');
2552 INSERT INTO `lang_constants` VALUES (856, 'SE Address');
2553 INSERT INTO `lang_constants` VALUES (857, 'SE City');
2554 INSERT INTO `lang_constants` VALUES (858, 'SE');
2555 INSERT INTO `lang_constants` VALUES (859, 'SE Country');
2556 INSERT INTO `lang_constants` VALUES (860, 'Subscriber');
2557 INSERT INTO `lang_constants` VALUES (861, 'Relationship');
2558 INSERT INTO `lang_constants` VALUES (862, 'Browse');
2559 INSERT INTO `lang_constants` VALUES (863, 'D.O.B.');
2560 INSERT INTO `lang_constants` VALUES (864, 'Subscriber Address');
2561 INSERT INTO `lang_constants` VALUES (865, 'Subscriber Phone');
2562 INSERT INTO `lang_constants` VALUES (866, 'Browse for Record');
2563 INSERT INTO `lang_constants` VALUES (867, 'Copy Values');
2564 INSERT INTO `lang_constants` VALUES (868, 'Insurance Provider');
2565 INSERT INTO `lang_constants` VALUES (869, 'Primary');
2566 INSERT INTO `lang_constants` VALUES (870, 'Secondary');
2567 INSERT INTO `lang_constants` VALUES (871, 'Tertiary');
2568 INSERT INTO `lang_constants` VALUES (872, 'Amend Existing Note');
2569 INSERT INTO `lang_constants` VALUES (873, 'Append to This Note');
2570 INSERT INTO `lang_constants` VALUES (874, 'View');
2571 INSERT INTO `lang_constants` VALUES (875, 'Immunizations');
2572 INSERT INTO `lang_constants` VALUES (876, 'Immunization');
2573 INSERT INTO `lang_constants` VALUES (877, 'Date Administered');
2574 INSERT INTO `lang_constants` VALUES (878, 'Immunization Manufacturer');
2575 INSERT INTO `lang_constants` VALUES (879, 'Immunization Lot Number');
2576 INSERT INTO `lang_constants` VALUES (880, 'Name and Title of Immunization Administrator');
2577 INSERT INTO `lang_constants` VALUES (881, 'Date Immunization Information Statements Given');
2578 INSERT INTO `lang_constants` VALUES (882, 'Print Shot Record');
2579 INSERT INTO `lang_constants` VALUES (883, 'Save Immunization');
2580 INSERT INTO `lang_constants` VALUES (884, 'Clear');
2581 INSERT INTO `lang_constants` VALUES (885, 'Edit');
2582 INSERT INTO `lang_constants` VALUES (886, 'Issues not authorized');
2583 INSERT INTO `lang_constants` VALUES (887, 'Start');
2584 INSERT INTO `lang_constants` VALUES (888, 'Return');
2585 INSERT INTO `lang_constants` VALUES (889, 'Demographics not authorized');
2586 INSERT INTO `lang_constants` VALUES (890, 'Email');
2587 INSERT INTO `lang_constants` VALUES (891, 'Billing Note');
2588 INSERT INTO `lang_constants` VALUES (892, 'Fitness to Play');
2589 INSERT INTO `lang_constants` VALUES (893, 'Primary Insurance Provider');
2590 INSERT INTO `lang_constants` VALUES (894, 'Secondary Insurance Provider');
2591 INSERT INTO `lang_constants` VALUES (895, 'Tertiary Insurance Provider');
2592 INSERT INTO `lang_constants` VALUES (896, 'Some notes were not displayed. Click here to view all');
2593 INSERT INTO `lang_constants` VALUES (897, 'Transaction Type');
2594 INSERT INTO `lang_constants` VALUES (898, 'Referral');
2595 INSERT INTO `lang_constants` VALUES (899, 'Patient Request');
2596 INSERT INTO `lang_constants` VALUES (900, 'Physician Request');
2597 INSERT INTO `lang_constants` VALUES (901, 'Legal');
2598 INSERT INTO `lang_constants` VALUES (902, 'Details');
2599 INSERT INTO `lang_constants` VALUES (903, 'Add New Transaction');
2600 INSERT INTO `lang_constants` VALUES (904, 'Patient Record Report');
2601 INSERT INTO `lang_constants` VALUES (905, 'Normal View');
2602 INSERT INTO `lang_constants` VALUES (906, 'Allergies');
2603 INSERT INTO `lang_constants` VALUES (907, 'Medications');
2604 INSERT INTO `lang_constants` VALUES (908, 'Medical Problems');
2605 INSERT INTO `lang_constants` VALUES (909, 'Patient Comunication Sent');
2606 INSERT INTO `lang_constants` VALUES (910, 'Forms');
2607 INSERT INTO `lang_constants` VALUES (911, 'Patient Allergies');
2608 INSERT INTO `lang_constants` VALUES (912, 'Patient Medications');
2609 INSERT INTO `lang_constants` VALUES (913, 'Patient Medical Problems');
2610 INSERT INTO `lang_constants` VALUES (914, 'cannot be displayed inline becuase its type is not supported by the browser.');
2611 INSERT INTO `lang_constants` VALUES (915, 'cannot be converted to JPEG. Perhaps ImageMagick is not installed?');
2612 INSERT INTO `lang_constants` VALUES (916, 'Signature');
2613 INSERT INTO `lang_constants` VALUES (917, 'Patient Report');
2614 INSERT INTO `lang_constants` VALUES (918, 'Printable Version');
2615 INSERT INTO `lang_constants` VALUES (919, 'Patient Communication sent');
2616 INSERT INTO `lang_constants` VALUES (920, 'cannot be displayed inline because its type is not supported by the browser.');
2617 INSERT INTO `lang_constants` VALUES (921, 'View Comprehensive Patient Report');
2618 INSERT INTO `lang_constants` VALUES (922, 'Generate Report');
2619 INSERT INTO `lang_constants` VALUES (923, 'Issues to Include in this Report');
2620 INSERT INTO `lang_constants` VALUES (924, 'Encounter Forms to Include in this Report');
2621 INSERT INTO `lang_constants` VALUES (925, 'Documents');
2622 INSERT INTO `lang_constants` VALUES (926, 'Summary');
2623 INSERT INTO `lang_constants` VALUES (927, 'History');
2624 INSERT INTO `lang_constants` VALUES (928, 'Transaction');
2625 INSERT INTO `lang_constants` VALUES (929, 'Report');
2626 INSERT INTO `lang_constants` VALUES (930, 'Patient History / Lifestyle');
2627 INSERT INTO `lang_constants` VALUES (931, 'Family History');
2628 INSERT INTO `lang_constants` VALUES (932, 'Relatives');
2629 INSERT INTO `lang_constants` VALUES (933, 'Lifestyle');
2630 INSERT INTO `lang_constants` VALUES (934, 'Date of Last');
2631 INSERT INTO `lang_constants` VALUES (935, 'Additional History');
2632 INSERT INTO `lang_constants` VALUES (936, 'Encounters not authorized');
2633 INSERT INTO `lang_constants` VALUES (937, 'Past Encounters');
2634 INSERT INTO `lang_constants` VALUES (938, 'Reason/Form');
2635 INSERT INTO `lang_constants` VALUES (939, 'weight_loss_clinic');
2636 INSERT INTO `lang_constants` VALUES (940, 'Some encounters were not displayed. Click here to view all.');
2637 INSERT INTO `lang_constants` VALUES (941, 'No access');
2638 INSERT INTO `lang_constants` VALUES (942, 'Reason');
2639 INSERT INTO `lang_constants` VALUES (943, 'Father');
2640 INSERT INTO `lang_constants` VALUES (944, 'Mother');
2641 INSERT INTO `lang_constants` VALUES (945, 'Siblings');
2642 INSERT INTO `lang_constants` VALUES (946, 'Spouse');
2643 INSERT INTO `lang_constants` VALUES (947, 'Offspring');
2644 INSERT INTO `lang_constants` VALUES (948, 'Cancer');
2645 INSERT INTO `lang_constants` VALUES (949, 'Tuberculosis');
2646 INSERT INTO `lang_constants` VALUES (950, 'Diabetes');
2647 INSERT INTO `lang_constants` VALUES (951, 'High Blood Pressure');
2648 INSERT INTO `lang_constants` VALUES (952, 'Heart Problems');
2649 INSERT INTO `lang_constants` VALUES (953, 'Stroke');
2650 INSERT INTO `lang_constants` VALUES (954, 'Epilepsy');
2651 INSERT INTO `lang_constants` VALUES (955, 'Mental Illness');
2652 INSERT INTO `lang_constants` VALUES (956, 'Suicide');
2653 INSERT INTO `lang_constants` VALUES (957, 'Coffee');
2654 INSERT INTO `lang_constants` VALUES (958, 'Tobacco');
2655 INSERT INTO `lang_constants` VALUES (959, 'Alcohol');
2656 INSERT INTO `lang_constants` VALUES (960, 'Sleep Patterns');
2657 INSERT INTO `lang_constants` VALUES (961, 'Exercise Patterns');
2658 INSERT INTO `lang_constants` VALUES (962, 'Seatbelt Use');
2659 INSERT INTO `lang_constants` VALUES (963, 'Counseling');
2660 INSERT INTO `lang_constants` VALUES (964, 'Hazardous Activities');
2661 INSERT INTO `lang_constants` VALUES (965, 'Date/Notes of Last');
2662 INSERT INTO `lang_constants` VALUES (966, 'Nor');
2663 INSERT INTO `lang_constants` VALUES (967, 'Abn');
2664 INSERT INTO `lang_constants` VALUES (968, '** Please move surgeries to Issues!');
2665 INSERT INTO `lang_constants` VALUES (969, 'Patient History');
2666 INSERT INTO `lang_constants` VALUES (970, '08 Cardiac Echo');
2667 INSERT INTO `lang_constants` VALUES (971, '07 ECG');
2668 INSERT INTO `lang_constants` VALUES (972, '05 Physical Exam');
2669 INSERT INTO `lang_constants` VALUES (973, '00 Breast Exam');
2670 INSERT INTO `lang_constants` VALUES (974, '01 Mammogram');
2671 INSERT INTO `lang_constants` VALUES (975, '02 Gynecological Exam');
2672 INSERT INTO `lang_constants` VALUES (976, '04 Prostate Exam');
2673 INSERT INTO `lang_constants` VALUES (977, '03 Rectal Exam');
2674 INSERT INTO `lang_constants` VALUES (978, '06 Sigmoid/Colonoscopy');
2675 INSERT INTO `lang_constants` VALUES (979, 'Cataract Surgery');
2676 INSERT INTO `lang_constants` VALUES (980, 'Tonsillectomy');
2677 INSERT INTO `lang_constants` VALUES (981, 'Appendectomy');
2678 INSERT INTO `lang_constants` VALUES (982, 'Cholecystestomy');
2679 INSERT INTO `lang_constants` VALUES (983, 'Heart Surgery');
2680 INSERT INTO `lang_constants` VALUES (984, 'Hysterectomy');
2681 INSERT INTO `lang_constants` VALUES (985, 'Hernia Repair');
2682 INSERT INTO `lang_constants` VALUES (986, 'Hip Replacement');
2683 INSERT INTO `lang_constants` VALUES (987, 'Knee Replacement');
2684 INSERT INTO `lang_constants` VALUES (988, 'Delete Patient, Encounter, Form, Issue or Document');
2685 INSERT INTO `lang_constants` VALUES (989, 'and all subordinate data? This action will be logged');
2686 INSERT INTO `lang_constants` VALUES (990, 'Balance Due');
2687 INSERT INTO `lang_constants` VALUES (991, 'Patient Checkout');
2688 INSERT INTO `lang_constants` VALUES (992, 'Patient Checkout for');
2689 INSERT INTO `lang_constants` VALUES (993, 'Amount Paid');
2690 INSERT INTO `lang_constants` VALUES (994, 'Posting Date');
2691 INSERT INTO `lang_constants` VALUES (995, 'Lab');
2692 INSERT INTO `lang_constants` VALUES (996, 'Therapeutic Injections');
2693 INSERT INTO `lang_constants` VALUES (997, 'Receipts for Medical Services');
2694 INSERT INTO `lang_constants` VALUES (998, 'Cash Receipts');
2695 INSERT INTO `lang_constants` VALUES (999, 'InvAmt');
2696 INSERT INTO `lang_constants` VALUES (1000, 'Prof.');
2697 INSERT INTO `lang_constants` VALUES (1001, 'Clinic');
2698 INSERT INTO `lang_constants` VALUES (1002, 'Totals for');
2699 INSERT INTO `lang_constants` VALUES (1003, 'Grand Totals');
2700 INSERT INTO `lang_constants` VALUES (1004, 'EOB Posting - Patient Note');
2701 INSERT INTO `lang_constants` VALUES (1005, 'Billing Note for');
2702 INSERT INTO `lang_constants` VALUES (1006, 'Billing queue results:');
2703 INSERT INTO `lang_constants` VALUES (1007, 'EOB Posting - Instructions');
2704 INSERT INTO `lang_constants` VALUES (1008, 'EOB Data Entry');
2705 INSERT INTO `lang_constants` VALUES (1009, 'This module promotes efficient entry of EOB data.');
2706 INSERT INTO `lang_constants` VALUES (1010, 'After the information is correctly entered, click the Save button.');
2707 INSERT INTO `lang_constants` VALUES (1011, 'Request ignored - claims processing is already running!');
2708 INSERT INTO `lang_constants` VALUES (1012, 'Batch processing initiated; this may take a while.');
2709 INSERT INTO `lang_constants` VALUES (1013, 'Billing Report');
2710 INSERT INTO `lang_constants` VALUES (1014, '[Change View]');
2711 INSERT INTO `lang_constants` VALUES (1015, '[Export OFX]');
2712 INSERT INTO `lang_constants` VALUES (1016, '[View Printable Report]');
2713 INSERT INTO `lang_constants` VALUES (1017, '[Reports]');
2714 INSERT INTO `lang_constants` VALUES (1018, '[EOBs]');
2715 INSERT INTO `lang_constants` VALUES (1019, '[Start Batch Processing]');
2716 INSERT INTO `lang_constants` VALUES (1020, '[view log]');
2717 INSERT INTO `lang_constants` VALUES (1021, '[Select All]');
2718 INSERT INTO `lang_constants` VALUES (1022, 'Run Test');
2719 INSERT INTO `lang_constants` VALUES (1023, 'process_date');
2720 INSERT INTO `lang_constants` VALUES (1024, 'key');
2721 INSERT INTO `lang_constants` VALUES (1025, 'Printing results:');
2722 INSERT INTO `lang_constants` VALUES (1026, 'X-ray not taken within the past 12 months or near enough to the start of treatment.');
2723 INSERT INTO `lang_constants` VALUES (1027, 'Not paid separately when the patient is an inpatient.');
2724 INSERT INTO `lang_constants` VALUES (1028, 'Equipment is the same or similar to equipment already being used.');
2725 INSERT INTO `lang_constants` VALUES (1029, 'This is the last monthly installment payment for this durable medical equipment.');
2726 INSERT INTO `lang_constants` VALUES (1030, 'Monthly rental payments can continue until the earlier of the 15th month from the first rental month, or the month when the equipment is no longer needed.');
2727 INSERT INTO `lang_constants` VALUES (1031, 'You must furnish and service this item for as long as the patient continues to need it. We can pay for maintenance and/or servicing for every 6 month period after the end of the 15th paid rental month or the end of the warranty period.');
2728 INSERT INTO `lang_constants` VALUES (1032, 'No rental payments after the item is purchased, or after the total of issued rental payments equals the purchase price.');
2729 INSERT INTO `lang_constants` VALUES (1033, 'We do not accept blood gas tests results when the test was conducted by a medical supplier or taken while the patient is on oxygen.');
2730 INSERT INTO `lang_constants` VALUES (1034, 'This is the tenth rental month. You must offer the patient the choice of changing the rental to a purchase agreement.');
2731 INSERT INTO `lang_constants` VALUES (1035, 'Equipment purchases are limited to the first or the tenth month of medical necessity.');
2732 INSERT INTO `lang_constants` VALUES (1036, 'DME, orthotics and prosthetics must be billed to the DME carrier who services the patient''s zip code.');
2733 INSERT INTO `lang_constants` VALUES (1037, 'Diagnostic tests performed by a physician must indicate whether purchased services are included on the claim.');
2734 INSERT INTO `lang_constants` VALUES (1038, 'Only one initial visit is covered per specialty per medical group.');
2735 INSERT INTO `lang_constants` VALUES (1039, 'No separate payment for an injection administered during an office visit, and no payment for a full office visit if the patient only received an injection.');
2736 INSERT INTO `lang_constants` VALUES (1040, 'Separately billed services/tests have been bundled as they are considered components of the same procedure. Separate payment is not allowed.');
2737 INSERT INTO `lang_constants` VALUES (1041, 'Please see our web site, mailings, or bulletins for more details concerning this policy/procedure/decision.');
2738 INSERT INTO `lang_constants` VALUES (1042, 'Payment approved as you did not know, and could not reasonably have been expected to know, that this would not normally have been covered for this patient. In the future, you will be liable for charges for the same service(s) under the same or similar con');
2739 INSERT INTO `lang_constants` VALUES (1043, 'Certain services may be approved for home use. Neither a hospital nor a Skilled Nursing Facility (SNF) is considered to be a patient''s home.');
2740 INSERT INTO `lang_constants` VALUES (1044, 'Missing oxygen certification/re-certification.');
2741 INSERT INTO `lang_constants` VALUES (1045, 'Missing/incomplete/invalid HCPCS.');
2742 INSERT INTO `lang_constants` VALUES (1046, 'Missing/incomplete/invalid place of residence for this service/item provided in a home.');
2743 INSERT INTO `lang_constants` VALUES (1047, 'Missing/incomplete/invalid number of miles traveled.');
2744 INSERT INTO `lang_constants` VALUES (1048, 'Missing invoice.');
2745 INSERT INTO `lang_constants` VALUES (1049, 'Missing/incomplete/invalid number of doses per vial.');
2746 INSERT INTO `lang_constants` VALUES (1050, 'Payment has been adjusted because the information furnished does not substantiate the need for this level of service. If you believe the service should have been fully covered as billed, or if you did not know and could not reasonably have been expected t');
2747 INSERT INTO `lang_constants` VALUES (1051, 'Payment has been adjusted because the information furnished does not substantiate the need for this level of service. If you have collected any amount from the patient for this level of service /any amount that exceeds the limiting charge for the less ext');
2748 INSERT INTO `lang_constants` VALUES (1052, 'The patient has been relieved of liability of payment of these items and services under the limitation of liability provision of the law. You, the provider, are ultimately liable for the patient''s waived charges, including any charges for coinsurance, sin');
2749 INSERT INTO `lang_constants` VALUES (1053, 'This does not qualify for payment under Part B when Part A coverage is exhausted or not otherwise available.');
2750 INSERT INTO `lang_constants` VALUES (1054, 'Missing operative report.');
2751 INSERT INTO `lang_constants` VALUES (1055, 'Missing pathology report.');
2752 INSERT INTO `lang_constants` VALUES (1056, 'Missing radiology report.');
2753 INSERT INTO `lang_constants` VALUES (1057, 'This is a conditional payment made pending a decision on this service by the patient''s primary payer. This payment may be subject to refund upon your receipt of any additional payment for this service from another payer. You must contact this office immed');
2754 INSERT INTO `lang_constants` VALUES (1058, 'This is the 11th rental month. We cannot pay for this until you indicate that the patient has been given the option of changing the rental to a purchase.');
2755 INSERT INTO `lang_constants` VALUES (1059, 'Service not covered when the patient is under age 35.');
2756 INSERT INTO `lang_constants` VALUES (1060, 'The patient is liable for the charges for this service as you informed the patient in writing before the service was furnished that we would not pay for it, and the patient agreed to pay.');
2757 INSERT INTO `lang_constants` VALUES (1061, 'The patient is not liable for payment for this service as the advance notice of non-coverage you provided the patient did not comply with program requirements.');
2758 INSERT INTO `lang_constants` VALUES (1062, 'Claim must be assigned and must be filed by the practitioner''s employer.');
2759 INSERT INTO `lang_constants` VALUES (1063, 'We do not pay for this as the patient has no legal obligation to pay for this.');
2760 INSERT INTO `lang_constants` VALUES (1064, 'The medical necessity form must be personally signed by the attending physician.');
2761 INSERT INTO `lang_constants` VALUES (1065, 'Missing/incomplete/invalid condition code.');
2762 INSERT INTO `lang_constants` VALUES (1066, 'Missing/incomplete/invalid occurrence code(s).');
2763 INSERT INTO `lang_constants` VALUES (1067, 'Missing/incomplete/invalid occurrence span code(s).');
2764 INSERT INTO `lang_constants` VALUES (1068, 'Missing/incomplete/invalid internal or document control number.');
2765 INSERT INTO `lang_constants` VALUES (1069, 'Missing/incomplete/invalid value code(s) or amount(s).');
2766 INSERT INTO `lang_constants` VALUES (1070, 'Missing/incomplete/invalid revenue code(s).');
2767 INSERT INTO `lang_constants` VALUES (1071, 'Missing/incomplete/invalid procedure code(s).');
2768 INSERT INTO `lang_constants` VALUES (1072, 'Missing/incomplete/invalid from date(s) of service.');
2769 INSERT INTO `lang_constants` VALUES (1073, 'Missing/incomplete/invalid days or units of service.');
2770 INSERT INTO `lang_constants` VALUES (1074, 'Missing/incomplete/invalid total charges.');
2771 INSERT INTO `lang_constants` VALUES (1075, 'We do not pay for self-administered anti-emetic drugs that are not administered with a covered oral anti-cancer drug.');
2772 INSERT INTO `lang_constants` VALUES (1076, 'Missing/incomplete/invalid payer identifier.');
2773 INSERT INTO `lang_constants` VALUES (1077, 'Missing/incomplete/invalid to date(s) of service.');
2774 INSERT INTO `lang_constants` VALUES (1078, 'Missing Certificate of Medical Necessity.');
2775 INSERT INTO `lang_constants` VALUES (1079, 'We cannot pay for this as the approval period for the FDA clinical trial has expired.');
2776 INSERT INTO `lang_constants` VALUES (1080, 'Missing/incomplete/invalid treatment authorization code.');
2777 INSERT INTO `lang_constants` VALUES (1081, 'Missing/incomplete/invalid other diagnosis.');
2778 INSERT INTO `lang_constants` VALUES (1082, 'One interpreting physician charge can be submitted per claim when a purchased diagnostic test is indicated. Please submit a separate claim for each interpreting physician.');
2779 INSERT INTO `lang_constants` VALUES (1083, 'Our records indicate that you billed diagnostic tests subject to price limitations and the procedure code submitted includes a professional component. Only the technical component is subject to price limitations. Please submit the technical and profession');
2780 INSERT INTO `lang_constants` VALUES (1084, 'Missing/incomplete/invalid other procedure code(s).');
2781 INSERT INTO `lang_constants` VALUES (1085, 'Paid at the regular rate as you did not submit documentation to justify the modified procedure code.');
2782 INSERT INTO `lang_constants` VALUES (1086, 'NDC code submitted for this service was translated to a HCPCS code for processing, but please continue to submit the NDC on future claims for this item.');
2783 INSERT INTO `lang_constants` VALUES (1087, 'Total payment reduced due to overlap of tests billed.');
2784 INSERT INTO `lang_constants` VALUES (1088, 'The HPSA/Physician Scarcity bonus can only be paid on the professional component of this service. Rebill as separate professional and technical components.');
2785 INSERT INTO `lang_constants` VALUES (1089, 'This service does not qualify for a HPSA/Physician Scarcity bonus payment.');
2786 INSERT INTO `lang_constants` VALUES (1090, 'Allowed amount adjusted. Multiple automated multichannel tests performed on the same day combined for payment.');
2787 INSERT INTO `lang_constants` VALUES (1091, 'Missing/incomplete/invalid diagnosis or condition.');
2788 INSERT INTO `lang_constants` VALUES (1092, 'Missing/incomplete/invalid place of service.');
2789 INSERT INTO `lang_constants` VALUES (1093, 'Missing/incomplete/invalid charge.');
2790 INSERT INTO `lang_constants` VALUES (1094, 'Not covered when performed during the same session/date as a previously processed service for the patient.');
2791 INSERT INTO `lang_constants` VALUES (1095, 'You are required to code to the highest level of specificity.');
2792 INSERT INTO `lang_constants` VALUES (1096, 'Service is not covered when patient is under age 50.');
2793 INSERT INTO `lang_constants` VALUES (1097, 'Service is not covered unless the patient is classified as at high risk.');
2794 INSERT INTO `lang_constants` VALUES (1098, 'Medical code sets used must be the codes in effect at the time of service');
2795 INSERT INTO `lang_constants` VALUES (1099, 'Subjected to review of physician evaluation and management services.');
2796 INSERT INTO `lang_constants` VALUES (1100, 'Service denied because payment already made for same/similar procedure within set time frame.');
2797 INSERT INTO `lang_constants` VALUES (1101, 'Claim/service(s) subjected to CFO-CAP prepayment review.');
2798 INSERT INTO `lang_constants` VALUES (1102, 'Not covered more than once under age 40.');
2799 INSERT INTO `lang_constants` VALUES (1103, 'Not covered more than once in a 12 month period.');
2800 INSERT INTO `lang_constants` VALUES (1104, 'Lab procedures with different CLIA certification numbers must be billed on separate claims.');
2801 INSERT INTO `lang_constants` VALUES (1105, 'Information supplied supports a break in therapy. A new capped rental period began with delivery of this equipment.');
2802 INSERT INTO `lang_constants` VALUES (1106, 'Information supplied does not support a break in therapy. A new capped rental period will not begin.');
2803 INSERT INTO `lang_constants` VALUES (1107, 'Services subjected to Home Health Initiative medical review/cost report audit.');
2804 INSERT INTO `lang_constants` VALUES (1108, 'The technical component of a service furnished to an inpatient may only be billed by that inpatient facility. You must contact the inpatient facility for technical component reimbursement. If not already billed, you should bill us for the professional com');
2805 INSERT INTO `lang_constants` VALUES (1109, 'Not paid to practitioner when provided to patient in this place of service. Payment included in the reimbursement issued the facility.');
2806 INSERT INTO `lang_constants` VALUES (1110, 'Missing/incomplete/invalid Universal Product Number/Serial Number.');
2807 INSERT INTO `lang_constants` VALUES (1111, 'We do not pay for an oral anti-emetic drug that is not administered for use immediately before, at, or within 48 hours of administration of a covered chemotherapy drug.');
2808 INSERT INTO `lang_constants` VALUES (1112, 'Service not performed on equipment approved by the FDA for this purpose.');
2809 INSERT INTO `lang_constants` VALUES (1113, 'Information supplied supports a break in therapy. However, the medical information we have for this patient does not support the need for this item as billed. We have approved payment for this item at a reduced level, and a new capped rental period will b');
2810 INSERT INTO `lang_constants` VALUES (1114, 'Information supplied supports a break in therapy. A new capped rental period will begin with delivery of the equipment. This is the maximum approved under the fee schedule for this item or service.');
2811 INSERT INTO `lang_constants` VALUES (1115, 'Information supplied does not support a break in therapy. The medical information we have for this patient does not support the need for this item as billed. We have approved payment for this item at a reduced level, and a new capped rental period will no');
2812 INSERT INTO `lang_constants` VALUES (1116, 'Payment reduced as 90-day rolling average hematocrit for ESRD patient exceeded 36.5%.');
2813 INSERT INTO `lang_constants` VALUES (1117, 'We have provided you with a bundled payment for a teleconsultation. You must send 25 percent of the teleconsultation payment to the referring practitioner.');
2814 INSERT INTO `lang_constants` VALUES (1118, 'We do not pay for chiropractic manipulative treatment when the patient refuses to have an x-ray taken.');
2815 INSERT INTO `lang_constants` VALUES (1119, 'The approved amount is based on the maximum allowance for this item under the DMEPOS Competitive Bidding Demonstration.');
2816 INSERT INTO `lang_constants` VALUES (1120, 'Our records indicate that this patient began using this service(s) prior to the current round of the DMEPOS Competitive Bidding Demonstration. Therefore, the approved amount is based on the allowance in effect prior to this round of bidding for this item.');
2817 INSERT INTO `lang_constants` VALUES (1121, 'This service was processed in accordance with rules and guidelines under the Competitive Bidding Demonstration Project. If you would like more information regarding this project, you may phone 1-888-289-0710.');
2818 INSERT INTO `lang_constants` VALUES (1122, 'This item is denied when provided to this patient by a non-demonstration supplier.');
2819 INSERT INTO `lang_constants` VALUES (1123, 'Paid under the Competitive Bidding Demonstration project. Project is ending, and future services may not be paid under this project.');
2820 INSERT INTO `lang_constants` VALUES (1124, 'Not covered unless submitted via electronic claim.');
2821 INSERT INTO `lang_constants` VALUES (1125, 'Letter to follow containing further information.');
2822 INSERT INTO `lang_constants` VALUES (1126, 'Missing/incomplete/invalid/ deactivated/withdrawn National Drug Code (NDC).');
2823 INSERT INTO `lang_constants` VALUES (1127, 'We pay for this service only when performed with a covered cryosurgical ablation.');
2824 INSERT INTO `lang_constants` VALUES (1128, 'Missing/incomplete/invalid level of subluxation.');
2825 INSERT INTO `lang_constants` VALUES (1129, 'Missing/incomplete/invalid name, strength, or dosage of the drug furnished.');
2826 INSERT INTO `lang_constants` VALUES (1130, 'Missing indication of whether the patient owns the equipment that requires the part or supply.');
2827 INSERT INTO `lang_constants` VALUES (1131, 'Missing/incomplete/invalid information on the period of time for which the service/supply/equipment will be needed.');
2828 INSERT INTO `lang_constants` VALUES (1132, 'Missing/incomplete/invalid individual lab codes included in the test.');
2829 INSERT INTO `lang_constants` VALUES (1133, 'Missing patient medical record for this service.');
2830 INSERT INTO `lang_constants` VALUES (1134, 'Missing/incomplete/invalid indicator of x-ray availability for review.');
2831 INSERT INTO `lang_constants` VALUES (1135, 'Missing invoice or statement certifying the actual cost of the lens, less discounts, and/or the type of intraocular lens used.');
2832 INSERT INTO `lang_constants` VALUES (1136, 'Missing physician financial relationship form.');
2833 INSERT INTO `lang_constants` VALUES (1137, 'Missing pacemaker registration form.');
2834 INSERT INTO `lang_constants` VALUES (1138, 'Claim did not identify who performed the purchased diagnostic test or the amount you were charged for the test.');
2835 INSERT INTO `lang_constants` VALUES (1139, 'Performed by a facility/supplier in which the provider has a financial interest.');
2836 INSERT INTO `lang_constants` VALUES (1140, 'Missing/incomplete/invalid plan of treatment.');
2837 INSERT INTO `lang_constants` VALUES (1141, 'Missing/incomplete/invalid indication that the service was supervised or evaluated by a physician.');
2838 INSERT INTO `lang_constants` VALUES (1142, 'Part B coinsurance under a demonstration project.');
2839 INSERT INTO `lang_constants` VALUES (1143, 'Patient identified as a demonstration participant but the patient was not enrolled in the demonstration at the time services were rendered. Coverage is limited to demonstration participants.');
2840 INSERT INTO `lang_constants` VALUES (1144, 'Denied services exceed the coverage limit for the demonstration.');
2841 INSERT INTO `lang_constants` VALUES (1145, 'Missing physician certified plan of care.');
2842 INSERT INTO `lang_constants` VALUES (1146, 'Missing American Diabetes Association Certificate of Recognition.');
2843 INSERT INTO `lang_constants` VALUES (1147, 'We have no record that you are licensed to dispensed drugs in the State where located.');
2844 INSERT INTO `lang_constants` VALUES (1148, 'Pre-/post-operative care payment is included in the allowance for the surgery/procedure.');
2845 INSERT INTO `lang_constants` VALUES (1149, 'If you do not agree with what we approved for these services, you may appeal our decision. To make sure that we are fair to you, we require another individual that did not process your initial claim to conduct the appeal. However, in order to be eligible');
2846 INSERT INTO `lang_constants` VALUES (1150, 'If you do not agree with this determination, you have the right to appeal. You must file a written request for an appeal within 180 days of the date you receive this notice. Decisions made by a Quality Improvement Organization (QIO) must be appealed to th');
2847 INSERT INTO `lang_constants` VALUES (1151, 'If you do not agree with the approved amounts and $100 or more is in dispute (less deductible and coinsurance), you may ask for a hearing within six months of the date of this notice. To meet the $100, you may combine amounts on other claims that have bee');
2848 INSERT INTO `lang_constants` VALUES (1152, 'Secondary payment cannot be considered without the identity of or payment information from the primary payer. The information was either not reported or was illegible.');
2849 INSERT INTO `lang_constants` VALUES (1153, 'The claim information has also been forwarded to Medicaid for review.');
2850 INSERT INTO `lang_constants` VALUES (1154, 'You should also submit this claim to the patient''s other insurer for potential payment of supplemental benefits. We did not forward the claim information as the supplemental coverage is not with a Medigap plan, or you do not participate in Medicare.');
2851 INSERT INTO `lang_constants` VALUES (1155, 'Claim submitted as unassigned but processed as assigned. You agreed to accept assignment for all claims.');
2852 INSERT INTO `lang_constants` VALUES (1156, 'The patient''s payment was in excess of the amount owed. You must refund the overpayment to the patient.');
2853 INSERT INTO `lang_constants` VALUES (1157, 'You have not established that you have the right under the law to bill for services furnished by the person(s) that furnished this (these) service(s).');
2854 INSERT INTO `lang_constants` VALUES (1158, 'You may be subject to penalties if you bill the patient for amounts not reported with the PR (patient responsibility) group code.');
2855 INSERT INTO `lang_constants` VALUES (1159, 'Patient is a member of an employer-sponsored prepaid health plan. Services from outside that health plan are not covered. However, as you were not previously notified of this, we are paying this time. In the future, we will not pay you for non-plan servic');
2856 INSERT INTO `lang_constants` VALUES (1160, 'Your claim has been separated to expedite handling. You will receive a separate notice for the other services reported.');
2857 INSERT INTO `lang_constants` VALUES (1161, 'The patient is covered by the Black Lung Program. Send this claim to the Department of Labor, Federal Black Lung Program, P.O. Box 828, Lanham-Seabrook MD 20703.');
2858 INSERT INTO `lang_constants` VALUES (1162, 'We are the primary payer and have paid at the primary rate. You must contact the patient''s other insurer to refund any excess it may have paid due to its erroneous primary payment.');
2859 INSERT INTO `lang_constants` VALUES (1163, 'The claim information is also being forwarded to the patient''s supplemental insurer. Send any questions regarding supplemental benefits to them.');
2860 INSERT INTO `lang_constants` VALUES (1164, 'Information was not sent to the Medigap insurer due to incorrect/invalid information you submitted concerning that insurer. Please verify your information and submit your secondary claim directly to that insurer.');
2861 INSERT INTO `lang_constants` VALUES (1165, 'Skilled Nursing Facility (SNF) stay not covered when care is primarily related to the use of an urethral catheter for convenience or the control of incontinence.');
2862 INSERT INTO `lang_constants` VALUES (1166, 'SSA records indicate mismatch with name and sex.');
2863 INSERT INTO `lang_constants` VALUES (1167, 'Payment of less than $1.00 suppressed.');
2864 INSERT INTO `lang_constants` VALUES (1168, 'Demand bill approved as result of medical review.');
2865 INSERT INTO `lang_constants` VALUES (1169, 'Christian Science Sanitarium/ Skilled Nursing Facility (SNF) bill in the same benefit period.');
2866 INSERT INTO `lang_constants` VALUES (1170, 'A patient may not elect to change a hospice provider more than once in a benefit period.');
2867 INSERT INTO `lang_constants` VALUES (1171, 'Our records indicate that you were previously informed of this rule.');
2868 INSERT INTO `lang_constants` VALUES (1172, 'Missing/incomplete/invalid entitlement number or name shown on the claim.');
2869 INSERT INTO `lang_constants` VALUES (1173, 'Receipt of this notice by a physician or supplier who did not accept assignment is for information only and does not make the physician or supplier a party to the determination. No additional rights to appeal this decision, above those rights already prov');
2870 INSERT INTO `lang_constants` VALUES (1174, 'Missing/incomplete/invalid type of bill.');
2871 INSERT INTO `lang_constants` VALUES (1175, 'Missing/incomplete/invalid beginning and ending dates of the period billed.');
2872 INSERT INTO `lang_constants` VALUES (1176, 'Missing/incomplete/invalid number of covered days during the billing period.');
2873 INSERT INTO `lang_constants` VALUES (1177, 'Missing/incomplete/invalid noncovered days during the billing period.');
2874 INSERT INTO `lang_constants` VALUES (1178, 'Missing/incomplete/invalid number of coinsurance days during the billing period.');
2875 INSERT INTO `lang_constants` VALUES (1179, 'Missing/incomplete/invalid number of lifetime reserve days.');
2876 INSERT INTO `lang_constants` VALUES (1180, 'Missing/incomplete/invalid patient name.');
2877 INSERT INTO `lang_constants` VALUES (1181, 'Missing/incomplete/invalid patient''s address.');
2878 INSERT INTO `lang_constants` VALUES (1182, 'Missing/incomplete/invalid gender.');
2879 INSERT INTO `lang_constants` VALUES (1183, 'Missing/incomplete/invalid admission date.');
2880 INSERT INTO `lang_constants` VALUES (1184, 'Missing/incomplete/invalid admission type.');
2881 INSERT INTO `lang_constants` VALUES (1185, 'Missing/incomplete/invalid admission source.');
2882 INSERT INTO `lang_constants` VALUES (1186, 'Missing/incomplete/invalid patient status.');
2883 INSERT INTO `lang_constants` VALUES (1187, 'No appeal rights. Adjudicative decision based on law.');
2884 INSERT INTO `lang_constants` VALUES (1188, 'As previously advised, a portion or all of your payment is being held in a special account.');
2885 INSERT INTO `lang_constants` VALUES (1189, 'The new information was considered, however, additional payment cannot be issued. Please review the information listed for the explanation.');
2886 INSERT INTO `lang_constants` VALUES (1190, 'Our records show you have opted out of Medicare, agreeing with the patient not to bill Medicare for services/tests/supplies furnished. As result, we cannot pay this claim. The patient is responsible for payment.');
2887 INSERT INTO `lang_constants` VALUES (1191, 'Missing/incomplete/invalid name or address of responsible party or primary payer.');
2888 INSERT INTO `lang_constants` VALUES (1192, 'Missing/incomplete/invalid Investigational Device Exemption number for FDA-approved clinical trial services.');
2889 INSERT INTO `lang_constants` VALUES (1193, 'Missing/incomplete/invalid Competitive Bidding Demonstration Project identification.');
2890 INSERT INTO `lang_constants` VALUES (1194, 'Physician certification or election consent for hospice care not received timely.');
2891 INSERT INTO `lang_constants` VALUES (1195, 'Not covered as patient received medical health care services, automatically revoking his/her election to receive religious non-medical health care services.');
2892 INSERT INTO `lang_constants` VALUES (1196, 'Our records show you have opted out of Medicare, agreeing with the patient not to bill Medicare for services/tests/supplies furnished. As result, we cannot pay this claim. The patient is responsible for payment, but under Federal law, you cannot charge th');
2893 INSERT INTO `lang_constants` VALUES (1197, 'Patient submitted written request to revoke his/her election for religious non-medical health care services.');
2894 INSERT INTO `lang_constants` VALUES (1198, 'Missing/incomplete/invalid release of information indicator.');
2895 INSERT INTO `lang_constants` VALUES (1199, 'The patient overpaid you for these services. You must issue the patient a refund within 30 days for the difference between his/her payment and the total amount shown as patient responsibility on this notice.');
2896 INSERT INTO `lang_constants` VALUES (1200, 'Missing/incomplete/invalid patient relationship to insured.');
2897 INSERT INTO `lang_constants` VALUES (1201, 'Missing/incomplete/invalid social security number or health insurance claim number.');
2898 INSERT INTO `lang_constants` VALUES (1202, 'Telephone review decision.');
2899 INSERT INTO `lang_constants` VALUES (1203, 'Missing/incomplete/invalid principal diagnosis.');
2900 INSERT INTO `lang_constants` VALUES (1204, 'Our records indicate that we should be the third payer for this claim. We cannot process this claim until we have received payment information from the primary and secondary payers.');
2901 INSERT INTO `lang_constants` VALUES (1205, 'Missing/incomplete/invalid admitting diagnosis.');
2902 INSERT INTO `lang_constants` VALUES (1206, 'Missing/incomplete/invalid principal procedure code.');
2903 INSERT INTO `lang_constants` VALUES (1207, 'Correction to a prior claim.');
2904 INSERT INTO `lang_constants` VALUES (1208, 'We did not crossover this claim because the secondary insurance information on the claim was incomplete. Please supply complete information or use the PLANID of the insurer to assure correct and timely routing of the claim.');
2905 INSERT INTO `lang_constants` VALUES (1209, 'Missing/incomplete/invalid remarks.');
2906 INSERT INTO `lang_constants` VALUES (1210, 'Missing/incomplete/invalid provider representative signature.');
2907 INSERT INTO `lang_constants` VALUES (1211, 'Missing/incomplete/invalid provider representative signature date.');
2908 INSERT INTO `lang_constants` VALUES (1212, 'The patient overpaid you for these assigned services. You must issue the patient a refund within 30 days for the difference between his/her payment to you and the total of the amount shown as patient responsibility and as paid to the patient on this notic');
2909 INSERT INTO `lang_constants` VALUES (1213, 'Informational remittance associated with a Medicare demonstration. No payment issued under fee-for-service Medicare as patient has elected managed care.');
2910 INSERT INTO `lang_constants` VALUES (1214, 'This payment replaces an earlier payment for this claim that was either lost, damaged or returned.');
2911 INSERT INTO `lang_constants` VALUES (1215, 'Missing/incomplete/invalid patient or authorized representative signature.');
2912 INSERT INTO `lang_constants` VALUES (1216, 'Missing/incomplete/invalid provider identifier for home health agency or hospice when physician is performing care plan oversight services.');
2913 INSERT INTO `lang_constants` VALUES (1217, 'The patient overpaid you. You must issue the patient a refund within 30 days for the difference between the patient''s payment less the total of our and other payer payments and the amount shown as patient responsibility on this notice.');
2914 INSERT INTO `lang_constants` VALUES (1218, 'Billed in excess of interim rate.');
2915 INSERT INTO `lang_constants` VALUES (1219, 'Informational notice. No payment issued for this claim with this notice. Payment issued to the hospital by its intermediary for all services for this encounter under a demonstration project.');
2916 INSERT INTO `lang_constants` VALUES (1220, 'Missing/incomplete/invalid provider/supplier signature.');
2917 INSERT INTO `lang_constants` VALUES (1221, 'Did not indicate whether we are the primary or secondary payer.');
2918 INSERT INTO `lang_constants` VALUES (1222, 'Patient identified as participating in the National Emphysema Treatment Trial but our records indicate that this patient is either not a participant, or has not yet been approved for this phase of the study. Contact Johns Hopkins University, the study coo');
2919 INSERT INTO `lang_constants` VALUES (1223, 'Missing/incomplete/invalid insured''s address and/or telephone number for the primary payer.');
2920 INSERT INTO `lang_constants` VALUES (1224, 'Missing/incomplete/invalid patient''s relationship to the insured for the primary payer.');
2921 INSERT INTO `lang_constants` VALUES (1225, 'Missing/incomplete/invalid employment status code for the primary insured.');
2922 INSERT INTO `lang_constants` VALUES (1226, 'This determination is the result of the appeal you filed.');
2923 INSERT INTO `lang_constants` VALUES (1227, 'Missing plan information for other insurance.');
2924 INSERT INTO `lang_constants` VALUES (1228, 'Non-PIP (Periodic Interim Payment) claim.');
2925 INSERT INTO `lang_constants` VALUES (1229, 'Did not enter the statement ?Attending physician not hospice employee on the claim form to certify that the rendering physician is not an employee of the hospice.');
2926 INSERT INTO `lang_constants` VALUES (1230, 'De-activate and refer to M51.');
2927 INSERT INTO `lang_constants` VALUES (1231, 'Claim rejected. Coded as a Medicare Managed Care Demonstration but patient is not enrolled in a Medicare managed care plan.');
2928 INSERT INTO `lang_constants` VALUES (1232, 'Missing/incomplete/invalid Medicare Managed Care Demonstration contract number.');
2929 INSERT INTO `lang_constants` VALUES (1233, 'Missing/incomplete/invalid Medigap information.');
2930 INSERT INTO `lang_constants` VALUES (1234, 'Missing/incomplete/invalid date of current illness or symptoms');
2931 INSERT INTO `lang_constants` VALUES (1235, 'A Skilled Nursing Facility (SNF) is responsible for payment of outside providers who furnish these services/supplies to residents.');
2932 INSERT INTO `lang_constants` VALUES (1236, 'Hemophilia Add On.');
2933 INSERT INTO `lang_constants` VALUES (1237, 'PIP (Periodic Interim Payment) claim.');
2934 INSERT INTO `lang_constants` VALUES (1238, 'Paper claim contains more than three separate data items in field 19.');
2935 INSERT INTO `lang_constants` VALUES (1239, 'Paper claim contains more than one data item in field 23.');
2936 INSERT INTO `lang_constants` VALUES (1240, 'Claim processed in accordance with ambulatory surgical guidelines.');
2937 INSERT INTO `lang_constants` VALUES (1241, 'Missing/incomplete/invalid information on whether the diagnostic test(s) were performed by an outside entity or if no purchased tests are included on the claim.');
2938 INSERT INTO `lang_constants` VALUES (1242, 'Missing/incomplete/invalid purchase price of the test(s) and/or the performing laboratory''s name and address.');
2939 INSERT INTO `lang_constants` VALUES (1243, 'Missing/incomplete/invalid group practice information.');
2940 INSERT INTO `lang_constants` VALUES (1244, 'Incomplete/invalid taxpayer identification number (TIN) submitted by you per the Internal Revenue Service. Your claims cannot be processed without your correct TIN, and you may not bill the patient pending correction of your TIN. There are no appeal right');
2941 INSERT INTO `lang_constants` VALUES (1245, 'Missing/incomplete/invalid information on where the services were furnished.');
2942 INSERT INTO `lang_constants` VALUES (1246, 'Missing/incomplete/invalid physical location (name and address, or PIN) where the service(s) were rendered in a Health Professional Shortage Area (HPSA).');
2943 INSERT INTO `lang_constants` VALUES (1247, 'Did not complete the statement "Homebound" on the claim to validate whether laboratory services were performed at home or in an institution.');
2944 INSERT INTO `lang_constants` VALUES (1248, 'This claim has been assessed a $1.00 user fee.');
2945 INSERT INTO `lang_constants` VALUES (1249, 'Coinsurance and/or deductible amounts apply to a claim for services or supplies furnished to a Medicare-eligible veteran through a facility of the Department of Veterans Affairs. No Medicare payment issued.');
2946 INSERT INTO `lang_constants` VALUES (1250, 'Provider level adjustment for late claim filing applies to this claim.');
2947 INSERT INTO `lang_constants` VALUES (1251, 'Missing/incomplete/invalid CLIA certification number.');
2948 INSERT INTO `lang_constants` VALUES (1252, 'Missing/incomplete/invalid x-ray date.');
2949 INSERT INTO `lang_constants` VALUES (1253, 'Missing/incomplete/invalid initial treatment date.');
2950 INSERT INTO `lang_constants` VALUES (1254, 'Your center was not selected to participate in this study, therefore, we cannot pay for these services.');
2951 INSERT INTO `lang_constants` VALUES (1255, 'Per legislation governing this program, payment constitutes payment in full.');
2952 INSERT INTO `lang_constants` VALUES (1256, 'Pancreas transplant not covered unless kidney transplant performed.');
2953 INSERT INTO `lang_constants` VALUES (1257, 'Missing/incomplete/invalid FDA approval number.');
2954 INSERT INTO `lang_constants` VALUES (1258, 'Your claim contains incomplete and/or invalid information, and no appeal rights are afforded because the claim is unprocessable. Please submit a new claim with the complete/correct information.');
2955 INSERT INTO `lang_constants` VALUES (1259, 'Physician already paid for services in conjunction with this demonstration claim. You must have the physician withdraw that claim and refund the payment before we can process your claim.');
2956 INSERT INTO `lang_constants` VALUES (1260, 'Adjustment to the pre-demonstration rate.');
2957 INSERT INTO `lang_constants` VALUES (1261, 'Claim overlaps inpatient stay. Rebill only those services rendered outside the inpatient stay.');
2958 INSERT INTO `lang_constants` VALUES (1262, 'Missing/incomplete/invalid provider number of the facility where the patient resides.');
2959 INSERT INTO `lang_constants` VALUES (1263, 'You may appeal this decision in writing within the required time limits following receipt of this notice by following the instructions included in your contract or plan benefit documents.');
2960 INSERT INTO `lang_constants` VALUES (1264, 'This allowance has been made in accordance with the most appropriate course of treatment provision of the plan.');
2961 INSERT INTO `lang_constants` VALUES (1265, 'Missing consent form.');
2962 INSERT INTO `lang_constants` VALUES (1266, 'Missing/incomplete/invalid prior insurance carrier EOB.');
2963 INSERT INTO `lang_constants` VALUES (1267, 'EOB received from previous payer. Claim not on file.');
2964 INSERT INTO `lang_constants` VALUES (1268, 'Under FEHB law (U.S.C. 8904(b)), we cannot pay more for covered care than the amount Medicare would have allowed if the patient were enrolled in Medicare Part A and/or Medicare Part B.');
2965 INSERT INTO `lang_constants` VALUES (1269, 'Processing of this claim/service has included consideration under Major Medical provisions.');
2966 INSERT INTO `lang_constants` VALUES (1270, 'Crossover claim denied by previous payer and complete claim data not forwarded. Resubmit this claim to this payer to provide adequate data for adjudication.');
2967 INSERT INTO `lang_constants` VALUES (1271, 'Adjustment represents the estimated amount a previous payer may pay.');
2968 INSERT INTO `lang_constants` VALUES (1272, 'Claim/service adjusted based on the findings of a review organization/professional consult/manual adjudication/medical or dental advisor.');
2969 INSERT INTO `lang_constants` VALUES (1273, 'Denial reversed because of medical review.');
2970 INSERT INTO `lang_constants` VALUES (1274, 'Policy provides coverage supplemental to Medicare. As member does not appear to be enrolled in Medicare Part B, the member is responsible for payment of the portion of the charge that would have been covered by Medicare.');
2971 INSERT INTO `lang_constants` VALUES (1275, 'Payment based on professional/technical component modifier(s).');
2972 INSERT INTO `lang_constants` VALUES (1276, 'Payment based on a contractual amount or agreement, fee schedule, or maximum allowable amount.');
2973 INSERT INTO `lang_constants` VALUES (1277, 'Services for a newborn must be billed separately.');
2974 INSERT INTO `lang_constants` VALUES (1278, 'Family/member Out-of-Pocket maximum has been met. Payment based on a higher percentage.');
2975 INSERT INTO `lang_constants` VALUES (1279, 'Procedure code incidental to primary procedure.');
2976 INSERT INTO `lang_constants` VALUES (1280, 'Service not payable with other service rendered on the same date.');
2977 INSERT INTO `lang_constants` VALUES (1281, 'Your line item has been separated into multiple lines to expedite handling.');
2978 INSERT INTO `lang_constants` VALUES (1282, 'This procedure code was added/changed because it more accurately describes the services rendered.');
2979 INSERT INTO `lang_constants` VALUES (1283, 'Patient liability may be affected due to coordination of benefits with other carriers and/or maximum benefit provisions.');
2980 INSERT INTO `lang_constants` VALUES (1284, 'Missing/incomplete/invalid Electronic Funds Transfer (EFT) banking information.');
2981 INSERT INTO `lang_constants` VALUES (1285, 'This company has been contracted by your benefit plan to provide administrative claims payment services only. This company does not assume financial risk or obligation with respect to claims processed on behalf of your benefit plan.');
2982 INSERT INTO `lang_constants` VALUES (1286, 'Missing itemized bill.');
2983 INSERT INTO `lang_constants` VALUES (1287, 'Missing/incomplete/invalid treatment number.');
2984 INSERT INTO `lang_constants` VALUES (1288, 'Consent form requirements not fulfilled.');
2985 INSERT INTO `lang_constants` VALUES (1289, 'Missing documentation/orders/notes/summary/report/chart.');
2986 INSERT INTO `lang_constants` VALUES (1290, 'Patient ineligible for this service.');
2987 INSERT INTO `lang_constants` VALUES (1291, 'Missing/incomplete/invalid prescribing provider identifier.');
2988 INSERT INTO `lang_constants` VALUES (1292, 'Claim must be submitted by the provider who rendered the service.');
2989 INSERT INTO `lang_constants` VALUES (1293, 'No record of health check prior to initiation of treatment.');
2990 INSERT INTO `lang_constants` VALUES (1294, 'Incorrect claim form/format for this service.');
2991 INSERT INTO `lang_constants` VALUES (1295, 'Program integrity/utilization review decision.');
2992 INSERT INTO `lang_constants` VALUES (1296, 'Claim must meet primary payers processing requirements before we can consider payment.');
2993 INSERT INTO `lang_constants` VALUES (1297, 'Missing/incomplete/invalid tooth number/letter.');
2994 INSERT INTO `lang_constants` VALUES (1298, 'Procedure code is not compatible with tooth number/letter.');
2995 INSERT INTO `lang_constants` VALUES (1299, 'Missing x-ray.');
2996 INSERT INTO `lang_constants` VALUES (1300, 'No record of mental health assessment.');
2997 INSERT INTO `lang_constants` VALUES (1301, 'Bed hold or leave days exceeded.');
2998 INSERT INTO `lang_constants` VALUES (1302, 'Payment based on authorized amount.');
2999 INSERT INTO `lang_constants` VALUES (1303, 'Missing/incomplete/invalid admission hour.');
3000 INSERT INTO `lang_constants` VALUES (1304, 'Claim conflicts with another inpatient stay.');
3001 INSERT INTO `lang_constants` VALUES (1305, 'Claim information does not agree with information received from other insurance carrier.');
3002 INSERT INTO `lang_constants` VALUES (1306, 'Court ordered coverage information needs validation.');
3003 INSERT INTO `lang_constants` VALUES (1307, 'Missing/incomplete/invalid discharge information.');
3004 INSERT INTO `lang_constants` VALUES (1308, 'Electronic interchange agreement not on file for provider/submitter.');
3005 INSERT INTO `lang_constants` VALUES (1309, 'Patient not enrolled in the billing provider''s managed care plan on the date of service.');
3006 INSERT INTO `lang_constants` VALUES (1310, 'Missing/incomplete/invalid point of pick-up address.');
3007 INSERT INTO `lang_constants` VALUES (1311, 'Claim information is inconsistent with pre-certified/authorized services.');
3008 INSERT INTO `lang_constants` VALUES (1312, 'Procedures for billing with group/referring/performing providers were not followed.');
3009 INSERT INTO `lang_constants` VALUES (1313, 'Procedure code billed is not correct/valid for the services billed or the date of service billed.');
3010 INSERT INTO `lang_constants` VALUES (1314, 'Missing/incomplete/invalid prescribing date.');
3011 INSERT INTO `lang_constants` VALUES (1315, 'Missing/incomplete/invalid patient liability amount.');
3012 INSERT INTO `lang_constants` VALUES (1316, 'Please refer to your provider manual for additional program and provider information.');
3013 INSERT INTO `lang_constants` VALUES (1317, 'Rebill services on separate claims.');
3014 INSERT INTO `lang_constants` VALUES (1318, 'Inpatient admission spans multiple rate periods. Resubmit separate claims.');
3015 INSERT INTO `lang_constants` VALUES (1319, 'Rebill services on separate claim lines.');
3016 INSERT INTO `lang_constants` VALUES (1320, 'The from and to dates must be different.');
3017 INSERT INTO `lang_constants` VALUES (1321, 'Procedure code or procedure rate count cannot be determined, or was not on file, for the date of service/provider.');
3018 INSERT INTO `lang_constants` VALUES (1322, 'Professional provider services not paid separately. Included in facility payment under a demonstration project. Apply to that facility for payment, or resubmit your claim if: the facility notifies you the patient was excluded from this demonstration; or i');
3019 INSERT INTO `lang_constants` VALUES (1323, 'Prior payment being cancelled as we were subsequently notified this patient was covered by a demonstration project in this site of service. Professional services were included in the payment made to the facility. You must contact the facility for your pay');
3020 INSERT INTO `lang_constants` VALUES (1324, 'PPS (Prospective Payment System) code changed by claims processing system. Insufficient visits or therapies.');
3021 INSERT INTO `lang_constants` VALUES (1325, 'Home health consolidated billing and payment applies.');
3022 INSERT INTO `lang_constants` VALUES (1326, 'Your unassigned claim for a drug or biological, clinical diagnostic laboratory services or ambulance service was processed as an assigned claim. You are required by law to accept assignment for these types of claims.');
3023 INSERT INTO `lang_constants` VALUES (1327, 'PPS (Prospective Payment System) code changed by medical reviewers. Not supported by clinical records.');
3024 INSERT INTO `lang_constants` VALUES (1328, 'Resubmit with multiple claims, each claim covering services provided in only one calendar month.');
3025 INSERT INTO `lang_constants` VALUES (1329, 'Missing/incomplete/invalid tooth surface information.');
3026 INSERT INTO `lang_constants` VALUES (1330, 'Missing/incomplete/invalid number of riders.');
3027 INSERT INTO `lang_constants` VALUES (1331, 'Missing/incomplete/invalid designated provider number.');
3028 INSERT INTO `lang_constants` VALUES (1332, 'The necessary components of the child and teen checkup (EPSDT) were not completed.');
3029 INSERT INTO `lang_constants` VALUES (1333, 'Service billed is not compatible with patient location information.');
3030 INSERT INTO `lang_constants` VALUES (1334, 'Missing/incomplete/invalid prenatal screening information.');
3031 INSERT INTO `lang_constants` VALUES (1335, 'Procedure billed is not compatible with tooth surface code.');
3032 INSERT INTO `lang_constants` VALUES (1336, 'Provider must accept insurance payment as payment in full when a third party payer contract specifies full reimbursement.');
3033 INSERT INTO `lang_constants` VALUES (1337, 'No appeal rights. Adjudicative decision based on the provisions of a demonstration project.');
3034 INSERT INTO `lang_constants` VALUES (1338, 'Further installment payments forthcoming.');
3035 INSERT INTO `lang_constants` VALUES (1339, 'Final installment payment.');
3036 INSERT INTO `lang_constants` VALUES (1340, 'A failed trial of pelvic muscle exercise training is required in order for biofeedback training for the treatment of urinary incontinence to be covered.');
3037 INSERT INTO `lang_constants` VALUES (1341, 'Home use of biofeedback therapy is not covered.');
3038 INSERT INTO `lang_constants` VALUES (1342, 'This payment is being made conditionally. An HHA episode of care notice has been filed for this patient. When a patient is treated under a HHA episode of care, consolidated billing requires that certain therapy services and supplies, such as this, be incl');
3039 INSERT INTO `lang_constants` VALUES (1343, 'Payment information for this claim has been forwarded to more than one other payer, but format limitations permit only one of the secondary payers to be identified in this remittance advice.');
3040 INSERT INTO `lang_constants` VALUES (1344, 'Covered only when performed by the attending physician.');
3041 INSERT INTO `lang_constants` VALUES (1345, 'Services not included in the appeal review.');
3042 INSERT INTO `lang_constants` VALUES (1346, 'This facility is not certified for digital mammography.');
3043 INSERT INTO `lang_constants` VALUES (1347, 'A separate claim must be submitted for each place of service. Services furnished at multiple sites may not be billed in the same claim.');
3044 INSERT INTO `lang_constants` VALUES (1348, 'Claim/Service denied because a more specific taxonomy code is required for adjudication.');
3045 INSERT INTO `lang_constants` VALUES (1349, 'This provider type/provider specialty may not bill this service.');
3046 INSERT INTO `lang_constants` VALUES (1350, 'Patient must be refractory to conventional therapy (documented behavioral, pharmacologic and/or surgical corrective therapy) and be an appropriate surgical candidate such that implantation with anesthesia can occur.');
3047 INSERT INTO `lang_constants` VALUES (1351, 'Patients with stress incontinence, urinary obstruction, and specific neurologic diseases (e.g., diabetes with peripheral nerve involvement) which are associated with secondary manifestations of the above three indications are excluded.');
3048 INSERT INTO `lang_constants` VALUES (1352, 'Patient must have had a successful test stimulation in order to support subsequent implantation. Before a patient is eligible for permanent implantation, he/she must demonstrate a 50 percent or greater improvement through test stimulation. Improvement is');
3049 INSERT INTO `lang_constants` VALUES (1353, 'Patient must be able to demonstrate adequate ability to record voiding diary data such that clinical results of the implant procedure can be properly evaluated.');
3050 INSERT INTO `lang_constants` VALUES (1354, 'PPS (Prospect Payment System) code corrected during adjudication.');
3051 INSERT INTO `lang_constants` VALUES (1355, 'This claim has been denied without reviewing the medical record because the requested records were not received or were not received timely.');
3052 INSERT INTO `lang_constants` VALUES (1356, 'Social Security records indicate that this patient was a prisoner when the service was rendered. This payer does not cover items and services furnished to an individual while they are in State or local custody under a penal authority, unless under State o');
3053 INSERT INTO `lang_constants` VALUES (1357, 'This claim/service is not payable under our claims jurisdiction area. You can identify the correct Medicare contractor to process this claim/service through the CMS website at www.cms.hhs.gov.');
3054 INSERT INTO `lang_constants` VALUES (1358, 'This is a misdirected claim/service for an RRB beneficiary. Submit paper claims to the RRB carrier: Palmetto GBA, P.O. Box 10066, Augusta, GA 30999. Call 866-749-4301 for RRB EDI information for electronic claims processing.');
3055 INSERT INTO `lang_constants` VALUES (1359, 'Payment for services furnished to Skilled Nursing Facility (SNF) inpatients (except for excluded services) can only be made to the SNF. You must request payment from the SNF rather than the patient for this service.');
3056 INSERT INTO `lang_constants` VALUES (1360, 'Services furnished to Skilled Nursing Facility (SNF) inpatients must be billed on the inpatient claim. They cannot be billed separately as outpatient services.');
3057 INSERT INTO `lang_constants` VALUES (1361, 'Missing/incomplete/invalid upgrade information.');
3058 INSERT INTO `lang_constants` VALUES (1362, 'This claim was chosen for complex review and was denied after reviewing the medical records.');
3059 INSERT INTO `lang_constants` VALUES (1363, 'This facility is not certified for film mammography.');
3060 INSERT INTO `lang_constants` VALUES (1364, 'No appeal right except duplicate claim/service issue. This service was included in a claim that has been previously billed and adjudicated.');
3061 INSERT INTO `lang_constants` VALUES (1365, 'This claim is excluded from your electronic remittance advice.');
3062 INSERT INTO `lang_constants` VALUES (1366, 'Only one initial visit is covered per physician, group practice or provider.');
3063 INSERT INTO `lang_constants` VALUES (1367, 'During the transition to the Ambulance Fee Schedule, payment is based on the lesser of a blended amount calculated using a percentage of the reasonable charge/cost and fee schedule amounts, or the submitted charge for the service. You will be notified yea');
3064 INSERT INTO `lang_constants` VALUES (1368, 'This decision was based on a local medical review policy (LMRP) or Local Coverage Determination (LCD).An LMRP/LCD provides a guide to assist in determining whether a particular item or service is covered. A copy of this policy is available at http://www.c');
3065 INSERT INTO `lang_constants` VALUES (1369, 'This payment is being made conditionally because the service was provided in the home, and it is possible that the patient is under a home health episode of care. When a patient is treated under a home health episode of care, consolidated billing requires');
3066 INSERT INTO `lang_constants` VALUES (1370, 'This service is paid only once in a patients lifetime.');
3067 INSERT INTO `lang_constants` VALUES (1371, 'This service is not paid if billed more than once every 28 days.');
3068 INSERT INTO `lang_constants` VALUES (1372, 'This service is not paid if billed once every 28 days, and the patient has spent 5 or more consecutive days in any inpatient or Skilled /nursing Facility (SNF) within those 28 days.');
3069 INSERT INTO `lang_constants` VALUES (1373, 'Payment is subject to home health prospective payment system partial episode payment adjustment. Patient was transferred/discharged/readmitted during payment episode.');
3070 INSERT INTO `lang_constants` VALUES (1374, 'Medicare Part B does not pay for items or services provided by this type of practitioner for beneficiaries in a Medicare Part A covered Skilled Nursing Facility (SNF) stay.');
3071 INSERT INTO `lang_constants` VALUES (1375, 'Add-on code cannot be billed by itself.');
3072 INSERT INTO `lang_constants` VALUES (1376, 'This is a split service and represents a portion of the units from the originally submitted service.');
3073 INSERT INTO `lang_constants` VALUES (1377, 'Payment has been denied for the/made only for a less extensive service/item because the information furnished does not substantiate the need for the (more extensive) service/item. The patient is liable for the charges for this service/item as you informed');
3074 INSERT INTO `lang_constants` VALUES (1378, 'Payment has been (denied for the/made only for a less extensive) service/item because the information furnished does not substantiate the need for the (more extensive) service/item. If you have collected any amount from the patient, you must refund that a');
3075 INSERT INTO `lang_constants` VALUES (1379, 'Social Security Records indicate that this individual has been deported. This payer does not cover items and services furnished to individuals who have been deported.');
3076 INSERT INTO `lang_constants` VALUES (1380, 'This is a misdirected claim/service for a United Mine Workers of America (UMWA) beneficiary. Please submit claims to them.');
3077 INSERT INTO `lang_constants` VALUES (1381, 'This amount represents the prior to coverage portion of the allowance.');
3078 INSERT INTO `lang_constants` VALUES (1382, 'This amount represents the dollar amount not eligible due to the patient''s age.');
3079 INSERT INTO `lang_constants` VALUES (1383, 'Consult plan benefit documents for information about restrictions for this service.');
3080 INSERT INTO `lang_constants` VALUES (1384, 'Total payments under multiple contracts cannot exceed the allowance for this service.');
3081 INSERT INTO `lang_constants` VALUES (1385, 'Payments will cease for services rendered by this US Government debarred or excluded provider after the 30 day grace period as previously notified.');
3082 INSERT INTO `lang_constants` VALUES (1386, 'Services for predetermination and services requesting payment are being processed separately.');
3083 INSERT INTO `lang_constants` VALUES (1387, 'This represents your scheduled payment for this service. If treatment has been discontinued, please contact Customer Service.');
3084 INSERT INTO `lang_constants` VALUES (1388, 'Record fees are the patient''s responsibility and limited to the specified co-payment.');
3085 INSERT INTO `lang_constants` VALUES (1389, 'To obtain information on the process to file an appeal in Arizona, call the Department''s Consumer Assistance Office at (602) 912-8444 or (800) 325-2548.');
3086 INSERT INTO `lang_constants` VALUES (1390, 'The provider acting on the Member''s behalf, may file an appeal with the Payer. The provider, acting on the Member''s behalf, may file a complaint with the State Insurance Regulatory Authority without first filing an appeal, if the coverage decision involve');
3087 INSERT INTO `lang_constants` VALUES (1391, 'In the event you disagree with the Dental Advisor''s opinion and have additional information relative to the case, you may submit radiographs to the Dental Advisor Unit at the subscriber''s dental insurance carrier for a second Independent Dental Advisor Re');
3088 INSERT INTO `lang_constants` VALUES (1392, 'Under the Code of Federal Regulations, Chapter 32, Section 199.13 a non-participating provider is not an appropriate appealing party. Therefore, if you disagree with the Dental Advisor''s opinion, you may appeal the determination if appointed in writing, b');
3089 INSERT INTO `lang_constants` VALUES (1393, 'You have not been designated as an authorized OCONUS provider therefore are not considered an appropriate appealing party. If the beneficiary has appointed you, in writing, to act as his/her representative and you disagree with the Dental Advisor''s opinio');
3090 INSERT INTO `lang_constants` VALUES (1394, 'The patient was not residing in a long-term care facility during all or part of the service dates billed.');
3091 INSERT INTO `lang_constants` VALUES (1395, 'The original claim was denied. Resubmit a new claim, not a replacement claim.');
3092 INSERT INTO `lang_constants` VALUES (1396, 'The patient was not in a hospice program during all or part of the service dates billed.');
3093 INSERT INTO `lang_constants` VALUES (1397, 'The rate changed during the dates of service billed.');
3094 INSERT INTO `lang_constants` VALUES (1398, 'Missing screening document.');
3095 INSERT INTO `lang_constants` VALUES (1399, 'Long term care case mix or per diem rate cannot be determined because the patient ID number is missing, incomplete, or invalid on the assignment request.');
3096 INSERT INTO `lang_constants` VALUES (1400, 'Missing/incomplete/invalid date of last menstrual period.');
3097 INSERT INTO `lang_constants` VALUES (1401, 'Rebill all applicable services on a single claim.');
3098 INSERT INTO `lang_constants` VALUES (1402, 'Missing/incomplete/invalid model number.');
3099 INSERT INTO `lang_constants` VALUES (1403, 'Telephone contact services will not be paid until the face-to-face contact requirement has been met.');
3100 INSERT INTO `lang_constants` VALUES (1404, 'Missing/incomplete/invalid replacement claim information.');
3101 INSERT INTO `lang_constants` VALUES (1405, 'Missing/incomplete/invalid room and board rate.');
3102 INSERT INTO `lang_constants` VALUES (1406, 'This payment was delayed for correction of provider''s mailing address.');
3103 INSERT INTO `lang_constants` VALUES (1407, 'Our records do not indicate that other insurance is on file. Please submit other insurance information for our records.');
3104 INSERT INTO `lang_constants` VALUES (1408, 'The patient is responsible for the difference between the approved treatment and the elective treatment.');
3105 INSERT INTO `lang_constants` VALUES (1409, 'Transportation to/from this destination is not covered.');
3106 INSERT INTO `lang_constants` VALUES (1410, 'Transportation in a vehicle other than an ambulance is not covered.');
3107 INSERT INTO `lang_constants` VALUES (1411, 'Payment denied/reduced because mileage is not covered when the patient is not in the ambulance.');
3108 INSERT INTO `lang_constants` VALUES (1412, 'The patient must choose an option before a payment can be made for this procedure/ equipment/ supply/ service.');
3109 INSERT INTO `lang_constants` VALUES (1413, 'This drug/service/supply is covered only when the associated service is covered.');
3110 INSERT INTO `lang_constants` VALUES (1414, 'This is an alert. Although your claim was paid, you have billed for a test/specialty not included in your Laboratory Certification. Your failure to correct the laboratory certification information will result in a denial of payment in the near future.');
3111 INSERT INTO `lang_constants` VALUES (1415, 'Medical record does not support code billed per the code definition.');
3112 INSERT INTO `lang_constants` VALUES (1416, 'Charges exceed the post-transplant coverage limit.');
3113 INSERT INTO `lang_constants` VALUES (1417, 'A new/revised/renewed certificate of medical necessity is needed.');
3114 INSERT INTO `lang_constants` VALUES (1418, 'Payment for repair or replacement is not covered or has exceeded the purchase price.');
3115 INSERT INTO `lang_constants` VALUES (1419, 'The patient is not liable for the denied/adjusted charge(s) for receiving any updated service/item.');
3116 INSERT INTO `lang_constants` VALUES (1420, 'No qualifying hospital stay dates were provided for this episode of care.');
3117 INSERT INTO `lang_constants` VALUES (1421, 'This is not a covered service/procedure/ equipment/bed, however patient liability is limited to amounts shown in the adjustments under group "PR".');
3118 INSERT INTO `lang_constants` VALUES (1422, 'Missing Review Organization Approval.');
3119 INSERT INTO `lang_constants` VALUES (1423, 'Services provided aboard a ship are covered only when the ship is of United States registry and is in United States waters. In addition, a doctor licensed to practice in the United States must provide the service.');
3120 INSERT INTO `lang_constants` VALUES (1424, 'We did not send this claim to patients other insurer. They have indicated no additional payment can be made.');
3121 INSERT INTO `lang_constants` VALUES (1425, 'Missing pre-operative photos or visual field results.');
3122 INSERT INTO `lang_constants` VALUES (1426, 'Additional information has been requested from the member. The charges will be reconsidered upon receipt of that information.');
3123 INSERT INTO `lang_constants` VALUES (1427, 'This item or service does not meet the criteria for the category under which it was billed.');
3124 INSERT INTO `lang_constants` VALUES (1428, 'Additional information has been requested from another provider involved in the care of this member. The charges will be reconsidered upon receipt of that information.');
3125 INSERT INTO `lang_constants` VALUES (1429, 'This claim/service must be billed according to the schedule for this plan.');
3126 INSERT INTO `lang_constants` VALUES (1430, 'This is a predetermination advisory message, when this service is submitted for payment additional documentation as specified in plan documents will be required to process benefits.');
3127 INSERT INTO `lang_constants` VALUES (1431, 'Rebill technical and professional components separately.');
3128 INSERT INTO `lang_constants` VALUES (1432, 'Do not resubmit this claim/service.');
3129 INSERT INTO `lang_constants` VALUES (1433, 'Non-Availability Statement (NAS) required for this service. Contact the nearest Military Treatment Facility (MTF) for assistance.');
3130 INSERT INTO `lang_constants` VALUES (1434, 'You may request a review in writing within the required time limits following receipt of this notice by following the instructions included in your contract or plan benefit documents.');
3131 INSERT INTO `lang_constants` VALUES (1435, 'The approved level of care does not match the procedure code submitted.');
3132 INSERT INTO `lang_constants` VALUES (1436, 'This service has been paid as a one-time exception to the plan''s benefit restrictions.');
3133 INSERT INTO `lang_constants` VALUES (1437, 'Missing contract indicator.');
3134 INSERT INTO `lang_constants` VALUES (1438, 'The provider must update insurance information directly with payer.');
3135 INSERT INTO `lang_constants` VALUES (1439, 'Patient is a Medicaid/Qualified Medicare Beneficiary.');
3136 INSERT INTO `lang_constants` VALUES (1440, 'Specific federal/state/local program may cover this service through another payer.');
3137 INSERT INTO `lang_constants` VALUES (1441, 'Technical component not paid if provider does not own the equipment used.');
3138 INSERT INTO `lang_constants` VALUES (1442, 'The technical component must be billed separately.');
3139 INSERT INTO `lang_constants` VALUES (1443, 'Patient eligible to apply for other coverage which may be primary.');
3140 INSERT INTO `lang_constants` VALUES (1444, 'The subscriber must update insurance information directly with payer.');
3141 INSERT INTO `lang_constants` VALUES (1445, 'Rendering provider must be affiliated with the pay-to provider.');
3142 INSERT INTO `lang_constants` VALUES (1446, 'Additional payment approved based on payer-initiated review/audit.');
3143 INSERT INTO `lang_constants` VALUES (1447, 'The professional component must be billed separately.');
3144 INSERT INTO `lang_constants` VALUES (1448, 'A mental health facility is responsible for payment of outside providers who furnish these services/supplies to residents.');
3145 INSERT INTO `lang_constants` VALUES (1449, 'Additional information/explanation will be sent separately');
3146 INSERT INTO `lang_constants` VALUES (1450, 'Missing/incomplete/invalid anesthesia time/units');
3147 INSERT INTO `lang_constants` VALUES (1451, 'Services under review for possible pre-existing condition. Send medical records for prior 12 months');
3148 INSERT INTO `lang_constants` VALUES (1452, 'Information provided was illegible');
3149 INSERT INTO `lang_constants` VALUES (1453, 'The supporting documentation does not match the claim');
3150 INSERT INTO `lang_constants` VALUES (1454, 'Missing/incomplete/invalid weight.');
3151 INSERT INTO `lang_constants` VALUES (1455, 'Missing/incomplete/invalid DRG code');
3152 INSERT INTO `lang_constants` VALUES (1456, 'Missing/invalid/incomplete taxpayer identification number (TIN)');
3153 INSERT INTO `lang_constants` VALUES (1457, 'You may appeal this decision');
3154 INSERT INTO `lang_constants` VALUES (1458, 'You may not appeal this decision');
3155 INSERT INTO `lang_constants` VALUES (1459, 'Charges processed under a Point of Service benefit');
3156 INSERT INTO `lang_constants` VALUES (1460, 'Missing/incomplete/invalid facility/discrete unit DRG/DRG exempt status information');
3157 INSERT INTO `lang_constants` VALUES (1461, 'Missing/incomplete/invalid history of the related initial surgical procedure(s)');
3158 INSERT INTO `lang_constants` VALUES (1462, 'A payer providing supplemental or secondary coverage shall not require a claims determination for this service from a primary payer as a condition of making its own claims determination.');
3159 INSERT INTO `lang_constants` VALUES (1463, 'Patient is not enrolled in this portion of our benefit package');
3160 INSERT INTO `lang_constants` VALUES (1464, 'We pay only one site of service per provider per claim');
3161 INSERT INTO `lang_constants` VALUES (1465, 'You must furnish and service this item for as long as the patient continues to need it. We can pay for maintenance and/or servicing for the time period specified in the contract or coverage manual.');
3162 INSERT INTO `lang_constants` VALUES (1466, 'Payment based on previous payer''s allowed amount.');
3163 INSERT INTO `lang_constants` VALUES (1467, 'See the payer''s web site or contact the payer''s Customer Service department to obtain forms and instructions for filing a provider dispute.');
3164 INSERT INTO `lang_constants` VALUES (1468, 'Missing Admitting History and Physical report.');
3165 INSERT INTO `lang_constants` VALUES (1469, 'Incomplete/invalid Admitting History and Physical report.');
3166 INSERT INTO `lang_constants` VALUES (1470, 'Missing documentation of benefit to the patient during initial treatment period.');
3167 INSERT INTO `lang_constants` VALUES (1471, 'Incomplete/invalid documentation of benefit to the patient during initial treatment period.');
3168 INSERT INTO `lang_constants` VALUES (1472, 'Incomplete/invalid documentation/orders/notes/summary/report/chart.');
3169 INSERT INTO `lang_constants` VALUES (1473, 'Incomplete/invalid American Diabetes Association Certificate of Recognition.');
3170 INSERT INTO `lang_constants` VALUES (1474, 'Incomplete/invalid Certificate of Medical Necessity.');
3171 INSERT INTO `lang_constants` VALUES (1475, 'Incomplete/invalid consent form.');
3172 INSERT INTO `lang_constants` VALUES (1476, 'Incomplete/invalid contract indicator.');
3173 INSERT INTO `lang_constants` VALUES (1477, 'Incomplete/invalid indication of whether the patient owns the equipment that requires the part or supply.');
3174 INSERT INTO `lang_constants` VALUES (1478, 'Incomplete/invalid invoice or statement certifying the actual cost of the lens, less discounts, and/or the type of intraocular lens used.');
3175 INSERT INTO `lang_constants` VALUES (1479, 'Incomplete/invalid itemized bill.');
3176 INSERT INTO `lang_constants` VALUES (1480, 'Incomplete/invalid operative report.');
3177 INSERT INTO `lang_constants` VALUES (1481, 'Incomplete/invalid oxygen certification/re-certification.');
3178 INSERT INTO `lang_constants` VALUES (1482, 'Incomplete/invalid pacemaker registration form.');
3179 INSERT INTO `lang_constants` VALUES (1483, 'Incomplete/invalid pathology report.');
3180 INSERT INTO `lang_constants` VALUES (1484, 'Incomplete/invalid patient medical record for this service.');
3181 INSERT INTO `lang_constants` VALUES (1485, 'Incomplete/invalid physician certified plan of care');
3182 INSERT INTO `lang_constants` VALUES (1486, 'Incomplete/invalid physician financial relationship form.');
3183 INSERT INTO `lang_constants` VALUES (1487, 'Incomplete/invalid radiology report.');
3184 INSERT INTO `lang_constants` VALUES (1488, 'Incomplete/invalid Review Organization Approval.');
3185 INSERT INTO `lang_constants` VALUES (1489, 'Incomplete/invalid x-ray.');
3186 INSERT INTO `lang_constants` VALUES (1490, 'Incomplete/invalid/not approved screening document.');
3187 INSERT INTO `lang_constants` VALUES (1491, 'Incomplete/invalid pre-operative photos/visual field results.');
3188 INSERT INTO `lang_constants` VALUES (1492, 'Incomplete/invalid plan information for other insurance');
3189 INSERT INTO `lang_constants` VALUES (1493, 'State regulated patient payment limitations apply to this service.');
3190 INSERT INTO `lang_constants` VALUES (1494, 'Missing/incomplete/invalid assistant surgeon taxonomy.');
3191 INSERT INTO `lang_constants` VALUES (1495, 'Missing/incomplete/invalid assistant surgeon name.');
3192 INSERT INTO `lang_constants` VALUES (1496, 'Missing/incomplete/invalid assistant surgeon primary identifier.');
3193 INSERT INTO `lang_constants` VALUES (1497, 'Missing/incomplete/invalid assistant surgeon secondary identifier.');
3194 INSERT INTO `lang_constants` VALUES (1498, 'Missing/incomplete/invalid attending provider taxonomy.');
3195 INSERT INTO `lang_constants` VALUES (1499, 'Missing/incomplete/invalid attending provider name.');
3196 INSERT INTO `lang_constants` VALUES (1500, 'Missing/incomplete/invalid attending provider primary identifier.');
3197 INSERT INTO `lang_constants` VALUES (1501, 'Missing/incomplete/invalid attending provider secondary identifier.');
3198 INSERT INTO `lang_constants` VALUES (1502, 'Missing/incomplete/invalid billing provider taxonomy.');
3199 INSERT INTO `lang_constants` VALUES (1503, 'Missing/incomplete/invalid billing provider/supplier name.');
3200 INSERT INTO `lang_constants` VALUES (1504, 'Missing/incomplete/invalid billing provider/supplier primary identifier.');
3201 INSERT INTO `lang_constants` VALUES (1505, 'Missing/incomplete/invalid billing provider/supplier address.');
3202 INSERT INTO `lang_constants` VALUES (1506, 'Missing/incomplete/invalid billing provider/supplier secondary identifier.');
3203 INSERT INTO `lang_constants` VALUES (1507, 'Missing/incomplete/invalid billing provider/supplier contact information.');
3204 INSERT INTO `lang_constants` VALUES (1508, 'Missing/incomplete/invalid operating provider name.');
3205 INSERT INTO `lang_constants` VALUES (1509, 'Missing/incomplete/invalid operating provider primary identifier.');
3206 INSERT INTO `lang_constants` VALUES (1510, 'Missing/incomplete/invalid operating provider secondary identifier.');
3207 INSERT INTO `lang_constants` VALUES (1511, 'Missing/incomplete/invalid ordering provider name.');
3208 INSERT INTO `lang_constants` VALUES (1512, 'Missing/incomplete/invalid ordering provider primary identifier.');
3209 INSERT INTO `lang_constants` VALUES (1513, 'Missing/incomplete/invalid ordering provider address.');
3210 INSERT INTO `lang_constants` VALUES (1514, 'Missing/incomplete/invalid ordering provider secondary identifier.');
3211 INSERT INTO `lang_constants` VALUES (1515, 'Missing/incomplete/invalid ordering provider contact information.');
3212 INSERT INTO `lang_constants` VALUES (1516, 'Missing/incomplete/invalid other provider name.');
3213 INSERT INTO `lang_constants` VALUES (1517, 'Missing/incomplete/invalid other provider primary identifier.');
3214 INSERT INTO `lang_constants` VALUES (1518, 'Missing/incomplete/invalid other provider secondary identifier.');
3215 INSERT INTO `lang_constants` VALUES (1519, 'Missing/incomplete/invalid other payer attending provider identifier.');
3216 INSERT INTO `lang_constants` VALUES (1520, 'Missing/incomplete/invalid other payer operating provider identifier.');
3217 INSERT INTO `lang_constants` VALUES (1521, 'Missing/incomplete/invalid other payer other provider identifier.');
3218 INSERT INTO `lang_constants` VALUES (1522, 'Missing/incomplete/invalid other payer purchased service provider identifier.');
3219 INSERT INTO `lang_constants` VALUES (1523, 'Missing/incomplete/invalid other payer referring provider identifier.');
3220 INSERT INTO `lang_constants` VALUES (1524, 'Missing/incomplete/invalid other payer rendering provider identifier.');
3221 INSERT INTO `lang_constants` VALUES (1525, 'Missing/incomplete/invalid other payer service facility provider identifier.');
3222 INSERT INTO `lang_constants` VALUES (1526, 'Missing/incomplete/invalid pay-to provider name.');
3223 INSERT INTO `lang_constants` VALUES (1527, 'Missing/incomplete/invalid pay-to provider primary identifier.');
3224 INSERT INTO `lang_constants` VALUES (1528, 'Missing/incomplete/invalid pay-to provider address.');
3225 INSERT INTO `lang_constants` VALUES (1529, 'Missing/incomplete/invalid pay-to provider secondary identifier.');
3226 INSERT INTO `lang_constants` VALUES (1530, 'Missing/incomplete/invalid purchased service provider identifier.');
3227 INSERT INTO `lang_constants` VALUES (1531, 'Missing/incomplete/invalid referring provider taxonomy.');
3228 INSERT INTO `lang_constants` VALUES (1532, 'Missing/incomplete/invalid referring provider name.');
3229 INSERT INTO `lang_constants` VALUES (1533, 'Missing/incomplete/invalid referring provider primary identifier.');
3230 INSERT INTO `lang_constants` VALUES (1534, 'Missing/incomplete/invalid referring provider secondary identifier.');
3231 INSERT INTO `lang_constants` VALUES (1535, 'Missing/incomplete/invalid rendering provider taxonomy.');
3232 INSERT INTO `lang_constants` VALUES (1536, 'Missing/incomplete/invalid rendering provider name.');
3233 INSERT INTO `lang_constants` VALUES (1537, 'Missing/incomplete/invalid rendering provider primary identifier.');
3234 INSERT INTO `lang_constants` VALUES (1538, 'Missing/incomplete/invalid rending provider secondary identifier.');
3235 INSERT INTO `lang_constants` VALUES (1539, 'Missing/incomplete/invalid service facility name.');
3236 INSERT INTO `lang_constants` VALUES (1540, 'Missing/incomplete/invalid service facility primary identifier.');
3237 INSERT INTO `lang_constants` VALUES (1541, 'Missing/incomplete/invalid service facility primary address.');
3238 INSERT INTO `lang_constants` VALUES (1542, 'Missing/incomplete/invalid service facility secondary identifier.');
3239 INSERT INTO `lang_constants` VALUES (1543, 'Missing/incomplete/invalid supervising provider name.');
3240 INSERT INTO `lang_constants` VALUES (1544, 'Missing/incomplete/invalid supervising provider primary identifier.');
3241 INSERT INTO `lang_constants` VALUES (1545, 'Missing/incomplete/invalid supervising provider secondary identifier.');
3242 INSERT INTO `lang_constants` VALUES (1546, 'Missing/incomplete/invalid occurrence date(s).');
3243 INSERT INTO `lang_constants` VALUES (1547, 'Missing/incomplete/invalid occurrence span date(s).');
3244 INSERT INTO `lang_constants` VALUES (1548, 'Missing/incomplete/invalid procedure date(s).');
3245 INSERT INTO `lang_constants` VALUES (1549, 'Missing/incomplete/invalid other procedure date(s).');
3246 INSERT INTO `lang_constants` VALUES (1550, 'Missing/incomplete/invalid principal procedure date.');
3247 INSERT INTO `lang_constants` VALUES (1551, 'Missing/incomplete/invalid dispensed date.');
3248 INSERT INTO `lang_constants` VALUES (1552, 'Missing/incomplete/invalid accident date.');
3249 INSERT INTO `lang_constants` VALUES (1553, 'Missing/incomplete/invalid acute manifestation date.');
3250 INSERT INTO `lang_constants` VALUES (1554, 'Missing/incomplete/invalid adjudication or payment date.');
3251 INSERT INTO `lang_constants` VALUES (1555, 'Missing/incomplete/invalid appliance placement date.');
3252 INSERT INTO `lang_constants` VALUES (1556, 'Missing/incomplete/invalid assessment date.');
3253 INSERT INTO `lang_constants` VALUES (1557, 'Missing/incomplete/invalid assumed or relinquished care date.');
3254 INSERT INTO `lang_constants` VALUES (1558, 'Missing/incomplete/invalid authorized to return to work date.');
3255 INSERT INTO `lang_constants` VALUES (1559, 'Missing/incomplete/invalid begin therapy date.');
3256 INSERT INTO `lang_constants` VALUES (1560, 'Missing/incomplete/invalid certification revision date.');
3257 INSERT INTO `lang_constants` VALUES (1561, 'Missing/incomplete/invalid diagnosis date.');
3258 INSERT INTO `lang_constants` VALUES (1562, 'Missing/incomplete/invalid disability from date.');
3259 INSERT INTO `lang_constants` VALUES (1563, 'Missing/incomplete/invalid disability to date.');
3260 INSERT INTO `lang_constants` VALUES (1564, 'Missing/incomplete/invalid discharge hour.');
3261 INSERT INTO `lang_constants` VALUES (1565, 'Missing/incomplete/invalid discharge or end of care date.');
3262 INSERT INTO `lang_constants` VALUES (1566, 'Missing/incomplete/invalid hearing or vision prescription date.');
3263 INSERT INTO `lang_constants` VALUES (1567, 'Missing/incomplete/invalid Home Health Certification Period.');
3264 INSERT INTO `lang_constants` VALUES (1568, 'Missing/incomplete/invalid last admission period.');
3265 INSERT INTO `lang_constants` VALUES (1569, 'Missing/incomplete/invalid last certification date.');
3266 INSERT INTO `lang_constants` VALUES (1570, 'Missing/incomplete/invalid last contact date.');
3267 INSERT INTO `lang_constants` VALUES (1571, 'Missing/incomplete/invalid last seen/visit date.');
3268 INSERT INTO `lang_constants` VALUES (1572, 'Missing/incomplete/invalid last worked date.');
3269 INSERT INTO `lang_constants` VALUES (1573, 'Missing/incomplete/invalide last x-ray date.');
3270 INSERT INTO `lang_constants` VALUES (1574, 'Missing/incomplete/invalid other insured birth date.');
3271 INSERT INTO `lang_constants` VALUES (1575, 'Missing/incomplete/invalid Oxygen Saturation Test date.');
3272 INSERT INTO `lang_constants` VALUES (1576, 'Missing/incomplete/invalid patient birth date.');
3273 INSERT INTO `lang_constants` VALUES (1577, 'Missing/incomplete/invalid patient death date.');
3274 INSERT INTO `lang_constants` VALUES (1578, 'Missing/incomplete/invalid physician order date.');
3275 INSERT INTO `lang_constants` VALUES (1579, 'Missing/incomplete/invalid prior hospital discharge date.');
3276 INSERT INTO `lang_constants` VALUES (1580, 'Missing/incomplete/invalid prior placement date.');
3277 INSERT INTO `lang_constants` VALUES (1581, 'Missing/incomplete/invalid re-evaluation date');
3278 INSERT INTO `lang_constants` VALUES (1582, 'Missing/incomplete/invalid referral date.');
3279 INSERT INTO `lang_constants` VALUES (1583, 'Missing/incomplete/invalid replacement date.');
3280 INSERT INTO `lang_constants` VALUES (1584, 'Missing/incomplete/invalid secondary diagnosis date.');
3281 INSERT INTO `lang_constants` VALUES (1585, 'Missing/incomplete/invalid shipped date.');
3282 INSERT INTO `lang_constants` VALUES (1586, 'Missing/incomplete/invalid similar illness or symptom date.');
3283 INSERT INTO `lang_constants` VALUES (1587, 'Missing/incomplete/invalid subscriber birth date.');
3284 INSERT INTO `lang_constants` VALUES (1588, 'Missing/incomplete/invalid surgery date.');
3285 INSERT INTO `lang_constants` VALUES (1589, 'Missing/incomplete/invalid test performed date.');
3286 INSERT INTO `lang_constants` VALUES (1590, 'Missing/incomplete/invalid Transcutaneous Electrical Nerve Stimulator (TENS) trial start date.');
3287 INSERT INTO `lang_constants` VALUES (1591, 'Missing/incomplete/invalid Transcutaneous Electrical Nerve Stimulator (TENS) trial end date.');
3288 INSERT INTO `lang_constants` VALUES (1592, 'Date range not valid with units submitted.');
3289 INSERT INTO `lang_constants` VALUES (1593, 'Missing/incomplete/invalid oral cavity designation code.');
3290 INSERT INTO `lang_constants` VALUES (1594, 'Your claim for a referred or purchased service cannot be paid because payment has already been made for this same service to another provider by a payment contractor representing the payer.');
3291 INSERT INTO `lang_constants` VALUES (1595, 'You chose that this service/supply/drug would be rendered/supplied and billed by a different practitioner/supplier.');
3292 INSERT INTO `lang_constants` VALUES (1596, 'The administration method and drug must be reported to adjudicate this service.');
3293 INSERT INTO `lang_constants` VALUES (1597, 'Missing/incomplete/invalid description of service for a Not Otherwise Classified (NOC) code or an Unlisted procedure.');
3294 INSERT INTO `lang_constants` VALUES (1598, 'Service date outside of the approved treatment plan service dates.');
3295 INSERT INTO `lang_constants` VALUES (1599, 'There are no scheduled payments for this service. Submit a claim for each patient visit.');
3296 INSERT INTO `lang_constants` VALUES (1600, 'Benefits have been estimated, when the actual services have been rendered, additional payment will be considered based on the submitted claim.');
3297 INSERT INTO `lang_constants` VALUES (1601, 'Incomplete/invalid invoice');
3298 INSERT INTO `lang_constants` VALUES (1602, 'The law permits exceptions to the refund requirement in two cases: - If you did not know, and could not have reasonably been expected to know, that we would not pay for this service; or - If you notified the patient in writing before providing the service');
3299 INSERT INTO `lang_constants` VALUES (1603, 'This service is not covered when performed with, or subsequent to, a non-covered service.');
3300 INSERT INTO `lang_constants` VALUES (1604, 'Time frame requirements between this service/procedure/supply and a related service/procedure/supply have not been met.');
3301 INSERT INTO `lang_constants` VALUES (1605, 'This decision may be reviewed if additional documentation as described in the contract or plan benefit documents is submitted.');
3302 INSERT INTO `lang_constants` VALUES (1606, 'Missing/incomplete/invalid height.');
3303 INSERT INTO `lang_constants` VALUES (1607, 'Coordination of benefits has not been calculated when estimating benefits for this pre-determination. Submit payment information from the primary payer with the secondary claim.');
3304 INSERT INTO `lang_constants` VALUES (1608, 'Charges are adjusted based on multiple diagnostic imaging procedure rules.');
3305 INSERT INTO `lang_constants` VALUES (1609, 'The number of Days or Units of Service exceeds our acceptable maximum.');
3306 INSERT INTO `lang_constants` VALUES (1610, 'Alert: in the near future we are implementing new policies/procedures that would affect this determination.');
3307 INSERT INTO `lang_constants` VALUES (1611, 'According to our agreement, you must waive the deductible and/or coinsurance amounts.');
3308 INSERT INTO `lang_constants` VALUES (1612, 'This procedure code is not payable. It is for reporting/information purposes only.');
3309 INSERT INTO `lang_constants` VALUES (1613, 'Requested information not provided. The claim will be reopened if the information previously requested is submitted within one year after the date of this denial notice.');
3310 INSERT INTO `lang_constants` VALUES (1614, 'The claim information has been forwarded to a Health Savings Account processor for review.');
3311 INSERT INTO `lang_constants` VALUES (1615, 'You must appeal the determination of the previously ajudicated claim.');
3312 INSERT INTO `lang_constants` VALUES (1616, 'Alert: Although this claim has been processed, it is deficient according to state legislation/regulation.');
3313 INSERT INTO `lang_constants` VALUES (1617, 'Indigent Patients Report');
3314 INSERT INTO `lang_constants` VALUES (1618, 'End Date:');
3315 INSERT INTO `lang_constants` VALUES (1619, 'Due Date');
3316 INSERT INTO `lang_constants` VALUES (1620, 'EOB Posting - Invoice');
3317 INSERT INTO `lang_constants` VALUES (1621, 'Source is missing for code');
3318 INSERT INTO `lang_constants` VALUES (1622, 'Invalid or missing payer in source for code');
3319 INSERT INTO `lang_constants` VALUES (1623, 'Missing slash after payer in source for code');
3320 INSERT INTO `lang_constants` VALUES (1624, 'Invalid source designation "'' + tmp +');
3321 INSERT INTO `lang_constants` VALUES (1625, 'Date is missing for code');
3322 INSERT INTO `lang_constants` VALUES (1626, 'Payment value for code '' + code + ''');
3323 INSERT INTO `lang_constants` VALUES (1627, 'Adjustment value for code '' + code + ''');
3324 INSERT INTO `lang_constants` VALUES (1628, 'Please select an adjustment reason for code');
3325 INSERT INTO `lang_constants` VALUES (1629, 'Patient:');
3326 INSERT INTO `lang_constants` VALUES (1630, 'Invoice:');
3327 INSERT INTO `lang_constants` VALUES (1631, 'Done with:'',''e'',''');
3328 INSERT INTO `lang_constants` VALUES (1632, 'Bill Date:');
3329 INSERT INTO `lang_constants` VALUES (1633, 'Now posting for:'',''e'',''');
3330 INSERT INTO `lang_constants` VALUES (1634, 'Due Date:');
3331 INSERT INTO `lang_constants` VALUES (1635, 'Due date mm/dd/yyyy or yyyy-mm-dd');
3332 INSERT INTO `lang_constants` VALUES (1636, 'Pay');
3333 INSERT INTO `lang_constants` VALUES (1637, 'EOB Posting - Search');
3334 INSERT INTO `lang_constants` VALUES (1638, 'Source:');
3335 INSERT INTO `lang_constants` VALUES (1639, 'Pay Date:');
3336 INSERT INTO `lang_constants` VALUES (1640, 'Amount:');
3337 INSERT INTO `lang_constants` VALUES (1641, 'Name:');
3338 INSERT INTO `lang_constants` VALUES (1642, 'last,first'', or ''X-Y');
3339 INSERT INTO `lang_constants` VALUES (1643, 'Chart ID:');
3340 INSERT INTO `lang_constants` VALUES (1644, 'Encounter:');
3341 INSERT INTO `lang_constants` VALUES (1645, 'Open');
3342 INSERT INTO `lang_constants` VALUES (1646, 'Or upload ERA file:');
3343 INSERT INTO `lang_constants` VALUES (1647, 'Processed as Primary');
3344 INSERT INTO `lang_constants` VALUES (1648, 'Processed as Secondary');
3345 INSERT INTO `lang_constants` VALUES (1649, 'Processed as Tertiary');
3346 INSERT INTO `lang_constants` VALUES (1650, 'Denied');
3347 INSERT INTO `lang_constants` VALUES (1651, 'Pended');
3348 INSERT INTO `lang_constants` VALUES (1652, 'Received, but not in process');
3349 INSERT INTO `lang_constants` VALUES (1653, 'Suspended - investigation with field');
3350 INSERT INTO `lang_constants` VALUES (1654, 'Suspended - return with material');
3351 INSERT INTO `lang_constants` VALUES (1655, 'Suspended - review pending');
3352 INSERT INTO `lang_constants` VALUES (1656, 'Processed as Primary, Forwarded to Additional Payer(s)');
3353 INSERT INTO `lang_constants` VALUES (1657, 'Processed as Secondary, Forwarded to Additional Payer(s)');
3354 INSERT INTO `lang_constants` VALUES (1658, 'Processed as Tertiary, Forwarded to Additional Payer(s)');
3355 INSERT INTO `lang_constants` VALUES (1659, 'Reversal of Previous Payment');
3356 INSERT INTO `lang_constants` VALUES (1660, 'Not Our Claim, Forwarded to Additional Payer(s)');
3357 INSERT INTO `lang_constants` VALUES (1661, 'Predetermination Pricing Only - No Payment');
3358 INSERT INTO `lang_constants` VALUES (1662, 'Reviewed');
3359 INSERT INTO `lang_constants` VALUES (1663, 'Cannot provide further status electronically.');
3360 INSERT INTO `lang_constants` VALUES (1664, 'For more detailed information, see remittance advice.');
3361 INSERT INTO `lang_constants` VALUES (1665, 'More detailed information in letter.');
3362 INSERT INTO `lang_constants` VALUES (1666, 'Claim has been adjudicated and is awaiting payment cycle.');
3363 INSERT INTO `lang_constants` VALUES (1667, 'This is a subsequent request for information from the original request.');
3364 INSERT INTO `lang_constants` VALUES (1668, 'This is a final request for information.');
3365 INSERT INTO `lang_constants` VALUES (1669, 'Balance due from the subscriber.');
3366 INSERT INTO `lang_constants` VALUES (1670, 'Claim may be reconsidered at a future date.');
3367 INSERT INTO `lang_constants` VALUES (1671, 'No payment due to contract/plan provisions.');
3368 INSERT INTO `lang_constants` VALUES (1672, 'No payment will be made for this claim.');
3369 INSERT INTO `lang_constants` VALUES (1673, 'All originally submitted procedure codes have been combined.');
3370 INSERT INTO `lang_constants` VALUES (1674, 'Some originally submitted procedure codes have been combined.');
3371 INSERT INTO `lang_constants` VALUES (1675, 'One or more originally submitted procedure codes have been combined.');
3372 INSERT INTO `lang_constants` VALUES (1676, 'All originally submitted procedure codes have been modified.');
3373 INSERT INTO `lang_constants` VALUES (1677, 'Some all originally submitted procedure codes have been modified.');
3374 INSERT INTO `lang_constants` VALUES (1678, 'One or more originally submitted procedure code have been modified.');
3375 INSERT INTO `lang_constants` VALUES (1679, 'Claim/encounter has been forwarded to entity.');
3376 INSERT INTO `lang_constants` VALUES (1680, 'Claim/encounter has been forwarded by third party entity to entity.');
3377 INSERT INTO `lang_constants` VALUES (1681, 'Entity received claim/encounter, but returned invalid status.');
3378 INSERT INTO `lang_constants` VALUES (1682, 'Entity acknowledges receipt of claim/encounter.');
3379 INSERT INTO `lang_constants` VALUES (1683, 'Accepted for processing.');
3380 INSERT INTO `lang_constants` VALUES (1684, 'Missing or invalid information.');
3381 INSERT INTO `lang_constants` VALUES (1685, '... before entering the adjudication system.');
3382 INSERT INTO `lang_constants` VALUES (1686, 'Returned to Entity.');
3383 INSERT INTO `lang_constants` VALUES (1687, 'Entity not approved as an electronic submitter.');
3384 INSERT INTO `lang_constants` VALUES (1688, 'Entity not approved.');
3385 INSERT INTO `lang_constants` VALUES (1689, 'Entity not found.');
3386 INSERT INTO `lang_constants` VALUES (1690, 'Policy canceled.');
3387 INSERT INTO `lang_constants` VALUES (1691, 'Claim submitted to wrong payer.');
3388 INSERT INTO `lang_constants` VALUES (1692, 'Subscriber and policy number/contract number mismatched.');
3389 INSERT INTO `lang_constants` VALUES (1693, 'Subscriber and subscriber id mismatched.');
3390 INSERT INTO `lang_constants` VALUES (1694, 'Subscriber and policyholder name mismatched.');
3391 INSERT INTO `lang_constants` VALUES (1695, 'Subscriber and policy number/contract number not found.');
3392 INSERT INTO `lang_constants` VALUES (1696, 'Subscriber and subscriber id not found.');
3393 INSERT INTO `lang_constants` VALUES (1697, 'Subscriber and policyholder name not found.');
3394 INSERT INTO `lang_constants` VALUES (1698, 'Claim/encounter not found.');
3395 INSERT INTO `lang_constants` VALUES (1699, 'Predetermination is on file, awaiting completion of services.');
3396 INSERT INTO `lang_constants` VALUES (1700, 'Awaiting next periodic adjudication cycle.');
3397 INSERT INTO `lang_constants` VALUES (1701, 'Charges for pregnancy deferred until delivery.');
3398 INSERT INTO `lang_constants` VALUES (1702, 'Waiting for final approval.');
3399 INSERT INTO `lang_constants` VALUES (1703, 'Special handling required at payer site.');
3400 INSERT INTO `lang_constants` VALUES (1704, 'Awaiting related charges.');
3401 INSERT INTO `lang_constants` VALUES (1705, 'Charges pending provider audit.');
3402 INSERT INTO `lang_constants` VALUES (1706, 'Awaiting benefit determination.');
3403 INSERT INTO `lang_constants` VALUES (1707, 'Internal review/audit.');
3404 INSERT INTO `lang_constants` VALUES (1708, 'Internal review/audit - partial payment made.');
3405 INSERT INTO `lang_constants` VALUES (1709, 'Referral/authorization.');
3406 INSERT INTO `lang_constants` VALUES (1710, 'Pending provider accreditation review.');
3407 INSERT INTO `lang_constants` VALUES (1711, 'Claim waiting for internal provider verification.');
3408 INSERT INTO `lang_constants` VALUES (1712, 'Investigating occupational illness/accident.');
3409 INSERT INTO `lang_constants` VALUES (1713, 'Investigating existence of other insurance coverage.');
3410 INSERT INTO `lang_constants` VALUES (1714, 'Claim being researched for Insured ID/Group Policy Number error.');
3411 INSERT INTO `lang_constants` VALUES (1715, 'Duplicate of a previously processed claim/line.');
3412 INSERT INTO `lang_constants` VALUES (1716, 'Claim assigned to an approver/analyst.');
3413 INSERT INTO `lang_constants` VALUES (1717, 'Awaiting eligibility determination.');
3414 INSERT INTO `lang_constants` VALUES (1718, 'Pending COBRA information requested.');
3415 INSERT INTO `lang_constants` VALUES (1719, 'Non-electronic request for information.');
3416 INSERT INTO `lang_constants` VALUES (1720, 'Electronic request for information.');
3417 INSERT INTO `lang_constants` VALUES (1721, 'Eligibility for extended benefits.');
3418 INSERT INTO `lang_constants` VALUES (1722, 'Re-pricing information.');
3419 INSERT INTO `lang_constants` VALUES (1723, 'Claim/line has been paid.');
3420 INSERT INTO `lang_constants` VALUES (1724, 'Payment reflects usual and customary charges.');
3421 INSERT INTO `lang_constants` VALUES (1725, 'Payment made in full.');
3422 INSERT INTO `lang_constants` VALUES (1726, 'Partial payment made for this claim.');
3423 INSERT INTO `lang_constants` VALUES (1727, 'Payment reflects plan provisions.');
3424 INSERT INTO `lang_constants` VALUES (1728, 'Payment reflects contract provisions.');
3425 INSERT INTO `lang_constants` VALUES (1729, 'Periodic installment released.');
3426 INSERT INTO `lang_constants` VALUES (1730, 'Claim contains split payment.');
3427 INSERT INTO `lang_constants` VALUES (1731, 'Payment made to entity, assignment of benefits not on file.');
3428 INSERT INTO `lang_constants` VALUES (1732, 'Duplicate of an existing claim/line, awaiting processing.');
3429 INSERT INTO `lang_constants` VALUES (1733, 'Contract/plan does not cover pre-existing conditions.');
3430 INSERT INTO `lang_constants` VALUES (1734, 'No coverage for newborns.');
3431 INSERT INTO `lang_constants` VALUES (1735, 'Service not authorized.');
3432 INSERT INTO `lang_constants` VALUES (1736, 'Entity not primary.');
3433 INSERT INTO `lang_constants` VALUES (1737, 'Diagnosis and patient gender mismatch.');
3434 INSERT INTO `lang_constants` VALUES (1738, 'Denied: Entity not found.');
3435 INSERT INTO `lang_constants` VALUES (1739, 'Entity not eligible for benefits for submitted dates of service.');
3436 INSERT INTO `lang_constants` VALUES (1740, 'Entity not eligible for dental benefits for submitted dates of service.');
3437 INSERT INTO `lang_constants` VALUES (1741, 'Entity not eligible for medical benefits for submitted dates of service.');
3438 INSERT INTO `lang_constants` VALUES (1742, 'Entity not eligible/not approved for dates of service.');
3439 INSERT INTO `lang_constants` VALUES (1743, 'Entity does not meet dependent or student qualification.');
3440 INSERT INTO `lang_constants` VALUES (1744, 'Entity is not selected primary care provider.');
3441 INSERT INTO `lang_constants` VALUES (1745, 'Entity not referred by selected primary care provider.');
3442 INSERT INTO `lang_constants` VALUES (1746, 'Requested additional information not received.');
3443 INSERT INTO `lang_constants` VALUES (1747, 'No agreement with entity.');
3444 INSERT INTO `lang_constants` VALUES (1748, 'Patient eligibility not found with entity.');
3445 INSERT INTO `lang_constants` VALUES (1749, 'Charges applied to deductible.');
3446 INSERT INTO `lang_constants` VALUES (1750, 'Pre-treatment review.');
3447 INSERT INTO `lang_constants` VALUES (1751, 'Pre-certification penalty taken.');
3448 INSERT INTO `lang_constants` VALUES (1752, 'Claim was processed as adjustment to previous claim.');
3449 INSERT INTO `lang_constants` VALUES (1753, 'Newborn''s charges processed on mother''s claim.');
3450 INSERT INTO `lang_constants` VALUES (1754, 'Claim combined with other claim(s).');
3451 INSERT INTO `lang_constants` VALUES (1755, 'Processed according to plan provisions.');
3452 INSERT INTO `lang_constants` VALUES (1756, 'Claim/line is capitated.');
3453 INSERT INTO `lang_constants` VALUES (1757, 'This amount is not entity''s responsibility.');
3454 INSERT INTO `lang_constants` VALUES (1758, 'Processed according to contract/plan provisions.');
3455 INSERT INTO `lang_constants` VALUES (1759, 'Coverage has been canceled for this entity.');
3456 INSERT INTO `lang_constants` VALUES (1760, 'Entity not eligible.');
3457 INSERT INTO `lang_constants` VALUES (1761, 'Claim requires pricing information.');
3458 INSERT INTO `lang_constants` VALUES (1762, 'At the policyholder''s request these claims cannot be submitted electronically.');
3459 INSERT INTO `lang_constants` VALUES (1763, 'Policyholder processes their own claims.');
3460 INSERT INTO `lang_constants` VALUES (1764, 'Cannot process individual insurance policy claims.');
3461 INSERT INTO `lang_constants` VALUES (1765, 'Should be handled by entity.');
3462 INSERT INTO `lang_constants` VALUES (1766, 'Cannot process HMO claims');
3463 INSERT INTO `lang_constants` VALUES (1767, 'Claim submitted to incorrect payer.');
3464 INSERT INTO `lang_constants` VALUES (1768, 'Claim requires signature-on-file indicator.');
3465 INSERT INTO `lang_constants` VALUES (1769, 'TPO rejected claim/line because payer name is missing.');
3466 INSERT INTO `lang_constants` VALUES (1770, 'TPO rejected claim/line because certification information is missing');
3467 INSERT INTO `lang_constants` VALUES (1771, 'TPO rejected claim/line because claim does not contain enough information');
3468 INSERT INTO `lang_constants` VALUES (1772, 'Service line number greater than maximum allowable for payer.');
3469 INSERT INTO `lang_constants` VALUES (1773, 'Missing/invalid data prevents payer from processing claim.');
3470 INSERT INTO `lang_constants` VALUES (1774, 'Additional information requested from entity.');
3471 INSERT INTO `lang_constants` VALUES (1775, 'Entity''s name, address, phone and id number.');
3472 INSERT INTO `lang_constants` VALUES (1776, 'Entity''s name.');
3473 INSERT INTO `lang_constants` VALUES (1777, 'Entity''s address.');
3474 INSERT INTO `lang_constants` VALUES (1778, 'Entity''s phone number.');
3475 INSERT INTO `lang_constants` VALUES (1779, 'Entity''s tax id.');
3476 INSERT INTO `lang_constants` VALUES (1780, 'Entity''s Blue Cross provider id');
3477 INSERT INTO `lang_constants` VALUES (1781, 'Entity''s Blue Shield provider id');
3478 INSERT INTO `lang_constants` VALUES (1782, 'Entity''s Medicare provider id.');
3479 INSERT INTO `lang_constants` VALUES (1783, 'Entity''s Medicaid provider id.');
3480 INSERT INTO `lang_constants` VALUES (1784, 'Entity''s UPIN');
3481 INSERT INTO `lang_constants` VALUES (1785, 'Entity''s CHAMPUS provider id.');
3482 INSERT INTO `lang_constants` VALUES (1786, 'Entity''s commercial provider id.');
3483 INSERT INTO `lang_constants` VALUES (1787, 'Entity''s health industry id number.');
3484 INSERT INTO `lang_constants` VALUES (1788, 'Entity''s plan network id.');
3485 INSERT INTO `lang_constants` VALUES (1789, 'Entity''s site id .');
3486 INSERT INTO `lang_constants` VALUES (1790, 'Entity''s health maintenance provider id (HMO).');
3487 INSERT INTO `lang_constants` VALUES (1791, 'Entity''s preferred provider organization id (PPO).');
3488 INSERT INTO `lang_constants` VALUES (1792, 'Entity''s administrative services organization id (ASO).');
3489 INSERT INTO `lang_constants` VALUES (1793, 'Entity''s license/certification number.');
3490 INSERT INTO `lang_constants` VALUES (1794, 'Entity''s state license number.');
3491 INSERT INTO `lang_constants` VALUES (1795, 'Entity''s specialty license number.');
3492 INSERT INTO `lang_constants` VALUES (1796, 'Entity''s specialty code.');
3493 INSERT INTO `lang_constants` VALUES (1797, 'Entity''s anesthesia license number.');
3494 INSERT INTO `lang_constants` VALUES (1798, 'Entity''s qualification degree/designation (e.g. RN,PhD,MD)');
3495 INSERT INTO `lang_constants` VALUES (1799, 'Entity''s social security number.');
3496 INSERT INTO `lang_constants` VALUES (1800, 'Entity''s employer id.');
3497 INSERT INTO `lang_constants` VALUES (1801, 'Entity''s drug enforcement agency (DEA) number.');
3498 INSERT INTO `lang_constants` VALUES (1802, 'Pharmacy processor number.');
3499 INSERT INTO `lang_constants` VALUES (1803, 'Entity''s id number.');
3500 INSERT INTO `lang_constants` VALUES (1804, 'Relationship of surgeon & assistant surgeon.');
3501 INSERT INTO `lang_constants` VALUES (1805, 'Entity''s relationship to patient');
3502 INSERT INTO `lang_constants` VALUES (1806, 'Patient relationship to subscriber');
3503 INSERT INTO `lang_constants` VALUES (1807, 'Entity''s Gender');
3504 INSERT INTO `lang_constants` VALUES (1808, 'Entity''s date of birth');
3505 INSERT INTO `lang_constants` VALUES (1809, 'Entity''s date of death');
3506 INSERT INTO `lang_constants` VALUES (1810, 'Entity''s marital status');
3507 INSERT INTO `lang_constants` VALUES (1811, 'Entity''s employment status');
3508 INSERT INTO `lang_constants` VALUES (1812, 'Entity''s health insurance claim number (HICN).');
3509 INSERT INTO `lang_constants` VALUES (1813, 'Entity''s policy number.');
3510 INSERT INTO `lang_constants` VALUES (1814, 'Entity''s contract/member number.');
3511 INSERT INTO `lang_constants` VALUES (1815, 'Entity''s employer name, address and phone.');
3512 INSERT INTO `lang_constants` VALUES (1816, 'Entity''s employer name.');
3513 INSERT INTO `lang_constants` VALUES (1817, 'Entity''s employer address.');
3514 INSERT INTO `lang_constants` VALUES (1818, 'Entity''s employer phone number.');
3515 INSERT INTO `lang_constants` VALUES (1819, 'Entity''s employee id.');
3516 INSERT INTO `lang_constants` VALUES (1820, 'Other insurance coverage information (health, liability, auto, etc.).');
3517 INSERT INTO `lang_constants` VALUES (1821, 'Other employer name, address and telephone number.');
3518 INSERT INTO `lang_constants` VALUES (1822, 'Entity''s name, address, phone, gender, DOB, marital status, employment status and relation to subscriber.');
3519 INSERT INTO `lang_constants` VALUES (1823, 'Entity''s student status.');
3520 INSERT INTO `lang_constants` VALUES (1824, 'Entity''s school name.');
3521 INSERT INTO `lang_constants` VALUES (1825, 'Entity''s school address.');
3522 INSERT INTO `lang_constants` VALUES (1826, 'Transplant recipient''s name, date of birth, gender, relationship to insured.');
3523 INSERT INTO `lang_constants` VALUES (1827, 'Submitted charges.');
3524 INSERT INTO `lang_constants` VALUES (1828, 'Outside lab charges.');
3525 INSERT INTO `lang_constants` VALUES (1829, 'Hospital s semi-private room rate.');
3526 INSERT INTO `lang_constants` VALUES (1830, 'Hospital s room rate.');
3527 INSERT INTO `lang_constants` VALUES (1831, 'Allowable/paid from primary coverage.');
3528 INSERT INTO `lang_constants` VALUES (1832, 'Amount entity has paid.');
3529 INSERT INTO `lang_constants` VALUES (1833, 'Purchase price for the rented durable medical equipment.');
3530 INSERT INTO `lang_constants` VALUES (1834, 'Rental price for durable medical equipment.');
3531 INSERT INTO `lang_constants` VALUES (1835, 'Purchase and rental price of durable medical equipment.');
3532 INSERT INTO `lang_constants` VALUES (1836, 'Date(s) of service.');
3533 INSERT INTO `lang_constants` VALUES (1837, 'Statement from-through dates.');
3534 INSERT INTO `lang_constants` VALUES (1838, 'Hospital admission date.');
3535 INSERT INTO `lang_constants` VALUES (1839, 'Hospital discharge date.');
3536 INSERT INTO `lang_constants` VALUES (1840, 'Date of Last Menstrual Period (LMP)');
3537 INSERT INTO `lang_constants` VALUES (1841, 'Date of first service for current series/symptom/illness.');
3538 INSERT INTO `lang_constants` VALUES (1842, 'First consultation/evaluation date.');
3539 INSERT INTO `lang_constants` VALUES (1843, 'Confinement dates.');
3540 INSERT INTO `lang_constants` VALUES (1844, 'Unable to work dates.');
3541 INSERT INTO `lang_constants` VALUES (1845, 'Return to work dates.');
3542 INSERT INTO `lang_constants` VALUES (1846, 'Effective coverage date(s).');
3543 INSERT INTO `lang_constants` VALUES (1847, 'Medicare effective date.');
3544 INSERT INTO `lang_constants` VALUES (1848, 'Date of conception and expected date of delivery.');
3545 INSERT INTO `lang_constants` VALUES (1849, 'Date of equipment return.');
3546 INSERT INTO `lang_constants` VALUES (1850, 'Date of dental appliance prior placement.');
3547 INSERT INTO `lang_constants` VALUES (1851, 'Date of dental prior replacement/reason for replacement.');
3548 INSERT INTO `lang_constants` VALUES (1852, 'Date of dental appliance placed.');
3549 INSERT INTO `lang_constants` VALUES (1853, 'Date dental canal(s) opened and date service completed.');
3550 INSERT INTO `lang_constants` VALUES (1854, 'Date(s) dental root canal therapy previously performed.');
3551 INSERT INTO `lang_constants` VALUES (1855, 'Most recent date of curettage, root planing, or periodontal surgery.');
3552 INSERT INTO `lang_constants` VALUES (1856, 'Dental impression and seating date.');
3553 INSERT INTO `lang_constants` VALUES (1857, 'Most recent date pacemaker was implanted.');
3554 INSERT INTO `lang_constants` VALUES (1858, 'Most recent pacemaker battery change date.');
3555 INSERT INTO `lang_constants` VALUES (1859, 'Date of the last x-ray.');
3556 INSERT INTO `lang_constants` VALUES (1860, 'Date(s) of dialysis training provided to patient.');
3557 INSERT INTO `lang_constants` VALUES (1861, 'Date of last routine dialysis.');
3558 INSERT INTO `lang_constants` VALUES (1862, 'Date of first routine dialysis.');
3559 INSERT INTO `lang_constants` VALUES (1863, 'Original date of prescription/orders/referral.');
3560 INSERT INTO `lang_constants` VALUES (1864, 'Date of tooth extraction/evolution.');
3561 INSERT INTO `lang_constants` VALUES (1865, 'Drug information.');
3562 INSERT INTO `lang_constants` VALUES (1866, 'Drug name, strength and dosage form.');
3563 INSERT INTO `lang_constants` VALUES (1867, 'NDC number.');
3564 INSERT INTO `lang_constants` VALUES (1868, 'Prescription number.');
3565 INSERT INTO `lang_constants` VALUES (1869, 'Drug product id number.');
3566 INSERT INTO `lang_constants` VALUES (1870, 'Drug days supply and dosage.');
3567 INSERT INTO `lang_constants` VALUES (1871, 'Drug dispensing units and average wholesale price (AWP).');
3568 INSERT INTO `lang_constants` VALUES (1872, 'Route of drug/myelogram administration.');
3569 INSERT INTO `lang_constants` VALUES (1873, 'Anatomical location for joint injection.');
3570 INSERT INTO `lang_constants` VALUES (1874, 'Anatomical location.');
3571 INSERT INTO `lang_constants` VALUES (1875, 'Joint injection site.');
3572 INSERT INTO `lang_constants` VALUES (1876, 'Hospital information.');
3573 INSERT INTO `lang_constants` VALUES (1877, 'Type of bill for UB-92 claim.');
3574 INSERT INTO `lang_constants` VALUES (1878, 'Hospital admission source.');
3575 INSERT INTO `lang_constants` VALUES (1879, 'Hospital admission hour.');
3576 INSERT INTO `lang_constants` VALUES (1880, 'Hospital admission type.');
3577 INSERT INTO `lang_constants` VALUES (1881, 'Admitting diagnosis.');
3578 INSERT INTO `lang_constants` VALUES (1882, 'Hospital discharge hour.');
3579 INSERT INTO `lang_constants` VALUES (1883, 'Patient discharge status.');
3580 INSERT INTO `lang_constants` VALUES (1884, 'Units of blood furnished.');
3581 INSERT INTO `lang_constants` VALUES (1885, 'Units of blood replaced.');
3582 INSERT INTO `lang_constants` VALUES (1886, 'Units of deductible blood.');
3583 INSERT INTO `lang_constants` VALUES (1887, 'Separate claim for mother/baby charges.');
3584 INSERT INTO `lang_constants` VALUES (1888, 'Dental information.');
3585 INSERT INTO `lang_constants` VALUES (1889, 'Tooth surface(s) involved.');
3586 INSERT INTO `lang_constants` VALUES (1890, 'List of all missing teeth (upper and lower).');
3587 INSERT INTO `lang_constants` VALUES (1891, 'Tooth numbers, surfaces, and/or quadrants involved.');
3588 INSERT INTO `lang_constants` VALUES (1892, 'Months of dental treatment remaining.');
3589 INSERT INTO `lang_constants` VALUES (1893, 'Tooth number or letter.');
3590 INSERT INTO `lang_constants` VALUES (1894, 'Dental quadrant/arch.');
3591 INSERT INTO `lang_constants` VALUES (1895, 'Total orthodontic service fee, initial appliance fee, monthly fee, length of service.');
3592 INSERT INTO `lang_constants` VALUES (1896, 'Line information.');
3593 INSERT INTO `lang_constants` VALUES (1897, 'Accident date, state, description and cause.');
3594 INSERT INTO `lang_constants` VALUES (1898, 'Place of service.');
3595 INSERT INTO `lang_constants` VALUES (1899, 'Type of service.');
3596 INSERT INTO `lang_constants` VALUES (1900, 'Total anesthesia minutes.');
3597 INSERT INTO `lang_constants` VALUES (1901, 'Authorization/certification number.');
3598 INSERT INTO `lang_constants` VALUES (1902, 'Procedure/revenue code for service(s) rendered. Please use codes 454 or 455.');
3599 INSERT INTO `lang_constants` VALUES (1903, 'Primary diagnosis code.');
3600 INSERT INTO `lang_constants` VALUES (1904, 'Diagnosis code.');
3601 INSERT INTO `lang_constants` VALUES (1905, 'DRG code(s).');
3602 INSERT INTO `lang_constants` VALUES (1906, 'ADSM-III-R code for services rendered.');
3603 INSERT INTO `lang_constants` VALUES (1907, 'Days/units for procedure/revenue code.');
3604 INSERT INTO `lang_constants` VALUES (1908, 'Frequency of service.');
3605 INSERT INTO `lang_constants` VALUES (1909, 'Length of medical necessity, including begin date.');
3606 INSERT INTO `lang_constants` VALUES (1910, 'Obesity measurements.');
3607 INSERT INTO `lang_constants` VALUES (1911, 'Type of surgery/service for which anesthesia was administered.');
3608 INSERT INTO `lang_constants` VALUES (1912, 'Length of time for services rendered.');
3609 INSERT INTO `lang_constants` VALUES (1913, 'Number of liters/minute & total hours/day for respiratory support.');
3610 INSERT INTO `lang_constants` VALUES (1914, 'Number of lesions excised.');
3611 INSERT INTO `lang_constants` VALUES (1915, 'Facility point of origin and destination - ambulance.');
3612 INSERT INTO `lang_constants` VALUES (1916, 'Number of miles patient was transported.');
3613 INSERT INTO `lang_constants` VALUES (1917, 'Location of durable medical equipment use.');
3614 INSERT INTO `lang_constants` VALUES (1918, 'Length/size of laceration/tumor.');
3615 INSERT INTO `lang_constants` VALUES (1919, 'Subluxation location.');
3616 INSERT INTO `lang_constants` VALUES (1920, 'Number of spine segments.');
3617 INSERT INTO `lang_constants` VALUES (1921, 'Oxygen contents for oxygen system rental.');
3618 INSERT INTO `lang_constants` VALUES (1922, 'Weight.');
3619 INSERT INTO `lang_constants` VALUES (1923, 'Height.');
3620 INSERT INTO `lang_constants` VALUES (1924, 'Claim.');
3621 INSERT INTO `lang_constants` VALUES (1925, 'UB-92/HCFA-1450/HCFA-1500 claim form.');
3622 INSERT INTO `lang_constants` VALUES (1926, 'Paper claim.');
3623 INSERT INTO `lang_constants` VALUES (1927, 'Signed claim form.');
3624 INSERT INTO `lang_constants` VALUES (1928, 'Itemized claim.');
3625 INSERT INTO `lang_constants` VALUES (1929, 'Itemized claim by provider.');
3626 INSERT INTO `lang_constants` VALUES (1930, 'Related confinement claim.');
3627 INSERT INTO `lang_constants` VALUES (1931, 'Copy of prescription.');
3628 INSERT INTO `lang_constants` VALUES (1932, 'Medicare worksheet.');
3629 INSERT INTO `lang_constants` VALUES (1933, 'Copy of Medicare ID card.');
3630 INSERT INTO `lang_constants` VALUES (1934, 'Vouchers/explanation of benefits (EOB).');
3631 INSERT INTO `lang_constants` VALUES (1935, 'Other payer''s Explanation of Benefits/payment information.');
3632 INSERT INTO `lang_constants` VALUES (1936, 'Medical necessity for service.');
3633 INSERT INTO `lang_constants` VALUES (1937, 'Reason for late hospital charges.');
3634 INSERT INTO `lang_constants` VALUES (1938, 'Reason for late discharge.');
3635 INSERT INTO `lang_constants` VALUES (1939, 'Pre-existing information.');
3636 INSERT INTO `lang_constants` VALUES (1940, 'Reason for termination of pregnancy.');
3637 INSERT INTO `lang_constants` VALUES (1941, 'Purpose of family conference/therapy.');
3638 INSERT INTO `lang_constants` VALUES (1942, 'Reason for physical therapy.');
3639 INSERT INTO `lang_constants` VALUES (1943, 'Supporting documentation.');
3640 INSERT INTO `lang_constants` VALUES (1944, 'Attending physician report.');
3641 INSERT INTO `lang_constants` VALUES (1945, 'Nurse''s notes.');
3642 INSERT INTO `lang_constants` VALUES (1946, 'Medical notes/report.');
3643 INSERT INTO `lang_constants` VALUES (1947, 'Operative report.');
3644 INSERT INTO `lang_constants` VALUES (1948, 'Emergency room notes/report.');
3645 INSERT INTO `lang_constants` VALUES (1949, 'Lab/test report/notes/results.');
3646 INSERT INTO `lang_constants` VALUES (1950, 'MRI report.');
3647 INSERT INTO `lang_constants` VALUES (1951, 'Refer to codes 300 for lab notes and 311 for pathology notes');
3648 INSERT INTO `lang_constants` VALUES (1952, 'Physical therapy notes. Please use code 297:6O (6 ''OH'' - not zero)');
3649 INSERT INTO `lang_constants` VALUES (1953, 'Reports for service.');
3650 INSERT INTO `lang_constants` VALUES (1954, 'X-ray reports/interpretation.');
3651 INSERT INTO `lang_constants` VALUES (1955, 'Detailed description of service.');
3652 INSERT INTO `lang_constants` VALUES (1956, 'Narrative with pocket depth chart.');
3653 INSERT INTO `lang_constants` VALUES (1957, 'Discharge summary.');
3654 INSERT INTO `lang_constants` VALUES (1958, 'Code was duplicate of code 299');
3655 INSERT INTO `lang_constants` VALUES (1959, 'Progress notes for the six months prior to statement date.');
3656 INSERT INTO `lang_constants` VALUES (1960, 'Pathology notes/report.');
3657 INSERT INTO `lang_constants` VALUES (1961, 'Dental charting.');
3658 INSERT INTO `lang_constants` VALUES (1962, 'Bridgework information.');
3659 INSERT INTO `lang_constants` VALUES (1963, 'Dental records for this service.');
3660 INSERT INTO `lang_constants` VALUES (1964, 'Past perio treatment history.');
3661 INSERT INTO `lang_constants` VALUES (1965, 'Complete medical history.');
3662 INSERT INTO `lang_constants` VALUES (1966, 'Patient''s medical records.');
3663 INSERT INTO `lang_constants` VALUES (1967, 'X-rays.');
3664 INSERT INTO `lang_constants` VALUES (1968, 'Pre/post-operative x-rays/photographs.');
3665 INSERT INTO `lang_constants` VALUES (1969, 'Study models.');
3666 INSERT INTO `lang_constants` VALUES (1970, 'Radiographs or models.');
3667 INSERT INTO `lang_constants` VALUES (1971, 'Recent fm x-rays.');
3668 INSERT INTO `lang_constants` VALUES (1972, 'Study models, x-rays, and/or narrative.');
3669 INSERT INTO `lang_constants` VALUES (1973, 'Recent x-ray of treatment area and/or narrative.');
3670 INSERT INTO `lang_constants` VALUES (1974, 'Recent fm x-rays and/or narrative.');
3671 INSERT INTO `lang_constants` VALUES (1975, 'Copy of transplant acquisition invoice.');
3672 INSERT INTO `lang_constants` VALUES (1976, 'Periodontal case type diagnosis and recent pocket depth chart with narrative.');
3673 INSERT INTO `lang_constants` VALUES (1977, 'Speech therapy notes. Please use code 297:6R');
3674 INSERT INTO `lang_constants` VALUES (1978, 'Exercise notes.');
3675 INSERT INTO `lang_constants` VALUES (1979, 'Occupational notes.');
3676 INSERT INTO `lang_constants` VALUES (1980, 'History and physical.');
3677 INSERT INTO `lang_constants` VALUES (1981, 'Authorization/certification (include period covered).');
3678 INSERT INTO `lang_constants` VALUES (1982, 'Patient release of information authorization.');
3679 INSERT INTO `lang_constants` VALUES (1983, 'Oxygen certification.');
3680 INSERT INTO `lang_constants` VALUES (1984, 'Durable medical equipment certification.');
3681 INSERT INTO `lang_constants` VALUES (1985, 'Chiropractic certification.');
3682 INSERT INTO `lang_constants` VALUES (1986, 'Ambulance certification/documentation.');
3683 INSERT INTO `lang_constants` VALUES (1987, 'Home health certification. Please use code 332:4Y');
3684 INSERT INTO `lang_constants` VALUES (1988, 'Enteral/parenteral certification.');
3685 INSERT INTO `lang_constants` VALUES (1989, 'Pacemaker certification.');
3686 INSERT INTO `lang_constants` VALUES (1990, 'Private duty nursing certification.');
3687 INSERT INTO `lang_constants` VALUES (1991, 'Podiatric certification.');
3688 INSERT INTO `lang_constants` VALUES (1992, 'Documentation that facility is state licensed and Medicare approved as a surgical facility.');
3689 INSERT INTO `lang_constants` VALUES (1993, 'Documentation that provider of physical therapy is Medicare Part B approved.');
3690 INSERT INTO `lang_constants` VALUES (1994, 'Treatment plan for service/diagnosis');
3691 INSERT INTO `lang_constants` VALUES (1995, 'Proposed treatment plan for next 6 months.');
3692 INSERT INTO `lang_constants` VALUES (1996, 'Refer to code 345 for treatment plan and code 282 for prescription');
3693 INSERT INTO `lang_constants` VALUES (1997, 'Chiropractic treatment plan.');
3694 INSERT INTO `lang_constants` VALUES (1998, 'Psychiatric treatment plan. Please use codes 345:5I, 5J, 5K, 5L, 5M, 5N, 5O (5 ''OH'' - not zero), 5P');
3695 INSERT INTO `lang_constants` VALUES (1999, 'Speech pathology treatment plan. Please use code 345:6R');
3696 INSERT INTO `lang_constants` VALUES (2000, 'Physical/occupational therapy treatment plan. Please use codes 345:6O (6 ''OH'' - not zero), 6N');
3697 INSERT INTO `lang_constants` VALUES (2001, 'Duration of treatment plan.');
3698 INSERT INTO `lang_constants` VALUES (2002, 'Orthodontics treatment plan.');
3699 INSERT INTO `lang_constants` VALUES (2003, 'Treatment plan for replacement of remaining missing teeth.');
3700 INSERT INTO `lang_constants` VALUES (2004, 'Has claim been paid?');
3701 INSERT INTO `lang_constants` VALUES (2005, 'Was blood furnished?');
3702 INSERT INTO `lang_constants` VALUES (2006, 'Has or will blood be replaced?');
3703 INSERT INTO `lang_constants` VALUES (2007, 'Does provider accept assignment of benefits?');
3704 INSERT INTO `lang_constants` VALUES (2008, 'Is there a release of information signature on file?');
3705 INSERT INTO `lang_constants` VALUES (2009, 'Is there an assignment of benefits signature on file?');
3706 INSERT INTO `lang_constants` VALUES (2010, 'Is there other insurance?');
3707 INSERT INTO `lang_constants` VALUES (2011, 'Is the dental patient covered by medical insurance?');
3708 INSERT INTO `lang_constants` VALUES (2012, 'Will worker''s compensation cover submitted charges?');
3709 INSERT INTO `lang_constants` VALUES (2013, 'Is accident/illness/condition employment related?');
3710 INSERT INTO `lang_constants` VALUES (2014, 'Is service the result of an accident?');
3711 INSERT INTO `lang_constants` VALUES (2015, 'Is injury due to auto accident?');
3712 INSERT INTO `lang_constants` VALUES (2016, 'Is service performed for a recurring condition or new condition?');
3713 INSERT INTO `lang_constants` VALUES (2017, 'Is medical doctor (MD) or doctor of osteopath (DO) on staff of this facility?');
3714 INSERT INTO `lang_constants` VALUES (2018, 'Does patient condition preclude use of ordinary bed?');
3715 INSERT INTO `lang_constants` VALUES (2019, 'Can patient operate controls of bed?');
3716 INSERT INTO `lang_constants` VALUES (2020, 'Is patient confined to room?');
3717 INSERT INTO `lang_constants` VALUES (2021, 'Is patient confined to bed?');
3718 INSERT INTO `lang_constants` VALUES (2022, 'Is patient an insulin diabetic?');
3719 INSERT INTO `lang_constants` VALUES (2023, 'Is prescribed lenses a result of cataract surgery?');
3720 INSERT INTO `lang_constants` VALUES (2024, 'Was refraction performed?');
3721 INSERT INTO `lang_constants` VALUES (2025, 'Was charge for ambulance for a round-trip?');
3722 INSERT INTO `lang_constants` VALUES (2026, 'Was durable medical equipment purchased new or used?');
3723 INSERT INTO `lang_constants` VALUES (2027, 'Is pacemaker temporary or permanent?');
3724 INSERT INTO `lang_constants` VALUES (2028, 'Were services performed supervised by a physician?');
3725 INSERT INTO `lang_constants` VALUES (2029, 'Were services performed by a CRNA under appropriate medical direction?');
3726 INSERT INTO `lang_constants` VALUES (2030, 'Is drug generic?');
3727 INSERT INTO `lang_constants` VALUES (2031, 'Did provider authorize generic or brand name dispensing?');
3728 INSERT INTO `lang_constants` VALUES (2032, 'Was nerve block used for surgical procedure or pain management?');
3729 INSERT INTO `lang_constants` VALUES (2033, 'Is prosthesis/crown/inlay placement an initial placement or a replacement?');
3730 INSERT INTO `lang_constants` VALUES (2034, 'Is appliance upper or lower arch & is appliance fixed or removable?');
3731 INSERT INTO `lang_constants` VALUES (2035, 'Is service for orthodontic purposes?');
3732 INSERT INTO `lang_constants` VALUES (2036, 'Date patient last examined by entity');
3733 INSERT INTO `lang_constants` VALUES (2037, 'Date post-operative care assumed');
3734 INSERT INTO `lang_constants` VALUES (2038, 'Date post-operative care relinquished');
3735 INSERT INTO `lang_constants` VALUES (2039, 'Date of most recent medical event necessitating service(s)');
3736 INSERT INTO `lang_constants` VALUES (2040, 'Date(s) dialysis conducted');
3737 INSERT INTO `lang_constants` VALUES (2041, 'Date(s) of blood transfusion(s)');
3738 INSERT INTO `lang_constants` VALUES (2042, 'Date of previous pacemaker check');
3739 INSERT INTO `lang_constants` VALUES (2043, 'Date(s) of most recent hospitalization related to service');
3740 INSERT INTO `lang_constants` VALUES (2044, 'Date entity signed certification/recertification');
3741 INSERT INTO `lang_constants` VALUES (2045, 'Date home dialysis began');
3742 INSERT INTO `lang_constants` VALUES (2046, 'Date of onset/exacerbation of illness/condition');
3743 INSERT INTO `lang_constants` VALUES (2047, 'Visual field test results');
3744 INSERT INTO `lang_constants` VALUES (2048, 'Report of prior testing related to this service, including dates');
3745 INSERT INTO `lang_constants` VALUES (2049, 'Claim is out of balance');
3746 INSERT INTO `lang_constants` VALUES (2050, 'Source of payment is not valid');
3747 INSERT INTO `lang_constants` VALUES (2051, 'Amount must be greater than zero');
3748 INSERT INTO `lang_constants` VALUES (2052, 'Entity referral notes/orders/prescription');
3749 INSERT INTO `lang_constants` VALUES (2053, 'Specific findings, complaints, or symptoms necessitating service');
3750 INSERT INTO `lang_constants` VALUES (2054, 'Summary of services');
3751 INSERT INTO `lang_constants` VALUES (2055, 'Brief medical history as related to service(s)');
3752 INSERT INTO `lang_constants` VALUES (2056, 'Complications/mitigating circumstances');
3753 INSERT INTO `lang_constants` VALUES (2057, 'Initial certification');
3754 INSERT INTO `lang_constants` VALUES (2058, 'Medication logs/records (including medication therapy)');
3755 INSERT INTO `lang_constants` VALUES (2059, 'Explain differences between treatment plan and patient''s condition');
3756 INSERT INTO `lang_constants` VALUES (2060, 'Medical necessity for non-routine service(s)');
3757 INSERT INTO `lang_constants` VALUES (2061, 'Medical records to substantiate decision of non-coverage');
3758 INSERT INTO `lang_constants` VALUES (2062, 'Explain/justify differences between treatment plan and services rendered.');
3759 INSERT INTO `lang_constants` VALUES (2063, 'Need for more than one physician to treat patient');
3760 INSERT INTO `lang_constants` VALUES (2064, 'Justify services outside composite rate');
3761 INSERT INTO `lang_constants` VALUES (2065, 'Verification of patient''s ability to retain and use information');
3762 INSERT INTO `lang_constants` VALUES (2066, 'Prior testing, including result(s) and date(s) as related to service(s)');
3763 INSERT INTO `lang_constants` VALUES (2067, 'Indicating why medications cannot be taken orally');
3764 INSERT INTO `lang_constants` VALUES (2068, 'Individual test(s) comprising the panel and the charges for each test');
3765 INSERT INTO `lang_constants` VALUES (2069, 'Name, dosage and medical justification of contrast material used for radiology procedure');
3766 INSERT INTO `lang_constants` VALUES (2070, 'Medical review attachment/information for service(s)');
3767 INSERT INTO `lang_constants` VALUES (2071, 'Homebound status');
3768 INSERT INTO `lang_constants` VALUES (2072, 'Prognosis');
3769 INSERT INTO `lang_constants` VALUES (2073, 'Statement of non-coverage including itemized bill');
3770 INSERT INTO `lang_constants` VALUES (2074, 'Itemize non-covered services');
3771 INSERT INTO `lang_constants` VALUES (2075, 'All current diagnoses');
3772 INSERT INTO `lang_constants` VALUES (2076, 'Emergency care provided during transport');
3773 INSERT INTO `lang_constants` VALUES (2077, 'Reason for transport by ambulance');
3774 INSERT INTO `lang_constants` VALUES (2078, 'Loaded miles and charges for transport to nearest facility with appropriate services');
3775 INSERT INTO `lang_constants` VALUES (2079, 'Nearest appropriate facility');
3776 INSERT INTO `lang_constants` VALUES (2080, 'Provide condition/functional status at time of service');
3777 INSERT INTO `lang_constants` VALUES (2081, 'Date benefits exhausted');
3778 INSERT INTO `lang_constants` VALUES (2082, 'Copy of patient revocation of hospice benefits');
3779 INSERT INTO `lang_constants` VALUES (2083, 'Reasons for more than one transfer per entitlement period');
3780 INSERT INTO `lang_constants` VALUES (2084, 'Notice of Admission');
3781 INSERT INTO `lang_constants` VALUES (2085, 'Short term goals');
3782 INSERT INTO `lang_constants` VALUES (2086, 'Long term goals');
3783 INSERT INTO `lang_constants` VALUES (2087, 'Number of patients attending session');
3784 INSERT INTO `lang_constants` VALUES (2088, 'Size, depth, amount, and type of drainage wounds');
3785 INSERT INTO `lang_constants` VALUES (2089, 'why non-skilled caregiver has not been taught procedure');
3786 INSERT INTO `lang_constants` VALUES (2090, 'Entity professional qualification for service(s)');
3787 INSERT INTO `lang_constants` VALUES (2091, 'Modalities of service');
3788 INSERT INTO `lang_constants` VALUES (2092, 'Initial evaluation report');
3789 INSERT INTO `lang_constants` VALUES (2093, 'Method used to obtain test sample');
3790 INSERT INTO `lang_constants` VALUES (2094, 'Explain why hearing loss not correctable by hearing aid');
3791 INSERT INTO `lang_constants` VALUES (2095, 'Documentation from prior claim(s) related to service(s)');
3792 INSERT INTO `lang_constants` VALUES (2096, 'Plan of teaching');
3793 INSERT INTO `lang_constants` VALUES (2097, 'Invalid billing combination. See STC12 for details. This code should only be used to indicate an inconsistency between two or more data elements on the claim. A detailed explanation is required in STC12 when this code is used.');
3794 INSERT INTO `lang_constants` VALUES (2098, 'Projected date to discontinue service(s)');
3795 INSERT INTO `lang_constants` VALUES (2099, 'Awaiting spend down determination');
3796 INSERT INTO `lang_constants` VALUES (2100, 'Preoperative and post-operative diagnosis');
3797 INSERT INTO `lang_constants` VALUES (2101, 'Total visits in total number of hours/day and total number of hours/week');
3798 INSERT INTO `lang_constants` VALUES (2102, 'Procedure Code Modifier(s) for Service(s) Rendered');
3799 INSERT INTO `lang_constants` VALUES (2103, 'Procedure code for services rendered.');
3800 INSERT INTO `lang_constants` VALUES (2104, 'Revenue code for services rendered.');
3801 INSERT INTO `lang_constants` VALUES (2105, 'Covered Day(s)');
3802 INSERT INTO `lang_constants` VALUES (2106, 'Non-Covered Day(s)');
3803 INSERT INTO `lang_constants` VALUES (2107, 'Coinsurance Day(s)');
3804 INSERT INTO `lang_constants` VALUES (2108, 'Lifetime Reserve Day(s)');
3805 INSERT INTO `lang_constants` VALUES (2109, 'NUBC Condition Code(s)');
3806 INSERT INTO `lang_constants` VALUES (2110, 'NUBC Occurrence Code(s) and Date(s)');
3807 INSERT INTO `lang_constants` VALUES (2111, 'NUBC Occurrence Span Code(s) and Date(s)');
3808 INSERT INTO `lang_constants` VALUES (2112, 'NUBC Value Code(s) and/or Amount(s)');
3809 INSERT INTO `lang_constants` VALUES (2113, 'Payer Assigned Claim Control Number');
3810 INSERT INTO `lang_constants` VALUES (2114, 'Principal Procedure Code for Service(s) Rendered');
3811 INSERT INTO `lang_constants` VALUES (2115, 'Entities Original Signature');
3812 INSERT INTO `lang_constants` VALUES (2116, 'Entity Signature Date');
3813 INSERT INTO `lang_constants` VALUES (2117, 'Patient Signature Source');
3814 INSERT INTO `lang_constants` VALUES (2118, 'Purchase Service Charge');
3815 INSERT INTO `lang_constants` VALUES (2119, 'Was service purchased from another entity?');
3816 INSERT INTO `lang_constants` VALUES (2120, 'Were services related to an emergency?');
3817 INSERT INTO `lang_constants` VALUES (2121, 'Ambulance Run Sheet');
3818 INSERT INTO `lang_constants` VALUES (2122, 'Missing or invalid lab indicator');
3819 INSERT INTO `lang_constants` VALUES (2123, 'Procedure code and patient gender mismatch');
3820 INSERT INTO `lang_constants` VALUES (2124, 'Procedure code not valid for patient age');
3821 INSERT INTO `lang_constants` VALUES (2125, 'Missing or invalid units of service');
3822 INSERT INTO `lang_constants` VALUES (2126, 'Diagnosis code pointer is missing or invalid');
3823 INSERT INTO `lang_constants` VALUES (2127, 'Claim submitter''s identifier (patient account number) is missing');
3824 INSERT INTO `lang_constants` VALUES (2128, 'Other Carrier payer ID is missing or invalid');
3825 INSERT INTO `lang_constants` VALUES (2129, 'Other Carrier Claim filing indicator is missing or invalid');
3826 INSERT INTO `lang_constants` VALUES (2130, 'Claim/submission format is invalid.');
3827 INSERT INTO `lang_constants` VALUES (2131, 'Date Error, Century Missing');
3828 INSERT INTO `lang_constants` VALUES (2132, 'Maximum coverage amount met or exceeded for benefit period.');
3829 INSERT INTO `lang_constants` VALUES (2133, 'Business Application Currently Not Available');
3830 INSERT INTO `lang_constants` VALUES (2134, 'More information available than can be returned in real time mode. Narrow your current search criteria.');
3831 INSERT INTO `lang_constants` VALUES (2135, 'Principle Procedure Date');
3832 INSERT INTO `lang_constants` VALUES (2136, 'Claim not found, claim should have been submitted to/through ''entity''');
3833 INSERT INTO `lang_constants` VALUES (2137, 'Diagnosis code(s) for the services rendered.');
3834 INSERT INTO `lang_constants` VALUES (2138, 'Attachment Control Number');
3835 INSERT INTO `lang_constants` VALUES (2139, 'Other Procedure Code for Service(s) Rendered');
3836 INSERT INTO `lang_constants` VALUES (2140, 'Entity not eligible for encounter submission');
3837 INSERT INTO `lang_constants` VALUES (2141, 'Other Procedure Date');
3838 INSERT INTO `lang_constants` VALUES (2142, 'Version/Release/Industry ID code not currently supported by information holder');
3839 INSERT INTO `lang_constants` VALUES (2143, 'Real-Time requests not supported by the information holder, resubmit as batch request');
3840 INSERT INTO `lang_constants` VALUES (2144, 'Requests for re-adjudication must reference the newly assigned payer claim control number for this previously adjusted claim. Correct the payer claim control number and re-submit.');
3841 INSERT INTO `lang_constants` VALUES (2145, 'Submitter not approved for electronic claim submissions on behalf of this entity');
3842 INSERT INTO `lang_constants` VALUES (2146, 'Sales tax not paid');
3843 INSERT INTO `lang_constants` VALUES (2147, 'Maximum leave days exhausted');
3844 INSERT INTO `lang_constants` VALUES (2148, 'No rate on file with the payer for this service for this entity');
3845 INSERT INTO `lang_constants` VALUES (2149, 'Entity''s Postal/Zip Code');
3846 INSERT INTO `lang_constants` VALUES (2150, 'Entity''s State/Province');
3847 INSERT INTO `lang_constants` VALUES (2151, 'Entity''s City');
3848 INSERT INTO `lang_constants` VALUES (2152, 'Entity''s Street Address');
3849 INSERT INTO `lang_constants` VALUES (2153, 'Entity''s Last Name');
3850 INSERT INTO `lang_constants` VALUES (2154, 'Entity''s First Name');
3851 INSERT INTO `lang_constants` VALUES (2155, 'Entity is changing processor/clearinghouse. This claim must be submitted to the new processor/clearinghouse');
3852 INSERT INTO `lang_constants` VALUES (2156, 'HCPCS');
3853 INSERT INTO `lang_constants` VALUES (2157, 'ICD9');
3854 INSERT INTO `lang_constants` VALUES (2158, 'E-Code');
3855 INSERT INTO `lang_constants` VALUES (2159, 'Future date');
3856 INSERT INTO `lang_constants` VALUES (2160, 'Invalid character');
3857 INSERT INTO `lang_constants` VALUES (2161, 'Length invalid for receiver''s application system');
3858 INSERT INTO `lang_constants` VALUES (2162, 'HIPPS Rate Code for services Rendered');
3859 INSERT INTO `lang_constants` VALUES (2163, 'Entities Middle Name');
3860 INSERT INTO `lang_constants` VALUES (2164, 'Managed Care review');
3861 INSERT INTO `lang_constants` VALUES (2165, 'Adjudication or Payment Date');
3862 INSERT INTO `lang_constants` VALUES (2166, 'Adjusted Repriced Claim Reference Number');
3863 INSERT INTO `lang_constants` VALUES (2167, 'Adjusted Repriced Line item Reference Number');
3864 INSERT INTO `lang_constants` VALUES (2168, 'Adjustment Amount');
3865 INSERT INTO `lang_constants` VALUES (2169, 'Adjustment Quantity');
3866 INSERT INTO `lang_constants` VALUES (2170, 'Adjustment Reason Code');
3867 INSERT INTO `lang_constants` VALUES (2171, 'Anesthesia Modifying Units');
3868 INSERT INTO `lang_constants` VALUES (2172, 'Anesthesia Unit Count');
3869 INSERT INTO `lang_constants` VALUES (2173, 'Arterial Blood Gas Quantity');
3870 INSERT INTO `lang_constants` VALUES (2174, 'Begin Therapy Date');
3871 INSERT INTO `lang_constants` VALUES (2175, 'Bundled or Unbundled Line Number');
3872 INSERT INTO `lang_constants` VALUES (2176, 'Certification Condition Indicator');
3873 INSERT INTO `lang_constants` VALUES (2177, 'Certification Period Projected Visit Count');
3874 INSERT INTO `lang_constants` VALUES (2178, 'Certification Revision Date');
3875 INSERT INTO `lang_constants` VALUES (2179, 'Claim Adjustment Indicator');
3876 INSERT INTO `lang_constants` VALUES (2180, 'Claim Disproportinate Share Amount');
3877 INSERT INTO `lang_constants` VALUES (2181, 'Claim DRG Amount');
3878 INSERT INTO `lang_constants` VALUES (2182, 'Claim DRG Outlier Amount');
3879 INSERT INTO `lang_constants` VALUES (2183, 'Claim ESRD Payment Amount');
3880 INSERT INTO `lang_constants` VALUES (2184, 'Claim Frequency Code');
3881 INSERT INTO `lang_constants` VALUES (2185, 'Claim Indirect Teaching Amount');
3882 INSERT INTO `lang_constants` VALUES (2186, 'Claim MSP Pass-through Amount');
3883 INSERT INTO `lang_constants` VALUES (2187, 'Claim or Encounter Identifier');
3884 INSERT INTO `lang_constants` VALUES (2188, 'Claim PPS Capital Amount');
3885 INSERT INTO `lang_constants` VALUES (2189, 'Claim PPS Capital Outlier Amount');
3886 INSERT INTO `lang_constants` VALUES (2190, 'Claim Submission Reason Code');
3887 INSERT INTO `lang_constants` VALUES (2191, 'Claim Total Denied Charge Amount');
3888 INSERT INTO `lang_constants` VALUES (2192, 'Clearinghouse or Value Added Network Trace');
3889 INSERT INTO `lang_constants` VALUES (2193, 'Clinical Laboratory Improvement Amendment');
3890 INSERT INTO `lang_constants` VALUES (2194, 'Contract Amount');
3891 INSERT INTO `lang_constants` VALUES (2195, 'Contract Code');
3892 INSERT INTO `lang_constants` VALUES (2196, 'Contract Percentage');
3893 INSERT INTO `lang_constants` VALUES (2197, 'Contract Type Code');
3894 INSERT INTO `lang_constants` VALUES (2198, 'Contract Version Identifier');
3895 INSERT INTO `lang_constants` VALUES (2199, 'Coordination of Benefits Code');
3896 INSERT INTO `lang_constants` VALUES (2200, 'Coordination of Benefits Total Submitted Charge');
3897 INSERT INTO `lang_constants` VALUES (2201, 'Cost Report Day Count');
3898 INSERT INTO `lang_constants` VALUES (2202, 'Covered Amount');
3899 INSERT INTO `lang_constants` VALUES (2203, 'Date Claim Paid');
3900 INSERT INTO `lang_constants` VALUES (2204, 'Delay Reason Code');
3901 INSERT INTO `lang_constants` VALUES (2205, 'Demonstration Project Identifier');
3902 INSERT INTO `lang_constants` VALUES (2206, 'Diagnosis Date');
3903 INSERT INTO `lang_constants` VALUES (2207, 'Discount Amount');
3904 INSERT INTO `lang_constants` VALUES (2208, 'Document Control Identifier');
3905 INSERT INTO `lang_constants` VALUES (2209, 'Entity''s Additional/Secondary Identifier');
3906 INSERT INTO `lang_constants` VALUES (2210, 'Entity''s Contact Name');
3907 INSERT INTO `lang_constants` VALUES (2211, 'Entity''s National Provider Identifier (NPI)');
3908 INSERT INTO `lang_constants` VALUES (2212, 'Entity''s Tax Amount');
3909 INSERT INTO `lang_constants` VALUES (2213, 'EPSDT Indicator');
3910 INSERT INTO `lang_constants` VALUES (2214, 'Estimated Claim Due Amount');
3911 INSERT INTO `lang_constants` VALUES (2215, 'Exception Code');
3912 INSERT INTO `lang_constants` VALUES (2216, 'Facility Code Qualifier');
3913 INSERT INTO `lang_constants` VALUES (2217, 'Family Planning Indicator');
3914 INSERT INTO `lang_constants` VALUES (2218, 'Fixed Format Information');
3915 INSERT INTO `lang_constants` VALUES (2219, 'Free Form Message Text');
3916 INSERT INTO `lang_constants` VALUES (2220, 'Frequency Count');
3917 INSERT INTO `lang_constants` VALUES (2221, 'Frequency Period');
3918 INSERT INTO `lang_constants` VALUES (2222, 'Functional Limitation Code');
3919 INSERT INTO `lang_constants` VALUES (2223, 'HCPCS Payable Amount Home Health');
3920 INSERT INTO `lang_constants` VALUES (2224, 'Homebound Indicator');
3921 INSERT INTO `lang_constants` VALUES (2225, 'Immunization Batch Number');
3922 INSERT INTO `lang_constants` VALUES (2226, 'Industry Code');
3923 INSERT INTO `lang_constants` VALUES (2227, 'Insurance Type Code');
3924 INSERT INTO `lang_constants` VALUES (2228, 'Investigational Device Exemption Identifier');
3925 INSERT INTO `lang_constants` VALUES (2229, 'Last Certification Date');
3926 INSERT INTO `lang_constants` VALUES (2230, 'Last Worked Date');
3927 INSERT INTO `lang_constants` VALUES (2231, 'Lifetime Psychiatric Days Count');
3928 INSERT INTO `lang_constants` VALUES (2232, 'Line Item Charge Amount');
3929 INSERT INTO `lang_constants` VALUES (2233, 'Line Item Control Number');
3930 INSERT INTO `lang_constants` VALUES (2234, 'Line Item Denied Charge or Non-covered Charge');
3931 INSERT INTO `lang_constants` VALUES (2235, 'Line Note Text');
3932 INSERT INTO `lang_constants` VALUES (2236, 'Measurement Reference Identification Code');
3933 INSERT INTO `lang_constants` VALUES (2237, 'Medical Record Number');
3934 INSERT INTO `lang_constants` VALUES (2238, 'Medicare Assignment Code');
3935 INSERT INTO `lang_constants` VALUES (2239, 'Medicare Coverage Indicator');
3936 INSERT INTO `lang_constants` VALUES (2240, 'Medicare Paid at 100% Amount');
3937 INSERT INTO `lang_constants` VALUES (2241, 'Medicare Paid at 80% Amount');
3938 INSERT INTO `lang_constants` VALUES (2242, 'Medicare Section 4081 Indicator');
3939 INSERT INTO `lang_constants` VALUES (2243, 'Mental Status Code');
3940 INSERT INTO `lang_constants` VALUES (2244, 'Monthly Treatment Count');
3941 INSERT INTO `lang_constants` VALUES (2245, 'Non-covered Charge Amount');
3942 INSERT INTO `lang_constants` VALUES (2246, 'Non-payable Professional Component Amount');
3943 INSERT INTO `lang_constants` VALUES (2247, 'Non-payable Professional Component Billed Amount');
3944 INSERT INTO `lang_constants` VALUES (2248, 'Note Reference Code');
3945 INSERT INTO `lang_constants` VALUES (2249, 'Oxygen Saturation Qty');
3946 INSERT INTO `lang_constants` VALUES (2250, 'Oxygen Test Condition Code');
3947 INSERT INTO `lang_constants` VALUES (2251, 'Oxygen Test Date');
3948 INSERT INTO `lang_constants` VALUES (2252, 'Old Capital Amount');
3949 INSERT INTO `lang_constants` VALUES (2253, 'Originator Application Transaction Identifier');
3950 INSERT INTO `lang_constants` VALUES (2254, 'Orthodontic Treatment Months Count');
3951 INSERT INTO `lang_constants` VALUES (2255, 'Paid From Part A Medicare Trust Fund Amount');
3952 INSERT INTO `lang_constants` VALUES (2256, 'Paid From Part B Medicare Trust Fund Amount');
3953 INSERT INTO `lang_constants` VALUES (2257, 'Paid Service Unit Count');
3954 INSERT INTO `lang_constants` VALUES (2258, 'Participation Agreement');
3955 INSERT INTO `lang_constants` VALUES (2259, 'Patient Discharge Facility Type Code');
3956 INSERT INTO `lang_constants` VALUES (2260, 'Peer Review Authorization Number');
3957 INSERT INTO `lang_constants` VALUES (2261, 'Per Day Limit Amount');
3958 INSERT INTO `lang_constants` VALUES (2262, 'Physician Contact Date');
3959 INSERT INTO `lang_constants` VALUES (2263, 'Physician Order Date');
3960 INSERT INTO `lang_constants` VALUES (2264, 'Policy Compliance Code');
3961 INSERT INTO `lang_constants` VALUES (2265, 'Policy Name');
3962 INSERT INTO `lang_constants` VALUES (2266, 'Postage Claimed Amount');
3963 INSERT INTO `lang_constants` VALUES (2267, 'PPS-Capital DSH DRG Amount');
3964 INSERT INTO `lang_constants` VALUES (2268, 'PPS-Capital Exception Amount');
3965 INSERT INTO `lang_constants` VALUES (2269, 'PPS-Capital FSP DRG Amount');
3966 INSERT INTO `lang_constants` VALUES (2270, 'PPS-Capital HSP DRG Amount');
3967 INSERT INTO `lang_constants` VALUES (2271, 'PPS-Capital IME Amount');
3968 INSERT INTO `lang_constants` VALUES (2272, 'PPS-Operating Federal Specific DRG Amount');
3969 INSERT INTO `lang_constants` VALUES (2273, 'PPS-Operating Hospital Specific DRG Amount');
3970 INSERT INTO `lang_constants` VALUES (2274, 'Predetermination of Benefits Identifier');
3971 INSERT INTO `lang_constants` VALUES (2275, 'Pregnancy Indicator');
3972 INSERT INTO `lang_constants` VALUES (2276, 'Pre-Tax Claim Amount');
3973 INSERT INTO `lang_constants` VALUES (2277, 'Pricing Methodology');
3974 INSERT INTO `lang_constants` VALUES (2278, 'Property Casualty Claim Number');
3975 INSERT INTO `lang_constants` VALUES (2279, 'Referring CLIA Number');
3976 INSERT INTO `lang_constants` VALUES (2280, 'Reimbursement Rate');
3977 INSERT INTO `lang_constants` VALUES (2281, 'Reject Reason Code');
3978 INSERT INTO `lang_constants` VALUES (2282, 'Related Causes Code');
3979 INSERT INTO `lang_constants` VALUES (2283, 'Remark Code');
3980 INSERT INTO `lang_constants` VALUES (2284, 'Repriced Approved Ambulatory Patient Group');
3981 INSERT INTO `lang_constants` VALUES (2285, 'Repriced Line Item Reference Number');
3982 INSERT INTO `lang_constants` VALUES (2286, 'Repriced Saving Amount');
3983 INSERT INTO `lang_constants` VALUES (2287, 'Repricing Per Diem or Flat Rate Amount');
3984 INSERT INTO `lang_constants` VALUES (2288, 'Responsibility Amount');
3985 INSERT INTO `lang_constants` VALUES (2289, 'Sales Tax Amount');
3986 INSERT INTO `lang_constants` VALUES (2290, 'Service Adjudication or Payment Date');
3987 INSERT INTO `lang_constants` VALUES (2291, 'Service Authorization Exception Code');
3988 INSERT INTO `lang_constants` VALUES (2292, 'Service Line Paid Amount');
3989 INSERT INTO `lang_constants` VALUES (2293, 'Service Line Rate');
3990 INSERT INTO `lang_constants` VALUES (2294, 'Service Tax Amount');
3991 INSERT INTO `lang_constants` VALUES (2295, 'Ship, Delivery or Calendar Pattern Code');
3992 INSERT INTO `lang_constants` VALUES (2296, 'Shipped Date');
3993 INSERT INTO `lang_constants` VALUES (2297, 'Similar Illness or Symptom Date');
3994 INSERT INTO `lang_constants` VALUES (2298, 'Skilled Nursing Facility Indicator');
3995 INSERT INTO `lang_constants` VALUES (2299, 'Special Program Indicator');
3996 INSERT INTO `lang_constants` VALUES (2300, 'State Industrial Accident Provider Number');
3997 INSERT INTO `lang_constants` VALUES (2301, 'Terms Discount Percentage');
3998 INSERT INTO `lang_constants` VALUES (2302, 'Test Performed Date');
3999 INSERT INTO `lang_constants` VALUES (2303, 'Total Denied Charge Amount');
4000 INSERT INTO `lang_constants` VALUES (2304, 'Total Medicare Paid Amount');
4001 INSERT INTO `lang_constants` VALUES (2305, 'Total Visits Projected This Certification Count');
4002 INSERT INTO `lang_constants` VALUES (2306, 'Total Visits Rendered Count');
4003 INSERT INTO `lang_constants` VALUES (2307, 'Treatment Code');
4004 INSERT INTO `lang_constants` VALUES (2308, 'Unit or Basis for Measurement Code');
4005 INSERT INTO `lang_constants` VALUES (2309, 'Universal Product Number');
4006 INSERT INTO `lang_constants` VALUES (2310, 'Visits Prior to Recertification Date Count CR702');
4007 INSERT INTO `lang_constants` VALUES (2311, 'X-ray Availability Indicator');
4008 INSERT INTO `lang_constants` VALUES (2312, 'Entity''s Group Name');
4009 INSERT INTO `lang_constants` VALUES (2313, 'Orthodontic Banding Date');
4010 INSERT INTO `lang_constants` VALUES (2314, 'Surgery Date');
4011 INSERT INTO `lang_constants` VALUES (2315, 'Surgical Procedure Code');
4012 INSERT INTO `lang_constants` VALUES (2316, 'Real-Time requests not supported by the information holder, do not resubmit');
4013 INSERT INTO `lang_constants` VALUES (2317, 'Missing Endodontics treatment history and prognosis');
4014 INSERT INTO `lang_constants` VALUES (2318, 'Dental service narrative needed.');
4015 INSERT INTO `lang_constants` VALUES (2319, 'No billing system is currently active');
4016 INSERT INTO `lang_constants` VALUES (2320, 'Deductible Amount');
4017 INSERT INTO `lang_constants` VALUES (2321, 'Coinsurance Amount');
4018 INSERT INTO `lang_constants` VALUES (2322, 'Co-payment Amount');
4019 INSERT INTO `lang_constants` VALUES (2323, 'The procedure code is inconsistent with the modifier used or a required modifier is missing');
4020 INSERT INTO `lang_constants` VALUES (2324, 'The procedure code/bill type is inconsistent with the place of service');
4021 INSERT INTO `lang_constants` VALUES (2325, 'The procedure/revenue code is inconsistent with the patients age');
4022 INSERT INTO `lang_constants` VALUES (2326, 'The procedure/revenue code is inconsistent with the patients gender');
4023 INSERT INTO `lang_constants` VALUES (2327, 'The procedure code is inconsistent with the provider type/specialty (taxonomy)');
4024 INSERT INTO `lang_constants` VALUES (2328, 'The diagnosis is inconsistent with the patients age');
4025 INSERT INTO `lang_constants` VALUES (2329, 'The diagnosis is inconsistent with the patients gender');
4026 INSERT INTO `lang_constants` VALUES (2330, 'The diagnosis is inconsistent with the procedure');
4027 INSERT INTO `lang_constants` VALUES (2331, 'The diagnosis is inconsistent with the provider type');
4028 INSERT INTO `lang_constants` VALUES (2332, 'The date of death precedes the date of service');
4029 INSERT INTO `lang_constants` VALUES (2333, 'The date of birth follows the date of service');
4030 INSERT INTO `lang_constants` VALUES (2334, 'Payment adjusted because the submitted authorization number is missing, invalid, or does not apply to the billed services or provider');
4031 INSERT INTO `lang_constants` VALUES (2335, 'Claim/service lacks information which is needed for adjudication. Additional information is supplied using remittance advice remarks codes whenever appropriate');
4032 INSERT INTO `lang_constants` VALUES (2336, 'Payment adjusted because requested information was not provided or was insufficient/incomplete. Additional information is supplied using the remittance advice remarks codes whenever appropriate');
4033 INSERT INTO `lang_constants` VALUES (2337, 'Duplicate claim/service');
4034 INSERT INTO `lang_constants` VALUES (2338, 'Claim denied because this is a work-related injury/illness and thus the liability of the Workers Compensation Carrier');
4035 INSERT INTO `lang_constants` VALUES (2339, 'Claim denied because this injury/illness is covered by the liability carrier');
4036 INSERT INTO `lang_constants` VALUES (2340, 'Claim denied because this injury/illness is the liability of the no-fault carrier');
4037 INSERT INTO `lang_constants` VALUES (2341, 'Payment adjusted because this care may be covered by another payer per coordination of benefits');
4038 INSERT INTO `lang_constants` VALUES (2342, 'Payment adjusted due to the impact of prior payer(s) adjudication including payments and/or adjustments');
4039 INSERT INTO `lang_constants` VALUES (2343, 'Payment for charges adjusted. Charges are covered under a capitation agreement/managed care plan');
4040 INSERT INTO `lang_constants` VALUES (2344, 'Payment denied. Your Stop loss deductible has not been met');
4041 INSERT INTO `lang_constants` VALUES (2345, 'Expenses incurred prior to coverage');
4042 INSERT INTO `lang_constants` VALUES (2346, 'Expenses incurred after coverage terminated');
4043 INSERT INTO `lang_constants` VALUES (2347, 'The time limit for filing has expired');
4044 INSERT INTO `lang_constants` VALUES (2348, 'Claim denied as patient cannot be identified as our insured');
4045 INSERT INTO `lang_constants` VALUES (2349, 'Our records indicate that this dependent is not an eligible dependent as defined');
4046 INSERT INTO `lang_constants` VALUES (2350, 'Claim denied. Insured has no dependent coverage');
4047 INSERT INTO `lang_constants` VALUES (2351, 'Claim denied. Insured has no coverage for newborns');
4048 INSERT INTO `lang_constants` VALUES (2352, 'Lifetime benefit maximum has been reached');
4049 INSERT INTO `lang_constants` VALUES (2353, 'Services not provided or authorized by designated (network/primary care) providers');
4050 INSERT INTO `lang_constants` VALUES (2354, 'Services denied at the time authorization/pre-certification was requested');
4051 INSERT INTO `lang_constants` VALUES (2355, 'Charges do not meet qualifications for emergent/urgent care');
4052 INSERT INTO `lang_constants` VALUES (2356, 'Charges exceed our fee schedule or maximum allowable amount');
4053 INSERT INTO `lang_constants` VALUES (2357, 'Gramm-Rudman reduction');
4054 INSERT INTO `lang_constants` VALUES (2358, 'Prompt-pay discount');
4055 INSERT INTO `lang_constants` VALUES (2359, 'Charges exceed your contracted/ legislated fee arrangement');
4056 INSERT INTO `lang_constants` VALUES (2360, 'These are non-covered services because this is a routine exam or screening procedure done in conjunction with a routine exam');
4057 INSERT INTO `lang_constants` VALUES (2361, 'These are non-covered services because this is not deemed a "medical necessity" by the payer');
4058 INSERT INTO `lang_constants` VALUES (2362, 'These are non-covered services because this is a pre-existing condition');
4059 INSERT INTO `lang_constants` VALUES (2363, 'Services by an immediate relative or a member of the same household are not covered');
4060 INSERT INTO `lang_constants` VALUES (2364, 'Multiple physicians/assistants are not covered in this case');
4061 INSERT INTO `lang_constants` VALUES (2365, 'Claim/service denied because procedure/treatment is deemed experimental/investigational by the payer');
4062 INSERT INTO `lang_constants` VALUES (2366, 'Claim/service denied because procedure/treatment has not been deemed "proven to be effective" by the payer');
4063 INSERT INTO `lang_constants` VALUES (2367, 'Payment denied/reduced because the payer deems the information submitted does not support this level of service, this many services, this length of service, this dosage, or this days supply');
4064 INSERT INTO `lang_constants` VALUES (2368, 'Payment adjusted because treatment was deemed by the payer to have been rendered in an inappropriate or invalid place of service');
4065 INSERT INTO `lang_constants` VALUES (2369, 'Charges are adjusted based on multiple surgery rules or concurrent anesthesia rules');
4066 INSERT INTO `lang_constants` VALUES (2370, 'Charges for outpatient services with this proximity to inpatient services are not covered');
4067 INSERT INTO `lang_constants` VALUES (2371, 'Charges adjusted as penalty for failure to obtain second surgical opinion');
4068 INSERT INTO `lang_constants` VALUES (2372, 'Payment denied/reduced for absence of, or exceeded, pre-certification/authorization');
4069 INSERT INTO `lang_constants` VALUES (2373, 'Blood Deductible');
4070 INSERT INTO `lang_constants` VALUES (2374, 'Day outlier amount');
4071 INSERT INTO `lang_constants` VALUES (2375, 'Cost outlier - Adjustment to compensate for additional costs');
4072 INSERT INTO `lang_constants` VALUES (2376, 'Indirect Medical Education Adjustment');
4073 INSERT INTO `lang_constants` VALUES (2377, 'Direct Medical Education Adjustment');
4074 INSERT INTO `lang_constants` VALUES (2378, 'Disproportionate Share Adjustment');
4075 INSERT INTO `lang_constants` VALUES (2379, 'Non-Covered days/Room charge adjustment');
4076 INSERT INTO `lang_constants` VALUES (2380, 'Interest amount');
4077 INSERT INTO `lang_constants` VALUES (2381, 'Transfer amount');
4078 INSERT INTO `lang_constants` VALUES (2382, 'Adjustment amount represents collection against receivable created in prior overpayment');
4079 INSERT INTO `lang_constants` VALUES (2383, 'Professional fees removed from charges');
4080 INSERT INTO `lang_constants` VALUES (2384, 'Ingredient cost adjustment');
4081 INSERT INTO `lang_constants` VALUES (2385, 'Dispensing fee adjustment');
4082 INSERT INTO `lang_constants` VALUES (2386, 'Processed in Excess of charges');
4083 INSERT INTO `lang_constants` VALUES (2387, 'Benefits adjusted. Plan procedures not followed');
4084 INSERT INTO `lang_constants` VALUES (2388, 'Non-covered charge(s)');
4085 INSERT INTO `lang_constants` VALUES (2389, 'Payment is included in the allowance for another service/procedure');
4086 INSERT INTO `lang_constants` VALUES (2390, 'Payment made to patient/insured/responsible party');
4087 INSERT INTO `lang_constants` VALUES (2391, 'Predetermination: anticipated payment upon completion of services or claim adjudication');
4088 INSERT INTO `lang_constants` VALUES (2392, 'Major Medical Adjustment');
4089 INSERT INTO `lang_constants` VALUES (2393, 'Provider promotional discount (e.g., Senior citizen discount)');
4090 INSERT INTO `lang_constants` VALUES (2394, 'Managed care withholding');
4091 INSERT INTO `lang_constants` VALUES (2395, 'Tax withholding');
4092 INSERT INTO `lang_constants` VALUES (2396, 'Patient payment option/election not in effect');
4093 INSERT INTO `lang_constants` VALUES (2397, 'Claim/service denied because the related or qualifying claim/service was not previously paid or identified on this claim');
4094 INSERT INTO `lang_constants` VALUES (2398, 'Payment adjusted because rent/purchase guidelines were not met');
4095 INSERT INTO `lang_constants` VALUES (2399, 'Claim not covered by this payer/contractor. You must send the claim to the correct payer/contractor');
4096 INSERT INTO `lang_constants` VALUES (2400, 'Billing date predates service date');
4097 INSERT INTO `lang_constants` VALUES (2401, 'Not covered unless the provider accepts assignment');
4098 INSERT INTO `lang_constants` VALUES (2402, 'Payment adjusted as not furnished directly to the patient and/or not documented');
4099 INSERT INTO `lang_constants` VALUES (2403, 'Payment denied because service/procedure was provided outside the United States or as a result of war');
4100 INSERT INTO `lang_constants` VALUES (2404, 'Procedure/product not approved by the Food and Drug Administration');
4101 INSERT INTO `lang_constants` VALUES (2405, 'Payment adjusted as procedure postponed or canceled');
4102 INSERT INTO `lang_constants` VALUES (2406, 'Payment denied. The advance indemnification notice signed by the patient did not comply with requirements');
4103 INSERT INTO `lang_constants` VALUES (2407, 'Payment adjusted because transportation is only covered to the closest facility that can provide the necessary care');
4104 INSERT INTO `lang_constants` VALUES (2408, 'Charges reduced for ESRD network support');
4105 INSERT INTO `lang_constants` VALUES (2409, 'Benefit maximum for this time period or occurrence has been reached');
4106 INSERT INTO `lang_constants` VALUES (2410, 'Patient is covered by a managed care plan');
4107 INSERT INTO `lang_constants` VALUES (2411, 'Indemnification adjustment');
4108 INSERT INTO `lang_constants` VALUES (2412, 'Psychiatric reduction');
4109 INSERT INTO `lang_constants` VALUES (2413, 'Payer refund due to overpayment');
4110 INSERT INTO `lang_constants` VALUES (2414, 'Payer refund amount - not our patient');
4111 INSERT INTO `lang_constants` VALUES (2415, 'Payment adjusted due to a submission/billing error(s). Additional information is supplied using the remittance advice remarks codes whenever appropriate');
4112 INSERT INTO `lang_constants` VALUES (2416, 'Deductible -- Major Medical');
4113 INSERT INTO `lang_constants` VALUES (2417, 'Coinsurance -- Major Medical');
4114 INSERT INTO `lang_constants` VALUES (2418, 'Newborns services are covered in the mothers Allowance');
4115 INSERT INTO `lang_constants` VALUES (2419, 'Payment denied - Prior processing information appears incorrect');
4116 INSERT INTO `lang_constants` VALUES (2420, 'Claim submission fee');
4117 INSERT INTO `lang_constants` VALUES (2421, 'Claim specific negotiated discount');
4118 INSERT INTO `lang_constants` VALUES (2422, 'Prearranged demonstration project adjustment');
4119 INSERT INTO `lang_constants` VALUES (2423, 'The disposition of this claim/service is pending further review');
4120 INSERT INTO `lang_constants` VALUES (2424, 'Technical fees removed from charges');
4121 INSERT INTO `lang_constants` VALUES (2425, 'Claim denied. Interim bills cannot be processed');
4122 INSERT INTO `lang_constants` VALUES (2426, 'Claim Adjusted. Plan procedures of a prior payer were not followed');
4123 INSERT INTO `lang_constants` VALUES (2427, 'Payment/Reduction for Regulatory Surcharges, Assessments, Allowances or Health Related Taxes');
4124 INSERT INTO `lang_constants` VALUES (2428, 'Claim/service denied. Appeal procedures not followed or time limits not met');
4125 INSERT INTO `lang_constants` VALUES (2429, 'Contracted funding agreement - Subscriber is employed by the provider of services');
4126 INSERT INTO `lang_constants` VALUES (2430, 'Patient/Insured health identification number and name do not match');
4127 INSERT INTO `lang_constants` VALUES (2431, 'Claim adjustment because the claim spans eligible and ineligible periods of coverage');
4128 INSERT INTO `lang_constants` VALUES (2432, 'Claim adjusted by the monthly Medicaid patient liability amount');
4129 INSERT INTO `lang_constants` VALUES (2433, 'Portion of payment deferred');
4130 INSERT INTO `lang_constants` VALUES (2434, 'Incentive adjustment, e.g. preferred product/service');
4131 INSERT INTO `lang_constants` VALUES (2435, 'Premium payment withholding');
4132 INSERT INTO `lang_constants` VALUES (2436, 'Payment denied because the diagnosis was invalid for the date(s) of service reported');
4133 INSERT INTO `lang_constants` VALUES (2437, 'Provider contracted/negotiated rate expired or not on file');
4134 INSERT INTO `lang_constants` VALUES (2438, 'Claim/service rejected at this time because information from another provider was not provided or was insufficient/incomplete');
4135 INSERT INTO `lang_constants` VALUES (2439, 'Lifetime benefit maximum has been reached for this service/benefit category');
4136 INSERT INTO `lang_constants` VALUES (2440, 'Payment adjusted because the payer deems the information submitted does not support this level of service');
4137 INSERT INTO `lang_constants` VALUES (2441, 'Payment adjusted because the payer deems the information submitted does not support this many services');
4138 INSERT INTO `lang_constants` VALUES (2442, 'Payment adjusted because the payer deems the information submitted does not support this length of service');
4139 INSERT INTO `lang_constants` VALUES (2443, 'Payment adjusted because the payer deems the information submitted does not support this dosage');
4140 INSERT INTO `lang_constants` VALUES (2444, 'Payment adjusted because the payer deems the information submitted does not support this days supply');
4141 INSERT INTO `lang_constants` VALUES (2445, 'This claim is denied because the patient refused the service/procedure');
4142 INSERT INTO `lang_constants` VALUES (2446, 'Flexible spending account payments');
4143 INSERT INTO `lang_constants` VALUES (2447, 'Payment denied/reduced because service/procedure was provided as a result of an act of war');
4144 INSERT INTO `lang_constants` VALUES (2448, 'Payment denied/reduced because the service/procedure was provided outside of the United States');
4145 INSERT INTO `lang_constants` VALUES (2449, 'Payment denied/reduced because the service/procedure was provided as a result of terrorism');
4146 INSERT INTO `lang_constants` VALUES (2450, 'Payment denied/reduced because injury/illness was the result of an activity that is a benefit exclusion');
4147 INSERT INTO `lang_constants` VALUES (2451, 'Provider performance bonus');
4148 INSERT INTO `lang_constants` VALUES (2452, 'State-mandated Requirement for Property and Casualty, see Claim Payment Remarks Code for specific explanation');
4149 INSERT INTO `lang_constants` VALUES (2453, 'Claim/Service adjusted because the attachment referenced on the claim was not received');
4150 INSERT INTO `lang_constants` VALUES (2454, 'Claim/Service adjusted because the attachment referenced on the claim was not received in a timely fashion');
4151 INSERT INTO `lang_constants` VALUES (2455, 'Payment denied /reduced for absence of, or exceeded referral');
4152 INSERT INTO `lang_constants` VALUES (2456, 'These services were submitted after this payers responsibility for processing claims under this plan ended');
4153 INSERT INTO `lang_constants` VALUES (2457, 'This (these) diagnosis(es) is (are) not covered');
4154 INSERT INTO `lang_constants` VALUES (2458, 'Payment denied as Service(s) have been considered under the patients medical plan. Benefits are not available under this dental plan');
4155 INSERT INTO `lang_constants` VALUES (2459, 'Payment adjusted because an alternate benefit has been provided');
4156 INSERT INTO `lang_constants` VALUES (2460, 'Payment is denied when performed/billed by this type of provider');
4157 INSERT INTO `lang_constants` VALUES (2461, 'Payment is denied when performed/billed by this type of provider in this type of facility');
4158 INSERT INTO `lang_constants` VALUES (2462, 'Payment is adjusted when performed/billed by a provider of this specialty');
4159 INSERT INTO `lang_constants` VALUES (2463, 'Payment adjusted because this service was not prescribed by a physician');
4160 INSERT INTO `lang_constants` VALUES (2464, 'Payment denied because this service was not prescribed prior to delivery');
4161 INSERT INTO `lang_constants` VALUES (2465, 'Payment denied because the prescription is incomplete');
4162 INSERT INTO `lang_constants` VALUES (2466, 'Payment denied because the prescription is not current');
4163 INSERT INTO `lang_constants` VALUES (2467, 'Payment denied because the patient has not met the required eligibility requirements');
4164 INSERT INTO `lang_constants` VALUES (2468, 'Payment adjusted because the patient has not met the required spend down requirements');
4165 INSERT INTO `lang_constants` VALUES (2469, 'Payment adjusted because the patient has not met the required waiting requirements');
4166 INSERT INTO `lang_constants` VALUES (2470, 'Payment adjusted because the patient has not met the required residency requirements');
4167 INSERT INTO `lang_constants` VALUES (2471, 'Payment adjusted because this procedure code was invalid on the date of service');
4168 INSERT INTO `lang_constants` VALUES (2472, 'Payment adjusted because the procedure modifier was invalid on the date of service');
4169 INSERT INTO `lang_constants` VALUES (2473, 'The referring provider is not eligible to refer the service billed');
4170 INSERT INTO `lang_constants` VALUES (2474, 'The prescribing/ordering provider is not eligible to prescribe/order the service billed');
4171 INSERT INTO `lang_constants` VALUES (2475, 'The rendering provider is not eligible to perform the service billed');
4172 INSERT INTO `lang_constants` VALUES (2476, 'Payment adjusted since the level of care changed');
4173 INSERT INTO `lang_constants` VALUES (2477, 'Health Savings account payments');
4174 INSERT INTO `lang_constants` VALUES (2478, 'This product/procedure is only covered when used according to FDA recommendations');
4175 INSERT INTO `lang_constants` VALUES (2479, '"Not otherwise classified" or "unlisted" procedure code (CPT/HCPCS) was billed when there is a specific procedure code for this procedure/service');
4176 INSERT INTO `lang_constants` VALUES (2480, 'Payment is included in the allowance for a Skilled Nursing Facility (SNF) qualified stay');
4177 INSERT INTO `lang_constants` VALUES (2481, 'Claim denied because this is not a work related injury/illness and thus not the liability of the workers compensation carrier');
4178 INSERT INTO `lang_constants` VALUES (2482, 'Non standard adjustment code from paper remittance advice');
4179 INSERT INTO `lang_constants` VALUES (2483, 'Original payment decision is being maintained. This claim was processed properly the first time');
4180 INSERT INTO `lang_constants` VALUES (2484, 'Payment adjusted when anesthesia is performed by the operating physician, the assistant surgeon or the attending physician');
4181 INSERT INTO `lang_constants` VALUES (2485, 'Payment denied/reduced due to a refund issued to an erroneous priority payer for this claim/service');
4182 INSERT INTO `lang_constants` VALUES (2486, 'Patient refund amount');
4183 INSERT INTO `lang_constants` VALUES (2487, 'Claim denied charges');
4184 INSERT INTO `lang_constants` VALUES (2488, 'Contractual adjustment');
4185 INSERT INTO `lang_constants` VALUES (2489, 'Medicare Claim PPS Capital Day Outlier Amount');
4186 INSERT INTO `lang_constants` VALUES (2490, 'Medicare Claim PPS Capital Cost Outlier Amount');
4187 INSERT INTO `lang_constants` VALUES (2491, 'Prior hospitalization or 30 day transfer requirement not met');
4188 INSERT INTO `lang_constants` VALUES (2492, 'Presumptive Payment Adjustment');
4189 INSERT INTO `lang_constants` VALUES (2493, 'Claim denied; ungroupable DRG');
4190 INSERT INTO `lang_constants` VALUES (2494, 'Non-covered visits');
4191 INSERT INTO `lang_constants` VALUES (2495, 'Late filing penalty');
4192 INSERT INTO `lang_constants` VALUES (2496, 'Payment adjusted because coverage/program guidelines were not met or were exceeded');
4193 INSERT INTO `lang_constants` VALUES (2497, 'This provider was not certified/eligible to be paid for this procedure/service on this date of service');
4194 INSERT INTO `lang_constants` VALUES (2498, 'Claim/service not covered/reduced because alternative services were available, and should have been utilized');
4195 INSERT INTO `lang_constants` VALUES (2499, 'Services not covered because the patient is enrolled in a Hospice');
4196 INSERT INTO `lang_constants` VALUES (2500, 'Allowed amount has been reduced because a component of the basic procedure/test was paid. The beneficiary is not liable for more than the charge limit for the basic procedure/test');
4197 INSERT INTO `lang_constants` VALUES (2501, 'The claim/service has been transferred to the proper payer/processor for processing. Claim/service not covered by this payer/processor');
4198 INSERT INTO `lang_constants` VALUES (2502, 'Services not documented in patients medical records');
4199 INSERT INTO `lang_constants` VALUES (2503, 'Previously paid. Payment for this claim/service may have been provided in a previous payment');
4200 INSERT INTO `lang_constants` VALUES (2504, 'Payment denied because only one visit or consultation per physician per day is covered');
4201 INSERT INTO `lang_constants` VALUES (2505, 'Payment adjusted because this procedure/service is not paid separately');
4202 INSERT INTO `lang_constants` VALUES (2506, 'Payment adjusted because "New Patient" qualifications were not met');
4203 INSERT INTO `lang_constants` VALUES (2507, 'Payment adjusted because this procedure code and modifier were invalid on the date of service');
4204 INSERT INTO `lang_constants` VALUES (2508, 'Payment adjusted because procedure/service was partially or fully furnished by another provider');
4205 INSERT INTO `lang_constants` VALUES (2509, 'This payment is adjusted based on the diagnosis');
4206 INSERT INTO `lang_constants` VALUES (2510, 'Payment denied because this provider has failed an aspect of a proficiency testing program');
4207 INSERT INTO `lang_constants` VALUES (2511, 'Claim lacks prior payer payment information');
4208 INSERT INTO `lang_constants` VALUES (2512, 'Claim/Service has invalid non-covered days');
4209 INSERT INTO `lang_constants` VALUES (2513, 'Claim/Service has missing diagnosis information');
4210 INSERT INTO `lang_constants` VALUES (2514, 'Claim/Service lacks Physician/Operative or other supporting documentation');
4211 INSERT INTO `lang_constants` VALUES (2515, 'Claim/Service missing service/product information');
4212 INSERT INTO `lang_constants` VALUES (2516, 'This (these) diagnosis(es) is (are) missing or are invalid');
4213 INSERT INTO `lang_constants` VALUES (2517, 'Workers Compensation State Fee Schedule Adjustment');
4214 INSERT INTO `lang_constants` VALUES (2518, 'EOB Posting - Electronic Remittances');
4215 INSERT INTO `lang_constants` VALUES (2519, 'translate this');
4216 INSERT INTO `lang_constants` VALUES (2520, 'constant name');
4217 INSERT INTO `lang_constants` VALUES (2521, 'Please Note: constants are case sensitive and any string is allowed.');
4218 INSERT INTO `lang_constants` VALUES (2522, 'Multi Language Tool');
4219 INSERT INTO `lang_constants` VALUES (2523, 'Add Language');
4220 INSERT INTO `lang_constants` VALUES (2524, 'Add Constant');
4221 INSERT INTO `lang_constants` VALUES (2525, 'Edit definitions');
4222 INSERT INTO `lang_constants` VALUES (2526, 'Info');
4223 INSERT INTO `lang_constants` VALUES (2527, 'Language definition added');
4224 INSERT INTO `lang_constants` VALUES (2528, 'Language Code');
4225 INSERT INTO `lang_constants` VALUES (2529, 'Language Name');
4226 INSERT INTO `lang_constants` VALUES (2530, 'Edit Facility Information');
4227 INSERT INTO `lang_constants` VALUES (2531, 'Facility Information');
4228 INSERT INTO `lang_constants` VALUES (2532, 'Zip Code');
4229 INSERT INTO `lang_constants` VALUES (2533, 'Federal EIN');
4230 INSERT INTO `lang_constants` VALUES (2534, 'Facility NPI');
4231 INSERT INTO `lang_constants` VALUES (2535, 'Billing Location');
4232 INSERT INTO `lang_constants` VALUES (2536, 'Accepts Assignment');
4233 INSERT INTO `lang_constants` VALUES (2537, 'POS Code');
4234 INSERT INTO `lang_constants` VALUES (2538, 'Billing Attn');
4235 INSERT INTO `lang_constants` VALUES (2539, 'CLIA Number');
4236 INSERT INTO `lang_constants` VALUES (2540, 'Users & Groups');
4237 INSERT INTO `lang_constants` VALUES (2541, 'Practice');
4238 INSERT INTO `lang_constants` VALUES (2542, 'Database');
4239 INSERT INTO `lang_constants` VALUES (2543, 'BatchCom');
4240 INSERT INTO `lang_constants` VALUES (2544, 'Drugs');
4241 INSERT INTO `lang_constants` VALUES (2545, 'Logs');
4242 INSERT INTO `lang_constants` VALUES (2546, 'Exit from Administration');
4243 INSERT INTO `lang_constants` VALUES (2547, 'Password Change');
4244 INSERT INTO `lang_constants` VALUES (2548, 'Once you change your password, you will have to re-login.');
4245 INSERT INTO `lang_constants` VALUES (2549, 'Real Name');
4246 INSERT INTO `lang_constants` VALUES (2550, 'Username');
4247 INSERT INTO `lang_constants` VALUES (2551, 'User & Group Administration');
4248 INSERT INTO `lang_constants` VALUES (2552, 'New Facility Information');
4249 INSERT INTO `lang_constants` VALUES (2553, 'Edit Facilities');
4250 INSERT INTO `lang_constants` VALUES (2554, 'New User');
4251 INSERT INTO `lang_constants` VALUES (2555, 'Groupname');
4252 INSERT INTO `lang_constants` VALUES (2556, 'Authorized');
4253 INSERT INTO `lang_constants` VALUES (2557, 'Default Facility');
4254 INSERT INTO `lang_constants` VALUES (2558, 'Federal Tax ID');
4255 INSERT INTO `lang_constants` VALUES (2559, 'Federal Drug ID');
4256 INSERT INTO `lang_constants` VALUES (2560, 'UPIN');
4257 INSERT INTO `lang_constants` VALUES (2561, 'See Authorizations');
4258 INSERT INTO `lang_constants` VALUES (2562, 'Only Mine');
4259 INSERT INTO `lang_constants` VALUES (2563, 'NPI');
4260 INSERT INTO `lang_constants` VALUES (2564, 'Additional Info');
4261 INSERT INTO `lang_constants` VALUES (2565, 'New Group');
4262 INSERT INTO `lang_constants` VALUES (2566, 'Initial User');
4263 INSERT INTO `lang_constants` VALUES (2567, 'Add User To Group');
4264 INSERT INTO `lang_constants` VALUES (2568, 'User');
4265 INSERT INTO `lang_constants` VALUES (2569, 'Specialty');
4266 INSERT INTO `lang_constants` VALUES (2570, 'Assistant');
4267 INSERT INTO `lang_constants` VALUES (2571, 'Website');
4268 INSERT INTO `lang_constants` VALUES (2572, 'Main Address');
4269 INSERT INTO `lang_constants` VALUES (2573, 'Alt Address');
4270 INSERT INTO `lang_constants` VALUES (2574, 'Address Book');
4271 INSERT INTO `lang_constants` VALUES (2575, 'First Name:');
4272 INSERT INTO `lang_constants` VALUES (2576, 'Last Name:');
4273 INSERT INTO `lang_constants` VALUES (2577, 'Specialty:');
4274 INSERT INTO `lang_constants` VALUES (2578, 'Local');
4275 INSERT INTO `lang_constants` VALUES (2579, 'Mobile');
4276 INSERT INTO `lang_constants` VALUES (2580, 'Postal');
4277 INSERT INTO `lang_constants` VALUES (2581, 'User Administration');
4278 INSERT INTO `lang_constants` VALUES (2582, 'CSV File');
4279 INSERT INTO `lang_constants` VALUES (2583, 'Phone call list');
4280 INSERT INTO `lang_constants` VALUES (2584, 'Any');
4281 INSERT INTO `lang_constants` VALUES (2585, 'Appointment Date');
4282 INSERT INTO `lang_constants` VALUES (2586, 'Date format for "appointment start" is not valid');
4283 INSERT INTO `lang_constants` VALUES (2587, 'Date format for "appointment end" is not valid');
4284 INSERT INTO `lang_constants` VALUES (2588, 'Date format for "seen since" is not valid');
4285 INSERT INTO `lang_constants` VALUES (2589, 'Date format for "not seen since" is not valid');
4286 INSERT INTO `lang_constants` VALUES (2590, 'Age format for "age from" is not valid');
4287 INSERT INTO `lang_constants` VALUES (2591, 'Age format for "age up to" is not valid');
4288 INSERT INTO `lang_constants` VALUES (2592, 'Error in "Gender" selection');
4289 INSERT INTO `lang_constants` VALUES (2593, 'Error in "Process" selection');
4290 INSERT INTO `lang_constants` VALUES (2594, 'Error in "HIPAA" selection');
4291 INSERT INTO `lang_constants` VALUES (2595, 'Error in "Sort By" selection');
4292 INSERT INTO `lang_constants` VALUES (2596, 'Error in YES or NO option');
4293 INSERT INTO `lang_constants` VALUES (2597, 'No results, please tray again.');
4294 INSERT INTO `lang_constants` VALUES (2598, 'Batch Communication Tool');
4295 INSERT INTO `lang_constants` VALUES (2599, 'Process');
4296 INSERT INTO `lang_constants` VALUES (2600, 'Overwrite HIPAA choice');
4297 INSERT INTO `lang_constants` VALUES (2601, 'Age From');
4298 INSERT INTO `lang_constants` VALUES (2602, 'Gender');
4299 INSERT INTO `lang_constants` VALUES (2603, 'Sort by');
4300 INSERT INTO `lang_constants` VALUES (2604, 'Fill here only if sending email notification to patients');
4301 INSERT INTO `lang_constants` VALUES (2605, 'Email Sender');
4302 INSERT INTO `lang_constants` VALUES (2606, 'Email Subject');
4303 INSERT INTO `lang_constants` VALUES (2607, 'Email Text, Usable Tag: ***NAME*** , i.e. Dear ***NAME***');
4304 INSERT INTO `lang_constants` VALUES (2608, 'Work');
4305 INSERT INTO `lang_constants` VALUES (2609, 'Contact');
4306 INSERT INTO `lang_constants` VALUES (2610, 'Email from Batchcom');
4307 INSERT INTO `lang_constants` VALUES (2611, 'Could not send email due to a server problem');
4308 INSERT INTO `lang_constants` VALUES (2612, 'emails not sent');
4309 INSERT INTO `lang_constants` VALUES (2613, 'Logged out.');
4310 INSERT INTO `lang_constants` VALUES (2614, 'This page will inline include the login page, so that we do not have to click relogin every time.');
4311 INSERT INTO `lang_constants` VALUES (2615, 'Relogin');
4312 INSERT INTO `lang_constants` VALUES (2616, 'Sunday');
4313 INSERT INTO `lang_constants` VALUES (2617, 'Monday');
4314 INSERT INTO `lang_constants` VALUES (2618, 'Tuesday');
4315 INSERT INTO `lang_constants` VALUES (2619, 'Wednesday');
4316 INSERT INTO `lang_constants` VALUES (2620, 'Thursday');
4317 INSERT INTO `lang_constants` VALUES (2621, 'Friday');
4318 INSERT INTO `lang_constants` VALUES (2622, 'Saturday');
4319 INSERT INTO `lang_constants` VALUES (2623, 'January');
4320 INSERT INTO `lang_constants` VALUES (2624, 'February');
4321 INSERT INTO `lang_constants` VALUES (2625, 'March');
4322 INSERT INTO `lang_constants` VALUES (2626, 'April');
4323 INSERT INTO `lang_constants` VALUES (2627, 'May');
4324 INSERT INTO `lang_constants` VALUES (2628, 'June');
4325 INSERT INTO `lang_constants` VALUES (2629, 'July');
4326 INSERT INTO `lang_constants` VALUES (2630, 'August');
4327 INSERT INTO `lang_constants` VALUES (2631, 'September');
4328 INSERT INTO `lang_constants` VALUES (2632, 'October');
4329 INSERT INTO `lang_constants` VALUES (2633, 'November');
4330 INSERT INTO `lang_constants` VALUES (2634, 'December');
4331 INSERT INTO `lang_constants` VALUES (2635, 'Primary Provider:');
4332 INSERT INTO `lang_constants` VALUES (2636, 'b.i.d.');
4333 INSERT INTO `lang_constants` VALUES (2637, 'Find Available');
4334 INSERT INTO `lang_constants` VALUES (2638, 'minutes');
4335 INSERT INTO `lang_constants` VALUES (2639, 'q.d.');
4336 -- larry :: extra -24/04/2008
4337 INSERT INTO `lang_constants`  VALUES (2640, 'Go');
4338 INSERT INTO `lang_constants`  VALUES (2641, 'q.8h');
4339 INSERT INTO `lang_constants`  VALUES (2642, 'q.6h');
4340 INSERT INTO `lang_constants`  VALUES (2643, 'q.5h');
4341 INSERT INTO `lang_constants`  VALUES (2644, 'q.4h');
4342 INSERT INTO `lang_constants`  VALUES (2645, 'q.3h');
4343 INSERT INTO `lang_constants`  VALUES (2646, 't.i.d.');
4344 INSERT INTO `lang_constants`  VALUES (2647, 'Quantity');
4345 INSERT INTO `lang_constants`  VALUES (2648, 'Medicine Units');
4346 INSERT INTO `lang_constants`  VALUES (2649, 'Substitution');
4347 INSERT INTO `lang_constants`  VALUES (2650, 'substitution allowed');
4348 INSERT INTO `lang_constants`  VALUES (2651, 'substitution not allowed');
4349 INSERT INTO `lang_constants`  VALUES (2652, '# of tablets:');
4350 INSERT INTO `lang_constants`  VALUES (2653, 'Add to Medication List');
4351 INSERT INTO `lang_constants`  VALUES (2654, 'Prescribe');
4352 INSERT INTO `lang_constants`  VALUES (2655, 'No Prescriptions Found');
4353 INSERT INTO `lang_constants`  VALUES (2656, 'Dosage');
4354 INSERT INTO `lang_constants`  VALUES (2657, 'Print Multiple');
4355 INSERT INTO `lang_constants`  VALUES (2658, 'Starting Date');
4356 INSERT INTO `lang_constants`  VALUES (2659, 'Drug Lookup');
4357 INSERT INTO `lang_constants`  VALUES (2660, 'Click to download');
4358 INSERT INTO `lang_constants`  VALUES (2661, 'Add Note');
4359 INSERT INTO `lang_constants`  VALUES (2662, 'Move');
4360 INSERT INTO `lang_constants`  VALUES (2663, 'Move Document to Category:');
4361 INSERT INTO `lang_constants`  VALUES (2664, 'married');
4362 INSERT INTO `lang_constants`  VALUES (2665, 'Upload');
4363 INSERT INTO `lang_constants`  VALUES (2666, 'Upload Document to category');
4364 INSERT INTO `lang_constants`  VALUES (2667, 'Day View');
4365 INSERT INTO `lang_constants`  VALUES (2668, 'Week View');
4366 INSERT INTO `lang_constants`  VALUES (2669, 'Month View');
4367 INSERT INTO `lang_constants`  VALUES (2670, 'Year View');
4368 INSERT INTO `lang_constants`  VALUES (2671, 'Chart Note');
4369 INSERT INTO `lang_constants`  VALUES (2672, 'Single');
4370 INSERT INTO `lang_constants`  VALUES (2673, 'Divorced');
4371 INSERT INTO `lang_constants`  VALUES (2674, 'Widowed');
4372 INSERT INTO `lang_constants`  VALUES (2675, 'Separated');
4373 INSERT INTO `lang_constants`  VALUES (2676, 'Domestic partner');
4374 INSERT INTO `lang_constants`  VALUES (2677, 'Take');
4375 INSERT INTO `lang_constants`  VALUES (2678, 'Primary care provider');
4376 INSERT INTO `lang_constants`  VALUES (2679, 'Currently Active');
4377 INSERT INTO `lang_constants`  VALUES (2680, 'Created');
4378 INSERT INTO `lang_constants`  VALUES (2681, 'Changed');
4379 INSERT INTO `lang_constants`  VALUES (2682, 'Print Multiple');
4380 INSERT INTO `lang_constants`  VALUES (2683, 'Select');
4381 INSERT INTO `lang_constants`  VALUES (2684, '% Cancelled < 24 h');
4383 -- --------------------------------------------------------
4385 -- 
4386 -- Table structure for table `lang_definitions`
4387 -- 
4389 DROP TABLE IF EXISTS `lang_definitions`;
4390 CREATE TABLE `lang_definitions` (
4391   `def_id` int(11) NOT NULL auto_increment,
4392   `cons_id` int(11) NOT NULL default '0',
4393   `lang_id` int(11) NOT NULL default '0',
4394   `definition` mediumtext character set utf8 collate utf8_unicode_ci,
4395   UNIQUE KEY `def_id` (`def_id`),
4396   KEY `definition` (`definition`(100))
4397 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=174 ;
4399 -- 
4400 -- Dumping data for table `lang_definitions`
4401 -- 
4403 INSERT INTO `lang_definitions` VALUES (1, 6, 3, 'Grupo');
4404 INSERT INTO `lang_definitions` VALUES (2, 8, 3, 'Usuario:');
4405 INSERT INTO `lang_definitions` VALUES (5, 10, 3, 'EOB Posting - Instrucciones');
4406 INSERT INTO `lang_definitions` VALUES (6, 11, 3, 'Codigo Postal');
4407 INSERT INTO `lang_definitions` VALUES (7, 12, 3, 'Apellido');
4408 INSERT INTO `lang_definitions` VALUES (8, 18, 3, 'Hasta:');
4409 INSERT INTO `lang_definitions` VALUES (9, 17, 3, 'Edades desde:');
4410 INSERT INTO `lang_definitions` VALUES (10, 15, 3, 'Fecha de Cita');
4411 INSERT INTO `lang_definitions` VALUES (11, 16, 3, 'Herramienta de Comunicaciones');
4412 INSERT INTO `lang_definitions` VALUES (12, 14, 3, 'Femenino');
4413 INSERT INTO `lang_definitions` VALUES (13, 13, 3, 'Masculino');
4414 INSERT INTO `lang_definitions` VALUES (14, 19, 3, 'Seguro Social');
4415 INSERT INTO `lang_definitions` VALUES (15, 20, 3, 'Administracion de Usuarios y Grupos');
4416 INSERT INTO `lang_definitions` VALUES (16, 21, 3, 'Salir');
4417 INSERT INTO `lang_definitions` VALUES (17, 22, 3, 'Contraseña:');
4418 INSERT INTO `lang_definitions` VALUES (18, 23, 3, 'Entrar');
4419 INSERT INTO `lang_definitions` VALUES (19, 24, 3, 'Administración');
4420 INSERT INTO `lang_definitions` VALUES (20, 25, 3, 'Contraseña');
4421 INSERT INTO `lang_definitions` VALUES (21, 28, 3, 'Facturación');
4422 INSERT INTO `lang_definitions` VALUES (22, 29, 3, 'Inicio');
4423 INSERT INTO `lang_definitions` VALUES (23, 27, 3, 'Notas');
4424 INSERT INTO `lang_definitions` VALUES (24, 26, 3, 'Informes');
4425 INSERT INTO `lang_definitions` VALUES (25, 32, 3, '(Más)');
4426 INSERT INTO `lang_definitions` VALUES (26, 31, 3, 'Autorizaciónes');
4427 INSERT INTO `lang_definitions` VALUES (27, 33, 3, 'Localizar Paciente');
4428 INSERT INTO `lang_definitions` VALUES (28, 30, 3, 'Notas de Paciente');
4429 INSERT INTO `lang_definitions` VALUES (29, 34, 3, 'Paciente Nuevo');
4430 INSERT INTO `lang_definitions` VALUES (30, 37, 3, 'Fecha Nacimiento');
4431 INSERT INTO `lang_definitions` VALUES (31, 36, 3, 'Num Expediente');
4432 INSERT INTO `lang_definitions` VALUES (32, 35, 3, 'Nombre');
4433 INSERT INTO `lang_definitions` VALUES (33, 38, 3, 'y');
4434 INSERT INTO `lang_definitions` VALUES (34, 39, 3, 'Cita(s) del Paciente');
4435 INSERT INTO `lang_definitions` VALUES (35, 40, 3, '(Notas y Autorizaciones)');
4436 INSERT INTO `lang_definitions` VALUES (36, 41, 3, 'Búsqueda');
4437 INSERT INTO `lang_definitions` VALUES (37, 42, 3, 'Categoría');
4438 INSERT INTO `lang_definitions` VALUES (38, 43, 3, 'Fecha');
4439 INSERT INTO `lang_definitions` VALUES (39, 44, 3, 'Título');
4440 INSERT INTO `lang_definitions` VALUES (40, 45, 3, 'Paciente');
4441 INSERT INTO `lang_definitions` VALUES (41, 46, 3, 'Médico');
4442 INSERT INTO `lang_definitions` VALUES (42, 47, 3, 'Notas');
4443 INSERT INTO `lang_definitions` VALUES (43, 48, 3, 'Duración');
4444 INSERT INTO `lang_definitions` VALUES (44, 49, 3, 'Expedientes Localizado');
4445 INSERT INTO `lang_definitions` VALUES (45, 50, 3, '(Paciente Nuevo)');
4446 INSERT INTO `lang_definitions` VALUES (46, 51, 3, 'Día completo');
4447 INSERT INTO `lang_definitions` VALUES (47, 52, 3, 'Hora');
4448 INSERT INTO `lang_definitions` VALUES (48, 53, 3, 'Minutos');
4449 INSERT INTO `lang_definitions` VALUES (49, 54, 3, 'Día');
4450 INSERT INTO `lang_definitions` VALUES (50, 55, 3, 'Repite');
4451 INSERT INTO `lang_definitions` VALUES (51, 56, 3, 'Hasta');
4452 INSERT INTO `lang_definitions` VALUES (52, 57, 3, 'Ver Todos');
4453 INSERT INTO `lang_definitions` VALUES (53, 58, 3, 'Mío');
4454 INSERT INTO `lang_definitions` VALUES (54, 59, 3, 'Localizar Paciente');
4455 INSERT INTO `lang_definitions` VALUES (55, 60, 3, 'Favor de ingresar datos');
4456 INSERT INTO `lang_definitions` VALUES (56, 61, 3, 'Escoja Paciente');
4457 INSERT INTO `lang_definitions` VALUES (57, 62, 3, 'por');
4458 INSERT INTO `lang_definitions` VALUES (58, 63, 3, 'Apellido');
4459 INSERT INTO `lang_definitions` VALUES (59, 64, 3, 'Volver');
4460 INSERT INTO `lang_definitions` VALUES (60, 65, 3, 'Primer Nombre');
4461 INSERT INTO `lang_definitions` VALUES (61, 66, 3, 'Segundo Nombre');
4462 INSERT INTO `lang_definitions` VALUES (62, 67, 3, 'Número de Expediente');
4463 INSERT INTO `lang_definitions` VALUES (63, 68, 3, 'Omitir para Autoasignación');
4464 INSERT INTO `lang_definitions` VALUES (64, 69, 3, 'Usuario');
4465 INSERT INTO `lang_definitions` VALUES (65, 70, 3, 'Información de Nuevas Facilidades');
4466 INSERT INTO `lang_definitions` VALUES (66, 71, 3, 'País');
4467 INSERT INTO `lang_definitions` VALUES (67, 72, 3, 'Dirección');
4468 INSERT INTO `lang_definitions` VALUES (69, 74, 3, 'Estado');
4469 INSERT INTO `lang_definitions` VALUES (70, 75, 3, 'Ciudad');
4470 INSERT INTO `lang_definitions` VALUES (71, 76, 3, 'Seguro Social Patronal');
4471 INSERT INTO `lang_definitions` VALUES (72, 77, 3, 'Acepta Facturación');
4472 INSERT INTO `lang_definitions` VALUES (73, 78, 3, 'Centro de Facturación');
4473 INSERT INTO `lang_definitions` VALUES (74, 79, 3, 'Aplicable si es Centro de Facturación');
4474 INSERT INTO `lang_definitions` VALUES (75, 80, 3, 'Codígo de Lugar de Servicío');
4475 INSERT INTO `lang_definitions` VALUES (76, 81, 3, 'Facturas a Nombre');
4476 INSERT INTO `lang_definitions` VALUES (77, 82, 3, 'Código de Laboratorio Clínico');
4477 INSERT INTO `lang_definitions` VALUES (78, 83, 3, 'Teléfono');
4478 INSERT INTO `lang_definitions` VALUES (79, 84, 3, 'como');
4479 INSERT INTO `lang_definitions` VALUES (80, 85, 3, 'Editar Información de Facilidades');
4480 INSERT INTO `lang_definitions` VALUES (81, 86, 3, 'Información de Facilidades');
4481 INSERT INTO `lang_definitions` VALUES (82, 87, 3, 'Actualizar');
4482 INSERT INTO `lang_definitions` VALUES (83, 88, 3, 'Administracion de Usuarios');
4483 INSERT INTO `lang_definitions` VALUES (84, 89, 3, 'Usuario');
4484 INSERT INTO `lang_definitions` VALUES (85, 90, 3, 'Autorizado');
4485 INSERT INTO `lang_definitions` VALUES (86, 91, 3, 'Número de Identifcación Federal');
4486 INSERT INTO `lang_definitions` VALUES (87, 92, 3, 'Ver Autorizaciones');
4487 INSERT INTO `lang_definitions` VALUES (88, 93, 3, 'Ninguno');
4488 INSERT INTO `lang_definitions` VALUES (89, 94, 3, 'Mio Solamente');
4489 INSERT INTO `lang_definitions` VALUES (90, 95, 3, 'Todos');
4490 INSERT INTO `lang_definitions` VALUES (91, 96, 3, 'Información Addicional');
4491 INSERT INTO `lang_definitions` VALUES (92, 97, 3, 'Guardar Cambios');
4492 INSERT INTO `lang_definitions` VALUES (93, 98, 3, 'Dejar en Blanco para no cambiar contraseña');
4493 INSERT INTO `lang_definitions` VALUES (94, 99, 3, 'Nombre de Clínica');
4494 INSERT INTO `lang_definitions` VALUES (95, 100, 3, 'Nombre de Grupo');
4495 INSERT INTO `lang_definitions` VALUES (96, 101, 3, 'Usuario Inicial');
4496 INSERT INTO `lang_definitions` VALUES (97, 102, 3, 'Usuario');
4497 INSERT INTO `lang_definitions` VALUES (98, 103, 3, 'Modificar');
4498 INSERT INTO `lang_definitions` VALUES (99, 104, 3, 'Nombre Real');
4499 INSERT INTO `lang_definitions` VALUES (100, 105, 3, 'Información');
4500 INSERT INTO `lang_definitions` VALUES (101, 106, 3, 'si');
4501 INSERT INTO `lang_definitions` VALUES (102, 107, 3, 'Salir de Administración');
4502 INSERT INTO `lang_definitions` VALUES (103, 108, 3, 'Ver Registro');
4503 INSERT INTO `lang_definitions` VALUES (104, 109, 3, 'Registro');
4504 INSERT INTO `lang_definitions` VALUES (105, 110, 3, 'Idioma');
4505 INSERT INTO `lang_definitions` VALUES (106, 111, 3, 'Base de Datos');
4506 INSERT INTO `lang_definitions` VALUES (107, 116, 3, 'Communicación');
4507 INSERT INTO `lang_definitions` VALUES (108, 112, 3, 'Calendario');
4508 INSERT INTO `lang_definitions` VALUES (109, 114, 3, 'Formularios');
4509 INSERT INTO `lang_definitions` VALUES (110, 113, 3, 'Consultorio');
4510 INSERT INTO `lang_definitions` VALUES (111, 115, 3, 'Usuarios y Grupos');
4511 INSERT INTO `lang_definitions` VALUES (112, 117, 3, 'Modificar Facilidades');
4512 INSERT INTO `lang_definitions` VALUES (113, 118, 3, 'Usuario Nuevo');
4513 INSERT INTO `lang_definitions` VALUES (114, 119, 3, 'Grupo Nuevo');
4514 INSERT INTO `lang_definitions` VALUES (115, 120, 3, 'Agrega Usuario a Grupo');
4515 INSERT INTO `lang_definitions` VALUES (116, 121, 3, 'Día Laboral');
4516 INSERT INTO `lang_definitions` VALUES (117, 123, 3, 'mes');
4517 INSERT INTO `lang_definitions` VALUES (118, 122, 3, 'semana');
4518 INSERT INTO `lang_definitions` VALUES (119, 124, 3, 'año');
4519 INSERT INTO `lang_definitions` VALUES (120, 126, 3, '2ndo');
4520 INSERT INTO `lang_definitions` VALUES (121, 127, 3, '3er');
4521 INSERT INTO `lang_definitions` VALUES (122, 128, 3, '4to');
4522 INSERT INTO `lang_definitions` VALUES (123, 129, 3, '5to');
4523 INSERT INTO `lang_definitions` VALUES (124, 130, 3, '6to');
4524 INSERT INTO `lang_definitions` VALUES (125, 125, 3, 'cada');
4525 INSERT INTO `lang_definitions` VALUES (126, 131, 3, 'Localizar');
4526 INSERT INTO `lang_definitions` VALUES (127, 132, 3, 'Cancelar');
4527 INSERT INTO `lang_definitions` VALUES (128, 133, 3, 'Guardar');
4528 INSERT INTO `lang_definitions` VALUES (129, 134, 3, 'Eliminar');
4529 INSERT INTO `lang_definitions` VALUES (130, 135, 3, 'Registro');
4530 INSERT INTO `lang_definitions` VALUES (131, 136, 3, 'Evento');
4531 INSERT INTO `lang_definitions` VALUES (132, 137, 3, 'Atención');
4532 INSERT INTO `lang_definitions` VALUES (133, 138, 3, 'Registrado');
4533 INSERT INTO `lang_definitions` VALUES (134, 139, 3, 'No Registrado');
4534 INSERT INTO `lang_definitions` VALUES (135, 140, 3, 'Administración de Formularios');
4535 INSERT INTO `lang_definitions` VALUES (136, 142, 3, 'desactivado');
4536 INSERT INTO `lang_definitions` VALUES (137, 141, 3, 'activado');
4537 INSERT INTO `lang_definitions` VALUES (138, 143, 3, 'Instalado');
4538 INSERT INTO `lang_definitions` VALUES (139, 144, 3, 'PHP descomprimido');
4539 INSERT INTO `lang_definitions` VALUES (140, 145, 3, 'Instalar');
4540 INSERT INTO `lang_definitions` VALUES (141, 146, 3, 'Informe de Facturación');
4541 INSERT INTO `lang_definitions` VALUES (142, 147, 3, 'Notas Oficiales');
4542 INSERT INTO `lang_definitions` VALUES (143, 149, 3, 'Activos');
4543 INSERT INTO `lang_definitions` VALUES (144, 150, 3, 'Inactivos');
4544 INSERT INTO `lang_definitions` VALUES (145, 148, 3, 'Ver');
4545 INSERT INTO `lang_definitions` VALUES (146, 151, 3, 'Modificar Actividad');
4546 INSERT INTO `lang_definitions` VALUES (147, 152, 3, 'Agregar Nota Nueva');
4547 INSERT INTO `lang_definitions` VALUES (148, 153, 3, 'Modificar Contraseña');
4548 INSERT INTO `lang_definitions` VALUES (149, 154, 3, 'Al cambiar su contraseña, Re-valida.');
4549 INSERT INTO `lang_definitions` VALUES (150, 155, 3, 'Nuevamente');
4550 INSERT INTO `lang_definitions` VALUES (151, 156, 3, 'O');
4551 INSERT INTO `lang_definitions` VALUES (152, 157, 3, 'Sexo');
4552 INSERT INTO `lang_definitions` VALUES (153, 158, 3, 'Formato');
4553 INSERT INTO `lang_definitions` VALUES (154, 159, 3, 'Citado entre');
4554 INSERT INTO `lang_definitions` VALUES (155, 160, 3, 'Visto desde');
4555 INSERT INTO `lang_definitions` VALUES (156, 161, 3, 'No visto desde');
4556 INSERT INTO `lang_definitions` VALUES (157, 162, 3, 'Organizado por');
4557 INSERT INTO `lang_definitions` VALUES (158, 163, 3, 'Correo Electronico por');
4558 INSERT INTO `lang_definitions` VALUES (159, 164, 3, 'Tema de Correo Electronico');
4559 INSERT INTO `lang_definitions` VALUES (160, 165, 3, 'Texto de Correo Electronico, Utiliza formato de Tag: ***NAME*** , eg. Saludos ***NAME***');
4560 INSERT INTO `lang_definitions` VALUES (161, 166, 3, 'Processo Lento');
4561 INSERT INTO `lang_definitions` VALUES (162, 167, 3, 'Solamente para uso de  Correo Electronico a pacientes');
4562 INSERT INTO `lang_definitions` VALUES (163, 168, 3, 'Edad desde');
4563 INSERT INTO `lang_definitions` VALUES (164, 169, 3, 'Hasta');
4564 INSERT INTO `lang_definitions` VALUES (165, 171, 3, 'Contacto');
4565 INSERT INTO `lang_definitions` VALUES (166, 172, 3, 'No enviado por error con servidor');
4566 INSERT INTO `lang_definitions` VALUES (167, 173, 3, 'Correo Electronico no enviado');
4567 INSERT INTO `lang_definitions` VALUES (168, 170, 3, 'Empleo');
4568 INSERT INTO `lang_definitions` VALUES (169, 174, 3, 'Ignorar HIPAA');
4569 INSERT INTO `lang_definitions` VALUES (170, 175, 3, 'Archivo CSV');
4570 INSERT INTO `lang_definitions` VALUES (171, 177, 3, 'Correo Electrónico');
4571 INSERT INTO `lang_definitions` VALUES (172, 176, 3, 'Lista de llamadas telefónicas');
4572 INSERT INTO `lang_definitions` VALUES (173, 178, 3, 'Cualquier');
4574 -- --------------------------------------------------------
4576 -- 
4577 -- Table structure for table `lang_languages`
4578 -- 
4580 DROP TABLE IF EXISTS `lang_languages`;
4581 CREATE TABLE `lang_languages` (
4582   `lang_id` int(11) NOT NULL auto_increment,
4583   `lang_code` char(2) character set latin1 NOT NULL default '',
4584   `lang_description` varchar(100) character set utf8 collate utf8_unicode_ci default NULL,
4585   UNIQUE KEY `lang_id` (`lang_id`)
4586 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=7 ;
4588 -- 
4589 -- Dumping data for table `lang_languages`
4590 -- 
4592 INSERT INTO `lang_languages` VALUES (1, 'en', 'English');
4593 INSERT INTO `lang_languages` VALUES (2, 'se', 'Swedish');
4594 INSERT INTO `lang_languages` VALUES (3, 'es', 'Spanish');
4595 INSERT INTO `lang_languages` VALUES (4, 'de', 'German');
4596 INSERT INTO `lang_languages` VALUES (5, 'du', 'Dutch');
4597 INSERT INTO `lang_languages` VALUES (6, 'he', 'Hebrew');
4599 -- --------------------------------------------------------
4601 -- 
4602 -- Table structure for table `layout_options`
4603 -- 
4605 DROP TABLE IF EXISTS `layout_options`;
4606 CREATE TABLE `layout_options` (
4607   `form_id` varchar(31) character set utf8 collate utf8_unicode_ci NOT NULL default '',
4608   `field_id` varchar(31) character set utf8 collate utf8_unicode_ci NOT NULL default '',
4609   `group_name` varchar(31) character set utf8 collate utf8_unicode_ci NOT NULL default '',
4610   `title` varchar(63) character set utf8 collate utf8_unicode_ci NOT NULL default '',
4611   `seq` int(11) NOT NULL default '0',
4612   `data_type` tinyint(3) NOT NULL default '0',
4613   `uor` tinyint(1) NOT NULL default '1',
4614   `fld_length` int(11) NOT NULL default '15',
4615   `max_length` int(11) NOT NULL default '0',
4616   `list_id` varchar(31) character set utf8 collate utf8_unicode_ci NOT NULL default '',
4617   `titlecols` tinyint(3) NOT NULL default '1',
4618   `datacols` tinyint(3) NOT NULL default '1',
4619   `default_value` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
4620   `edit_options` varchar(36) character set utf8 collate utf8_unicode_ci NOT NULL default '',
4621   `description` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
4622   PRIMARY KEY  (`form_id`,`field_id`,`seq`)
4623 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
4625 -- 
4626 -- Dumping data for table `layout_options`
4627 -- 
4629 INSERT INTO `layout_options` VALUES ('DEM', 'title', '1Who', 'Name', 1, 1, 1, 0, 0, 'titles', 1, 1, '', '', 'Title');
4630 INSERT INTO `layout_options` VALUES ('DEM', 'fname', '1Who', '', 2, 2, 2, 10, 63, '', 0, 0, '', 'C', 'First Name');
4631 INSERT INTO `layout_options` VALUES ('DEM', 'mname', '1Who', '', 3, 2, 1, 2, 63, '', 0, 0, '', 'C', 'Middle Name');
4632 INSERT INTO `layout_options` VALUES ('DEM', 'lname', '1Who', '', 4, 2, 2, 10, 63, '', 0, 0, '', 'C', 'Last Name');
4633 INSERT INTO `layout_options` VALUES ('DEM', 'pubpid', '1Who', 'External ID', 5, 2, 1, 10, 15, '', 1, 1, '', '', 'External identifier');
4634 INSERT INTO `layout_options` VALUES ('DEM', 'DOB', '1Who', 'DOB', 6, 4, 2, 10, 10, '', 1, 1, '', 'D', 'Date of Birth');
4635 INSERT INTO `layout_options` VALUES ('DEM', 'sex', '1Who', 'Sex', 7, 1, 2, 0, 0, 'sex', 1, 1, '', '', 'Sex');
4636 INSERT INTO `layout_options` VALUES ('DEM', 'ss', '1Who', 'S.S.', 8, 2, 1, 11, 11, '', 1, 1, '', '', 'Social Security Number');
4637 INSERT INTO `layout_options` VALUES ('DEM', 'drivers_license', '1Who', 'License/ID', 9, 2, 1, 15, 63, '', 1, 1, '', '', 'Drivers License or State ID');
4638 INSERT INTO `layout_options` VALUES ('DEM', 'status', '1Who', 'Marital Status', 10, 1, 1, 0, 0, 'marital', 1, 3, '', '', 'Marital Status');
4639 INSERT INTO `layout_options` VALUES ('DEM', 'genericname1', '1Who', 'User Defined', 11, 2, 1, 15, 63, '', 1, 3, '', '', 'User Defined Field');
4640 INSERT INTO `layout_options` VALUES ('DEM', 'genericval1', '1Who', '', 12, 2, 1, 15, 63, '', 0, 0, '', '', 'User Defined Field');
4641 INSERT INTO `layout_options` VALUES ('DEM', 'genericname2', '1Who', '', 13, 2, 1, 15, 63, '', 0, 0, '', '', 'User Defined Field');
4642 INSERT INTO `layout_options` VALUES ('DEM', 'genericval2', '1Who', '', 14, 2, 1, 15, 63, '', 0, 0, '', '', 'User Defined Field');
4643 INSERT INTO `layout_options` VALUES ('DEM', 'squad', '1Who', 'Squad', 15, 13, 0, 0, 0, '', 1, 3, '', '', 'Squad Membership');
4644 INSERT INTO `layout_options` VALUES ('DEM', 'pricelevel', '1Who', 'Price Level', 16, 1, 0, 0, 0, 'pricelevel', 1, 1, '', '', 'Discount Level');
4645 INSERT INTO `layout_options` VALUES ('DEM', 'street', '2Contact', 'Address', 1, 2, 1, 25, 63, '', 1, 1, '', 'C', 'Street and Number');
4646 INSERT INTO `layout_options` VALUES ('DEM', 'city', '2Contact', 'City', 2, 2, 1, 15, 63, '', 1, 1, '', 'C', 'City Name');
4647 INSERT INTO `layout_options` VALUES ('DEM', 'state', '2Contact', 'State', 3, 1, 1, 0, 0, 'state', 1, 1, '', '', 'State/Locality');
4648 INSERT INTO `layout_options` VALUES ('DEM', 'postal_code', '2Contact', 'Postal Code', 4, 2, 1, 6, 63, '', 1, 1, '', '', 'Postal Code');
4649 INSERT INTO `layout_options` VALUES ('DEM', 'country_code', '2Contact', 'Country', 5, 1, 1, 0, 0, 'country', 1, 1, '', '', 'Country');
4650 INSERT INTO `layout_options` VALUES ('DEM', 'contact_relationship', '2Contact', 'Emergency Contact', 6, 2, 1, 10, 63, '', 1, 1, '', 'C', 'Emergency Contact Person');
4651 INSERT INTO `layout_options` VALUES ('DEM', 'phone_contact', '2Contact', 'Emergency Phone', 7, 2, 1, 20, 63, '', 1, 1, '', 'P', 'Emergency Contact Phone Number');
4652 INSERT INTO `layout_options` VALUES ('DEM', 'phone_home', '2Contact', 'Home Phone', 8, 2, 1, 20, 63, '', 1, 1, '', 'P', 'Home Phone Number');
4653 INSERT INTO `layout_options` VALUES ('DEM', 'phone_biz', '2Contact', 'Work Phone', 9, 2, 1, 20, 63, '', 1, 1, '', 'P', 'Work Phone Number');
4654 INSERT INTO `layout_options` VALUES ('DEM', 'phone_cell', '2Contact', 'Mobile Phone', 10, 2, 1, 20, 63, '', 1, 1, '', 'P', 'Cell Phone Number');
4655 INSERT INTO `layout_options` VALUES ('DEM', 'email', '2Contact', 'Contact Email', 11, 2, 1, 30, 95, '', 1, 1, '', '', 'Contact Email Address');
4656 INSERT INTO `layout_options` VALUES ('DEM', 'providerID', '3Choices', 'Provider', 1, 11, 2, 0, 0, '', 1, 3, '', '', 'Referring Provider');
4657 INSERT INTO `layout_options` VALUES ('DEM', 'pharmacy_id', '3Choices', 'Pharmacy', 2, 12, 1, 0, 0, '', 1, 3, '', '', 'Preferred Pharmacy');
4658 INSERT INTO `layout_options` VALUES ('DEM', 'hipaa_notice', '3Choices', 'HIPAA Notice Received', 3, 1, 1, 0, 0, 'yesno', 1, 1, '', '', 'Did you receive a copy of the HIPAA Notice?');
4659 INSERT INTO `layout_options` VALUES ('DEM', 'hipaa_voice', '3Choices', 'Allow Voice Message', 4, 1, 1, 0, 0, 'yesno', 1, 1, '', '', 'Allow telephone messages?');
4660 INSERT INTO `layout_options` VALUES ('DEM', 'hipaa_mail', '3Choices', 'Allow Mail Message', 5, 1, 1, 0, 0, 'yesno', 1, 1, '', '', 'Allow email messages?');
4661 INSERT INTO `layout_options` VALUES ('DEM', 'hipaa_message', '3Choices', 'Leave Message With', 6, 2, 1, 20, 63, '', 1, 1, '', '', 'With whom may we leave a message?');
4662 INSERT INTO `layout_options` VALUES ('DEM', 'occupation', '4Employer', 'Occupation', 1, 2, 1, 20, 63, '', 1, 1, '', 'C', 'Occupation');
4663 INSERT INTO `layout_options` VALUES ('DEM', 'em_name', '4Employer', 'Employer Name', 2, 2, 1, 20, 63, '', 1, 1, '', 'C', 'Employer Name');
4664 INSERT INTO `layout_options` VALUES ('DEM', 'em_street', '4Employer', 'Employer Address', 3, 2, 1, 25, 63, '', 1, 1, '', 'C', 'Street and Number');
4665 INSERT INTO `layout_options` VALUES ('DEM', 'em_city', '4Employer', 'City', 4, 2, 1, 15, 63, '', 1, 1, '', 'C', 'City Name');
4666 INSERT INTO `layout_options` VALUES ('DEM', 'em_state', '4Employer', 'State', 5, 2, 1, 15, 63, '', 1, 1, '', 'C', 'State/Locality');
4667 INSERT INTO `layout_options` VALUES ('DEM', 'em_postal_code', '4Employer', 'Postal Code', 6, 2, 1, 6, 63, '', 1, 1, '', '', 'Postal Code');
4668 INSERT INTO `layout_options` VALUES ('DEM', 'em_country', '4Employer', 'Country', 7, 2, 1, 10, 63, '', 1, 1, '', 'C', 'Country');
4669 INSERT INTO `layout_options` VALUES ('DEM', 'language', '5Stats', 'Language', 1, 1, 1, 0, 0, 'language', 1, 1, '', '', 'Preferred Language');
4670 INSERT INTO `layout_options` VALUES ('DEM', 'ethnoracial', '5Stats', 'Race/Ethnicity', 2, 1, 1, 0, 0, 'ethrace', 1, 1, '', '', 'Ethnicity or Race');
4671 INSERT INTO `layout_options` VALUES ('DEM', 'financial_review', '5Stats', 'Financial Review Date', 3, 2, 1, 10, 10, '', 1, 1, '', 'D', 'Financial Review Date');
4672 INSERT INTO `layout_options` VALUES ('DEM', 'family_size', '5Stats', 'Family Size', 4, 2, 1, 20, 63, '', 1, 1, '', '', 'Family Size');
4673 INSERT INTO `layout_options` VALUES ('DEM', 'monthly_income', '5Stats', 'Monthly Income', 5, 2, 1, 20, 63, '', 1, 1, '', '', 'Monthly Income');
4674 INSERT INTO `layout_options` VALUES ('DEM', 'homeless', '5Stats', 'Homeless, etc.', 6, 2, 1, 20, 63, '', 1, 1, '', '', 'Homeless or similar?');
4675 INSERT INTO `layout_options` VALUES ('DEM', 'interpretter', '5Stats', 'Interpreter', 7, 2, 1, 20, 63, '', 1, 1, '', '', 'Interpreter needed?');
4676 INSERT INTO `layout_options` VALUES ('DEM', 'migrantseasonal', '5Stats', 'Migrant/Seasonal', 8, 2, 1, 20, 63, '', 1, 1, '', '', 'Migrant or seasonal worker?');
4677 INSERT INTO `layout_options` VALUES ('DEM', 'contrastart', '5Stats', 'Contraceptives Start',9,4,0,10,10,'',1,1,'','','Date contraceptive services initially provided');
4678 INSERT INTO `layout_options` VALUES ('DEM', 'usertext1', '6Misc', 'User Defined Text 1', 1, 2, 0, 10, 63, '', 1, 1, '', '', 'User Defined');
4679 INSERT INTO `layout_options` VALUES ('DEM', 'usertext2', '6Misc', 'User Defined Text 2', 2, 2, 0, 10, 63, '', 1, 1, '', '', 'User Defined');
4680 INSERT INTO `layout_options` VALUES ('DEM', 'usertext3', '6Misc', 'User Defined Text 3', 3,2,0,10,63,'',1,1,'','','User Defined');
4681 INSERT INTO `layout_options` VALUES ('DEM', 'usertext4', '6Misc', 'User Defined Text 4', 4,2,0,10,63,'',1,1,'','','User Defined');
4682 INSERT INTO `layout_options` VALUES ('DEM', 'usertext5', '6Misc', 'User Defined Text 5', 5,2,0,10,63,'',1,1,'','','User Defined');
4683 INSERT INTO `layout_options` VALUES ('DEM', 'usertext6', '6Misc', 'User Defined Text 6', 6,2,0,10,63,'',1,1,'','','User Defined');
4684 INSERT INTO `layout_options` VALUES ('DEM', 'usertext7', '6Misc', 'User Defined Text 7', 7,2,0,10,63,'',1,1,'','','User Defined');
4685 INSERT INTO `layout_options` VALUES ('DEM', 'usertext8', '6Misc', 'User Defined Text 8', 8,2,0,10,63,'',1,1,'','','User Defined');
4686 INSERT INTO `layout_options` VALUES ('DEM', 'userlist1', '6Misc', 'User Defined List 1', 9, 1, 0, 0, 0, 'userlist1', 1, 1, '', '', 'User Defined');
4687 INSERT INTO `layout_options` VALUES ('DEM', 'userlist2', '6Misc', 'User Defined List 2',10, 1, 0, 0, 0, 'userlist2', 1, 1, '', '', 'User Defined');
4688 INSERT INTO `layout_options` VALUES ('DEM', 'userlist3', '6Misc', 'User Defined List 3',11, 1, 0, 0, 0, 'userlist3', 1, 1, '', '' , 'User Defined');
4689 INSERT INTO `layout_options` VALUES ('DEM', 'userlist4', '6Misc', 'User Defined List 4',12, 1, 0, 0, 0, 'userlist4', 1, 1, '', '' , 'User Defined');
4690 INSERT INTO `layout_options` VALUES ('DEM', 'userlist5', '6Misc', 'User Defined List 5',13, 1, 0, 0, 0, 'userlist5', 1, 1, '', '' , 'User Defined');
4691 INSERT INTO `layout_options` VALUES ('DEM', 'userlist6', '6Misc', 'User Defined List 6',14, 1, 0, 0, 0, 'userlist6', 1, 1, '', '' , 'User Defined');
4692 INSERT INTO `layout_options` VALUES ('DEM', 'userlist7', '6Misc', 'User Defined List 7',15, 1, 0, 0, 0, 'userlist7', 1, 1, '', '' , 'User Defined');
4693 INSERT INTO `layout_options` VALUES ('DEM', 'regdate'  , '6Misc', 'Registration Date'  ,16, 4, 0,10,10, ''         , 1, 1, '', 'D', 'Start Date at This Clinic');
4694 INSERT INTO `layout_options` VALUES ('DEM', 'hipaa_allowsms'  , '3Choices', 'Allow SMS'  , 5, 1, 1, 0, 0, 'yesno', 1, 1, '', '', 'Allow SMS (text messages)?');
4695 INSERT INTO `layout_options` VALUES ('DEM', 'hipaa_allowemail', '3Choices', 'Allow Email', 5, 1, 1, 0, 0, 'yesno', 1, 1, '', '', 'Allow Email?');
4697 INSERT INTO layout_options VALUES ('REF','refer_date'      ,'1Referral','Referral Date'                  , 1, 4,2, 0,  0,''         ,1,1,'C','D','Date of referral');
4698 INSERT INTO layout_options VALUES ('REF','refer_from'      ,'1Referral','Refer By'                       , 2,10,2, 0,  0,''         ,1,1,'' ,'' ,'Referral By');
4699 INSERT INTO layout_options VALUES ('REF','refer_to'        ,'1Referral','Refer To'                       , 3,14,2, 0,  0,''         ,1,1,'' ,'' ,'Referral To');
4700 INSERT INTO layout_options VALUES ('REF','body'            ,'1Referral','Reason'                         , 4, 3,2,30,  3,''         ,1,1,'' ,'' ,'Reason for referral');
4701 INSERT INTO layout_options VALUES ('REF','refer_external'  ,'1Referral','External Referral'              , 5, 1,1, 0,  0,'boolean'  ,1,1,'' ,'' ,'External referral?');
4702 INSERT INTO layout_options VALUES ('REF','refer_diag'      ,'1Referral','Referrer Diagnosis'             , 6, 2,1,30,255,''         ,1,1,'' ,'X','Referrer diagnosis');
4703 INSERT INTO layout_options VALUES ('REF','refer_risk_level','1Referral','Risk Level'                     , 7, 1,1, 0,  0,'risklevel',1,1,'' ,'' ,'Level of urgency');
4704 INSERT INTO layout_options VALUES ('REF','refer_vitals'    ,'1Referral','Include Vitals'                 , 8, 1,1, 0,  0,'boolean'  ,1,1,'' ,'' ,'Include vitals data?');
4705 INSERT INTO layout_options VALUES ('REF','refer_related_code','1Referral','Requested Service'            , 9,15,1,30,255,''         ,1,1,'' ,'' ,'Billing Code for Requested Service');
4706 INSERT INTO layout_options VALUES ('REF','reply_date'      ,'2Counter-Referral','Reply Date'             ,10, 4,1, 0,  0,''         ,1,1,'' ,'D','Date of reply');
4707 INSERT INTO layout_options VALUES ('REF','reply_from'      ,'2Counter-Referral','Reply From'             ,11, 2,1,30,255,''         ,1,1,'' ,'' ,'Who replied?');
4708 INSERT INTO layout_options VALUES ('REF','reply_init_diag' ,'2Counter-Referral','Presumed Diagnosis'     ,12, 2,1,30,255,''         ,1,1,'' ,'' ,'Presumed diagnosis by specialist');
4709 INSERT INTO layout_options VALUES ('REF','reply_final_diag','2Counter-Referral','Final Diagnosis'        ,13, 2,1,30,255,''         ,1,1,'' ,'' ,'Final diagnosis by specialist');
4710 INSERT INTO layout_options VALUES ('REF','reply_documents' ,'2Counter-Referral','Documents'              ,14, 2,1,30,255,''         ,1,1,'' ,'' ,'Where may related scanned or paper documents be found?');
4711 INSERT INTO layout_options VALUES ('REF','reply_findings'  ,'2Counter-Referral','Findings'               ,15, 3,1,30,  3,''         ,1,1,'' ,'' ,'Findings by specialist');
4712 INSERT INTO layout_options VALUES ('REF','reply_services'  ,'2Counter-Referral','Services Provided'      ,16, 3,1,30,  3,''         ,1,1,'' ,'' ,'Service provided by specialist');
4713 INSERT INTO layout_options VALUES ('REF','reply_recommend' ,'2Counter-Referral','Recommendations'        ,17, 3,1,30,  3,''         ,1,1,'' ,'' ,'Recommendations by specialist');
4714 INSERT INTO layout_options VALUES ('REF','reply_rx_refer'  ,'2Counter-Referral','Prescriptions/Referrals',18, 3,1,30,  3,''         ,1,1,'' ,'' ,'Prescriptions and/or referrals by specialist');
4716 INSERT INTO layout_options VALUES ('HIS','usertext11','1General','Risk Factors',1,21,1,0,0,'riskfactors',1,1,'','' ,'Risk Factors');
4717 INSERT INTO layout_options VALUES ('HIS','exams'     ,'1General','Exams/Tests' ,2,23,1,0,0,'exams'      ,1,1,'','' ,'Exam and test results');
4718 INSERT INTO layout_options VALUES ('HIS','history_father'   ,'2Family History','Father'   ,1, 2,1,20,255,'',1,1,'','' ,'');
4719 INSERT INTO layout_options VALUES ('HIS','history_mother'   ,'2Family History','Mother'   ,2, 2,1,20,255,'',1,1,'','' ,'');
4720 INSERT INTO layout_options VALUES ('HIS','history_siblings' ,'2Family History','Siblings' ,3, 2,1,20,255,'',1,1,'','' ,'');
4721 INSERT INTO layout_options VALUES ('HIS','history_spouse'   ,'2Family History','Spouse'   ,4, 2,1,20,255,'',1,1,'','' ,'');
4722 INSERT INTO layout_options VALUES ('HIS','history_offspring','2Family History','Offspring',5, 2,1,20,255,'',1,3,'','' ,'');
4723 INSERT INTO layout_options VALUES ('HIS','relatives_cancer'             ,'3Relatives','Cancer'             ,1, 2,1,20,255,'',1,1,'','' ,'');
4724 INSERT INTO layout_options VALUES ('HIS','relatives_tuberculosis'       ,'3Relatives','Tuberculosis'       ,2, 2,1,20,255,'',1,1,'','' ,'');
4725 INSERT INTO layout_options VALUES ('HIS','relatives_diabetes'           ,'3Relatives','Diabetes'           ,3, 2,1,20,255,'',1,1,'','' ,'');
4726 INSERT INTO layout_options VALUES ('HIS','relatives_high_blood_pressure','3Relatives','High Blood Pressure',4, 2,1,20,255,'',1,1,'','' ,'');
4727 INSERT INTO layout_options VALUES ('HIS','relatives_heart_problems'     ,'3Relatives','Heart Problems'     ,5, 2,1,20,255,'',1,1,'','' ,'');
4728 INSERT INTO layout_options VALUES ('HIS','relatives_stroke'             ,'3Relatives','Stroke'             ,6, 2,1,20,255,'',1,1,'','' ,'');
4729 INSERT INTO layout_options VALUES ('HIS','relatives_epilepsy'           ,'3Relatives','Epilepsy'           ,7, 2,1,20,255,'',1,1,'','' ,'');
4730 INSERT INTO layout_options VALUES ('HIS','relatives_mental_illness'     ,'3Relatives','Mental Illness'     ,8, 2,1,20,255,'',1,1,'','' ,'');
4731 INSERT INTO layout_options VALUES ('HIS','relatives_suicide'            ,'3Relatives','Suicide'            ,9, 2,1,20,255,'',1,3,'','' ,'');
4732 INSERT INTO layout_options VALUES ('HIS','coffee'              ,'4Lifestyle','Coffee'              ,1, 2,1,20,255,'',1,1,'','' ,'Caffeine consumption');
4733 INSERT INTO layout_options VALUES ('HIS','tobacco'             ,'4Lifestyle','Tobacco'             ,2, 2,1,20,255,'',1,1,'','' ,'Tobacco use');
4734 INSERT INTO layout_options VALUES ('HIS','alcohol'             ,'4Lifestyle','Alcohol'             ,3, 2,1,20,255,'',1,1,'','' ,'Alcohol consumption');
4735 INSERT INTO layout_options VALUES ('HIS','sleep_patterns'      ,'4Lifestyle','Sleep Patterns'      ,4, 2,1,20,255,'',1,1,'','' ,'Sleep patterns');
4736 INSERT INTO layout_options VALUES ('HIS','exercise_patterns'   ,'4Lifestyle','Exercise Patterns'   ,5, 2,1,20,255,'',1,1,'','' ,'Exercise patterns');
4737 INSERT INTO layout_options VALUES ('HIS','seatbelt_use'        ,'4Lifestyle','Seatbelt Use'        ,6, 2,1,20,255,'',1,1,'','' ,'Seatbelt use');
4738 INSERT INTO layout_options VALUES ('HIS','counseling'          ,'4Lifestyle','Counseling'          ,7, 2,1,20,255,'',1,1,'','' ,'Counseling activities');
4739 INSERT INTO layout_options VALUES ('HIS','hazardous_activities','4Lifestyle','Hazardous Activities',8, 2,1,20,255,'',1,1,'','' ,'Hazardous activities');
4740 INSERT INTO layout_options VALUES ('HIS','name_1'            ,'5Other','Name/Value'        ,1, 2,1,10,255,'',1,1,'','' ,'Name 1' );
4741 INSERT INTO layout_options VALUES ('HIS','value_1'           ,'5Other',''                  ,2, 2,1,10,255,'',0,0,'','' ,'Value 1');
4742 INSERT INTO layout_options VALUES ('HIS','name_2'            ,'5Other','Name/Value'        ,3, 2,1,10,255,'',1,1,'','' ,'Name 2' );
4743 INSERT INTO layout_options VALUES ('HIS','value_2'           ,'5Other',''                  ,4, 2,1,10,255,'',0,0,'','' ,'Value 2');
4744 INSERT INTO layout_options VALUES ('HIS','additional_history','5Other','Additional History',5, 3,1,30,  3,'',1,3,'' ,'' ,'Additional history notes');
4745 INSERT INTO layout_options VALUES ('HIS','userarea11'        ,'5Other','User Defined Area 11',6,3,0,30,3,'',1,3,'','','User Defined');
4746 INSERT INTO layout_options VALUES ('HIS','userarea12'        ,'5Other','User Defined Area 12',7,3,0,30,3,'',1,3,'','','User Defined');
4748 -- --------------------------------------------------------
4750 -- 
4751 -- Table structure for table `list_options`
4752 -- 
4754 DROP TABLE IF EXISTS `list_options`;
4755 CREATE TABLE `list_options` (
4756   `list_id` varchar(31) character set utf8 collate utf8_unicode_ci NOT NULL default '',
4757   `option_id` varchar(31) character set utf8 collate utf8_unicode_ci NOT NULL default '',
4758   `title` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
4759   `seq` int(11) NOT NULL default '0',
4760   `is_default` tinyint(1) NOT NULL default '0',
4761   `option_value` float NOT NULL default '0',
4762   PRIMARY KEY  (`list_id`,`option_id`)
4763 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
4765 -- 
4766 -- Dumping data for table `list_options`
4767 -- 
4769 INSERT INTO `list_options` VALUES ('yesno', 'NO', 'NO', 1, 0, 0);
4770 INSERT INTO `list_options` VALUES ('yesno', 'YES', 'YES', 2, 0, 0);
4771 INSERT INTO `list_options` VALUES ('titles', 'Mr.', 'Mr.', 1, 0, 0);
4772 INSERT INTO `list_options` VALUES ('titles', 'Mrs.', 'Mrs.', 2, 0, 0);
4773 INSERT INTO `list_options` VALUES ('titles', 'Ms.', 'Ms.', 3, 0, 0);
4774 INSERT INTO `list_options` VALUES ('titles', 'Dr.', 'Dr.', 4, 0, 0);
4775 INSERT INTO `list_options` VALUES ('sex', 'Female', 'Female', 1, 0, 0);
4776 INSERT INTO `list_options` VALUES ('sex', 'Male', 'Male', 2, 0, 0);
4777 INSERT INTO `list_options` VALUES ('marital', 'married', 'Married', 1, 0, 0);
4778 INSERT INTO `list_options` VALUES ('marital', 'single', 'Single', 2, 0, 0);
4779 INSERT INTO `list_options` VALUES ('marital', 'divorced', 'Divorced', 3, 0, 0);
4780 INSERT INTO `list_options` VALUES ('marital', 'widowed', 'Widowed', 4, 0, 0);
4781 INSERT INTO `list_options` VALUES ('marital', 'separated', 'Separated', 5, 0, 0);
4782 INSERT INTO `list_options` VALUES ('marital', 'domestic partner', 'Domestic Partner', 6, 0, 0);
4783 INSERT INTO `list_options` VALUES ('language', 'English', 'English', 1, 1, 0);
4784 INSERT INTO `list_options` VALUES ('language', 'Spanish', 'Spanish', 2, 0, 0);
4785 INSERT INTO `list_options` VALUES ('ethrace', 'Caucasian', 'Caucasian', 1, 0, 0);
4786 INSERT INTO `list_options` VALUES ('ethrace', 'Asian', 'Asian', 2, 0, 0);
4787 INSERT INTO `list_options` VALUES ('ethrace', 'Black', 'Black', 3, 0, 0);
4788 INSERT INTO `list_options` VALUES ('ethrace', 'Hispanic', 'Hispanic', 4, 0, 0);
4789 INSERT INTO `list_options` VALUES ('userlist1', 'sample', 'Sample', 1, 0, 0);
4790 INSERT INTO `list_options` VALUES ('userlist2', 'sample', 'Sample', 1, 0, 0);
4791 INSERT INTO `list_options` VALUES ('userlist3','sample','Sample',1,0,0);
4792 INSERT INTO `list_options` VALUES ('userlist4','sample','Sample',1,0,0);
4793 INSERT INTO `list_options` VALUES ('userlist5','sample','Sample',1,0,0);
4794 INSERT INTO `list_options` VALUES ('userlist6','sample','Sample',1,0,0);
4795 INSERT INTO `list_options` VALUES ('userlist7','sample','Sample',1,0,0);
4796 INSERT INTO `list_options` VALUES ('pricelevel', 'standard', 'Standard', 1, 1, 0);
4797 INSERT INTO `list_options` VALUES ('risklevel', 'low', 'Low', 1, 0, 0);
4798 INSERT INTO `list_options` VALUES ('risklevel', 'medium', 'Medium', 2, 1, 0);
4799 INSERT INTO `list_options` VALUES ('risklevel', 'high', 'High', 3, 0, 0);
4800 INSERT INTO `list_options` VALUES ('boolean', '0', 'No', 1, 0, 0);
4801 INSERT INTO `list_options` VALUES ('boolean', '1', 'Yes', 2, 0, 0);
4802 INSERT INTO `list_options` VALUES ('country', 'USA', 'USA', 1, 0, 0);
4803 INSERT INTO `list_options` VALUES ('state','CA','California',1,0,0);
4804 INSERT INTO list_options VALUES ('refsource','Patient'      ,'Patient'      , 1,0,0);
4805 INSERT INTO list_options VALUES ('refsource','Employee'     ,'Employee'     , 2,0,0);
4806 INSERT INTO list_options VALUES ('refsource','Walk-In'      ,'Walk-In'      , 3,0,0);
4807 INSERT INTO list_options VALUES ('refsource','Newspaper'    ,'Newspaper'    , 4,0,0);
4808 INSERT INTO list_options VALUES ('refsource','Radio'        ,'Radio'        , 5,0,0);
4809 INSERT INTO list_options VALUES ('refsource','T.V.'         ,'T.V.'         , 6,0,0);
4810 INSERT INTO list_options VALUES ('refsource','Direct Mail'  ,'Direct Mail'  , 7,0,0);
4811 INSERT INTO list_options VALUES ('refsource','Coupon'       ,'Coupon'       , 8,0,0);
4812 INSERT INTO list_options VALUES ('refsource','Referral Card','Referral Card', 9,0,0);
4813 INSERT INTO list_options VALUES ('refsource','Other'        ,'Other'        ,10,0,0);
4814 INSERT INTO list_options VALUES ('riskfactors','vv' ,'Varicose Veins'                      , 1,0,0);
4815 INSERT INTO list_options VALUES ('riskfactors','ht' ,'Hypertension'                        , 2,0,0);
4816 INSERT INTO list_options VALUES ('riskfactors','db' ,'Diabetes'                            , 3,0,0);
4817 INSERT INTO list_options VALUES ('riskfactors','sc' ,'Sickle Cell'                         , 4,0,0);
4818 INSERT INTO list_options VALUES ('riskfactors','fib','Fibroids'                            , 5,0,0);
4819 INSERT INTO list_options VALUES ('riskfactors','pid','PID (Pelvic Inflammatory Disease)'   , 6,0,0);
4820 INSERT INTO list_options VALUES ('riskfactors','mig','Severe Migraine'                     , 7,0,0);
4821 INSERT INTO list_options VALUES ('riskfactors','hd' ,'Heart Disease'                       , 8,0,0);
4822 INSERT INTO list_options VALUES ('riskfactors','str','Thrombosis/Stroke'                   , 9,0,0);
4823 INSERT INTO list_options VALUES ('riskfactors','hep','Hepatitis'                           ,10,0,0);
4824 INSERT INTO list_options VALUES ('riskfactors','gb' ,'Gall Bladder Condition'              ,11,0,0);
4825 INSERT INTO list_options VALUES ('riskfactors','br' ,'Breast Disease'                      ,12,0,0);
4826 INSERT INTO list_options VALUES ('riskfactors','dpr','Depression'                          ,13,0,0);
4827 INSERT INTO list_options VALUES ('riskfactors','all','Allergies'                           ,14,0,0);
4828 INSERT INTO list_options VALUES ('riskfactors','inf','Infertility'                         ,15,0,0);
4829 INSERT INTO list_options VALUES ('riskfactors','ast','Asthma'                              ,16,0,0);
4830 INSERT INTO list_options VALUES ('riskfactors','ep' ,'Epilepsy'                            ,17,0,0);
4831 INSERT INTO list_options VALUES ('riskfactors','cl' ,'Contact Lenses'                      ,18,0,0);
4832 INSERT INTO list_options VALUES ('riskfactors','coc','Contraceptive Complication (specify)',19,0,0);
4833 INSERT INTO list_options VALUES ('riskfactors','oth','Other (specify)'                     ,20,0,0);
4834 INSERT INTO list_options VALUES ('exams' ,'brs','Breast Exam'          , 1,0,0);
4835 INSERT INTO list_options VALUES ('exams' ,'cec','Cardiac Echo'         , 2,0,0);
4836 INSERT INTO list_options VALUES ('exams' ,'ecg','ECG'                  , 3,0,0);
4837 INSERT INTO list_options VALUES ('exams' ,'gyn','Gynecological Exam'   , 4,0,0);
4838 INSERT INTO list_options VALUES ('exams' ,'mam','Mammogram'            , 5,0,0);
4839 INSERT INTO list_options VALUES ('exams' ,'phy','Physical Exam'        , 6,0,0);
4840 INSERT INTO list_options VALUES ('exams' ,'pro','Prostate Exam'        , 7,0,0);
4841 INSERT INTO list_options VALUES ('exams' ,'rec','Rectal Exam'          , 8,0,0);
4842 INSERT INTO list_options VALUES ('exams' ,'sic','Sigmoid/Colonoscopy'  , 9,0,0);
4843 INSERT INTO list_options VALUES ('exams' ,'ret','Retinal Exam'         ,10,0,0);
4844 INSERT INTO list_options VALUES ('exams' ,'flu','Flu Vaccination'      ,11,0,0);
4845 INSERT INTO list_options VALUES ('exams' ,'pne','Pneumonia Vaccination',12,0,0);
4846 INSERT INTO list_options VALUES ('exams' ,'ldl','LDL'                  ,13,0,0);
4847 INSERT INTO list_options VALUES ('exams' ,'hem','Hemoglobin'           ,14,0,0);
4848 INSERT INTO list_options VALUES ('exams' ,'psa','PSA'                  ,15,0,0);
4849 INSERT INTO list_options VALUES ('drug_form','1','suspension' ,1,0,0);
4850 INSERT INTO list_options VALUES ('drug_form','2','tablet'     ,2,0,0);
4851 INSERT INTO list_options VALUES ('drug_form','3','capsule'    ,3,0,0);
4852 INSERT INTO list_options VALUES ('drug_form','4','solution'   ,4,0,0);
4853 INSERT INTO list_options VALUES ('drug_form','5','tsp'        ,5,0,0);
4854 INSERT INTO list_options VALUES ('drug_form','6','ml'         ,6,0,0);
4855 INSERT INTO list_options VALUES ('drug_form','7','units'      ,7,0,0);
4856 INSERT INTO list_options VALUES ('drug_form','8','inhalations',8,0,0);
4857 INSERT INTO list_options VALUES ('drug_form','9','gtts(drops)',9,0,0);
4858 INSERT INTO list_options VALUES ('drug_units','1','mg'    ,1,0,0);
4859 INSERT INTO list_options VALUES ('drug_units','2','mg/1cc',2,0,0);
4860 INSERT INTO list_options VALUES ('drug_units','3','mg/2cc',3,0,0);
4861 INSERT INTO list_options VALUES ('drug_units','4','mg/3cc',4,0,0);
4862 INSERT INTO list_options VALUES ('drug_units','5','mg/4cc',5,0,0);
4863 INSERT INTO list_options VALUES ('drug_units','6','mg/5cc',6,0,0);
4864 INSERT INTO list_options VALUES ('drug_units','7','grams' ,7,0,0);
4865 INSERT INTO list_options VALUES ('drug_units','8','mcg'   ,8,0,0);
4866 INSERT INTO list_options VALUES ('drug_route', '1','Per Oris'         , 1,0,0);
4867 INSERT INTO list_options VALUES ('drug_route', '2','Per Rectum'       , 2,0,0);
4868 INSERT INTO list_options VALUES ('drug_route', '3','To Skin'          , 3,0,0);
4869 INSERT INTO list_options VALUES ('drug_route', '4','To Affected Area' , 4,0,0);
4870 INSERT INTO list_options VALUES ('drug_route', '5','Sublingual'       , 5,0,0);
4871 INSERT INTO list_options VALUES ('drug_route',' 6','OS'               , 6,0,0);
4872 INSERT INTO list_options VALUES ('drug_route', '7','OD'               , 7,0,0);
4873 INSERT INTO list_options VALUES ('drug_route', '8','OU'               , 8,0,0);
4874 INSERT INTO list_options VALUES ('drug_route', '9','SQ'               , 9,0,0);
4875 INSERT INTO list_options VALUES ('drug_route','10','IM'               ,10,0,0);
4876 INSERT INTO list_options VALUES ('drug_route','11','IV'               ,11,0,0);
4877 INSERT INTO list_options VALUES ('drug_route','12','Per Nostril'      ,12,0,0);
4878 INSERT INTO list_options VALUES ('drug_interval','1','b.i.d.',1,0,0);
4879 INSERT INTO list_options VALUES ('drug_interval','2','t.i.d.',2,0,0);
4880 INSERT INTO list_options VALUES ('drug_interval','3','q.i.d.',3,0,0);
4881 INSERT INTO list_options VALUES ('drug_interval','4','q.3h'  ,4,0,0);
4882 INSERT INTO list_options VALUES ('drug_interval','5','q.4h'  ,5,0,0);
4883 INSERT INTO list_options VALUES ('drug_interval','6','q.5h'  ,6,0,0);
4884 INSERT INTO list_options VALUES ('drug_interval','7','q.6h'  ,7,0,0);
4885 INSERT INTO list_options VALUES ('drug_interval','8','q.8h'  ,8,0,0);
4886 INSERT INTO list_options VALUES ('drug_interval','9','q.d.'  ,9,0,0);
4887 INSERT INTO list_options VALUES ('lists' ,'boolean'      ,'Boolean'            , 1,0,0);
4888 INSERT INTO list_options VALUES ('lists' ,'country'      ,'Country'            , 2,0,0);
4889 INSERT INTO list_options VALUES ('lists' ,'drug_form'    ,'Drug Forms'         , 3,0,0);
4890 INSERT INTO list_options VALUES ('lists' ,'drug_units'   ,'Drug Units'         , 4,0,0);
4891 INSERT INTO list_options VALUES ('lists' ,'drug_route'   ,'Drug Routes'        , 5,0,0);
4892 INSERT INTO list_options VALUES ('lists' ,'drug_interval','Drug Intervals'     , 6,0,0);
4893 INSERT INTO list_options VALUES ('lists' ,'exams'        ,'Exams/Tests'        , 7,0,0);
4894 INSERT INTO list_options VALUES ('lists' ,'feesheet'     ,'Fee Sheet'          , 8,0,0);
4895 INSERT INTO list_options VALUES ('lists' ,'language'     ,'Language'           , 9,0,0);
4896 INSERT INTO list_options VALUES ('lists' ,'marital'      ,'Marital Status'     ,10,0,0);
4897 INSERT INTO list_options VALUES ('lists' ,'pricelevel'   ,'Price Level'        ,11,0,0);
4898 INSERT INTO list_options VALUES ('lists' ,'ethrace'      ,'Race/Ethnicity'     ,12,0,0);
4899 INSERT INTO list_options VALUES ('lists' ,'refsource'    ,'Referral Source'    ,13,0,0);
4900 INSERT INTO list_options VALUES ('lists' ,'riskfactors'  ,'Risk Factors'       ,14,0,0);
4901 INSERT INTO list_options VALUES ('lists' ,'risklevel'    ,'Risk Level'         ,15,0,0);
4902 INSERT INTO list_options VALUES ('lists' ,'superbill'    ,'Service Category'   ,16,0,0);
4903 INSERT INTO list_options VALUES ('lists' ,'sex'          ,'Sex'                ,17,0,0);
4904 INSERT INTO list_options VALUES ('lists' ,'state'        ,'State'              ,18,0,0);
4905 INSERT INTO list_options VALUES ('lists' ,'taxrate'      ,'Tax Rate'           ,19,0,0);
4906 INSERT INTO list_options VALUES ('lists' ,'titles'       ,'Titles'             ,20,0,0);
4907 INSERT INTO list_options VALUES ('lists' ,'yesno'        ,'Yes/No'             ,21,0,0);
4908 INSERT INTO list_options VALUES ('lists' ,'userlist1'    ,'User Defined List 1',22,0,0);
4909 INSERT INTO list_options VALUES ('lists' ,'userlist2'    ,'User Defined List 2',23,0,0);
4910 INSERT INTO list_options VALUES ('lists' ,'userlist3'    ,'User Defined List 3',24,0,0);
4911 INSERT INTO list_options VALUES ('lists' ,'userlist4'    ,'User Defined List 4',25,0,0);
4912 INSERT INTO list_options VALUES ('lists' ,'userlist5'    ,'User Defined List 5',26,0,0);
4913 INSERT INTO list_options VALUES ('lists' ,'userlist6'    ,'User Defined List 6',27,0,0);
4914 INSERT INTO list_options VALUES ('lists' ,'userlist7'    ,'User Defined List 7',28,0,0);
4916 -- --------------------------------------------------------
4918 -- 
4919 -- Table structure for table `lists`
4920 -- 
4922 DROP TABLE IF EXISTS `lists`;
4923 CREATE TABLE `lists` (
4924   `id` bigint(20) NOT NULL auto_increment,
4925   `date` datetime default NULL,
4926   `type` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
4927   `title` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
4928   `begdate` date default NULL,
4929   `enddate` date default NULL,
4930   `returndate` date default NULL,
4931   `occurrence` int(11) default '0',
4932   `classification` int(11) default '0',
4933   `referredby` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
4934   `extrainfo` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
4935   `diagnosis` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
4936   `activity` tinyint(4) default NULL,
4937   `comments` longtext character set utf8 collate utf8_unicode_ci,
4938   `pid` bigint(20) default NULL,
4939   `user` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
4940   `groupname` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
4941   `outcome` int(11) NOT NULL default '0',
4942   `destination` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
4943   PRIMARY KEY  (`id`)
4944 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
4946 -- 
4947 -- Dumping data for table `lists`
4948 -- 
4951 -- --------------------------------------------------------
4953 -- 
4954 -- Table structure for table `log`
4955 -- 
4957 DROP TABLE IF EXISTS `log`;
4958 CREATE TABLE `log` (
4959   `id` bigint(20) NOT NULL auto_increment,
4960   `date` datetime default NULL,
4961   `event` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
4962   `user` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
4963   `groupname` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
4964   `comments` longtext character set utf8 collate utf8_unicode_ci,
4965   `user_notes` longtext character set utf8 collate utf8_unicode_ci,
4966   PRIMARY KEY  (`id`)
4967 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
4969 -- 
4970 -- Dumping data for table `log`
4971 -- 
4974 -- --------------------------------------------------------
4976 -- 
4977 -- Table structure for table `notes`
4978 -- 
4980 DROP TABLE IF EXISTS `notes`;
4981 CREATE TABLE `notes` (
4982   `id` int(11) NOT NULL default '0',
4983   `foreign_id` int(11) NOT NULL default '0',
4984   `note` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
4985   `owner` int(11) default NULL,
4986   `date` datetime default NULL,
4987   `revision` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
4988   PRIMARY KEY  (`id`),
4989   KEY `foreign_id` (`owner`),
4990   KEY `foreign_id_2` (`foreign_id`),
4991   KEY `date` (`date`)
4992 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
4994 -- 
4995 -- Dumping data for table `notes`
4996 -- 
4999 -- --------------------------------------------------------
5001 -- 
5002 -- Table structure for table `onotes`
5003 -- 
5005 DROP TABLE IF EXISTS `onotes`;
5006 CREATE TABLE `onotes` (
5007   `id` bigint(20) NOT NULL auto_increment,
5008   `date` datetime default NULL,
5009   `body` longtext character set utf8 collate utf8_unicode_ci,
5010   `user` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5011   `groupname` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5012   `activity` tinyint(4) default NULL,
5013   PRIMARY KEY  (`id`)
5014 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
5016 -- 
5017 -- Dumping data for table `onotes`
5018 -- 
5021 -- --------------------------------------------------------
5023 -- 
5024 -- Table structure for table `openemr_module_vars`
5025 -- 
5027 DROP TABLE IF EXISTS `openemr_module_vars`;
5028 CREATE TABLE `openemr_module_vars` (
5029   `pn_id` int(11) unsigned NOT NULL auto_increment,
5030   `pn_modname` varchar(64) character set utf8 collate utf8_unicode_ci default NULL,
5031   `pn_name` varchar(64) character set utf8 collate utf8_unicode_ci default NULL,
5032   `pn_value` longtext character set utf8 collate utf8_unicode_ci,
5033   PRIMARY KEY  (`pn_id`),
5034   KEY `pn_modname` (`pn_modname`),
5035   KEY `pn_name` (`pn_name`)
5036 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=235 ;
5038 -- 
5039 -- Dumping data for table `openemr_module_vars`
5040 -- 
5042 INSERT INTO `openemr_module_vars` VALUES (234, 'PostCalendar', 'pcNotifyEmail', '');
5043 INSERT INTO `openemr_module_vars` VALUES (233, 'PostCalendar', 'pcNotifyAdmin', '0');
5044 INSERT INTO `openemr_module_vars` VALUES (232, 'PostCalendar', 'pcCacheLifetime', '3600');
5045 INSERT INTO `openemr_module_vars` VALUES (231, 'PostCalendar', 'pcUseCache', '0');
5046 INSERT INTO `openemr_module_vars` VALUES (230, 'PostCalendar', 'pcDefaultView', 'day');
5047 INSERT INTO `openemr_module_vars` VALUES (229, 'PostCalendar', 'pcTimeIncrement', '5');
5048 INSERT INTO `openemr_module_vars` VALUES (228, 'PostCalendar', 'pcAllowUserCalendar', '1');
5049 INSERT INTO `openemr_module_vars` VALUES (227, 'PostCalendar', 'pcAllowSiteWide', '1');
5050 INSERT INTO `openemr_module_vars` VALUES (226, 'PostCalendar', 'pcTemplate', 'default');
5051 INSERT INTO `openemr_module_vars` VALUES (225, 'PostCalendar', 'pcEventDateFormat', '%Y-%m-%d');
5052 INSERT INTO `openemr_module_vars` VALUES (224, 'PostCalendar', 'pcDisplayTopics', '0');
5053 INSERT INTO `openemr_module_vars` VALUES (223, 'PostCalendar', 'pcListHowManyEvents', '15');
5054 INSERT INTO `openemr_module_vars` VALUES (222, 'PostCalendar', 'pcAllowDirectSubmit', '1');
5055 INSERT INTO `openemr_module_vars` VALUES (221, 'PostCalendar', 'pcUsePopups', '0');
5056 INSERT INTO `openemr_module_vars` VALUES (220, 'PostCalendar', 'pcDayHighlightColor', '#EEEEEE');
5057 INSERT INTO `openemr_module_vars` VALUES (219, 'PostCalendar', 'pcFirstDayOfWeek', '1');
5058 INSERT INTO `openemr_module_vars` VALUES (218, 'PostCalendar', 'pcUseInternationalDates', '0');
5059 INSERT INTO `openemr_module_vars` VALUES (217, 'PostCalendar', 'pcEventsOpenInNewWindow', '0');
5060 INSERT INTO `openemr_module_vars` VALUES (216, 'PostCalendar', 'pcTime24Hours', '0');
5062 -- --------------------------------------------------------
5064 -- 
5065 -- Table structure for table `openemr_modules`
5066 -- 
5068 DROP TABLE IF EXISTS `openemr_modules`;
5069 CREATE TABLE `openemr_modules` (
5070   `pn_id` int(11) unsigned NOT NULL auto_increment,
5071   `pn_name` varchar(64) character set utf8 collate utf8_unicode_ci default NULL,
5072   `pn_type` int(6) NOT NULL default '0',
5073   `pn_displayname` varchar(64) character set utf8 collate utf8_unicode_ci default NULL,
5074   `pn_description` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5075   `pn_regid` int(11) unsigned NOT NULL default '0',
5076   `pn_directory` varchar(64) character set utf8 collate utf8_unicode_ci default NULL,
5077   `pn_version` varchar(10) character set utf8 collate utf8_unicode_ci default NULL,
5078   `pn_admin_capable` tinyint(1) NOT NULL default '0',
5079   `pn_user_capable` tinyint(1) NOT NULL default '0',
5080   `pn_state` tinyint(1) NOT NULL default '0',
5081   PRIMARY KEY  (`pn_id`)
5082 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=47 ;
5084 -- 
5085 -- Dumping data for table `openemr_modules`
5086 -- 
5088 INSERT INTO `openemr_modules` VALUES (46, 'PostCalendar', 2, 'PostCalendar', 'PostNuke Calendar Module', 0, 'PostCalendar', '4.0.0', 1, 1, 3);
5090 -- --------------------------------------------------------
5092 -- 
5093 -- Table structure for table `openemr_postcalendar_categories`
5094 -- 
5096 DROP TABLE IF EXISTS `openemr_postcalendar_categories`;
5097 CREATE TABLE `openemr_postcalendar_categories` (
5098   `pc_catid` int(11) unsigned NOT NULL auto_increment,
5099   `pc_catname` varchar(100) character set utf8 collate utf8_unicode_ci default NULL,
5100   `pc_catcolor` varchar(50) character set utf8 collate utf8_unicode_ci default NULL,
5101   `pc_catdesc` text character set utf8 collate utf8_unicode_ci,
5102   `pc_recurrtype` int(1) NOT NULL default '0',
5103   `pc_enddate` date default NULL,
5104   `pc_recurrspec` text character set utf8 collate utf8_unicode_ci,
5105   `pc_recurrfreq` int(3) NOT NULL default '0',
5106   `pc_duration` bigint(20) NOT NULL default '0',
5107   `pc_end_date_flag` tinyint(1) NOT NULL default '0',
5108   `pc_end_date_type` int(2) default NULL,
5109   `pc_end_date_freq` int(11) NOT NULL default '0',
5110   `pc_end_all_day` tinyint(1) NOT NULL default '0',
5111   `pc_dailylimit` int(2) NOT NULL default '0',
5112   PRIMARY KEY  (`pc_catid`),
5113   KEY `basic_cat` (`pc_catname`,`pc_catcolor`)
5114 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=11 ;
5116 -- 
5117 -- Dumping data for table `openemr_postcalendar_categories`
5118 -- 
5120 INSERT INTO `openemr_postcalendar_categories` VALUES (5, 'Office Visit', '#FFFFCC', 'Normal Office Visit', 0, NULL, 'a:5:{s:17:"event_repeat_freq";s:1:"0";s:22:"event_repeat_freq_type";s:1:"0";s:19:"event_repeat_on_num";s:1:"1";s:19:"event_repeat_on_day";s:1:"0";s:20:"event_repeat_on_freq";s:1:"0";}', 0, 900, 0, 0, 0, 0, 0);
5121 INSERT INTO `openemr_postcalendar_categories` VALUES (4, 'Vacation', '#EFEFEF', 'Reserved for use to define Scheduled Vacation Time', 0, NULL, 'a:5:{s:17:"event_repeat_freq";s:1:"0";s:22:"event_repeat_freq_type";s:1:"0";s:19:"event_repeat_on_num";s:1:"1";s:19:"event_repeat_on_day";s:1:"0";s:20:"event_repeat_on_freq";s:1:"0";}', 0, 0, 0, 0, 0, 1, 0);
5122 INSERT INTO `openemr_postcalendar_categories` VALUES (1, 'No Show', '#DDDDDD', 'Reserved to define when an event did not occur as specified.', 0, NULL, 'a:5:{s:17:"event_repeat_freq";s:1:"0";s:22:"event_repeat_freq_type";s:1:"0";s:19:"event_repeat_on_num";s:1:"1";s:19:"event_repeat_on_day";s:1:"0";s:20:"event_repeat_on_freq";s:1:"0";}', 0, 0, 0, 0, 0, 0, 0);
5123 INSERT INTO `openemr_postcalendar_categories` VALUES (2, 'In Office', '#99CCFF', 'Reserved todefine when a provider may haveavailable appointments after.', 1, NULL, 'a:5:{s:17:"event_repeat_freq";s:1:"1";s:22:"event_repeat_freq_type";s:1:"4";s:19:"event_repeat_on_num";s:1:"1";s:19:"event_repeat_on_day";s:1:"0";s:20:"event_repeat_on_freq";s:1:"0";}', 0, 0, 1, 3, 2, 0, 0);
5124 INSERT INTO `openemr_postcalendar_categories` VALUES (3, 'Out Of Office', '#99FFFF', 'Reserved to define when a provider may not have available appointments after.', 1, NULL, 'a:5:{s:17:"event_repeat_freq";s:1:"1";s:22:"event_repeat_freq_type";s:1:"4";s:19:"event_repeat_on_num";s:1:"1";s:19:"event_repeat_on_day";s:1:"0";s:20:"event_repeat_on_freq";s:1:"0";}', 0, 0, 1, 3, 2, 0, 0);
5125 INSERT INTO `openemr_postcalendar_categories` VALUES (8, 'Lunch', '#FFFF33', 'Lunch', 1, NULL, 'a:5:{s:17:"event_repeat_freq";s:1:"1";s:22:"event_repeat_freq_type";s:1:"4";s:19:"event_repeat_on_num";s:1:"1";s:19:"event_repeat_on_day";s:1:"0";s:20:"event_repeat_on_freq";s:1:"0";}', 0, 3600, 0, 3, 2, 0, 0);
5126 INSERT INTO `openemr_postcalendar_categories` VALUES (9, 'Established Patient', '#CCFF33', '', 0, NULL, 'a:5:{s:17:"event_repeat_freq";s:1:"0";s:22:"event_repeat_freq_type";s:1:"0";s:19:"event_repeat_on_num";s:1:"1";s:19:"event_repeat_on_day";s:1:"0";s:20:"event_repeat_on_freq";s:1:"0";}', 0, 900, 0, 0, 0, 0, 0);
5127 INSERT INTO `openemr_postcalendar_categories` VALUES (10,'New Patient', '#CCFFFF', '', 0, NULL, 'a:5:{s:17:"event_repeat_freq";s:1:"0";s:22:"event_repeat_freq_type";s:1:"0";s:19:"event_repeat_on_num";s:1:"1";s:19:"event_repeat_on_day";s:1:"0";s:20:"event_repeat_on_freq";s:1:"0";}', 0, 1800, 0, 0, 0, 0, 0);
5128 INSERT INTO `openemr_postcalendar_categories` VALUES (11,'Reserved','#FF7777','Reserved',1,NULL,'a:5:{s:17:\"event_repeat_freq\";s:1:\"1\";s:22:\"event_repeat_freq_type\";s:1:\"4\";s:19:\"event_repeat_on_num\";s:1:\"1\";s:19:\"event_repeat_on_day\";s:1:\"0\";s:20:\"event_repeat_on_freq\";s:1:\"0\";}',0,900,0,3,2,0,0);
5130 -- --------------------------------------------------------
5132 -- 
5133 -- Table structure for table `openemr_postcalendar_events`
5134 -- 
5136 DROP TABLE IF EXISTS `openemr_postcalendar_events`;
5137 CREATE TABLE `openemr_postcalendar_events` (
5138   `pc_eid` int(11) unsigned NOT NULL auto_increment,
5139   `pc_catid` int(11) NOT NULL default '0',
5140   `pc_multiple` int(10) unsigned NOT NULL,
5141   `pc_aid` varchar(30) character set utf8 collate utf8_unicode_ci default NULL,
5142   `pc_pid` varchar(11) character set utf8 collate utf8_unicode_ci default NULL,
5143   `pc_title` varchar(150) character set utf8 collate utf8_unicode_ci default NULL,
5144   `pc_time` datetime default NULL,
5145   `pc_hometext` text character set utf8 collate utf8_unicode_ci,
5146   `pc_comments` int(11) default '0',
5147   `pc_counter` mediumint(8) unsigned default '0',
5148   `pc_topic` int(3) NOT NULL default '1',
5149   `pc_informant` varchar(20) character set utf8 collate utf8_unicode_ci default NULL,
5150   `pc_eventDate` date NOT NULL default '0000-00-00',
5151   `pc_endDate` date NOT NULL default '0000-00-00',
5152   `pc_duration` bigint(20) NOT NULL default '0',
5153   `pc_recurrtype` int(1) NOT NULL default '0',
5154   `pc_recurrspec` text character set utf8 collate utf8_unicode_ci,
5155   `pc_recurrfreq` int(3) NOT NULL default '0',
5156   `pc_startTime` time default NULL,
5157   `pc_endTime` time default NULL,
5158   `pc_alldayevent` int(1) NOT NULL default '0',
5159   `pc_location` text character set utf8 collate utf8_unicode_ci,
5160   `pc_conttel` varchar(50) character set utf8 collate utf8_unicode_ci default NULL,
5161   `pc_contname` varchar(50) character set utf8 collate utf8_unicode_ci default NULL,
5162   `pc_contemail` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5163   `pc_website` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5164   `pc_fee` varchar(50) character set utf8 collate utf8_unicode_ci default NULL,
5165   `pc_eventstatus` int(11) NOT NULL default '0',
5166   `pc_sharing` int(11) NOT NULL default '0',
5167   `pc_language` varchar(30) character set utf8 collate utf8_unicode_ci default NULL,
5168   `pc_apptstatus` char(1) character set latin1 NOT NULL default '-',
5169   `pc_prefcatid` int(11) NOT NULL default '0',
5170   `pc_facility` smallint(6) NOT NULL default '0' COMMENT 'facility id for this event',
5171   `pc_sendalertsms` VARCHAR(3) NOT NULL DEFAULT 'NO',
5172   `pc_sendalertemail` VARCHAR( 3 ) NOT NULL DEFAULT 'NO',
5173   PRIMARY KEY  (`pc_eid`),
5174   KEY `basic_event` (`pc_catid`,`pc_aid`,`pc_eventDate`,`pc_endDate`,`pc_eventstatus`,`pc_sharing`,`pc_topic`)
5175 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=7 ;
5177 -- 
5178 -- Dumping data for table `openemr_postcalendar_events`
5179 -- 
5181 INSERT INTO `openemr_postcalendar_events` VALUES (3, 2, 0, '1', '', 'In Office', '2005-03-03 12:22:31', ':text:', 0, 0, 0, '1', '2005-03-03', '2007-03-03', 0, 1, 'a:5:{s:17:"event_repeat_freq";s:1:"1";s:22:"event_repeat_freq_type";s:1:"4";s:19:"event_repeat_on_num";s:1:"1";s:19:"event_repeat_on_day";s:1:"0";s:20:"event_repeat_on_freq";s:1:"0";}', 0, '09:00:00', '09:00:00', 0, 'a:6:{s:14:"event_location";N;s:13:"event_street1";N;s:13:"event_street2";N;s:10:"event_city";N;s:11:"event_state";N;s:12:"event_postal";N;}', '', '', '', '', '', 1, 1, '', '-', 0, 0);
5182 INSERT INTO `openemr_postcalendar_events` VALUES (5, 3, 0, '1', '', 'Out Of Office', '2005-03-03 12:22:52', ':text:', 0, 0, 0, '1', '2005-03-03', '2007-03-03', 0, 1, 'a:5:{s:17:"event_repeat_freq";s:1:"1";s:22:"event_repeat_freq_type";s:1:"4";s:19:"event_repeat_on_num";s:1:"1";s:19:"event_repeat_on_day";s:1:"0";s:20:"event_repeat_on_freq";s:1:"0";}', 0, '17:00:00', '17:00:00', 0, 'a:6:{s:14:"event_location";N;s:13:"event_street1";N;s:13:"event_street2";N;s:10:"event_city";N;s:11:"event_state";N;s:12:"event_postal";N;}', '', '', '', '', '', 1, 1, '', '-', 0, 0);
5183 INSERT INTO `openemr_postcalendar_events` VALUES (6, 8, 0, '1', '', 'Lunch', '2005-03-03 12:23:31', ':text:', 0, 0, 0, '1', '2005-03-03', '2007-03-03', 3600, 1, 'a:5:{s:17:"event_repeat_freq";s:1:"1";s:22:"event_repeat_freq_type";s:1:"4";s:19:"event_repeat_on_num";s:1:"1";s:19:"event_repeat_on_day";s:1:"0";s:20:"event_repeat_on_freq";s:1:"0";}', 0, '12:00:00', '13:00:00', 0, 'a:6:{s:14:"event_location";N;s:13:"event_street1";N;s:13:"event_street2";N;s:10:"event_city";N;s:11:"event_state";N;s:12:"event_postal";N;}', '', '', '', '', '', 1, 1, '', '-', 0, 0);
5185 -- --------------------------------------------------------
5187 -- 
5188 -- Table structure for table `openemr_postcalendar_limits`
5189 -- 
5191 DROP TABLE IF EXISTS `openemr_postcalendar_limits`;
5192 CREATE TABLE `openemr_postcalendar_limits` (
5193   `pc_limitid` int(11) NOT NULL auto_increment,
5194   `pc_catid` int(11) NOT NULL default '0',
5195   `pc_starttime` time NOT NULL default '00:00:00',
5196   `pc_endtime` time NOT NULL default '00:00:00',
5197   `pc_limit` int(11) NOT NULL default '1',
5198   PRIMARY KEY  (`pc_limitid`)
5199 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
5201 -- 
5202 -- Dumping data for table `openemr_postcalendar_limits`
5203 -- 
5206 -- --------------------------------------------------------
5208 -- 
5209 -- Table structure for table `openemr_postcalendar_topics`
5210 -- 
5212 DROP TABLE IF EXISTS `openemr_postcalendar_topics`;
5213 CREATE TABLE `openemr_postcalendar_topics` (
5214   `pc_catid` int(11) unsigned NOT NULL auto_increment,
5215   `pc_catname` varchar(100) character set utf8 collate utf8_unicode_ci default NULL,
5216   `pc_catcolor` varchar(50) character set utf8 collate utf8_unicode_ci default NULL,
5217   `pc_catdesc` text character set utf8 collate utf8_unicode_ci,
5218   PRIMARY KEY  (`pc_catid`),
5219   KEY `basic_cat` (`pc_catname`,`pc_catcolor`)
5220 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
5222 -- 
5223 -- Dumping data for table `openemr_postcalendar_topics`
5224 -- 
5227 -- --------------------------------------------------------
5229 -- 
5230 -- Table structure for table `openemr_session_info`
5231 -- 
5233 DROP TABLE IF EXISTS `openemr_session_info`;
5234 CREATE TABLE `openemr_session_info` (
5235   `pn_sessid` varchar(32) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5236   `pn_ipaddr` varchar(20) character set utf8 collate utf8_unicode_ci default NULL,
5237   `pn_firstused` int(11) NOT NULL default '0',
5238   `pn_lastused` int(11) NOT NULL default '0',
5239   `pn_uid` int(11) NOT NULL default '0',
5240   `pn_vars` blob,
5241   PRIMARY KEY  (`pn_sessid`)
5242 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
5244 -- 
5245 -- Dumping data for table `openemr_session_info`
5246 -- 
5248 INSERT INTO `openemr_session_info` VALUES ('978d31441dccd350d406bfab98978f20', '127.0.0.1', 1109233952, 1109234177, 0, NULL);
5250 -- --------------------------------------------------------
5252 -- 
5253 -- Table structure for table `patient_data`
5254 -- 
5256 DROP TABLE IF EXISTS `patient_data`;
5257 CREATE TABLE `patient_data` (
5258   `id` bigint(20) NOT NULL auto_increment,
5259   `title` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5260   `language` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5261   `financial` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5262   `fname` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5263   `lname` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5264   `mname` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5265   `DOB` date default NULL,
5266   `street` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5267   `postal_code` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5268   `city` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5269   `state` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5270   `country_code` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5271   `drivers_license` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5272   `ss` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5273   `occupation` longtext character set utf8 collate utf8_unicode_ci,
5274   `phone_home` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5275   `phone_biz` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5276   `phone_contact` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5277   `phone_cell` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5278   `pharmacy_id` int(11) NOT NULL default '0',
5279   `status` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5280   `contact_relationship` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5281   `date` datetime default NULL,
5282   `sex` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5283   `referrer` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5284   `referrerID` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5285   `providerID` int(11) default NULL,
5286   `email` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5287   `ethnoracial` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5288   `interpretter` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5289   `migrantseasonal` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5290   `family_size` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5291   `monthly_income` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5292   `homeless` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5293   `financial_review` datetime default NULL,
5294   `pubpid` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5295   `pid` bigint(20) NOT NULL default '0',
5296   `genericname1` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5297   `genericval1` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5298   `genericname2` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5299   `genericval2` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5300   `hipaa_mail` varchar(3) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5301   `hipaa_voice` varchar(3) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5302   `hipaa_notice` varchar(3) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5303   `hipaa_message` varchar(20) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5304   `hipaa_allowsms` VARCHAR( 3 ) NOT NULL DEFAULT 'NO',
5305   `hipaa_allowemail` VARCHAR( 3 ) NOT NULL DEFAULT 'NO',
5306   `squad` varchar(32) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5307   `fitness` int(11) NOT NULL default '0',
5308   `referral_source` varchar(30) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5309   `usertext1` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5310   `usertext2` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5311   `usertext3` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5312   `usertext4` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5313   `usertext5` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5314   `usertext6` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5315   `usertext7` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5316   `usertext8` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5317   `userlist1` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5318   `userlist2` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5319   `userlist3` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5320   `userlist4` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5321   `userlist5` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5322   `userlist6` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5323   `userlist7` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5324   `pricelevel` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL default 'standard',
5325   `regdate`     date DEFAULT NULL COMMENT 'Registration Date',
5326   `contrastart` date DEFAULT NULL COMMENT 'Date contraceptives initially used',
5327   UNIQUE KEY `pid` (`pid`),
5328   KEY `id` (`id`),
5329   KEY `pid_2` (`pid`)
5330 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
5332 -- 
5333 -- Dumping data for table `patient_data`
5334 -- 
5337 -- --------------------------------------------------------
5339 -- 
5340 -- Table structure for table `payments`
5341 -- 
5343 DROP TABLE IF EXISTS `payments`;
5344 CREATE TABLE `payments` (
5345   `id` bigint(20) NOT NULL auto_increment,
5346   `pid` bigint(20) NOT NULL default '0',
5347   `dtime` datetime NOT NULL,
5348   `encounter` bigint(20) NOT NULL default '0',
5349   `user` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5350   `method` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5351   `source` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5352   `amount1` decimal(12,2) NOT NULL default '0.00',
5353   `amount2` decimal(12,2) NOT NULL default '0.00',
5354   `posted1` decimal(12,2) NOT NULL default '0.00',
5355   `posted2` decimal(12,2) NOT NULL default '0.00',
5356   PRIMARY KEY  (`id`),
5357   KEY `pid` (`pid`)
5358 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
5360 -- 
5361 -- Dumping data for table `payments`
5362 -- 
5365 -- --------------------------------------------------------
5367 -- 
5368 -- Table structure for table `pharmacies`
5369 -- 
5371 DROP TABLE IF EXISTS `pharmacies`;
5372 CREATE TABLE `pharmacies` (
5373   `id` int(11) NOT NULL default '0',
5374   `name` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5375   `transmit_method` int(11) NOT NULL default '1',
5376   `email` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5377   PRIMARY KEY  (`id`)
5378 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
5380 -- 
5381 -- Dumping data for table `pharmacies`
5382 -- 
5385 -- --------------------------------------------------------
5387 -- 
5388 -- Table structure for table `phone_numbers`
5389 -- 
5391 DROP TABLE IF EXISTS `phone_numbers`;
5392 CREATE TABLE `phone_numbers` (
5393   `id` int(11) NOT NULL default '0',
5394   `country_code` varchar(5) character set utf8 collate utf8_unicode_ci default NULL,
5395   `area_code` char(3) character set latin1 default NULL,
5396   `prefix` char(3) character set latin1 default NULL,
5397   `number` varchar(4) character set utf8 collate utf8_unicode_ci default NULL,
5398   `type` int(11) default NULL,
5399   `foreign_id` int(11) default NULL,
5400   PRIMARY KEY  (`id`),
5401   KEY `foreign_id` (`foreign_id`)
5402 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
5404 -- 
5405 -- Dumping data for table `phone_numbers`
5406 -- 
5409 -- --------------------------------------------------------
5411 -- 
5412 -- Table structure for table `pma_bookmark`
5413 -- 
5415 DROP TABLE IF EXISTS `pma_bookmark`;
5416 CREATE TABLE `pma_bookmark` (
5417   `id` int(11) NOT NULL auto_increment,
5418   `dbase` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5419   `user` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5420   `label` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5421   `query` text character set utf8 collate utf8_unicode_ci,
5422   PRIMARY KEY  (`id`)
5423 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Bookmarks' AUTO_INCREMENT=10 ;
5425 -- 
5426 -- Dumping data for table `pma_bookmark`
5427 -- 
5429 INSERT INTO `pma_bookmark` VALUES (2, 'openemr', 'openemr', 'Aggregate Race Statistics', 'SELECT ethnoracial as "Race/Ethnicity", count(*) as Count FROM  `patient_data` WHERE 1 group by ethnoracial');
5430 INSERT INTO `pma_bookmark` VALUES (9, 'openemr', 'openemr', 'Search by Code', 'SELECT  b.code, concat(pd.fname," ", pd.lname) as "Patient Name", concat(u.fname," ", u.lname) as "Provider Name", en.reason as "Encounter Desc.", en.date\r\nFROM billing as b\r\nLEFT JOIN users AS u ON b.user = u.id\r\nLEFT JOIN patient_data as pd on b.pid = pd.pid\r\nLEFT JOIN form_encounter as en on b.encounter = en.encounter and b.pid = en.pid\r\nWHERE 1 /* and b.code like ''%[VARIABLE]%'' */ ORDER BY b.code');
5431 INSERT INTO `pma_bookmark` VALUES (8, 'openemr', 'openemr', 'Count No Shows By Provider since Interval ago', 'SELECT concat( u.fname,  " ", u.lname )  AS  "Provider Name", u.id AS  "Provider ID", count(  DISTINCT ev.pc_eid )  AS  "Number of No Shows"/* , concat(DATE_FORMAT(NOW(),''%Y-%m-%d''), '' and '',DATE_FORMAT(DATE_ADD(now(), INTERVAL [VARIABLE]),''%Y-%m-%d'') ) as "Between Dates" */ FROM  `openemr_postcalendar_events`  AS ev LEFT  JOIN users AS u ON ev.pc_aid = u.id WHERE ev.pc_catid =1/* and ( ev.pc_eventDate >= DATE_SUB(now(), INTERVAL [VARIABLE]) )  */\r\nGROUP  BY u.id;');
5432 INSERT INTO `pma_bookmark` VALUES (6, 'openemr', 'openemr', 'Appointments By Race/Ethnicity from today plus interval', 'SELECT  count(pd.ethnoracial) as "Number of Appointments", pd.ethnoracial AS  "Race/Ethnicity" /* , concat(DATE_FORMAT(NOW(),''%Y-%m-%d''), '' and '',DATE_FORMAT(DATE_ADD(now(), INTERVAL [VARIABLE]),''%Y-%m-%d'') ) as "Between Dates" */ FROM openemr_postcalendar_events AS ev LEFT  JOIN   `patient_data`  AS pd ON  pd.pid = ev.pc_pid where ev.pc_eventstatus=1 and ev.pc_catid = 5 and ev.pc_eventDate >= now()  /* and ( ev.pc_eventDate <= DATE_ADD(now(), INTERVAL [VARIABLE]) )  */ group by pd.ethnoracial');
5434 -- --------------------------------------------------------
5436 -- 
5437 -- Table structure for table `pma_column_info`
5438 -- 
5440 DROP TABLE IF EXISTS `pma_column_info`;
5441 CREATE TABLE `pma_column_info` (
5442   `id` int(5) unsigned NOT NULL auto_increment,
5443   `db_name` varchar(64) character set utf8 collate utf8_unicode_ci default NULL,
5444   `table_name` varchar(64) character set utf8 collate utf8_unicode_ci default NULL,
5445   `column_name` varchar(64) character set utf8 collate utf8_unicode_ci default NULL,
5446   `comment` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5447   `mimetype` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5448   `transformation` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5449   `transformation_options` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5450   PRIMARY KEY  (`id`),
5451   UNIQUE KEY `db_name` (`db_name`,`table_name`,`column_name`)
5452 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Column Information for phpMyAdmin' AUTO_INCREMENT=1 ;
5454 -- 
5455 -- Dumping data for table `pma_column_info`
5456 -- 
5459 -- --------------------------------------------------------
5461 -- 
5462 -- Table structure for table `pma_history`
5463 -- 
5465 DROP TABLE IF EXISTS `pma_history`;
5466 CREATE TABLE `pma_history` (
5467   `id` bigint(20) unsigned NOT NULL auto_increment,
5468   `username` varchar(64) character set utf8 collate utf8_unicode_ci default NULL,
5469   `db` varchar(64) character set utf8 collate utf8_unicode_ci default NULL,
5470   `table` varchar(64) character set utf8 collate utf8_unicode_ci default NULL,
5471   `timevalue` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
5472   `sqlquery` text character set utf8 collate utf8_unicode_ci,
5473   PRIMARY KEY  (`id`),
5474   KEY `username` (`username`,`db`,`table`,`timevalue`)
5475 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='SQL history' AUTO_INCREMENT=1 ;
5477 -- 
5478 -- Dumping data for table `pma_history`
5479 -- 
5482 -- --------------------------------------------------------
5484 -- 
5485 -- Table structure for table `pma_pdf_pages`
5486 -- 
5488 DROP TABLE IF EXISTS `pma_pdf_pages`;
5489 CREATE TABLE `pma_pdf_pages` (
5490   `db_name` varchar(64) character set utf8 collate utf8_unicode_ci default NULL,
5491   `page_nr` int(10) unsigned NOT NULL auto_increment,
5492   `page_descr` varchar(50) character set utf8 collate utf8_unicode_ci default NULL,
5493   PRIMARY KEY  (`page_nr`),
5494   KEY `db_name` (`db_name`)
5495 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='PDF Relationpages for PMA' AUTO_INCREMENT=1 ;
5497 -- 
5498 -- Dumping data for table `pma_pdf_pages`
5499 -- 
5502 -- --------------------------------------------------------
5504 -- 
5505 -- Table structure for table `pma_relation`
5506 -- 
5508 DROP TABLE IF EXISTS `pma_relation`;
5509 CREATE TABLE `pma_relation` (
5510   `master_db` varchar(64) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5511   `master_table` varchar(64) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5512   `master_field` varchar(64) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5513   `foreign_db` varchar(64) character set utf8 collate utf8_unicode_ci default NULL,
5514   `foreign_table` varchar(64) character set utf8 collate utf8_unicode_ci default NULL,
5515   `foreign_field` varchar(64) character set utf8 collate utf8_unicode_ci default NULL,
5516   PRIMARY KEY  (`master_db`,`master_table`,`master_field`),
5517   KEY `foreign_field` (`foreign_db`,`foreign_table`)
5518 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Relation table';
5520 -- 
5521 -- Dumping data for table `pma_relation`
5522 -- 
5525 -- --------------------------------------------------------
5527 -- 
5528 -- Table structure for table `pma_table_coords`
5529 -- 
5531 DROP TABLE IF EXISTS `pma_table_coords`;
5532 CREATE TABLE `pma_table_coords` (
5533   `db_name` varchar(64) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5534   `table_name` varchar(64) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5535   `pdf_page_number` int(11) NOT NULL default '0',
5536   `x` float unsigned NOT NULL default '0',
5537   `y` float unsigned NOT NULL default '0',
5538   PRIMARY KEY  (`db_name`,`table_name`,`pdf_page_number`)
5539 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Table coordinates for phpMyAdmin PDF output';
5541 -- 
5542 -- Dumping data for table `pma_table_coords`
5543 -- 
5546 -- --------------------------------------------------------
5548 -- 
5549 -- Table structure for table `pma_table_info`
5550 -- 
5552 DROP TABLE IF EXISTS `pma_table_info`;
5553 CREATE TABLE `pma_table_info` (
5554   `db_name` varchar(64) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5555   `table_name` varchar(64) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5556   `display_field` varchar(64) character set utf8 collate utf8_unicode_ci default NULL,
5557   PRIMARY KEY  (`db_name`,`table_name`)
5558 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Table information for phpMyAdmin';
5560 -- 
5561 -- Dumping data for table `pma_table_info`
5562 -- 
5565 -- --------------------------------------------------------
5567 -- 
5568 -- Table structure for table `pnotes`
5569 -- 
5571 DROP TABLE IF EXISTS `pnotes`;
5572 CREATE TABLE `pnotes` (
5573   `id` bigint(20) NOT NULL auto_increment,
5574   `date` datetime default NULL,
5575   `body` longtext character set utf8 collate utf8_unicode_ci,
5576   `pid` bigint(20) default NULL,
5577   `user` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5578   `groupname` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5579   `activity` tinyint(4) default NULL,
5580   `authorized` tinyint(4) default NULL,
5581   `title` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5582   `assigned_to` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5583   PRIMARY KEY  (`id`)
5584 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
5586 -- 
5587 -- Dumping data for table `pnotes`
5588 -- 
5591 -- --------------------------------------------------------
5593 -- 
5594 -- Table structure for table `prescriptions`
5595 -- 
5597 DROP TABLE IF EXISTS `prescriptions`;
5598 CREATE TABLE `prescriptions` (
5599   `id` int(11) NOT NULL auto_increment,
5600   `patient_id` int(11) default NULL,
5601   `filled_by_id` int(11) default NULL,
5602   `pharmacy_id` int(11) default NULL,
5603   `date_added` date default NULL,
5604   `date_modified` date default NULL,
5605   `provider_id` int(11) default NULL,
5606   `start_date` date default NULL,
5607   `drug` varchar(150) character set utf8 collate utf8_unicode_ci default NULL,
5608   `drug_id` int(11) NOT NULL default '0',
5609   `form` int(3) default NULL,
5610   `dosage` varchar(100) character set utf8 collate utf8_unicode_ci default NULL,
5611   `quantity` varchar(31) character set utf8 collate utf8_unicode_ci default NULL,
5612   `size` float unsigned default NULL,
5613   `unit` int(11) default NULL,
5614   `route` int(11) default NULL,
5615   `interval` int(11) default NULL,
5616   `substitute` int(11) default NULL,
5617   `refills` int(11) default NULL,
5618   `per_refill` int(11) default NULL,
5619   `filled_date` date default NULL,
5620   `medication` int(11) default NULL,
5621   `note` text character set utf8 collate utf8_unicode_ci,
5622   `active` int(11) NOT NULL default '1',
5623   PRIMARY KEY  (`id`)
5624 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
5626 -- 
5627 -- Dumping data for table `prescriptions`
5628 -- 
5631 -- --------------------------------------------------------
5633 -- 
5634 -- Table structure for table `prices`
5635 -- 
5637 DROP TABLE IF EXISTS `prices`;
5638 CREATE TABLE `prices` (
5639   `pr_id` varchar(11) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5640   `pr_selector` varchar(15) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5641   `pr_level` varchar(31) character set utf8 collate utf8_unicode_ci NOT NULL default '',
5642   `pr_price` decimal(12,2) NOT NULL default '0.00' COMMENT 'price in local currency',
5643   PRIMARY KEY  (`pr_id`,`pr_selector`,`pr_level`)
5644 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
5646 -- 
5647 -- Dumping data for table `prices`
5648 -- 
5651 -- --------------------------------------------------------
5653 -- 
5654 -- Table structure for table `registry`
5655 -- 
5657 DROP TABLE IF EXISTS `registry`;
5658 CREATE TABLE `registry` (
5659   `name` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5660   `state` tinyint(4) default NULL,
5661   `directory` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5662   `id` bigint(20) NOT NULL auto_increment,
5663   `sql_run` tinyint(4) default NULL,
5664   `unpackaged` tinyint(4) default NULL,
5665   `date` datetime default NULL,
5666   `priority` int(11) default '0',
5667   `category` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5668   `nickname` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5669   PRIMARY KEY  (`id`)
5670 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=16 ;
5672 -- 
5673 -- Dumping data for table `registry`
5674 -- 
5676 INSERT INTO `registry` VALUES ('New Encounter Form', 1, 'newpatient', 1, 1, 1, '2003-09-14 15:16:45', 0, 'category', '');
5677 INSERT INTO `registry` VALUES ('Review of Systems Checks', 1, 'reviewofs', 9, 1, 1, '2003-09-14 15:16:45', 0, 'category', '');
5678 INSERT INTO `registry` VALUES ('Speech Dictation', 1, 'dictation', 10, 1, 1, '2003-09-14 15:16:45', 0, 'category', '');
5679 INSERT INTO `registry` VALUES ('SOAP', 1, 'soap', 11, 1, 1, '2005-03-03 00:16:35', 0, 'category', '');
5680 INSERT INTO `registry` VALUES ('Vitals', 1, 'vitals', 12, 1, 1, '2005-03-03 00:16:34', 0, 'category', '');
5681 INSERT INTO `registry` VALUES ('Review Of Systems', 1, 'ros', 13, 1, 1, '2005-03-03 00:16:30', 0, 'category', '');
5682 INSERT INTO `registry` VALUES ('Fee Sheet', 1, 'fee_sheet', 14, 1, 1, '2007-07-28 00:00:00', 0, 'category', '');
5683 INSERT INTO `registry` VALUES ('Misc Billing Options HCFA', 1, 'misc_billing_options', 15, 1, 1, '2007-07-28 00:00:00', 0, 'category', '');
5685 -- --------------------------------------------------------
5687 -- 
5688 -- Table structure for table `sequences`
5689 -- 
5691 DROP TABLE IF EXISTS `sequences`;
5692 CREATE TABLE `sequences` (
5693   `id` int(11) unsigned NOT NULL default '0'
5694 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
5696 -- 
5697 -- Dumping data for table `sequences`
5698 -- 
5700 INSERT INTO `sequences` VALUES (1);
5702 -- --------------------------------------------------------
5704 -- 
5705 -- Table structure for table `transactions`
5706 -- 
5708 DROP TABLE IF EXISTS `transactions`;
5709 CREATE TABLE `transactions` (
5710   `id`                      bigint(20)   NOT NULL auto_increment,
5711   `date`                    datetime     default NULL,
5712   `title`                   varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5713   `body`                    longtext     character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5714   `pid`                     bigint(20)   default NULL,
5715   `user`                    varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5716   `groupname`               varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5717   `authorized`              tinyint(4)   default NULL,
5718   `refer_date`              date         DEFAULT NULL,
5719   `refer_from`              int(11)      NOT NULL DEFAULT 0,
5720   `refer_to`                int(11)      NOT NULL DEFAULT 0,
5721   `refer_diag`              varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5722   `refer_risk_level`        varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5723   `refer_vitals`            tinyint(1)   NOT NULL DEFAULT 0,
5724   `refer_external`          tinyint(1)   NOT NULL DEFAULT 0,
5725   `refer_related_code`      varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5726   `reply_date`              date         DEFAULT NULL,
5727   `reply_from`              varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5728   `reply_init_diag`         varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5729   `reply_final_diag`        varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5730   `reply_documents`         varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5731   `reply_findings`          text         character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5732   `reply_services`          text         character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5733   `reply_recommend`         text         character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5734   `reply_rx_refer`          text         character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '',
5735   PRIMARY KEY  (`id`)
5736 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
5738 -- 
5739 -- Dumping data for table `transactions`
5740 -- 
5743 -- --------------------------------------------------------
5745 -- 
5746 -- Table structure for table `users`
5747 -- 
5749 DROP TABLE IF EXISTS `users`;
5750 CREATE TABLE `users` (
5751   `id` bigint(20) NOT NULL auto_increment,
5752   `username` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5753   `password` longtext character set utf8 collate utf8_unicode_ci,
5754   `authorized` tinyint(4) default NULL,
5755   `info` longtext character set utf8 collate utf8_unicode_ci,
5756   `source` tinyint(4) default NULL,
5757   `fname` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5758   `mname` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5759   `lname` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5760   `federaltaxid` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5761   `federaldrugid` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5762   `upin` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5763   `facility` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5764   `facility_id` int(11) NOT NULL default '0',
5765   `see_auth` int(11) NOT NULL default '1',
5766   `active` tinyint(1) NOT NULL default '1',
5767   `npi` varchar(15) character set utf8 collate utf8_unicode_ci default NULL,
5768   `title` varchar(30) character set utf8 collate utf8_unicode_ci default NULL,
5769   `specialty` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5770   `billname` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5771   `email` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5772   `url` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5773   `assistant` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5774   `organization` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5775   `valedictory` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5776   `street` varchar(60) character set utf8 collate utf8_unicode_ci default NULL,
5777   `streetb` varchar(60) character set utf8 collate utf8_unicode_ci default NULL,
5778   `city` varchar(30) character set utf8 collate utf8_unicode_ci default NULL,
5779   `state` varchar(30) character set utf8 collate utf8_unicode_ci default NULL,
5780   `zip` varchar(20) character set utf8 collate utf8_unicode_ci default NULL,
5781   `street2` varchar(60) character set utf8 collate utf8_unicode_ci default NULL,
5782   `streetb2` varchar(60) character set utf8 collate utf8_unicode_ci default NULL,
5783   `city2` varchar(30) character set utf8 collate utf8_unicode_ci default NULL,
5784   `state2` varchar(30) character set utf8 collate utf8_unicode_ci default NULL,
5785   `zip2` varchar(20) character set utf8 collate utf8_unicode_ci default NULL,
5786   `phone` varchar(30) character set utf8 collate utf8_unicode_ci default NULL,
5787   `fax` varchar(30) character set utf8 collate utf8_unicode_ci default NULL,
5788   `phonew1` varchar(30) character set utf8 collate utf8_unicode_ci default NULL,
5789   `phonew2` varchar(30) character set utf8 collate utf8_unicode_ci default NULL,
5790   `phonecell` varchar(30) character set utf8 collate utf8_unicode_ci default NULL,
5791   `notes` text character set utf8 collate utf8_unicode_ci,
5792   `cal_ui` tinyint(4) NOT NULL default '1',
5793   `taxonomy` varchar(30) character set utf8 collate utf8_unicode_ci NOT NULL DEFAULT '207Q00000X',
5794   PRIMARY KEY  (`id`)
5795 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
5797 -- 
5798 -- Dumping data for table `users`
5799 -- 
5802 -- --------------------------------------------------------
5804 -- 
5805 -- Table structure for table `x12_partners`
5806 -- 
5808 DROP TABLE IF EXISTS `x12_partners`;
5809 CREATE TABLE `x12_partners` (
5810   `id` int(11) NOT NULL default '0',
5811   `name` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5812   `id_number` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5813   `x12_sender_id` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5814   `x12_receiver_id` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5815   `x12_version` varchar(255) character set utf8 collate utf8_unicode_ci default NULL,
5816   `processing_format` enum('standard','medi-cal','cms','proxymed') character set latin1 default NULL,
5817   PRIMARY KEY  (`id`)
5818 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
5820 -- 
5821 -- Dumping data for table `x12_partners`
5822 -- 
5824 ------------------------------------------------------------------------------------- 
5825 -- Table structure for table `automatic_notification`
5826 -- 
5828 DROP TABLE IF EXISTS `automatic_notification`;
5829 CREATE TABLE `automatic_notification` (
5830   `notification_id` int(5) NOT NULL auto_increment,
5831   `sms_gateway_type` varchar(255) NOT NULL,
5832   `next_app_date` date NOT NULL,
5833   `next_app_time` varchar(10) NOT NULL,
5834   `provider_name` varchar(100) NOT NULL,
5835   `message` text NOT NULL,
5836   `email_sender` varchar(100) NOT NULL,
5837   `email_subject` varchar(100) NOT NULL,
5838   `type` enum('SMS','Email') NOT NULL default 'SMS',
5839   `notification_sent_date` datetime NOT NULL,
5840   PRIMARY KEY  (`notification_id`)
5841 ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
5843 -- 
5844 -- Dumping data for table `automatic_notification`
5845 -- 
5847 INSERT INTO `automatic_notification` (`notification_id`, `sms_gateway_type`, `next_app_date`, `next_app_time`, `provider_name`, `message`, `email_sender`, `email_subject`, `type`, `notification_sent_date`) VALUES (1, 'CLICKATELL', '0000-00-00', ':', 'EMR GROUP 1 .. SMS', 'Welcome to EMR GROUP 1.. SMS', '', '', 'SMS', '0000-00-00 00:00:00'),
5848 (2, '', '2007-10-02', '05:50', 'EMR GROUP', 'Welcome to EMR GROUP . Email', 'EMR Group', 'Welcome to EMR GROUP', 'Email', '2007-09-30 00:00:00');
5850 -- --------------------------------------------------------
5852 -- 
5853 -- Table structure for table `notification_log`
5854 -- 
5856 DROP TABLE IF EXISTS `notification_log`;
5857 CREATE TABLE `notification_log` (
5858   `iLogId` int(11) NOT NULL auto_increment,
5859   `pid` int(7) NOT NULL,
5860   `pc_eid` int(11) unsigned NULL,
5861   `sms_gateway_type` varchar(50) NOT NULL,
5862   `smsgateway_info` varchar(255) NOT NULL,
5863   `message` text NOT NULL,
5864   `email_sender` varchar(255) NOT NULL,
5865   `email_subject` varchar(255) NOT NULL,
5866   `type` enum('SMS','Email') NOT NULL,
5867   `patient_info` text NOT NULL,
5868   `pc_eventDate` date NOT NULL,
5869   `pc_endDate` date NOT NULL,
5870   `pc_startTime` time NOT NULL,
5871   `pc_endTime` time NOT NULL,
5872   `dSentDateTime` datetime NOT NULL,
5873   PRIMARY KEY  (`iLogId`)
5874 ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
5876 -- 
5877 -- Dumping data for table `notification_log`
5878 -- 
5879 -- --------------------------------------------------------
5881 -- 
5882 -- Table structure for table `notification_settings`
5883 -- 
5885 DROP TABLE IF EXISTS `notification_settings`;
5886 CREATE TABLE `notification_settings` (
5887   `SettingsId` int(3) NOT NULL auto_increment,
5888   `Send_SMS_Before_Hours` int(3) NOT NULL,
5889   `Send_Email_Before_Hours` int(3) NOT NULL,
5890   `SMS_gateway_username` varchar(100) NOT NULL,
5891   `SMS_gateway_password` varchar(100) NOT NULL,
5892   `SMS_gateway_apikey` varchar(100) NOT NULL,
5893   `type` varchar(50) NOT NULL,
5894   PRIMARY KEY  (`SettingsId`)
5895 ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
5897 -- 
5898 -- Dumping data for table `notification_settings`
5899 -- 
5901 INSERT INTO `notification_settings` (`SettingsId`, `Send_SMS_Before_Hours`, `Send_Email_Before_Hours`, `SMS_gateway_username`, `SMS_gateway_password`, `SMS_gateway_apikey`, `type`) VALUES (1, 150, 150, 'sms username', 'sms password', 'sms api key', 'SMS/Email Settings');
5902 -------------------------------------------------------------------------------------